diff --git a/26-开发高可用集群/批量命令.sh b/26-开发高可用集群/批量命令.sh index 1063bf4..f4b9bd4 100644 --- a/26-开发高可用集群/批量命令.sh +++ b/26-开发高可用集群/批量命令.sh @@ -3,9 +3,17 @@ master_server_list=(192.168.35.105 192.168.35.114 192.168.35.115) worker_server_list=(192.168.35.55 192.168.35.86 192.168.35.89 192.168.35.93 192.168.35.95 192.168.35.96 192.168.35.101 192.168.35.103 192.168.35.104) + all_server_list=(192.168.35.105 192.168.35.114 192.168.35.115 192.168.35.55 192.168.35.86 192.168.35.89 192.168.35.93 192.168.35.95 192.168.35.96 192.168.35.101 192.168.35.103 192.168.35.104) +all_server_list=(dev-worker-01 dev-worker-02 dev-worker-03 dev-worker-05 dev-worker-06 dev-worker-07 dev-worker-08 dev-worker-09) +for server in "${all_server_list[@]}";do + echo "server is ${server}" + ssh root@"${server}" "systemctl restart docker" +done + + count=1 for server in "${all_server_list[@]}";do echo "server is ${server}" @@ -53,10 +61,20 @@ for server in "${all_server_list[@]}";do # ssh root@"${server}" "chmod +x /root/wdd/disk.sh && bash /root/wdd/disk.sh" # ssh root@"${server}" "docker login -u rad02_drone -p Drone@1234 harbor.cdcyy.com.cn" -# ssh root@"${server}" "echo \"192.168.34.40 yfcsnfs.com\" >> /etc/hosts" # ssh root@"${server}" "yum install -y nfs-utils rpcbind" ssh root@"${server}" "yum install -y chrony && systemctl start chronyd && systemctl enable chronyd" # ssh root@"${server}" "systemctl start nfs nfs-client nfs-common && systemctl enable nfs nfs-client nfs-common && systemctl status nfs nfs-client nfs-common -l | grep \"active (running)\"" +# nfs 相关内容 +#scp /etc/docker/daemon.json root@${server}:/etc/docker/daemon.json +# ssh root@"${server}" "sed -i \"/yfcsnfs.com/d\" /etc/hosts" +# ssh root@"${server}" "cat /etc/hosts" +ssh root@"${server}" "grep -qxF \"nameserver 192.168.34.40\" /etc/resolv.conf || echo \"nameserver 192.168.34.40\" >> /etc/resolv.conf" +ssh root@"${server}" "dig yfcsnfs.com" +ssh root@"${server}" "echo \n\n\n" -done \ No newline at end of file + +done + +mv ctop-0.7.7-linux-amd64 /usr/local/bin/ctop +chmod +x /usr/local/bin/ctop \ No newline at end of file diff --git a/42-202411-山东二级平台/部署/k8s-backend.yaml b/42-202411-山东二级平台/部署/k8s-backend.yaml new file mode 100644 index 0000000..b7bff1f --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-backend.yaml @@ -0,0 +1,6255 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-admin-data + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-admin-data + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-admin-data + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-admin-data + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-admin-data + image: 134.80.124.7:8033/cmii/cmii-admin-data:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-admin-data + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-admin-data + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-admin-data + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-admin-data + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-admin-data + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uas-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uas-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uas-gateway + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uas-gateway + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uas-gateway + image: 134.80.124.7:8033/cmii/cmii-uas-gateway:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uas-gateway + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uas-gateway + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uas-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uas-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uas-gateway + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-oauth + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-oauth + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-oauth + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-oauth + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-oauth + image: 134.80.124.7:8033/cmii/cmii-uav-oauth:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-oauth + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-oauth + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-oauth + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-oauth + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-oauth + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-device + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-device + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-device + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-device + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-device + image: 134.80.124.7:8033/cmii/cmii-uav-device:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-device + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-device + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-device + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-device + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-device + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-threedsimulation + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-threedsimulation + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-threedsimulation + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-threedsimulation + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-threedsimulation + image: 134.80.124.7:8033/cmii/cmii-uav-threedsimulation:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-threedsimulation + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-threedsimulation + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-threedsimulation + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-threedsimulation + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-threedsimulation + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-cloud-live + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-cloud-live + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-cloud-live + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-cloud-live + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-cloud-live + image: 134.80.124.7:8033/cmii/cmii-uav-cloud-live:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-cloud-live + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-cloud-live + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-cloud-live + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-cloud-live + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-cloud-live + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-grid-manage + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-manage + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-grid-manage + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-manage + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-grid-manage + image: 134.80.124.7:8033/cmii/cmii-uav-grid-manage:5.1.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-grid-manage + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-grid-manage + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-grid-manage + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-manage + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-grid-manage + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-airspace + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-airspace + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-airspace + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-airspace + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-airspace + image: 134.80.124.7:8033/cmii/cmii-uav-airspace:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-airspace + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-airspace + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-airspace + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-airspace + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-airspace + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-tower + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-tower + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-tower + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-tower + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-tower + image: 134.80.124.7:8033/cmii/cmii-uav-tower:5.8.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-tower + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-tower + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-tower + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-tower + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-tower + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-app-release + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-app-release + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-app-release + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-app-release + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-app-release + image: 134.80.124.7:8033/cmii/cmii-app-release:4.2.0-validation + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-app-release + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-app-release + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-app-release + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-app-release + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-app-release + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-user + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-user + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-user + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-user + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-user + image: 134.80.124.7:8033/cmii/cmii-uav-user:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-user + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-user + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-user + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-user + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-user + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-material-warehouse + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-material-warehouse + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-material-warehouse + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-material-warehouse + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-material-warehouse + image: 134.80.124.7:8033/cmii/cmii-uav-material-warehouse:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-material-warehouse + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-material-warehouse + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-material-warehouse + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-material-warehouse + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-material-warehouse + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-process + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-process + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-process + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-process + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-process + image: 134.80.124.7:8033/cmii/cmii-uav-process:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-process + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-process + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-process + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-process + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-process + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-industrial-portfolio + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-industrial-portfolio + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-industrial-portfolio + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-industrial-portfolio + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-industrial-portfolio + image: 134.80.124.7:8033/cmii/cmii-uav-industrial-portfolio:6.0.0-31369-102401 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-industrial-portfolio + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-industrial-portfolio + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-industrial-portfolio + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-industrial-portfolio + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-industrial-portfolio + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-grid-engine + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-engine + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-grid-engine + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-engine + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-grid-engine + image: 134.80.124.7:8033/cmii/cmii-uav-grid-engine:5.1.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-grid-engine + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-grid-engine + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-grid-engine + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-engine + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-grid-engine + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-kpi-monitor + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-kpi-monitor + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-kpi-monitor + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-kpi-monitor + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-kpi-monitor + image: 134.80.124.7:8033/cmii/cmii-uav-kpi-monitor:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-kpi-monitor + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-kpi-monitor + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-kpi-monitor + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-kpi-monitor + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-kpi-monitor + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-alarm + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-alarm + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-alarm + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-alarm + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-alarm + image: 134.80.124.7:8033/cmii/cmii-uav-alarm:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-alarm + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-alarm + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-alarm + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-alarm + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-alarm + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-admin-user + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-admin-user + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-admin-user + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-admin-user + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-admin-user + image: 134.80.124.7:8033/cmii/cmii-admin-user:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-admin-user + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-admin-user + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-admin-user + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-admin-user + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-admin-user + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uas-lifecycle + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uas-lifecycle + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uas-lifecycle + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uas-lifecycle + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uas-lifecycle + image: 134.80.124.7:8033/cmii/cmii-uas-lifecycle:6.0.0-102901 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uas-lifecycle + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uas-lifecycle + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uas-lifecycle + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uas-lifecycle + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uas-lifecycle + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-multilink + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-multilink + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-multilink + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-multilink + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-multilink + image: 134.80.124.7:8033/cmii/cmii-uav-multilink:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-multilink + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-multilink + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-multilink + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-multilink + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-multilink + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-clusters + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-clusters + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-clusters + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-clusters + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-clusters + image: 134.80.124.7:8033/cmii/cmii-uav-clusters:5.2.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-clusters + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-clusters + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-clusters + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-clusters + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-clusters + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-brain + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-brain + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-brain + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-brain + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-brain + image: 134.80.124.7:8033/cmii/cmii-uav-brain:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-brain + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-brain + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-brain + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-brain + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-brain + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-notice + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-notice + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-notice + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-notice + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-notice + image: 134.80.124.7:8033/cmii/cmii-uav-notice:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-notice + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-notice + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-notice + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-notice + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-notice + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-grid-datasource + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-datasource + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-grid-datasource + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-datasource + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-grid-datasource + image: 134.80.124.7:8033/cmii/cmii-uav-grid-datasource:5.2.0-24810 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-grid-datasource + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-grid-datasource + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-grid-datasource + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-grid-datasource + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-grid-datasource + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-open-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-open-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-open-gateway + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-open-gateway + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-open-gateway + image: 134.80.124.7:8033/cmii/cmii-open-gateway:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-open-gateway + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-open-gateway + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-open-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-open-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-open-gateway + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-data-post-process + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-data-post-process + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-data-post-process + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-data-post-process + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-data-post-process + image: 134.80.124.7:8033/cmii/cmii-uav-data-post-process:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-data-post-process + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-data-post-process + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-data-post-process + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-data-post-process + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-data-post-process + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-mqtthandler + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-mqtthandler + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-mqtthandler + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-mqtthandler + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-mqtthandler + image: 134.80.124.7:8033/cmii/cmii-uav-mqtthandler:6.0.0-31369-yunnan-092402 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-mqtthandler + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-mqtthandler + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-mqtthandler + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-mqtthandler + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-mqtthandler + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-gateway + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-gateway + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-gateway + image: 134.80.124.7:8033/cmii/cmii-uav-gateway:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-gateway + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-gateway + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-gateway + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-waypoint + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-waypoint + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-waypoint + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-waypoint + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-waypoint + image: 134.80.124.7:8033/cmii/cmii-uav-waypoint:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-waypoint + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-waypoint + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-waypoint + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-waypoint + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-waypoint + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-cms + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-cms + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-cms + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-cms + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-cms + image: 134.80.124.7:8033/cmii/cmii-uav-cms:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-cms + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-cms + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-cms + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-cms + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-cms + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-depotautoreturn + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-depotautoreturn + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-depotautoreturn + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-depotautoreturn + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-depotautoreturn + image: 134.80.124.7:8033/cmii/cmii-uav-depotautoreturn:5.5.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-depotautoreturn + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-depotautoreturn + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-depotautoreturn + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-depotautoreturn + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-depotautoreturn + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-admin-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-admin-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-admin-gateway + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-admin-gateway + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-admin-gateway + image: 134.80.124.7:8033/cmii/cmii-admin-gateway:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-admin-gateway + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-admin-gateway + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-admin-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-admin-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-admin-gateway + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-ruoyi + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-ruoyi + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-ruoyi + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-ruoyi + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-ruoyi + image: 134.80.124.7:8033/cmii/cmii-uav-ruoyi:2024102802 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-ruoyi + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-ruoyi + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-ruoyi + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-ruoyi + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-ruoyi + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-emergency + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-emergency + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-emergency + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-emergency + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-emergency + image: 134.80.124.7:8033/cmii/cmii-uav-emergency:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-emergency + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-emergency + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-emergency + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-emergency + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-emergency + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-iam-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-iam-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-iam-gateway + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-iam-gateway + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-iam-gateway + image: 134.80.124.7:8033/cmii/cmii-iam-gateway:5.6.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-iam-gateway + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-iam-gateway + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-iam-gateway + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-iam-gateway + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-iam-gateway + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-integration + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-integration + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-integration + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-integration + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-integration + image: 134.80.124.7:8033/cmii/cmii-uav-integration:5.7.0-32108-0930 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-integration + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-integration + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-integration + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-integration + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-integration + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-developer + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-developer + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-developer + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-developer + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-developer + image: 134.80.124.7:8033/cmii/cmii-uav-developer:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-developer + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-developer + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-developer + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-developer + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-developer + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-sense-adapter + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-sense-adapter + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-sense-adapter + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-sense-adapter + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-sense-adapter + image: 134.80.124.7:8033/cmii/cmii-uav-sense-adapter:6.0.0-snapshot-1026-db-confidence-bird + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-sense-adapter + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-sense-adapter + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-sense-adapter + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-sense-adapter + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-sense-adapter + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-autowaypoint + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-autowaypoint + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-autowaypoint + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-autowaypoint + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-autowaypoint + image: 134.80.124.7:8033/cmii/cmii-uav-autowaypoint:4.2.0-beta + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-autowaypoint + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-autowaypoint + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-autowaypoint + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-autowaypoint + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-autowaypoint + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-mission + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-mission + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-mission + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-mission + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-mission + image: 134.80.124.7:8033/cmii/cmii-uav-mission:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-mission + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-mission + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-mission + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-mission + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-mission + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-gis-server + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-gis-server + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-gis-server + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-gis-server + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-gis-server + image: 134.80.124.7:8033/cmii/cmii-uav-gis-server:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-gis-server + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-gis-server + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-gis-server + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-gis-server + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-gis-server + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-logger + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-logger + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-logger + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-logger + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-logger + image: 134.80.124.7:8033/cmii/cmii-uav-logger:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-logger + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-logger + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-logger + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-logger + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-logger + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-suav-supervision + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-suav-supervision + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-suav-supervision + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-suav-supervision + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-suav-supervision + image: 134.80.124.7:8033/cmii/cmii-suav-supervision:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-suav-supervision + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-suav-supervision + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-suav-supervision + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-suav-supervision + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-suav-supervision + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-surveillance + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-surveillance + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-surveillance + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-surveillance + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-surveillance + image: 134.80.124.7:8033/cmii/cmii-uav-surveillance:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-surveillance + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-surveillance + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-surveillance + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-surveillance + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-surveillance + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-advanced5g + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-advanced5g + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: backend + cmii.app: cmii-uav-advanced5g + template: + metadata: + labels: + cmii.type: backend + cmii.app: cmii-uav-advanced5g + spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: uavcloud.env + operator: In + values: + - sdejpt + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-advanced5g + image: 134.80.124.7:8033/cmii/cmii-uav-advanced5g:6.0.0-102001 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-advanced5g + - name: CUST_JAVA_OPTS + value: "-Xms200m -Xmx1500m -Dlog4j2.formatMsgNoLookups=true" + - name: NACOS_REGISTRY + value: "helm-nacos:8848" + - name: NACOS_DISCOVERY_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NACOS_DISCOVERY_PORT + value: "8080" + - name: BIZ_CONFIG_GROUP + value: 6.0.0 + - name: SYS_CONFIG_GROUP + value: 6.0.0 + - name: IMAGE_VERSION + value: 6.0.0 + - name: NACOS_USERNAME + value: "developer" + - name: NACOS_PASSWORD + value: "Deve@9128201" + ports: + - name: pod-port + containerPort: 8080 + protocol: TCP + resources: + limits: + memory: 2Gi + cpu: "2" + requests: + memory: 200Mi + cpu: 200m + livenessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + startupProbe: + httpGet: + path: /cmii/health + port: pod-port + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 3 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 5 + volumeMounts: + - name: nfs-backend-log-volume + mountPath: /cmii/logs + readOnly: false + subPath: sdejpt/cmii-uav-advanced5g + volumes: + - name: nfs-backend-log-volume + persistentVolumeClaim: + claimName: nfs-backend-log-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-advanced5g + namespace: sdejpt + labels: + cmii.type: backend + cmii.app: cmii-uav-advanced5g + octopus/control: backend-app-1.0.0 + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/app-version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: backend + cmii.app: cmii-uav-advanced5g + ports: + - name: backend-tcp + port: 8080 + protocol: TCP + targetPort: 8080 diff --git a/42-202411-山东二级平台/部署/k8s-configmap.yaml b/42-202411-山东二级平台/部署/k8s-configmap.yaml new file mode 100644 index 0000000..da67031 --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-configmap.yaml @@ -0,0 +1,560 @@ +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-visualization + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "visualization", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-dispatchh5 + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "dispatchh5", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-detection + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "detection", + AppClientId: "APP_FDHW2VLVDWPnnOCy" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-multiterminal + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "multiterminal", + AppClientId: "APP_PvdfRRRBPL8xbIwl" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-open + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "open", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-splice + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "splice", + AppClientId: "APP_zE0M3sTRXrCIJS8Y" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-qinghaitourism + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "qinghaitourism", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-supervision + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "supervision", + AppClientId: "APP_qqSu82THfexI8PLM" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-scanner + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "scanner", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-hyper + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "hyper", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-supervisionh5 + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "supervisionh5", + AppClientId: "APP_qqSu82THfexI8PLM" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-cmsportal + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "cmsportal", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-logistics + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "logistics", + AppClientId: "APP_PvdfRRRBPL8xbIwl" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-mws + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "mws", + AppClientId: "APP_uKniXPELlRERBBwK" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-seniclive + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "seniclive", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-traffic + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "traffic", + AppClientId: "APP_Jc8i2wOQ1t73QEJS" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-jiangsuwenlv + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "jiangsuwenlv", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-classification + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "classification", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-eventsh5 + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "eventsh5", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-base + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "base", + AppClientId: "APP_9LY41OaKSqk2btY0" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-share + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "share", + AppClientId: "APP_4lVSVI0ZGxTssir8" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-threedsimulation + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "threedsimulation", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-smsecret + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "smsecret", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-smauth + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "smauth", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-securityh5 + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "securityh5", + AppClientId: "APP_N3ImO0Ubfu9peRHD" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-hljtt + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "hljtt", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-uasms + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "uasms", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-mianyangbackend + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "mianyangbackend", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-emergency + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "emergency", + AppClientId: "APP_aGsTAY1uMZrpKdfk" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-security + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "security", + AppClientId: "APP_JUSEMc7afyWXxvE7" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-blockchain + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "blockchain", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-qingdao + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "qingdao", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-uas + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "uas", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-pilot2cloud + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "pilot2cloud", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-pangu + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-ai-brain + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "ai-brain", + AppClientId: "APP_rafnuCAmBESIVYMH" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-armypeople + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "armypeople", + AppClientId: "APP_UIegse6Lfou9pO1U" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-media + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "media", + AppClientId: "APP_4AU8lbifESQO4FD6" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-oms + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "oms", + AppClientId: "empty" + } +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: tenant-prefix-smauth + namespace: sdejpt +data: + ingress-config.js: |- + var __GlobalIngressConfig = { + TenantEnvironment: "", + CloudHOST: "134.80.124.6:8088", + ApplicationShortName: "smauth", + AppClientId: "empty" + } diff --git a/42-202411-山东二级平台/部署/k8s-dashboard.yaml b/42-202411-山东二级平台/部署/k8s-dashboard.yaml new file mode 100644 index 0000000..895da18 --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-dashboard.yaml @@ -0,0 +1,309 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: kube-system + +--- + +apiVersion: v1 +kind: ServiceAccount +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard + namespace: kube-system + +--- + +kind: Service +apiVersion: v1 +metadata: + labels: + k8s-app: kubernetes-dashboard + kubernetes.io/cluster-service: "true" + name: kubernetes-dashboard + namespace: kube-system +spec: + ports: + - port: 443 + targetPort: 8443 + nodePort: 39999 + selector: + k8s-app: kubernetes-dashboard + type: NodePort + +--- + +apiVersion: v1 +kind: Secret +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard-certs + namespace: kube-system +type: Opaque + +--- + +apiVersion: v1 +kind: Secret +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard-csrf + namespace: kube-system +type: Opaque +data: + csrf: "" + +--- + +apiVersion: v1 +kind: Secret +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard-key-holder + namespace: kube-system +type: Opaque + +--- + +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard-settings + namespace: kube-system + +--- + +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard + namespace: kube-system +rules: + # Allow Dashboard to get, update and delete Dashboard exclusive secrets. + - apiGroups: [""] + resources: ["secrets"] + resourceNames: ["kubernetes-dashboard-key-holder", "kubernetes-dashboard-certs", "kubernetes-dashboard-csrf"] + verbs: ["get", "update", "delete"] + # Allow Dashboard to get and update 'kubernetes-dashboard-settings' config map. + - apiGroups: [""] + resources: ["configmaps"] + resourceNames: ["kubernetes-dashboard-settings"] + verbs: ["get", "update"] + # Allow Dashboard to get metrics. + - apiGroups: [""] + resources: ["services"] + resourceNames: ["heapster", "dashboard-metrics-scraper"] + verbs: ["proxy"] + - apiGroups: [""] + resources: ["services/proxy"] + resourceNames: ["heapster", "http:heapster:", "https:heapster:", "dashboard-metrics-scraper", "http:dashboard-metrics-scraper"] + verbs: ["get"] + +--- + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard +rules: + # Allow Metrics Scraper to get metrics from the Metrics server + - apiGroups: ["metrics.k8s.io"] + resources: ["pods", "nodes"] + verbs: ["get", "list", "watch"] + +--- + +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard + namespace: kube-system +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: kubernetes-dashboard +subjects: + - kind: ServiceAccount + name: kubernetes-dashboard + namespace: kube-system + +--- + +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: kubernetes-dashboard +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: kubernetes-dashboard +subjects: + - kind: ServiceAccount + name: kubernetes-dashboard + namespace: kube-system + +--- + +kind: Deployment +apiVersion: apps/v1 +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard + namespace: kube-system +spec: + replicas: 1 + revisionHistoryLimit: 10 + selector: + matchLabels: + k8s-app: kubernetes-dashboard + template: + metadata: + labels: + k8s-app: kubernetes-dashboard + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: kubernetes-dashboard + image: 134.80.124.7:8033/cmii/dashboard:v2.0.1 + ports: + - containerPort: 8443 + protocol: TCP + args: + - --auto-generate-certificates + - --namespace=kube-system + # Uncomment the following line to manually specify Kubernetes API server Host + # If not specified, Dashboard will attempt to auto discover the API server and connect + # to it. Uncomment only if the default does not work. + # - --apiserver-host=http://my-address:port + volumeMounts: + - name: kubernetes-dashboard-certs + mountPath: /certs + # Create on-disk volume to store exec logs + - mountPath: /tmp + name: tmp-volume + livenessProbe: + httpGet: + scheme: HTTPS + path: / + port: 8443 + initialDelaySeconds: 30 + timeoutSeconds: 30 + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsUser: 1001 + runAsGroup: 2001 + volumes: + - name: kubernetes-dashboard-certs + secret: + secretName: kubernetes-dashboard-certs + - name: tmp-volume + emptyDir: {} + serviceAccountName: kubernetes-dashboard + # Comment the following tolerations if Dashboard must not be deployed on master + tolerations: + - key: node-role.kubernetes.io/master + effect: NoSchedule + +--- + +kind: Service +apiVersion: v1 +metadata: + labels: + k8s-app: dashboard-metrics-scraper + name: dashboard-metrics-scraper + namespace: kube-system +spec: + ports: + - port: 8000 + targetPort: 8000 + selector: + k8s-app: dashboard-metrics-scraper + +--- + +kind: Deployment +apiVersion: apps/v1 +metadata: + labels: + k8s-app: dashboard-metrics-scraper + name: dashboard-metrics-scraper + namespace: kube-system +spec: + replicas: 1 + revisionHistoryLimit: 10 + selector: + matchLabels: + k8s-app: dashboard-metrics-scraper + template: + metadata: + labels: + k8s-app: dashboard-metrics-scraper + annotations: + seccomp.security.alpha.kubernetes.io/pod: 'runtime/default' + spec: + containers: + - name: dashboard-metrics-scraper + image: 134.80.124.7:8033/cmii/metrics-scraper:v1.0.4 + ports: + - containerPort: 8000 + protocol: TCP + livenessProbe: + httpGet: + scheme: HTTP + path: / + port: 8000 + initialDelaySeconds: 30 + timeoutSeconds: 30 + volumeMounts: + - mountPath: /tmp + name: tmp-volume + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsUser: 1001 + runAsGroup: 2001 + serviceAccountName: kubernetes-dashboard + # Comment the following tolerations if Dashboard must not be deployed on master + tolerations: + - key: node-role.kubernetes.io/master + effect: NoSchedule + volumes: + - name: tmp-volume + emptyDir: {} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: admin-user + namespace: kube-system + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: admin-user +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: + - kind: ServiceAccount + name: admin-user + namespace: kube-system diff --git a/42-202411-山东二级平台/部署/k8s-emqx.yaml b/42-202411-山东二级平台/部署/k8s-emqx.yaml new file mode 100644 index 0000000..0a08bfb --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-emqx.yaml @@ -0,0 +1,274 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: helm-emqxs + namespace: sdejpt +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-emqxs-env + namespace: sdejpt + labels: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + helm.sh/chart: emqx-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 +data: + EMQX_CLUSTER__K8S__APISERVER: "https://kubernetes.default.svc.cluster.local:443" + EMQX_NAME: "helm-emqxs" + EMQX_CLUSTER__DISCOVERY: "k8s" + EMQX_CLUSTER__K8S__APP_NAME: "helm-emqxs" + EMQX_CLUSTER__K8S__SERVICE_NAME: "helm-emqxs-headless" + EMQX_CLUSTER__K8S__ADDRESS_TYPE: "dns" + EMQX_CLUSTER__K8S__namespace: "sdejpt" + EMQX_CLUSTER__K8S__SUFFIX: "svc.cluster.local" + EMQX_ALLOW_ANONYMOUS: "false" + EMQX_ACL_NOMATCH: "deny" +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-emqxs-cm + namespace: sdejpt + labels: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + helm.sh/chart: emqx-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 +data: + emqx_auth_mnesia.conf: |- + auth.mnesia.password_hash = sha256 + + # clientid 认证数据 + # auth.client.1.clientid = admin + # auth.client.1.password = 4YPk*DS%+5 + + ## username 认证数据 + auth.user.1.username = admin + auth.user.1.password = odD8#Ve7.B + auth.user.2.username = cmlc + auth.user.2.password = odD8#Ve7.B + + acl.conf: |- + {allow, {user, "admin"}, pubsub, ["admin/#"]}. + {allow, {user, "dashboard"}, subscribe, ["$SYS/#"]}. + {allow, {ipaddr, "127.0.0.1"}, pubsub, ["$SYS/#", "#"]}. + {deny, all, subscribe, ["$SYS/#", {eq, "#"}]}. + {allow, all}. + + loaded_plugins: |- + {emqx_auth_mnesia,true}. + {emqx_auth_mnesia,true}. + {emqx_management, true}. + {emqx_recon, true}. + {emqx_retainer, false}. + {emqx_dashboard, true}. + {emqx_telemetry, true}. + {emqx_rule_engine, true}. + {emqx_bridge_mqtt, false}. +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: helm-emqxs + namespace: sdejpt + labels: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + helm.sh/chart: emqx-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 +spec: + replicas: 1 + serviceName: helm-emqxs-headless + updateStrategy: + type: RollingUpdate + selector: + matchLabels: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + template: + metadata: + labels: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + helm.sh/chart: emqx-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 + spec: + affinity: {} + imagePullSecrets: + - name: harborsecret + serviceAccountName: helm-emqxs + containers: + - name: helm-emqxs + image: 134.80.124.7:8033/cmii/emqx:4.4.19 + imagePullPolicy: Always + ports: + - name: mqtt + containerPort: 1883 + - name: mqttssl + containerPort: 8883 + - name: mgmt + containerPort: 8081 + - name: ws + containerPort: 8083 + - name: wss + containerPort: 8084 + - name: dashboard + containerPort: 18083 + - name: ekka + containerPort: 4370 + envFrom: + - configMapRef: + name: helm-emqxs-env + resources: {} + volumeMounts: + - name: emqx-data + mountPath: "/opt/emqx/data/mnesia" + readOnly: false + - name: helm-emqxs-cm + mountPath: "/opt/emqx/etc/plugins/emqx_auth_mnesia.conf" + subPath: emqx_auth_mnesia.conf + readOnly: false +# - name: helm-emqxs-cm +# mountPath: "/opt/emqx/etc/acl.conf" +# subPath: "acl.conf" +# readOnly: false + - name: helm-emqxs-cm + mountPath: "/opt/emqx/data/loaded_plugins" + subPath: loaded_plugins + readOnly: false + volumes: + - name: emqx-data + persistentVolumeClaim: + claimName: helm-emqxs + - name: helm-emqxs-cm + configMap: + name: helm-emqxs-cm + items: + - key: emqx_auth_mnesia.conf + path: emqx_auth_mnesia.conf + - key: acl.conf + path: acl.conf + - key: loaded_plugins + path: loaded_plugins +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: helm-emqxs + namespace: sdejpt +rules: + - apiGroups: + - "" + resources: + - endpoints + verbs: + - get + - watch + - list +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: helm-emqxs + namespace: sdejpt +subjects: + - kind: ServiceAccount + name: helm-emqxs + namespace: sdejpt +roleRef: + kind: Role + name: helm-emqxs + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-emqxs + namespace: sdejpt + labels: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + helm.sh/chart: emqx-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 +spec: + type: NodePort + selector: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + ports: + - port: 1883 + name: mqtt + targetPort: 1883 + nodePort: 31883 + - port: 18083 + name: dashboard + targetPort: 18083 + nodePort: 38085 + - port: 8083 + name: mqtt-websocket + targetPort: 8083 + nodePort: 38083 +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-emqxs-headless + namespace: sdejpt + labels: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + helm.sh/chart: emqx-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + clusterIP: None + selector: + cmii.type: middleware + cmii.app: helm-emqxs + cmii.emqx.architecture: cluster + ports: + - name: mqtt + port: 1883 + protocol: TCP + targetPort: 1883 + - name: mqttssl + port: 8883 + protocol: TCP + targetPort: 8883 + - name: mgmt + port: 8081 + protocol: TCP + targetPort: 8081 + - name: websocket + port: 8083 + protocol: TCP + targetPort: 8083 + - name: wss + port: 8084 + protocol: TCP + targetPort: 8084 + - name: dashboard + port: 18083 + protocol: TCP + targetPort: 18083 + - name: ekka + port: 4370 + protocol: TCP + targetPort: 4370 diff --git a/42-202411-山东二级平台/部署/k8s-frontend.yaml b/42-202411-山东二级平台/部署/k8s-frontend.yaml new file mode 100644 index 0000000..a0f6e22 --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-frontend.yaml @@ -0,0 +1,2695 @@ +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: nginx-cm + namespace: sdejpt + labels: + cmii.type: frontend +data: + nginx.conf: | + server { + listen 9528; + server_name localhost; + gzip on; + + location / { + root /home/cmii-platform/dist; + index index.html index.htm; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root html; + } + } +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-media + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-media + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-media + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-media + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-media + image: 134.80.124.7:8033/cmii/cmii-uav-platform-media:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-media + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-media + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-media + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-media + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-media + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-pilot2-to-cloud + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-pilot2-to-cloud + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-pilot2-to-cloud + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-pilot2-to-cloud + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-pilot2-to-cloud + image: 134.80.124.7:8033/cmii/cmii-uav-platform-pilot2-to-cloud:6.0.0-092502 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-pilot2-to-cloud + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-pilot2cloud + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-pilot2-to-cloud + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-pilot2-to-cloud + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-pilot2-to-cloud + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-detection + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-detection + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-detection + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-detection + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-detection + image: 134.80.124.7:8033/cmii/cmii-uav-platform-detection:5.6.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-detection + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-detection + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-detection + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-detection + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-detection + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-suav-platform-supervisionh5 + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervisionh5 + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervisionh5 + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervisionh5 + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-suav-platform-supervisionh5 + image: 134.80.124.7:8033/cmii/cmii-suav-platform-supervisionh5:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-suav-platform-supervisionh5 + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-supervisionh5 + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-suav-platform-supervisionh5 + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervisionh5 + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervisionh5 + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-security + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-security + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-security + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-security + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-security + image: 134.80.124.7:8033/cmii/cmii-uav-platform-security:5.6.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-security + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-security + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-security + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-security + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-security + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-suav-platform-supervision + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervision + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervision + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervision + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-suav-platform-supervision + image: 134.80.124.7:8033/cmii/cmii-suav-platform-supervision:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-suav-platform-supervision + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-supervision + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-suav-platform-supervision + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervision + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-suav-platform-supervision + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-threedsimulation + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-threedsimulation + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-threedsimulation + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-threedsimulation + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-threedsimulation + image: 134.80.124.7:8033/cmii/cmii-uav-platform-threedsimulation:5.2.0-21392 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-threedsimulation + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-threedsimulation + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-threedsimulation + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-threedsimulation + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-threedsimulation + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-securityh5 + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-securityh5 + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-securityh5 + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-securityh5 + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-securityh5 + image: 134.80.124.7:8033/cmii/cmii-uav-platform-securityh5:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-securityh5 + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-securityh5 + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-securityh5 + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-securityh5 + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-securityh5 + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform + image: 134.80.124.7:8033/cmii/cmii-uav-platform:6.0.0-master600 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-pangu + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-base + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-base + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-base + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-base + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-base + image: 134.80.124.7:8033/cmii/cmii-uav-platform-base:5.4.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-base + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-base + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-base + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-base + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-base + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-oms + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-oms + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-oms + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-oms + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-oms + image: 134.80.124.7:8033/cmii/cmii-uav-platform-oms:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-oms + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-oms + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-oms + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-oms + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-oms + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-mws + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-mws + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-mws + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-mws + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-mws + image: 134.80.124.7:8033/cmii/cmii-uav-platform-mws:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-mws + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-mws + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-mws + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-mws + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-mws + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-splice + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-splice + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-splice + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-splice + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-splice + image: 134.80.124.7:8033/cmii/cmii-uav-platform-splice:5.7.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-splice + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-splice + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-splice + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-splice + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-splice + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-seniclive + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-seniclive + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-seniclive + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-seniclive + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-seniclive + image: 134.80.124.7:8033/cmii/cmii-uav-platform-seniclive:5.2.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-seniclive + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-seniclive + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-seniclive + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-seniclive + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-seniclive + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-qinghaitourism + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qinghaitourism + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qinghaitourism + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qinghaitourism + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-qinghaitourism + image: 134.80.124.7:8033/cmii/cmii-uav-platform-qinghaitourism:4.1.0-21377-0508 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-qinghaitourism + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-qinghaitourism + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-qinghaitourism + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qinghaitourism + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-qinghaitourism + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-qingdao + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qingdao + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qingdao + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qingdao + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-qingdao + image: 134.80.124.7:8033/cmii/cmii-uav-platform-qingdao:5.7.0-29766-0815 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-qingdao + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-qingdao + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-qingdao + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-qingdao + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-qingdao + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-jiangsuwenlv + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-jiangsuwenlv + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-jiangsuwenlv + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-jiangsuwenlv + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-jiangsuwenlv + image: 134.80.124.7:8033/cmii/cmii-uav-platform-jiangsuwenlv:4.1.3-jiangsu-0427 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-jiangsuwenlv + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-jiangsuwenlv + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-jiangsuwenlv + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-jiangsuwenlv + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-jiangsuwenlv + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-dispatchh5 + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-dispatchh5 + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-dispatchh5 + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-dispatchh5 + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-dispatchh5 + image: 134.80.124.7:8033/cmii/cmii-uav-platform-dispatchh5:5.6.0-0708 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-dispatchh5 + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-dispatchh5 + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-dispatchh5 + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-dispatchh5 + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-dispatchh5 + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-logistics + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-logistics + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-logistics + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-logistics + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-logistics + image: 134.80.124.7:8033/cmii/cmii-uav-platform-logistics:5.6.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-logistics + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-logistics + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-logistics + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-logistics + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-logistics + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-visualization + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-visualization + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-visualization + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-visualization + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-visualization + image: 134.80.124.7:8033/cmii/cmii-uav-platform-visualization:5.2.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-visualization + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-visualization + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-visualization + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-visualization + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-visualization + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-emergency-rescue + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-emergency-rescue + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-emergency-rescue + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-emergency-rescue + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-emergency-rescue + image: 134.80.124.7:8033/cmii/cmii-uav-platform-emergency-rescue:5.6.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-emergency-rescue + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-emergency + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-emergency-rescue + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-emergency-rescue + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-emergency-rescue + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-share + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-share + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-share + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-share + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-share + image: 134.80.124.7:8033/cmii/cmii-uav-platform-share:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-share + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-share + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-share + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-share + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-share + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-uasms + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uasms + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uasms + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uasms + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-uasms + image: 134.80.124.7:8033/cmii/cmii-uav-platform-uasms:6.0.0-31981 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-uasms + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-uasms + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-uasms + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uasms + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-uasms + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-armypeople + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-armypeople + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-armypeople + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-armypeople + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-armypeople + image: 134.80.124.7:8033/cmii/cmii-uav-platform-armypeople:6.0.0-32443-102201 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-armypeople + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-armypeople + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-armypeople + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-armypeople + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-armypeople + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-cms-portal + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-cms-portal + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-cms-portal + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-cms-portal + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-cms-portal + image: 134.80.124.7:8033/cmii/cmii-uav-platform-cms-portal:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-cms-portal + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-cmsportal + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-cms-portal + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-cms-portal + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-cms-portal + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-hljtt + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-hljtt + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-hljtt + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-hljtt + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-hljtt + image: 134.80.124.7:8033/cmii/cmii-uav-platform-hljtt:5.7.0-hjltt + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-hljtt + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-hljtt + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-hljtt + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-hljtt + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-hljtt + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-multiterminal + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-multiterminal + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-multiterminal + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-multiterminal + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-multiterminal + image: 134.80.124.7:8033/cmii/cmii-uav-platform-multiterminal:5.6.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-multiterminal + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-multiterminal + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-multiterminal + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-multiterminal + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-multiterminal + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-uas + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uas + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 0 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uas + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uas + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-uas + image: 134.80.124.7:8033/cmii/cmii-uav-platform-uas:6.0.0-102301 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-uas + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-uas + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-uas + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-uas + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-uas + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-ai-brain + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-ai-brain + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-ai-brain + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-ai-brain + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-ai-brain + image: 134.80.124.7:8033/cmii/cmii-uav-platform-ai-brain:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-ai-brain + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-ai-brain + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-ai-brain + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-ai-brain + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-ai-brain + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cmii-uav-platform-open + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-open + octopus.control: frontend-app-wdd + app.kubernetes.io/app-version: 6.0.0 +spec: + replicas: 1 + strategy: + rollingUpdate: + maxUnavailable: 1 + selector: + matchLabels: + cmii.type: frontend + cmii.app: cmii-uav-platform-open + template: + metadata: + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-open + spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: cmii-uav-platform-open + image: 134.80.124.7:8033/cmii/cmii-uav-platform-open:6.0.0 + imagePullPolicy: Always + env: + - name: K8S_NAMESPACE + value: sdejpt + - name: APPLICATION_NAME + value: cmii-uav-platform-open + ports: + - name: platform-9528 + containerPort: 9528 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 1Gi + requests: + cpu: 50m + memory: 50Mi + volumeMounts: + - name: nginx-conf + mountPath: /etc/nginx/conf.d/nginx.conf + subPath: nginx.conf + - name: tenant-prefix + subPath: ingress-config.js + mountPath: /home/cmii-platform/dist/ingress-config.js + volumes: + - name: nginx-conf + configMap: + name: nginx-cm + items: + - key: nginx.conf + path: nginx.conf + - name: tenant-prefix + configMap: + name: tenant-prefix-open + items: + - key: ingress-config.js + path: ingress-config.js +--- +apiVersion: v1 +kind: Service +metadata: + name: cmii-uav-platform-open + namespace: sdejpt + labels: + cmii.type: frontend + cmii.app: cmii-uav-platform-open + octopus.control: frontend-app-wdd + app.kubernetes.io/version: 6.0.0 +spec: + type: ClusterIP + selector: + cmii.type: frontend + cmii.app: cmii-uav-platform-open + ports: + - name: web-svc-port + port: 9528 + protocol: TCP + targetPort: 9528 diff --git a/42-202411-山东二级平台/部署/k8s-ingress.yaml b/42-202411-山东二级平台/部署/k8s-ingress.yaml new file mode 100644 index 0000000..eed57a6 --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-ingress.yaml @@ -0,0 +1,696 @@ +--- +apiVersion: networking.k8s.io/v1beta1 +kind: Ingress +metadata: + name: frontend-applications-ingress + namespace: sdejpt + labels: + type: frontend + octopus.control: all-ingress-config-wdd + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 + annotations: + kubernetes.io/ingress.class: "nginx" + nginx.ingress.kubernetes.io/enable-cors: "true" + nginx.ingress.kubernetes.io/rewrite-target: /$1 + nginx.ingress.kubernetes.io/configuration-snippet: | + rewrite ^(/supervision)$ $1/ redirect; + rewrite ^(/supervisionh5)$ $1/ redirect; + rewrite ^(/pangu)$ $1/ redirect; + rewrite ^(/ai-brain)$ $1/ redirect; + rewrite ^(/armypeople)$ $1/ redirect; + rewrite ^(/base)$ $1/ redirect; + rewrite ^(/blockchain)$ $1/ redirect; + rewrite ^(/classification)$ $1/ redirect; + rewrite ^(/cmsportal)$ $1/ redirect; + rewrite ^(/detection)$ $1/ redirect; + rewrite ^(/dispatchh5)$ $1/ redirect; + rewrite ^(/emergency)$ $1/ redirect; + rewrite ^(/eventsh5)$ $1/ redirect; + rewrite ^(/hljtt)$ $1/ redirect; + rewrite ^(/hyper)$ $1/ redirect; + rewrite ^(/jiangsuwenlv)$ $1/ redirect; + rewrite ^(/logistics)$ $1/ redirect; + rewrite ^(/media)$ $1/ redirect; + rewrite ^(/mianyangbackend)$ $1/ redirect; + rewrite ^(/multiterminal)$ $1/ redirect; + rewrite ^(/mws)$ $1/ redirect; + rewrite ^(/oms)$ $1/ redirect; + rewrite ^(/open)$ $1/ redirect; + rewrite ^(/pilot2cloud)$ $1/ redirect; + rewrite ^(/qingdao)$ $1/ redirect; + rewrite ^(/qinghaitourism)$ $1/ redirect; + rewrite ^(/scanner)$ $1/ redirect; + rewrite ^(/security)$ $1/ redirect; + rewrite ^(/securityh5)$ $1/ redirect; + rewrite ^(/seniclive)$ $1/ redirect; + rewrite ^(/share)$ $1/ redirect; + rewrite ^(/smauth)$ $1/ redirect; + rewrite ^(/smsecret)$ $1/ redirect; + rewrite ^(/splice)$ $1/ redirect; + rewrite ^(/threedsimulation)$ $1/ redirect; + rewrite ^(/traffic)$ $1/ redirect; + rewrite ^(/uas)$ $1/ redirect; + rewrite ^(/uasms)$ $1/ redirect; + rewrite ^(/visualization)$ $1/ redirect; + rewrite ^(/smauth)$ $1/ redirect; +spec: + rules: + - host: fake-domain.sdejpt.io + http: + paths: + - path: /?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform + servicePort: 9528 + - path: /supervision/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-suav-platform-supervision + servicePort: 9528 + - path: /supervisionh5/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-suav-platform-supervisionh5 + servicePort: 9528 + - path: /pangu/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform + servicePort: 9528 + - path: /ai-brain/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-ai-brain + servicePort: 9528 + - path: /armypeople/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-armypeople + servicePort: 9528 + - path: /base/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-base + servicePort: 9528 + - path: /blockchain/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-blockchain + servicePort: 9528 + - path: /classification/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-classification + servicePort: 9528 + - path: /cmsportal/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-cms-portal + servicePort: 9528 + - path: /detection/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-detection + servicePort: 9528 + - path: /dispatchh5/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-dispatchh5 + servicePort: 9528 + - path: /emergency/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-emergency-rescue + servicePort: 9528 + - path: /eventsh5/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-eventsh5 + servicePort: 9528 + - path: /hljtt/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-hljtt + servicePort: 9528 + - path: /hyper/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-hyperspectral + servicePort: 9528 + - path: /jiangsuwenlv/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-jiangsuwenlv + servicePort: 9528 + - path: /logistics/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-logistics + servicePort: 9528 + - path: /media/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-media + servicePort: 9528 + - path: /mianyangbackend/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-mianyangbackend + servicePort: 9528 + - path: /multiterminal/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-multiterminal + servicePort: 9528 + - path: /mws/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-mws + servicePort: 9528 + - path: /oms/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-oms + servicePort: 9528 + - path: /open/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-open + servicePort: 9528 + - path: /pilot2cloud/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-pilot2-to-cloud + servicePort: 9528 + - path: /qingdao/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-qingdao + servicePort: 9528 + - path: /qinghaitourism/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-qinghaitourism + servicePort: 9528 + - path: /scanner/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-scanner + servicePort: 9528 + - path: /security/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-security + servicePort: 9528 + - path: /securityh5/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-securityh5 + servicePort: 9528 + - path: /seniclive/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-seniclive + servicePort: 9528 + - path: /share/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-share + servicePort: 9528 + - path: /smauth/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-smauth + servicePort: 9528 + - path: /smsecret/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-smsecret + servicePort: 9528 + - path: /splice/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-splice + servicePort: 9528 + - path: /threedsimulation/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-threedsimulation + servicePort: 9528 + - path: /traffic/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-traffic + servicePort: 9528 + - path: /uas/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-uas + servicePort: 9528 + - path: /uasms/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-uasms + servicePort: 9528 + - path: /visualization/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-platform-visualization + servicePort: 9528 + - path: /smauth/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: uavms-security-center-web + servicePort: 9528 +--- +apiVersion: networking.k8s.io/v1beta1 +kind: Ingress +metadata: + name: backend-applications-ingress + namespace: sdejpt + labels: + type: backend + octopus.control: all-ingress-config-wdd + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 + annotations: + kubernetes.io/ingress.class: "nginx" + nginx.ingress.kubernetes.io/enable-cors: "true" +spec: + rules: + - host: cmii-admin-data.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-admin-data + servicePort: 8080 + - host: cmii-admin-gateway.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-admin-gateway + servicePort: 8080 + - host: cmii-admin-user.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-admin-user + servicePort: 8080 + - host: cmii-app-release.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-app-release + servicePort: 8080 + - host: cmii-open-gateway.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-open-gateway + servicePort: 8080 + - host: cmii-suav-supervision.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-suav-supervision + servicePort: 8080 + - host: cmii-uas-gateway.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uas-gateway + servicePort: 8080 + - host: cmii-uas-lifecycle.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uas-lifecycle + servicePort: 8080 + - host: cmii-uav-airspace.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-airspace + servicePort: 8080 + - host: cmii-uav-alarm.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-alarm + servicePort: 8080 + - host: cmii-uav-autowaypoint.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-autowaypoint + servicePort: 8080 + - host: cmii-uav-brain.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-brain + servicePort: 8080 + - host: cmii-uav-bridge.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-bridge + servicePort: 8080 + - host: cmii-uav-cloud-live.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-cloud-live + servicePort: 8080 + - host: cmii-uav-clusters.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-clusters + servicePort: 8080 + - host: cmii-uav-cms.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-cms + servicePort: 8080 + - host: cmii-uav-data-post-process.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-data-post-process + servicePort: 8080 + - host: cmii-uav-depotautoreturn.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-depotautoreturn + servicePort: 8080 + - host: cmii-uav-developer.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-developer + servicePort: 8080 + - host: cmii-uav-device.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-device + servicePort: 8080 + - host: cmii-uav-emergency.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-emergency + servicePort: 8080 + - host: cmii-uav-fwdd.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-fwdd + servicePort: 8080 + - host: cmii-uav-gateway.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-gateway + servicePort: 8080 + - host: cmii-uav-gis-server.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-gis-server + servicePort: 8080 + - host: cmii-uav-grid-datasource.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-grid-datasource + servicePort: 8080 + - host: cmii-uav-grid-engine.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-grid-engine + servicePort: 8080 + - host: cmii-uav-grid-manage.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-grid-manage + servicePort: 8080 + - host: cmii-uav-industrial-portfolio.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-industrial-portfolio + servicePort: 8080 + - host: cmii-uav-integration.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-integration + servicePort: 8080 + - host: cmii-uav-iot-dispatcher.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-iot-dispatcher + servicePort: 8080 + - host: cmii-uav-kpi-monitor.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-kpi-monitor + servicePort: 8080 + - host: cmii-uav-logger.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-logger + servicePort: 8080 + - host: cmii-uav-material-warehouse.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-material-warehouse + servicePort: 8080 + - host: cmii-uav-mission.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-mission + servicePort: 8080 + - host: cmii-uav-mqtthandler.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-mqtthandler + servicePort: 8080 + - host: cmii-uav-multilink.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-multilink + servicePort: 8080 + - host: cmii-uav-notice.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-notice + servicePort: 8080 + - host: cmii-uav-oauth.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-oauth + servicePort: 8080 + - host: cmii-uav-process.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-process + servicePort: 8080 + - host: cmii-uav-sense-adapter.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-sense-adapter + servicePort: 8080 + - host: cmii-uav-surveillance.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-surveillance + servicePort: 8080 + - host: cmii-uav-sync.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-sync + servicePort: 8080 + - host: cmii-uav-threedsimulation.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-threedsimulation + servicePort: 8080 + - host: cmii-uav-tower.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-tower + servicePort: 8080 + - host: cmii-uav-user.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-user + servicePort: 8080 + - host: cmii-uav-waypoint.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-waypoint + servicePort: 8080 + - host: uavms-security-center.uavcloud-sdejpt.io + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + serviceName: uavms-security-center + servicePort: 8080 +--- +apiVersion: networking.k8s.io/v1beta1 +kind: Ingress +metadata: + name: all-gateways-ingress + namespace: sdejpt + labels: + type: api-gateway + octopus.control: all-ingress-config-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 + annotations: + kubernetes.io/ingress.class: "nginx" + nginx.ingress.kubernetes.io/enable-cors: "true" + nginx.ingress.kubernetes.io/rewrite-target: /$1 + nginx.ingress.kubernetes.io/configuration-snippet: | + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; +spec: + rules: + - host: fake-domain.sdejpt.io + http: + paths: + - path: /oms/api/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-admin-gateway + servicePort: 8080 + - path: /open/api/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-open-gateway + servicePort: 8080 + - path: /api/?(.*) + pathType: ImplementationSpecific + backend: + serviceName: cmii-uav-gateway + servicePort: 8080 diff --git a/42-202411-山东二级平台/部署/k8s-mongo.yaml b/42-202411-山东二级平台/部署/k8s-mongo.yaml new file mode 100644 index 0000000..862669b --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-mongo.yaml @@ -0,0 +1,78 @@ +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-mongo + namespace: sdejpt + labels: + cmii.app: helm-mongo + cmii.type: middleware + helm.sh/chart: mongo-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 +spec: + type: NodePort + selector: + cmii.app: helm-mongo + cmii.type: middleware + ports: + - port: 27017 + name: server-27017 + targetPort: 27017 + nodePort: 37017 +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: helm-mongo + namespace: sdejpt + labels: + cmii.app: helm-mongo + cmii.type: middleware + helm.sh/chart: mongo-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 +spec: + serviceName: helm-mongo + replicas: 1 + selector: + matchLabels: + cmii.app: helm-mongo + cmii.type: middleware + template: + metadata: + labels: + cmii.app: helm-mongo + cmii.type: middleware + helm.sh/chart: mongo-1.1.0 + app.kubernetes.io/managed-by: octopus-control + app.kubernetes.io/version: 6.0.0 + annotations: + pod.alpha.kubernetes.io/initialized: "true" + spec: + imagePullSecrets: + - name: harborsecret + affinity: {} + containers: + - name: helm-mongo + image: 134.80.124.7:8033/cmii/mongo:5.0 + resources: {} + ports: + - containerPort: 27017 + name: mongo27017 + protocol: TCP + env: + - name: MONGO_INITDB_ROOT_USERNAME + value: cmlc + - name: MONGO_INITDB_ROOT_PASSWORD + value: REdPza8#oVlt + volumeMounts: + - name: mongo-data + mountPath: /data/db + readOnly: false + subPath: default/helm-mongo/data/db + volumes: + - name: mongo-data + persistentVolumeClaim: + claimName: helm-mongo +--- diff --git a/42-202411-山东二级平台/部署/k8s-mysql.yaml b/42-202411-山东二级平台/部署/k8s-mysql.yaml new file mode 100644 index 0000000..cd60d0b --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-mysql.yaml @@ -0,0 +1,416 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: helm-mysql + namespace: sdejpt + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + annotations: {} +secrets: + - name: helm-mysql +--- +apiVersion: v1 +kind: Secret +metadata: + name: helm-mysql + namespace: sdejpt + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus +type: Opaque +data: + mysql-root-password: "UXpmWFFoZDNiUQ==" + mysql-password: "S0F0cm5PckFKNw==" +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-mysql + namespace: sdejpt + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/component: primary +data: + my.cnf: |- + + [mysqld] + port=3306 + basedir=/opt/bitnami/mysql + datadir=/bitnami/mysql/data + pid-file=/opt/bitnami/mysql/tmp/mysqld.pid + socket=/opt/bitnami/mysql/tmp/mysql.sock + log-error=/bitnami/mysql/data/error.log + general_log_file = /bitnami/mysql/data/general.log + slow_query_log_file = /bitnami/mysql/data/slow.log + innodb_data_file_path = ibdata1:512M:autoextend + innodb_buffer_pool_size = 512M + innodb_buffer_pool_instances = 2 + innodb_log_file_size = 512M + innodb_log_files_in_group = 4 + innodb_log_files_in_group = 4 + log-bin = /bitnami/mysql/data/mysql-bin + max_binlog_size=1G + transaction_isolation = REPEATABLE-READ + default_storage_engine = innodb + character-set-server = utf8mb4 + collation-server=utf8mb4_bin + binlog_format = ROW + binlog_rows_query_log_events=on + binlog_cache_size=4M + binlog_expire_logs_seconds = 1296000 + max_binlog_cache_size=2G + gtid_mode = on + enforce_gtid_consistency = 1 + sync_binlog = 1 + innodb_flush_log_at_trx_commit = 1 + innodb_flush_method = O_DIRECT + log_slave_updates=1 + relay_log_recovery = 1 + relay-log-purge = 1 + default_time_zone = '+08:00' + lower_case_table_names=1 + log_bin_trust_function_creators=1 + group_concat_max_len=67108864 + innodb_io_capacity = 4000 + innodb_io_capacity_max = 8000 + innodb_flush_sync = 0 + innodb_flush_neighbors = 0 + innodb_write_io_threads = 8 + innodb_read_io_threads = 8 + innodb_purge_threads = 4 + innodb_page_cleaners = 4 + innodb_open_files = 65535 + innodb_max_dirty_pages_pct = 50 + innodb_lru_scan_depth = 4000 + innodb_checksum_algorithm = crc32 + innodb_lock_wait_timeout = 10 + innodb_rollback_on_timeout = 1 + innodb_print_all_deadlocks = 1 + innodb_file_per_table = 1 + innodb_online_alter_log_max_size = 4G + innodb_stats_on_metadata = 0 + innodb_thread_concurrency = 0 + innodb_sync_spin_loops = 100 + innodb_spin_wait_delay = 30 + lock_wait_timeout = 3600 + slow_query_log = 1 + long_query_time = 10 + log_queries_not_using_indexes =1 + log_throttle_queries_not_using_indexes = 60 + min_examined_row_limit = 100 + log_slow_admin_statements = 1 + log_slow_slave_statements = 1 + default_authentication_plugin=mysql_native_password + skip-name-resolve=1 + explicit_defaults_for_timestamp=1 + plugin_dir=/opt/bitnami/mysql/plugin + max_allowed_packet=128M + max_connections = 2000 + max_connect_errors = 1000000 + table_definition_cache=2000 + table_open_cache_instances=64 + tablespace_definition_cache=1024 + thread_cache_size=256 + interactive_timeout = 600 + wait_timeout = 600 + tmpdir=/opt/bitnami/mysql/tmp + max_allowed_packet=32M + bind-address=0.0.0.0 + performance_schema = 1 + performance_schema_instrument = '%memory%=on' + performance_schema_instrument = '%lock%=on' + innodb_monitor_enable=ALL + + [mysql] + no-auto-rehash + + [mysqldump] + quick + max_allowed_packet = 32M + + [client] + port=3306 + socket=/opt/bitnami/mysql/tmp/mysql.sock + default-character-set=UTF8 + plugin_dir=/opt/bitnami/mysql/plugin + + [manager] + port=3306 + socket=/opt/bitnami/mysql/tmp/mysql.sock + pid-file=/opt/bitnami/mysql/tmp/mysqld.pid +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-mysql-init-scripts + namespace: sdejpt + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/component: primary +data: + create_users_grants_core.sql: |- + create user zyly@'%' identified by 'Cmii@451315'; + grant select on *.* to zyly@'%'; + create user zyly_qc@'%' identified by 'Uh)E_owCyb16'; + grant all on *.* to zyly_qc@'%'; + create user k8s_admin@'%' identified by 'fP#UaH6qQ3)8'; + grant all on *.* to k8s_admin@'%'; + create user audit_dba@'%' identified by 'PjCzqiBmJaTpgkoYXynH'; + grant all on *.* to audit_dba@'%'; + create user db_backup@'%' identified by 'RU5Pu(4FGdT9'; + GRANT SELECT, RELOAD, PROCESS, LOCK TABLES, REPLICATION CLIENT, EVENT on *.* to db_backup@'%'; + create user monitor@'%' identified by 'PL3#nGtrWbf-'; + grant REPLICATION CLIENT on *.* to monitor@'%'; + flush privileges; +--- +kind: Service +apiVersion: v1 +metadata: + name: cmii-mysql + namespace: sdejpt + labels: + app.kubernetes.io/component: primary + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/name: mysql-db + app.kubernetes.io/release: sdejpt + cmii.app: mysql + cmii.type: middleware + octopus.control: mysql-db-wdd +spec: + ports: + - name: mysql + protocol: TCP + port: 13306 + targetPort: mysql + selector: + app.kubernetes.io/component: primary + app.kubernetes.io/name: mysql-db + app.kubernetes.io/release: sdejpt + cmii.app: mysql + cmii.type: middleware + type: ClusterIP +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-mysql-headless + namespace: sdejpt + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + cmii.type: middleware + cmii.app: mysql + app.kubernetes.io/component: primary + annotations: {} +spec: + type: ClusterIP + clusterIP: None + publishNotReadyAddresses: true + ports: + - name: mysql + port: 3306 + targetPort: mysql + selector: + app.kubernetes.io/name: mysql-db + app.kubernetes.io/release: sdejpt + cmii.type: middleware + cmii.app: mysql + app.kubernetes.io/component: primary +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-mysql + namespace: sdejpt + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + cmii.type: middleware + cmii.app: mysql + app.kubernetes.io/component: primary + annotations: {} +spec: + type: NodePort + ports: + - name: mysql + port: 3306 + protocol: TCP + targetPort: mysql + nodePort: 33306 + selector: + app.kubernetes.io/name: mysql-db + app.kubernetes.io/release: sdejpt + cmii.type: middleware + cmii.app: mysql + app.kubernetes.io/component: primary +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: helm-mysql + namespace: sdejpt + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + cmii.type: middleware + cmii.app: mysql + app.kubernetes.io/component: primary +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: mysql-db + app.kubernetes.io/release: sdejpt + cmii.type: middleware + cmii.app: mysql + app.kubernetes.io/component: primary + serviceName: helm-mysql + updateStrategy: + type: RollingUpdate + template: + metadata: + annotations: + checksum/configuration: 6b60fa0f3a846a6ada8effdc4f823cf8003d42a8c8f630fe8b1b66d3454082dd + labels: + app.kubernetes.io/name: mysql-db + octopus.control: mysql-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + cmii.type: middleware + cmii.app: mysql + app.kubernetes.io/component: primary + spec: + imagePullSecrets: + - name: harborsecret + serviceAccountName: helm-mysql + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: mysql-deploy + operator: In + values: + - "master" + securityContext: + fsGroup: 1001 + initContainers: + - name: change-volume-permissions + image: 134.80.124.7:8033/cmii/bitnami-shell:11-debian-11-r136 + imagePullPolicy: "Always" + command: + - /bin/bash + - -ec + - | + chown -R 1001:1001 /bitnami/mysql + securityContext: + runAsUser: 0 + volumeMounts: + - name: mysql-data + mountPath: /bitnami/mysql + containers: + - name: mysql + image: 134.80.124.7:8033/cmii/mysql:8.1.0-debian-11-r42 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsUser: 1001 + env: + - name: BITNAMI_DEBUG + value: "true" + - name: MYSQL_ROOT_PASSWORD + valueFrom: + secretKeyRef: + name: helm-mysql + key: mysql-root-password + - name: MYSQL_DATABASE + value: "cmii" + ports: + - name: mysql + containerPort: 3306 + livenessProbe: + failureThreshold: 5 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 3 + exec: + command: + - /bin/bash + - -ec + - | + password_aux="${MYSQL_ROOT_PASSWORD:-}" + if [[ -f "${MYSQL_ROOT_PASSWORD_FILE:-}" ]]; then + password_aux=$(cat "$MYSQL_ROOT_PASSWORD_FILE") + fi + mysqladmin status -uroot -p"${password_aux}" + readinessProbe: + failureThreshold: 5 + initialDelaySeconds: 30 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 3 + exec: + command: + - /bin/bash + - -ec + - | + password_aux="${MYSQL_ROOT_PASSWORD:-}" + if [[ -f "${MYSQL_ROOT_PASSWORD_FILE:-}" ]]; then + password_aux=$(cat "$MYSQL_ROOT_PASSWORD_FILE") + fi + mysqladmin status -uroot -p"${password_aux}" + startupProbe: + failureThreshold: 60 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 1 + exec: + command: + - /bin/bash + - -ec + - | + password_aux="${MYSQL_ROOT_PASSWORD:-}" + if [[ -f "${MYSQL_ROOT_PASSWORD_FILE:-}" ]]; then + password_aux=$(cat "$MYSQL_ROOT_PASSWORD_FILE") + fi + mysqladmin status -uroot -p"${password_aux}" + resources: + limits: {} + requests: {} + volumeMounts: + - name: mysql-data + mountPath: /bitnami/mysql + - name: custom-init-scripts + mountPath: /docker-entrypoint-initdb.d + - name: config + mountPath: /opt/bitnami/mysql/conf/my.cnf + subPath: my.cnf + volumes: + - name: config + configMap: + name: helm-mysql + - name: custom-init-scripts + configMap: + name: helm-mysql-init-scripts + - name: mysql-data + hostPath: + path: /var/lib/docker/mysql-pv/sdejpt/ diff --git a/42-202411-山东二级平台/部署/k8s-nacos.yaml b/42-202411-山东二级平台/部署/k8s-nacos.yaml new file mode 100644 index 0000000..cd25a1a --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-nacos.yaml @@ -0,0 +1,130 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-nacos-cm + namespace: sdejpt + labels: + cmii.app: helm-nacos + cmii.type: middleware + octopus.control: nacos-wdd + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/version: 6.0.0 +data: + mysql.db.name: "cmii_nacos_config" + mysql.db.host: "helm-mysql" + mysql.port: "3306" + mysql.user: "k8s_admin" + mysql.password: "fP#UaH6qQ3)8" +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-nacos + namespace: sdejpt + labels: + cmii.app: helm-nacos + cmii.type: middleware + octopus.control: nacos-wdd + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/version: 6.0.0 +spec: + type: NodePort + selector: + cmii.app: helm-nacos + cmii.type: middleware + ports: + - port: 8848 + name: server + targetPort: 8848 + nodePort: 38848 + - port: 9848 + name: server12 + targetPort: 9848 + - port: 9849 + name: server23 + targetPort: 9849 +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: helm-nacos + namespace: sdejpt + labels: + cmii.app: helm-nacos + cmii.type: middleware + octopus.control: nacos-wdd + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/version: 6.0.0 +spec: + serviceName: helm-nacos + replicas: 1 + selector: + matchLabels: + cmii.app: helm-nacos + cmii.type: middleware + template: + metadata: + labels: + cmii.app: helm-nacos + cmii.type: middleware + octopus.control: nacos-wdd + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/version: 6.0.0 + annotations: + pod.alpha.kubernetes.io/initialized: "true" + spec: + imagePullSecrets: + - name: harborsecret + affinity: {} + containers: + - name: nacos-server + image: 134.80.124.7:8033/cmii/nacos-server:v2.1.2 + ports: + - containerPort: 8848 + name: dashboard + - containerPort: 9848 + name: tcp-9848 + - containerPort: 9849 + name: tcp-9849 + env: + - name: NACOS_AUTH_ENABLE + value: "false" + - name: NACOS_REPLICAS + value: "1" + - name: MYSQL_SERVICE_DB_NAME + valueFrom: + configMapKeyRef: + name: helm-nacos-cm + key: mysql.db.name + - name: MYSQL_SERVICE_PORT + valueFrom: + configMapKeyRef: + name: helm-nacos-cm + key: mysql.port + - name: MYSQL_SERVICE_USER + valueFrom: + configMapKeyRef: + name: helm-nacos-cm + key: mysql.user + - name: MYSQL_SERVICE_PASSWORD + valueFrom: + configMapKeyRef: + name: helm-nacos-cm + key: mysql.password + - name: MYSQL_SERVICE_HOST + valueFrom: + configMapKeyRef: + name: helm-nacos-cm + key: mysql.db.host + - name: NACOS_SERVER_PORT + value: "8848" + - name: NACOS_APPLICATION_PORT + value: "8848" + - name: PREFER_HOST_MODE + value: "hostname" + - name: MODE + value: standalone + - name: SPRING_DATASOURCE_PLATFORM + value: mysql +--- diff --git a/42-202411-山东二级平台/部署/k8s-nfs-test.yaml b/42-202411-山东二级平台/部署/k8s-nfs-test.yaml new file mode 100644 index 0000000..d1bd9eb --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-nfs-test.yaml @@ -0,0 +1,38 @@ +--- +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: test-claim + annotations: + volume.beta.kubernetes.io/storage-class: "nfs-prod-distribute" #与nfs-StorageClass.yaml metadata.name保持一致 +spec: + accessModes: + - ReadWriteOnce + storageClassName: nfs-prod-distribute + resources: + requests: + storage: 1Mi +--- +kind: Pod +apiVersion: v1 +metadata: + name: test-pod +spec: + imagePullSecrets: + - name: harborsecret + containers: + - name: test-pod + image: 134.80.124.7:8033/cmii/busybox:latest + command: + - "/bin/sh" + args: + - "-c" + - "touch /mnt/NFS-CREATE-SUCCESS && exit 0 || exit 1" #创建一个SUCCESS文件后退出 + volumeMounts: + - name: nfs-pvc + mountPath: "/mnt" + restartPolicy: "Never" + volumes: + - name: nfs-pvc + persistentVolumeClaim: + claimName: test-claim #与PVC名称保持一致 diff --git a/42-202411-山东二级平台/部署/k8s-nfs.yaml b/42-202411-山东二级平台/部署/k8s-nfs.yaml new file mode 100644 index 0000000..dfc3d37 --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-nfs.yaml @@ -0,0 +1,114 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: nfs-client-provisioner + # replace with namespace where provisioner is deployed + namespace: kube-system #根据实际环境设定namespace,下面类同 +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: nfs-client-provisioner-runner +rules: + - apiGroups: [""] + resources: ["persistentvolumes"] + verbs: ["get", "list", "watch", "create", "delete"] + - apiGroups: [""] + resources: ["persistentvolumeclaims"] + verbs: ["get", "list", "watch", "update"] + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["events"] + verbs: ["create", "update", "patch"] +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: run-nfs-client-provisioner +subjects: + - kind: ServiceAccount + name: nfs-client-provisioner + # replace with namespace where provisioner is deployed + namespace: kube-system +roleRef: + kind: ClusterRole +# name: nfs-client-provisioner-runner + name: cluster-admin + apiGroup: rbac.authorization.k8s.io +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: leader-locking-nfs-client-provisioner + # replace with namespace where provisioner is deployed + namespace: kube-system +rules: + - apiGroups: [""] + resources: ["endpoints"] + verbs: ["get", "list", "watch", "create", "update", "patch"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: leader-locking-nfs-client-provisioner +subjects: + - kind: ServiceAccount + name: nfs-client-provisioner + # replace with namespace where provisioner is deployed + namespace: kube-system +roleRef: + kind: Role + name: leader-locking-nfs-client-provisioner + apiGroup: rbac.authorization.k8s.io + +--- +apiVersion: storage.k8s.io/v1 +kind: StorageClass +metadata: + name: nfs-prod-distribute +provisioner: cmlc-nfs-storage #这里的名称要和provisioner配置文件中的环境变量PROVISIONER_NAME保持一致parameters: archiveOnDelete: "false" +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nfs-client-provisioner + labels: + app: nfs-client-provisioner + # replace with namespace where provisioner is deployed + namespace: kube-system #与RBAC文件中的namespace保持一致 +spec: + replicas: 1 + selector: + matchLabels: + app: nfs-client-provisioner + strategy: + type: Recreate + template: + metadata: + labels: + app: nfs-client-provisioner + spec: + imagePullSecrets: + - name: harborsecret + serviceAccountName: nfs-client-provisioner + containers: + - name: nfs-client-provisioner + image: 134.80.124.7:8033/cmii/nfs-subdir-external-provisioner:v4.0.2 + volumeMounts: + - name: nfs-client-root + mountPath: /persistentvolumes + env: + - name: PROVISIONER_NAME + value: cmlc-nfs-storage + - name: NFS_SERVER + value: 134.80.124.21 + - name: NFS_PATH + value: /var/lib/docker/nfs_data + volumes: + - name: nfs-client-root + nfs: + server: 134.80.124.21 + path: /var/lib/docker/nfs_data diff --git a/42-202411-山东二级平台/部署/k8s-pvc.yaml b/42-202411-山东二级平台/部署/k8s-pvc.yaml new file mode 100644 index 0000000..d58b6f3 --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-pvc.yaml @@ -0,0 +1,76 @@ +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nfs-backend-log-pvc + namespace: sdejpt + labels: + cmii.type: middleware-base + cmii.app: nfs-backend-log-pvc + helm.sh/chart: all-persistence-volume-claims-1.1.0 + app.kubernetes.io/version: 6.0.0 +spec: + storageClassName: nfs-prod-distribute + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 100Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: helm-emqxs + namespace: sdejpt + labels: + cmii.type: middleware-base + cmii.app: helm-emqxs + helm.sh/chart: all-persistence-volume-claims-1.1.0 + app.kubernetes.io/version: 6.0.0 +spec: + storageClassName: nfs-prod-distribute + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 20Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: helm-mongo + namespace: sdejpt + labels: + cmii.type: middleware-base + cmii.app: helm-mongo + helm.sh/chart: all-persistence-volume-claims-1.1.0 + app.kubernetes.io/version: 6.0.0 +spec: + storageClassName: nfs-prod-distribute + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 30Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: helm-rabbitmq + namespace: sdejpt + labels: + cmii.type: middleware-base + cmii.app: helm-rabbitmq + helm.sh/chart: all-persistence-volume-claims-1.1.0 + app.kubernetes.io/version: 6.0.0 +spec: + storageClassName: nfs-prod-distribute + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 20Gi diff --git a/42-202411-山东二级平台/部署/k8s-rabbitmq.yaml b/42-202411-山东二级平台/部署/k8s-rabbitmq.yaml new file mode 100644 index 0000000..3c78e1d --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-rabbitmq.yaml @@ -0,0 +1,328 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: helm-rabbitmq + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +automountServiceAccountToken: true +secrets: + - name: helm-rabbitmq +--- +apiVersion: v1 +kind: Secret +metadata: + name: helm-rabbitmq + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +type: Opaque +data: + rabbitmq-password: "blljUk45MXIuX2hq" + rabbitmq-erlang-cookie: "emFBRmt1ZU1xMkJieXZvdHRYbWpoWk52UThuVXFzcTU=" +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-rabbitmq-config + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +data: + rabbitmq.conf: |- + ## Username and password + ## + default_user = admin + default_pass = nYcRN91r._hj + ## Clustering + ## + cluster_formation.peer_discovery_backend = rabbit_peer_discovery_k8s + cluster_formation.k8s.host = kubernetes.default.svc.cluster.local + cluster_formation.node_cleanup.interval = 10 + cluster_formation.node_cleanup.only_log_warning = true + cluster_partition_handling = autoheal + # queue master locator + queue_master_locator = min-masters + # enable guest user + loopback_users.guest = false + #default_vhost = default-vhost + #disk_free_limit.absolute = 50MB + #load_definitions = /app/load_definition.json +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: helm-rabbitmq-endpoint-reader + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +rules: + - apiGroups: [""] + resources: ["endpoints"] + verbs: ["get"] + - apiGroups: [""] + resources: ["events"] + verbs: ["create"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: helm-rabbitmq-endpoint-reader + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +subjects: + - kind: ServiceAccount + name: helm-rabbitmq +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: helm-rabbitmq-endpoint-reader +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-rabbitmq-headless + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +spec: + clusterIP: None + ports: + - name: epmd + port: 4369 + targetPort: epmd + - name: amqp + port: 5672 + targetPort: amqp + - name: dist + port: 25672 + targetPort: dist + - name: dashboard + port: 15672 + targetPort: stats + selector: + app.kubernetes.io/name: helm-rabbitmq + app.kubernetes.io/release: sdejpt + publishNotReadyAddresses: true +--- +apiVersion: v1 +kind: Service +metadata: + name: helm-rabbitmq + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +spec: + type: NodePort + ports: + - name: amqp + port: 5672 + targetPort: amqp + nodePort: 35672 + - name: dashboard + port: 15672 + targetPort: dashboard + nodePort: 36675 + selector: + app.kubernetes.io/name: helm-rabbitmq + app.kubernetes.io/release: sdejpt +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: helm-rabbitmq + namespace: sdejpt + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq +spec: + serviceName: helm-rabbitmq-headless + podManagementPolicy: OrderedReady + replicas: 1 + updateStrategy: + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: helm-rabbitmq + app.kubernetes.io/release: sdejpt + template: + metadata: + labels: + app.kubernetes.io/name: helm-rabbitmq + helm.sh/chart: rabbitmq-8.26.1 + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: rabbitmq + annotations: + checksum/config: d6c2caa9572f64a06d9f7daa34c664a186b4778cd1697ef8e59663152fc628f1 + checksum/secret: d764e7b3d999e7324d1afdfec6140092a612f04b6e0306818675815cec2f454f + spec: + imagePullSecrets: + - name: harborsecret + serviceAccountName: helm-rabbitmq + affinity: {} + securityContext: + fsGroup: 5001 + runAsUser: 5001 + terminationGracePeriodSeconds: 120 + initContainers: + - name: volume-permissions + image: 134.80.124.7:8033/cmii/bitnami-shell:11-debian-11-r136 + imagePullPolicy: "Always" + command: + - /bin/bash + args: + - -ec + - | + mkdir -p "/bitnami/rabbitmq/mnesia" + chown -R "5001:5001" "/bitnami/rabbitmq/mnesia" + securityContext: + runAsUser: 0 + resources: + limits: {} + requests: {} + volumeMounts: + - name: data + mountPath: /bitnami/rabbitmq/mnesia + containers: + - name: rabbitmq + image: 134.80.124.7:8033/cmii/rabbitmq:3.9.12-debian-10-r3 + imagePullPolicy: "Always" + env: + - name: BITNAMI_DEBUG + value: "false" + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: K8S_SERVICE_NAME + value: "helm-rabbitmq-headless" + - name: K8S_ADDRESS_TYPE + value: hostname + - name: RABBITMQ_FORCE_BOOT + value: "no" + - name: RABBITMQ_NODE_NAME + value: "rabbit@$(MY_POD_NAME).$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: K8S_HOSTNAME_SUFFIX + value: ".$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: RABBITMQ_MNESIA_DIR + value: "/bitnami/rabbitmq/mnesia/$(RABBITMQ_NODE_NAME)" + - name: RABBITMQ_LDAP_ENABLE + value: "no" + - name: RABBITMQ_LOGS + value: "-" + - name: RABBITMQ_ULIMIT_NOFILES + value: "65536" + - name: RABBITMQ_USE_LONGNAME + value: "true" + - name: RABBITMQ_ERL_COOKIE + valueFrom: + secretKeyRef: + name: helm-rabbitmq + key: rabbitmq-erlang-cookie + - name: RABBITMQ_LOAD_DEFINITIONS + value: "no" + - name: RABBITMQ_SECURE_PASSWORD + value: "yes" + - name: RABBITMQ_USERNAME + value: "admin" + - name: RABBITMQ_PASSWORD + valueFrom: + secretKeyRef: + name: helm-rabbitmq + key: rabbitmq-password + - name: RABBITMQ_PLUGINS + value: "rabbitmq_management, rabbitmq_peer_discovery_k8s, rabbitmq_shovel, rabbitmq_shovel_management, rabbitmq_auth_backend_ldap" + ports: + - name: amqp + containerPort: 5672 + - name: dist + containerPort: 25672 + - name: dashboard + containerPort: 15672 + - name: epmd + containerPort: 4369 + livenessProbe: + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q ping + initialDelaySeconds: 120 + periodSeconds: 30 + timeoutSeconds: 20 + successThreshold: 1 + failureThreshold: 6 + readinessProbe: + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q check_running && rabbitmq-diagnostics -q check_local_alarms + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + lifecycle: + preStop: + exec: + command: + - /bin/bash + - -ec + - | + if [[ -f /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh ]]; then + /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh -t "120" -d "false" + else + rabbitmqctl stop_app + fi + resources: + limits: {} + requests: {} + volumeMounts: + - name: configuration + mountPath: /bitnami/rabbitmq/conf + - name: data + mountPath: /bitnami/rabbitmq/mnesia + volumes: + - name: configuration + configMap: + name: helm-rabbitmq-config + items: + - key: rabbitmq.conf + path: rabbitmq.conf + - name: data + persistentVolumeClaim: + claimName: helm-rabbitmq diff --git a/42-202411-山东二级平台/部署/k8s-redis.yaml b/42-202411-山东二级平台/部署/k8s-redis.yaml new file mode 100644 index 0000000..c99514b --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-redis.yaml @@ -0,0 +1,585 @@ +--- +apiVersion: v1 +kind: ServiceAccount +automountServiceAccountToken: true +metadata: + name: helm-redis + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus +--- +apiVersion: v1 +kind: Secret +metadata: + name: helm-redis + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus +type: Opaque +data: + redis-password: "TWNhY2hlQDQ1MjI=" +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-redis-configuration + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus +data: + redis.conf: |- + # User-supplied common configuration: + # Enable AOF https://redis.io/topics/persistence#append-only-file + appendonly yes + # Disable RDB persistence, AOF persistence already enabled. + save "" + # End of common configuration + master.conf: |- + dir /data + # User-supplied master configuration: + rename-command FLUSHDB "" + rename-command FLUSHALL "" + # End of master configuration + replica.conf: |- + dir /data + slave-read-only yes + # User-supplied replica configuration: + rename-command FLUSHDB "" + rename-command FLUSHALL "" + # End of replica configuration +--- +# Source: outside-deploy/charts/redis-db/templates/health-configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-redis-health + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus +data: + ping_readiness_local.sh: |- + #!/bin/bash + + [[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")" + [[ -n "$REDIS_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_PASSWORD" + response=$( + timeout -s 3 $1 \ + redis-cli \ + -h localhost \ + -p $REDIS_PORT \ + ping + ) + if [ "$response" != "PONG" ]; then + echo "$response" + exit 1 + fi + ping_liveness_local.sh: |- + #!/bin/bash + + [[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")" + [[ -n "$REDIS_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_PASSWORD" + response=$( + timeout -s 3 $1 \ + redis-cli \ + -h localhost \ + -p $REDIS_PORT \ + ping + ) + if [ "$response" != "PONG" ] && [ "$response" != "LOADING Redis is loading the dataset in memory" ]; then + echo "$response" + exit 1 + fi + ping_readiness_master.sh: |- + #!/bin/bash + + [[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")" + [[ -n "$REDIS_MASTER_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_MASTER_PASSWORD" + response=$( + timeout -s 3 $1 \ + redis-cli \ + -h $REDIS_MASTER_HOST \ + -p $REDIS_MASTER_PORT_NUMBER \ + ping + ) + if [ "$response" != "PONG" ]; then + echo "$response" + exit 1 + fi + ping_liveness_master.sh: |- + #!/bin/bash + + [[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")" + [[ -n "$REDIS_MASTER_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_MASTER_PASSWORD" + response=$( + timeout -s 3 $1 \ + redis-cli \ + -h $REDIS_MASTER_HOST \ + -p $REDIS_MASTER_PORT_NUMBER \ + ping + ) + if [ "$response" != "PONG" ] && [ "$response" != "LOADING Redis is loading the dataset in memory" ]; then + echo "$response" + exit 1 + fi + ping_readiness_local_and_master.sh: |- + script_dir="$(dirname "$0")" + exit_status=0 + "$script_dir/ping_readiness_local.sh" $1 || exit_status=$? + "$script_dir/ping_readiness_master.sh" $1 || exit_status=$? + exit $exit_status + ping_liveness_local_and_master.sh: |- + script_dir="$(dirname "$0")" + exit_status=0 + "$script_dir/ping_liveness_local.sh" $1 || exit_status=$? + "$script_dir/ping_liveness_master.sh" $1 || exit_status=$? + exit $exit_status +--- +# Source: outside-deploy/charts/redis-db/templates/scripts-configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: helm-redis-scripts + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus +data: + start-master.sh: | + #!/bin/bash + + [[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")" + if [[ ! -f /opt/bitnami/redis/etc/master.conf ]];then + cp /opt/bitnami/redis/mounted-etc/master.conf /opt/bitnami/redis/etc/master.conf + fi + if [[ ! -f /opt/bitnami/redis/etc/redis.conf ]];then + cp /opt/bitnami/redis/mounted-etc/redis.conf /opt/bitnami/redis/etc/redis.conf + fi + ARGS=("--port" "${REDIS_PORT}") + ARGS+=("--requirepass" "${REDIS_PASSWORD}") + ARGS+=("--masterauth" "${REDIS_PASSWORD}") + ARGS+=("--include" "/opt/bitnami/redis/etc/redis.conf") + ARGS+=("--include" "/opt/bitnami/redis/etc/master.conf") + exec redis-server "${ARGS[@]}" + start-replica.sh: | + #!/bin/bash + + get_port() { + hostname="$1" + type="$2" + + port_var=$(echo "${hostname^^}_SERVICE_PORT_$type" | sed "s/-/_/g") + port=${!port_var} + + if [ -z "$port" ]; then + case $type in + "SENTINEL") + echo 26379 + ;; + "REDIS") + echo 6379 + ;; + esac + else + echo $port + fi + } + + get_full_hostname() { + hostname="$1" + echo "${hostname}.${HEADLESS_SERVICE}" + } + + REDISPORT=$(get_port "$HOSTNAME" "REDIS") + + [[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")" + [[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")" + if [[ ! -f /opt/bitnami/redis/etc/replica.conf ]];then + cp /opt/bitnami/redis/mounted-etc/replica.conf /opt/bitnami/redis/etc/replica.conf + fi + if [[ ! -f /opt/bitnami/redis/etc/redis.conf ]];then + cp /opt/bitnami/redis/mounted-etc/redis.conf /opt/bitnami/redis/etc/redis.conf + fi + + echo "" >> /opt/bitnami/redis/etc/replica.conf + echo "replica-announce-port $REDISPORT" >> /opt/bitnami/redis/etc/replica.conf + echo "replica-announce-ip $(get_full_hostname "$HOSTNAME")" >> /opt/bitnami/redis/etc/replica.conf + ARGS=("--port" "${REDIS_PORT}") + ARGS+=("--slaveof" "${REDIS_MASTER_HOST}" "${REDIS_MASTER_PORT_NUMBER}") + ARGS+=("--requirepass" "${REDIS_PASSWORD}") + ARGS+=("--masterauth" "${REDIS_MASTER_PASSWORD}") + ARGS+=("--include" "/opt/bitnami/redis/etc/redis.conf") + ARGS+=("--include" "/opt/bitnami/redis/etc/replica.conf") + exec redis-server "${ARGS[@]}" +--- +# Source: outside-deploy/charts/redis-db/templates/headless-svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: helm-redis-headless + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus +spec: + type: ClusterIP + clusterIP: None + ports: + - name: tcp-redis + port: 6379 + targetPort: redis + selector: + app.kubernetes.io/name: redis-db + app.kubernetes.io/release: sdejpt +--- +# Source: outside-deploy/charts/redis-db/templates/master/service.yaml +apiVersion: v1 +kind: Service +metadata: + name: helm-redis-master + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + cmii.type: middleware + cmii.app: redis + app.kubernetes.io/component: master +spec: + type: ClusterIP + + ports: + - name: tcp-redis + port: 6379 + targetPort: redis + nodePort: null + selector: + app.kubernetes.io/name: redis-db + app.kubernetes.io/release: sdejpt + cmii.type: middleware + cmii.app: redis + app.kubernetes.io/component: master +--- +# Source: outside-deploy/charts/redis-db/templates/replicas/service.yaml +apiVersion: v1 +kind: Service +metadata: + name: helm-redis-replicas + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/component: replica +spec: + type: ClusterIP + ports: + - name: tcp-redis + port: 6379 + targetPort: redis + nodePort: null + selector: + app.kubernetes.io/name: redis-db + app.kubernetes.io/release: sdejpt + app.kubernetes.io/component: replica +--- +# Source: outside-deploy/charts/redis-db/templates/master/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: helm-redis-master + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + cmii.type: middleware + cmii.app: redis + app.kubernetes.io/component: master +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: redis-db + app.kubernetes.io/release: sdejpt + cmii.type: middleware + cmii.app: redis + app.kubernetes.io/component: master + serviceName: helm-redis-headless + updateStrategy: + rollingUpdate: {} + type: RollingUpdate + template: + metadata: + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + cmii.type: middleware + cmii.app: redis + app.kubernetes.io/component: master + annotations: + checksum/configmap: b64aa5db67e6e63811f3c1095b9fce34d83c86a471fccdda0e48eedb53a179b0 + checksum/health: 6e0a6330e5ac63e565ae92af1444527d72d8897f91266f333555b3d323570623 + checksum/scripts: b88df93710b7c42a76006e20218f05c6e500e6cc2affd4bb1985832f03166e98 + checksum/secret: 43f1b0e20f9cb2de936bd182bc3683b720fc3cf4f4e76cb23c06a52398a50e8d + spec: + affinity: {} + securityContext: + fsGroup: 1001 + serviceAccountName: helm-redis + imagePullSecrets: + - name: harborsecret + terminationGracePeriodSeconds: 30 + containers: + - name: redis + image: 134.80.124.7:8033/cmii/redis:6.2.6-debian-10-r0 + imagePullPolicy: "Always" + securityContext: + runAsUser: 1001 + command: + - /bin/bash + args: + - -c + - /opt/bitnami/scripts/start-scripts/start-master.sh + env: + - name: BITNAMI_DEBUG + value: "false" + - name: REDIS_REPLICATION_MODE + value: master + - name: ALLOW_EMPTY_PASSWORD + value: "no" + - name: REDIS_PASSWORD + valueFrom: + secretKeyRef: + name: helm-redis + key: redis-password + - name: REDIS_TLS_ENABLED + value: "no" + - name: REDIS_PORT + value: "6379" + ports: + - name: redis + containerPort: 6379 + livenessProbe: + initialDelaySeconds: 20 + periodSeconds: 5 + # One second longer than command timeout should prevent generation of zombie processes. + timeoutSeconds: 6 + successThreshold: 1 + failureThreshold: 5 + exec: + command: + - sh + - -c + - /health/ping_liveness_local.sh 5 + readinessProbe: + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 2 + successThreshold: 1 + failureThreshold: 5 + exec: + command: + - sh + - -c + - /health/ping_readiness_local.sh 1 + resources: + limits: + cpu: "2" + memory: 8Gi + requests: + cpu: "2" + memory: 8Gi + volumeMounts: + - name: start-scripts + mountPath: /opt/bitnami/scripts/start-scripts + - name: health + mountPath: /health + - name: redis-data + mountPath: /data + subPath: + - name: config + mountPath: /opt/bitnami/redis/mounted-etc + - name: redis-tmp-conf + mountPath: /opt/bitnami/redis/etc/ + - name: tmp + mountPath: /tmp + volumes: + - name: start-scripts + configMap: + name: helm-redis-scripts + defaultMode: 0755 + - name: health + configMap: + name: helm-redis-health + defaultMode: 0755 + - name: config + configMap: + name: helm-redis-configuration + - name: redis-tmp-conf + emptyDir: {} + - name: tmp + emptyDir: {} + - name: redis-data + emptyDir: {} +--- +# Source: outside-deploy/charts/redis-db/templates/replicas/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: helm-redis-replicas + namespace: sdejpt + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/component: replica +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: redis-db + app.kubernetes.io/release: sdejpt + app.kubernetes.io/component: replica + serviceName: helm-redis-headless + updateStrategy: + rollingUpdate: {} + type: RollingUpdate + template: + metadata: + labels: + app.kubernetes.io/name: redis-db + octopus.control: redis-db-wdd + app.kubernetes.io/release: sdejpt + app.kubernetes.io/managed-by: octopus + app.kubernetes.io/component: replica + annotations: + checksum/configmap: b64aa5db67e6e63811f3c1095b9fce34d83c86a471fccdda0e48eedb53a179b0 + checksum/health: 6e0a6330e5ac63e565ae92af1444527d72d8897f91266f333555b3d323570623 + checksum/scripts: b88df93710b7c42a76006e20218f05c6e500e6cc2affd4bb1985832f03166e98 + checksum/secret: 43f1b0e20f9cb2de936bd182bc3683b720fc3cf4f4e76cb23c06a52398a50e8d + spec: + imagePullSecrets: + - name: harborsecret + securityContext: + fsGroup: 1001 + serviceAccountName: helm-redis + terminationGracePeriodSeconds: 30 + containers: + - name: redis + image: 134.80.124.7:8033/cmii/redis:6.2.6-debian-10-r0 + imagePullPolicy: "Always" + securityContext: + runAsUser: 1001 + command: + - /bin/bash + args: + - -c + - /opt/bitnami/scripts/start-scripts/start-replica.sh + env: + - name: BITNAMI_DEBUG + value: "false" + - name: REDIS_REPLICATION_MODE + value: slave + - name: REDIS_MASTER_HOST + value: helm-redis-master-0.helm-redis-headless.sdejpt.svc.cluster.local + - name: REDIS_MASTER_PORT_NUMBER + value: "6379" + - name: ALLOW_EMPTY_PASSWORD + value: "no" + - name: REDIS_PASSWORD + valueFrom: + secretKeyRef: + name: helm-redis + key: redis-password + - name: REDIS_MASTER_PASSWORD + valueFrom: + secretKeyRef: + name: helm-redis + key: redis-password + - name: REDIS_TLS_ENABLED + value: "no" + - name: REDIS_PORT + value: "6379" + ports: + - name: redis + containerPort: 6379 + livenessProbe: + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 6 + successThreshold: 1 + failureThreshold: 5 + exec: + command: + - sh + - -c + - /health/ping_liveness_local_and_master.sh 5 + readinessProbe: + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 2 + successThreshold: 1 + failureThreshold: 5 + exec: + command: + - sh + - -c + - /health/ping_readiness_local_and_master.sh 1 + resources: + limits: + cpu: "2" + memory: 8Gi + requests: + cpu: "2" + memory: 8Gi + volumeMounts: + - name: start-scripts + mountPath: /opt/bitnami/scripts/start-scripts + - name: health + mountPath: /health + - name: redis-data + mountPath: /data + subPath: + - name: config + mountPath: /opt/bitnami/redis/mounted-etc + - name: redis-tmp-conf + mountPath: /opt/bitnami/redis/etc + volumes: + - name: start-scripts + configMap: + name: helm-redis-scripts + defaultMode: 0755 + - name: health + configMap: + name: helm-redis-health + defaultMode: 0755 + - name: config + configMap: + name: helm-redis-configuration + - name: redis-tmp-conf + emptyDir: {} + - name: redis-data + emptyDir: {} + diff --git a/42-202411-山东二级平台/部署/k8s-srs.yaml b/42-202411-山东二级平台/部署/k8s-srs.yaml new file mode 100644 index 0000000..a35cba4 --- /dev/null +++ b/42-202411-山东二级平台/部署/k8s-srs.yaml @@ -0,0 +1,496 @@ +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: helm-live-srs-cm + namespace: sdejpt + labels: + cmii.app: live-srs + cmii.type: live + octopus.control: wdd + app.kubernetes.io/managed-by: octopus + helm.sh/chart: cmlc-live-srs-rtc-2.0.0 +data: + srs.rtc.conf: |- + listen 31935; + max_connections 4096; + srs_log_tank console; + srs_log_level info; + srs_log_file /home/srs.log; + daemon off; + http_api { + enabled on; + listen 1985; + crossdomain on; + } + stats { + network 0; + } + http_server { + enabled on; + listen 8080; + dir /home/hls; + } + srt_server { + enabled on; + listen 30556; + maxbw 1000000000; + connect_timeout 4000; + peerlatency 600; + recvlatency 600; + } + rtc_server { + enabled on; + listen 30090; + candidate $CANDIDATE; + } + vhost __defaultVhost__ { + http_hooks { + enabled on; + on_publish http://helm-live-op-svc-v2:8080/hooks/on_push; + } + http_remux { + enabled on; + } + rtc { + enabled on; + rtmp_to_rtc on; + rtc_to_rtmp on; + keep_bframe off; + } + tcp_nodelay on; + min_latency on; + play { + gop_cache off; + mw_latency 100; + mw_msgs 10; + } + publish { + firstpkt_timeout 8000; + normal_timeout 4000; + mr on; + } + dvr { + enabled off; + dvr_path /home/dvr/[app]/[stream]/[2006][01]/[timestamp].mp4; + dvr_plan session; + } + hls { + enabled on; + hls_path /home/hls; + hls_fragment 10; + hls_window 60; + hls_m3u8_file [app]/[stream].m3u8; + hls_ts_file [app]/[stream]/[2006][01][02]/[timestamp]-[duration].ts; + hls_cleanup on; + hls_entry_prefix http://134.80.124.6:8088; + } + } +--- +kind: Service +apiVersion: v1 +metadata: + name: helm-live-srs-svc-exporter + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus +spec: + ports: + - name: rtmp + protocol: TCP + port: 31935 + targetPort: 31935 + nodePort: 31935 + - name: rtc + protocol: UDP + port: 30090 + targetPort: 30090 + nodePort: 30090 + - name: rtc-tcp + protocol: TCP + port: 30090 + targetPort: 30090 + nodePort: 30090 + - name: srt + protocol: UDP + port: 30556 + targetPort: 30556 + nodePort: 30556 + - name: api + protocol: TCP + port: 1985 + targetPort: 1985 + nodePort: 30080 + selector: + srs-role: rtc + type: NodePort + sessionAffinity: None + externalTrafficPolicy: Cluster + +--- +kind: Service +apiVersion: v1 +metadata: + name: helm-live-srs-svc + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus +spec: + ports: + - name: http + protocol: TCP + port: 8080 + targetPort: 8080 + - name: api + protocol: TCP + port: 1985 + targetPort: 1985 + selector: + srs-role: rtc + type: ClusterIP + sessionAffinity: None + +--- +kind: Service +apiVersion: v1 +metadata: + name: helm-live-srsrtc-svc + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus +spec: + ports: + - name: rtmp + protocol: TCP + port: 31935 + targetPort: 31935 + selector: + srs-role: rtc + type: ClusterIP + sessionAffinity: None + +--- +kind: StatefulSet +apiVersion: apps/v1 +metadata: + name: helm-live-srs-rtc + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus + cmii.app: live-srs + cmii.type: live + helm.sh/chart: cmlc-live-srs-rtc-2.0.0 + srs-role: rtc +spec: + replicas: 1 + selector: + matchLabels: + srs-role: rtc + template: + metadata: + labels: + srs-role: rtc + spec: + volumes: + - name: srs-conf-file + configMap: + name: helm-live-srs-cm + items: + - key: srs.rtc.conf + path: docker.conf + defaultMode: 420 + - name: srs-vol + emptyDir: + sizeLimit: 8Gi + containers: + - name: srs-rtc + image: 134.80.124.7:8033/cmii/srs:v5.0.195 + ports: + - name: srs-rtmp + containerPort: 31935 + protocol: TCP + - name: srs-api + containerPort: 1985 + protocol: TCP + - name: srs-flv + containerPort: 8080 + protocol: TCP + - name: srs-webrtc + containerPort: 30090 + protocol: UDP + - name: srs-webrtc-tcp + containerPort: 30090 + protocol: TCP + - name: srs-srt + containerPort: 30556 + protocol: UDP + env: + - name: CANDIDATE + value: 134.80.124.6 + resources: + limits: + cpu: 2000m + memory: 4Gi + requests: + cpu: 100m + memory: 256Mi + volumeMounts: + - name: srs-conf-file + mountPath: /usr/local/srs/conf/docker.conf + subPath: docker.conf + - name: srs-vol + mountPath: /home/dvr + subPath: sdejpt/helm-live/dvr + - name: srs-vol + mountPath: /home/hls + subPath: sdejpt/helm-live/hls + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + imagePullPolicy: Always + - name: oss-adaptor + image: 134.80.124.7:8033/cmii/cmii-srs-oss-adaptor:2023-SA + env: + - name: OSS_ENDPOINT + value: 'http://134.80.124.15:9000' + - name: OSS_AK + value: cmii + - name: OSS_SK + value: 'B#923fC7mk' + - name: OSS_BUCKET + value: live-cluster-hls + - name: SRS_OP + value: 'http://helm-live-op-svc-v2:8080' + - name: MYSQL_ENDPOINT + value: 'helm-mysql:3306' + - name: MYSQL_USERNAME + value: k8s_admin + - name: MYSQL_PASSWORD + value: fP#UaH6qQ3)8 + - name: MYSQL_DATABASE + value: cmii_live_srs_op + - name: MYSQL_TABLE + value: live_segment + - name: LOG_LEVEL + value: info + - name: OSS_META + value: 'yes' + resources: + limits: + cpu: 2000m + memory: 4Gi + requests: + cpu: 100m + memory: 256Mi + volumeMounts: + - name: srs-vol + mountPath: /cmii/share/hls + subPath: sdejpt/helm-live/hls + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + imagePullPolicy: Always + restartPolicy: Always + terminationGracePeriodSeconds: 30 + dnsPolicy: ClusterFirst + securityContext: {} + imagePullSecrets: + - name: harborsecret + affinity: {} + schedulerName: default-scheduler + serviceName: helm-live-srsrtc-svc + podManagementPolicy: OrderedReady + updateStrategy: + type: RollingUpdate + rollingUpdate: + partition: 0 + revisionHistoryLimit: 10 +--- +# live-srs部分 +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: helm-live-op-v2 + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus + cmii.app: live-engine + cmii.type: live + helm.sh/chart: cmlc-live-live-op-2.0.0 + live-role: op-v2 +spec: + replicas: 1 + selector: + matchLabels: + live-role: op-v2 + template: + metadata: + labels: + live-role: op-v2 + spec: + volumes: + - name: srs-conf-file + configMap: + name: helm-live-op-cm-v2 + items: + - key: live.op.conf + path: bootstrap.yaml + defaultMode: 420 + containers: + - name: helm-live-op-v2 + image: 134.80.124.7:8033/cmii/cmii-live-operator:5.2.0 + ports: + - name: operator + containerPort: 8080 + protocol: TCP + resources: + limits: + cpu: 4800m + memory: 4Gi + requests: + cpu: 100m + memory: 256Mi + volumeMounts: + - name: srs-conf-file + mountPath: /cmii/bootstrap.yaml + subPath: bootstrap.yaml + livenessProbe: + httpGet: + path: /cmii/health + port: 8080 + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /cmii/health + port: 8080 + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + periodSeconds: 20 + successThreshold: 1 + failureThreshold: 3 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + imagePullPolicy: Always + restartPolicy: Always + terminationGracePeriodSeconds: 30 + dnsPolicy: ClusterFirst + securityContext: {} + imagePullSecrets: + - name: harborsecret + affinity: {} + schedulerName: default-scheduler + strategy: + type: RollingUpdate + rollingUpdate: + maxUnavailable: 25% + maxSurge: 25% + revisionHistoryLimit: 10 + progressDeadlineSeconds: 600 +--- +kind: Service +apiVersion: v1 +metadata: + name: helm-live-op-svc-v2 + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus +spec: + ports: + - protocol: TCP + port: 8080 + targetPort: 8080 + nodePort: 30333 + selector: + live-role: op-v2 + type: NodePort + sessionAffinity: None +--- +kind: Service +apiVersion: v1 +metadata: + name: helm-live-op-svc + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus +spec: + ports: + - protocol: TCP + port: 8080 + targetPort: 8080 + selector: + live-role: op + type: ClusterIP + sessionAffinity: None +--- +kind: ConfigMap +apiVersion: v1 +metadata: + name: helm-live-op-cm-v2 + namespace: sdejpt + labels: + octopus.control: wdd + app.kubernetes.io/managed-by: octopus + cmii.app: live-engine + cmii.type: live +data: + live.op.conf: |- + server: + port: 8080 + spring: + main: + allow-bean-definition-overriding: true + allow-circular-references: true + application: + name: cmii-live-operator + platform: + info: + name: cmii-live-operator + description: cmii-live-operator + version: 6.0.0 + scanPackage: com.cmii.live.op + cloud: + nacos: + config: + username: nacos + password: KingKong@95461234 + server-addr: helm-nacos:8848 + extension-configs: + - data-id: cmii-live-operator.yml + group: 6.0.0 + refresh: true + shared-configs: + - data-id: cmii-backend-system.yml + group: 6.0.0 + refresh: true + discovery: + enabled: false + + live: + engine: + type: srs + endpoint: 'http://helm-live-srs-svc:1985' + proto: + rtmp: 'rtmp://134.80.124.6:31935' + rtsp: 'rtsp://134.80.124.6:30554' + srt: 'srt://134.80.124.6:30556' + flv: 'http://134.80.124.6:30500' + hls: 'http://134.80.124.6:30500' + rtc: 'webrtc://134.80.124.6:30080' + replay: 'https://134.80.124.6:30333' + minio: + endpoint: http://134.80.124.15:9000 + access-key: cmii + secret-key: B#923fC7mk + bucket: live-cluster-hls diff --git a/43-协助-河北移动/cmii-update.sh b/43-协助-河北移动/cmii-update.sh new file mode 100644 index 0000000..b69d0ec --- /dev/null +++ b/43-协助-河北移动/cmii-update.sh @@ -0,0 +1,68 @@ +#!/bin/bash + +harbor_host=192.168.0.10:8033 +namespace=hbyd +app_name="" +new_tag="" + +upload_image_to_harbor(){ + if [ "$app_name" == "" ]; then + echo "app name null exit!" + exit 233 + fi + + if ! docker load < "$1"; then + echo "docker load error !" + fi + docker tag "harbor.cdcyy.com.cn/cmii/$app_name:$new_tag" "$harbor_host/cmii/$app_name:$new_tag" + echo "" + echo "" + echo "upload_image_to_harbor - start to push to => $harbor_host/cmii/$app_name:$new_tag" + docker login -u admin -p V2ryStr@ngPss $harbor_host + docker push "$harbor_host/cmii/$app_name:$new_tag" + echo "" + echo "" + +} + +parse_args(){ + if [ "$1" == "" ]; then + echo "no zip file in error!" + exit 233 + fi + local image_name="$1" + + # cmii-uav-surveillance=5.2.0-27031-cqga=2024-03-04=573.tar.gz + app_name=$(echo $image_name | cut -d "=" -f1) + new_tag=$(echo $image_name | cut -d "=" -f2) +} + +update_image_tag(){ + if [ "$new_tag" == "" ]; then + echo "new tag error!" + exit 233 + fi + + local image_prefix=$(kubectl -n ${namespace} get deployment "${app_name}" -o=jsonpath='{.spec.template.spec.containers[*].image}' | cut -d":" -f1) + + echo "image grep is => ${image_prefix}" + + echo "start to update ${namespace} ${app_name} to ${new_tag} !" + echo "" + kubectl -n ${namespace} patch deployment "${app_name}" -p "{\"spec\":{\"template\":{\"spec\":{\"containers\":[{\"name\":\"${app_name}\",\"image\": \"${harbor_host}/cmii/$app_name:${new_tag}\"}]}}}}" + echo "" + echo "start to wait for 3 seconds!" + sleep 3 + local image_new=$(kubectl -n ${namespace} get deployment "${app_name}" -o=jsonpath='{.spec.template.spec.containers[*].image}') + echo "" + echo "new image are => $image_new" + echo "" +} + +main(){ + parse_args "$1" + upload_image_to_harbor "$1" + update_image_tag +} + +main "$@" \ No newline at end of file diff --git a/44-202411-厦门移动扩容/0.0-dependencies.sh b/44-202411-厦门移动扩容/0.0-dependencies.sh new file mode 100644 index 0000000..95b6b1a --- /dev/null +++ b/44-202411-厦门移动扩容/0.0-dependencies.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +# 需要在所有的节点执行 + +hostnamectl set-hostname storage-1 + +sed -i "/search/ a nameserver 223.5.5.5" /etc/resolv.conf + +echo "AllowTcpForwarding yes" >> /etc/ssh/sshd_config +systemctl restart sshd + +cat > /etc/hosts << EOF +192.168.0.8 master-node +192.168.0.65 worker-1 +192.168.0.45 worker-2 +192.168.0.7 worker-3 +192.168.0.9 worker-4 +192.168.0.10 worker-5 +192.168.0.11 worker-6 +192.168.0.84 worker-7 +192.168.0.85 worker-8 +192.168.0.86 worker-9 +192.168.0.2 storage-1 +192.168.0.15 gpu-1 +192.168.0.12 gpu-2 +192.168.0.13 gpu-3 +EOF + +yum clean all && yum makecache + +36.134.71.138 + +Lingyun@443 + + diff --git a/44-202411-厦门移动扩容/0.1-mountNodeVolume.sh b/44-202411-厦门移动扩容/0.1-mountNodeVolume.sh new file mode 100644 index 0000000..e4e4cb0 --- /dev/null +++ b/44-202411-厦门移动扩容/0.1-mountNodeVolume.sh @@ -0,0 +1,75 @@ +#! /bin/bash + +# 关闭虚拟缓存 +swapoff -a +cp -f /etc/fstab /etc/fstab_bak +cat /etc/fstab_bak | grep -v swap >/etc/fstab + +# echo "-----------------------------------------------------------------------" +# RootVolumeSizeBefore=$(df -TH | grep -w "/dev/mapper/centos-root" | awk '{print $3}') +# echo "扩容之前的root目录的容量为:${RootVolumeSizeBefore}" + +# echo "y + + +# " | lvremove /dev/mapper/centos-swap + +# freepesize=$(vgdisplay centos | grep 'Free PE' | awk '{print $5}') + +# lvextend -l+${freepesize} /dev/mapper/centos-root + + +# ## #自动扩展XFS文件系统到最大的可用大小 +# xfs_growfs /dev/mapper/centos-root + +# df -TH | grep -w "/dev/mapper/centos-root" | awk '{print $3}' + +# echo "-----------------------------------------------------------------------" +# RootVolumeSizeAfter=$(df -TH | grep -w "/dev/mapper/centos-root" | awk '{print $3}') +# echo "扩容之后的root目录的容量为:${RootVolumeSizeAfter}" +# RootVolumeSizeBeforeNum=$(echo $RootVolumeSizeBefore | cut -d "G" -f1) +# RootVolumeSizeAfterNum=$(echo $RootVolumeSizeAfter | cut -d "G" -f1) + +# echo "恭喜,您的root目录容量增加了+++++++$(( ${RootVolumeSizeAfterNum}-${RootVolumeSizeBeforeNum} ))GB+++++" + +echo "" +echo "" +echo "" +echo "-----------------------------------------------------------------------" + +export VG_NAME=datavg + +echo "n +p + + + +t + +8e +w +" | fdisk /dev/vdb +partprobe +# 如果已经存在卷组,直接进行添加 +# vgextend /dev/mapper/centos /dev/vda3 +vgcreate ${VG_NAME} /dev/vdb1 +export selfpesize=$(vgdisplay ${VG_NAME} | grep 'Total PE' | awk '{print $3}') +# 大小根据实际情况调整 +lvcreate -l ${selfpesize} -n lvdata ${VG_NAME} +mkfs.xfs /dev/mapper/${VG_NAME}-lvdata +mkdir -p /data +mkdir -p /var/lib/docker +selffstab="/dev/mapper/${VG_NAME}-lvdata /var/lib/docker xfs defaults 0 0" +# export selffstab="/dev/mapper/${VG_NAME}-lvdata /data xfs defaults 0 0" +echo "${selffstab}" >> /etc/fstab +mount -a + +echo "" +echo "" +echo "" +df -TH +echo "-----------------------------------------------------------------------" + +# 扩容根目录,${VG_NAME}-root 通过df -Th获取需要扩容的文件系统 +# lvextend -l +100%FREE /dev/mapper/${VG_NAME}-root +# xfs_growfs /dev/mapper/${VG_NAME}-root \ No newline at end of file diff --git a/44-202411-厦门移动扩容/rke-cluster.yml b/44-202411-厦门移动扩容/rke-cluster.yml new file mode 100644 index 0000000..0b7431f --- /dev/null +++ b/44-202411-厦门移动扩容/rke-cluster.yml @@ -0,0 +1,280 @@ +nodes: + - address: 192.168.0.8 + user: rke-installer + role: + - controlplane + - etcd + - worker + internal_address: 192.168.0.8 + labels: + ingress-deploy: true + uavcloud.env: demo + - address: 192.168.0.65 + user: rke-installer + role: + - worker + internal_address: 192.168.0.65 + labels: + uavcloud.env: demo + - address: 192.168.0.45 + user: rke-installer + role: + - worker + internal_address: 192.168.0.45 + labels: + uavcloud.env: demo + - address: 192.168.0.7 + user: rke-installer + role: + - worker + internal_address: 192.168.0.7 + labels: + mysql-deploy: true + uavcloud.env: demo + - address: 192.168.0.9 + user: rke-installer + role: + - worker + internal_address: 192.168.0.9 + labels: + uavcloud.env: demo + - address: 192.168.0.10 + user: rke-installer + role: + - worker + internal_address: 192.168.0.10 + labels: + uavcloud.env: demo + - address: 192.168.0.11 + user: rke-installer + role: + - worker + internal_address: 192.168.0.11 + labels: + uavcloud.env: demo + - address: 192.168.0.83 + user: rke-installer + role: + - worker + internal_address: 192.168.0.83 + labels: + uavcloud.env: demo + - address: 192.168.0.84 + user: rke-installer + role: + - worker + internal_address: 192.168.0.84 + labels: + uavcloud.env: demo + - address: 192.168.0.85 + user: rke-installer + role: + - worker + internal_address: 192.168.0.85 + labels: + uavcloud.env: demo + +authentication: + strategy: x509 + sans: + - "192.168.0.8" + +private_registries: + - url: 192.168.0.8:8033 # 私有镜像库地址 + user: admin + password: "V2ryStr@ngPss" + is_default: true + +############################################################################## + +# 默认值为false,如果设置为true,当发现不支持的Docker版本时,RKE不会报错 +ignore_docker_version: true + +# Set the name of the Kubernetes cluster +cluster_name: rke-cluster + +kubernetes_version: v1.20.4-rancher1-1 + +ssh_key_path: /home/rke-installer/.ssh/id_ed25519 + +# Enable running cri-dockerd +# Up to Kubernetes 1.23, kubelet contained code called dockershim +# to support Docker runtime. The replacement is called cri-dockerd +# and should be enabled if you want to keep using Docker as your +# container runtime +# Only available to enable in Kubernetes 1.21 and higher +enable_cri_dockerd: true + +services: + etcd: + backup_config: + enabled: false + interval_hours: 72 + retention: 3 + safe_timestamp: false + timeout: 300 + creation: 12h + extra_args: + election-timeout: 5000 + heartbeat-interval: 500 + cipher-suites: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA + gid: 0 + retention: 72h + snapshot: false + uid: 0 + + kube-api: + # IP range for any services created on Kubernetes + # This must match the service_cluster_ip_range in kube-controller + service_cluster_ip_range: 10.74.0.0/16 + # Expose a different port range for NodePort services + service_node_port_range: 30000-40000 + always_pull_images: true + pod_security_policy: false + # Add additional arguments to the kubernetes API server + # This WILL OVERRIDE any existing defaults + extra_args: + # Enable audit log to stdout + audit-log-path: "-" + # Increase number of delete workers + delete-collection-workers: 3 + # Set the level of log output to warning-level + v: 1 + kube-controller: + # CIDR pool used to assign IP addresses to pods in the cluster + cluster_cidr: 10.100.0.0/16 + # IP range for any services created on Kubernetes + # This must match the service_cluster_ip_range in kube-api + service_cluster_ip_range: 10.74.0.0/16 + # Add additional arguments to the kubernetes API server + # This WILL OVERRIDE any existing defaults + extra_args: + # Set the level of log output to debug-level + v: 1 + # Enable RotateKubeletServerCertificate feature gate + feature-gates: RotateKubeletServerCertificate=true + # Enable TLS Certificates management + # https://kubernetes.io/docs/tasks/tls/managing-tls-in-a-cluster/ + cluster-signing-cert-file: "/etc/kubernetes/ssl/kube-ca.pem" + cluster-signing-key-file: "/etc/kubernetes/ssl/kube-ca-key.pem" + kubelet: + # Base domain for the cluster + cluster_domain: cluster.local + # IP address for the DNS service endpoint + cluster_dns_server: 10.74.0.10 + # Fail if swap is on + fail_swap_on: false + # Set max pods to 250 instead of default 110 + extra_binds: + - "/data/minio-pv:/hostStorage" # 不要修改 为minio的pv添加 + extra_args: + max-pods: 122 + # Optionally define additional volume binds to a service + scheduler: + extra_args: + # Set the level of log output to warning-level + v: 0 + tls-cipher-suites: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA + kubeproxy: + extra_args: + # Set the level of log output to warning-level + v: 1 + +authorization: + mode: rbac + +addon_job_timeout: 30 + +# Specify network plugin-in (canal, calico, flannel, weave, or none) +network: + mtu: 1440 + options: + flannel_backend_type: vxlan + plugin: calico + tolerations: + - key: "node.kubernetes.io/unreachable" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + - key: "node.kubernetes.io/not-ready" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + +# Specify DNS provider (coredns or kube-dns) +dns: + provider: coredns + nodelocal: {} + # Available as of v1.1.0 + update_strategy: + strategy: RollingUpdate + rollingUpdate: + maxUnavailable: 20% + maxSurge: 15% + linear_autoscaler_params: + cores_per_replica: 0.34 + nodes_per_replica: 4 + prevent_single_point_failure: true + min: 2 + max: 3 + tolerations: + - key: "node.kubernetes.io/unreachable" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + - key: "node.kubernetes.io/not-ready" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + +# Specify monitoring provider (metrics-server) +monitoring: + provider: metrics-server + # Available as of v1.1.0 + update_strategy: + strategy: RollingUpdate + rollingUpdate: + maxUnavailable: 8 + +ingress: + provider: nginx + default_backend: true + http_port: 0 + https_port: 0 + extra_envs: + - name: TZ + value: Asia/Shanghai + node_selector: + ingress-deploy: true + options: + use-forwarded-headers: "true" + access-log-path: /var/log/nginx/access.log +# client-body-timeout: '6000' +# compute-full-forwarded-for: 'true' +# enable-underscores-in-headers: 'true' +# log-format-escape-json: 'true' +# log-format-upstream: >- +# { "msec": "$msec", "connection": "$connection", "connection_requests": +# "$connection_requests", "pid": "$pid", "request_id": "$request_id", +# "request_length": "$request_length", "remote_addr": "$remote_addr", +# "remote_user": "$remote_user", "remote_port": "$remote_port", +# "http_x_forwarded_for": "$http_x_forwarded_for", "time_local": +# "$time_local", "time_iso8601": "$time_iso8601", "request": "$request", +# "request_uri": "$request_uri", "args": "$args", "status": "$status", +# "body_bytes_sent": "$body_bytes_sent", "bytes_sent": "$bytes_sent", +# "http_referer": "$http_referer", "http_user_agent": "$http_user_agent", +# "http_host": "$http_host", "server_name": "$server_name", "request_time": +# "$request_time", "upstream": "$upstream_addr", "upstream_connect_time": +# "$upstream_connect_time", "upstream_header_time": "$upstream_header_time", +# "upstream_response_time": "$upstream_response_time", +# "upstream_response_length": "$upstream_response_length", +# "upstream_cache_status": "$upstream_cache_status", "ssl_protocol": +# "$ssl_protocol", "ssl_cipher": "$ssl_cipher", "scheme": "$scheme", +# "request_method": "$request_method", "server_protocol": "$server_protocol", +# "pipe": "$pipe", "gzip_ratio": "$gzip_ratio", "http_cf_ray": "$http_cf_ray", +# "geoip_country_code": "$geoip_country_code" } +# proxy-body-size: 5120m +# proxy-read-timeout: '6000' +# proxy-send-timeout: '6000' + + diff --git a/44-202411-厦门移动扩容/批量命令.sh b/44-202411-厦门移动扩容/批量命令.sh new file mode 100644 index 0000000..f571e3a --- /dev/null +++ b/44-202411-厦门移动扩容/批量命令.sh @@ -0,0 +1,79 @@ +#!/bin/bash + + +all_server_list=(192.168.0.10) + +all_server_list=(192.168.0.9 192.168.0.10 192.168.0.11 192.168.0.65 192.168.0.45 192.168.0.7) + +all_server_list=(192.168.0.83 192.168.0.84 192.168.0.85) + +for server in "${all_server_list[@]}";do + echo "server is ${server}" + + ssh ${server} "echo yes" + ssh ${server} "curl -s 10.74.32.6" + + echo "" +done + +kubectl taint nodes 192.168.0.9 key=experimental:NoSchedule +kubectl taint nodes 192.168.0.10 key=experimental:NoSchedule +kubectl taint nodes 192.168.0.11 key=experimental:NoSchedule + +kubectl cordon 192.168.0.9 +kubectl cordon 192.168.0.10 +kubectl cordon 192.168.0.11 + + +scp /root/.ssh/* root@${server}:/root/.ssh/ + +ssh root@${server} "mkdir /root/wdd" +scp /usr/local/bin/octopus-agent root@${server}:/usr/local/bin/octopus-agent +ssh root@${server} "chmod +x /usr/local/bin/octopus-agent" +ssh root@${server} "printf 'ssh\n' | octopus-agent --mode=bastion" + +scp /root/wdd/disk.sh root@${server}:/root/wdd/disk.sh +ssh root@${server} "bash /root/wdd/disk.sh" + +ssh root@${server} "mkdir /root/wdd" +scp /usr/local/bin/octopus-agent root@${server}:/usr/local/bin/octopus-agent +ssh root@${server} "chmod +x /usr/local/bin/octopus-agent" +ssh root@${server} "printf 'ssh\n' | octopus-agent --mode=bastion" + +scp /root/wdd/docker-amd64-20.10.15.tgz root@${server}:/root/wdd/ +scp /root/wdd/docker-compose-linux-x86_64-v2.18.0 root@${server}:/root/wdd/ +ssh root@${server} "printf 'firewall\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'sysconfig\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'swap\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'selinux\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'docker\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'dockercompose\n' | octopus-agent --mode=bastion" + + +scp /etc/docker/daemon.json root@${server}:/etc/docker/ + +ssh root@${server} "systemctl restart docker && sleep 3 && docker info" + +echo "SuperRke.123 +SuperRke.123 +" | passwd rke-installer + + +ssh root@${server} "useradd rke-installer" +ssh root@${server} "mkdir /home/rke-installer" +ssh root@${server} "mkdir /home/rke-installer/.ssh " +scp /home/rke-installer/.ssh/* root@${server}:/home/rke-installer/.ssh/ +ssh root@${server} "chown rke-installer:rke-installer -R /home/rke-installer" +ssh root@${server} "usermod -d /home/rke-installer rke-installer" + +ssh root@${server} "gpasswd -a rke-installer docker" +ssh root@${server} "newgrp docker" + + +echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCrEuk9I6spsHv03cSFQmhx0HZ90VBtqBCGlaisasJAK7wkam/AStAvB8Svn6GiNyJFp/vTr2C8MN01poJQ2pWVmj+WcIWVdbrwYmvIsLC6A4dtdxGOEj5Oejzod9JavAwz+EhTjy61T1Xyc7LSafYNtfrir7X7rCZhSN+GhdD9nN0TFbpLax4t84QDU8+dyALzmGEzbPKFZ2BBpbiNu8I0nheRojMdvwCIjV/c+RNEwXKOOk4EXch9mW4HJJ/n36mfC6Dq3CaDaX+IGuK/lgim2wDQFUFfeGWSgiERDZN2sFyxeyliBL39J7gQFXFcVXud+TCujKgpdzmyb+AulKFrUja2kSoA8CLmyiaRkha6SQXkaT/+KVE2q8mNeA6DDxlRR3rBB8MHJ6IKz1+SgwIip8t/ybgthmkBbFWXvjVfIK3cfmMaxqLTlJNEhngLRItLxOa96GivCSziY8CNidWlL4ekC4WF8X+zseBhnFCPG1hmbi4bMcw86CTIFgNhc20= rke-installer@master-node" >>/home/rke-installer/.ssh/authorized_keys + +sed -i "s/\/data/\/var/lib/docker/g" /etc/fstab + +umount /data +mount -a +df -TH \ No newline at end of file diff --git a/45-协助-北京延庆/cluster.yml b/45-协助-北京延庆/cluster.yml new file mode 100644 index 0000000..edf398f --- /dev/null +++ b/45-协助-北京延庆/cluster.yml @@ -0,0 +1,229 @@ +nodes: + - address: 172.16.200.30 + user: root + role: + - controlplane + - etcd + - worker + internal_address: 172.16.200.30 + labels: + ingress-deploy: true + - address: 172.16.200.31 + user: root + role: + - worker + internal_address: 172.16.200.31 + labels: + ingress-deploy: true + uavcloud.env: demo + - address: 172.16.200.32 + user: root + role: + - worker + internal_address: 172.16.200.32 + labels: + ingress-deploy: true + mysql-deploy: true + uavcloud.env: demo + - address: 172.16.200.33 + user: root + role: + - worker + internal_address: 172.16.200.33 + labels: + ingress-deploy: true + uavcloud.env: demo + - address: 172.16.200.34 + user: root + role: + - worker + internal_address: 172.16.200.34 + labels: + ingress-deploy: true + uavcloud.env: demo + + +authentication: + strategy: x509 + sans: + - "172.16.200.30" + +private_registries: + - url: 172.16.200.30:8033 # 私有镜像库地址 + user: admin + password: "V2ryStr@ngPss" + is_default: true + +############################################################################## + +# 默认值为false,如果设置为true,当发现不支持的Docker版本时,RKE不会报错 +ignore_docker_version: true + +# Set the name of the Kubernetes cluster +cluster_name: rke-cluster + +kubernetes_version: v1.20.4-rancher1-1 + +ssh_key_path: /root/.ssh/id_rsa + +# Enable running cri-dockerd +# Up to Kubernetes 1.23, kubelet contained code called dockershim +# to support Docker runtime. The replacement is called cri-dockerd +# and should be enabled if you want to keep using Docker as your +# container runtime +# Only available to enable in Kubernetes 1.21 and higher +enable_cri_dockerd: true + + +services: + etcd: + backup_config: + enabled: false + interval_hours: 72 + retention: 3 + safe_timestamp: false + timeout: 300 + creation: 12h + extra_args: + election-timeout: 5000 + heartbeat-interval: 500 + gid: 0 + retention: 72h + snapshot: false + uid: 0 + + kube-api: + # IP range for any services created on Kubernetes + # This must match the service_cluster_ip_range in kube-controller + service_cluster_ip_range: 10.74.0.0/16 + # Expose a different port range for NodePort services + service_node_port_range: 30000-40000 + always_pull_images: true + pod_security_policy: false + # Add additional arguments to the kubernetes API server + # This WILL OVERRIDE any existing defaults + extra_args: + # Enable audit log to stdout + audit-log-path: "-" + # Increase number of delete workers + delete-collection-workers: 3 + # Set the level of log output to warning-level + v: 1 + # Using the EventRateLimit admission control enforces a limit on the number of events + # that the API Server will accept in a given time period + # Available as of v1.0.0 + event_rate_limit: + enabled: false + configuration: + apiVersion: eventratelimit.admission.k8s.io/v1alpha1 + kind: Configuration + limits: + - type: Server + qps: 6000 + burst: 30000 + kube-controller: + # CIDR pool used to assign IP addresses to pods in the cluster + cluster_cidr: 10.100.0.0/16 + # IP range for any services created on Kubernetes + # This must match the service_cluster_ip_range in kube-api + service_cluster_ip_range: 10.74.0.0/16 + # Add additional arguments to the kubernetes API server + # This WILL OVERRIDE any existing defaults + extra_args: + # Set the level of log output to debug-level + v: 1 + # Enable RotateKubeletServerCertificate feature gate + feature-gates: RotateKubeletServerCertificate=true + # Enable TLS Certificates management + # https://kubernetes.io/docs/tasks/tls/managing-tls-in-a-cluster/ + cluster-signing-cert-file: "/etc/kubernetes/ssl/kube-ca.pem" + cluster-signing-key-file: "/etc/kubernetes/ssl/kube-ca-key.pem" + kubelet: + # Base domain for the cluster + cluster_domain: cluster.local + # IP address for the DNS service endpoint + cluster_dns_server: 10.74.0.10 + # Fail if swap is on + fail_swap_on: false + # Set max pods to 250 instead of default 110 + extra_binds: + - "/data/minio-pv:/hostStorage" # 不要修改 为minio的pv添加 + extra_args: + max-pods: 122 + scheduler: + extra_args: + # Set the level of log output to warning-level + v: 0 + kubeproxy: + extra_args: + # Set the level of log output to warning-level + v: 0 + +authorization: + mode: rbac + +addon_job_timeout: 30 + +# Specify network plugin-in (canal, calico, flannel, weave, or none) +network: + mtu: 1440 + options: + flannel_backend_type: vxlan + plugin: calico + tolerations: + - key: "node.kubernetes.io/unreachable" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + - key: "node.kubernetes.io/not-ready" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + +# Specify DNS provider (coredns or kube-dns) +dns: + provider: coredns + nodelocal: + # Available as of v1.1.0 + update_strategy: + strategy: RollingUpdate + rollingUpdate: + maxUnavailable: 20% + maxSurge: 15% + linear_autoscaler_params: + cores_per_replica: 0.34 + nodes_per_replica: 4 + prevent_single_point_failure: true + min: 2 + max: 3 + tolerations: + - key: "node.kubernetes.io/unreachable" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + - key: "node.kubernetes.io/not-ready" + operator: "Exists" + effect: "NoExecute" + tolerationseconds: 300 + +# Specify monitoring provider (metrics-server) +monitoring: + provider: metrics-server + # Available as of v1.1.0 + update_strategy: + strategy: RollingUpdate + rollingUpdate: + maxUnavailable: 8 + +ingress: + provider: nginx + default_backend: true + http_port: 0 + https_port: 0 + extra_envs: + - name: TZ + value: Asia/Shanghai + node_selector: + ingress-deploy: true + options: + use-forwarded-headers: "true" \ No newline at end of file diff --git a/45-协助-北京延庆/批量命令 b/45-协助-北京延庆/批量命令 new file mode 100644 index 0000000..e69de29 diff --git a/6-厦门移动-4.1.0/1-base-env-shell/0.1-mountNodeVolume.sh b/6-厦门移动-4.1.0/1-base-env-shell/0.1-mountNodeVolume.sh index b1f617e..e4e4cb0 100644 --- a/6-厦门移动-4.1.0/1-base-env-shell/0.1-mountNodeVolume.sh +++ b/6-厦门移动-4.1.0/1-base-env-shell/0.1-mountNodeVolume.sh @@ -48,19 +48,19 @@ t 8e w -" | fdisk /dev/sdb +" | fdisk /dev/vdb partprobe # 如果已经存在卷组,直接进行添加 # vgextend /dev/mapper/centos /dev/vda3 -vgcreate ${VG_NAME} /dev/sdb1 +vgcreate ${VG_NAME} /dev/vdb1 export selfpesize=$(vgdisplay ${VG_NAME} | grep 'Total PE' | awk '{print $3}') # 大小根据实际情况调整 lvcreate -l ${selfpesize} -n lvdata ${VG_NAME} mkfs.xfs /dev/mapper/${VG_NAME}-lvdata mkdir -p /data mkdir -p /var/lib/docker -#selffstab="/dev/mapper/${VG_NAME}-lvdata /var/lib/docker xfs defaults 0 0" -export selffstab="/dev/mapper/${VG_NAME}-lvdata /data xfs defaults 0 0" +selffstab="/dev/mapper/${VG_NAME}-lvdata /var/lib/docker xfs defaults 0 0" +# export selffstab="/dev/mapper/${VG_NAME}-lvdata /data xfs defaults 0 0" echo "${selffstab}" >> /etc/fstab mount -a diff --git a/6-厦门移动-4.1.0/1-base-env-shell/3-bootUPk8s.sh b/6-厦门移动-4.1.0/1-base-env-shell/3-bootUPk8s.sh index ca86ea0..7fffa55 100644 --- a/6-厦门移动-4.1.0/1-base-env-shell/3-bootUPk8s.sh +++ b/6-厦门移动-4.1.0/1-base-env-shell/3-bootUPk8s.sh @@ -103,8 +103,8 @@ createRKEInstallerUser(){ colorEcho ${BLUE} "开始创建 rke-installer 用户………" echo "" useradd rke-installer - echo "rke-installer - rke-installer + echo "SuperRke.123 + SuperRke.123 " | passwd rke-installer #将登陆用户develop加入到docker用户组中 gpasswd -a rke-installer docker diff --git a/998-常用脚本/OctopusAgent运行/bastion模式运行基础环境.sh b/998-常用脚本/OctopusAgent运行/bastion模式运行基础环境.sh index d17b29a..f827bbc 100644 --- a/998-常用脚本/OctopusAgent运行/bastion模式运行基础环境.sh +++ b/998-常用脚本/OctopusAgent运行/bastion模式运行基础环境.sh @@ -8,4 +8,9 @@ https://oss.demo.uavcmlc.com/cmlc-installation/downloadfile/amd/harbor-offline-i https://oss.demo.uavcmlc.com/cmlc-installation/downloadfile/amd/docker-compose-linux-x86_64-v2.18.0 +mv /root/octopus-agent_linux_amd64 /usr/local/bin/octopus-agent +chmod +x /usr/local/bin/octopus-agent + +printf 'help\n' | octopus-agent --mode=bastion + file_list=(docker-amd64-20.10.15.tgz harbor-offline-installer-v2.9.0 docker-compose-linux-x86_64-v2.18.0) \ No newline at end of file diff --git a/998-常用脚本/OctopusAgent运行/同步资料.sh b/998-常用脚本/OctopusAgent运行/同步资料.sh index 41b5abf..4a9be5e 100644 --- a/998-常用脚本/OctopusAgent运行/同步资料.sh +++ b/998-常用脚本/OctopusAgent运行/同步资料.sh @@ -7,7 +7,7 @@ host_list=(10.129.80.217 10.129.80.245 10.129.80.222 10.129.80.223) for ip in "${host_list[@]}";do echo "current ip is $ip" - ssh root@${ip} "curl 172.24.152.72" + ssh root@${server} "curl 172.24.152.72" done @@ -15,27 +15,27 @@ disk 10.129.80.245 -mv /root/wdd/octopus-agent_linux_amd64_2024-09-23-17-08-44 /usr/local/bin/octopus-agent +mv /root/wdd/octopus-agent_linux_amd64 /usr/local/bin/octopus-agent chmod +x /usr/local/bin/octopus-agent -# ssh root@${ip} "mkdir /root/wdd" -# scp /usr/local/bin/octopus-agent root@${ip}:/usr/local/bin/octopus-agent -# scp /root/wdd/docker-amd64-20.10.15.tgz root@${ip}:/root/wdd/ -# scp /root/wdd/nfs_client_22.04.4_amd64.tar.gz root@${ip}:/root/wdd/ -# scp /root/wdd/nfs_server_22.04.4_amd64.tar.gz root@${ip}:/root/wdd/ -# scp /root/wdd/docker-compose-linux-x86_64-v2.18.0 root@${ip}:/root/wdd/ +ssh root@${server} "mkdir /root/wdd" +scp /usr/local/bin/octopus-agent root@${server}:/usr/local/bin/octopus-agent +scp /root/wdd/docker-amd64-20.10.15.tgz root@${server}:/root/wdd/docker-amd64-20.10.15.tgz +scp /root/wdd/nfs_client_22.04.4_amd64.tar.gz root@${server}:/root/wdd/ +scp /root/wdd/nfs_server_22.04.4_amd64.tar.gz root@${server}:/root/wdd/ +scp /root/wdd/docker-compose-linux-x86_64-v2.18.0 root@${server}:/root/wdd/ -# ssh root@${ip} "chmod +x /usr/local/bin/octopus-agent" -# ssh root@${ip} "printf 'firewall\n' | octopus-agent --mode=bastion" -# ssh root@${ip} "printf 'sysconfig\n' | octopus-agent --mode=bastion" -# ssh root@${ip} "printf 'swap\n' | octopus-agent --mode=bastion" -# ssh root@${ip} "printf 'selinux\n' | octopus-agent --mode=bastion" -# ssh root@${ip} "printf 'docker\n' | octopus-agent --mode=bastion" -# ssh root@${ip} "printf 'dockercompose\n' | octopus-agent --mode=bastion" +ssh root@${server} "chmod +x /usr/local/bin/octopus-agent" +ssh root@${server} "printf 'firewall\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'sysconfig\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'swap\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'selinux\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'docker\n' | octopus-agent --mode=bastion" +ssh root@${server} "printf 'dockercompose\n' | octopus-agent --mode=bastion" -scp /etc/docker/daemon.json root@${ip}:/etc/docker/ +scp /etc/docker/daemon.json root@${server}:/etc/docker/ -ssh root@${ip} "systemctl restart docker && sleep 3 && docker info" +ssh root@${server} "systemctl restart docker && sleep 3 && docker info" sed -i '/^$/d' ~/.ssh/* diff --git a/998-常用脚本/备份脚本/备份命名空间.sh b/998-常用脚本/备份脚本/备份命名空间.sh index 592e569..1978afd 100644 --- a/998-常用脚本/备份脚本/备份命名空间.sh +++ b/998-常用脚本/备份脚本/备份命名空间.sh @@ -1,6 +1,6 @@ #!/bin/bash -namespace=xmyd +namespace=bjyd install_yq() { wget https://oss.demo.uavcmlc.com/cmlc-installation/downloadfile/amd/yq_linux_amd64 -O /usr/local/bin/yq @@ -43,7 +43,7 @@ backup_all_stateful_sets() { echo "" } -#install_yq +install_yq backup_all_deployment backup_all_service backup_all_stateful_sets diff --git a/998-常用脚本/故障恢复脚本/删除状态不为Running的Pod.sh b/998-常用脚本/故障恢复脚本/删除状态不为Running的Pod.sh index 839f3f1..8f33a5e 100644 --- a/998-常用脚本/故障恢复脚本/删除状态不为Running的Pod.sh +++ b/998-常用脚本/故障恢复脚本/删除状态不为Running的Pod.sh @@ -5,7 +5,7 @@ wget https://oss.demo.uavcmlc.com/cmlc-installation/downloadfile/amd/jq-linux-am chmod +x /usr/local/bin/jq -export name_space=bjyd +export name_space=xmyd kubectl delete pods -n $name_space --field-selector status.phase!=Running --force @@ -13,3 +13,4 @@ kubectl get pods -n $name_space -o json | jq -r '.items[] | select(.status.conta kubectl -n ${name_space} delete pod helm-nacos-0 --force + \ No newline at end of file diff --git a/998-常用脚本/故障恢复脚本/删除重启次数过多的Pod.sh b/998-常用脚本/故障恢复脚本/删除重启次数过多的Pod.sh new file mode 100644 index 0000000..0741200 --- /dev/null +++ b/998-常用脚本/故障恢复脚本/删除重启次数过多的Pod.sh @@ -0,0 +1,24 @@ +#!/bin/bash + + +name_space=xmyd +kubectl get pods --namespace="${name_space}" --sort-by='.status.containerStatuses[].restartCount' | awk '$4 > 7 {print $1} ' | grep -v NAME | xargs -I {} kubectl delete -n "${name_space}" pod {} --force + + +#all_cmii_name_space=(uavcloud-test uavcloud-feature uavcloud-uat uavcloud-dev uavcloud-devflight uavcloud-devoperation) +all_cmii_name_space=(uavcloud-test uavcloud-feature uavcloud-dev uavcloud-devflight uavcloud-devoperation) + +echo "" +for name_space in "${all_cmii_name_space[@]}"; do + echo "[NAMESPACE] - start to deal with namespace [$name_space]" + if ! kubectl get ns "$name_space"; then + echo "[NAMESPACE] - namespace of [$name_space] not exists !" + echo "" + continue + fi + echo "" + + kubectl get pods --namespace="${name_space}" --sort-by='.status.containerStatuses[].restartCount' | awk '$4 > 30 {print $1} ' | sed 's/-[a-z0-9]\{9,10\}-[a-z0-9]\{5\}$//' | xargs -I {} kubectl scale -n "${name_space}" --replicas=0 deployment {} + echo "" + +done diff --git a/998-常用脚本/服务器性能/yabs.sh b/998-常用脚本/服务器性能/yabs.sh new file mode 100644 index 0000000..73cff30 --- /dev/null +++ b/998-常用脚本/服务器性能/yabs.sh @@ -0,0 +1,1033 @@ +#!/bin/bash + +# Yet Another Bench Script by Mason Rowe +# Initial Oct 2019; Last update Jun 2024 + +# Disclaimer: This project is a work in progress. Any errors or suggestions should be +# relayed to me via the GitHub project page linked below. +# +# Purpose: The purpose of this script is to quickly gauge the performance of a Linux- +# based server by benchmarking network performance via iperf3, CPU and +# overall system performance via Geekbench 4/5, and random disk +# performance via fio. The script is designed to not require any dependencies +# - either compiled or installed - nor admin privileges to run. + +YABS_VERSION="v2024-06-09" + +echo -e '# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #' +echo -e '# Yet-Another-Bench-Script #' +echo -e '# '$YABS_VERSION' #' +echo -e '# https://github.com/masonr/yet-another-bench-script #' +echo -e '# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #' + +echo -e +date +TIME_START=$(date '+%Y%m%d-%H%M%S') +YABS_START_TIME=$(date +%s) + +# override locale to eliminate parsing errors (i.e. using commas as delimiters rather than periods) +if locale -a 2>/dev/null | grep ^C$ > /dev/null; then + # locale "C" installed + export LC_ALL=C +else + # locale "C" not installed, display warning + echo -e "\nWarning: locale 'C' not detected. Test outputs may not be parsed correctly." +fi + +# determine architecture of host +ARCH=$(uname -m) +if [[ $ARCH = *x86_64* ]]; then + # host is running a 64-bit kernel + ARCH="x64" +elif [[ $ARCH = *i?86* ]]; then + # host is running a 32-bit kernel + ARCH="x86" +elif [[ $ARCH = *aarch* || $ARCH = *arm* ]]; then + KERNEL_BIT=$(getconf LONG_BIT) + if [[ $KERNEL_BIT = *64* ]]; then + # host is running an ARM 64-bit kernel + ARCH="aarch64" + else + # host is running an ARM 32-bit kernel + ARCH="arm" + fi + echo -e "\nARM compatibility is considered *experimental*" +else + # host is running a non-supported kernel + echo -e "Architecture not supported by YABS." + exit 1 +fi + +# flags to skip certain performance tests +unset PREFER_BIN SKIP_FIO SKIP_IPERF SKIP_GEEKBENCH SKIP_NET PRINT_HELP REDUCE_NET GEEKBENCH_4 GEEKBENCH_5 GEEKBENCH_6 DD_FALLBACK IPERF_DL_FAIL JSON JSON_SEND JSON_RESULT JSON_FILE +GEEKBENCH_6="True" # gb6 test enabled by default + +# get any arguments that were passed to the script and set the associated skip flags (if applicable) +while getopts 'bfdignhr4596jw:s:' flag; do + case "${flag}" in + b) PREFER_BIN="True" ;; + f) SKIP_FIO="True" ;; + d) SKIP_FIO="True" ;; + i) SKIP_IPERF="True" ;; + g) SKIP_GEEKBENCH="True" ;; + n) SKIP_NET="True" ;; + h) PRINT_HELP="True" ;; + r) REDUCE_NET="True" ;; + 4) GEEKBENCH_4="True" && unset GEEKBENCH_6 ;; + 5) GEEKBENCH_5="True" && unset GEEKBENCH_6 ;; + 9) GEEKBENCH_4="True" && GEEKBENCH_5="True" && unset GEEKBENCH_6 ;; + 6) GEEKBENCH_6="True" ;; + j) JSON+="j" ;; + w) JSON+="w" && JSON_FILE=${OPTARG} ;; + s) JSON+="s" && JSON_SEND=${OPTARG} ;; + *) exit 1 ;; + esac +done + +# check for local fio/iperf installs +command -v fio >/dev/null 2>&1 && LOCAL_FIO=true || unset LOCAL_FIO +command -v iperf3 >/dev/null 2>&1 && LOCAL_IPERF=true || unset LOCAL_IPERF + +# check for ping +command -v ping >/dev/null 2>&1 && LOCAL_PING=true || unset LOCAL_PING + +# check for curl/wget +command -v curl >/dev/null 2>&1 && LOCAL_CURL=true || unset LOCAL_CURL + +# test if the host has IPv4/IPv6 connectivity +[[ ! -z $LOCAL_CURL ]] && IP_CHECK_CMD="curl -s -m 4" || IP_CHECK_CMD="wget -qO- -T 4" +IPV4_CHECK=$( (ping -4 -c 1 -W 4 ipv4.google.com >/dev/null 2>&1 && echo true) || $IP_CHECK_CMD -4 icanhazip.com 2> /dev/null) +IPV6_CHECK=$( (ping -6 -c 1 -W 4 ipv6.google.com >/dev/null 2>&1 && echo true) || $IP_CHECK_CMD -6 icanhazip.com 2> /dev/null) +if [[ -z "$IPV4_CHECK" && -z "$IPV6_CHECK" ]]; then + echo -e + echo -e "Warning: Both IPv4 AND IPv6 connectivity were not detected. Check for DNS issues..." +fi + +# print help and exit script, if help flag was passed +if [ ! -z "$PRINT_HELP" ]; then + echo -e + echo -e "Usage: ./yabs.sh [-flags]" + echo -e " curl -sL yabs.sh | bash" + echo -e " curl -sL yabs.sh | bash -s -- -flags" + echo -e " wget -qO- yabs.sh | bash" + echo -e " wget -qO- yabs.sh | bash -s -- -flags" + echo -e + echo -e "Flags:" + echo -e " -b : prefer pre-compiled binaries from repo over local packages" + echo -e " -f/d : skips the fio disk benchmark test" + echo -e " -i : skips the iperf network test" + echo -e " -g : skips the geekbench performance test" + echo -e " -n : skips the network information lookup and print out" + echo -e " -h : prints this lovely message, shows any flags you passed," + echo -e " shows if fio/iperf3 local packages have been detected," + echo -e " then exits" + echo -e " -r : reduce number of iperf3 network locations (to only three)" + echo -e " to lessen bandwidth usage" + echo -e " -4 : use geekbench 4 instead of geekbench 6" + echo -e " -5 : use geekbench 5 instead of geekbench 6" + echo -e " -9 : use both geekbench 4 AND geekbench 5 instead of geekbench 6" + echo -e " -6 : user geekbench 6 in addition to 4 and/or 5 (only needed if -4, -5, or -9 are set; -6 must come last)" + echo -e " -j : print jsonified YABS results at conclusion of test" + echo -e " -w : write jsonified YABS results to disk using file name provided" + echo -e " -s : send jsonified YABS results to URL" + echo -e + echo -e "Detected Arch: $ARCH" + echo -e + echo -e "Detected Flags:" + [[ ! -z $PREFER_BIN ]] && echo -e " -b, force using precompiled binaries from repo" + [[ ! -z $SKIP_FIO ]] && echo -e " -f/d, skipping fio disk benchmark test" + [[ ! -z $SKIP_IPERF ]] && echo -e " -i, skipping iperf network test" + [[ ! -z $SKIP_GEEKBENCH ]] && echo -e " -g, skipping geekbench test" + [[ ! -z $SKIP_NET ]] && echo -e " -n, skipping network info lookup and print out" + [[ ! -z $REDUCE_NET ]] && echo -e " -r, using reduced (3) iperf3 locations" + [[ ! -z $GEEKBENCH_4 ]] && echo -e " running geekbench 4" + [[ ! -z $GEEKBENCH_5 ]] && echo -e " running geekbench 5" + [[ ! -z $GEEKBENCH_6 ]] && echo -e " running geekbench 6" + echo -e + echo -e "Local Binary Check:" + [[ -z $LOCAL_FIO ]] && echo -e " fio not detected, will download precompiled binary" || + [[ -z $PREFER_BIN ]] && echo -e " fio detected, using local package" || + echo -e " fio detected, but using precompiled binary instead" + [[ -z $LOCAL_IPERF ]] && echo -e " iperf3 not detected, will download precompiled binary" || + [[ -z $PREFER_BIN ]] && echo -e " iperf3 detected, using local package" || + echo -e " iperf3 detected, but using precompiled binary instead" + echo -e + echo -e "Detected Connectivity:" + [[ ! -z $IPV4_CHECK ]] && echo -e " IPv4 connected" || + echo -e " IPv4 not connected" + [[ ! -z $IPV6_CHECK ]] && echo -e " IPv6 connected" || + echo -e " IPv6 not connected" + echo -e + echo -e "JSON Options:" + [[ -z $JSON ]] && echo -e " none" + [[ $JSON = *j* ]] && echo -e " printing json to screen after test" + [[ $JSON = *w* ]] && echo -e " writing json to file ($JSON_FILE) after test" + [[ $JSON = *s* ]] && echo -e " sharing json YABS results to $JSON_SEND" + echo -e + echo -e "Exiting..." + + exit 0 +fi + +# format_size +# Purpose: Formats raw disk and memory sizes from kibibytes (KiB) to largest unit +# Parameters: +# 1. RAW - the raw memory size (RAM/Swap) in kibibytes +# Returns: +# Formatted memory size in KiB, MiB, GiB, or TiB +function format_size { + RAW=$1 # mem size in KiB + RESULT=$RAW + local DENOM=1 + local UNIT="KiB" + + # ensure the raw value is a number, otherwise return blank + re='^[0-9]+$' + if ! [[ $RAW =~ $re ]] ; then + echo "" + return 0 + fi + + if [ "$RAW" -ge 1073741824 ]; then + DENOM=1073741824 + UNIT="TiB" + elif [ "$RAW" -ge 1048576 ]; then + DENOM=1048576 + UNIT="GiB" + elif [ "$RAW" -ge 1024 ]; then + DENOM=1024 + UNIT="MiB" + fi + + # divide the raw result to get the corresponding formatted result (based on determined unit) + RESULT=$(awk -v a="$RESULT" -v b="$DENOM" 'BEGIN { print a / b }') + # shorten the formatted result to two decimal places (i.e. x.x) + RESULT=$(echo $RESULT | awk -F. '{ printf "%0.1f",$1"."substr($2,1,2) }') + # concat formatted result value with units and return result + RESULT="$RESULT $UNIT" + echo $RESULT +} + +# gather basic system information (inc. CPU, AES-NI/virt status, RAM + swap + disk size) +echo -e +echo -e "Basic System Information:" +echo -e "---------------------------------" +UPTIME=$(uptime | awk -F'( |,|:)+' '{d=h=m=0; if ($7=="min") m=$6; else {if ($7~/^day/) {d=$6;h=$8;m=$9} else {h=$6;m=$7}}} {print d+0,"days,",h+0,"hours,",m+0,"minutes"}') +echo -e "Uptime : $UPTIME" +# check for local lscpu installs +command -v lscpu >/dev/null 2>&1 && LOCAL_LSCPU=true || unset LOCAL_LSCPU +if [[ $ARCH = *aarch64* || $ARCH = *arm* ]] && [[ ! -z $LOCAL_LSCPU ]]; then + CPU_PROC=$(lscpu | grep "Model name" | sed 's/Model name: *//g') +else + CPU_PROC=$(awk -F: '/model name/ {name=$2} END {print name}' /proc/cpuinfo | sed 's/^[ \t]*//;s/[ \t]*$//') +fi +echo -e "Processor : $CPU_PROC" +if [[ $ARCH = *aarch64* || $ARCH = *arm* ]] && [[ ! -z $LOCAL_LSCPU ]]; then + CPU_CORES=$(lscpu | grep "^[[:blank:]]*CPU(s):" | sed 's/CPU(s): *//g') + CPU_FREQ=$(lscpu | grep "CPU max MHz" | sed 's/CPU max MHz: *//g') + [[ -z "$CPU_FREQ" ]] && CPU_FREQ="???" + CPU_FREQ="${CPU_FREQ} MHz" +else + CPU_CORES=$(awk -F: '/model name/ {core++} END {print core}' /proc/cpuinfo) + CPU_FREQ=$(awk -F: ' /cpu MHz/ {freq=$2} END {print freq " MHz"}' /proc/cpuinfo | sed 's/^[ \t]*//;s/[ \t]*$//') +fi +echo -e "CPU cores : $CPU_CORES @ $CPU_FREQ" +CPU_AES=$(cat /proc/cpuinfo | grep aes) +[[ -z "$CPU_AES" ]] && CPU_AES="\xE2\x9D\x8C Disabled" || CPU_AES="\xE2\x9C\x94 Enabled" +echo -e "AES-NI : $CPU_AES" +CPU_VIRT=$(cat /proc/cpuinfo | grep 'vmx\|svm') +[[ -z "$CPU_VIRT" ]] && CPU_VIRT="\xE2\x9D\x8C Disabled" || CPU_VIRT="\xE2\x9C\x94 Enabled" +echo -e "VM-x/AMD-V : $CPU_VIRT" +TOTAL_RAM_RAW=$(free | awk 'NR==2 {print $2}') +TOTAL_RAM=$(format_size $TOTAL_RAM_RAW) +echo -e "RAM : $TOTAL_RAM" +TOTAL_SWAP_RAW=$(free | grep Swap | awk '{ print $2 }') +TOTAL_SWAP=$(format_size $TOTAL_SWAP_RAW) +echo -e "Swap : $TOTAL_SWAP" +# total disk size is calculated by adding all partitions of the types listed below (after the -t flags) +TOTAL_DISK_RAW=$(df -t simfs -t ext2 -t ext3 -t ext4 -t btrfs -t xfs -t vfat -t ntfs -t swap --total 2>/dev/null | grep total | awk '{ print $2 }') +TOTAL_DISK=$(format_size $TOTAL_DISK_RAW) +echo -e "Disk : $TOTAL_DISK" +DISTRO=$(grep 'PRETTY_NAME' /etc/os-release | cut -d '"' -f 2 ) +echo -e "Distro : $DISTRO" +KERNEL=$(uname -r) +echo -e "Kernel : $KERNEL" +VIRT=$(systemd-detect-virt 2>/dev/null) +VIRT=${VIRT^^} || VIRT="UNKNOWN" +echo -e "VM Type : $VIRT" +[[ -z "$IPV4_CHECK" ]] && ONLINE="\xE2\x9D\x8C Offline / " || ONLINE="\xE2\x9C\x94 Online / " +[[ -z "$IPV6_CHECK" ]] && ONLINE+="\xE2\x9D\x8C Offline" || ONLINE+="\xE2\x9C\x94 Online" +echo -e "IPv4/IPv6 : $ONLINE" + +# Function to get information from IP Address using ip-api.com free API +function ip_info() { + # check for curl vs wget + [[ ! -z $LOCAL_CURL ]] && DL_CMD="curl -s" || DL_CMD="wget -qO-" + + local ip6me_resp="$($DL_CMD http://ip6.me/api/)" + local net_type="$(echo $ip6me_resp | cut -d, -f1)" + local net_ip="$(echo $ip6me_resp | cut -d, -f2)" + + local response=$($DL_CMD http://ip-api.com/json/$net_ip) + + # if no response, skip output + if [[ -z $response ]]; then + return + fi + + local country=$(echo "$response" | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^country/ {print $2}' | head -1 | sed 's/^"\(.*\)"$/\1/') + local region=$(echo "$response" | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^regionName/ {print $2}' | sed 's/^"\(.*\)"$/\1/') + local region_code=$(echo "$response" | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^region/ {print $2}' | head -1 | sed 's/^"\(.*\)"$/\1/') + local city=$(echo "$response" | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^city/ {print $2}' | sed 's/^"\(.*\)"$/\1/') + local isp=$(echo "$response" | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^isp/ {print $2}' | sed 's/^"\(.*\)"$/\1/') + local org=$(echo "$response" | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^org/ {print $2}' | sed 's/^"\(.*\)"$/\1/') + local as=$(echo "$response" | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^as/ {print $2}' | sed 's/^"\(.*\)"$/\1/') + + echo + echo "$net_type Network Information:" + echo "---------------------------------" + + if [[ -n "$isp" ]]; then + echo "ISP : $isp" + else + echo "ISP : Unknown" + fi + if [[ -n "$as" ]]; then + echo "ASN : $as" + else + echo "ASN : Unknown" + fi + if [[ -n "$org" ]]; then + echo "Host : $org" + fi + if [[ -n "$city" && -n "$region" ]]; then + echo "Location : $city, $region ($region_code)" + fi + if [[ -n "$country" ]]; then + echo "Country : $country" + fi + + [[ ! -z $JSON ]] && JSON_RESULT+=',"ip_info":{"protocol":"'$net_type'","isp":"'$isp'","asn":"'$as'","org":"'$org'","city":"'$city'","region":"'$region'","region_code":"'$region_code'","country":"'$country'"}' +} + +if [ ! -z $JSON ]; then + UPTIME_S=$(awk '{print $1}' /proc/uptime) + IPV4=$([ ! -z $IPV4_CHECK ] && echo "true" || echo "false") + IPV6=$([ ! -z $IPV6_CHECK ] && echo "true" || echo "false") + AES=$([[ "$CPU_AES" = *Enabled* ]] && echo "true" || echo "false") + CPU_VIRT_BOOL=$([[ "$CPU_VIRT" = *Enabled* ]] && echo "true" || echo "false") + JSON_RESULT='{"version":"'$YABS_VERSION'","time":"'$TIME_START'","os":{"arch":"'$ARCH'","distro":"'$DISTRO'","kernel":"'$KERNEL'",' + JSON_RESULT+='"uptime":'$UPTIME_S',"vm":"'$VIRT'"},"net":{"ipv4":'$IPV4',"ipv6":'$IPV6'},"cpu":{"model":"'$CPU_PROC'","cores":'$CPU_CORES',' + JSON_RESULT+='"freq":"'$CPU_FREQ'","aes":'$AES',"virt":'$CPU_VIRT_BOOL'},"mem":{"ram":'$TOTAL_RAM_RAW',"ram_units":"KiB","swap":'$TOTAL_SWAP_RAW',"swap_units":"KiB","disk":'$TOTAL_DISK_RAW',"disk_units":"KB"}' +fi + +if [ -z $SKIP_NET ]; then + ip_info +fi + +# create a directory in the same location that the script is being run to temporarily store YABS-related files +DATE=$(date -Iseconds | sed -e "s/:/_/g") +YABS_PATH=./$DATE +touch "$DATE.test" 2> /dev/null +# test if the user has write permissions in the current directory and exit if not +if [ ! -f "$DATE.test" ]; then + echo -e + echo -e "You do not have write permission in this directory. Switch to an owned directory and re-run the script.\nExiting..." + exit 1 +fi +rm "$DATE.test" +mkdir -p "$YABS_PATH" + +# trap CTRL+C signals to exit script cleanly +trap catch_abort INT + +# catch_abort +# Purpose: This method will catch CTRL+C signals in order to exit the script cleanly and remove +# yabs-related files. +function catch_abort() { + echo -e "\n** Aborting YABS. Cleaning up files...\n" + rm -rf "$YABS_PATH" + unset LC_ALL + exit 0 +} + +# format_speed +# Purpose: This method is a convenience function to format the output of the fio disk tests which +# always returns a result in KB/s. If result is >= 1 GB/s, use GB/s. If result is < 1 GB/s +# and >= 1 MB/s, then use MB/s. Otherwise, use KB/s. +# Parameters: +# 1. RAW - the raw disk speed result (in KB/s) +# Returns: +# Formatted disk speed in GB/s, MB/s, or KB/s +function format_speed { + RAW=$1 # disk speed in KB/s + RESULT=$RAW + local DENOM=1 + local UNIT="KB/s" + + # ensure raw value is not null, if it is, return blank + if [ -z "$RAW" ]; then + echo "" + return 0 + fi + + # check if disk speed >= 1 GB/s + if [ "$RAW" -ge 1000000 ]; then + DENOM=1000000 + UNIT="GB/s" + # check if disk speed < 1 GB/s && >= 1 MB/s + elif [ "$RAW" -ge 1000 ]; then + DENOM=1000 + UNIT="MB/s" + fi + + # divide the raw result to get the corresponding formatted result (based on determined unit) + RESULT=$(awk -v a="$RESULT" -v b="$DENOM" 'BEGIN { print a / b }') + # shorten the formatted result to two decimal places (i.e. x.xx) + RESULT=$(echo $RESULT | awk -F. '{ printf "%0.2f",$1"."substr($2,1,2) }') + # concat formatted result value with units and return result + RESULT="$RESULT $UNIT" + echo $RESULT +} + +# format_iops +# Purpose: This method is a convenience function to format the output of the raw IOPS result +# Parameters: +# 1. RAW - the raw IOPS result +# Returns: +# Formatted IOPS (i.e. 8, 123, 1.7k, 275.9k, etc.) +function format_iops { + RAW=$1 # iops + RESULT=$RAW + + # ensure raw value is not null, if it is, return blank + if [ -z "$RAW" ]; then + echo "" + return 0 + fi + + # check if IOPS speed > 1k + if [ "$RAW" -ge 1000 ]; then + # divide the raw result by 1k + RESULT=$(awk -v a="$RESULT" 'BEGIN { print a / 1000 }') + # shorten the formatted result to one decimal place (i.e. x.x) + RESULT=$(echo $RESULT | awk -F. '{ printf "%0.1f",$1"."substr($2,1,1) }') + RESULT="$RESULT"k + fi + + echo $RESULT +} + +# disk_test +# Purpose: This method is designed to test the disk performance of the host using the partition that the +# script is being run from using fio random read/write speed tests. +# Parameters: +# - (none) +function disk_test { + if [[ "$ARCH" = "aarch64" || "$ARCH" = "arm" ]]; then + FIO_SIZE=512M + else + FIO_SIZE=2G + fi + + # run a quick test to generate the fio test file to be used by the actual tests + echo -en "Generating fio test file..." + $FIO_CMD --name=setup --ioengine=libaio --rw=read --bs=64k --iodepth=64 --numjobs=2 --size=$FIO_SIZE --runtime=1 --gtod_reduce=1 --filename="$DISK_PATH/test.fio" --direct=1 --minimal &> /dev/null + echo -en "\r\033[0K" + + # get array of block sizes to evaluate + BLOCK_SIZES=("$@") + + for BS in "${BLOCK_SIZES[@]}"; do + # run rand read/write mixed fio test with block size = $BS + echo -en "Running fio random mixed R+W disk test with $BS block size..." + DISK_TEST=$(timeout 35 $FIO_CMD --name=rand_rw_$BS --ioengine=libaio --rw=randrw --rwmixread=50 --bs=$BS --iodepth=64 --numjobs=2 --size=$FIO_SIZE --runtime=30 --gtod_reduce=1 --direct=1 --filename="$DISK_PATH/test.fio" --group_reporting --minimal 2> /dev/null | grep rand_rw_$BS) + DISK_IOPS_R=$(echo $DISK_TEST | awk -F';' '{print $8}') + DISK_IOPS_W=$(echo $DISK_TEST | awk -F';' '{print $49}') + DISK_IOPS=$(awk -v a="$DISK_IOPS_R" -v b="$DISK_IOPS_W" 'BEGIN { print a + b }') + DISK_TEST_R=$(echo $DISK_TEST | awk -F';' '{print $7}') + DISK_TEST_W=$(echo $DISK_TEST | awk -F';' '{print $48}') + DISK_TEST=$(awk -v a="$DISK_TEST_R" -v b="$DISK_TEST_W" 'BEGIN { print a + b }') + DISK_RESULTS_RAW+=( "$DISK_TEST" "$DISK_TEST_R" "$DISK_TEST_W" "$DISK_IOPS" "$DISK_IOPS_R" "$DISK_IOPS_W" ) + + DISK_IOPS=$(format_iops $DISK_IOPS) + DISK_IOPS_R=$(format_iops $DISK_IOPS_R) + DISK_IOPS_W=$(format_iops $DISK_IOPS_W) + DISK_TEST=$(format_speed $DISK_TEST) + DISK_TEST_R=$(format_speed $DISK_TEST_R) + DISK_TEST_W=$(format_speed $DISK_TEST_W) + + DISK_RESULTS+=( "$DISK_TEST" "$DISK_TEST_R" "$DISK_TEST_W" "$DISK_IOPS" "$DISK_IOPS_R" "$DISK_IOPS_W" ) + echo -en "\r\033[0K" + done +} + +# dd_test +# Purpose: This method is invoked if the fio disk test failed. dd sequential speed tests are +# not indiciative or real-world results, however, some form of disk speed measure +# is better than nothing. +# Parameters: +# - (none) +function dd_test { + I=0 + DISK_WRITE_TEST_RES=() + DISK_READ_TEST_RES=() + DISK_WRITE_TEST_AVG=0 + DISK_READ_TEST_AVG=0 + + # run the disk speed tests (write and read) thrice over + while [ $I -lt 3 ] + do + # write test using dd, "direct" flag is used to test direct I/O for data being stored to disk + DISK_WRITE_TEST=$(dd if=/dev/zero of="$DISK_PATH/$DATE.test" bs=64k count=16k oflag=direct |& grep copied | awk '{ print $(NF-1) " " $(NF)}') + VAL=$(echo $DISK_WRITE_TEST | cut -d " " -f 1) + [[ "$DISK_WRITE_TEST" == *"GB"* ]] && VAL=$(awk -v a="$VAL" 'BEGIN { print a * 1000 }') + DISK_WRITE_TEST_RES+=( "$DISK_WRITE_TEST" ) + DISK_WRITE_TEST_AVG=$(awk -v a="$DISK_WRITE_TEST_AVG" -v b="$VAL" 'BEGIN { print a + b }') + + # read test using dd using the 1G file written during the write test + DISK_READ_TEST=$(dd if="$DISK_PATH/$DATE.test" of=/dev/null bs=8k |& grep copied | awk '{ print $(NF-1) " " $(NF)}') + VAL=$(echo $DISK_READ_TEST | cut -d " " -f 1) + [[ "$DISK_READ_TEST" == *"GB"* ]] && VAL=$(awk -v a="$VAL" 'BEGIN { print a * 1000 }') + DISK_READ_TEST_RES+=( "$DISK_READ_TEST" ) + DISK_READ_TEST_AVG=$(awk -v a="$DISK_READ_TEST_AVG" -v b="$VAL" 'BEGIN { print a + b }') + + I=$(( $I + 1 )) + done + # calculate the write and read speed averages using the results from the three runs + DISK_WRITE_TEST_AVG=$(awk -v a="$DISK_WRITE_TEST_AVG" 'BEGIN { print a / 3 }') + DISK_READ_TEST_AVG=$(awk -v a="$DISK_READ_TEST_AVG" 'BEGIN { print a / 3 }') +} + +# check if disk performance is being tested and the host has required space (2G) +AVAIL_SPACE=$(df -k . | awk 'NR==2{print $4}') +if [[ -z "$SKIP_FIO" && "$AVAIL_SPACE" -lt 2097152 && "$ARCH" != "aarch64" && "$ARCH" != "arm" ]]; then # 2GB = 2097152KB + echo -e "\nLess than 2GB of space available. Skipping disk test..." +elif [[ -z "$SKIP_FIO" && "$AVAIL_SPACE" -lt 524288 && ("$ARCH" = "aarch64" || "$ARCH" = "arm") ]]; then # 512MB = 524288KB + echo -e "\nLess than 512MB of space available. Skipping disk test..." +# if the skip disk flag was set, skip the disk performance test, otherwise test disk performance +elif [ -z "$SKIP_FIO" ]; then + # Perform ZFS filesystem detection and determine if we have enough free space according to spa_asize_inflation + ZFSCHECK="/sys/module/zfs/parameters/spa_asize_inflation" + if [[ -f "$ZFSCHECK" ]];then + mul_spa=$((($(cat /sys/module/zfs/parameters/spa_asize_inflation)*2))) + warning=0 + poss=() + + for pathls in $(df -Th | awk '{print $7}' | tail -n +2) + do + if [[ "${PWD##$pathls}" != "${PWD}" ]]; then + poss+=("$pathls") + fi + done + + long="" + m=-1 + for x in ${poss[@]} + do + if [ ${#x} -gt $m ];then + m=${#x} + long=$x + fi + done + + size_b=$(df -Th | grep -w $long | grep -i zfs | awk '{print $5}' | tail -c -2 | head -c 1) + free_space=$(df -Th | grep -w $long | grep -i zfs | awk '{print $5}' | head -c -2) + + if [[ $size_b == 'T' ]]; then + free_space=$(awk "BEGIN {print int($free_space * 1024)}") + size_b='G' + fi + + if [[ $(df -Th | grep -w $long) == *"zfs"* ]];then + + if [[ $size_b == 'G' ]]; then + if ((free_space < mul_spa)); then + warning=1 + fi + else + warning=1 + fi + + fi + + if [[ $warning -eq 1 ]];then + echo -en "\nWarning! You are running YABS on a ZFS Filesystem and your disk space is too low for the fio test. Your test results will be inaccurate. You need at least $mul_spa GB free in order to complete this test accurately. For more information, please see https://github.com/masonr/yet-another-bench-script/issues/13\n" + fi + fi + + echo -en "\nPreparing system for disk tests..." + + # create temp directory to store disk write/read test files + DISK_PATH=$YABS_PATH/disk + mkdir -p "$DISK_PATH" + + if [[ -z "$PREFER_BIN" && ! -z "$LOCAL_FIO" ]]; then # local fio has been detected, use instead of pre-compiled binary + FIO_CMD=fio + else + # download fio binary + if [[ ! -z $LOCAL_CURL ]]; then + curl -s --connect-timeout 5 --retry 5 --retry-delay 0 https://raw.githubusercontent.com/masonr/yet-another-bench-script/master/bin/fio/fio_$ARCH -o "$DISK_PATH/fio" + else + wget -q -T 5 -t 5 -w 0 https://raw.githubusercontent.com/masonr/yet-another-bench-script/master/bin/fio/fio_$ARCH -O "$DISK_PATH/fio" + fi + + if [ ! -f "$DISK_PATH/fio" ]; then # ensure fio binary download successfully + echo -en "\r\033[0K" + echo -e "Fio binary download failed. Running dd test as fallback...." + DD_FALLBACK=True + else + chmod +x "$DISK_PATH/fio" + FIO_CMD=$DISK_PATH/fio + fi + fi + + if [ -z "$DD_FALLBACK" ]; then # if not falling back on dd tests, run fio test + echo -en "\r\033[0K" + + # init global array to store disk performance values + declare -a DISK_RESULTS DISK_RESULTS_RAW + # disk block sizes to evaluate + BLOCK_SIZES=( "4k" "64k" "512k" "1m" ) + + # execute disk performance test + disk_test "${BLOCK_SIZES[@]}" + fi + + if [[ ! -z "$DD_FALLBACK" || ${#DISK_RESULTS[@]} -eq 0 ]]; then # fio download failed or test was killed or returned an error, run dd test instead + if [ -z "$DD_FALLBACK" ]; then # print error notice if ended up here due to fio error + echo -e "fio disk speed tests failed. Run manually to determine cause.\nRunning dd test as fallback..." + fi + + dd_test + + # format the speed averages by converting to GB/s if > 1000 MB/s + if [ $(echo $DISK_WRITE_TEST_AVG | cut -d "." -f 1) -ge 1000 ]; then + DISK_WRITE_TEST_AVG=$(awk -v a="$DISK_WRITE_TEST_AVG" 'BEGIN { print a / 1000 }') + DISK_WRITE_TEST_UNIT="GB/s" + else + DISK_WRITE_TEST_UNIT="MB/s" + fi + if [ $(echo $DISK_READ_TEST_AVG | cut -d "." -f 1) -ge 1000 ]; then + DISK_READ_TEST_AVG=$(awk -v a="$DISK_READ_TEST_AVG" 'BEGIN { print a / 1000 }') + DISK_READ_TEST_UNIT="GB/s" + else + DISK_READ_TEST_UNIT="MB/s" + fi + + # print dd sequential disk speed test results + echo -e + echo -e "dd Sequential Disk Speed Tests:" + echo -e "---------------------------------" + printf "%-6s | %-6s %-4s | %-6s %-4s | %-6s %-4s | %-6s %-4s\n" "" "Test 1" "" "Test 2" "" "Test 3" "" "Avg" "" + printf "%-6s | %-6s %-4s | %-6s %-4s | %-6s %-4s | %-6s %-4s\n" + printf "%-6s | %-11s | %-11s | %-11s | %-6.2f %-4s\n" "Write" "${DISK_WRITE_TEST_RES[0]}" "${DISK_WRITE_TEST_RES[1]}" "${DISK_WRITE_TEST_RES[2]}" "${DISK_WRITE_TEST_AVG}" "${DISK_WRITE_TEST_UNIT}" + printf "%-6s | %-11s | %-11s | %-11s | %-6.2f %-4s\n" "Read" "${DISK_READ_TEST_RES[0]}" "${DISK_READ_TEST_RES[1]}" "${DISK_READ_TEST_RES[2]}" "${DISK_READ_TEST_AVG}" "${DISK_READ_TEST_UNIT}" + else # fio tests completed successfully, print results + CURRENT_PARTITION=$(df -P . 2>/dev/null | tail -1 | cut -d' ' -f 1) + [[ ! -z $JSON ]] && JSON_RESULT+=',"partition":"'$CURRENT_PARTITION'","fio":[' + DISK_RESULTS_NUM=$(expr ${#DISK_RESULTS[@]} / 6) + DISK_COUNT=0 + + # print disk speed test results + echo -e "fio Disk Speed Tests (Mixed R/W 50/50) (Partition $CURRENT_PARTITION):" + echo -e "---------------------------------" + + while [ $DISK_COUNT -lt $DISK_RESULTS_NUM ] ; do + if [ $DISK_COUNT -gt 0 ]; then printf "%-10s | %-20s | %-20s\n"; fi + printf "%-10s | %-11s %8s | %-11s %8s\n" "Block Size" "${BLOCK_SIZES[DISK_COUNT]}" "(IOPS)" "${BLOCK_SIZES[DISK_COUNT+1]}" "(IOPS)" + printf "%-10s | %-11s %8s | %-11s %8s\n" " ------" "---" "---- " "----" "---- " + printf "%-10s | %-11s %8s | %-11s %8s\n" "Read" "${DISK_RESULTS[DISK_COUNT*6+1]}" "(${DISK_RESULTS[DISK_COUNT*6+4]})" "${DISK_RESULTS[(DISK_COUNT+1)*6+1]}" "(${DISK_RESULTS[(DISK_COUNT+1)*6+4]})" + printf "%-10s | %-11s %8s | %-11s %8s\n" "Write" "${DISK_RESULTS[DISK_COUNT*6+2]}" "(${DISK_RESULTS[DISK_COUNT*6+5]})" "${DISK_RESULTS[(DISK_COUNT+1)*6+2]}" "(${DISK_RESULTS[(DISK_COUNT+1)*6+5]})" + printf "%-10s | %-11s %8s | %-11s %8s\n" "Total" "${DISK_RESULTS[DISK_COUNT*6]}" "(${DISK_RESULTS[DISK_COUNT*6+3]})" "${DISK_RESULTS[(DISK_COUNT+1)*6]}" "(${DISK_RESULTS[(DISK_COUNT+1)*6+3]})" + if [ ! -z $JSON ]; then + JSON_RESULT+='{"bs":"'${BLOCK_SIZES[DISK_COUNT]}'","speed_r":'${DISK_RESULTS_RAW[DISK_COUNT*6+1]}',"iops_r":'${DISK_RESULTS_RAW[DISK_COUNT*6+4]} + JSON_RESULT+=',"speed_w":'${DISK_RESULTS_RAW[DISK_COUNT*6+2]}',"iops_w":'${DISK_RESULTS_RAW[DISK_COUNT*6+5]}',"speed_rw":'${DISK_RESULTS_RAW[DISK_COUNT*6]} + JSON_RESULT+=',"iops_rw":'${DISK_RESULTS_RAW[DISK_COUNT*6+3]}',"speed_units":"KBps"},' + JSON_RESULT+='{"bs":"'${BLOCK_SIZES[DISK_COUNT+1]}'","speed_r":'${DISK_RESULTS_RAW[(DISK_COUNT+1)*6+1]}',"iops_r":'${DISK_RESULTS_RAW[(DISK_COUNT+1)*6+4]} + JSON_RESULT+=',"speed_w":'${DISK_RESULTS_RAW[(DISK_COUNT+1)*6+2]}',"iops_w":'${DISK_RESULTS_RAW[(DISK_COUNT+1)*6+5]}',"speed_rw":'${DISK_RESULTS_RAW[(DISK_COUNT+1)*6]} + JSON_RESULT+=',"iops_rw":'${DISK_RESULTS_RAW[(DISK_COUNT+1)*6+3]}',"speed_units":"KBps"},' + fi + DISK_COUNT=$(expr $DISK_COUNT + 2) + done + [[ ! -z $JSON ]] && JSON_RESULT=${JSON_RESULT::${#JSON_RESULT}-1} && JSON_RESULT+=']' + fi +fi + +# iperf_test +# Purpose: This method is designed to test the network performance of the host by executing an +# iperf3 test to/from the public iperf server passed to the function. Both directions +# (send and receive) are tested. +# Parameters: +# 1. URL - URL/domain name of the iperf server +# 2. PORTS - the range of ports on which the iperf server operates +# 3. HOST - the friendly name of the iperf server host/owner +# 4. FLAGS - any flags that should be passed to the iperf command +function iperf_test { + URL=$1 + PORTS=$2 + HOST=$3 + FLAGS=$4 + + # attempt the iperf send test 3 times, allowing for a slot to become available on the + # server or to throw out any bad/error results + I=1 + while [ $I -le 3 ] + do + echo -en "Performing $MODE iperf3 send test to $HOST (Attempt #$I of 3)..." + # select a random iperf port from the range provided + PORT=$(shuf -i $PORTS -n 1) + # run the iperf test sending data from the host to the iperf server; includes + # a timeout of 15s in case the iperf server is not responding; uses 8 parallel + # threads for the network test + IPERF_RUN_SEND="$(timeout 15 $IPERF_CMD $FLAGS -c "$URL" -p $PORT -P 8 2> /dev/null)" + # check if iperf exited cleanly and did not return an error + if [[ "$IPERF_RUN_SEND" == *"receiver"* && "$IPERF_RUN_SEND" != *"error"* ]]; then + # test did not result in an error, parse speed result + SPEED=$(echo "${IPERF_RUN_SEND}" | grep SUM | grep receiver | awk '{ print $6 }') + # if speed result is blank or bad (0.00), rerun, otherwise set counter to exit loop + [[ -z $SPEED || "$SPEED" == "0.00" ]] && I=$(( $I + 1 )) || I=11 + else + # if iperf server is not responding, set counter to exit, otherwise increment, sleep, and rerun + [[ "$IPERF_RUN_SEND" == *"unable to connect"* ]] && I=11 || I=$(( $I + 1 )) && sleep 2 + fi + echo -en "\r\033[0K" + done + + # small sleep necessary to give iperf server a breather to get ready for a new test + sleep 1 + + # attempt the iperf receive test 3 times, allowing for a slot to become available on + # the server or to throw out any bad/error results + J=1 + while [ $J -le 3 ] + do + echo -n "Performing $MODE iperf3 recv test from $HOST (Attempt #$J of 3)..." + # select a random iperf port from the range provided + PORT=$(shuf -i $PORTS -n 1) + # run the iperf test receiving data from the iperf server to the host; includes + # a timeout of 15s in case the iperf server is not responding; uses 8 parallel + # threads for the network test + IPERF_RUN_RECV="$(timeout 15 $IPERF_CMD $FLAGS -c "$URL" -p $PORT -P 8 -R 2> /dev/null)" + # check if iperf exited cleanly and did not return an error + if [[ "$IPERF_RUN_RECV" == *"receiver"* && "$IPERF_RUN_RECV" != *"error"* ]]; then + # test did not result in an error, parse speed result + SPEED=$(echo "${IPERF_RUN_RECV}" | grep SUM | grep receiver | awk '{ print $6 }') + # if speed result is blank or bad (0.00), rerun, otherwise set counter to exit loop + [[ -z $SPEED || "$SPEED" == "0.00" ]] && J=$(( $J + 1 )) || J=11 + else + # if iperf server is not responding, set counter to exit, otherwise increment, sleep, and rerun + [[ "$IPERF_RUN_RECV" == *"unable to connect"* ]] && J=11 || J=$(( $J + 1 )) && sleep 2 + fi + echo -en "\r\033[0K" + done + + # Run a latency test via ping -c1 command -> will return "xx.x ms" + [[ ! -z $LOCAL_PING ]] && LATENCY_RUN="$(ping -c1 $URL 2>/dev/null | grep -o 'time=.*' | sed s/'time='//)" + [[ -z $LATENCY_RUN ]] && LATENCY_RUN="--" + + # parse the resulting send and receive speed results + IPERF_SENDRESULT="$(echo "${IPERF_RUN_SEND}" | grep SUM | grep receiver)" + IPERF_RECVRESULT="$(echo "${IPERF_RUN_RECV}" | grep SUM | grep receiver)" + LATENCY_RESULT="$(echo "${LATENCY_RUN}")" +} + +# launch_iperf +# Purpose: This method is designed to facilitate the execution of iperf network speed tests to +# each public iperf server in the iperf server locations array. +# Parameters: +# 1. MODE - indicates the type of iperf tests to run (IPv4 or IPv6) +function launch_iperf { + MODE=$1 + [[ "$MODE" == *"IPv6"* ]] && IPERF_FLAGS="-6" || IPERF_FLAGS="-4" + + # print iperf3 network speed results as they are completed + echo -e + echo -e "iperf3 Network Speed Tests ($MODE):" + echo -e "---------------------------------" + printf "%-15s | %-25s | %-15s | %-15s | %-15s\n" "Provider" "Location (Link)" "Send Speed" "Recv Speed" "Ping" + printf "%-15s | %-25s | %-15s | %-15s | %-15s\n" "-----" "-----" "----" "----" "----" + + # loop through iperf locations array to run iperf test using each public iperf server + for (( i = 0; i < IPERF_LOCS_NUM; i++ )); do + # test if the current iperf location supports the network mode being tested (IPv4/IPv6) + if [[ "${IPERF_LOCS[i*5+4]}" == *"$MODE"* ]]; then + # call the iperf_test function passing the required parameters + iperf_test "${IPERF_LOCS[i*5]}" "${IPERF_LOCS[i*5+1]}" "${IPERF_LOCS[i*5+2]}" "$IPERF_FLAGS" + # parse the send and receive speed results + IPERF_SENDRESULT_VAL=$(echo $IPERF_SENDRESULT | awk '{ print $6 }') + IPERF_SENDRESULT_UNIT=$(echo $IPERF_SENDRESULT | awk '{ print $7 }') + IPERF_RECVRESULT_VAL=$(echo $IPERF_RECVRESULT | awk '{ print $6 }') + IPERF_RECVRESULT_UNIT=$(echo $IPERF_RECVRESULT | awk '{ print $7 }') + LATENCY_VAL=$(echo $LATENCY_RESULT) + # if the results are blank, then the server is "busy" and being overutilized + [[ -z $IPERF_SENDRESULT_VAL || "$IPERF_SENDRESULT_VAL" == *"0.00"* ]] && IPERF_SENDRESULT_VAL="busy" && IPERF_SENDRESULT_UNIT="" + [[ -z $IPERF_RECVRESULT_VAL || "$IPERF_RECVRESULT_VAL" == *"0.00"* ]] && IPERF_RECVRESULT_VAL="busy" && IPERF_RECVRESULT_UNIT="" + # print the speed results for the iperf location currently being evaluated + printf "%-15s | %-25s | %-15s | %-15s | %-15s\n" "${IPERF_LOCS[i*5+2]}" "${IPERF_LOCS[i*5+3]}" "$IPERF_SENDRESULT_VAL $IPERF_SENDRESULT_UNIT" "$IPERF_RECVRESULT_VAL $IPERF_RECVRESULT_UNIT" "$LATENCY_VAL" + if [ ! -z $JSON ]; then + JSON_RESULT+='{"mode":"'$MODE'","provider":"'${IPERF_LOCS[i*5+2]}'","loc":"'${IPERF_LOCS[i*5+3]} + JSON_RESULT+='","send":"'$IPERF_SENDRESULT_VAL' '$IPERF_SENDRESULT_UNIT'","recv":"'$IPERF_RECVRESULT_VAL' '$IPERF_RECVRESULT_UNIT'","latency":"'$LATENCY_VAL'"},' + fi + fi + done +} + +# if the skip iperf flag was set, skip the network performance test, otherwise test network performance +if [ -z "$SKIP_IPERF" ]; then + + if [[ -z "$PREFER_BIN" && ! -z "$LOCAL_IPERF" ]]; then # local iperf has been detected, use instead of pre-compiled binary + IPERF_CMD=iperf3 + else + # create a temp directory to house the required iperf binary and library + IPERF_PATH=$YABS_PATH/iperf + mkdir -p "$IPERF_PATH" + + # download iperf3 binary + if [[ ! -z $LOCAL_CURL ]]; then + curl -s --connect-timeout 5 --retry 5 --retry-delay 0 https://raw.githubusercontent.com/masonr/yet-another-bench-script/master/bin/iperf/iperf3_$ARCH -o "$IPERF_PATH/iperf3" + else + wget -q -T 5 -t 5 -w 0 https://raw.githubusercontent.com/masonr/yet-another-bench-script/master/bin/iperf/iperf3_$ARCH -O "$IPERF_PATH/iperf3" + fi + + if [ ! -f "$IPERF_PATH/iperf3" ]; then # ensure iperf3 binary downloaded successfully + IPERF_DL_FAIL=True + else + chmod +x "$IPERF_PATH/iperf3" + IPERF_CMD=$IPERF_PATH/iperf3 + fi + fi + + # array containing all currently available iperf3 public servers to use for the network test + # format: "1" "2" "3" "4" "5" \ + # 1. domain name of the iperf server + # 2. range of ports that the iperf server is running on (lowest-highest) + # 3. friendly name of the host/owner of the iperf server + # 4. location and advertised speed link of the iperf server + # 5. network modes supported by the iperf server (IPv4 = IPv4-only, IPv4|IPv6 = IPv4 + IPv6, etc.) + IPERF_LOCS=( \ + "lon.speedtest.clouvider.net" "5200-5209" "Clouvider" "London, UK (10G)" "IPv4|IPv6" \ + "iperf-ams-nl.eranium.net" "5201-5210" "Eranium" "Amsterdam, NL (100G)" "IPv4|IPv6" \ + #"speedtest.extra.telia.fi" "5201-5208" "Telia" "Helsinki, FI (10G)" "IPv4" \ + # AFR placeholder + "speedtest.uztelecom.uz" "5200-5209" "Uztelecom" "Tashkent, UZ (10G)" "IPv4|IPv6" \ + "speedtest.sin1.sg.leaseweb.net" "5201-5210" "Leaseweb" "Singapore, SG (10G)" "IPv4|IPv6" \ + "la.speedtest.clouvider.net" "5200-5209" "Clouvider" "Los Angeles, CA, US (10G)" "IPv4|IPv6" \ + "speedtest.nyc1.us.leaseweb.net" "5201-5210" "Leaseweb" "NYC, NY, US (10G)" "IPv4|IPv6" \ + "speedtest.sao1.edgoo.net" "9204-9240" "Edgoo" "Sao Paulo, BR (1G)" "IPv4|IPv6" + ) + + # if the "REDUCE_NET" flag is activated, then do a shorter iperf test with only three locations + # (Clouvider London, Clouvider NYC, and Online.net France) + if [ ! -z "$REDUCE_NET" ]; then + IPERF_LOCS=( \ + "lon.speedtest.clouvider.net" "5200-5209" "Clouvider" "London, UK (10G)" "IPv4|IPv6" \ + "speedtest.sin1.sg.leaseweb.net" "5201-5210" "Leaseweb" "Singapore, SG (10G)" "IPv4|IPv6" \ + "speedtest.nyc1.us.leaseweb.net" "5201-5210" "Leaseweb" "NYC, NY, US (10G)" "IPv4|IPv6" \ + ) + fi + + # get the total number of iperf locations (total array size divided by 5 since each location has 5 elements) + IPERF_LOCS_NUM=${#IPERF_LOCS[@]} + IPERF_LOCS_NUM=$((IPERF_LOCS_NUM / 5)) + + if [ -z "$IPERF_DL_FAIL" ]; then + [[ ! -z $JSON ]] && JSON_RESULT+=',"iperf":[' + # check if the host has IPv4 connectivity, if so, run iperf3 IPv4 tests + [ ! -z "$IPV4_CHECK" ] && launch_iperf "IPv4" + # check if the host has IPv6 connectivity, if so, run iperf3 IPv6 tests + [ ! -z "$IPV6_CHECK" ] && launch_iperf "IPv6" + [[ ! -z $JSON ]] && JSON_RESULT=${JSON_RESULT::${#JSON_RESULT}-1} && JSON_RESULT+=']' + else + echo -e "\niperf3 binary download failed. Skipping iperf network tests..." + fi +fi + +# launch_geekbench +# Purpose: This method is designed to run the Primate Labs' Geekbench 4/5 Cross-Platform Benchmark utility +# Parameters: +# 1. VERSION - indicates which Geekbench version to run +function launch_geekbench { + VERSION=$1 + + # create a temp directory to house all geekbench files + GEEKBENCH_PATH=$YABS_PATH/geekbench_$VERSION + mkdir -p "$GEEKBENCH_PATH" + + GB_URL="" + GB_CMD="" + GB_RUN="" + + # check for curl vs wget + [[ ! -z $LOCAL_CURL ]] && DL_CMD="curl -s" || DL_CMD="wget -qO-" + + if [[ $VERSION == *4* && ($ARCH = *aarch64* || $ARCH = *arm*) ]]; then + echo -e "\nARM architecture not supported by Geekbench 4, use Geekbench 5 or 6." + elif [[ $VERSION == *4* && $ARCH != *aarch64* && $ARCH != *arm* ]]; then # Geekbench v4 + GB_URL="https://cdn.geekbench.com/Geekbench-4.4.4-Linux.tar.gz" + [[ "$ARCH" == *"x86"* ]] && GB_CMD="geekbench_x86_32" || GB_CMD="geekbench4" + GB_RUN="True" + elif [[ $VERSION == *5* || $VERSION == *6* ]]; then # Geekbench v5/6 + if [[ $ARCH = *x86* && $GEEKBENCH_4 == *False* ]]; then # don't run Geekbench 5 if on 32-bit arch + echo -e "\nGeekbench $VERSION cannot run on 32-bit architectures. Re-run with -4 flag to use" + echo -e "Geekbench 4, which can support 32-bit architectures. Skipping Geekbench $VERSION." + elif [[ $ARCH = *x86* && $GEEKBENCH_4 == *True* ]]; then + echo -e "\nGeekbench $VERSION cannot run on 32-bit architectures. Skipping test." + else + if [[ $VERSION == *5* ]]; then # Geekbench v5 + [[ $ARCH = *aarch64* || $ARCH = *arm* ]] && GB_URL="https://cdn.geekbench.com/Geekbench-5.5.1-LinuxARMPreview.tar.gz" \ + || GB_URL="https://cdn.geekbench.com/Geekbench-5.5.1-Linux.tar.gz" + GB_CMD="geekbench5" + else # Geekbench v6 + [[ $ARCH = *aarch64* || $ARCH = *arm* ]] && GB_URL="https://cdn.geekbench.com/Geekbench-6.3.0-LinuxARMPreview.tar.gz" \ + || GB_URL="https://cdn.geekbench.com/Geekbench-6.3.0-Linux.tar.gz" + GB_CMD="geekbench6" + fi + GB_RUN="True" + fi + fi + + if [[ $GB_RUN == *True* ]]; then # run GB test + echo -en "\nRunning GB$VERSION benchmark test... *cue elevator music*" + + # check for local geekbench installed + if command -v "$GB_CMD" &>/dev/null; then + GEEKBENCH_PATH=$(dirname "$(command -v "$GB_CMD")") + else + # download the desired Geekbench tarball and extract to geekbench temp directory + $DL_CMD $GB_URL | tar xz --strip-components=1 -C "$GEEKBENCH_PATH" &>/dev/null + fi + + # unlock if license file detected + test -f "geekbench.license" && "$GEEKBENCH_PATH/$GB_CMD" --unlock $(cat geekbench.license) > /dev/null 2>&1 + + # run the Geekbench test and grep the test results URL given at the end of the test + GEEKBENCH_TEST=$("$GEEKBENCH_PATH/$GB_CMD" --upload 2>/dev/null | grep "https://browser") + + # ensure the test ran successfully + if [ -z "$GEEKBENCH_TEST" ]; then + # detect if CentOS 7 and print a more helpful error message + if grep -q "CentOS Linux 7" /etc/os-release; then + echo -e "\r\033[0K CentOS 7 and Geekbench have known issues relating to glibc (see issue #71 for details)" + fi + if [[ -z "$IPV4_CHECK" ]]; then + # Geekbench test failed to download because host lacks IPv4 (cdn.geekbench.com = IPv4 only) + echo -e "\r\033[0KGeekbench releases can only be downloaded over IPv4. FTP the Geekbench files and run manually." + elif [[ $VERSION != *4* && $TOTAL_RAM_RAW -le 1048576 ]]; then + # Geekbench 5/6 test failed with low memory (<=1GB) + echo -e "\r\033[0KGeekbench test failed and low memory was detected. Add at least 1GB of SWAP or use GB4 instead (higher compatibility with low memory systems)." + elif [[ $ARCH != *x86* ]]; then + # if the Geekbench test failed for any other reason, exit cleanly and print error message + echo -e "\r\033[0KGeekbench $VERSION test failed. Run manually to determine cause." + fi + else + # if the Geekbench test succeeded, parse the test results URL + GEEKBENCH_URL=$(echo -e $GEEKBENCH_TEST | head -1) + GEEKBENCH_URL_CLAIM=$(echo $GEEKBENCH_URL | awk '{ print $2 }') + GEEKBENCH_URL=$(echo $GEEKBENCH_URL | awk '{ print $1 }') + # sleep a bit to wait for results to be made available on the geekbench website + sleep 10 + # parse the public results page for the single and multi core geekbench scores + [[ $VERSION == *4* ]] && GEEKBENCH_SCORES=$($DL_CMD $GEEKBENCH_URL | grep "span class='score'") || \ + GEEKBENCH_SCORES=$($DL_CMD $GEEKBENCH_URL | grep "div class='score'") + + GEEKBENCH_SCORES_SINGLE=$(echo $GEEKBENCH_SCORES | awk -v FS="(>|<)" '{ print $3 }') + GEEKBENCH_SCORES_MULTI=$(echo $GEEKBENCH_SCORES | awk -v FS="(>|<)" '{ print $7 }') + + # print the Geekbench results + echo -en "\r\033[0K" + echo -e "Geekbench $VERSION Benchmark Test:" + echo -e "---------------------------------" + printf "%-15s | %-30s\n" "Test" "Value" + printf "%-15s | %-30s\n" + printf "%-15s | %-30s\n" "Single Core" "$GEEKBENCH_SCORES_SINGLE" + printf "%-15s | %-30s\n" "Multi Core" "$GEEKBENCH_SCORES_MULTI" + printf "%-15s | %-30s\n" "Full Test" "$GEEKBENCH_URL" + + if [ ! -z $JSON ]; then + JSON_RESULT+='{"version":'$VERSION',"single":'$GEEKBENCH_SCORES_SINGLE',"multi":'$GEEKBENCH_SCORES_MULTI + JSON_RESULT+=',"url":"'$GEEKBENCH_URL'"},' + fi + + # write the geekbench claim URL to a file so the user can add the results to their profile (if desired) + [ ! -z "$GEEKBENCH_URL_CLAIM" ] && echo -e "$GEEKBENCH_URL_CLAIM" >> geekbench_claim.url 2> /dev/null + fi + fi +} + +# if the skip geekbench flag was set, skip the system performance test, otherwise test system performance +if [ -z "$SKIP_GEEKBENCH" ]; then + [[ ! -z $JSON ]] && JSON_RESULT+=',"geekbench":[' + if [[ $GEEKBENCH_4 == *True* ]]; then + launch_geekbench 4 + fi + + if [[ $GEEKBENCH_5 == *True* ]]; then + launch_geekbench 5 + fi + + if [[ $GEEKBENCH_6 == *True* ]]; then + launch_geekbench 6 + fi + [[ ! -z $JSON ]] && [[ $(echo -n $JSON_RESULT | tail -c 1) == ',' ]] && JSON_RESULT=${JSON_RESULT::${#JSON_RESULT}-1} + [[ ! -z $JSON ]] && JSON_RESULT+=']' +fi + +# finished all tests, clean up all YABS files and exit +echo -e +rm -rf "$YABS_PATH" + +YABS_END_TIME=$(date +%s) + +# calculate_time_taken +# Purpose: This method is designed to find the time taken for the completion of a YABS run. +# Parameters: +# 1. YABS_END_TIME - time when GB has completed and all files are removed +# 2. YABS_START_TIME - time when YABS is started +function calculate_time_taken() { + end_time=$1 + start_time=$2 + + time_taken=$(( ${end_time} - ${start_time} )) + if [ ${time_taken} -gt 60 ]; then + min=$(expr $time_taken / 60) + sec=$(expr $time_taken % 60) + echo "YABS completed in ${min} min ${sec} sec" + else + echo "YABS completed in ${time_taken} sec" + fi + [[ ! -z $JSON ]] && JSON_RESULT+=',"runtime":{"start":'$start_time',"end":'$end_time',"elapsed":'$time_taken'}' +} + +calculate_time_taken $YABS_END_TIME $YABS_START_TIME + +if [[ ! -z $JSON ]]; then + JSON_RESULT+='}' + + # write json results to file + if [[ $JSON = *w* ]]; then + echo $JSON_RESULT > "$JSON_FILE" + fi + + # send json results + if [[ $JSON = *s* ]]; then + IFS=',' read -r -a JSON_SITES <<< "$JSON_SEND" + for JSON_SITE in "${JSON_SITES[@]}" + do + if [[ ! -z $LOCAL_CURL ]]; then + curl -s -H "Content-Type:application/json" -X POST --data ''"$JSON_RESULT"'' $JSON_SITE + else + wget -qO- --post-data=''"$JSON_RESULT"'' --header='Content-Type:application/json' $JSON_SITE + fi + done + fi + + # print json result to screen + if [[ $JSON = *j* ]]; then + echo -e + echo $JSON_RESULT + fi +fi + +# reset locale settings +unset LC_ALL \ No newline at end of file diff --git a/998-常用脚本/服务器性能/磁盘.sh b/998-常用脚本/服务器性能/磁盘.sh new file mode 100644 index 0000000..ebce63f --- /dev/null +++ b/998-常用脚本/服务器性能/磁盘.sh @@ -0,0 +1,66 @@ +#!/bin/bash + +# 设置测试目录 +TEST_DIR="/var/lib/docker/" +# 设置大文件和小文件的大小 +LARGE_FILE_SIZE=3G # 1GB +SMALL_FILE_SIZE=10M # 1MB +LARGE_FILE="${TEST_DIR}/large_test_file" +SMALL_FILE="${TEST_DIR}/small_test_file" + +# 创建测试目录,如果不存在 +mkdir -p "$TEST_DIR" + +# 测试大文件读写速度 +echo "开始大文件读写测试..." + +# 写入大文件并测量时间 +start_time=$(date +%s.%N) +dd if=/dev/zero of="$LARGE_FILE" bs=1M count=1024 conv=fdatasync +end_time=$(date +%s.%N) +write_time=$(echo "$end_time - $start_time" | bc) +write_speed=$(echo "scale=2; 1024 / $write_time" | bc) + +echo "大文件写入速度: ${write_speed} MB/s" + +# 读取大文件并测量时间 +start_time=$(date +%s.%N) +dd if="$LARGE_FILE" of=/dev/null bs=1M +end_time=$(date +%s.%N) +read_time=$(echo "$end_time - $start_time" | bc) +read_speed=$(echo "scale=2; 1024 / $read_time" | bc) + +echo "大文件读取速度: ${read_speed} MB/s" + +# 清理大文件 +rm -f "$LARGE_FILE" + +# 测试小文件读写速度 +echo "开始小文件读写测试..." + +# 写入小文件并测量时间 +start_time=$(date +%s.%N) +for i in $(seq 1 3); do + dd if=/dev/zero of="${TEST_DIR}/small_test_file_$i" bs=1M count=1 conv=fdatasync +done +end_time=$(date +%s.%N) +write_time=$(echo "$end_time - $start_time" | bc) +write_speed=$(echo "scale=2; 1024 / $write_time" | bc) + +echo "小文件写入速度: ${write_speed} MB/s" + +# 读取小文件并测量时间 +start_time=$(date +%s.%N) +for i in $(seq 1 3); do + dd if="${TEST_DIR}/small_test_file_$i" of=/dev/null bs=1M +done +end_time=$(date +%s.%N) +read_time=$(echo "$end_time - $start_time" | bc) +read_speed=$(echo "scale=2; 1024 / $read_time" | bc) + +echo "小文件读取速度: ${read_speed} MB/s" + +# 清理小文件 +rm -f "${TEST_DIR}/small_test_file_"* + +echo "测试完成!" diff --git a/998-常用脚本/服务器性能/磁盘性能测试.py b/998-常用脚本/服务器性能/磁盘性能测试.py new file mode 100644 index 0000000..4214a91 --- /dev/null +++ b/998-常用脚本/服务器性能/磁盘性能测试.py @@ -0,0 +1,67 @@ +import os +import time + +def write_large_file(file_path, size_mb): + """写入大文件""" + with open(file_path, 'wb') as f: + f.write(os.urandom(size_mb * 1024 * 1024)) # 写入指定大小的随机数据 + +def read_large_file(file_path): + """读取大文件""" + with open(file_path, 'rb') as f: + f.read() # 读取文件内容 + +def write_small_files(dir_path, num_files, file_size): + """写入小文件""" + for i in range(num_files): + file_path = os.path.join(dir_path, f'small_file_{i}.txt') + with open(file_path, 'wb') as f: + f.write(os.urandom(file_size)) # 写入指定大小的随机数据 + +def read_small_files(dir_path, num_files): + """读取小文件""" + for i in range(num_files): + file_path = os.path.join(dir_path, f'small_file_{i}.txt') + with open(file_path, 'rb') as f: + f.read() # 读取文件内容 + +def measure_io(test_type, *args): + """测量IO性能""" + start_time = time.time() + if test_type == 'large_write': + write_large_file(*args) + elif test_type == 'large_read': + read_large_file(*args) + elif test_type == 'small_write': + write_small_files(*args) + elif test_type == 'small_read': + read_small_files(*args) + end_time = time.time() + return end_time - start_time + +def main(): + dir_path = '/var/lib/docker/' # 修改为你的测试目录 + large_file_size_mb = 10240 # 大文件大小(MB) + small_file_size = 1024 # 小文件大小(字节) + num_small_files = 100 # 小文件数量 + + # 大文件测试 + print("开始大文件写入测试...") + large_write_time = measure_io('large_write', os.path.join(dir_path, 'large_file.bin'), large_file_size_mb) + print(f"大文件写入时间: {large_write_time:.2f}秒") + + print("开始大文件读取测试...") + large_read_time = measure_io('large_read', os.path.join(dir_path, 'large_file.bin')) + print(f"大文件读取时间: {large_read_time:.2f}秒") + + # 小文件测试 + print("开始小文件写入测试...") + small_write_time = measure_io('small_write', dir_path, num_small_files, small_file_size) + print(f"小文件写入时间: {small_write_time:.2f}秒") + + print("开始小文件读取测试...") + small_read_time = measure_io('small_read', dir_path, num_small_files) + print(f"小文件读取时间: {small_read_time:.2f}秒") + +if __name__ == '__main__': + main() diff --git a/998-常用脚本/部署脚本/nginx暴露/真实nginx-reverse-proxy.conf b/998-常用脚本/部署脚本/nginx暴露/真实nginx-reverse-proxy.conf index 3eedd5b..f999d22 100644 --- a/998-常用脚本/部署脚本/nginx暴露/真实nginx-reverse-proxy.conf +++ b/998-常用脚本/部署脚本/nginx暴露/真实nginx-reverse-proxy.conf @@ -14,7 +14,7 @@ server { proxy_buffering off; proxy_buffer_size 4k; proxy_buffers 4 12k; - proxy_set_header Host fake-domain.jxejpt.io; + proxy_set_header Host fake-domain.sdejpt.io; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; diff --git a/998-常用脚本/部署脚本/nginx暴露/纯离线部署nginx-docker-compose.yaml b/998-常用脚本/部署脚本/nginx暴露/纯离线部署nginx-docker-compose.yaml index ff3e2d9..b44dc81 100644 --- a/998-常用脚本/部署脚本/nginx暴露/纯离线部署nginx-docker-compose.yaml +++ b/998-常用脚本/部署脚本/nginx暴露/纯离线部署nginx-docker-compose.yaml @@ -2,7 +2,7 @@ version: '3' services: cmii-nginx: - image: 10.20.1.135:8033/cmii/nginx:1.21.3 + image: 134.80.124.7:8033/cmii/nginx:1.21.3 volumes: - /etc/nginx/conf.d:/etc/nginx/conf.d - /etc/nginx/nginx.conf:/etc/nginx/nginx.conf diff --git a/998-常用脚本/部署脚本/z_执行apply命令.sh b/998-常用脚本/部署脚本/z_执行apply命令.sh new file mode 100644 index 0000000..af6ddc3 --- /dev/null +++ b/998-常用脚本/部署脚本/z_执行apply命令.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +kubectl apply -f k8s-dashboard.yaml + +kubectl -n kube-system describe secret $(kubectl -n kube-system get secret | grep admin-user | awk '{print $1}') + +kubectl apply -f k8s-nfs.yaml +kubectl delete -f k8s-nfs.yaml + +kubectl -n kube-system describe pod $(kubectl -n kube-system get pods | grep nfs-client-provisioner | awk '{print$1}') + +kubectl apply -f k8s-nfs-test.yaml +kubectl delete -f k8s-nfs-test.yaml + +cd /var/lib/docker/nfs_data + +kubectl apply -f k8s-pvc.yaml +kubectl delete -f k8s-pvc.yaml + +kubectl apply -f k8s-mongo.yaml +kubectl delete -f k8s-mongo.yaml + +kubectl apply -f k8s-emqx.yaml +kubectl delete -f k8s-emqx.yaml + +kubectl apply -f k8s-rabbitmq.yaml +kubectl delete -f k8s-rabbitmq.yam + +kubectl apply -f k8s-redis.yaml +kubectl delete -f k8s-redis.yamll + +kubectl apply -f k8s-mysql.yaml +kubectl delete -f k8s-mysql.yaml + +---- + +kubectl apply -f k8s-nacos.yaml +kubectl delete -f k8s-nacos.yaml + +--- + +kubectl apply -f k8s-configmap.yaml +kubectl delete -f k8s-configmap.yaml + +kubectl apply -f k8s-ingress.yaml +kubectl delete -f k8s-ingress.yaml + +kubectl apply -f k8s-frontend.yaml +kubectl delete -f k8s-frontend.yaml + +kubectl apply -f k8s-backend.yaml +kubectl delete -f k8s-backend.yaml + + +kubectl -n kube-system get pods -o jsonpath='{.items[*].metadata.name}' \ No newline at end of file diff --git a/998-常用脚本/部署脚本/安装ts2mp4.sh b/998-常用脚本/部署脚本/安装ts2mp4.sh index 7964550..7b83bd2 100644 --- a/998-常用脚本/部署脚本/安装ts2mp4.sh +++ b/998-常用脚本/部署脚本/安装ts2mp4.sh @@ -1,6 +1,6 @@ #!/bin/bash -minio_inner_ip_host=10.129.80.223:9000 +minio_inner_ip_host=134.80.124.15:9000 download_ts2mp4_file(){ echo "" diff --git a/998-常用脚本/部署脚本/编辑calico状态.sh b/998-常用脚本/部署脚本/编辑calico状态.sh index 6e56aa8..0a9a0dd 100644 --- a/998-常用脚本/部署脚本/编辑calico状态.sh +++ b/998-常用脚本/部署脚本/编辑calico状态.sh @@ -8,7 +8,7 @@ env: value: "eth0" # 更加保险 -kubectl set env daemonset/calico-node -n kube-system IP_AUTODETECTION_METHOD=interface=enp4s3 +kubectl set env daemonset/calico-node -n kube-system IP_AUTODETECTION_METHOD=interface=eth0 # 删除所有的calico pod diff --git a/999-数据库脚本/5.7.0.zip b/999-数据库脚本/5.7.0.zip deleted file mode 100644 index c238e6e..0000000 Binary files a/999-数据库脚本/5.7.0.zip and /dev/null differ diff --git a/999-数据库脚本/6.0.0/0.all_tables_demo_6.0.0.sql b/999-数据库脚本/6.0.0/0.all_tables_demo_6.0.0.sql index 36d2326..f7e9452 100644 --- a/999-数据库脚本/6.0.0/0.all_tables_demo_6.0.0.sql +++ b/999-数据库脚本/6.0.0/0.all_tables_demo_6.0.0.sql @@ -19,7 +19,7 @@ -- Position to start replication or point-in-time recovery from -- --- CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000356', MASTER_LOG_POS=34630915; +-- CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.001027', MASTER_LOG_POS=652013571; -- -- Current Database: `admin_data` @@ -46,7 +46,7 @@ CREATE TABLE `point_info` ( `airspace_id` int DEFAULT NULL COMMENT '关联的空域id', `deleted` int(1) unsigned zerofill DEFAULT '0' COMMENT '0保留,1假删除', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=536 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='空域点信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=601 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='空域点信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -72,7 +72,7 @@ CREATE TABLE `sys_area_config` ( PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `code` (`code`) USING BTREE, KEY `parent_code` (`parent_code`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=168923 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=172954 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -91,7 +91,7 @@ CREATE TABLE `sys_area_pinyin` ( `update_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `name` (`name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=8146 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=8153 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -162,7 +162,7 @@ CREATE TABLE `sys_dictionary` ( KEY `index_dic_is_del` (`is_del`) USING BTREE COMMENT '是否删除索引', KEY `index_dic_pid` (`pid`) USING BTREE COMMENT '父级id的索引', KEY `type_code` (`type_code`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1295671473670717441 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='数据字典详细属性表'; +) ENGINE=InnoDB AUTO_INCREMENT=1306568125482795009 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='数据字典详细属性表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -186,7 +186,7 @@ CREATE TABLE `sys_dictionary_attr` ( PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uk_dic_item` (`type_code`,`code`,`lang`) USING BTREE COMMENT '语言项唯一标识', KEY `type_code` (`type_code`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=3325 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='字典各语言的属性'; +) ENGINE=InnoDB AUTO_INCREMENT=3451 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='字典各语言的属性'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -208,7 +208,7 @@ CREATE TABLE `sys_dictionary_type` ( PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uk_dic_code` (`code`) USING BTREE COMMENT 'code的唯一编码', KEY `index_dic_is_del` (`is_del`) USING BTREE COMMENT '是否删除索引' -) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='数据字典详细属性表'; +) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='数据字典详细属性表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -253,7 +253,7 @@ CREATE TABLE `uav_dev_action_match` ( `upd_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`) USING BTREE, KEY `uav_dev_action_match_dev_type` (`dev_type`,`dev_model`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='设备动作匹配表'; +) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='设备动作匹配表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -276,7 +276,7 @@ CREATE TABLE `uav_dev_type_match` ( `upd_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`) USING BTREE, KEY `INDEX_uav_dev_type_match_uav_model` (`uav_model`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='设备型号匹配表'; +) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='设备型号匹配表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -521,7 +521,7 @@ CREATE TABLE `zyd_area_limit` ( `is_delete` tinyint(1) DEFAULT '0' COMMENT '删除标志,-1为删除,0为未删除', `radius` int DEFAULT NULL COMMENT '空域半径', PRIMARY KEY (`airs_no`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=841 DEFAULT CHARSET=utf8mb3 ROW_FORMAT=DYNAMIC COMMENT='空域限制表'; +) ENGINE=InnoDB AUTO_INCREMENT=880 DEFAULT CHARSET=utf8mb3 ROW_FORMAT=DYNAMIC COMMENT='空域限制表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -584,7 +584,7 @@ CREATE TABLE `sys_gateway_request_log` ( KEY `idx_create_at` (`create_at`), KEY `idx_request_time` (`request_time`) USING BTREE, KEY `idx_request_log_path` (`path`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=138161015 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='请求日志'; +) ENGINE=InnoDB AUTO_INCREMENT=146861046 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='请求日志'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1038,7 +1038,7 @@ CREATE TABLE `xxl_job_info` ( `trigger_last_time` bigint NOT NULL DEFAULT '0' COMMENT '上次调度时间', `trigger_next_time` bigint NOT NULL DEFAULT '0' COMMENT '下次调度时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务主表'; +) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务主表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1082,7 +1082,7 @@ CREATE TABLE `xxl_job_log` ( KEY `idx_handle_code` (`handle_code`) USING BTREE, KEY `idx_job_log_job_id` (`job_id`), KEY `idx_job_log_job_group` (`job_group`) -) ENGINE=InnoDB AUTO_INCREMENT=147216809 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务日志表'; +) ENGINE=InnoDB AUTO_INCREMENT=154742273 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务日志表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1101,7 +1101,7 @@ CREATE TABLE `xxl_job_log_report` ( `update_time` datetime DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uniq_trigger_day` (`trigger_day`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1397 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务日志报告表'; +) ENGINE=InnoDB AUTO_INCREMENT=1428 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务日志报告表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1138,7 +1138,7 @@ CREATE TABLE `xxl_job_registry` ( `update_time` datetime DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `idx_g_k_v` (`registry_group`,`registry_key`,`registry_value`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=6334 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务注册表'; +) ENGINE=InnoDB AUTO_INCREMENT=7664 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='任务注册表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1301,7 +1301,7 @@ CREATE TABLE `tower_battery` ( `last_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '最后活动时间', `check_qualif` tinyint DEFAULT NULL COMMENT '检查结果是否合格 0 是 1 否', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=427 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-电池'; +) ENGINE=InnoDB AUTO_INCREMENT=431 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-电池'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1329,7 +1329,7 @@ CREATE TABLE `tower_corr` ( `last_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '最后活动时间', `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '整改内容', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=430 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='整改表'; +) ENGINE=InnoDB AUTO_INCREMENT=431 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='整改表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1380,7 +1380,7 @@ CREATE TABLE `tower_elec` ( `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', `last_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '最后活动时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=236 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-外市电'; +) ENGINE=InnoDB AUTO_INCREMENT=259 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-外市电'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1424,7 +1424,7 @@ CREATE TABLE `tower_hvac` ( `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', `last_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '最后活动时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-空调'; +) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-空调'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1531,7 +1531,7 @@ CREATE TABLE `tower_order` ( `danger` varchar(255) DEFAULT NULL COMMENT '隐患内容描述', `repair_plan` varchar(255) DEFAULT NULL COMMENT '整治方案', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2300000000006507 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2300000000006987 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1576,7 +1576,7 @@ CREATE TABLE `tower_power` ( `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', `last_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '最后活动时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=148 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-开关电源'; +) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-开关电源'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1652,7 +1652,7 @@ CREATE TABLE `tower_repair` ( `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', `last_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '最后活动时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=778 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-维修检查'; +) ENGINE=InnoDB AUTO_INCREMENT=1058 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-维修检查'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1697,7 +1697,7 @@ CREATE TABLE `tower_room` ( `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', `last_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '最后活动时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-塔房'; +) ENGINE=InnoDB AUTO_INCREMENT=261 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='质检表-塔房'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1723,7 +1723,7 @@ CREATE TABLE `tower_station_info` ( `company_id` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '所属公司/机构', `is_delete` int NOT NULL DEFAULT '0' COMMENT '删除标志,1为删除,0为未删除', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2300000000303868 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2300000000303871 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1815,7 +1815,7 @@ CREATE TABLE `live_dvr_commit` ( `stream` varchar(48) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'none', `dvr` int NOT NULL COMMENT 'none', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=60906 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='none'; +) ENGINE=InnoDB AUTO_INCREMENT=61900 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='none'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1931,7 +1931,7 @@ CREATE TABLE `live_record` ( PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uniq_record` (`hub`,`stream`,`time_begin`) USING BTREE, KEY `idx_stream` (`hub`,`stream`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=197554 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='live_record'; +) ENGINE=InnoDB AUTO_INCREMENT=239181 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='live_record'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1954,7 +1954,7 @@ CREATE TABLE `live_segment` ( `status` tinyint NOT NULL COMMENT '0-ok; 1-trash; 2-deleted', PRIMARY KEY (`id`), UNIQUE KEY `uniq_record` (`hub`,`stream`,`time_begin`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=14535405 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='live_segment'; +) ENGINE=InnoDB AUTO_INCREMENT=17088477 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='live_segment'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1992,7 +1992,7 @@ CREATE TABLE `live_stream_token` ( `expire` datetime NOT NULL DEFAULT '2099-12-31 23:59:59' COMMENT 'none', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uniq_stream` (`hub`,`stream`,`token_type`,`token`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=63258 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='none'; +) ENGINE=InnoDB AUTO_INCREMENT=65076 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='none'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -2028,7 +2028,7 @@ CREATE TABLE `live_sync_task` ( `version` int NOT NULL DEFAULT '1' COMMENT 'version', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uniq_steam` (`hub`,`stream`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1671 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='sync task'; +) ENGINE=InnoDB AUTO_INCREMENT=1849 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='sync task'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -2134,7 +2134,7 @@ CREATE TABLE `mw_item_agg` ( `object_size` bigint DEFAULT NULL COMMENT '文件统计大小', PRIMARY KEY (`id`), KEY `idx_company_id` (`company_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1161 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='文件大小统计表'; +) ENGINE=InnoDB AUTO_INCREMENT=1253 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='文件大小统计表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -2300,6 +2300,7 @@ CREATE TABLE `mw_proj_item_unconfirmed` ( `object_path` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '对象路径 日期/项目/类型/对象ID.对象类型 例如(20201104/234234/234/2234.jpg', `object_md5` varchar(255) DEFAULT NULL COMMENT '文件md5', `def_time` datetime NOT NULL COMMENT '创建日期', + `play_duration` int DEFAULT NULL COMMENT '音视频时长', PRIMARY KEY (`proj_obj_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='未确认文件表'; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2465,7 +2466,7 @@ CREATE TABLE `config_info` ( `encrypted_data_key` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL COMMENT '加密数据', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uk_configinfo_datagrouptenant` (`data_id`,`group_id`,`tenant_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=3804 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='config_info'; +) ENGINE=InnoDB AUTO_INCREMENT=3923 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='config_info'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -2610,7 +2611,7 @@ CREATE TABLE `his_config_info` ( KEY `idx_gmt_create` (`gmt_create`) USING BTREE, KEY `idx_gmt_modified` (`gmt_modified`) USING BTREE, KEY `idx_did` (`data_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=4159 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='多租户改造'; +) ENGINE=InnoDB AUTO_INCREMENT=4278 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='多租户改造'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -2740,6 +2741,44 @@ CREATE TABLE `kpi_video_ds` ( -- Dumping routines for database 'cmlc_live' -- +-- +-- Current Database: `db_monitor` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `db_monitor` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin */ /*!80016 DEFAULT ENCRYPTION='N' */; + +USE `db_monitor`; + +-- +-- Table structure for table `process_info` +-- + +DROP TABLE IF EXISTS `process_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `process_info` ( + `batch_id` bigint DEFAULT NULL, + `record_time` datetime DEFAULT NULL, + `process_id` int DEFAULT NULL, + `user` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `host` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `db` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `time` int DEFAULT NULL, + `state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `info` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, + KEY `batch_id` (`batch_id`), + KEY `record_time` (`record_time`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping events for database 'db_monitor' +-- + +-- +-- Dumping routines for database 'db_monitor' +-- + -- -- Current Database: `emqx` -- @@ -2765,6 +2804,8 @@ CREATE TABLE `mqtt_acl` ( `retain` tinyint(1) DEFAULT NULL, `is_del` bit(1) DEFAULT b'0' COMMENT '是否删除', `is_data` bit(1) DEFAULT b'0' COMMENT '是否是数据(探测目标)', + `provider_code` varchar(100) DEFAULT NULL COMMENT '提供商编号', + `device_type` int DEFAULT NULL COMMENT '设备类型', PRIMARY KEY (`id`), KEY `username_idx` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=168 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; @@ -2787,7 +2828,7 @@ CREATE TABLE `mqtt_user` ( `is_del` bit(1) DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`), UNIQUE KEY `mqtt_username` (`username`) -) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=159 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4027,7 +4068,7 @@ CREATE TABLE `zyd_civil_military_area_plan` ( PRIMARY KEY (`id`) USING BTREE, KEY `idx_planarea_starttime` (`start_time`), KEY `idx_planarea_endtime` (`end_time`) -) ENGINE=InnoDB AUTO_INCREMENT=367 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='军民融合区域规划表'; +) ENGINE=InnoDB AUTO_INCREMENT=445 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='军民融合区域规划表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4206,7 +4247,7 @@ CREATE TABLE `efence_airspace` ( `clockwise` tinyint DEFAULT NULL COMMENT '多变形范围顺序 0顺时针 1逆时针', `tp_id` varchar(100) DEFAULT NULL COMMENT '事务处理ID', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=925 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='电子围栏表'; +) ENGINE=InnoDB AUTO_INCREMENT=980 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='电子围栏表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4294,7 +4335,7 @@ CREATE TABLE `point_info` ( `airspace_id` int DEFAULT NULL COMMENT '关联的空域id', `deleted` int(1) unsigned zerofill DEFAULT '0' COMMENT '0保留,1假删除', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1122 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='空域点信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=1213 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='空域点信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4391,7 +4432,7 @@ CREATE TABLE `zyd_airspace` ( `area_code` varchar(255) NOT NULL COMMENT '任务地点编码', `radius` int DEFAULT NULL COMMENT '空域半径', PRIMARY KEY (`airs_no`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=991 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='空域申请表'; +) ENGINE=InnoDB AUTO_INCREMENT=1035 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='空域申请表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4520,7 +4561,7 @@ CREATE TABLE `zyd_uav` ( `shape` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '无人机形态', PRIMARY KEY (`id`), KEY `idx_air_no` (`airspace_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1815 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='绑定无人机表'; +) ENGINE=InnoDB AUTO_INCREMENT=1906 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='绑定无人机表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4812,7 +4853,7 @@ CREATE TABLE `device_relate_address` ( PRIMARY KEY (`id`), KEY `idx_device_code` (`device_code`), KEY `idx_start_time` (`start_time`) -) ENGINE=InnoDB AUTO_INCREMENT=21583 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='设备关联位置表'; +) ENGINE=InnoDB AUTO_INCREMENT=22524 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='设备关联位置表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4840,7 +4881,7 @@ CREATE TABLE `device_relate_info` ( KEY `idx_device_code` (`device_code`), KEY `idx_start_time` (`start_time`), KEY `idx_uav_code` (`uav_code`) -) ENGINE=InnoDB AUTO_INCREMENT=8289 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='设备号关联无人机信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=8771 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='设备号关联无人机信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4906,7 +4947,7 @@ CREATE TABLE `flow_stream_config` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uniq_mission_code` (`mission_code`,`plugin_args`) -) ENGINE=InnoDB AUTO_INCREMENT=5109 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='流程视频流关联表'; +) ENGINE=InnoDB AUTO_INCREMENT=5312 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='流程视频流关联表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5029,7 +5070,7 @@ CREATE TABLE `live_plugin_task` ( UNIQUE KEY `live_plugin_task_constraint` (`plugin_name`,`plugin_task_id`), KEY `live_plugin_task_index_1` (`plugin_task_id`), KEY `idx_flow_instance_id` (`flow_instance_id`) -) ENGINE=InnoDB AUTO_INCREMENT=6106 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='对插件模块调用的任务'; +) ENGINE=InnoDB AUTO_INCREMENT=6353 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='对插件模块调用的任务'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5077,7 +5118,7 @@ CREATE TABLE `live_workflow_plugin_mapping` ( UNIQUE KEY `live_workflow_plugin_mapping_constraint_1` (`flow_instance_id`,`plugin_name`,`plugin_task_id`), KEY `live_workflow_plugin_mapping_index_1` (`flow_instance_id`,`plugin_name`,`plugin_task_id`), KEY `idx_plugin_task_idx` (`plugin_task_id`) -) ENGINE=InnoDB AUTO_INCREMENT=24332 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='工作流任务与AI模块的绑定关系'; +) ENGINE=InnoDB AUTO_INCREMENT=25313 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='工作流任务与AI模块的绑定关系'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5110,7 +5151,7 @@ CREATE TABLE `live_workflow_task` ( UNIQUE KEY `live_workflow_task_constraint_2` (`chain_name`,`mission_code`,`device_code`), KEY `live_workflow_task_index_1` (`flow_instance_id`), KEY `live_workflow_task_index_2` (`status`) -) ENGINE=InnoDB AUTO_INCREMENT=9154 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='工作流调度的任务'; +) ENGINE=InnoDB AUTO_INCREMENT=9524 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='工作流调度的任务'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5146,7 +5187,7 @@ CREATE TABLE `stream_config` ( UNIQUE KEY `uniq_device_code` (`device_code`), KEY `idx_stream_id` (`stream_id`), KEY `idx_tenant_deviceName` (`tenant_id`,`device_name`) -) ENGINE=InnoDB AUTO_INCREMENT=13127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='设备流配置表'; +) ENGINE=InnoDB AUTO_INCREMENT=14030 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='设备流配置表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5222,7 +5263,7 @@ CREATE TABLE `video_merge_task` ( PRIMARY KEY (`id`), UNIQUE KEY `task_code` (`task_code`), KEY `idx_video_start_time` (`video_start_time`) -) ENGINE=InnoDB AUTO_INCREMENT=52027 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=55141 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5246,7 +5287,7 @@ CREATE TABLE `video_merge_task_result` ( PRIMARY KEY (`id`), KEY `idx_task_file` (`task_code`,`file_index`), KEY `idx_file_id` (`file_id`) -) ENGINE=InnoDB AUTO_INCREMENT=31796 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='视频文件明细表'; +) ENGINE=InnoDB AUTO_INCREMENT=33784 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='视频文件明细表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5284,7 +5325,7 @@ CREATE TABLE `video_part` ( KEY `idx_start_time` (`start_time`), KEY `idx_device_code` (`device_code`), KEY `idx_tenant_id` (`tenant_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=36551874 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='视频文件分片配置'; +) ENGINE=InnoDB AUTO_INCREMENT=39112440 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='视频文件分片配置'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5309,7 +5350,7 @@ CREATE TABLE `video_recycle` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uniq_task_code` (`task_code`) -) ENGINE=InnoDB AUTO_INCREMENT=3607 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='视频分片回收任务表'; +) ENGINE=InnoDB AUTO_INCREMENT=3984 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='视频分片回收任务表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5339,7 +5380,7 @@ CREATE TABLE `video_recycle_item` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), KEY `idx_task_code` (`task_code`) -) ENGINE=InnoDB AUTO_INCREMENT=208190 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='视频分片回收明细表'; +) ENGINE=InnoDB AUTO_INCREMENT=243590 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='视频分片回收明细表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5371,7 +5412,7 @@ CREATE TABLE `video_segment` ( KEY `idx_uav_code` (`uav_code`), KEY `idx_end_time` (`end_time`), KEY `idx_start_time` (`start_time`) -) ENGINE=InnoDB AUTO_INCREMENT=47976 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='视频分段表'; +) ENGINE=InnoDB AUTO_INCREMENT=52958 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='视频分段表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5522,7 +5563,7 @@ CREATE TABLE `result_file` ( `is_delete` int NOT NULL DEFAULT '0' COMMENT '是否删除(0:保留;1:删除)', `obj_size` bigint DEFAULT NULL COMMENT '文件大小', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=274 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='成果管理文件信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=277 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='成果管理文件信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5558,7 +5599,7 @@ CREATE TABLE `result_management` ( `mw_path` varchar(255) DEFAULT NULL COMMENT '素材仓库路径', `error_message` varchar(100) DEFAULT NULL COMMENT '错误信息', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=280 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='成果管理列表'; +) ENGINE=InnoDB AUTO_INCREMENT=283 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='成果管理列表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6091,7 +6132,7 @@ CREATE TABLE `uav_plane_position` ( PRIMARY KEY (`id`), KEY `idx_province` (`province`), KEY `idx_city` (`city`) -) ENGINE=InnoDB AUTO_INCREMENT=81791 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='无人机位置信息'; +) ENGINE=InnoDB AUTO_INCREMENT=95378 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='无人机位置信息'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6472,6 +6513,973 @@ CREATE TABLE `open_model_properties` ( -- Dumping routines for database 'uav_developer' -- +-- +-- Current Database: `uav_dkzx` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `uav_dkzx` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin */ /*!80016 DEFAULT ENCRYPTION='N' */; + +USE `uav_dkzx`; + +-- +-- Table structure for table `company` +-- + +DROP TABLE IF EXISTS `company`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `company` ( + `company_id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键id', + `provider_name` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '企业名称', + `credit_code` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '社会信用代码', + `legal_representative` varchar(60) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '法人', + `contact_name` varchar(60) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '联系人', + `contact_phone` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '联系电话', + `business_license` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '营业执照', + `introduction` varchar(200) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '企业简介', + `wx_qr_code` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '微信二维码', + `alipay_qr_code` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '支付宝二维码', + `audit_status` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '审核状态', + `audit_time` datetime DEFAULT NULL COMMENT '审核时间', + `audit_user_id` bigint DEFAULT NULL COMMENT '审核人id(系统用户id)', + `created_customer` bigint DEFAULT NULL COMMENT '创建人id(客户id)', + `created_time` datetime DEFAULT NULL COMMENT '创建时间', + `updated_customer` bigint DEFAULT NULL COMMENT '更新人id(客户id)', + `updated_time` datetime DEFAULT NULL COMMENT '更新时间', + `attr1` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段1', + `attr2` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段2', + `attr3` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段3', + `attr4` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段4', + `attr5` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段5', + PRIMARY KEY (`company_id`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='企业信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `customer` +-- + +DROP TABLE IF EXISTS `customer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `customer` ( + `customer_id` bigint NOT NULL AUTO_INCREMENT COMMENT '客户id', + `customer_type` varchar(2) COLLATE utf8mb4_bin DEFAULT '00' COMMENT '客户类型(00-普通客户 01-企业客户)', + `phone_number` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '手机号码', + `password` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '密码', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '帐号状态(0正常1停用)', + `del_flag` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '删除标志(0代表存在2代表删除)', + `login_ip` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '最后登录IP', + `login_date` datetime DEFAULT NULL COMMENT '最后登录时间', + `wx_openid` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '微信openid', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `nick_name` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '昵称', + `avatar` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '头像', + `attr1` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段1', + `attr2` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段2', + `attr3` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段3', + `attr4` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段4', + `attr5` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段5', + `create_user` bigint DEFAULT NULL COMMENT '后台创建人id', + `sys_create_time` datetime DEFAULT NULL COMMENT '后台创建时间', + `update_user` bigint DEFAULT NULL COMMENT '后台更新人id', + `sys_update_time` datetime DEFAULT NULL COMMENT '后台更新时间', + PRIMARY KEY (`customer_id`) +) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='客户信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `customer_company` +-- + +DROP TABLE IF EXISTS `customer_company`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `customer_company` ( + `customer_id` bigint NOT NULL COMMENT '客户id', + `company_id` bigint NOT NULL COMMENT '企业id', + `del_flag` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '删除标志(0代表存在2代表删除)', + `created_customer` bigint DEFAULT NULL COMMENT '创建人id(客户id)', + `created_time` datetime DEFAULT NULL COMMENT '创建时间', + `updated_customer` bigint DEFAULT NULL COMMENT '更新人id(客户id)', + `updated_time` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`customer_id`,`company_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='客户企业关系表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `customer_logininfor` +-- + +DROP TABLE IF EXISTS `customer_logininfor`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `customer_logininfor` ( + `info_id` bigint NOT NULL AUTO_INCREMENT COMMENT '访问id', + `customer_id` bigint DEFAULT NULL COMMENT '客户id', + `phone_number` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '手机号', + `ipaddr` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '登录ip地址', + `login_location` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '登录地点', + `browser` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '浏览器类型', + `os` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '操作系统', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '登录状态(0成功1失败)', + `msg` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '提示消息', + `login_time` datetime DEFAULT NULL COMMENT '访问时间', + `attr1` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段1', + `attr5` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段5', + `attr4` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段4', + `attr3` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段3', + `attr2` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段2', + PRIMARY KEY (`info_id`) +) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='客户访问记录'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `feedback` +-- + +DROP TABLE IF EXISTS `feedback`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `feedback` ( + `feedback_id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键id', + `customer_id` bigint DEFAULT NULL COMMENT '客户id', + `score` tinyint DEFAULT NULL COMMENT '评分', + `content` varchar(1000) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '反馈内容', + `created_customer` bigint DEFAULT NULL COMMENT '创建人', + `created_time` datetime DEFAULT NULL COMMENT '创建时间', + `updated_customer` bigint DEFAULT NULL COMMENT '更新人', + `updated_time` datetime DEFAULT NULL COMMENT '更新时间', + `reply_by` bigint DEFAULT NULL COMMENT '回复人ID', + `reply_time` datetime DEFAULT NULL COMMENT '回复时间', + `reply_content` varchar(1000) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '回复内容', + `attr1` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段1', + `attr2` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段2', + `attr3` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段3', + `attr4` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段4', + `attr5` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段5', + PRIMARY KEY (`feedback_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='反馈信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `gen_table` +-- + +DROP TABLE IF EXISTS `gen_table`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gen_table` ( + `table_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', + `table_name` varchar(200) COLLATE utf8mb4_bin DEFAULT '' COMMENT '表名称', + `table_comment` varchar(500) COLLATE utf8mb4_bin DEFAULT '' COMMENT '表描述', + `sub_table_name` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '关联子表的表名', + `sub_table_fk_name` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '子表关联的外键名', + `class_name` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '实体类名称', + `tpl_category` varchar(200) COLLATE utf8mb4_bin DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)', + `tpl_web_type` varchar(30) COLLATE utf8mb4_bin DEFAULT '' COMMENT '前端模板类型(element-ui模版 element-plus模版)', + `package_name` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '生成包路径', + `module_name` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '生成模块名', + `business_name` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '生成业务名', + `function_name` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '生成功能名', + `function_author` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '生成功能作者', + `gen_type` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)', + `gen_path` varchar(200) COLLATE utf8mb4_bin DEFAULT '/' COMMENT '生成路径(不填默认项目路径)', + `options` varchar(1000) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '其它生成选项', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`table_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='代码生成业务表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `gen_table_column` +-- + +DROP TABLE IF EXISTS `gen_table_column`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gen_table_column` ( + `column_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', + `table_id` bigint DEFAULT NULL COMMENT '归属表编号', + `column_name` varchar(200) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '列名称', + `column_comment` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '列描述', + `column_type` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '列类型', + `java_type` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'JAVA类型', + `java_field` varchar(200) COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'JAVA字段名', + `is_pk` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否主键(1是)', + `is_increment` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否自增(1是)', + `is_required` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否必填(1是)', + `is_insert` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否为插入字段(1是)', + `is_edit` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否编辑字段(1是)', + `is_list` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否列表字段(1是)', + `is_query` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否查询字段(1是)', + `query_type` varchar(200) COLLATE utf8mb4_bin DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)', + `html_type` varchar(200) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)', + `dict_type` varchar(200) COLLATE utf8mb4_bin DEFAULT '' COMMENT '字典类型', + `sort` int DEFAULT NULL COMMENT '排序', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`column_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='代码生成业务表字段'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `minio_file` +-- + +DROP TABLE IF EXISTS `minio_file`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `minio_file` ( + `file_id` bigint NOT NULL AUTO_INCREMENT COMMENT '文件id', + `bucket` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件所属桶', + `object_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件object名称', + `file_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件名称', + `file_size` bigint DEFAULT NULL COMMENT '文件大小KB', + `file_type` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件类型', + `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', + `create_customer` bigint DEFAULT NULL COMMENT '创建客户ID', + `create_user` bigint DEFAULT NULL COMMENT '创建系统用户ID', + `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + PRIMARY KEY (`file_id`) +) ENGINE=InnoDB AUTO_INCREMENT=143 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='minio存储文件信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `orders` +-- + +DROP TABLE IF EXISTS `orders`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `orders` ( + `order_id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键id', + `order_num` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '订单编号', + `customer_id` bigint DEFAULT NULL COMMENT '客户id', + `service_id` bigint DEFAULT NULL COMMENT '服务id', + `order_status` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '订单状态', + `order_desc` varchar(600) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '订单描述', + `created_customer` bigint DEFAULT NULL COMMENT '下单人id', + `created_phone` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '下单人手机号', + `created_time` datetime DEFAULT NULL COMMENT '下单时间', + `appointment_time` datetime DEFAULT NULL COMMENT '预约时间', + `appointment_address` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '预约地址', + `contact_name` varchar(60) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '联系人', + `phone_number` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '手机号', + `rating` int DEFAULT NULL COMMENT '评分', + `review_comment` varchar(1000) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '评价内容', + `review_status` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '评价状态', + `updated_customer` bigint DEFAULT NULL COMMENT '更新人id', + `updated_time` datetime DEFAULT NULL COMMENT '更新时间', + `finish_time` datetime DEFAULT NULL COMMENT '完成时间', + `attr1` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段1', + `attr2` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段2', + `attr3` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段3', + `attr4` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段4', + `attr5` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段5', + `fight_route` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '航线', + `booking_count` varchar(10) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '预约人数', + PRIMARY KEY (`order_id`), + KEY `ix_customer_id` (`customer_id`) +) ENGINE=InnoDB AUTO_INCREMENT=139 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='订单信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_blob_triggers` +-- + +DROP TABLE IF EXISTS `qrtz_blob_triggers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_blob_triggers` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `trigger_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', + `trigger_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', + `blob_data` blob COMMENT '存放持久化Trigger对象', + PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), + CONSTRAINT `qrtz_blob_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='Blob类型的触发器表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_calendars` +-- + +DROP TABLE IF EXISTS `qrtz_calendars`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_calendars` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `calendar_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT '日历名称', + `calendar` blob NOT NULL COMMENT '存放持久化calendar对象', + PRIMARY KEY (`sched_name`,`calendar_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='日历信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_cron_triggers` +-- + +DROP TABLE IF EXISTS `qrtz_cron_triggers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_cron_triggers` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `trigger_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', + `trigger_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', + `cron_expression` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'cron表达式', + `time_zone_id` varchar(80) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '时区', + PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), + CONSTRAINT `qrtz_cron_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='Cron类型的触发器表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_fired_triggers` +-- + +DROP TABLE IF EXISTS `qrtz_fired_triggers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_fired_triggers` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `entry_id` varchar(95) COLLATE utf8mb4_bin NOT NULL COMMENT '调度器实例id', + `trigger_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', + `trigger_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', + `instance_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT '调度器实例名', + `fired_time` bigint NOT NULL COMMENT '触发的时间', + `sched_time` bigint NOT NULL COMMENT '定时器制定的时间', + `priority` int NOT NULL COMMENT '优先级', + `state` varchar(16) COLLATE utf8mb4_bin NOT NULL COMMENT '状态', + `job_name` varchar(200) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '任务名称', + `job_group` varchar(200) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '任务组名', + `is_nonconcurrent` varchar(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否并发', + `requests_recovery` varchar(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '是否接受恢复执行', + PRIMARY KEY (`sched_name`,`entry_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='已触发的触发器表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_job_details` +-- + +DROP TABLE IF EXISTS `qrtz_job_details`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_job_details` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `job_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT '任务名称', + `job_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT '任务组名', + `description` varchar(250) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '相关介绍', + `job_class_name` varchar(250) COLLATE utf8mb4_bin NOT NULL COMMENT '执行任务类名称', + `is_durable` varchar(1) COLLATE utf8mb4_bin NOT NULL COMMENT '是否持久化', + `is_nonconcurrent` varchar(1) COLLATE utf8mb4_bin NOT NULL COMMENT '是否并发', + `is_update_data` varchar(1) COLLATE utf8mb4_bin NOT NULL COMMENT '是否更新数据', + `requests_recovery` varchar(1) COLLATE utf8mb4_bin NOT NULL COMMENT '是否接受恢复执行', + `job_data` blob COMMENT '存放持久化job对象', + PRIMARY KEY (`sched_name`,`job_name`,`job_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='任务详细信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_locks` +-- + +DROP TABLE IF EXISTS `qrtz_locks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_locks` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `lock_name` varchar(40) COLLATE utf8mb4_bin NOT NULL COMMENT '悲观锁名称', + PRIMARY KEY (`sched_name`,`lock_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='存储的悲观锁信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_paused_trigger_grps` +-- + +DROP TABLE IF EXISTS `qrtz_paused_trigger_grps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_paused_trigger_grps` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `trigger_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', + PRIMARY KEY (`sched_name`,`trigger_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='暂停的触发器表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_scheduler_state` +-- + +DROP TABLE IF EXISTS `qrtz_scheduler_state`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_scheduler_state` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `instance_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT '实例名称', + `last_checkin_time` bigint NOT NULL COMMENT '上次检查时间', + `checkin_interval` bigint NOT NULL COMMENT '检查间隔时间', + PRIMARY KEY (`sched_name`,`instance_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='调度器状态表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_simple_triggers` +-- + +DROP TABLE IF EXISTS `qrtz_simple_triggers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_simple_triggers` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `trigger_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', + `trigger_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', + `repeat_count` bigint NOT NULL COMMENT '重复的次数统计', + `repeat_interval` bigint NOT NULL COMMENT '重复的间隔时间', + `times_triggered` bigint NOT NULL COMMENT '已经触发的次数', + PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), + CONSTRAINT `qrtz_simple_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='简单触发器的信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_simprop_triggers` +-- + +DROP TABLE IF EXISTS `qrtz_simprop_triggers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_simprop_triggers` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `trigger_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', + `trigger_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', + `str_prop_1` varchar(512) COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'String类型的trigger的第一个参数', + `str_prop_2` varchar(512) COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'String类型的trigger的第二个参数', + `str_prop_3` varchar(512) COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'String类型的trigger的第三个参数', + `int_prop_1` int DEFAULT NULL COMMENT 'int类型的trigger的第一个参数', + `int_prop_2` int DEFAULT NULL COMMENT 'int类型的trigger的第二个参数', + `long_prop_1` bigint DEFAULT NULL COMMENT 'long类型的trigger的第一个参数', + `long_prop_2` bigint DEFAULT NULL COMMENT 'long类型的trigger的第二个参数', + `dec_prop_1` decimal(13,4) DEFAULT NULL COMMENT 'decimal类型的trigger的第一个参数', + `dec_prop_2` decimal(13,4) DEFAULT NULL COMMENT 'decimal类型的trigger的第二个参数', + `bool_prop_1` varchar(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Boolean类型的trigger的第一个参数', + `bool_prop_2` varchar(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Boolean类型的trigger的第二个参数', + PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), + CONSTRAINT `qrtz_simprop_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='同步机制的行锁表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `qrtz_triggers` +-- + +DROP TABLE IF EXISTS `qrtz_triggers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `qrtz_triggers` ( + `sched_name` varchar(120) COLLATE utf8mb4_bin NOT NULL COMMENT '调度名称', + `trigger_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT '触发器的名字', + `trigger_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT '触发器所属组的名字', + `job_name` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_job_details表job_name的外键', + `job_group` varchar(200) COLLATE utf8mb4_bin NOT NULL COMMENT 'qrtz_job_details表job_group的外键', + `description` varchar(250) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '相关介绍', + `next_fire_time` bigint DEFAULT NULL COMMENT '上一次触发时间(毫秒)', + `prev_fire_time` bigint DEFAULT NULL COMMENT '下一次触发时间(默认为-1表示不触发)', + `priority` int DEFAULT NULL COMMENT '优先级', + `trigger_state` varchar(16) COLLATE utf8mb4_bin NOT NULL COMMENT '触发器状态', + `trigger_type` varchar(8) COLLATE utf8mb4_bin NOT NULL COMMENT '触发器的类型', + `start_time` bigint NOT NULL COMMENT '开始时间', + `end_time` bigint DEFAULT NULL COMMENT '结束时间', + `calendar_name` varchar(200) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '日程表名称', + `misfire_instr` smallint DEFAULT NULL COMMENT '补偿执行的策略', + `job_data` blob COMMENT '存放持久化job对象', + PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), + KEY `sched_name` (`sched_name`,`job_name`,`job_group`), + CONSTRAINT `qrtz_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `job_name`, `job_group`) REFERENCES `qrtz_job_details` (`sched_name`, `job_name`, `job_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='触发器详细信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `service_image` +-- + +DROP TABLE IF EXISTS `service_image`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `service_image` ( + `image_id` int NOT NULL AUTO_INCREMENT COMMENT '服务图片id', + `service_id` bigint DEFAULT NULL COMMENT '服务id', + `image_path` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '服务图片地址', + `image_sort` int DEFAULT NULL COMMENT '图片序号', + `created_customer` bigint DEFAULT NULL COMMENT '创建者id(客户id)', + `created_time` datetime DEFAULT NULL COMMENT '创建时间', + `updated_customer` bigint DEFAULT NULL COMMENT '更新者id(客户id)', + `updated_time` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`image_id`), + KEY `ix_service_id` (`service_id`) +) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='服务图片'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `service_type` +-- + +DROP TABLE IF EXISTS `service_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `service_type` ( + `type_id` int NOT NULL AUTO_INCREMENT COMMENT '服务类型id', + `type_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '服务类型描述', + `image_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '图片地址', + `type_title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '服务类型标题', + `type_subtitle` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '服务类型副标题', + `isHot` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '是否热门 (0是1否)', + `created_time` datetime DEFAULT NULL COMMENT '创建时间', + `updated_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '更新者', + `updated_time` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`type_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='服务类型'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `services` +-- + +DROP TABLE IF EXISTS `services`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `services` ( + `service_id` bigint NOT NULL AUTO_INCREMENT COMMENT '服务id', + `customer_id` bigint DEFAULT NULL COMMENT '商家用户id', + `service_name` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '服务名称', + `service_subtitle` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '服务副标题', + `service_type_id` int DEFAULT NULL COMMENT '服务类型', + `service_address` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '服务位置', + `description` varchar(600) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '服务描述', + `price` decimal(18,2) DEFAULT NULL COMMENT '服务价格', + `service_status` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '服务状态', + `need_service_status` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '需求服务状态', + `apply_time` datetime DEFAULT NULL COMMENT '申请时间', + `audit_status` char(1) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '审核状态', + `audit_time` datetime DEFAULT NULL COMMENT '审核时间', + `audit_user_id` bigint DEFAULT NULL COMMENT '审核人id(系统用户id)', + `created_customer` bigint DEFAULT NULL COMMENT '创建人', + `created_time` datetime DEFAULT NULL COMMENT '创建时间', + `updated_customer` bigint DEFAULT NULL COMMENT '更新人', + `updated_time` datetime DEFAULT NULL COMMENT '更新时间', + `attr1` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段1', + `attr2` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段2', + `attr3` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段3', + `attr4` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段4', + `attr5` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展字段5', + `wx_qr_code` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '微信二维码', + `alipay_qr_code` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '支付宝二维码', + PRIMARY KEY (`service_id`) +) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='服务信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_config` +-- + +DROP TABLE IF EXISTS `sys_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_config` ( + `config_id` int NOT NULL AUTO_INCREMENT COMMENT '参数主键', + `config_name` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '参数名称', + `config_key` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '参数键名', + `config_value` varchar(500) COLLATE utf8mb4_bin DEFAULT '' COMMENT '参数键值', + `config_type` char(1) COLLATE utf8mb4_bin DEFAULT 'N' COMMENT '系统内置(Y是 N否)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`config_id`) +) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='参数配置表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_dept` +-- + +DROP TABLE IF EXISTS `sys_dept`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_dept` ( + `dept_id` bigint NOT NULL AUTO_INCREMENT COMMENT '部门id', + `parent_id` bigint DEFAULT '0' COMMENT '父部门id', + `ancestors` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '祖级列表', + `dept_name` varchar(30) COLLATE utf8mb4_bin DEFAULT '' COMMENT '部门名称', + `order_num` int DEFAULT '0' COMMENT '显示顺序', + `leader` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '负责人', + `phone` varchar(11) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '联系电话', + `email` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '邮箱', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '部门状态(0正常 1停用)', + `del_flag` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`dept_id`) +) ENGINE=InnoDB AUTO_INCREMENT=200 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='部门表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_dict_data` +-- + +DROP TABLE IF EXISTS `sys_dict_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_dict_data` ( + `dict_code` bigint NOT NULL AUTO_INCREMENT COMMENT '字典编码', + `dict_sort` int DEFAULT '0' COMMENT '字典排序', + `dict_label` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '字典标签', + `dict_value` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '字典键值', + `dict_type` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '字典类型', + `css_class` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '样式属性(其他样式扩展)', + `list_class` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '表格回显样式', + `is_default` char(1) COLLATE utf8mb4_bin DEFAULT 'N' COMMENT '是否默认(Y是 N否)', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '状态(0正常 1停用)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`dict_code`) +) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='字典数据表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_dict_type` +-- + +DROP TABLE IF EXISTS `sys_dict_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_dict_type` ( + `dict_id` bigint NOT NULL AUTO_INCREMENT COMMENT '字典主键', + `dict_name` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '字典名称', + `dict_type` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '字典类型', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '状态(0正常 1停用)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`dict_id`), + UNIQUE KEY `dict_type` (`dict_type`) +) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='字典类型表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_job` +-- + +DROP TABLE IF EXISTS `sys_job`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_job` ( + `job_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务ID', + `job_name` varchar(64) COLLATE utf8mb4_bin NOT NULL DEFAULT '' COMMENT '任务名称', + `job_group` varchar(64) COLLATE utf8mb4_bin NOT NULL DEFAULT 'DEFAULT' COMMENT '任务组名', + `invoke_target` varchar(500) COLLATE utf8mb4_bin NOT NULL COMMENT '调用目标字符串', + `cron_expression` varchar(255) COLLATE utf8mb4_bin DEFAULT '' COMMENT 'cron执行表达式', + `misfire_policy` varchar(20) COLLATE utf8mb4_bin DEFAULT '3' COMMENT '计划执行错误策略(1立即执行 2执行一次 3放弃执行)', + `concurrent` char(1) COLLATE utf8mb4_bin DEFAULT '1' COMMENT '是否并发执行(0允许 1禁止)', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '状态(0正常 1暂停)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT '' COMMENT '备注信息', + PRIMARY KEY (`job_id`,`job_name`,`job_group`) +) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='定时任务调度表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_job_log` +-- + +DROP TABLE IF EXISTS `sys_job_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_job_log` ( + `job_log_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务日志ID', + `job_name` varchar(64) COLLATE utf8mb4_bin NOT NULL COMMENT '任务名称', + `job_group` varchar(64) COLLATE utf8mb4_bin NOT NULL COMMENT '任务组名', + `invoke_target` varchar(500) COLLATE utf8mb4_bin NOT NULL COMMENT '调用目标字符串', + `job_message` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '日志信息', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '执行状态(0正常 1失败)', + `exception_info` varchar(2000) COLLATE utf8mb4_bin DEFAULT '' COMMENT '异常信息', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`job_log_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='定时任务调度日志表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_logininfor` +-- + +DROP TABLE IF EXISTS `sys_logininfor`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_logininfor` ( + `info_id` bigint NOT NULL AUTO_INCREMENT COMMENT '访问ID', + `user_name` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '用户账号', + `ipaddr` varchar(128) COLLATE utf8mb4_bin DEFAULT '' COMMENT '登录IP地址', + `login_location` varchar(255) COLLATE utf8mb4_bin DEFAULT '' COMMENT '登录地点', + `browser` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '浏览器类型', + `os` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '操作系统', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '登录状态(0成功 1失败)', + `msg` varchar(255) COLLATE utf8mb4_bin DEFAULT '' COMMENT '提示消息', + `login_time` datetime DEFAULT NULL COMMENT '访问时间', + PRIMARY KEY (`info_id`), + KEY `idx_sys_logininfor_s` (`status`), + KEY `idx_sys_logininfor_lt` (`login_time`) +) ENGINE=InnoDB AUTO_INCREMENT=171 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='系统访问记录'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_menu` +-- + +DROP TABLE IF EXISTS `sys_menu`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_menu` ( + `menu_id` bigint NOT NULL AUTO_INCREMENT COMMENT '菜单ID', + `menu_name` varchar(50) COLLATE utf8mb4_bin NOT NULL COMMENT '菜单名称', + `parent_id` bigint DEFAULT '0' COMMENT '父菜单ID', + `order_num` int DEFAULT '0' COMMENT '显示顺序', + `path` varchar(200) COLLATE utf8mb4_bin DEFAULT '' COMMENT '路由地址', + `component` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '组件路径', + `query` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '路由参数', + `route_name` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '路由名称', + `is_frame` int DEFAULT '1' COMMENT '是否为外链(0是 1否)', + `is_cache` int DEFAULT '0' COMMENT '是否缓存(0缓存 1不缓存)', + `menu_type` char(1) COLLATE utf8mb4_bin DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)', + `visible` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '菜单状态(0显示 1隐藏)', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '菜单状态(0正常 1停用)', + `perms` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '权限标识', + `icon` varchar(100) COLLATE utf8mb4_bin DEFAULT '#' COMMENT '菜单图标', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT '' COMMENT '备注', + PRIMARY KEY (`menu_id`) +) ENGINE=InnoDB AUTO_INCREMENT=2000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='菜单权限表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_notice` +-- + +DROP TABLE IF EXISTS `sys_notice`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_notice` ( + `notice_id` int NOT NULL AUTO_INCREMENT COMMENT '公告ID', + `notice_title` varchar(50) COLLATE utf8mb4_bin NOT NULL COMMENT '公告标题', + `notice_type` char(1) COLLATE utf8mb4_bin NOT NULL COMMENT '公告类型(1通知 2公告)', + `notice_content` longblob COMMENT '公告内容', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '公告状态(0正常 1关闭)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`notice_id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='通知公告表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_oper_log` +-- + +DROP TABLE IF EXISTS `sys_oper_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_oper_log` ( + `oper_id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志主键', + `title` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '模块标题', + `business_type` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)', + `method` varchar(200) COLLATE utf8mb4_bin DEFAULT '' COMMENT '方法名称', + `request_method` varchar(10) COLLATE utf8mb4_bin DEFAULT '' COMMENT '请求方式', + `operator_type` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)', + `oper_name` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '操作人员', + `dept_name` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '部门名称', + `oper_url` varchar(255) COLLATE utf8mb4_bin DEFAULT '' COMMENT '请求URL', + `oper_ip` varchar(128) COLLATE utf8mb4_bin DEFAULT '' COMMENT '主机地址', + `oper_location` varchar(255) COLLATE utf8mb4_bin DEFAULT '' COMMENT '操作地点', + `oper_param` varchar(2000) COLLATE utf8mb4_bin DEFAULT '' COMMENT '请求参数', + `json_result` varchar(2000) COLLATE utf8mb4_bin DEFAULT '' COMMENT '返回参数', + `status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)', + `error_msg` varchar(2000) COLLATE utf8mb4_bin DEFAULT '' COMMENT '错误消息', + `oper_time` datetime DEFAULT NULL COMMENT '操作时间', + `cost_time` bigint DEFAULT '0' COMMENT '消耗时间', + PRIMARY KEY (`oper_id`), + KEY `idx_sys_oper_log_bt` (`business_type`), + KEY `idx_sys_oper_log_s` (`status`), + KEY `idx_sys_oper_log_ot` (`oper_time`) +) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='操作日志记录'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_post` +-- + +DROP TABLE IF EXISTS `sys_post`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_post` ( + `post_id` bigint NOT NULL AUTO_INCREMENT COMMENT '岗位ID', + `post_code` varchar(64) COLLATE utf8mb4_bin NOT NULL COMMENT '岗位编码', + `post_name` varchar(50) COLLATE utf8mb4_bin NOT NULL COMMENT '岗位名称', + `post_sort` int NOT NULL COMMENT '显示顺序', + `status` char(1) COLLATE utf8mb4_bin NOT NULL COMMENT '状态(0正常 1停用)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`post_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='岗位信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_role` +-- + +DROP TABLE IF EXISTS `sys_role`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_role` ( + `role_id` bigint NOT NULL AUTO_INCREMENT COMMENT '角色ID', + `role_name` varchar(30) COLLATE utf8mb4_bin NOT NULL COMMENT '角色名称', + `role_key` varchar(100) COLLATE utf8mb4_bin NOT NULL COMMENT '角色权限字符串', + `role_sort` int NOT NULL COMMENT '显示顺序', + `data_scope` char(1) COLLATE utf8mb4_bin DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)', + `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示', + `dept_check_strictly` tinyint(1) DEFAULT '1' COMMENT '部门树选择项是否关联显示', + `status` char(1) COLLATE utf8mb4_bin NOT NULL COMMENT '角色状态(0正常 1停用)', + `del_flag` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`role_id`) +) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='角色信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_role_dept` +-- + +DROP TABLE IF EXISTS `sys_role_dept`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_role_dept` ( + `role_id` bigint NOT NULL COMMENT '角色ID', + `dept_id` bigint NOT NULL COMMENT '部门ID', + PRIMARY KEY (`role_id`,`dept_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='角色和部门关联表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_role_menu` +-- + +DROP TABLE IF EXISTS `sys_role_menu`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_role_menu` ( + `role_id` bigint NOT NULL COMMENT '角色ID', + `menu_id` bigint NOT NULL COMMENT '菜单ID', + PRIMARY KEY (`role_id`,`menu_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='角色和菜单关联表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_user` +-- + +DROP TABLE IF EXISTS `sys_user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_user` ( + `user_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID', + `dept_id` bigint DEFAULT NULL COMMENT '部门ID', + `user_name` varchar(30) COLLATE utf8mb4_bin NOT NULL COMMENT '用户账号', + `nick_name` varchar(30) COLLATE utf8mb4_bin NOT NULL COMMENT '用户昵称', + `user_type` varchar(2) COLLATE utf8mb4_bin DEFAULT '00' COMMENT '用户类型(00系统用户)', + `email` varchar(50) COLLATE utf8mb4_bin DEFAULT '' COMMENT '用户邮箱', + `phonenumber` varchar(11) COLLATE utf8mb4_bin DEFAULT '' COMMENT '手机号码', + `sex` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)', + `avatar` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '头像地址', + `password` varchar(100) COLLATE utf8mb4_bin DEFAULT '' COMMENT '密码', + `status` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '帐号状态(0正常 1停用)', + `del_flag` char(1) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', + `login_ip` varchar(128) COLLATE utf8mb4_bin DEFAULT '' COMMENT '最后登录IP', + `login_date` datetime DEFAULT NULL COMMENT '最后登录时间', + `create_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '创建者', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `update_by` varchar(64) COLLATE utf8mb4_bin DEFAULT '' COMMENT '更新者', + `update_time` datetime DEFAULT NULL COMMENT '更新时间', + `remark` varchar(500) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`user_id`) +) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='用户信息表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_user_post` +-- + +DROP TABLE IF EXISTS `sys_user_post`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_user_post` ( + `user_id` bigint NOT NULL COMMENT '用户ID', + `post_id` bigint NOT NULL COMMENT '岗位ID', + PRIMARY KEY (`user_id`,`post_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='用户与岗位关联表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `sys_user_role` +-- + +DROP TABLE IF EXISTS `sys_user_role`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_user_role` ( + `user_id` bigint NOT NULL COMMENT '用户ID', + `role_id` bigint NOT NULL COMMENT '角色ID', + PRIMARY KEY (`user_id`,`role_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='用户和角色关联表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping events for database 'uav_dkzx' +-- + +-- +-- Dumping routines for database 'uav_dkzx' +-- + -- -- Current Database: `uav_emergency` -- @@ -6500,7 +7508,7 @@ CREATE TABLE `duty` ( `update_by` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新人', `company_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '公司id', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='排班表'; +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='排班表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6518,7 +7526,7 @@ CREATE TABLE `duty_count` ( `duty_id` int NOT NULL COMMENT '关联排班表', `company_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '公司id', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='统计表'; +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='统计表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6541,7 +7549,7 @@ CREATE TABLE `duty_detail` ( `update_by` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新人', `file_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '附件名称', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='日报表'; +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='日报表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6574,7 +7582,7 @@ CREATE TABLE `em_event` ( `update_at` datetime DEFAULT NULL COMMENT '编辑时间', `update_by` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新人', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='应急事件管理'; +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='应急事件管理'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6602,7 +7610,7 @@ CREATE TABLE `emergency_plane_status` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uniq_uas_id` (`uas_id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='无人机通信作业状态'; +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='无人机通信作业状态'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6812,7 +7820,7 @@ CREATE TABLE `gis_grid` ( `sync_id` int DEFAULT NULL COMMENT '引用数据同步关联id', `size` bigint DEFAULT '0' COMMENT '数据大小', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='二维视图表'; +) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='二维视图表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6835,7 +7843,7 @@ CREATE TABLE `gis_image` ( `is_deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除,0:未删除,1:已删除', `company_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '公司id', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=171 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='回传影像'; +) ENGINE=InnoDB AUTO_INCREMENT=195 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='回传影像'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6887,7 +7895,7 @@ CREATE TABLE `gis_release_resource` ( `create_by` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', `company_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '公司id', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=215 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='资源释放表'; +) ENGINE=InnoDB AUTO_INCREMENT=218 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='资源释放表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6904,7 +7912,7 @@ CREATE TABLE `gis_result_choose` ( `resource` int NOT NULL DEFAULT '0' COMMENT '来源(0:中移凌云;1:app端)', `data_type` tinyint(1) DEFAULT NULL COMMENT '数据类型(0:建图结果、1:三维模型、2:单体模型、3:点云数据、4:地形数据、5:地图数据、6:POI)', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1916 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='数据工具化选择列表'; +) ENGINE=InnoDB AUTO_INCREMENT=2042 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='数据工具化选择列表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -6940,7 +7948,7 @@ CREATE TABLE `gis_three_d` ( `sync_id` int DEFAULT NULL COMMENT '引用数据同步关联id', `size` bigint DEFAULT '0' COMMENT '数据大小', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='三维视图表'; +) ENGINE=InnoDB AUTO_INCREMENT=203 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='三维视图表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8033,7 +9041,7 @@ CREATE TABLE `police_case_info` ( `SSJD` varchar(255) DEFAULT NULL COMMENT '所属街道', PRIMARY KEY (`id`), KEY `idx_AJID` (`AJID`) -) ENGINE=InnoDB AUTO_INCREMENT=1840568484041318403 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='警情信息'; +) ENGINE=InnoDB AUTO_INCREMENT=1854106722313216003 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='警情信息'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8227,7 +9235,7 @@ CREATE TABLE `traffic_flight_info` ( `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '删除标记', PRIMARY KEY (`id`), KEY `idx_traffic_flight_info_takeoff_time_index` (`takeoff_time`) -) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='航班信息-智慧交通中应用'; +) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='航班信息-智慧交通中应用'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8256,7 +9264,7 @@ CREATE TABLE `traffic_runway_info` ( `modify_time` datetime DEFAULT NULL COMMENT '更新时间', `deleted` bit(1) DEFAULT b'0' COMMENT '删除标记', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='跑道信息-智慧交通'; +) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='跑道信息-智慧交通'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8279,7 +9287,7 @@ CREATE TABLE `user_heart_his` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`) -) ENGINE=InnoDB AUTO_INCREMENT=25631 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='用户历史心跳表'; +) ENGINE=InnoDB AUTO_INCREMENT=25794 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='用户历史心跳表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8307,7 +9315,7 @@ CREATE TABLE `user_status` ( KEY `idx_company_id` (`company_id`), KEY `idx_last_heart_time` (`last_heart_time`), KEY `idx_online_time` (`online_time`) -) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='用户状态表'; +) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='用户状态表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8354,7 +9362,7 @@ CREATE TABLE `zc_line_config` ( `create_at` datetime NOT NULL COMMENT '创建时间', PRIMARY KEY (`id`), KEY `idx_point_code` (`point_code`) -) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='侦察点表'; +) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='侦察点表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8382,7 +9390,7 @@ CREATE TABLE `zc_point_config` ( PRIMARY KEY (`id`), UNIQUE KEY `uniq_point_code` (`point_code`), KEY `idx_company_id` (`company_id`) -) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='侦察线路表'; +) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='侦察线路表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8735,7 +9743,7 @@ CREATE TABLE `biz_log` ( KEY `idx_log_time` (`log_time`) USING BTREE, KEY `idx_operate_identiy` (`operate_identity`) USING BTREE, KEY `idx_user_id` (`user_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=169 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='日志表'; +) ENGINE=InnoDB AUTO_INCREMENT=232 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='日志表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -8778,18 +9786,23 @@ CREATE TABLE `bridge_device` ( `device_longitude` double DEFAULT NULL COMMENT '设备经度', `device_latitude` double DEFAULT NULL COMMENT '设备纬度', `device_altitude` float DEFAULT NULL COMMENT '设备海拔高度', + `device_local_altitude` double DEFAULT NULL COMMENT '设备所在地面海拔高度', `device_type` int DEFAULT NULL COMMENT '设备类型', `work_state` int DEFAULT '0' COMMENT '设备工作状态 -1:离线,0:未工作,1:工作中,2:设备异常', `extension` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '扩展信息', `function` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '功能能力', + `pid` bigint DEFAULT NULL COMMENT '针对察打一体设备,非察打设备子设备,一律为null,是察打子设备,表示上级察打设备的id', + `level` int DEFAULT '0' COMMENT '设备的等级,0:表示主设备,1:表示子设备,主要针对察打一体设备', `source` int DEFAULT NULL COMMENT '来源(0: 系统添加 1: bridge同步)', `create_at` datetime(6) DEFAULT NULL COMMENT '创建时间', `is_del` bit(1) DEFAULT b'0' COMMENT '是否删除', `create_by` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '创建用户id', `update_at` datetime(6) DEFAULT NULL COMMENT '更新时间', `update_by` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', + `device_height` float DEFAULT NULL COMMENT '设备对地高度', `ping_time` datetime DEFAULT NULL COMMENT 'ping时间', - PRIMARY KEY (`id`) + PRIMARY KEY (`id`), + KEY `idx_device_pid` (`pid`,`is_del`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='设备维护表'; /*!40101 SET character_set_client = @saved_cs_client */; @@ -8836,17 +9849,22 @@ CREATE TABLE `bridge_device_pool` ( `device_longitude` double DEFAULT NULL COMMENT '设备经度', `device_latitude` double DEFAULT NULL COMMENT '设备纬度', `device_altitude` float DEFAULT NULL COMMENT '设备海拔高度', + `device_local_altitude` double DEFAULT NULL COMMENT '设备所在地面海拔高度', `device_type` int DEFAULT NULL COMMENT '设备类型', `work_state` int DEFAULT '0' COMMENT '设备工作状态 0:未工作,1:工作中,2:设备异常', `extension` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '扩展信息', `function` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '功能能力', + `pid` bigint DEFAULT NULL COMMENT '针对察打一体设备,非察打设备子设备,一律为null,是察打子设备,表示上级察打设备的id', + `level` int DEFAULT '0' COMMENT '设备的等级,0:表示主设备,1:表示子设备,主要针对察打一体设备', `create_at` datetime(6) DEFAULT NULL COMMENT '创建时间', `is_del` bit(1) DEFAULT b'0' COMMENT '是否删除', `create_by` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '创建用户id', `update_at` datetime(6) DEFAULT NULL COMMENT '更新时间', `update_by` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', + `device_height` float DEFAULT NULL COMMENT '设备对地高度', PRIMARY KEY (`id`), - KEY `idx_device_id_index` (`provider_code`,`device_id`,`device_type`) + KEY `idx_device_id_index` (`provider_code`,`device_id`,`device_type`), + KEY `idx_device_pid` (`pid`,`is_del`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='bridge同步的设备信息,未添加至设备监管员的设备列表'; /*!40101 SET character_set_client = @saved_cs_client */; @@ -8980,7 +9998,7 @@ CREATE TABLE `epc_auth` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', `is_delete` bit(1) DEFAULT b'0' COMMENT '0 未删除 1 已删除', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='epc验证表'; +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='epc验证表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9025,7 +10043,7 @@ CREATE TABLE `flight_activities` ( UNIQUE KEY `uniq_flight_code` (`flight_code`), KEY `idx_plan_flytime_start` (`plan_flytime_start`), KEY `idx_plan_flytime_end` (`plan_flytime_end`) -) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='飞行活动表'; +) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='飞行活动表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9044,7 +10062,7 @@ CREATE TABLE `flight_activity_task` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), KEY `idx_flight_code` (`flight_code`) -) ENGINE=InnoDB AUTO_INCREMENT=194 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='审批任务记录'; +) ENGINE=InnoDB AUTO_INCREMENT=222 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='审批任务记录'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9146,7 +10164,7 @@ CREATE TABLE `ky_airspace_config` ( UNIQUE KEY `uniq_area_name` (`area_name`), KEY `idx_start_time` (`start_time`), KEY `idx_end_time` (`end_time`) -) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='空域配置表'; +) ENGINE=InnoDB AUTO_INCREMENT=138 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='空域配置表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9194,7 +10212,7 @@ CREATE TABLE `ky_airspace_config_his` ( UNIQUE KEY `uniq_area_code` (`area_code`), KEY `idx_start_time` (`start_time`), KEY `idx_area_name` (`area_name`) -) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='空域配置历史表'; +) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='空域配置历史表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9218,7 +10236,7 @@ CREATE TABLE `ky_airspace_kpi` ( PRIMARY KEY (`id`), UNIQUE KEY `uniq_area_code` (`area_code`,`kpi_type`), KEY `idx_execute_time` (`expect_execute_time`) -) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='空域指标表'; +) ENGINE=InnoDB AUTO_INCREMENT=418 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='空域指标表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9268,7 +10286,7 @@ CREATE TABLE `ky_config_geonum_detail` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uniq_area_code` (`area_code`,`area_category`) -) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='空域任务表'; +) ENGINE=InnoDB AUTO_INCREMENT=178 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='空域任务表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9289,7 +10307,7 @@ CREATE TABLE `ky_flight_act_geo_detail` ( UNIQUE KEY `uniq_flight_code` (`flight_code`,`stat_date`), KEY `idx_pass_time` (`pass_time`), KEY `idx_stat_date` (`stat_date`) -) ENGINE=InnoDB AUTO_INCREMENT=423 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='飞行活动区域网格明细'; +) ENGINE=InnoDB AUTO_INCREMENT=517 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='飞行活动区域网格明细'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9309,7 +10327,7 @@ CREATE TABLE `ky_flight_conflict_area` ( PRIMARY KEY (`id`), UNIQUE KEY `uniq_code` (`area_code`,`stat_date`,`area_type`,`flight_code`), KEY `idx_stat_date` (`stat_date`) -) ENGINE=InnoDB AUTO_INCREMENT=138 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='飞行活动冲突空域记录'; +) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='飞行活动冲突空域记录'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9336,7 +10354,7 @@ CREATE TABLE `manuf_detail` ( `update_by` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '更新用户', `is_del` bit(1) DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='生产厂商详情表'; +) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='生产厂商详情表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9461,7 +10479,7 @@ CREATE TABLE `owner_detail` ( `type` int DEFAULT NULL COMMENT '使用者类型,0:个人,1:企业', `is_del` bit(1) DEFAULT b'0' COMMENT '用户是否被删除,0:否,1:删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='普通用户认证表'; +) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='普通用户认证表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9494,7 +10512,7 @@ CREATE TABLE `owner_flyer_info` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', `update_at` datetime DEFAULT NULL COMMENT '修改时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='操控员信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='操控员信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9579,13 +10597,16 @@ DROP TABLE IF EXISTS `regulator_defense_zone`; CREATE TABLE `regulator_defense_zone` ( `id` bigint NOT NULL COMMENT '主键id', `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '防区名称', - `area_range` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '防区区域,', + `area_range` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '核心区域', + `is_fusion` bit(1) DEFAULT NULL COMMENT '是否融和', `upper_height` decimal(10,0) DEFAULT NULL COMMENT '防区最高高度', `is_del` bit(1) DEFAULT b'0' COMMENT '是否删除,0:未删除,1:删除', `create_at` datetime(6) DEFAULT NULL COMMENT '创建时间', `create_by` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '创建用户id', `update_at` datetime(6) DEFAULT NULL COMMENT '更新时间', `update_by` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', + `handling_area` text COLLATE utf8mb4_bin COMMENT '处置区域', + `warning_area` text COLLATE utf8mb4_bin COMMENT '预警区域', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='防区'; /*!40101 SET character_set_client = @saved_cs_client */; @@ -9603,6 +10624,10 @@ CREATE TABLE `regulator_defense_zone_device_mapping` ( `device_id` bigint NOT NULL COMMENT '设备主键id,', `create_at` datetime(6) NOT NULL COMMENT '创建时间', `create_by` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '创建用户id', + `induce_type` int DEFAULT NULL COMMENT '诱骗类型(0-方向诱骗,1-角度诱骗,2-轨迹诱骗,3-位置诱骗,4-模式诱骗,5-导航屏蔽, 6-停止诱骗)', + `induce_direction` int DEFAULT NULL COMMENT '诱骗策略参数(0-正北、1-正东、2-正南、3-正西、4-东北、5-东南、6-西南、7-西北)', + `interfere_mode` int DEFAULT NULL COMMENT '干扰模式(1-驱离模式、2-迫降模式)', + `frequency` text COLLATE utf8mb4_bin COMMENT '频段设置(0-1.5G,1-2.4G, 2-5.8G, 3-840M)', PRIMARY KEY (`id`), KEY `idx_defense_zone_id` (`defense_zone_id`) COMMENT '防区id索引' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='防区与设备id的映射表'; @@ -9630,6 +10655,93 @@ CREATE TABLE `regulator_defense_zone_mapping` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='监管员防区授权表'; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `regulator_defense_zone_strategy` +-- + +DROP TABLE IF EXISTS `regulator_defense_zone_strategy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `regulator_defense_zone_strategy` ( + `id` bigint NOT NULL COMMENT '主键id', + `defense_zone_id` bigint NOT NULL COMMENT '防区id', + `create_at` datetime(6) NOT NULL COMMENT '创建时间', + `create_by` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '创建用户id', + `defense_type` int DEFAULT NULL COMMENT '防区类型(0:核心区,1:处置区,2:预警区)', + `sms_notice` varchar(32) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '闯入短信通知:接收人', + `notice_time` int DEFAULT '10' COMMENT '系统提示音(1-10000)', + `device_ids` text COLLATE utf8mb4_bin COMMENT '无人值守设备id集合', + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='防区策略表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `regulator_detection_configure_info` +-- + +DROP TABLE IF EXISTS `regulator_detection_configure_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `regulator_detection_configure_info` ( + `id` bigint NOT NULL COMMENT '主键id', + `ref_lat` decimal(20,7) DEFAULT NULL COMMENT '参考点02纬度', + `ref_lng` decimal(20,7) DEFAULT NULL COMMENT '参考点02经度', + `ref_wgs_lat` decimal(20,7) DEFAULT NULL COMMENT '参考点84纬度', + `ref_wgs_lng` decimal(20,7) DEFAULT NULL COMMENT '参考点84经度', + `configs` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '配置', + `keep_duration` bigint DEFAULT NULL COMMENT '保存时间', + `suppression_num` int DEFAULT NULL COMMENT '压制点数', + `user_id` bigint DEFAULT NULL COMMENT '用户id', + `user_name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '用户名称', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `modify_time` datetime DEFAULT NULL COMMENT '更新时间', + `deleted` bit(1) DEFAULT b'0' COMMENT '是否删除', + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='参考点等信息的配置'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `regulator_detection_statistic` +-- + +DROP TABLE IF EXISTS `regulator_detection_statistic`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `regulator_detection_statistic` ( + `id` bigint NOT NULL COMMENT '主键id', + `device_comp_id` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '设备组合id', + `provider_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '提供商编码', + `device_type` int DEFAULT NULL COMMENT '设备类型', + `device_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '设备id', + `dimension` int DEFAULT NULL COMMENT '统计纬度,0:全部,1:年,2:月,3:周,4:日', + `dimension_value` int DEFAULT NULL COMMENT '统计纬度值', + `total` int DEFAULT NULL COMMENT '统计值', + `create_at` datetime DEFAULT NULL COMMENT '创建时间', + `update_at` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE, + KEY `idx_device_comp_id` (`device_comp_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='设备探测统计表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `regulator_detection_track` +-- + +DROP TABLE IF EXISTS `regulator_detection_track`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `regulator_detection_track` ( + `id` bigint NOT NULL COMMENT '主键id', + `device_id` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '设备id', + `provider_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '提供商编码', + `device_type` int DEFAULT NULL COMMENT '设备类型', + `track_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '目标id', + `create_at` datetime DEFAULT NULL COMMENT '创建时间', + `update_at` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='设备探测统计表'; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `regulator_login_log` -- @@ -9851,6 +10963,9 @@ CREATE TABLE `uav_detail` ( `identity` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '无人机唯一产品识别码', `verify_code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '校验码', `code_type` int DEFAULT NULL COMMENT '识别码类型 0: 识别码 1: 序列号', + `imei` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '国际移动设备识别码', + `imsi` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '国际移动用户识别码', + `sn` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '终端设备号', `manuf_id` int DEFAULT NULL COMMENT '生产厂商id', `manuf` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生产厂商', `product_model` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '产品型号', @@ -9876,8 +10991,9 @@ CREATE TABLE `uav_detail` ( `update_by` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '更新人', `update_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '更新人姓名', `is_del` bit(1) DEFAULT b'0' COMMENT '是否删除 0: 未删除 1: 删除', + `online_at` datetime DEFAULT NULL COMMENT '最近激活时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='无人机注册表'; +) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='无人机注册表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9928,7 +11044,7 @@ CREATE TABLE `warn_handle` ( `create_at` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), KEY `idx_warn_code` (`warn_code`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='告警处置记录'; +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='告警处置记录'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -9976,7 +11092,7 @@ CREATE TABLE `warn_item` ( KEY `idx_warn_key` (`warn_key`,`status`), KEY `idx_end_time` (`end_time`), KEY `idx_warn_code` (`warn_code`,`status`) -) ENGINE=InnoDB AUTO_INCREMENT=2359062 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='告警记录'; +) ENGINE=InnoDB AUTO_INCREMENT=2360325 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='告警记录'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10106,7 +11222,7 @@ CREATE TABLE `biz_log` ( KEY `operate_identiy` (`operate_identity`), KEY `log_time` (`log_time`), KEY `idx_company_id` (`company_id`) -) ENGINE=InnoDB AUTO_INCREMENT=16940587 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=17249129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10307,7 +11423,7 @@ CREATE TABLE `ai_pic_info` ( `deleted` int(1) unsigned zerofill DEFAULT '0' COMMENT '0保留,1假删除', `person_num` int NOT NULL DEFAULT '0' COMMENT 'AI检测人群数量', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=6282 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AI图片信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=6325 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AI图片信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10400,7 +11516,7 @@ CREATE TABLE `air_point_info_seal` ( `wlat` decimal(20,7) DEFAULT NULL COMMENT 'WGS84纬度', `wlng` decimal(20,7) DEFAULT NULL COMMENT 'WGS84经度', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3066199563 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='航点信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=3066658751 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='航点信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10436,7 +11552,7 @@ CREATE TABLE `alert_event` ( `dealt_date` datetime DEFAULT NULL COMMENT '告警处理时间,处理后更新', PRIMARY KEY (`id`), UNIQUE KEY `uniq_alert_event_id_uindex` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3732 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='应急保障的告警事件'; +) ENGINE=InnoDB AUTO_INCREMENT=3775 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='应急保障的告警事件'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10484,7 +11600,7 @@ CREATE TABLE `demonstrate_plan` ( `start_time` datetime DEFAULT NULL COMMENT '定时开始时间,null:不定时', PRIMARY KEY (`id`), UNIQUE KEY `uniq_demonstrate_plan_id_uindex` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='演示方案'; +) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='演示方案'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10523,7 +11639,7 @@ CREATE TABLE `flight_record` ( `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `deleted` int NOT NULL DEFAULT '0' COMMENT '是否删除', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=87351 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='无人机飞行轨迹记录项'; +) ENGINE=InnoDB AUTO_INCREMENT=100897 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='无人机飞行轨迹记录项'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10542,7 +11658,7 @@ CREATE TABLE `fly_duration` ( `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `idx_cid` (`cid`) USING BTREE COMMENT 'companyId作为索引' -) ENGINE=InnoDB AUTO_INCREMENT=16262 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='飞行时长记录表'; +) ENGINE=InnoDB AUTO_INCREMENT=19824 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='飞行时长记录表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10562,7 +11678,7 @@ CREATE TABLE `fly_log` ( `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `idx_uav_cid` (`uav_code`,`cid`) USING BTREE COMMENT '同一架飞机只允许插入一次' -) ENGINE=InnoDB AUTO_INCREMENT=149417 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=163220 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10593,7 +11709,7 @@ CREATE TABLE `foia_fly_history` ( `take_photo_count` bigint DEFAULT NULL, `take_video_seconds` bigint unsigned DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=449 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=451 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10636,7 +11752,7 @@ CREATE TABLE `foia_pic_info` ( `object_name` varchar(255) DEFAULT NULL COMMENT '素材仓库的objectName', `object_id` varchar(50) DEFAULT NULL COMMENT '素材仓库object id', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=21708 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=21761 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10653,7 +11769,7 @@ CREATE TABLE `keyboard_bindings` ( `data_value` text NOT NULL COMMENT '用户设置值', `data_key` varchar(255) NOT NULL COMMENT '用户设置项名', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='单机监视用户云台键盘快捷键操作'; +) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='单机监视用户云台键盘快捷键操作'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10815,7 +11931,7 @@ CREATE TABLE `picture_general` ( `company_id` int NOT NULL COMMENT '公司id', `media_type` varchar(20) DEFAULT NULL COMMENT '媒体类型 null = picture, picture|video', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=117690 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='照片基础信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=117902 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='照片基础信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -10892,7 +12008,7 @@ CREATE TABLE `story_object_info` ( `modify_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `deleted` int DEFAULT '0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=310 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='故事对象信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=333 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='故事对象信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -11044,7 +12160,7 @@ CREATE TABLE `msg_log` ( KEY `idx_create_time` (`create_time`), KEY `idx_tenant_id` (`tenant_id`), KEY `idx_msg_group` (`msg_group`) -) ENGINE=InnoDB AUTO_INCREMENT=81108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=81746 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -11097,7 +12213,7 @@ CREATE TABLE `msg_task` ( `create_at` timestamp NULL DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `msg_code` (`msg_code`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1150 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=1180 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -11129,7 +12245,7 @@ CREATE TABLE `msg_tpl` ( `create_at` timestamp NULL DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `tpl_code` (`tpl_type`,`tpl_code`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=3027 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=3130 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -11154,7 +12270,7 @@ CREATE TABLE `msg_tpl_lang` ( `create_at` timestamp NULL DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `tpl_code` (`tpl_type`,`tpl_code`,`lang`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=3884 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=4011 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -11227,7 +12343,7 @@ CREATE TABLE `user_web_msg` ( `update_at` timestamp NULL DEFAULT NULL COMMENT '修改时间', PRIMARY KEY (`id`) USING BTREE, KEY `user_id` (`user_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=131863 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=133132 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -11250,7 +12366,7 @@ CREATE TABLE `user_web_msg_lang` ( PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `ref_id_lang` (`ref_id`,`lang`) USING BTREE, KEY `ref_id` (`ref_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=29579 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=31811 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13373,7 +14489,7 @@ CREATE TABLE `biz_flow_inst` ( UNIQUE KEY `uniq_proc_inst_id` (`proc_inst_id`), KEY `idx_start_time` (`start_time`), KEY `idx_update_at` (`update_at`) -) ENGINE=InnoDB AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='业务流程实例'; +) ENGINE=InnoDB AUTO_INCREMENT=2908 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='业务流程实例'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13534,7 +14650,7 @@ CREATE TABLE `biz_task_log` ( UNIQUE KEY `uniq_task_id` (`task_id`), KEY `idx_proc_inst_id` (`proc_inst_id`), KEY `idx_start_time` (`start_time`) -) ENGINE=InnoDB AUTO_INCREMENT=5752 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='任务日志'; +) ENGINE=InnoDB AUTO_INCREMENT=6442 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='任务日志'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13736,7 +14852,7 @@ CREATE TABLE `uav_proc_callback` ( `create_at` timestamp NULL DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `msg_code` (`msg_code`) -) ENGINE=InnoDB AUTO_INCREMENT=6264 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=6949 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13802,7 +14918,7 @@ CREATE TABLE `uav_proc_def` ( PRIMARY KEY (`id`), UNIQUE KEY `tenant_processType` (`process_type`,`tenant_id`), UNIQUE KEY `process_code` (`process_code`) -) ENGINE=InnoDB AUTO_INCREMENT=332 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=415 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13835,7 +14951,7 @@ CREATE TABLE `uav_proc_def_his` ( `update_at` timestamp NULL DEFAULT NULL COMMENT '修改时间', `create_at` timestamp NULL DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1150 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=1198 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13869,7 +14985,7 @@ CREATE TABLE `uav_proc_inst` ( PRIMARY KEY (`id`), UNIQUE KEY `biz_order_code` (`biz_order_code`), UNIQUE KEY `proc_inst_id` (`proc_inst_id`) -) ENGINE=InnoDB AUTO_INCREMENT=5631 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=6060 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13932,7 +15048,7 @@ CREATE TABLE `uav_task_dispatch` ( UNIQUE KEY `uniq_proc_inst_id` (`proc_inst_id`), KEY `idx_accept_unit_id` (`accept_unit_id`), KEY `idx_task_name_code` (`start_user_id`,`task_name`) -) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='任务派发表'; +) ENGINE=InnoDB AUTO_INCREMENT=95 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='任务派发表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13953,7 +15069,7 @@ CREATE TABLE `uav_task_duty_user` ( `create_at` datetime NOT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uniq_tenant_id` (`tenant_id`) -) ENGINE=InnoDB AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='接口人配置表'; +) ENGINE=InnoDB AUTO_INCREMENT=152 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='接口人配置表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -13980,7 +15096,7 @@ CREATE TABLE `uav_task_mission` ( UNIQUE KEY `uniq_task_mission` (`mission_id`,`task_order_code`), UNIQUE KEY `uniq_mission_id` (`mission_id`), KEY `idx_task` (`task_order_code`) -) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='作业任务关联表'; +) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='作业任务关联表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14000,7 +15116,7 @@ CREATE TABLE `uav_task_name_map` ( PRIMARY KEY (`id`), UNIQUE KEY `uniq_name` (`tenant_id`,`task_name`), UNIQUE KEY `uniq_code` (`task_name_code`) -) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='任务名表'; +) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='任务名表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14024,7 +15140,7 @@ CREATE TABLE `uav_task_type` ( PRIMARY KEY (`id`), UNIQUE KEY `uniq_task_type_code` (`task_type_code`), UNIQUE KEY `uniq_task_type` (`tenant_id`,`task_type`) -) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='任务类型表'; +) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='任务类型表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14131,7 +15247,7 @@ CREATE TABLE `sys_account` ( PRIMARY KEY (`id`) USING BTREE, KEY `INDEX_account_user_account` (`user_account`) USING BTREE, KEY `INDEX_account_user_id` (`user_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=2767 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=2927 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14302,7 +15418,7 @@ CREATE TABLE `sys_org` ( `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin COMMENT '详细地址', PRIMARY KEY (`id`) USING BTREE, KEY `idx_org_valid_time` (`is_frozen`,`valid_end_date`,`is_del`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=575 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=630 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14398,7 +15514,7 @@ CREATE TABLE `sys_quota_config` ( `update_by` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '最近一次修改者ID', PRIMARY KEY (`id`), UNIQUE KEY `company_id` (`company_id`,`quota_type`) -) ENGINE=InnoDB AUTO_INCREMENT=5919 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=6682 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14418,7 +15534,7 @@ CREATE TABLE `sys_quota_his` ( `create_by` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '最近一次修改者ID', PRIMARY KEY (`id`), KEY `company_id` (`company_id`,`quota_type`) -) ENGINE=InnoDB AUTO_INCREMENT=1090 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=1117 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14467,7 +15583,7 @@ CREATE TABLE `sys_resource` ( `create_by` bigint DEFAULT NULL COMMENT '创建用户id', `update_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1035 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='系统资源表,包括菜单(MENU),按钮(ACTION),接口(API)'; +) ENGINE=InnoDB AUTO_INCREMENT=1037 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='系统资源表,包括菜单(MENU),按钮(ACTION),接口(API)'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14491,7 +15607,7 @@ CREATE TABLE `sys_resource_api` ( `create_by` bigint DEFAULT NULL COMMENT '创建用户id', `update_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=4753 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; +) ENGINE=InnoDB AUTO_INCREMENT=4755 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14515,7 +15631,7 @@ CREATE TABLE `sys_resource_attr` ( `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id', PRIMARY KEY (`id`), UNIQUE KEY `uk_dic_item` (`code`,`lang`) COMMENT '语言项唯一标识' -) ENGINE=InnoDB AUTO_INCREMENT=2665 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='字典各语言的属性'; +) ENGINE=InnoDB AUTO_INCREMENT=2671 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='字典各语言的属性'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14589,7 +15705,7 @@ CREATE TABLE `sys_role` ( `create_by` bigint DEFAULT NULL COMMENT '创建用户id', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `UK_sys_role_company_id_code` (`code`,`company_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=206 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14794,7 +15910,7 @@ CREATE TABLE `sys_tower_user_mapping` ( `create_by` varchar(128) DEFAULT NULL COMMENT '创建用户', `update_by` varchar(128) DEFAULT NULL COMMENT '更新用户', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=292 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='铁塔用户表'; +) ENGINE=InnoDB AUTO_INCREMENT=293 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='铁塔用户表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -14824,7 +15940,7 @@ CREATE TABLE `sys_user` ( `update_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `create_by` bigint DEFAULT NULL COMMENT '创建用户id', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1578 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB AUTO_INCREMENT=1668 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -15117,7 +16233,7 @@ CREATE TABLE `air_point_info` ( `modify_time` datetime DEFAULT NULL COMMENT '修改时间', `deleted` int(1) unsigned zerofill DEFAULT '0' COMMENT '0保留,1假删除', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1323836071943269228 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='航点信息表'; +) ENGINE=InnoDB AUTO_INCREMENT=1323836071943305220 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='航点信息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -15181,4 +16297,4 @@ CREATE TABLE `uav_station_detail` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:53:24 +-- Dump completed on 2024-11-14 11:13:34 diff --git a/999-数据库脚本/6.0.0/admin_data.sql b/999-数据库脚本/6.0.0/admin_data.sql index 7c10313..f8c27bd 100644 --- a/999-数据库脚本/6.0.0/admin_data.sql +++ b/999-数据库脚本/6.0.0/admin_data.sql @@ -22,7 +22,7 @@ use admin_data; LOCK TABLES `sys_area_config` WRITE; /*!40000 ALTER TABLE `sys_area_config` DISABLE KEYS */; -INSERT INTO `sys_area_config` VALUES (164899,'100000',NULL,'','100000','country','中华人民共和国','116.3683244','39.915085','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164900,'410000','100000','','410000','province','河南省','113.753094','34.767052','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164901,'410300','410000','0379','410300','city','洛阳市','112.453895','34.619702','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164902,'410323','410300','0379','410323','district','新安县','112.13246','34.728909','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164903,'410327','410300','0379','410327','district','宜阳县','112.179187','34.51462','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164904,'410328','410300','0379','410328','district','洛宁县','111.652958','34.389371','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164905,'410324','410300','0379','410324','district','栾川县','111.615729','33.7857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164906,'410329','410300','0379','410329','district','伊川县','112.425751','34.421741','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164907,'410325','410300','0379','410325','district','嵩县','112.085432','34.134639','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164908,'410302','410300','0379','410302','district','老城区','112.469071','34.683645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164909,'410303','410300','0379','410303','district','西工区','112.428183','34.659959','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164910,'410307','410300','0379','410307','district','偃师区','112.789375','34.72715','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164911,'410304','410300','0379','410304','district','瀍河回族区','112.500131','34.679773','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164912,'410326','410300','0379','410326','district','汝阳县','112.473013','34.154283','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164913,'410308','410300','0379','410308','district','孟津区','112.44525','34.825587','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164914,'410311','410300','0379','410311','district','洛龙区','112.463833','34.619711','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164915,'410305','410300','0379','410305','district','涧西区','112.395766','34.658177','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164916,'411200','410000','0398','411200','city','三门峡市','111.200482','34.773196','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164917,'411221','411200','0398','411221','district','渑池县','111.761753','34.767937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164918,'411202','411200','0398','411202','district','湖滨区','111.188552','34.771296','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164919,'411281','411200','0398','411281','district','义马市','111.874726','34.747563','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164920,'411203','411200','0398','411203','district','陕州区','111.103252','34.72066','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164921,'411224','411200','0398','411224','district','卢氏县','111.04522','34.051866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164922,'411282','411200','0398','411282','district','灵宝市','110.894225','34.517734','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164923,'411100','410000','0395','411100','city','漯河市','114.0166','33.58038','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164924,'411122','411100','0395','411122','district','临颍县','113.931121','33.828096','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164925,'411102','411100','0395','411102','district','源汇区','113.984164','33.572319','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164926,'411121','411100','0395','411121','district','舞阳县','113.609327','33.438259','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164927,'411103','411100','0395','411103','district','郾城区','114.006596','33.587697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164928,'411104','411100','0395','411104','district','召陵区','114.093879','33.586509','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164929,'411000','410000','0374','411000','city','许昌市','113.852004','34.03732','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164930,'411003','411000','0374','411003','district','建安区','113.822869','34.124729','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164931,'411002','411000','0374','411002','district','魏都区','113.830826','34.047189','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164932,'411024','411000','0374','411024','district','鄢陵县','114.177329','34.102985','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164933,'411081','411000','0374','411081','district','禹州市','113.488715','34.142442','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164934,'411082','411000','0374','411082','district','长葛市','113.813972','34.195458','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164935,'411025','411000','0374','411025','district','襄城县','113.506904','33.851609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164936,'411300','410000','0377','411300','city','南阳市','112.584753','33.016102','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164937,'411323','411300','0377','411323','district','西峡县','111.473644','33.307272','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164938,'411303','411300','0377','411303','district','卧龙区','112.528524','32.990313','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164939,'411321','411300','0377','411321','district','南召县','112.429277','33.489804','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164940,'411328','411300','0377','411328','district','唐河县','112.80829','32.682464','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164941,'411324','411300','0377','411324','district','镇平县','112.234571','33.033826','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164942,'411326','411300','0377','411326','district','淅川县','111.490902','33.137831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164943,'411329','411300','0377','411329','district','新野县','112.3601','32.521282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164944,'411322','411300','0377','411322','district','方城县','113.012849','33.255387','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164945,'411381','411300','0377','411381','district','邓州市','112.08745','32.687732','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164946,'411325','411300','0377','411325','district','内乡县','111.849354','33.044698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164947,'411327','411300','0377','411327','district','社旗县','112.948183','33.056229','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164948,'411302','411300','0377','411302','district','宛城区','112.539506','33.003564','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164949,'411330','411300','0377','411330','district','桐柏县','113.428702','32.379164','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164950,'411500','410000','0376','411500','city','信阳市','114.091058','32.148624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164951,'411525','411500','0376','411525','district','固始县','115.654066','32.169239','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164952,'411502','411500','0376','411502','district','浉河区','114.05867','32.116885','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164953,'411527','411500','0376','411527','district','淮滨县','115.420101','32.474772','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164954,'411524','411500','0376','411524','district','商城县','115.406894','31.79832','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164955,'411523','411500','0376','411523','district','新县','114.879309','31.643914','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164956,'411521','411500','0376','411521','district','罗山县','114.512838','32.20436','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164957,'411503','411500','0376','411503','district','平桥区','114.125595','32.101005','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164958,'411526','411500','0376','411526','district','潢川县','115.051683','32.131426','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164959,'411528','411500','0376','411528','district','息县','114.740392','32.34312','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164960,'411522','411500','0376','411522','district','光山县','114.91934','32.010736','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164961,'410900','410000','0393','410900','city','濮阳市','115.029246','35.762731','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164962,'410927','410900','0393','410927','district','台前县','115.871671','35.970286','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164963,'410922','410900','0393','410922','district','清丰县','115.104602','35.886694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164964,'410926','410900','0393','410926','district','范县','115.504081','35.85302','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164965,'410923','410900','0393','410923','district','南乐县','115.205876','36.070219','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164966,'410902','410900','0393','410902','district','华龙区','115.074453','35.778289','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164967,'410928','410900','0393','410928','district','濮阳县','115.029165','35.713113','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164968,'419001','410000','1391','419001','city','济源市','112.602347','35.069057','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164969,'419001_potouzhen','419001','1391','419001','street','坡头镇','112.580245','35.063381','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164970,'419001_lilinzhen','419001','1391','419001','street','梨林镇','112.753220','35.088183','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164971,'419001_silizhen','419001','1391','419001','street','思礼镇','112.388078','35.210276','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164972,'419001_wulongkouzhen','419001','1391','419001','street','五龙口镇','112.761264','35.195598','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164973,'419001_wangwuzhen','419001','1391','419001','street','王屋镇','112.168531','35.124376','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164974,'419001_yuquanjiedao','419001','1391','419001','street','玉泉街道','112.623553','35.118882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164975,'419001_zhichengzhen','419001','1391','419001','street','轵城镇','112.622105','35.062530','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164976,'419001_jishuijiedao','419001','1391','419001','street','济水街道','112.595477','35.094386','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164977,'419001_qinyuanjiedao','419001','1391','419001','street','沁园街道','112.593210','35.082244','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164978,'419001_xiayezhen','419001','1391','419001','street','下冶镇','112.212297','35.113088','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164979,'419001_kejingzhen','419001','1391','419001','street','克井镇','112.634910','35.255031','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164980,'419001_tiantanjiedao','419001','1391','419001','street','天坛街道','112.566796','35.122905','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164981,'419001_shaoyuanzhen','419001','1391','419001','street','邵原镇','112.114016','35.270480','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164982,'419001_beihaijiedao','419001','1391','419001','street','北海街道','112.568975','35.111552','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164983,'419001_chengliuzhen','419001','1391','419001','street','承留镇','112.508612','35.024328','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164984,'419001_dayuzhen','419001','1391','419001','street','大峪镇','112.318910','35.079253','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164985,'410200','410000','0378','410200','city','开封市','114.314278','34.798083','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164986,'410221','410200','0378','410221','district','杞县','114.782629','34.549731','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164987,'410205','410200','0378','410205','district','禹王台区','114.348105','34.777052','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164988,'410223','410200','0378','410223','district','尉氏县','114.19305','34.411437','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164989,'410225','410200','0378','410225','district','兰考县','114.818228','34.856372','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164990,'410204','410200','0378','410204','district','鼓楼区','114.348356','34.788473','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164991,'410202','410200','0378','410202','district','龙亭区','114.355378','34.815515','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164992,'410203','410200','0378','410203','district','顺河回族区','114.360824','34.795933','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164993,'410222','410200','0378','410222','district','通许县','114.47315','34.502053','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164994,'410212','410200','0378','410212','district','祥符区','114.441406','34.757546','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164995,'410100','410000','0371','410100','city','郑州市','113.625351','34.746303','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164996,'410185','410100','0371','410185','district','登封市','113.05056','34.454877','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164997,'410105','410100','0371','410105','district','金水区','113.6603','34.800415','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164998,'410122','410100','0371','410122','district','中牟县','113.975798','34.720535','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(164999,'410184','410100','0371','410184','district','新郑市','113.74024','34.396479','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165000,'410181','410100','0371','410181','district','巩义市','113.022354','34.748207','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165001,'410108','410100','0371','410108','district','惠济区','113.617055','34.867994','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165002,'410106','410100','0371','410106','district','上街区','113.309185','34.803514','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165003,'410102','410100','0371','410102','district','中原区','113.612966','34.74828','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165004,'410183','410100','0371','410183','district','新密市','113.390932','34.540216','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165005,'410182','410100','0371','410182','district','荥阳市','113.383385','34.7866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165006,'410103','410100','0371','410103','district','二七区','113.640177','34.724138','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165007,'410104','410100','0371','410104','district','管城回族区','113.677446','34.754436','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165008,'410400','410000','0375','410400','city','平顶山市','113.192595','33.766554','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165009,'410423','410400','0375','410423','district','鲁山县','112.908052','33.738434','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165010,'410411','410400','0375','410411','district','湛河区','113.3208727','33.72568115','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165011,'410481','410400','0375','410481','district','舞钢市','113.516427','33.314147','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165012,'410404','410400','0375','410404','district','石龙区','112.898845','33.899247','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165013,'410482','410400','0375','410482','district','汝州市','112.844696','34.16717','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165014,'410425','410400','0375','410425','district','郏县','113.21261','33.971787','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165015,'410421','410400','0375','410421','district','宝丰县','113.054538','33.869159','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165016,'410422','410400','0375','410422','district','叶县','113.357476','33.627437','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165017,'410403','410400','0375','410403','district','卫东区','113.335316','33.735388','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165018,'410402','410400','0375','410402','district','新华区','113.293977','33.737251','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165019,'410700','410000','0373','410700','city','新乡市','113.92679','35.303589','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165020,'410724','410700','0373','410724','district','获嘉县','113.657551','35.260153','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165021,'410711','410700','0373','410711','district','牧野区','113.908561','35.315614','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165022,'410703','410700','0373','410703','district','卫滨区','113.865666','35.301796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165023,'410721','410700','0373','410721','district','新乡县','113.813884','35.170066','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165024,'410726','410700','0373','410726','district','延津县','114.205624','35.165876','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165025,'410702','410700','0373','410702','district','红旗区','113.983358','35.306182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165026,'410704','410700','0373','410704','district','凤泉区','113.916183','35.384428','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165027,'410727','410700','0373','410727','district','封丘县','114.418907','35.041237','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165028,'410725','410700','0373','410725','district','原阳县','113.939829','35.066873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165029,'410782','410700','0373','410782','district','辉县市','113.80572','35.462964','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165030,'410783','410700','0373','410783','district','长垣市','114.66885','35.201628','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165031,'410781','410700','0373','410781','district','卫辉市','114.064584','35.398357','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165032,'410800','410000','0391','410800','city','焦作市','113.241902','35.215726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165033,'410803','410800','0391','410803','district','中站区','113.182847','35.237227','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165034,'410802','410800','0391','410802','district','解放区','113.230555','35.240403','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165035,'410804','410800','0391','410804','district','马村区','113.32212','35.257084','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165036,'410811','410800','0391','410811','district','山阳区','113.254581','35.215054','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165037,'410821','410800','0391','410821','district','修武县','113.447862','35.22286','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165038,'410883','410800','0391','410883','district','孟州市','112.791372','34.907229','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165039,'410825','410800','0391','410825','district','温县','113.08067','34.93961','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165040,'410823','410800','0391','410823','district','武陟县','113.401848','35.099458','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165041,'410822','410800','0391','410822','district','博爱县','113.064701','35.170332','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165042,'410882','410800','0391','410882','district','沁阳市','112.950873','35.087569','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165043,'411400','410000','0370','411400','city','商丘市','115.656358','34.415165','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165044,'411421','411400','0370','411421','district','民权县','115.175019','34.648384','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165045,'411422','411400','0370','411422','district','睢县','115.071957','34.446572','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165046,'411423','411400','0370','411423','district','宁陵县','115.314221','34.461226','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165047,'411402','411400','0370','411402','district','梁园区','115.613609','34.444519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165048,'411426','411400','0370','411426','district','夏邑县','116.131422','34.237801','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165049,'411403','411400','0370','411403','district','睢阳区','115.653258','34.389048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165050,'411425','411400','0370','411425','district','虞城县','115.828519','34.400868','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165051,'411481','411400','0370','411481','district','永城市','116.449864','33.929927','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165052,'411424','411400','0370','411424','district','柘城县','115.305182','34.092015','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165053,'410600','410000','0392','410600','city','鹤壁市','114.297305','35.748329','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165054,'410602','410600','0392','410602','district','鹤山区','114.163133','35.954647','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165055,'410603','410600','0392','410603','district','山城区','114.184391','35.897862','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165056,'410611','410600','0392','410611','district','淇滨区','114.298748','35.741763','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165057,'410622','410600','0392','410622','district','淇县','114.208851','35.622571','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165058,'410621','410600','0392','410621','district','浚县','114.550611','35.677249','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165059,'410500','410000','0372','410500','city','安阳市','114.39248','36.098779','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165060,'410503','410500','0372','410503','district','北关区','114.355742','36.10766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165061,'410522','410500','0372','410522','district','安阳县','114.462953','36.09211','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165062,'410502','410500','0372','410502','district','文峰区','114.356967','36.090593','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165063,'410506','410500','0372','410506','district','龙安区','114.301037','36.076937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165064,'410505','410500','0372','410505','district','殷都区','114.303454','36.109938','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165065,'410581','410500','0372','410581','district','林州市','113.819275','36.084127','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165066,'410526','410500','0372','410526','district','滑县','114.517977','35.576128','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165067,'410523','410500','0372','410523','district','汤阴县','114.357686','35.925155','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165068,'410527','410500','0372','410527','district','内黄县','114.90146','35.972016','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165069,'411700','410000','0396','411700','city','驻马店市','114.021988','33.014038','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165070,'411727','411700','0396','411727','district','汝南县','114.362477','33.006808','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165071,'411722','411700','0396','411722','district','上蔡县','114.264381','33.262439','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165072,'411725','411700','0396','411725','district','确山县','114.016818','32.82134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165073,'411724','411700','0396','411724','district','正阳县','114.392774','32.605697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165074,'411729','411700','0396','411729','district','新蔡县','114.965519','32.74488','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165075,'411721','411700','0396','411721','district','西平县','114.021492','33.387658','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165076,'411726','411700','0396','411726','district','泌阳县','113.327144','32.723974','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165077,'411728','411700','0396','411728','district','遂平县','114.013323','33.146316','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165078,'411702','411700','0396','411702','district','驿城区','113.993753','32.97455','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165079,'411723','411700','0396','411723','district','平舆县','114.618537','32.96344','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165080,'411600','410000','0394','411600','city','周口市','114.701222','33.634652','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165081,'411602','411600','0394','411602','district','川汇区','114.650551','33.647679','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165082,'411623','411600','0394','411623','district','商水县','114.608135','33.562072','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165083,'411603','411600','0394','411603','district','淮阳区','114.852604','33.731543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165084,'411622','411600','0394','411622','district','西华县','114.529709','33.768277','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165085,'411624','411600','0394','411624','district','沈丘县','115.098541','33.409805','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165086,'411621','411600','0394','411621','district','扶沟县','114.394666','34.060062','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165087,'411625','411600','0394','411625','district','郸城县','115.177141','33.64601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165088,'411627','411600','0394','411627','district','太康县','114.837946','34.064513','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165089,'411628','411600','0394','411628','district','鹿邑县','115.484525','33.860698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165090,'411681','411600','0394','411681','district','项城市','114.875128','33.465609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165091,'440000','100000','','440000','province','广东省','113.266887','23.133306','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165092,'440500','440000','0754','440500','city','汕头市','116.681956','23.354152','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165093,'440515','440500','0754','440515','district','澄海区','116.755945','23.466314','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165094,'440523','440500','0754','440523','district','南澳县','117.023482','23.421658','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165095,'440512','440500','0754','440512','district','濠江区','116.726701','23.286605','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165096,'440507','440500','0754','440507','district','龙湖区','116.716464','23.372211','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165097,'440511','440500','0754','440511','district','金平区','116.70341','23.365716','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165098,'440514','440500','0754','440514','district','潮南区','116.439105','23.239196','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165099,'440513','440500','0754','440513','district','潮阳区','116.601677','23.264923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165100,'440600','440000','0757','440600','city','佛山市','113.121586','23.021351','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165101,'440608','440600','0757','440608','district','高明区','112.892573','22.900047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165102,'440607','440600','0757','440607','district','三水区','112.897271','23.156675','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165103,'440605','440600','0757','440605','district','南海区','113.143246','23.028875','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165104,'440604','440600','0757','440604','district','禅城区','113.122532','23.009475','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165105,'440606','440600','0757','440606','district','顺德区','113.293197','22.805413','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165106,'441200','440000','0758','441200','city','肇庆市','112.465245','23.047747','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165107,'441224','441200','0758','441224','district','怀集县','112.166908','23.920806','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165108,'441223','441200','0758','441223','district','广宁县','112.440694','23.634808','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165109,'441225','441200','0758','441225','district','封开县','111.512177','23.423928','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165110,'441284','441200','0758','441284','district','四会市','112.734309','23.326991','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165111,'441226','441200','0758','441226','district','德庆县','111.785544','23.145035','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165112,'441203','441200','0758','441203','district','鼎湖区','112.56738','23.159062','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165113,'441202','441200','0758','441202','district','端州区','112.485577','23.051847','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165114,'441204','441200','0758','441204','district','高要区','112.458055','23.02474','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165115,'441300','440000','0752','441300','city','惠州市','114.415587','23.112368','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165116,'441324','441300','0752','441324','district','龙门县','114.254898','23.727873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165117,'441323','441300','0752','441323','district','惠东县','114.720136','22.984831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165118,'441303','441300','0752','441303','district','惠阳区','114.456107','22.789431','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165119,'441302','441300','0752','441302','district','惠城区','114.382526','23.084657','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165120,'441322','441300','0752','441322','district','博罗县','114.289602','23.172587','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165121,'440300','440000','0755','440300','city','深圳市','114.057939','22.543527','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165122,'440306','440300','0755','440306','district','宝安区','113.883831','22.554986','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165123,'440305','440300','0755','440305','district','南山区','113.930478','22.533191','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165124,'440307','440300','0755','440307','district','龙岗区','114.246884','22.720889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165125,'440309','440300','0755','440309','district','龙华区','114.04491','22.696735','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165126,'440303','440300','0755','440303','district','罗湖区','114.131611','22.548309','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165127,'440308','440300','0755','440308','district','盐田区','114.236739','22.557001','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165128,'440311','440300','0755','440311','district','光明区','113.94733','22.744136','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165129,'440304','440300','0755','440304','district','福田区','114.055198','22.520922','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165130,'440310','440300','0755','440310','district','坪山区','114.350844','22.708786','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165131,'440400','440000','0756','440400','city','珠海市','113.576892','22.271644','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165132,'440402','440400','0756','440402','district','香洲区','113.543372','22.265635','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165133,'440403','440400','0756','440403','district','斗门区','113.296228','22.209134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165134,'440404','440400','0756','440404','district','金湾区','113.363224','22.146717','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165135,'440499','440400','[]','440499','district','澳门大学横琴校区(由澳门实施管辖)','113.548956','22.126197','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165136,'440800','440000','0759','440800','city','湛江市','110.357538','21.270108','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165137,'440881','440800','0759','440881','district','廉江市','110.286109','21.609988','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165138,'440883','440800','0759','440883','district','吴川市','110.779361','21.440763','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165139,'440811','440800','0759','440811','district','麻章区','110.333833','21.26437','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165140,'440825','440800','0759','440825','district','徐闻县','110.17595','20.325969','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165141,'440804','440800','0759','440804','district','坡头区','110.455192','21.244405','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165142,'440803','440800','0759','440803','district','霞山区','110.397721','21.192463','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165143,'440823','440800','0759','440823','district','遂溪县','110.25043','21.378371','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165144,'440882','440800','0759','440882','district','雷州市','110.097011','20.914548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165145,'440802','440800','0759','440802','district','赤坎区','110.365592','21.265948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165146,'440700','440000','0750','440700','city','江门市','113.081548','22.578948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165147,'440781','440700','0750','440781','district','台山市','112.793812','22.251947','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165148,'440704','440700','0750','440704','district','江海区','113.111029','22.561301','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165149,'440783','440700','0750','440783','district','开平市','112.698113','22.377378','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165150,'440785','440700','0750','440785','district','恩平市','112.304904','22.183743','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165151,'440705','440700','0750','440705','district','新会区','113.034454','22.458519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165152,'440703','440700','0750','440703','district','蓬江区','113.078914','22.595285','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165153,'440784','440700','0750','440784','district','鹤山市','112.964203','22.765912','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165154,'441700','440000','0662','441700','city','阳江市','111.98343','21.856853','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165155,'441781','441700','0662','441781','district','阳春市','111.791587','22.17041','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165156,'441721','441700','0662','441721','district','阳西县','111.617696','21.753935','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165157,'441702','441700','0662','441702','district','江城区','111.95486','21.862451','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165158,'441704','441700','0662','441704','district','阳东区','112.005586','21.869081','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165159,'440900','440000','0668','440900','city','茂名市','110.925533','21.662728','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165160,'440982','440900','0668','440982','district','化州市','110.639581','21.664483','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165161,'440904','440900','0668','440904','district','电白区','111.013368','21.513946','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165162,'440983','440900','0668','440983','district','信宜市','110.946866','22.354887','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165163,'440981','440900','0668','440981','district','高州市','110.853169','21.918017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165164,'440902','440900','0668','440902','district','茂南区','110.918566','21.641661','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165165,'441500','440000','0660','441500','city','汕尾市','115.375557','22.787204','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165166,'441523','441500','0660','441523','district','陆河县','115.659978','23.301557','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165167,'441502','441500','0660','441502','district','城区','115.36522','22.779204','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165168,'441521','441500','0660','441521','district','海丰县','115.322974','22.967212','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165169,'441581','441500','0660','441581','district','陆丰市','115.652142','22.91874','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165170,'445300','440000','0766','445300','city','云浮市','112.044524','22.915163','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165171,'445322','445300','0766','445322','district','郁南县','111.535387','23.234561','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165172,'445381','445300','0766','445381','district','罗定市','111.569788','22.768345','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165173,'445321','445300','0766','445321','district','新兴县','112.225174','22.695915','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165174,'445302','445300','0766','445302','district','云城区','112.043945','22.92815','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165175,'445303','445300','0766','445303','district','云安区','112.002947','23.070334','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165176,'445200','440000','0663','445200','city','揭阳市','116.372732','23.550968','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165177,'445224','445200','0663','445224','district','惠来县','116.295038','23.033889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165178,'445202','445200','0663','445202','district','榕城区','116.36714','23.525918','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165179,'445281','445200','0663','445281','district','普宁市','116.165646','23.297742','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165180,'445222','445200','0663','445222','district','揭西县','115.841742','23.431314','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165181,'445203','445200','0663','445203','district','揭东区','116.411928','23.567252','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165182,'445100','440000','0768','445100','city','潮州市','116.621901','23.657662','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165183,'445122','445100','0768','445122','district','饶平县','117.0045','23.663294','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165184,'445103','445100','0768','445103','district','潮安区','116.676971','23.463598','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165185,'445102','445100','0768','445102','district','湘桥区','116.628343','23.675104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165186,'440200','440000','0751','440200','city','韶关市','113.597324','24.810977','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165187,'440224','440200','0751','440224','district','仁化县','113.749175','25.085764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165188,'440282','440200','0751','440282','district','南雄市','114.31184','25.117653','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165189,'440232','440200','0751','440232','district','乳源瑶族自治县','113.275875','24.775856','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165190,'440222','440200','0751','440222','district','始兴县','114.061998','24.953908','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165191,'440204','440200','0751','440204','district','浈江区','113.611077','24.804898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165192,'440203','440200','0751','440203','district','武江区','113.58792','24.7929','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165193,'440205','440200','0751','440205','district','曲江区','113.604591','24.682826','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165194,'440281','440200','0751','440281','district','乐昌市','113.347669','25.129892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165195,'440233','440200','0751','440233','district','新丰县','114.206641','24.059909','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165196,'440229','440200','0751','440229','district','翁源县','114.129986','24.350581','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165197,'440100','440000','020','440100','city','广州市','113.264499','23.130061','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165198,'440105','440100','020','440105','district','海珠区','113.317412','23.084003','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165199,'440117','440100','020','440117','district','从化区','113.586329','23.54915','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165200,'440114','440100','020','440114','district','花都区','113.220125','23.404326','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165201,'440115','440100','020','440115','district','南沙区','113.525178','22.801435','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165202,'440106','440100','020','440106','district','天河区','113.361597','23.124817','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165203,'440103','440100','020','440103','district','荔湾区','113.218998','23.107123','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165204,'440104','440100','020','440104','district','越秀区','113.267065','23.128673','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165205,'440118','440100','020','440118','district','增城区','113.810734','23.261452','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165206,'440112','440100','020','440112','district','黄埔区','113.480613','23.181355','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165207,'440111','440100','020','440111','district','白云区','113.2732','23.157159','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165208,'440113','440100','020','440113','district','番禺区','113.383917','22.93756','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165209,'441400','440000','0753','441400','city','梅州市','116.122046','24.288832','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165210,'441481','441400','0753','441481','district','兴宁市','115.731133','24.137296','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165211,'441427','441400','0753','441427','district','蕉岭县','116.171477','24.658963','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165212,'441426','441400','0753','441426','district','平远县','115.891235','24.566928','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165213,'441424','441400','0753','441424','district','五华县','115.775751','23.932568','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165214,'441402','441400','0753','441402','district','梅江区','116.116686','24.31065','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165215,'441403','441400','0753','441403','district','梅县区','116.081395','24.266191','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165216,'441423','441400','0753','441423','district','丰顺县','116.181895','23.739364','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165217,'441422','441400','0753','441422','district','大埔县','116.694825','24.347037','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165218,'442000','440000','0760','442000','city','中山市','113.392517','22.517024','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165219,'442000_henglanzhen','442000','0760','442000','street','横栏镇','113.223630','22.604755','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165220,'442000_xiaolanzhen','442000','0760','442000','street','小榄镇','113.320629','22.560691','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165221,'442000_shenwanzhen','442000','0760','442000','street','神湾镇','113.376318','22.276818','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165222,'442000_guzhenzhen','442000','0760','442000','street','古镇镇','113.221289','22.609652','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165223,'442000_gangkouzhen','442000','0760','442000','street','港口镇','113.354019','22.602694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165224,'442000_sanxiangzhen','442000','0760','442000','street','三乡镇','113.431869','22.387876','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165225,'442000_shiqijiedao','442000','0760','442000','street','石岐街道','113.404120','22.548351','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165226,'442000_dayongzhen','442000','0760','442000','street','大涌镇','113.296691','22.483379','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165227,'442000_fushazhen','442000','0760','442000','street','阜沙镇','113.340305','22.640609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165228,'442000_xiqujiedao','442000','0760','442000','street','西区街道','113.314421','22.564923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165229,'442000_shaxizhen','442000','0760','442000','street','沙溪镇','113.343971','22.524791','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165230,'442000_dongfengzhen','442000','0760','442000','street','东凤镇','113.307919','22.680266','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165231,'442000_tanzhouzhen','442000','0760','442000','street','坦洲镇','113.395777','22.312037','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165232,'442000_minzhongjiedao','442000','0760','442000','street','民众街道','113.472738','22.653889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165233,'442000_sanjiaozhen','442000','0760','442000','street','三角镇','113.400593','22.640197','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165234,'442000_nantouzhen','442000','0760','442000','street','南头镇','113.299916','22.683684','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165235,'442000_huangpuzhen','442000','0760','442000','street','黄圃镇','113.359373','22.681261','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165236,'442000_banfuzhen','442000','0760','442000','street','板芙镇','113.368695','22.406764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165237,'442000_nanqujiedao','442000','0760','442000','street','南区街道','113.367676','22.488858','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165238,'442000_dongqujiedao','442000','0760','442000','street','东区街道','113.436188','22.514086','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165239,'442000_wuguishanjiedao','442000','0760','442000','street','五桂山街道','113.476817','22.428448','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165240,'442000_zhongshangangjiedao','442000','0760','442000','street','中山港街道','113.418677','22.549913','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165241,'442000_nanlangjiedao','442000','0760','442000','street','南朗街道','113.486698','22.525740','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165242,'441600','440000','0762','441600','city','河源市','114.700215','23.744276','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165243,'441623','441600','0762','441623','district','连平县','114.488358','24.369552','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165244,'441621','441600','0762','441621','district','紫金县','115.183814','23.635597','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165245,'441625','441600','0762','441625','district','东源县','114.7466','23.790079','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165246,'441624','441600','0762','441624','district','和平县','114.935634','24.469177','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165247,'441622','441600','0762','441622','district','龙川县','115.26002','24.100599','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165248,'441602','441600','0762','441602','district','源城区','114.703305','23.734055','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165249,'441800','440000','0763','441800','city','清远市','113.056098','23.682064','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165250,'441882','441800','0763','441882','district','连州市','112.377255','24.780873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165251,'441826','441800','0763','441826','district','连南瑶族自治县','112.287212','24.725953','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165252,'441825','441800','0763','441825','district','连山壮族瑶族自治县','112.093726','24.570553','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165253,'441881','441800','0763','441881','district','英德市','113.401827','24.20716','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165254,'441823','441800','0763','441823','district','阳山县','112.641199','24.465234','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165255,'441821','441800','0763','441821','district','佛冈县','113.531559','23.879455','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165256,'441803','441800','0763','441803','district','清新区','113.017747','23.734677','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165257,'441802','441800','0763','441802','district','清城区','113.062612','23.697889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165258,'441900','440000','0769','441900','city','东莞市','113.751884','23.021016','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165259,'441900_qingxizhen','441900','0769','441900','street','清溪镇','114.109028','22.864049','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165260,'441900_huangjiangzhen','441900','0769','441900','street','黄江镇','114.000220','22.916267','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165261,'441900_qiaotouzhen','441900','0769','441900','street','桥头镇','114.065029','23.031536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165262,'441900_hongmeizhen','441900','0769','441900','street','洪梅镇','113.606888','23.015507','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165263,'441900_gaobuzhen','441900','0769','441900','street','高埗镇','113.772920','23.100117','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165264,'441900_mayongzhen','441900','0769','441900','street','麻涌镇','113.616702','23.088653','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165265,'441900_tangshazhen','441900','0769','441900','street','塘厦镇','114.057782','22.833564','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165266,'441900_wangniudunzhen','441900','0769','441900','street','望牛墩镇','113.675238','23.067562','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165267,'441900_xiegangzhen','441900','0769','441900','street','谢岗镇','114.171775','22.984642','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165268,'441900_zhangmutouzhen','441900','0769','441900','street','樟木头镇','114.015449','22.869270','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165269,'441900_dongkengzhen','441900','0769','441900','street','东坑镇','113.921005','22.989113','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165270,'441900_nanchengjiedao','441900','0769','441900','street','南城街道','113.768809','22.941355','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165271,'441900_guanchengjiedao','441900','0769','441900','street','莞城街道','113.756157','23.026359','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165272,'441900_qishizhen','441900','0769','441900','street','企石镇','113.989933','23.054588','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165273,'441900_wanjiangjiedao','441900','0769','441900','street','万江街道','113.714249','23.004871','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165274,'441900_daojiaozhen','441900','0769','441900','street','道滘镇','113.687246','23.004094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165275,'441900_dongchengjiedao','441900','0769','441900','street','东城街道','113.772060','22.941938','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165276,'441900_changpingzhen','441900','0769','441900','street','常平镇','114.041069','23.007892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165277,'441900_fenggangzhen','441900','0769','441900','street','凤岗镇','114.139781','22.777948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165278,'441900_shipaizhen','441900','0769','441900','street','石排镇','113.989827','23.069114','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165279,'441900_chashanzhen','441900','0769','441900','street','茶山镇','113.840966','23.092760','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165280,'441900_shatianzhen','441900','0769','441900','street','沙田镇','113.582201','22.942601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165281,'441900_liaobuzhen','441900','0769','441900','street','寮步镇','113.917593','22.981271','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165282,'441900_henglizhen','441900','0769','441900','street','横沥镇','114.030270','23.035086','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165283,'441900_zhongtangzhen','441900','0769','441900','street','中堂镇','113.612748','23.042585','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165284,'441900_houjiezhen','441900','0769','441900','street','厚街镇','113.631616','22.934094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165285,'441900_humenzhen','441900','0769','441900','street','虎门镇','113.631506','22.832134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165286,'441900_zhanganzhen','441900','0769','441900','street','长安镇','113.802243','22.838519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165287,'441900_shijiezhen','441900','0769','441900','street','石碣镇','113.772148','23.095617','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165288,'441900_shilongzhen','441900','0769','441900','street','石龙镇','113.859745','23.087788','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165289,'441900_dalangzhen','441900','0769','441900','street','大朗镇','113.948398','22.866832','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165290,'441900_dalingshanzhen','441900','0769','441900','street','大岭山镇','113.807913','22.948048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165291,'150000','100000','','150000','province','内蒙古自治区','111.765226','40.818233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165292,'150300','150000','0473','150300','city','乌海市','106.79415','39.655048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165293,'150302','150300','0473','150302','district','海勃湾区','106.8228','39.690873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165294,'150304','150300','0473','150304','district','乌达区','106.726043','39.505609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165295,'150303','150300','0473','150303','district','海南区','106.891472','39.441803','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165296,'150800','150000','0478','150800','city','巴彦淖尔市','107.387767','40.742987','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165297,'150824','150800','0478','150824','district','乌拉特中旗','108.513653','41.58813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165298,'150822','150800','0478','150822','district','磴口县','107.008288','40.330534','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165299,'150825','150800','0478','150825','district','乌拉特后旗','107.074748','41.08412','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165300,'150802','150800','0478','150802','district','临河区','107.363536','40.750969','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165301,'150826','150800','0478','150826','district','杭锦后旗','107.151296','40.886596','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165302,'150823','150800','0478','150823','district','乌拉特前旗','108.652114','40.737018','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165303,'150821','150800','0478','150821','district','五原县','108.267466','41.088446','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165304,'150200','150000','0472','150200','city','包头市','109.95315','40.621327','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165305,'150221','150200','0472','150221','district','土默特右旗','110.527831','40.578253','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165306,'150223','150200','0472','150223','district','达尔罕茂明安联合旗','110.432626','41.698992','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165307,'150206','150200','0472','150206','district','白云鄂博矿区','109.973195','41.769956','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165308,'150222','150200','0472','150222','district','固阳县','110.060055','41.034757','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165309,'150202','150200','0472','150202','district','东河区','110.044008','40.57626','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165310,'150205','150200','0472','150205','district','石拐区','110.060783','40.676736','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165311,'150204','150200','0472','150204','district','青山区','109.902157','40.644081','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165312,'150203','150200','0472','150203','district','昆都仑区','109.840249','40.658075','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165313,'150207','150200','0472','150207','district','九原区','109.968082','40.611346','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165314,'150700','150000','0470','150700','city','呼伦贝尔市','119.77845','49.166536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165315,'150785','150700','0470','150785','district','根河市','121.520165','50.779758','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165316,'150782','150700','0470','150782','district','牙克石市','120.711639','49.285947','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165317,'150725','150700','0470','150725','district','陈巴尔虎旗','119.424026','49.328916','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165318,'150702','150700','0470','150702','district','海拉尔区','119.824542','49.234715','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165319,'150724','150700','0470','150724','district','鄂温克族自治旗','119.755253','49.146692','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165320,'150721','150700','0470','150721','district','阿荣旗','123.458943','48.126553','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165321,'150783','150700','0470','150783','district','扎兰屯市','122.708475','48.028396','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165322,'150703','150700','0470','150703','district','扎赉诺尔区','117.669939','49.511213','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165323,'150781','150700','0470','150781','district','满洲里市','117.379134','49.59862','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165324,'150727','150700','0470','150727','district','新巴尔虎右旗','116.8237','48.671865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165325,'150723','150700','0470','150723','district','鄂伦春自治旗','123.725643','50.591604','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165326,'150784','150700','0470','150784','district','额尔古纳市','120.180506','50.243102','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165327,'150722','150700','0470','150722','district','莫力达瓦达斡尔族自治旗','124.519023','48.477728','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165328,'150726','150700','0470','150726','district','新巴尔虎左旗','118.269782','48.21827','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165329,'152200','150000','0482','152200','city','兴安盟','122.037796','46.082373','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165330,'152202','152200','0482','152202','district','阿尔山市','119.943577','47.17744','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165331,'152222','152200','0482','152222','district','科尔沁右翼中旗','121.476357','45.060728','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165332,'152224','152200','0482','152224','district','突泉县','121.593972','45.381918','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165333,'152223','152200','0482','152223','district','扎赉特旗','122.899627','46.723154','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165334,'152221','152200','0482','152221','district','科尔沁右翼前旗','121.952638','46.079664','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165335,'152201','152200','0482','152201','district','乌兰浩特市','122.093309','46.072233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165336,'150100','150000','0471','150100','city','呼和浩特市','111.748814','40.842127','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165337,'150103','150100','0471','150103','district','回民区','111.623485','40.808906','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165338,'150125','150100','0471','150125','district','武川县','111.451226','41.096511','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165339,'150122','150100','0471','150122','district','托克托县','111.193879','40.277703','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165340,'150121','150100','0471','150121','district','土默特左旗','111.16373','40.729044','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165341,'150102','150100','0471','150102','district','新城区','111.665325','40.858271','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165342,'150124','150100','0471','150124','district','清水河县','111.647351','39.921224','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165343,'150123','150100','0471','150123','district','和林格尔县','111.821695','40.379226','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165344,'150105','150100','0471','150105','district','赛罕区','111.701166','40.792508','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165345,'150104','150100','0471','150104','district','玉泉区','111.674157','40.753054','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165346,'150500','150000','0475','150500','city','通辽市','122.243309','43.653566','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165347,'150581','150500','0475','150581','district','霍林郭勒市','119.681242','45.533598','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165348,'150523','150500','0475','150523','district','开鲁县','121.319216','43.601446','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165349,'150525','150500','0475','150525','district','奈曼旗','120.657813','42.867433','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165350,'150524','150500','0475','150524','district','库伦旗','121.810629','42.735556','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165351,'150526','150500','0475','150526','district','扎鲁特旗','120.917953','44.567093','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165352,'150521','150500','0475','150521','district','科尔沁左翼中旗','123.312202','44.126606','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165353,'150522','150500','0475','150522','district','科尔沁左翼后旗','122.35677','42.935105','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165354,'150502','150500','0475','150502','district','科尔沁区','122.25545','43.623133','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165355,'150400','150000','0476','150400','city','赤峰市','118.887613','42.256876','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165356,'150422','150400','0476','150422','district','巴林左旗','119.362832','43.961547','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165357,'150423','150400','0476','150423','district','巴林右旗','118.664235','43.534171','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165358,'150424','150400','0476','150424','district','林西县','118.05545','43.61812','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165359,'150430','150400','0476','150430','district','敖汉旗','119.921413','42.290731','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165360,'150402','150400','0476','150402','district','红山区','118.953989','42.296317','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165361,'150426','150400','0476','150426','district','翁牛特旗','119.006187','42.936529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165362,'150425','150400','0476','150425','district','克什克腾旗','117.545413','43.265057','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165363,'150429','150400','0476','150429','district','宁城县','119.320056','41.600193','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165364,'150421','150400','0476','150421','district','阿鲁科尔沁旗','120.065533','43.872398','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165365,'150403','150400','0476','150403','district','元宝山区','119.288475','42.039602','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165366,'150404','150400','0476','150404','district','松山区','118.916156','42.299795','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165367,'150428','150400','0476','150428','district','喀喇沁旗','118.701934','41.927103','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165368,'152500','150000','0479','152500','city','锡林郭勒盟','116.047387','43.933212','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165369,'152525','152500','0479','152525','district','东乌珠穆沁旗','116.97526','45.497329','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165370,'152522','152500','0479','152522','district','阿巴嘎旗','114.950185','44.022831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165371,'152526','152500','0479','152526','district','西乌珠穆沁旗','117.608668','44.587746','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165372,'152523','152500','0479','152523','district','苏尼特左旗','113.667171','43.859718','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165373,'152502','152500','0479','152502','district','锡林浩特市','116.085814','43.933417','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165374,'152501','152500','0479','152501','district','二连浩特市','111.949594','43.64285','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165375,'152524','152500','0479','152524','district','苏尼特右旗','112.641806','42.742417','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165376,'152530','152500','0479','152530','district','正蓝旗','115.991648','42.241815','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165377,'152529','152500','0479','152529','district','正镶白旗','115.029748','42.287493','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165378,'152528','152500','0479','152528','district','镶黄旗','113.847287','42.232371','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165379,'152531','152500','0479','152531','district','多伦县','116.485549','42.203454','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165380,'152527','152500','0479','152527','district','太仆寺旗','115.283173','41.876889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165381,'150900','150000','0474','150900','city','乌兰察布市','113.132227','40.994526','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165382,'150929','150900','0474','150929','district','四子王旗','111.706663','41.533542','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165383,'150922','150900','0474','150922','district','化德县','114.01029','41.904123','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165384,'150923','150900','0474','150923','district','商都县','113.577778','41.562176','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165385,'150927','150900','0474','150927','district','察哈尔右翼中旗','112.635348','41.277449','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165386,'150928','150900','0474','150928','district','察哈尔右翼后旗','113.191505','41.435937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165387,'150921','150900','0474','150921','district','卓资县','112.577716','40.894618','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165388,'150902','150900','0474','150902','district','集宁区','113.168973','41.000742','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165389,'150926','150900','0474','150926','district','察哈尔右翼前旗','113.212409','40.783551','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165390,'150924','150900','0474','150924','district','兴和县','113.834176','40.8723','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165391,'150981','150900','0474','150981','district','丰镇市','113.109875','40.437022','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165392,'150925','150900','0474','150925','district','凉城县','112.504243','40.532358','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165393,'152900','150000','0483','152900','city','阿拉善盟','105.729135','38.851554','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165394,'152923','152900','0483','152923','district','额济纳旗','101.055861','41.953963','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165395,'152922','152900','0483','152922','district','阿拉善右旗','101.666917','39.216185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165396,'152921','152900','0483','152921','district','阿拉善左旗','105.666208','38.833589','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165397,'150600','150000','0477','150600','city','鄂尔多斯市','109.782473','39.608744','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165398,'150625','150600','0477','150625','district','杭锦旗','108.736011','39.833243','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165399,'150621','150600','0477','150621','district','达拉特旗','110.034133','40.412766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165400,'150624','150600','0477','150624','district','鄂托克旗','107.975948','39.089549','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165401,'150623','150600','0477','150623','district','鄂托克前旗','107.47733','38.182402','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165402,'150627','150600','0477','150627','district','伊金霍洛旗','109.747435','39.565064','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165403,'150603','150600','0477','150603','district','康巴什区','109.858586','39.60793','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165404,'150602','150600','0477','150602','district','东胜区','109.963403','39.823066','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165405,'150622','150600','0477','150622','district','准格尔旗','111.239436','39.864923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165406,'150626','150600','0477','150626','district','乌审旗','108.819485','38.60453','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165407,'230000','100000','','230000','province','黑龙江省','126.661998','45.742253','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165408,'232700','230000','0457','232700','city','大兴安岭地区','124.11786','50.41129','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165409,'232721','232700','0457','232721','district','呼玛县','126.651856','51.725924','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165410,'232718','232700','0457','232718','district','加格达奇区','124.139742','50.408822','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165411,'232701','232700','0457','232701','district','漠河市','122.539313','52.972465','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165412,'232722','232700','0457','232722','district','塔河县','124.709733','52.334512','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165413,'230900','230000','0464','230900','city','七台河市','131.003015','45.771178','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165414,'230921','230900','0464','230921','district','勃利县','130.592009','45.755856','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165415,'230903','230900','0464','230903','district','桃山区','131.020046','45.765733','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165416,'230902','230900','0464','230902','district','新兴区','130.93226','45.816579','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165417,'230904','230900','0464','230904','district','茄子河区','131.067545','45.785755','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165418,'230400','230000','0468','230400','city','鹤岗市','130.297687','47.350659','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165419,'230422','230400','0468','230422','district','绥滨县','131.852863','47.289522','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165420,'230403','230400','0468','230403','district','工农区','130.27472','47.318971','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165421,'230407','230400','0468','230407','district','兴山区','130.303598','47.357698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165422,'230405','230400','0468','230405','district','兴安区','130.239289','47.252805','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165423,'230404','230400','0468','230404','district','南山区','130.285991','47.315121','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165424,'230402','230400','0468','230402','district','向阳区','130.294331','47.342478','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165425,'230421','230400','0468','230421','district','萝北县','130.820566','47.578979','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165426,'230406','230400','0468','230406','district','东山区','130.317151','47.338571','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165427,'230100','230000','0451','230100','city','哈尔滨市','126.53505','45.802981','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165428,'230126','230100','0451','230126','district','巴彦县','127.403521','46.086182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165429,'230123','230100','0451','230123','district','依兰县','129.567777','46.325536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165430,'230128','230100','0451','230128','district','通河县','128.74629','45.990214','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165431,'230127','230100','0451','230127','district','木兰县','128.043194','45.950649','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165432,'230124','230100','0451','230124','district','方正县','128.829513','45.851673','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165433,'230125','230100','0451','230125','district','宾县','127.466372','45.746313','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165434,'230129','230100','0451','230129','district','延寿县','128.311071','45.445956','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165435,'230183','230100','0451','230183','district','尚志市','128.009218','45.209199','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165436,'230184','230100','0451','230184','district','五常市','127.167501','44.932164','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165437,'230111','230100','0451','230111','district','呼兰区','126.587704','45.889557','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165438,'230109','230100','0451','230109','district','松北区','126.516602','45.794991','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165439,'230113','230100','0451','230113','district','双城区','126.31279','45.382873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165440,'230102','230100','0451','230102','district','道里区','126.616912','45.755832','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165441,'230108','230100','0451','230108','district','平房区','126.63675','45.597529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165442,'230104','230100','0451','230104','district','道外区','126.649094','45.792351','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165443,'230112','230100','0451','230112','district','阿城区','126.957984','45.548671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165444,'230110','230100','0451','230110','district','香坊区','126.662959','45.707871','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165445,'230103','230100','0451','230103','district','南岗区','126.66882','45.759967','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165446,'230800','230000','0454','230800','city','佳木斯市','130.318916','46.800002','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165447,'230828','230800','0454','230828','district','汤原县','129.904747','46.730623','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165448,'230803','230800','0454','230803','district','向阳区','130.365263','46.807808','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165449,'230822','230800','0454','230822','district','桦南县','130.553472','46.239314','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165450,'230882','230800','0454','230882','district','富锦市','132.037659','47.250144','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165451,'230881','230800','0454','230881','district','同江市','132.510113','47.642475','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165452,'230883','230800','0454','230883','district','抚远市','134.30786','48.365027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165453,'230826','230800','0454','230826','district','桦川县','130.71908','47.023001','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165454,'230804','230800','0454','230804','district','前进区','130.375254','46.81405','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165455,'230805','230800','0454','230805','district','东风区','130.403588','46.822609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165456,'230811','230800','0454','230811','district','郊区','130.327182','46.809596','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165457,'230500','230000','0469','230500','city','双鸭山市','131.141563','46.676157','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165458,'230522','230500','0469','230522','district','友谊县','131.807815','46.767299','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165459,'230502','230500','0469','230502','district','尖山区','131.158372','46.646083','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165460,'230503','230500','0469','230503','district','岭东区','131.165067','46.592663','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165461,'230506','230500','0469','230506','district','宝山区','131.401589','46.577167','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165462,'230523','230500','0469','230523','district','宝清县','132.196907','46.327335','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165463,'230521','230500','0469','230521','district','集贤县','131.141452','46.728448','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165464,'230505','230500','0469','230505','district','四方台区','131.337636','46.597143','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165465,'230524','230500','0469','230524','district','饶河县','134.014125','46.79726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165466,'231100','230000','0456','231100','city','黑河市','127.528226','50.244887','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165467,'231181','231100','0456','231181','district','北安市','126.490989','48.241168','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165468,'231123','231100','0456','231123','district','逊克县','128.478698','49.56429','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165469,'231182','231100','0456','231182','district','五大连池市','126.205446','48.517342','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165470,'231183','231100','0456','231183','district','嫩江市','125.221192','49.185766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165471,'231124','231100','0456','231124','district','孙吴县','127.336163','49.425645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165472,'231102','231100','0456','231102','district','爱辉区','127.500703','50.252361','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165473,'231000','230000','0453','231000','city','牡丹江市','129.632928','44.551486','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165474,'231004','231000','0453','231004','district','爱民区','129.591227','44.595897','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165475,'231081','231000','0453','231081','district','绥芬河市','131.151805','44.412487','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165476,'231002','231000','0453','231002','district','东安区','129.626651','44.58125','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165477,'231086','231000','0453','231086','district','东宁市','131.124839','44.090361','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165478,'231084','231000','0453','231084','district','宁安市','129.482505','44.340617','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165479,'231005','231000','0453','231005','district','西安区','129.616021','44.577611','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165480,'231083','231000','0453','231083','district','海林市','129.380756','44.594017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165481,'231085','231000','0453','231085','district','穆棱市','130.52446','44.918842','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165482,'231003','231000','0453','231003','district','阳明区','129.635836','44.595851','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165483,'231025','231000','0453','231025','district','林口县','130.282286','45.279754','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165484,'230700','230000','0458','230700','city','伊春市','128.840863','47.728332','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165485,'230722','230700','0458','230722','district','嘉荫县','130.402406','48.888613','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165486,'230723','230700','0458','230723','district','汤旺县','129.570935','48.454639','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165487,'230724','230700','0458','230724','district','丰林县','129.533661','48.290566','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165488,'230717','230700','0458','230717','district','伊美区','128.907156','47.728257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165489,'230718','230700','0458','230718','district','乌翠区','128.68003','47.729319','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165490,'230719','230700','0458','230719','district','友好区','128.836341','47.840801','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165491,'230751','230700','0458','230751','district','金林区','129.428839','47.413019','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165492,'230726','230700','0458','230726','district','南岔县','129.283584','47.139009','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165493,'230725','230700','0458','230725','district','大箐山县','129.020519','47.028313','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165494,'230781','230700','0458','230781','district','铁力市','128.032554','46.986604','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165495,'230300','230000','0467','230300','city','鸡西市','130.969385','45.295087','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165496,'230304','230300','0467','230304','district','滴道区','130.844193','45.349068','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165497,'230306','230300','0467','230306','district','城子河区','131.011504','45.338342','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165498,'230302','230300','0467','230302','district','鸡冠区','130.981342','45.303892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165499,'230307','230300','0467','230307','district','麻山区','130.477691','45.211863','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165500,'230303','230300','0467','230303','district','恒山区','130.90466','45.21119','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165501,'230305','230300','0467','230305','district','梨树区','130.69699','45.092046','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165502,'230321','230300','0467','230321','district','鸡东县','131.124083','45.260413','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165503,'230381','230300','0467','230381','district','虎林市','132.937002','45.763262','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165504,'230382','230300','0467','230382','district','密山市','131.846824','45.529482','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165505,'230200','230000','0452','230200','city','齐齐哈尔市','123.918193','47.354892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165506,'230229','230200','0452','230229','district','克山县','125.875103','48.037748','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165507,'230225','230200','0452','230225','district','甘南县','123.507935','47.921698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165508,'230230','230200','0452','230230','district','克东县','126.249124','48.041562','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165509,'230223','230200','0452','230223','district','依安县','125.306161','47.893442','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165510,'230227','230200','0452','230227','district','富裕县','124.474411','47.774038','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165511,'230208','230200','0452','230208','district','梅里斯达斡尔族区','123.752482','47.309755','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165512,'230207','230200','0452','230207','district','碾子山区','122.887548','47.516614','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165513,'230221','230200','0452','230221','district','龙江县','123.204953','47.338512','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165514,'230203','230200','0452','230203','district','建华区','123.95555','47.354212','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165515,'230204','230200','0452','230204','district','铁锋区','123.978079','47.340719','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165516,'230206','230200','0452','230206','district','富拉尔基区','123.628926','47.20873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165517,'230202','230200','0452','230202','district','龙沙区','123.958447','47.317103','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165518,'230205','230200','0452','230205','district','昂昂溪区','123.822137','47.154806','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165519,'230224','230200','0452','230224','district','泰来县','123.416631','46.393694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165520,'230231','230200','0452','230231','district','拜泉县','126.09905','47.59586','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165521,'230281','230200','0452','230281','district','讷河市','124.88293','48.466829','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165522,'231200','230000','0455','231200','city','绥化市','126.968714','46.654147','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165523,'231226','231200','0455','231226','district','绥棱县','127.114928','47.235814','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165524,'231283','231200','0455','231283','district','海伦市','126.930191','47.450661','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165525,'231224','231200','0455','231224','district','庆安县','127.507586','46.880628','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165526,'231202','231200','0455','231202','district','北林区','126.984995','46.638114','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165527,'231221','231200','0455','231221','district','望奎县','126.486333','46.832185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165528,'231223','231200','0455','231223','district','青冈县','126.099314','46.70398','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165529,'231225','231200','0455','231225','district','明水县','125.90601','47.173649','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165530,'231222','231200','0455','231222','district','兰西县','126.287734','46.252966','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165531,'231282','231200','0455','231282','district','肇东市','125.962419','46.050664','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165532,'231281','231200','0455','231281','district','安达市','125.307629','46.451882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165533,'230600','230000','0459','230600','city','大庆市','125.104078','46.589498','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165534,'230605','230600','0459','230605','district','红岗区','124.891041','46.398567','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165535,'230606','230600','0459','230606','district','大同区','124.812221','46.039972','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165536,'230623','230600','0459','230623','district','林甸县','124.863628','47.171677','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165537,'230604','230600','0459','230604','district','让胡路区','124.889858','46.642567','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165538,'230624','230600','0459','230624','district','杜尔伯特蒙古族自治县','124.442829','46.862348','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165539,'230622','230600','0459','230622','district','肇源县','125.078311','45.518982','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165540,'230602','230600','0459','230602','district','萨尔图区','125.135269','46.629281','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165541,'230603','230600','0459','230603','district','龙凤区','125.135093','46.562369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165542,'230621','230600','0459','230621','district','肇州县','125.268449','45.699543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165543,'650000','100000','','650000','province','新疆维吾尔自治区','87.628579','43.793301','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165544,'659005','650000','1906','659005','city','北屯市','87.834419','47.326733','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165545,'659005_haichuanzhen','659005','1906','659005','street','海川镇','87.518571','47.409865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165546,'659005_fengqingzhen','659005','1906','659005','street','丰庆镇','87.927121','47.333864','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165547,'659005_shuangquzhen','659005','1906','659005','street','双渠镇','88.122468','47.126579','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165548,'659005_beitunzhen','659005','1906','659005','street','北屯镇','87.871109','47.357426','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165549,'659006','650000','1996','659006','city','铁门关市','85.670291','41.862997','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165550,'659006_boguqizhen','659006','1996','659006','street','博古其镇','85.584894','41.882542','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165551,'659006_shuangfengzhen','659006','1996','659006','street','双丰镇','85.635217','41.880304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165552,'659007','650000','1909','659007','city','双河市','82.35365587','44.84052409','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165553,'659007_bingtuanbashijiutuan','659007','1909','659007','street','兵团八十九团','82.455805','44.812134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165554,'659007_bohezhen','659007','1909','659007','street','博河镇','82.158974','44.796350','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165555,'659007_shuangqiaozhen','659007','1909','659007','street','双桥镇','82.490803','44.746864','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165556,'659007_shiyuzhen','659007','1909','659007','street','石峪镇','82.066675','45.040830','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165557,'659007_shuanglezhen','659007','1909','659007','street','双乐镇','82.473143','44.826624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165558,'652700','650000','0909','652700','city','博尔塔拉蒙古自治州','82.066363','44.906039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165559,'652723','652700','0909','652723','district','温泉县','81.024827','44.968857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165560,'652702','652700','0909','652702','district','阿拉山口市','82.554609','45.173274','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165561,'652701','652700','0909','652701','district','博乐市','82.051433','44.853882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165562,'652722','652700','0909','652722','district','精河县','82.890709','44.599202','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165563,'659008','650000','1999','659008','city','可克达拉市','80.994153','43.940381','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165564,'659008_zhangfengzhen','659008','1999','659008','street','长丰镇','80.990266','43.889725','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165565,'659008_jintunzhen','659008','1999','659008','street','金屯镇','80.606773','43.765174','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165566,'659008_weihuzhen','659008','1999','659008','street','苇湖镇','80.648370','44.180308','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165567,'659008_yushuzhuangzhen','659008','1999','659008','street','榆树庄镇','80.484243','43.931223','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165568,'659008_doulatakouan','659008','1999','659008','street','都拉塔口岸','80.661467','43.706479','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165569,'659008_jinliangzhen','659008','1999','659008','street','金梁镇','81.021339','43.908278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165570,'654200','650000','0901','654200','city','塔城地区','82.980316','46.745364','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165571,'654201','654200','0901','654201','district','塔城市','82.986923','46.751669','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165572,'654226','654200','0901','654226','district','和布克赛尔蒙古自治县','85.728328','46.793235','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165573,'654221','654200','0901','654221','district','额敏县','83.628303','46.524673','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165574,'654225','654200','0901','654225','district','裕民县','82.982252','46.201049','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165575,'654224','654200','0901','654224','district','托里县','83.606372','45.948935','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165576,'654202','654200','0901','654202','district','乌苏市','84.713762','44.418693','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165577,'654203','654200','0901','654203','district','沙湾市','85.619483','44.326267','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165578,'659009','650000','1903','659009','city','昆玉市','79.270193','37.215372','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165579,'659009_laobingzhen','659009','1903','659009','street','老兵镇','79.603916','37.366638','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165580,'659009_kunmuzhen','659009','1903','659009','street','昆牧镇','81.029494','36.315217','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165581,'659009_kunquanzhen','659009','1903','659009','street','昆泉镇','78.514768','37.566112','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165582,'659009_bingtuanerersituan','659009','1903','659009','street','兵团二二四团','79.377194','37.416433','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165583,'653200','650000','0903','653200','city','和田地区','79.921646','37.114406','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165584,'653226','653200','0903','653226','district','于田县','81.677417','36.85708','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165585,'653227','653200','0903','653227','district','民丰县','82.695946','37.064428','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165586,'653201','653200','0903','653201','district','和田市','79.912881','37.112246','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165587,'653224','653200','0903','653224','district','洛浦县','80.179911','37.066226','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165588,'653223','653200','0903','653223','district','皮山县','78.28548','37.578264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165589,'653222','653200','0903','653222','district','墨玉县','79.728434','37.277518','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165590,'653225','653200','0903','653225','district','策勒县','80.801433','36.99785','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165591,'653221','653200','0903','653221','district','和田县','79.848009','37.248776','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165592,'654300','650000','0906','654300','city','阿勒泰地区','88.141253','47.844924','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165593,'654321','654300','0906','654321','district','布尔津县','86.875043','47.701892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165594,'654324','654300','0906','654324','district','哈巴河县','86.418621','48.060846','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165595,'654322','654300','0906','654322','district','富蕴县','89.525463','46.994046','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165596,'654326','654300','0906','654326','district','吉木乃县','85.874096','47.443101','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165597,'654325','654300','0906','654325','district','青河县','90.375159','46.678532','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165598,'654323','654300','0906','654323','district','福海县','87.486703','47.111918','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165599,'654301','654300','0906','654301','district','阿勒泰市','88.131842','47.827308','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165600,'659001','650000','0993','659001','city','石河子市','86.080397','44.305368','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165601,'659001_bingtuanyiwuertuan','659001','0993','659001','street','兵团一五二团','86.070393','44.282700','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165602,'659001_xiangyangjiedao','659001','0993','659001','street','向阳街道','86.039719','44.342873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165603,'659001_hongshanjiedao','659001','0993','659001','street','红山街道','86.048043','44.268209','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165604,'659001_bingtuanyisisituan','659001','0993','659001','street','兵团一四四团','85.912346','44.252475','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165605,'659001_dongchengjiedao','659001','0993','659001','street','东城街道','86.068708','44.287316','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165606,'659001_shihezizhen','659001','0993','659001','street','石河子镇','86.102202','44.135229','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165607,'659001_laojiejiedao','659001','0993','659001','street','老街街道','85.990921','44.349559','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165608,'659001_xinchengjiedao','659001','0993','659001','street','新城街道','85.982288','44.289311','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165609,'659001_beiquanzhen','659001','0993','659001','street','北泉镇','86.098308','44.434587','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165610,'652300','650000','0994','652300','city','昌吉回族自治州','87.308995','44.011044','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165611,'652325','652300','0994','652325','district','奇台县','89.593879','44.022001','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165612,'652324','652300','0994','652324','district','玛纳斯县','86.20488','44.284601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165613,'652323','652300','0994','652323','district','呼图壁县','86.871532','44.179362','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165614,'652328','652300','0994','652328','district','木垒哈萨克自治县','90.286013','43.834631','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165615,'652302','652300','0994','652302','district','阜康市','87.953826','44.164525','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165616,'652327','652300','0994','652327','district','吉木萨尔县','89.179698','44.000404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165617,'652301','652300','0994','652301','district','昌吉市','87.267432','44.014468','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165618,'652800','650000','0996','652800','city','巴音郭楞蒙古自治州','86.145298','41.764115','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165619,'652827','652800','0996','652827','district','和静县','86.384065','42.323625','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165620,'652828','652800','0996','652828','district','和硕县','86.877688','42.28361','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165621,'652826','652800','0996','652826','district','焉耆回族自治县','86.57434','42.059509','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165622,'652829','652800','0996','652829','district','博湖县','86.632116','41.980745','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165623,'652824','652800','0996','652824','district','若羌县','88.167226','39.022626','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165624,'652825','652800','0996','652825','district','且末县','85.529619','38.145749','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165625,'652801','652800','0996','652801','district','库尔勒市','86.174633','41.725891','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165626,'652822','652800','0996','652822','district','轮台县','84.251508','41.778043','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165627,'652823','652800','0996','652823','district','尉犁县','86.261613','41.343871','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165628,'654000','650000','0999','654000','city','伊犁哈萨克自治州','81.323691','43.917106','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165629,'654021','654000','0999','654021','district','伊宁县','81.52745','43.977119','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165630,'654024','654000','0999','654024','district','巩留县','82.231219','43.48313','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165631,'654026','654000','0999','654026','district','昭苏县','81.130974','43.157293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165632,'654027','654000','0999','654027','district','特克斯县','81.835732','43.218435','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165633,'654023','654000','0999','654023','district','霍城县','80.878845','44.056329','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165634,'654022','654000','0999','654022','district','察布查尔锡伯自治县','81.151337','43.840726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165635,'654004','654000','0999','654004','district','霍尔果斯市','80.414614','44.218381','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165636,'654002','654000','0999','654002','district','伊宁市','81.277715','43.908021','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165637,'654003','654000','0999','654003','district','奎屯市','84.903216','44.426452','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165638,'654025','654000','0999','654025','district','新源县','83.233002','43.434803','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165639,'654028','654000','0999','654028','district','尼勒克县','82.511884','43.798627','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165640,'659002','650000','1997','659002','city','阿拉尔市','81.280532','40.547205','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165641,'659002_matanzhen','659002','1997','659002','street','玛滩镇','80.654296','40.656858','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165642,'659002_huaqiaozhen','659002','1997','659002','street','花桥镇','81.561898','40.627686','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165643,'659002_shahezhen','659002','1997','659002','street','沙河镇','80.734788','41.289273','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165644,'659002_tuokayixiang','659002','1997','659002','street','托喀依乡','81.354140','40.581819','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165645,'659002_qingsonglujiedao','659002','1997','659002','street','青松路街道','81.254474','40.542004','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165646,'659002_tamenzhen','659002','1997','659002','street','塔门镇','80.799573','40.597311','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165647,'659002_nankoujiedao','659002','1997','659002','street','南口街道','81.298804','40.515367','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165648,'659002_jinyangzhen','659002','1997','659002','street','金杨镇','81.873439','40.928322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165649,'659002_xinjingzizhen','659002','1997','659002','street','新井子镇','80.027429','40.565638','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165650,'659002_jinyinchuanzhen','659002','1997','659002','street','金银川镇','80.086552','40.691135','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165651,'659002_ganquanzhen','659002','1997','659002','street','甘泉镇','79.814651','40.477280','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165652,'659002_bingtuannongyishishajingzishuiliguanlichu','659002','1997','659002','street','兵团农一师沙井子水利管理处','79.726734','40.436977','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165653,'659002_xinkailingzhen','659002','1997','659002','street','新开岭镇','80.616820','40.429603','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165654,'659002_tananzhen','659002','1997','659002','street','塔南镇','81.360828','40.548449','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165655,'659002_jinyinchuanlujiedao','659002','1997','659002','street','金银川路街道','81.262521','40.536818','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165656,'659002_xingfulujiedao','659002','1997','659002','street','幸福路街道','81.270919','40.577037','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165657,'659002_xingfuzhen','659002','1997','659002','street','幸福镇','81.665359','40.707751','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165658,'659002_changanzhen','659002','1997','659002','street','昌安镇','81.281049','40.575570','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165659,'659002_shuangchengzhen','659002','1997','659002','street','双城镇','80.403007','41.029144','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165660,'653100','650000','0998','653100','city','喀什地区','75.990618','39.470215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165661,'653129','653100','0998','653129','district','伽师县','76.723719','39.488181','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165662,'653126','653100','0998','653126','district','叶城县','77.413669','37.882994','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165663,'653125','653100','0998','653125','district','莎车县','77.223197','38.390881','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165664,'653127','653100','0998','653127','district','麦盖提县','77.609099','38.898986','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165665,'653131','653100','0998','653131','district','塔什库尔干塔吉克自治县','75.229889','37.772094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165666,'653124','653100','0998','653124','district','泽普县','77.260375','38.184639','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165667,'653130','653100','0998','653130','district','巴楚县','78.54799','39.79923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165668,'653123','653100','0998','653123','district','英吉沙县','76.175729','38.930381','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165669,'653128','653100','0998','653128','district','岳普湖县','76.821269','39.219857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165670,'653121','653100','0998','653121','district','疏附县','75.862839','39.375052','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165671,'653101','653100','0998','653101','district','喀什市','75.993936','39.46823','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165672,'653122','653100','0998','653122','district','疏勒县','76.047169','39.401173','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165673,'653000','650000','0908','653000','city','克孜勒苏柯尔克孜自治州','76.168157','39.716236','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165674,'653001','653000','0908','653001','district','阿图什市','76.084541','39.667719','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165675,'653024','653000','0908','653024','district','乌恰县','75.259228','39.7205','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165676,'653023','653000','0908','653023','district','阿合奇县','78.402073','40.937581','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165677,'653022','653000','0908','653022','district','阿克陶县','75.955053','39.147592','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165678,'650200','650000','0990','650200','city','克拉玛依市','84.889239','45.577712','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165679,'650205','650200','0990','650205','district','乌尔禾区','85.687497','46.093451','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165680,'650202','650200','0990','650202','district','独山子区','84.886973','44.328096','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165681,'650204','650200','0990','650204','district','白碱滩区','85.119047','45.685416','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165682,'650203','650200','0990','650203','district','克拉玛依区','84.867862','45.602347','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165683,'650400','650000','0995','650400','city','吐鲁番市','89.250261','42.972736','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165684,'650402','650400','0995','650402','district','高昌区','89.185891','42.942728','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165685,'650421','650400','0995','650421','district','鄯善县','90.242843','42.900575','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165686,'650422','650400','0995','650422','district','托克逊县','88.643739','42.802585','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165687,'650500','650000','0902','650500','city','哈密市','93.515053','42.819346','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165688,'650522','650500','0902','650522','district','伊吾县','94.697074','43.254978','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165689,'650521','650500','0902','650521','district','巴里坤哈萨克自治县','93.016563','43.598756','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165690,'650502','650500','0902','650502','district','伊州区','93.515085','42.827376','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165691,'659011','650000','2940','659011','city','新星市','93.74831','42.797043','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165692,'659011_bingtuanhongxingsichang','659011','2940','659011','street','兵团红星四场','94.068557','42.529865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165693,'659011_bingtuanhongxingyichang','659011','2940','659011','street','兵团红星一场','93.645240','42.686620','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165694,'659011_bingtuanhuangtiannongchang','659011','2940','659011','street','兵团黄田农场','93.719461','42.567696','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165695,'659003','650000','1998','659003','city','图木舒克市','79.074965','39.867776','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165696,'659003_haianzhen','659003','1998','659003','street','海安镇','78.756041','39.822379','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165697,'659003_tangyizhen','659003','1998','659003','street','唐驿镇','79.290232','39.988845','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165698,'659003_qianhaijiedao','659003','1998','659003','street','前海街道','79.077771','39.855038','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165699,'659003_kalabailezhen','659003','1998','659003','street','喀拉拜勒镇','79.011211','39.852615','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165700,'659003_qiganquelejiedao','659003','1998','659003','street','齐干却勒街道','79.090585','39.875314','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165701,'659003_jinhuyangzhen','659003','1998','659003','street','金胡杨镇','79.321433','40.031839','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165702,'659003_xiahezhen','659003','1998','659003','street','夏河镇','79.231481','39.954869','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165703,'659003_yonganzhen','659003','1998','659003','street','永安镇','79.192620','39.916764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165704,'659003_caohuzhen','659003','1998','659003','street','草湖镇','76.042807','39.242572','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165705,'659003_yonganbajiedao','659003','1998','659003','street','永安坝街道','79.025712','39.850697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165706,'652900','650000','0997','652900','city','阿克苏地区','80.265068','41.170712','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165707,'652926','652900','0997','652926','district','拜城县','81.851289','41.795289','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165708,'652902','652900','0997','652902','district','库车市','82.998544','41.719073','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165709,'652925','652900','0997','652925','district','新和县','82.620371','41.552097','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165710,'652924','652900','0997','652924','district','沙雅县','82.781774','41.221413','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165711,'652901','652900','0997','652901','district','阿克苏市','80.263387','41.16755','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165712,'652927','652900','0997','652927','district','乌什县','79.22118','41.222706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165713,'652928','652900','0997','652928','district','阿瓦提县','80.375053','40.643647','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165714,'652929','652900','0997','652929','district','柯坪县','79.054019','40.501645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165715,'652922','652900','0997','652922','district','温宿县','80.231563','41.273561','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165716,'650100','650000','0991','650100','city','乌鲁木齐市','87.616824','43.825377','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165717,'650107','650100','0991','650107','district','达坂城区','88.311099','43.363668','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165718,'650102','650100','0991','650102','district','天山区','87.631986','43.794312','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165719,'650121','650100','0991','650121','district','乌鲁木齐县','87.464257','43.509016','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165720,'650103','650100','0991','650103','district','沙依巴克区','87.598043','43.800994','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165721,'650106','650100','0991','650106','district','头屯河区','87.42582303','43.87605225','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165722,'650104','650100','0991','650104','district','新市区','87.592684','43.893023','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165723,'650109','650100','0991','650109','district','米东区','87.655122','43.97444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165724,'650105','650100','0991','650105','district','水磨沟区','87.64208','43.832714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165725,'659010','650000','0992','659010','city','胡杨河市','84.827592','44.692894','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165726,'659010_bingtuanyierjiutuan','659010','0992','659010','street','兵团一二九团','84.733352','44.711517','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165727,'659010_bingtuanyisanlingtuan','659010','0992','659010','street','兵团一三零团','84.642314','44.754040','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165728,'659004','650000','1994','659004','city','五家渠市','87.542852','44.166489','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165729,'659004_wutongzhen','659004','1994','659004','street','梧桐镇','87.592476','44.269442','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165730,'659004_renminlujiedao','659004','1994','659004','street','人民路街道','87.572823','44.182157','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165731,'659004_bingtuanyilingyituan','659004','1994','659004','street','兵团一零一团','87.556234','44.175160','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165732,'659004_caijiahuzhen','659004','1994','659004','street','蔡家湖镇','87.407474','44.531659','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165733,'659004_qinghulujiedao','659004','1994','659004','street','青湖路街道','87.524481','44.176392','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165734,'659004_junkenlujiedao','659004','1994','659004','street','军垦路街道','87.508160','44.188534','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165735,'420000','100000','','420000','province','湖北省','114.341552','30.546222','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165736,'420600','420000','0710','420600','city','襄阳市','112.121743','32.010161','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165737,'420683','420600','0710','420683','district','枣阳市','112.772723','32.128968','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165738,'420625','420600','0710','420625','district','谷城县','111.653077','32.26339','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165739,'420626','420600','0710','420626','district','保康县','111.261308','31.87831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165740,'420684','420600','0710','420684','district','宜城市','112.256486','31.720278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165741,'420624','420600','0710','420624','district','南漳县','111.838997','31.774649','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165742,'420607','420600','0710','420607','district','襄州区','112.211365','32.088651','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165743,'420602','420600','0710','420602','district','襄城区','112.134025','32.009932','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165744,'420606','420600','0710','420606','district','樊城区','112.135241','32.045065','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165745,'420682','420600','0710','420682','district','老河口市','111.683861','32.359068','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165746,'420300','420000','0719','420300','city','十堰市','110.798921','32.629057','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165747,'420304','420300','0719','420304','district','郧阳区','110.812101','32.834847','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165748,'420302','420300','0719','420302','district','茅箭区','110.813478','32.591847','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165749,'420324','420300','0719','420324','district','竹溪县','109.715322','32.318257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165750,'420323','420300','0719','420323','district','竹山县','110.229696','32.225039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165751,'420303','420300','0719','420303','district','张湾区','110.769132','32.652297','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165752,'420325','420300','0719','420325','district','房县','110.726754','32.04017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165753,'420381','420300','0719','420381','district','丹江口市','111.513318','32.540287','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165754,'420322','420300','0719','420322','district','郧西县','110.426005','32.993095','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165755,'420500','420000','0717','420500','city','宜昌市','111.286962','30.69217','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165756,'420527','420500','0717','420527','district','秭归县','110.97793','30.825882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165757,'420526','420500','0717','420526','district','兴山县','110.746831','31.348065','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165758,'420504','420500','0717','420504','district','点军区','111.268338','30.69343','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165759,'420582','420500','0717','420582','district','当阳市','111.78836','30.820893','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165760,'420581','420500','0717','420581','district','宜都市','111.450128','30.378444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165761,'420525','420500','0717','420525','district','远安县','111.640329','31.060904','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165762,'420529','420500','0717','420529','district','五峰土家族自治县','111.07374','30.156741','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165763,'420528','420500','0717','420528','district','长阳土家族自治县','111.20697','30.473038','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165764,'420502','420500','0717','420502','district','西陵区','111.285696','30.710765','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165765,'420506','420500','0717','420506','district','夷陵区','111.326371','30.769875','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165766,'420583','420500','0717','420583','district','枝江市','111.760616','30.425758','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165767,'420505','420500','0717','420505','district','猇亭区','111.434378','30.531133','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165768,'420503','420500','0717','420503','district','伍家岗区','111.360882','30.644048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165769,'420100','420000','027','420100','city','武汉市','114.304569','30.593354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165770,'420117','420100','027','420117','district','新洲区','114.801284','30.841304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165771,'420113','420100','027','420113','district','汉南区','114.084582','30.308776','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165772,'420114','420100','027','420114','district','蔡甸区','114.087279','30.536395','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165773,'420106','420100','027','420106','district','武昌区','114.316464','30.55418','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165774,'420115','420100','027','420115','district','江夏区','114.320884','30.37558','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165775,'420112','420100','027','420112','district','东西湖区','114.136295','30.620079','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165776,'420105','420100','027','420105','district','汉阳区','114.21859','30.554287','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165777,'420104','420100','027','420104','district','硚口区','114.214746','30.582559','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165778,'420116','420100','027','420116','district','黄陂区','114.375698','30.882305','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165779,'420111','420100','027','420111','district','洪山区','114.342664','30.500642','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165780,'420107','420100','027','420107','district','青山区','114.385424','30.639842','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165781,'420102','420100','027','420102','district','江岸区','114.309317','30.600008','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165782,'420103','420100','027','420103','district','江汉区','114.270763','30.601129','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165783,'421100','420000','0713','421100','city','黄冈市','114.872425','30.453722','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165784,'421181','421100','0713','421181','district','麻城市','115.008011','31.172917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165785,'421102','421100','0713','421102','district','黄州区','114.880104','30.434354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165786,'421124','421100','0713','421124','district','英山县','115.680953','30.734989','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165787,'421182','421100','0713','421182','district','武穴市','115.595451','29.869602','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165788,'421123','421100','0713','421123','district','罗田县','115.399149','30.783047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165789,'421121','421100','0713','421121','district','团风县','114.872364','30.643225','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165790,'421127','421100','0713','421127','district','黄梅县','115.944219','30.070453','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165791,'421125','421100','0713','421125','district','浠水县','115.265155','30.452212','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165792,'421126','421100','0713','421126','district','蕲春县','115.436423','30.226146','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165793,'421122','421100','0713','421122','district','红安县','114.618134','31.288167','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165794,'429006','420000','1728','429006','city','天门市','113.166545','30.663706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165795,'429006_hushizhen','429006','1728','429006','street','胡市镇','113.422187','30.802027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165796,'429006_huangtanzhen','429006','1728','429006','street','黄潭镇','113.038506','30.692160','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165797,'429006_duoxiangzhen','429006','1728','429006','street','多祥镇','113.357891','30.423413','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165798,'429006_chenhuguanweihui','429006','1728','429006','street','沉湖管委会','113.336326','30.513845','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165799,'429006_ganyizhen','429006','1728','429006','street','干驿镇','113.450967','30.502984','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165800,'429006_henglinzhen','429006','1728','429006','street','横林镇','113.214590','30.564294','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165801,'429006_mawanzhen','429006','1728','429006','street','马湾镇','113.312283','30.599323','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165802,'429006_jianghunongchang','429006','1728','429006','street','蒋湖农场','112.787693','30.632046','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165803,'429006_xiaobanzhen','429006','1728','429006','street','小板镇','113.263987','30.615139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165804,'429006_yuekouzhen','429006','1728','429006','street','岳口镇','113.105000','30.586764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165805,'429006_jiangchangzhen','429006','1728','429006','street','蒋场镇','112.927266','30.646031','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165806,'429006_shijiahezhen','429006','1728','429006','street','石家河镇','113.063918','30.763540','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165807,'429006_pengshizhen','429006','1728','429006','street','彭市镇','113.157308','30.431522','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165808,'429006_fozishanzhen','429006','1728','429006','street','佛子山镇','113.061395','30.699043','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165809,'429006_jiuzhenzhen','429006','1728','429006','street','九真镇','113.244103','30.788105','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165810,'429006_jinglingjiedao','429006','1728','429006','street','竟陵街道','113.182938','30.706618','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165811,'429006_houkoujiedao','429006','1728','429006','street','侯口街道','113.133899','30.652014','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165812,'429006_mayangzhen','429006','1728','429006','street','麻洋镇','113.309397','30.524900','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165813,'429006_yanglinjiedao','429006','1728','429006','street','杨林街道','113.265467','30.685636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165814,'429006_wangchangzhen','429006','1728','429006','street','汪场镇','112.978692','30.638003','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165815,'429006_baimaohunongchang','429006','1728','429006','street','白茅湖农场','113.063412','30.586804','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165816,'429006_zaoshizhen','429006','1728','429006','street','皂市镇','113.219641','30.800675','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165817,'429006_tuoshizhen','429006','1728','429006','street','拖市镇','112.841174','30.729303','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165818,'429006_jingtanxiang','429006','1728','429006','street','净潭乡','113.450669','30.646405','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165819,'429006_lushizhen','429006','1728','429006','street','卢市镇','113.396655','30.659558','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165820,'429006_zhanggangzhen','429006','1728','429006','street','张港镇','112.896375','30.654379','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165821,'429006_yuxinzhen','429006','1728','429006','street','渔薪镇','112.927266','30.646031','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165822,'429006_duobaozhen','429006','1728','429006','street','多宝镇','112.749108','30.776358','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165823,'420800','420000','0724','420800','city','荆门市','112.199009','31.035445','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165824,'420882','420800','0724','420882','district','京山市','113.119561','31.018414','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165825,'420822','420800','0724','420822','district','沙洋县','112.588675','30.709167','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165826,'420804','420800','0724','420804','district','掇刀区','112.2079','30.973397','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165827,'420881','420800','0724','420881','district','钟祥市','112.588801','31.167006','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165828,'420802','420800','0724','420802','district','东宝区','112.201657','31.05187','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165829,'429005','420000','2728','429005','city','潜江市','112.900279','30.401954','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165830,'429005_taifengjiedao','429005','2728','429005','street','泰丰街道','112.980898','30.416671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165831,'429005_guanghuasijiedao','429005','2728','429005','street','广华寺街道','112.666286','30.463319','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165832,'429005_zhoujiguanliqu','429005','2728','429005','street','周矶管理区','112.785657','30.463577','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165833,'429005_gaochangjiedao','429005','2728','429005','street','高场街道','112.774574','30.407577','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165834,'429005_zongkouguanliqu','429005','2728','429005','street','总口管理区','112.890449','30.258095','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165835,'429005_yunlianghuguanliqu','429005','2728','429005','street','运粮湖管理区','112.581820','30.252044','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165836,'429005_yuanlinjiedao','429005','2728','429005','street','园林街道','112.910007','30.376965','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165837,'429005_bailuhuguanliqu','429005','2728','429005','street','白鹭湖管理区','112.715593','30.178757','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165838,'429005_zhugentanzhen','429005','2728','429005','street','竹根滩镇','112.979245','30.471601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165839,'429005_yuyangzhen','429005','2728','429005','street','渔洋镇','112.966486','30.239237','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165840,'429005_xiongkouzhen','429005','2728','429005','street','熊口镇','112.724425','30.340363','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165841,'429005_houhuguanliqu','429005','2728','429005','street','后湖管理区','112.767709','30.404874','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165842,'429005_xiongkouguanliqu','429005','2728','429005','street','熊口管理区','112.806208','30.256835','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165843,'429005_yangshijiedao','429005','2728','429005','street','杨市街道','112.914959','30.383464','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165844,'429005_gaoshibeizhen','429005','2728','429005','street','高石碑镇','112.625570','30.620340','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165845,'429005_zhoujijiedao','429005','2728','429005','street','周矶街道','112.781398','30.391044','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165846,'429005_zekoujiedao','429005','2728','429005','street','泽口街道','112.915656','30.488160','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165847,'429005_laoxinzhen','429005','2728','429005','street','老新镇','112.887009','30.215033','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165848,'429005_longwanzhen','429005','2728','429005','street','龙湾镇','112.780855','30.253634','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165849,'429005_zhangjinzhen','429005','2728','429005','street','张金镇','112.635950','30.252063','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165850,'429005_haokouzhen','429005','2728','429005','street','浩口镇','112.566899','30.307792','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165851,'429005_jiyukouzhen','429005','2728','429005','street','积玉口镇','112.720009','30.418407','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165852,'429005_wangchangzhen','429005','2728','429005','street','王场镇','112.781586','30.473035','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165853,'420900','420000','0712','420900','city','孝感市','113.956962','30.918311','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165854,'420923','420900','0712','420923','district','云梦县','113.752958','31.021736','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165855,'420981','420900','0712','420981','district','应城市','113.571864','30.928592','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165856,'420902','420900','0712','420902','district','孝南区','113.910769','30.91695','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165857,'420984','420900','0712','420984','district','汉川市','113.838068','30.673219','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165858,'420982','420900','0712','420982','district','安陆市','113.688955','31.25565','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165859,'420921','420900','0712','420921','district','孝昌县','113.997794','31.258225','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165860,'420922','420900','0712','420922','district','大悟县','114.127122','31.561179','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165861,'422800','420000','0718','422800','city','恩施土家族苗族自治州','109.488076','30.272104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165862,'422822','422800','0718','422822','district','建始县','109.722333','30.602195','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165863,'422802','422800','0718','422802','district','利川市','108.936456','30.290974','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165864,'422826','422800','0718','422826','district','咸丰县','109.140163','29.665215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165865,'422827','422800','0718','422827','district','来凤县','109.407697','29.493474','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165866,'422828','422800','0718','422828','district','鹤峰县','110.034011','29.890073','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165867,'422823','422800','0718','422823','district','巴东县','110.340921','31.042854','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165868,'422825','422800','0718','422825','district','宣恩县','109.489918','29.986856','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165869,'422801','422800','0718','422801','district','恩施市','109.479572','30.295148','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165870,'429004','420000','0728','429004','city','仙桃市','113.442973','30.328407','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165871,'429004_tonghaikouzhen','429004','0728','429004','street','通海口镇','113.205730','30.272193','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165872,'429004_huchangzhen','429004','0728','429004','street','胡场镇','113.290392','30.427800','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165873,'429004_ganhejiedao','429004','0728','429004','street','干河街道','113.451023','30.375391','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165874,'429004_yanglinweizhen','429004','0728','429004','street','杨林尾镇','113.561091','30.201430','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165875,'429004_pengchangzhen','429004','0728','429004','street','彭场镇','113.445865','30.251787','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165876,'429004_mianchenghuizuzhen','429004','0728','429004','street','沔城回族镇','113.200597','30.192111','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165877,'429004_longhuashanjiedao','429004','0728','429004','street','龙华山街道','113.460323','30.364932','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165878,'429004_shahuyuanzhongchang','429004','0728','429004','street','沙湖原种场','113.642513','30.148174','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165879,'429004_zhengchangzhen','429004','0728','429004','street','郑场镇','112.978652','30.470679','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165880,'429004_guohezhen','429004','0728','429004','street','郭河镇','113.303624','30.302698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165881,'429004_shazuijiedao','429004','0728','429004','street','沙嘴街道','113.441389','30.359636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165882,'429004_paihufengjingqu','429004','0728','429004','street','排湖风景区','113.223499','30.298659','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165883,'429004_maozuizhen','429004','0728','429004','street','毛嘴镇','113.045359','30.418813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165884,'429004_zhanggouzhen','429004','0728','429004','street','张沟镇','113.438252','30.296766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165885,'429004_sanfutanzhen','429004','0728','429004','street','三伏潭镇','113.206929','30.339491','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165886,'429004_xiliuhezhen','429004','0728','429004','street','西流河镇','113.762133','30.296361','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165887,'429004_wuhuyuchang','429004','0728','429004','street','五湖渔场','113.768784','30.187345','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165888,'429004_zhangzhongkouzhen','429004','0728','429004','street','长埫口镇','113.597786','30.351206','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165889,'429004_duhujiedao','429004','0728','429004','street','杜湖街道','113.364736','30.306324','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165890,'429004_chenchangzhen','429004','0728','429004','street','陈场镇','113.059900','30.294262','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165891,'429004_shahuzhen','429004','0728','429004','street','沙湖镇','113.719820','30.118003','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165892,'429004_louhezhen','429004','0728','429004','street','剅河镇','112.987670','30.375691','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165893,'421200','420000','0715','421200','city','咸宁市','114.322601','29.84135','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165894,'421221','421200','0715','421221','district','嘉鱼县','113.939249','29.970575','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165895,'421202','421200','0715','421202','district','咸安区','114.299002','29.852726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165896,'421281','421200','0715','421281','district','赤壁市','113.900385','29.725122','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165897,'421223','421200','0715','421223','district','崇阳县','114.039484','29.556866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165898,'421222','421200','0715','421222','district','通城县','113.816811','29.2454','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165899,'421224','421200','0715','421224','district','通山县','114.482832','29.606468','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165900,'421000','420000','0716','421000','city','荆州市','112.24143','30.336282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165901,'421024','421000','0716','421024','district','江陵县','112.424581','30.042227','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165902,'421083','421000','0716','421083','district','洪湖市','113.475984','29.827256','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165903,'421088','421000','0716','421088','district','监利市','112.904634','29.840229','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165904,'421087','421000','0716','421087','district','松滋市','111.756455','30.174717','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165905,'421022','421000','0716','421022','district','公安县','112.229742','30.058519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165906,'421081','421000','0716','421081','district','石首市','112.42538','29.720944','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165907,'421002','421000','0716','421002','district','沙市区','112.251975','30.326693','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165908,'421003','421000','0716','421003','district','荆州区','112.190282','30.352984','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165909,'429021','420000','1719','429021','city','神农架林区','110.675879','31.745103','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165910,'429021_muyuzhen','429021','1719','429021','street','木鱼镇','110.566502','31.366101','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165911,'429021_xinhuazhen','429021','1719','429021','street','新华镇','110.842423','31.621763','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165912,'429021_songluoxiang','429021','1719','429021','street','宋洛乡','110.589789','31.730290','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165913,'429021_songbozhen','429021','1719','429021','street','松柏镇','110.609207','31.704132','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165914,'429021_hongpingzhen','429021','1719','429021','street','红坪镇','110.196111','31.471819','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165915,'429021_yangrizhen','429021','1719','429021','street','阳日镇','110.763336','31.676979','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165916,'429021_dajiuhuzhen','429021','1719','429021','street','大九湖镇','110.106251','31.408207','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165917,'429021_xiagupingtujiazuxiang','429021','1719','429021','street','下谷坪土家族乡','110.124191','31.394918','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165918,'421300','420000','0722','421300','city','随州市','113.382324','31.690275','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165919,'421321','421300','0722','421321','district','随县','113.29097','31.883233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165920,'421303','421300','0722','421303','district','曾都区','113.371052','31.716423','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165921,'421381','421300','0722','421381','district','广水市','113.825977','31.617015','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165922,'420700','420000','0711','420700','city','鄂州市','114.894909','30.391461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165923,'420702','420700','0711','420702','district','梁子湖区','114.684805','30.100146','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165924,'420703','420700','0711','420703','district','华容区','114.729945','30.53515','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165925,'420704','420700','0711','420704','district','鄂城区','114.89157','30.400535','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165926,'420200','420000','0714','420200','city','黄石市','115.038999','30.201082','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165927,'420205','420200','0714','420205','district','铁山区','114.891603','30.203152','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165928,'420203','420200','0714','420203','district','西塞山区','115.110067','30.205114','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165929,'420222','420200','0714','420222','district','阳新县','115.215211','29.830236','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165930,'420202','420200','0714','420202','district','黄石港区','115.065653','30.223194','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165931,'420204','420200','0714','420204','district','下陆区','114.960914','30.174148','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165932,'420281','420200','0714','420281','district','大冶市','114.98046','30.096263','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165933,'210000','100000','','210000','province','辽宁省','123.435093','41.836743','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165934,'211400','210000','0429','211400','city','葫芦岛市','120.836783','40.710974','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165935,'211422','211400','0429','211422','district','建昌县','119.836669','40.824484','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165936,'211403','211400','0429','211403','district','龙港区','120.894054','40.735717','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165937,'211481','211400','0429','211481','district','兴城市','120.756661','40.60999','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165938,'211421','211400','0429','211421','district','绥中县','120.34432','40.325576','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165939,'211404','211400','0429','211404','district','南票区','120.74971','41.10721','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165940,'211402','211400','0429','211402','district','连山区','120.869157','40.774784','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165941,'210200','210000','0411','210200','city','大连市','121.614786','38.913962','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165942,'210281','210200','0411','210281','district','瓦房店市','121.979463','39.62701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165943,'210283','210200','0411','210283','district','庄河市','122.965881','39.680825','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165944,'210214','210200','0411','210214','district','普兰店区','121.938299','39.391565','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165945,'210213','210200','0411','210213','district','金州区','121.782513','39.050211','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165946,'210224','210200','0411','210224','district','长海县','122.588487','39.272779','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165947,'210211','210200','0411','210211','district','甘井子区','121.525469','38.952998','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165948,'210212','210200','0411','210212','district','旅顺口区','121.261982','38.851742','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165949,'210202','210200','0411','210202','district','中山区','121.644996','38.918357','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165950,'210203','210200','0411','210203','district','西岗区','121.612461','38.914751','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165951,'210204','210200','0411','210204','district','沙河口区','121.594201','38.904771','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165952,'210600','210000','0415','210600','city','丹东市','124.354419','40.000646','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165953,'210682','210600','0415','210682','district','凤城市','124.066873','40.45218','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165954,'210604','210600','0415','210604','district','振安区','124.470005','40.20154','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165955,'210681','210600','0415','210681','district','东港市','124.152581','39.863193','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165956,'210603','210600','0415','210603','district','振兴区','124.383382','40.129706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165957,'210624','210600','0415','210624','district','宽甸满族自治县','124.783674','40.731319','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165958,'210602','210600','0415','210602','district','元宝区','124.395577','40.136549','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165959,'210700','210000','0416','210700','city','锦州市','121.126859','41.096114','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165960,'210782','210700','0416','210782','district','北镇市','121.777503','41.588657','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165961,'210711','210700','0416','210711','district','太和区','121.103445','41.109232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165962,'210781','210700','0416','210781','district','凌海市','121.35499','41.160636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165963,'210702','210700','0416','210702','district','古塔区','121.128414','41.117481','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165964,'210703','210700','0416','210703','district','凌河区','121.151069','41.115058','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165965,'210726','210700','0416','210726','district','黑山县','122.126645','41.653552','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165966,'210727','210700','0416','210727','district','义县','121.239558','41.533553','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165967,'210100','210000','024','210100','city','沈阳市','123.464675','41.677576','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165968,'210114','210100','024','210114','district','于洪区','123.308062','41.793925','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165969,'210123','210100','024','210123','district','康平县','123.343701','42.727249','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165970,'210115','210100','024','210115','district','辽中区','122.766159','41.517449','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165971,'210106','210100','024','210106','district','铁西区','123.334781','41.821721','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165972,'210113','210100','024','210113','district','沈北新区','123.584209','41.913071','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165973,'210102','210100','024','210102','district','和平区','123.420401','41.789766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165974,'210181','210100','024','210181','district','新民市','122.835964','41.985757','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165975,'210124','210100','024','210124','district','法库县','123.440294','42.50108','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165976,'210112','210100','024','210112','district','浑南区','123.449597','41.714729','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165977,'210111','210100','024','210111','district','苏家屯区','123.343937','41.665153','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165978,'210103','210100','024','210103','district','沈河区','123.45884','41.795688','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165979,'210104','210100','024','210104','district','大东区','123.469828','41.805292','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165980,'210105','210100','024','210105','district','皇姑区','123.441468','41.824574','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165981,'211200','210000','0410','211200','city','铁岭市','123.726008','42.223709','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165982,'211282','211200','0410','211282','district','开原市','124.051886','42.577645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165983,'211204','211200','0410','211204','district','清河区','124.159232','42.54714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165984,'211281','211200','0410','211281','district','调兵山市','123.567039','42.468007','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165985,'211221','211200','0410','211221','district','铁岭县','123.728933','42.223395','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165986,'211202','211200','0410','211202','district','银州区','123.842472','42.286575','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165987,'211223','211200','0410','211223','district','西丰县','124.727491','42.738178','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165988,'211224','211200','0410','211224','district','昌图县','124.086628','42.779333','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165989,'210900','210000','0418','210900','city','阜新市','121.670052','42.022028','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165990,'210905','210900','0418','210905','district','清河门区','121.416105','41.7831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165991,'210904','210900','0418','210904','district','太平区','121.678637','42.010689','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165992,'210903','210900','0418','210903','district','新邱区','121.792067','42.087549','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165993,'210921','210900','0418','210921','district','阜新蒙古族自治县','121.757901','42.065175','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165994,'210922','210900','0418','210922','district','彰武县','122.538563','42.386264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165995,'210911','210900','0418','210911','district','细河区','121.680157','42.025412','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165996,'210902','210900','0418','210902','district','海州区','121.662594','42.017794','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165997,'210500','210000','0414','210500','city','本溪市','123.684984','41.486834','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165998,'210522','210500','0414','210522','district','桓仁满族自治县','125.361061','41.267048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(165999,'210505','210500','0414','210505','district','南芬区','123.744822','41.100273','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166000,'210504','210500','0414','210504','district','明山区','123.861747','41.343624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166001,'210521','210500','0414','210521','district','本溪满族自治县','124.119545','41.301553','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166002,'210503','210500','0414','210503','district','溪湖区','123.767817','41.32931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166003,'210502','210500','0414','210502','district','平山区','123.769081','41.299658','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166004,'211000','210000','0419','211000','city','辽阳市','123.239669','41.267396','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166005,'211005','211000','0419','211005','district','弓长岭区','123.419567','41.151787','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166006,'211081','211000','0419','211081','district','灯塔市','123.339398','41.426537','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166007,'211011','211000','0419','211011','district','太子河区','123.1814403','41.29502257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166008,'211021','211000','0419','211021','district','辽阳县','123.106426','41.206246','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166009,'211004','211000','0419','211004','district','宏伟区','123.196725','41.217852','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166010,'211002','211000','0419','211002','district','白塔区','123.174347','41.270397','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166011,'211003','211000','0419','211003','district','文圣区','123.231262','41.282378','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166012,'210400','210000','0413','210400','city','抚顺市','123.957053','41.881311','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166013,'210422','210400','0413','210422','district','新宾满族自治县','125.039994','41.734031','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166014,'210411','210400','0413','210411','district','顺城区','123.94504','41.883375','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166015,'210404','210400','0413','210404','district','望花区','123.784235','41.853484','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166016,'210402','210400','0413','210402','district','新抚区','123.91293','41.861922','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166017,'210421','210400','0413','210421','district','抚顺县','123.8999229','41.73009376','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166018,'210403','210400','0413','210403','district','东洲区','124.038491','41.853001','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166019,'210423','210400','0413','210423','district','清原满族自治县','124.924028','42.100804','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166020,'211100','210000','0427','211100','city','盘锦市','122.170729','40.71956','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166021,'211122','211100','0427','211122','district','盘山县','121.996408','41.243367','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166022,'211103','211100','0427','211103','district','兴隆台区','122.070685','41.120261','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166023,'211102','211100','0427','211102','district','双台子区','122.07597','41.212401','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166024,'211104','211100','0427','211104','district','大洼区','122.082227','41.002679','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166025,'211300','210000','0421','211300','city','朝阳市','120.488801','41.601855','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166026,'211324','211300','0421','211324','district','喀喇沁左翼蒙古族自治县','119.741223','41.12815','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166027,'211382','211300','0421','211382','district','凌源市','119.401574','41.245445','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166028,'211381','211300','0421','211381','district','北票市','120.771389','41.801117','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166029,'211303','211300','0421','211303','district','龙城区','120.4133759','41.57674859','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166030,'211302','211300','0421','211302','district','双塔区','120.453717','41.565814','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166031,'211321','211300','0421','211321','district','朝阳县','120.390001','41.497923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166032,'211322','211300','0421','211322','district','建平县','119.64328','41.402891','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166033,'210300','210000','0412','210300','city','鞍山市','122.994183','41.108239','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166034,'210304','210300','0412','210304','district','立山区','123.029091','41.150401','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166035,'210311','210300','0412','210311','district','千山区','122.9447506','41.0689014','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166036,'210302','210300','0412','210302','district','铁东区','122.990888','41.089578','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166037,'210303','210300','0412','210303','district','铁西区','122.969531','41.119719','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166038,'210323','210300','0412','210323','district','岫岩满族自治县','123.280933','40.290995','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166039,'210321','210300','0412','210321','district','台安县','122.436037','41.412866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166040,'210381','210300','0412','210381','district','海城市','122.685176','40.882548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166041,'210800','210000','0417','210800','city','营口市','122.219148','40.625027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166042,'210803','210800','0417','210803','district','西市区','122.206431','40.666707','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166043,'210882','210800','0417','210882','district','大石桥市','122.509006','40.644482','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166044,'210804','210800','0417','210804','district','鲅鱼圈区','122.121764','40.226708','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166045,'210881','210800','0417','210881','district','盖州市','122.34845','40.400259','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166046,'210802','210800','0417','210802','district','站前区','122.259058','40.673063','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166047,'210811','210800','0417','210811','district','老边区','122.307956','40.671279','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166048,'370000','100000','','370000','province','山东省','117.020725','36.670201','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166049,'370500','370000','0546','370500','city','东营市','118.674633','37.433992','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166050,'370522','370500','0546','370522','district','利津县','118.255084','37.490919','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166051,'370523','370500','0546','370523','district','广饶县','118.419437','37.053915','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166052,'370503','370500','0546','370503','district','河口区','118.525519','37.886217','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166053,'370502','370500','0546','370502','district','东营区','118.582182','37.449035','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166054,'370505','370500','0546','370505','district','垦利区','118.575234','37.573412','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166055,'371600','370000','0543','371600','city','滨州市','117.970731','37.382687','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166056,'371602','371600','0543','371602','district','滨城区','118.019567','37.431997','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166057,'371625','371600','0543','371625','district','博兴县','118.110715','37.154529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166058,'371603','371600','0543','371603','district','沾化区','118.098962','37.698952','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166059,'371623','371600','0543','371623','district','无棣县','117.625846','37.770579','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166060,'371681','371600','0543','371681','district','邹平市','117.74313','36.863393','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166061,'371621','371600','0543','371621','district','惠民县','117.593744','37.47528','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166062,'371622','371600','0543','371622','district','阳信县','117.603407','37.632773','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166063,'371500','370000','0635','371500','city','聊城市','115.985238','36.455857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166064,'371503','371500','0635','371503','district','茌平区','116.254865','36.580814','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166065,'371526','371500','0635','371526','district','高唐县','116.230126','36.84715','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166066,'371525','371500','0635','371525','district','冠县','115.441684','36.484011','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166067,'371581','371500','0635','371581','district','临清市','115.704982','36.83828','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166068,'371502','371500','0635','371502','district','东昌府区','116.006399','36.412737','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166069,'371522','371500','0635','371522','district','莘县','115.669843','36.233711','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166070,'371524','371500','0635','371524','district','东阿县','116.247655','36.335198','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166071,'371521','371500','0635','371521','district','阳谷县','115.791822','36.114392','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166072,'370600','370000','0535','370600','city','烟台市','121.447755','37.464551','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166073,'370683','370600','0535','370683','district','莱州市','119.942057','37.178187','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166074,'370612','370600','0535','370612','district','牟平区','121.601015','37.387454','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166075,'370614','370600','0535','370614','district','蓬莱区','120.829141','37.795697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166076,'370602','370600','0535','370602','district','芝罘区','121.400303','37.541312','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166077,'370687','370600','0535','370687','district','海阳市','121.173506','36.688316','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166078,'370681','370600','0535','370681','district','龙口市','120.47614','37.645281','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166079,'370682','370600','0535','370682','district','莱阳市','120.711555','36.979757','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166080,'370685','370600','0535','370685','district','招远市','120.433904','37.354517','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166081,'370686','370600','0535','370686','district','栖霞市','120.849595','37.335993','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166082,'370613','370600','0535','370613','district','莱山区','121.444949','37.511322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166083,'370611','370600','0535','370611','district','福山区','121.267638','37.49833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166084,'371000','370000','0631','371000','city','威海市','122.120519','37.513315','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166085,'371083','371000','0631','371083','district','乳山市','121.539557','36.920329','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166086,'371002','371000','0631','371002','district','环翠区','122.123115','37.501735','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166087,'371082','371000','0631','371082','district','荣成市','122.487036','37.165698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166088,'371003','371000','0631','371003','district','文登区','122.08832','37.196032','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166089,'370200','370000','0532','370200','city','青岛市','120.382665','36.066938','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166090,'370285','370200','0532','370285','district','莱西市','120.517581','36.889167','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166091,'370283','370200','0532','370283','district','平度市','119.970192','36.753895','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166092,'370212','370200','0532','370212','district','崂山区','120.469282','36.107069','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166093,'370215','370200','0532','370215','district','即墨区','120.447691','36.390217','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166094,'370214','370200','0532','370214','district','城阳区','120.396255','36.307624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166095,'370211','370200','0532','370211','district','黄岛区','120.19777','35.960688','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166096,'370281','370200','0532','370281','district','胶州市','120.033382','36.26468','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166097,'370202','370200','0532','370202','district','市南区','120.412002','36.075867','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166098,'370213','370200','0532','370213','district','李沧区','120.432652','36.145987','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166099,'370203','370200','0532','370203','district','市北区','120.374675','36.08765','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166100,'370900','370000','0538','370900','city','泰安市','117.086963','36.201784','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166101,'370982','370900','0538','370982','district','新泰市','117.768069','35.90953','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166102,'370983','370900','0538','370983','district','肥城市','116.769098','36.181975','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166103,'370921','370900','0538','370921','district','宁阳县','116.805578','35.758919','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166104,'370911','370900','0538','370911','district','岱岳区','117.041651','36.188088','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166105,'370902','370900','0538','370902','district','泰山区','117.128828','36.194963','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166106,'370923','370900','0538','370923','district','东平县','116.470211','35.937049','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166107,'370300','370000','0533','370300','city','淄博市','118.054994','36.813787','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166108,'370321','370300','0533','370321','district','桓台县','118.097923','36.959794','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166109,'370322','370300','0533','370322','district','高青县','117.826743','37.171042','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166110,'370304','370300','0533','370304','district','博山区','117.8627','36.495014','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166111,'370305','370300','0533','370305','district','临淄区','118.309398','36.826882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166112,'370306','370300','0533','370306','district','周村区','117.869686','36.80309','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166113,'370302','370300','0533','370302','district','淄川区','117.966978','36.644211','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166114,'370303','370300','0533','370303','district','张店区','118.017877','36.807011','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166115,'370323','370300','0533','370323','district','沂源县','118.170856','36.185402','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166116,'370400','370000','0632','370400','city','枣庄市','117.323759','34.810858','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166117,'370402','370400','0632','370402','district','市中区','117.556125','34.863791','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166118,'370404','370400','0632','370404','district','峄城区','117.590738','34.772931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166119,'370403','370400','0632','370403','district','薛城区','117.286371','34.783282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166120,'370405','370400','0632','370405','district','台儿庄区','117.734287','34.563103','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166121,'370406','370400','0632','370406','district','山亭区','117.461866','35.099638','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166122,'370481','370400','0632','370481','district','滕州市','117.165881','35.11412','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166123,'371100','370000','0633','371100','city','日照市','119.52685','35.416912','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166124,'371122','371100','0633','371122','district','莒县','118.869059','35.59125','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166125,'371103','371100','0633','371103','district','岚山区','119.31881','35.121985','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166126,'371121','371100','0633','371121','district','五莲县','119.213673','35.760154','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166127,'371102','371100','0633','371102','district','东港区','119.462287','35.426037','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166128,'370800','370000','0537','370800','city','济宁市','116.587116','35.415117','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166129,'370826','370800','0537','370826','district','微山县','117.129188','34.806657','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166130,'370827','370800','0537','370827','district','鱼台县','116.650526','35.012706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166131,'370832','370800','0537','370832','district','梁山县','116.131779','35.765957','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166132,'370831','370800','0537','370831','district','泗水县','117.250824','35.664719','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166133,'370829','370800','0537','370829','district','嘉祥县','116.342308','35.40794','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166134,'370830','370800','0537','370830','district','汶上县','116.497277','35.711891','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166135,'370883','370800','0537','370883','district','邹城市','117.007406','35.402536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166136,'370811','370800','0537','370811','district','任城区','116.605763','35.444226','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166137,'370828','370800','0537','370828','district','金乡县','116.337271','35.073419','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166138,'370881','370800','0537','370881','district','曲阜市','116.986212','35.581933','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166139,'370812','370800','0537','370812','district','兖州区','116.78365','35.551938','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166140,'371700','370000','0530','371700','city','菏泽市','115.479646','35.234309','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166141,'371721','371700','0530','371721','district','曹县','115.556393','34.85875','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166142,'371703','371700','0530','371703','district','定陶区','115.583172','35.105742','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166143,'371724','371700','0530','371724','district','巨野县','116.062585','35.388543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166144,'371723','371700','0530','371723','district','成武县','115.889775','34.95278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166145,'371728','371700','0530','371728','district','东明县','115.107402','35.275664','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166146,'371702','371700','0530','371702','district','牡丹区','115.417021','35.251911','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166147,'371722','371700','0530','371722','district','单县','116.106396','34.779282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166148,'371726','371700','0530','371726','district','鄄城县','115.544507','35.534088','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166149,'371725','371700','0530','371725','district','郓城县','115.938939','35.575276','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166150,'371300','370000','0539','371300','city','临沂市','118.356464','35.103771','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166151,'371321','371300','0539','371321','district','沂南县','118.465259','35.550078','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166152,'371312','371300','0539','371312','district','河东区','118.403073','35.088936','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166153,'371328','371300','0539','371328','district','蒙阴县','117.953367','35.720128','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166154,'371323','371300','0539','371323','district','沂水县','118.628142','35.790919','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166155,'371326','371300','0539','371326','district','平邑县','117.615201','35.516849','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166156,'371311','371300','0539','371311','district','罗庄区','118.284693','34.997061','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166157,'371302','371300','0539','371302','district','兰山区','118.347332','35.052797','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166158,'371325','371300','0539','371325','district','费县','117.9776','35.265851','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166159,'371324','371300','0539','371324','district','兰陵县','118.070912','34.858235','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166160,'371322','371300','0539','371322','district','郯城县','118.390701','34.619281','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166161,'371329','371300','0539','371329','district','临沭县','118.650828','34.920171','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166162,'371327','371300','0539','371327','district','莒南县','118.835166','35.206252','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166163,'370100','370000','0531','370100','city','济南市','117.120128','36.652069','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166164,'370113','370100','0531','370113','district','长清区','116.752101','36.554251','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166165,'370117','370100','0531','370117','district','钢城区','117.811604','36.059393','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166166,'370126','370100','0531','370126','district','商河县','117.157165','37.309694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166167,'370114','370100','0531','370114','district','章丘区','117.526228','36.681258','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166168,'370116','370100','0531','370116','district','莱芜区','117.675828','36.214895','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166169,'370104','370100','0531','370104','district','槐荫区','116.901057','36.652264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166170,'370103','370100','0531','370103','district','市中区','116.997472','36.651121','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166171,'370124','370100','0531','370124','district','平阴县','116.455865','36.289813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166172,'370112','370100','0531','370112','district','历城区','117.065233','36.680731','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166173,'370115','370100','0531','370115','district','济阳区','117.173722','36.978299','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166174,'370102','370100','0531','370102','district','历下区','117.07632','36.666395','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166175,'370105','370100','0531','370105','district','天桥区','116.987106','36.678665','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166176,'371400','370000','0534','371400','city','德州市','116.359244','37.436492','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166177,'371422','371400','0534','371422','district','宁津县','116.800279','37.652456','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166178,'371481','371400','0534','371481','district','乐陵市','117.232085','37.729769','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166179,'371428','371400','0534','371428','district','武城县','116.069312','37.213398','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166180,'371427','371400','0534','371427','district','夏津县','116.001796','36.948013','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166181,'371425','371400','0534','371425','district','齐河县','116.762767','36.784164','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166182,'371423','371400','0534','371423','district','庆云县','117.384163','37.774376','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166183,'371402','371400','0534','371402','district','德城区','116.299558','37.451051','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166184,'371482','371400','0534','371482','district','禹城市','116.638558','36.934198','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166185,'371426','371400','0534','371426','district','平原县','116.434016','37.165453','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166186,'371403','371400','0534','371403','district','陵城区','116.576148','37.336444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166187,'371424','371400','0534','371424','district','临邑县','116.866568','37.190139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166188,'370700','370000','0536','370700','city','潍坊市','119.161721','36.707668','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166189,'370702','370700','0536','370702','district','潍城区','119.02491','36.728077','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166190,'370783','370700','0536','370783','district','寿光市','118.791062','36.857133','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166191,'370786','370700','0536','370786','district','昌邑市','119.403185','36.843256','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166192,'370785','370700','0536','370785','district','高密市','119.80584','36.365658','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166193,'370703','370700','0536','370703','district','寒亭区','119.211251','36.755925','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166194,'370725','370700','0536','370725','district','昌乐县','118.841035','36.688035','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166195,'370781','370700','0536','370781','district','青州市','118.479637','36.685178','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166196,'370782','370700','0536','370782','district','诸城市','119.410051','35.996404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166197,'370784','370700','0536','370784','district','安丘市','119.21892','36.479642','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166198,'370724','370700','0536','370724','district','临朐县','118.543274','36.51246','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166199,'370705','370700','0536','370705','district','奎文区','119.132288','36.707459','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166200,'370704','370700','0536','370704','district','坊子区','119.166343','36.653671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166201,'610000','100000','','610000','province','陕西省','108.953939','34.266611','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166202,'611000','610000','0914','611000','city','商洛市','109.918646','33.873358','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166203,'611023','611000','0914','611023','district','商南县','110.881741','33.531071','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166204,'611002','611000','0914','611002','district','商州区','109.941452','33.862979','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166205,'611026','611000','0914','611026','district','柞水县','109.114006','33.686048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166206,'611022','611000','0914','611022','district','丹凤县','110.327542','33.696254','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166207,'611024','611000','0914','611024','district','山阳县','109.882289','33.532172','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166208,'611025','611000','0914','611025','district','镇安县','109.152833','33.423764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166209,'611021','611000','0914','611021','district','洛南县','110.148526','34.090815','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166210,'610700','610000','0916','610700','city','汉中市','107.02319','33.066373','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166211,'610729','610700','0916','610729','district','留坝县','106.920781','33.617637','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166212,'610727','610700','0916','610727','district','略阳县','106.15658','33.327293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166213,'610726','610700','0916','610726','district','宁强县','106.257636','32.830032','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166214,'610725','610700','0916','610725','district','勉县','106.673217','33.153636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166215,'610702','610700','0916','610702','district','汉台区','107.03201','33.067523','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166216,'610703','610700','0916','610703','district','南郑区','106.936235','33.000034','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166217,'610722','610700','0916','610722','district','城固县','107.333787','33.156937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166218,'610724','610700','0916','610724','district','西乡县','107.766477','32.983282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166219,'610730','610700','0916','610730','district','佛坪县','107.990551','33.524261','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166220,'610728','610700','0916','610728','district','镇巴县','107.895015','32.536706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166221,'610723','610700','0916','610723','district','洋县','107.545678','33.222808','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166222,'610600','610000','0911','610600','city','延安市','109.49468','36.650109','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166223,'610681','610600','0911','610681','district','子长市','109.675284','37.142462','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166224,'610626','610600','0911','610626','district','吴起县','108.176501','36.92746','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166225,'610603','610600','0911','610603','district','安塞区','109.329236','36.864571','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166226,'610625','610600','0911','610625','district','志丹县','108.767816','36.822232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166227,'610622','610600','0911','610622','district','延川县','110.193503','36.878324','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166228,'610602','610600','0911','610602','district','宝塔区','109.489726','36.585138','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166229,'610621','610600','0911','610621','district','延长县','110.012455','36.579354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166230,'610627','610600','0911','610627','district','甘泉县','109.351046','36.276645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166231,'610630','610600','0911','610630','district','宜川县','110.168963','36.050178','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166232,'610628','610600','0911','610628','district','富县','109.37884','35.988111','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166233,'610629','610600','0911','610629','district','洛川县','109.43249','35.762626','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166234,'610632','610600','0911','610632','district','黄陵县','109.262919','35.579421','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166235,'610631','610600','0911','610631','district','黄龙县','109.84029','35.584655','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166236,'610100','610000','029','610100','city','西安市','108.939645','34.343207','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166237,'610116','610100','029','610116','district','长安区','108.906944','34.158668','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166238,'610122','610100','029','610122','district','蓝田县','109.323473','34.151256','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166239,'610114','610100','029','610114','district','阎良区','109.226124','34.662232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166240,'610117','610100','029','610117','district','高陵区','109.088269','34.53502','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166241,'610112','610100','029','610112','district','未央区','108.946665','34.293109','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166242,'610103','610100','029','610103','district','碑林区','108.940681','34.256727','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166243,'610124','610100','029','610124','district','周至县','108.222219','34.163592','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166244,'610111','610100','029','610111','district','灞桥区','109.064675','34.273111','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166245,'610102','610100','029','610102','district','新城区','108.960707','34.266601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166246,'610115','610100','029','610115','district','临潼区','109.214249','34.367181','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166247,'610104','610100','029','610104','district','莲湖区','108.944161','34.26535','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166248,'610113','610100','029','610113','district','雁塔区','108.948592','34.222517','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166249,'610118','610100','029','610118','district','鄠邑区','108.604772','34.108707','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166250,'610200','610000','0919','610200','city','铜川市','108.945116','34.897133','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166251,'610222','610200','0919','610222','district','宜君县','109.117063','35.398624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166252,'610202','610200','0919','610202','district','王益区','109.075615','35.068925','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166253,'610203','610200','0919','610203','district','印台区','109.099848','35.11454','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166254,'610204','610200','0919','610204','district','耀州区','108.980095','34.909685','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166255,'610800','610000','0912','610800','city','榆林市','109.734104','38.28576','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166256,'610802','610800','0912','610802','district','榆阳区','109.72054','38.277078','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166257,'610881','610800','0912','610881','district','神木市','110.466867','38.899742','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166258,'610824','610800','0912','610824','district','靖边县','108.794153','37.600351','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166259,'610831','610800','0912','610831','district','子洲县','110.035124','37.610554','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166260,'610826','610800','0912','610826','district','绥德县','110.263226','37.502984','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166261,'610829','610800','0912','610829','district','吴堡县','110.739726','37.452179','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166262,'610830','610800','0912','610830','district','清涧县','110.121181','37.088921','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166263,'610825','610800','0912','610825','district','定边县','107.601048','37.594976','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166264,'610803','610800','0912','610803','district','横山区','109.294144','37.962477','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166265,'610827','610800','0912','610827','district','米脂县','110.183984','37.755134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166266,'610822','610800','0912','610822','district','府谷县','111.016431','39.015658','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166267,'610828','610800','0912','610828','district','佳县','110.491345','38.01951','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166268,'610500','610000','0913','610500','city','渭南市','109.470962','34.520632','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166269,'610527','610500','0913','610527','district','白水县','109.590501','35.177497','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166270,'610525','610500','0913','610525','district','澄城县','109.932439','35.190256','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166271,'610526','610500','0913','610526','district','蒲城县','109.586263','34.955755','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166272,'610528','610500','0913','610528','district','富平县','109.179903','34.751599','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166273,'610524','610500','0913','610524','district','合阳县','110.149412','35.237881','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166274,'610581','610500','0913','610581','district','韩城市','110.44295','35.477145','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166275,'610502','610500','0913','610502','district','临渭区','109.510051','34.498902','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166276,'610582','610500','0913','610582','district','华阴市','110.092286','34.566552','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166277,'610523','610500','0913','610523','district','大荔县','109.941784','34.797073','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166278,'610522','610500','0913','610522','district','潼关县','110.246105','34.544294','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166279,'610503','610500','0913','610503','district','华州区','109.775765','34.497019','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166280,'610900','610000','0915','610900','city','安康市','109.029017','32.685435','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166281,'610927','610900','0915','610927','district','镇坪县','109.526873','31.883672','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166282,'610924','610900','0915','610924','district','紫阳县','108.534291','32.520209','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166283,'610981','610900','0915','610981','district','旬阳市','109.361783','32.832213','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166284,'610929','610900','0915','610929','district','白河县','110.112608','32.80901','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166285,'610926','610900','0915','610926','district','平利县','109.361919','32.389061','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166286,'610902','610900','0915','610902','district','汉滨区','109.026928','32.695436','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166287,'610921','610900','0915','610921','district','汉阴县','108.508792','32.893057','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166288,'610922','610900','0915','610922','district','石泉县','108.248061','33.03805','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166289,'610925','610900','0915','610925','district','岚皋县','108.902049','32.307001','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166290,'610923','610900','0915','610923','district','宁陕县','108.314299','33.310284','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166291,'610300','610000','0917','610300','city','宝鸡市','107.237682','34.362862','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166292,'610302','610300','0917','610302','district','渭滨区','107.155344','34.355068','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166293,'610303','610300','0917','610303','district','金台区','107.232733','34.397071','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166294,'610328','610300','0917','610328','district','千阳县','107.132421','34.642374','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166295,'610327','610300','0917','610327','district','陇县','106.864404','34.892985','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166296,'610330','610300','0917','610330','district','凤县','106.515841','33.910797','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166297,'610305','610300','0917','610305','district','凤翔区','107.401029','34.522167','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166298,'610304','610300','0917','610304','district','陈仓区','107.368993','34.35073','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166299,'610323','610300','0917','610323','district','岐山县','107.621397','34.44373','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166300,'610329','610300','0917','610329','district','麟游县','107.793524','34.677902','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166301,'610324','610300','0917','610324','district','扶风县','107.900157','34.375636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166302,'610326','610300','0917','610326','district','眉县','107.750039','34.274774','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166303,'610331','610300','0917','610331','district','太白县','107.318932','34.058299','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166304,'610400','610000','0910','610400','city','咸阳市','108.708837','34.329896','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166305,'610424','610400','0910','610424','district','乾县','108.239316','34.528262','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166306,'610422','610400','0910','610422','district','三原县','108.940754','34.617282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166307,'610430','610400','0910','610430','district','淳化县','108.580164','34.798596','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166308,'610403','610400','0910','610403','district','杨陵区','108.084661','34.272084','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166309,'610431','610400','0910','610431','district','武功县','108.200275','34.261026','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166310,'610428','610400','0910','610428','district','长武县','107.79906','35.206273','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166311,'610482','610400','0910','610482','district','彬州市','108.081892','35.035702','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166312,'610426','610400','0910','610426','district','永寿县','108.142197','34.69188','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166313,'610423','610400','0910','610423','district','泾阳县','108.843029','34.526557','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166314,'610404','610400','0910','610404','district','渭城区','108.737062','34.36202','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166315,'610481','610400','0910','610481','district','兴平市','108.490497','34.299199','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166316,'610425','610400','0910','610425','district','礼泉县','108.424682','34.481875','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166317,'610429','610400','0910','610429','district','旬邑县','108.333815','35.111787','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166318,'610402','610400','0910','610402','district','秦都区','108.706347','34.329478','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166319,'310000','100000','','310000','province','上海市','121.473667','31.230525','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166320,'310100','310000','021','310100','city','上海城区','121.472644','31.231706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166321,'310151','310100','021','310151','district','崇明区','121.397662','31.623863','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166322,'310115','310100','021','310115','district','浦东新区','121.544346','31.221461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166323,'310116','310100','021','310116','district','金山区','121.341774','30.742769','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166324,'310101','310100','021','310101','district','黄浦区','121.48442','31.231661','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166325,'310110','310100','021','310110','district','杨浦区','121.525409','31.259588','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166326,'310109','310100','021','310109','district','虹口区','121.504994','31.264917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166327,'310106','310100','021','310106','district','静安区','121.447348','31.227718','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166328,'310105','310100','021','310105','district','长宁区','121.424751','31.220537','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166329,'310120','310100','021','310120','district','奉贤区','121.473945','30.918406','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166330,'310118','310100','021','310118','district','青浦区','121.124249','31.15098','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166331,'310107','310100','021','310107','district','普陀区','121.39547','31.249618','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166332,'310113','310100','021','310113','district','宝山区','121.489431','31.405242','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166333,'310104','310100','021','310104','district','徐汇区','121.436307','31.188334','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166334,'310114','310100','021','310114','district','嘉定区','121.265276','31.375566','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166335,'310112','310100','021','310112','district','闵行区','121.380857','31.112834','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166336,'310117','310100','021','310117','district','松江区','121.227676','31.03257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166337,'520000','100000','','520000','province','贵州省','106.705251','26.600328','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166338,'520300','520000','0852','520300','city','遵义市','107.031922','27.721931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166339,'520323','520300','0852','520323','district','绥阳县','107.191326','27.946049','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166340,'520329','520300','0852','520329','district','余庆县','107.906043','27.21513','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166341,'520325','520300','0852','520325','district','道真仡佬族苗族自治县','107.613076','28.862548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166342,'520330','520300','0852','520330','district','习水县','106.19715','28.332923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166343,'520381','520300','0852','520381','district','赤水市','105.697501','28.590474','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166344,'520328','520300','0852','520328','district','湄潭县','107.465492','27.748942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166345,'520327','520300','0852','520327','district','凤冈县','107.71646','27.954424','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166346,'520304','520300','0852','520304','district','播州区','106.829081','27.535735','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166347,'520303','520300','0852','520303','district','汇川区','106.933727','27.749716','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166348,'520302','520300','0852','520302','district','红花岗区','106.893598','27.644793','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166349,'520324','520300','0852','520324','district','正安县','107.454463','28.553507','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166350,'520326','520300','0852','520326','district','务川仡佬族苗族自治县','107.899353','28.562921','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166351,'520382','520300','0852','520382','district','仁怀市','106.401322','27.791883','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166352,'520322','520300','0852','520322','district','桐梓县','106.824661','28.132991','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166353,'520600','520000','0856','520600','city','铜仁市','109.189528','27.731555','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166354,'520623','520600','0856','520623','district','石阡县','108.223686','27.513499','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166355,'520628','520600','0856','520628','district','松桃苗族自治县','109.202877','28.15427','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166356,'520622','520600','0856','520622','district','玉屏侗族自治县','108.906415','27.235816','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166357,'520602','520600','0856','520602','district','碧江区','109.264271','27.815244','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166358,'520603','520600','0856','520603','district','万山区','109.153685','27.671268','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166359,'520627','520600','0856','520627','district','沿河土家族自治县','108.503152','28.564083','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166360,'520626','520600','0856','520626','district','德江县','108.120773','28.264028','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166361,'520621','520600','0856','520621','district','江口县','108.843993','27.704883','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166362,'520625','520600','0856','520625','district','印江土家族苗族自治县','108.409638','27.994442','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166363,'520624','520600','0856','520624','district','思南县','108.253798','27.937464','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166364,'520200','520000','0858','520200','city','六盘水市','104.830357','26.592538','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166365,'520281','520200','0858','520281','district','盘州市','104.471554','25.709878','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166366,'520203','520200','0858','520203','district','六枝特区','105.477199','26.214356','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166367,'520201','520200','0858','520201','district','钟山区','104.843723','26.574699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166368,'520204','520200','0858','520204','district','水城区','104.957871','26.547604','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166369,'522700','520000','0854','522700','city','黔南布依族苗族自治州','107.522303','26.253136','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166370,'522727','522700','0854','522727','district','平塘县','107.322635','25.822395','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166371,'522728','522700','0854','522728','district','罗甸县','106.751724','25.42616','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166372,'522722','522700','0854','522722','district','荔波县','107.88057','25.402528','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166373,'522702','522700','0854','522702','district','福泉市','107.520371','26.686773','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166374,'522701','522700','0854','522701','district','都匀市','107.518628','26.259456','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166375,'522729','522700','0854','522729','district','长顺县','106.44057','26.003187','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166376,'522723','522700','0854','522723','district','贵定县','107.232208','26.557205','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166377,'522730','522700','0854','522730','district','龙里县','106.979177','26.453546','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166378,'522731','522700','0854','522731','district','惠水县','106.656993','26.132045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166379,'522726','522700','0854','522726','district','独山县','107.557591','25.865418','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166380,'522732','522700','0854','522732','district','三都水族自治县','107.869489','25.983572','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166381,'522725','522700','0854','522725','district','瓮安县','107.471307','27.07838','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166382,'520400','520000','0853','520400','city','安顺市','105.9476','26.253103','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166383,'520402','520400','0853','520402','district','西秀区','105.966086','26.243928','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166384,'520425','520400','0853','520425','district','紫云苗族布依族自治县','106.084441','25.751047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166385,'520403','520400','0853','520403','district','平坝区','106.255768','26.405968','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166386,'520422','520400','0853','520422','district','普定县','105.743156','26.301876','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166387,'520424','520400','0853','520424','district','关岭布依族苗族自治县','105.538335','25.953518','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166388,'520423','520400','0853','520423','district','镇宁布依族苗族自治县','105.770543','26.057248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166389,'522300','520000','0859','522300','city','黔西南布依族苗族自治州','104.906419','25.087733','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166390,'522328','522300','0859','522328','district','安龙县','105.442702','25.099014','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166391,'522325','522300','0859','522325','district','贞丰县','105.64976','25.38558','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166392,'522326','522300','0859','522326','district','望谟县','106.094864','25.174204','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166393,'522301','522300','0859','522301','district','兴义市','104.895503','25.09196','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166394,'522323','522300','0859','522323','district','普安县','104.953289','25.784225','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166395,'522324','522300','0859','522324','district','晴隆县','105.218956','25.834729','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166396,'522302','522300','0859','522302','district','兴仁市','105.186132','25.43509','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166397,'522327','522300','0859','522327','district','册亨县','105.811592','24.983663','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166398,'522600','520000','0855','522600','city','黔东南苗族侗族自治州','107.982838','26.583759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166399,'522634','522600','0855','522634','district','雷山县','108.078217','26.378892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166400,'522632','522600','0855','522632','district','榕江县','108.52188','25.931893','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166401,'522627','522600','0855','522627','district','天柱县','109.207826','26.909548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166402,'522633','522600','0855','522633','district','从江县','108.904998','25.754638','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166403,'522630','522600','0855','522630','district','台江县','108.321244','26.667525','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166404,'522635','522600','0855','522635','district','麻江县','107.589455','26.49129','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166405,'522629','522600','0855','522629','district','剑河县','108.441501','26.728274','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166406,'522624','522600','0855','522624','district','三穗县','108.675265','26.953359','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166407,'522626','522600','0855','522626','district','岑巩县','108.815855','27.174124','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166408,'522636','522600','0855','522636','district','丹寨县','107.789301','26.19857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166409,'522631','522600','0855','522631','district','黎平县','109.125826','26.213304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166410,'522601','522600','0855','522601','district','凯里市','107.981409','26.5662','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166411,'522625','522600','0855','522625','district','镇远县','108.429536','27.049033','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166412,'522622','522600','0855','522622','district','黄平县','107.916651','26.905278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166413,'522623','522600','0855','522623','district','施秉县','108.124531','27.033107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166414,'522628','522600','0855','522628','district','锦屏县','109.200808','26.675919','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166415,'520100','520000','0851','520100','city','贵阳市','106.628201','26.646694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166416,'520121','520100','0851','520121','district','开阳县','106.964716','27.057823','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166417,'520123','520100','0851','520123','district','修文县','106.591958','26.836048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166418,'520113','520100','0851','520113','district','白云区','106.623069','26.677932','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166419,'520181','520100','0851','520181','district','清镇市','106.468686','26.570435','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166420,'520102','520100','0851','520102','district','南明区','106.714305','26.568055','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166421,'520112','520100','0851','520112','district','乌当区','106.75069','26.630911','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166422,'520111','520100','0851','520111','district','花溪区','106.67026','26.409817','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166423,'520122','520100','0851','520122','district','息烽县','106.740407','27.090479','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166424,'520115','520100','0851','520115','district','观山湖区','106.598978','26.616134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166425,'520103','520100','0851','520103','district','云岩区','106.724394','26.604604','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166426,'520500','520000','0857','520500','city','毕节市','105.291544','27.283615','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166427,'520581','520500','0857','520581','district','黔西市','106.032277','27.008681','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166428,'520523','520500','0857','520523','district','金沙县','106.220112','27.458601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166429,'520524','520500','0857','520524','district','织金县','105.770249','26.663649','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166430,'520521','520500','0857','520521','district','大方县','105.601963','27.14443','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166431,'520525','520500','0857','520525','district','纳雍县','105.414578','26.779344','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166432,'520502','520500','0857','520502','district','七星关区','105.305219','27.298304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166433,'520527','520500','0857','520527','district','赫章县','104.728011','27.117933','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166434,'520526','520500','0857','520526','district','威宁彝族回族苗族自治县','104.252787','26.873872','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166435,'500000','100000','','500000','province','重庆市','106.551787','29.56268','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166436,'500200','500000','023','500200','city','重庆郊县','108.170255','29.291965','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166437,'500238','500200','023','500238','district','巫溪县','109.570038','31.398619','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166438,'500236','500200','023','500236','district','奉节县','109.401056','31.018505','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166439,'500243','500200','023','500243','district','彭水苗族土家族自治县','108.165571','29.293748','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166440,'500241','500200','023','500241','district','秀山土家族苗族自治县','109.007096','28.448248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166441,'500240','500200','023','500240','district','石柱土家族自治县','108.114251','29.999066','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166442,'500237','500200','023','500237','district','巫山县','109.878995','31.07478','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166443,'500230','500200','023','500230','district','丰都县','107.731056','29.863785','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166444,'500229','500200','023','500229','district','城口县','108.664349','31.947319','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166445,'500242','500200','023','500242','district','酉阳土家族苗族自治县','108.76726','28.841409','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166446,'500233','500200','023','500233','district','忠县','108.038073','30.299817','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166447,'500231','500200','023','500231','district','垫江县','107.332511','30.327548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166448,'500235','500200','023','500235','district','云阳县','108.6975','30.930628','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166449,'500100','500000','023','500100','city','重庆城区','106.504962','29.533155','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166450,'500117','500100','023','500117','district','合川区','106.27617','29.971968','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166451,'500152','500100','023','500152','district','潼南区','105.840487','30.191077','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166452,'500115','500100','023','500115','district','长寿区','107.080945','29.857916','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166453,'500151','500100','023','500151','district','铜梁区','106.056265','29.845248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166454,'500104','500100','023','500104','district','大渡口区','106.482299','29.484464','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166455,'500111','500100','023','500111','district','大足区','105.721825','29.707555','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166456,'500107','500100','023','500107','district','九龙坡区','106.510515','29.502325','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166457,'500114','500100','023','500114','district','黔江区','108.770677','29.533609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166458,'500108','500100','023','500108','district','南岸区','106.644254','29.50109','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166459,'500156','500100','023','500156','district','武隆区','107.759955','29.325707','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166460,'500110','500100','023','500110','district','綦江区','106.651213','29.028117','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166461,'500102','500100','023','500102','district','涪陵区','107.246521','29.752475','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166462,'500109','500100','023','500109','district','北碚区','106.395593','29.805197','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166463,'500119','500100','023','500119','district','南川区','107.099147','29.157879','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166464,'500118','500100','023','500118','district','永川区','105.926951','29.356384','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166465,'500101','500100','023','500101','district','万州区','108.408591','30.807621','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166466,'500153','500100','023','500153','district','荣昌区','105.6118','29.416892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166467,'500154','500100','023','500154','district','开州区','108.39336','31.160416','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166468,'500116','500100','023','500116','district','江津区','106.264435','29.319984','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166469,'500113','500100','023','500113','district','巴南区','106.540603','29.402348','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166470,'500120','500100','023','500120','district','璧山区','106.204885','29.577455','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166471,'500106','500100','023','500106','district','沙坪坝区','106.456939','29.541017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166472,'500103','500100','023','500103','district','渝中区','106.568955','29.552642','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166473,'500155','500100','023','500155','district','梁平区','107.769568','30.654233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166474,'500112','500100','023','500112','district','渝北区','106.631155','29.718087','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166475,'500105','500100','023','500105','district','江北区','106.574395','29.606224','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166476,'340000','100000','','340000','province','安徽省','117.330139','31.734559','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166477,'340700','340000','0562','340700','city','铜陵市','117.811298','30.945214','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166478,'340711','340700','0562','340711','district','郊区','117.767919','30.821699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166479,'340705','340700','0562','340705','district','铜官区','117.856541','30.936772','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166480,'340722','340700','0562','340722','district','枞阳县','117.250191','30.705466','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166481,'340706','340700','0562','340706','district','义安区','117.937405','30.950619','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166482,'341700','340000','0566','341700','city','池州市','117.495663','30.674264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166483,'341702','341700','0566','341702','district','贵池区','117.568087','30.688237','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166484,'341722','341700','0566','341722','district','石台县','117.486211','30.210218','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166485,'341723','341700','0566','341723','district','青阳县','117.847366','30.639006','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166486,'341721','341700','0566','341721','district','东至县','117.027533','30.111182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166487,'340800','340000','0556','340800','city','安庆市','117.115349','30.531828','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166488,'340828','340800','0556','340828','district','岳西县','116.359732','30.849716','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166489,'340881','340800','0556','340881','district','桐城市','116.936588','31.035476','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166490,'340803','340800','0556','340803','district','大观区','117.013469','30.553697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166491,'340825','340800','0556','340825','district','太湖县','116.30881','30.454198','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166492,'340827','340800','0556','340827','district','望江县','116.70641','30.128404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166493,'340882','340800','0556','340882','district','潜山市','116.581224','30.631022','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166494,'340822','340800','0556','340822','district','怀宁县','116.829612','30.73484','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166495,'340826','340800','0556','340826','district','宿松县','116.134485','30.171663','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166496,'340802','340800','0556','340802','district','迎江区','117.090878','30.512768','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166497,'340811','340800','0556','340811','district','宜秀区','116.987469','30.613189','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166498,'340600','340000','0561','340600','city','淮北市','116.798362','33.956264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166499,'340602','340600','0561','340602','district','杜集区','116.827949','33.991412','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166500,'340603','340600','0561','340603','district','相山区','116.795233','33.959927','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166501,'340604','340600','0561','340604','district','烈山区','116.813221','33.895407','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166502,'340621','340600','0561','340621','district','濉溪县','116.76616','33.915612','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166503,'340500','340000','0555','340500','city','马鞍山市','118.50685','31.668765','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166504,'340506','340500','0555','340506','district','博望区','118.818276','31.55117','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166505,'340523','340500','0555','340523','district','和县','118.353668','31.74248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166506,'340522','340500','0555','340522','district','含山县','118.101448','31.735559','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166507,'340521','340500','0555','340521','district','当涂县','118.497873','31.570857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166508,'340504','340500','0555','340504','district','雨山区','118.498675','31.682374','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166509,'340503','340500','0555','340503','district','花山区','118.511366','31.700127','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166510,'341000','340000','0559','341000','city','黄山市','118.337643','29.714886','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166511,'341003','341000','0559','341003','district','黄山区','118.141632','30.272991','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166512,'341022','341000','0559','341022','district','休宁县','118.193533','29.784532','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166513,'341023','341000','0559','341023','district','黟县','117.938139','29.92477','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166514,'341024','341000','0559','341024','district','祁门县','117.717452','29.854179','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166515,'341004','341000','0559','341004','district','徽州区','118.336799','29.827291','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166516,'341021','341000','0559','341021','district','歙县','118.415258','29.861354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166517,'341002','341000','0559','341002','district','屯溪区','118.315012','29.69655','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166518,'340400','340000','0554','340400','city','淮南市','117.018603','32.585384','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166519,'340406','340400','0554','340406','district','潘集区','116.834715','32.77208','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166520,'340405','340400','0554','340405','district','八公山区','116.832979','32.630922','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166521,'340404','340400','0554','340404','district','谢家集区','116.860026','32.599173','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166522,'340421','340400','0554','340421','district','凤台县','116.710947','32.710536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166523,'340403','340400','0554','340403','district','田家庵区','117.017263','32.647456','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166524,'340402','340400','0554','340402','district','大通区','117.053314','32.631519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166525,'340422','340400','0554','340422','district','寿县','116.798203','32.545027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166526,'341100','340000','0550','341100','city','滁州市','118.333439','32.255904','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166527,'341126','341100','0550','341126','district','凤阳县','117.531791','32.875714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166528,'341125','341100','0550','341125','district','定远县','117.698528','32.530741','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166529,'341182','341100','0550','341182','district','明光市','118.018197','32.78193','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166530,'341124','341100','0550','341124','district','全椒县','118.274149','32.08593','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166531,'341181','341100','0550','341181','district','天长市','119.004838','32.667409','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166532,'341122','341100','0550','341122','district','来安县','118.432581','32.423072','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166533,'341103','341100','0550','341103','district','南谯区','118.416715','32.200084','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166534,'341102','341100','0550','341102','district','琅琊区','118.32115','32.334475','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166535,'340300','340000','0552','340300','city','蚌埠市','117.388566','32.91682','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166536,'340311','340300','0552','340311','district','淮上区','117.359352','32.96557','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166537,'340322','340300','0552','340322','district','五河县','117.881312','33.126532','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166538,'340304','340300','0552','340304','district','禹会区','117.34186','32.929715','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166539,'340303','340300','0552','340303','district','蚌山区','117.373347','32.916393','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166540,'340302','340300','0552','340302','district','龙子湖区','117.454544','32.90863','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166541,'340321','340300','0552','340321','district','怀远县','117.205083','32.971543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166542,'340323','340300','0552','340323','district','固镇县','117.316585','33.318371','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166543,'341300','340000','0557','341300','city','宿州市','116.96419','33.647726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166544,'341324','341300','0557','341324','district','泗县','117.910277','33.483686','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166545,'341302','341300','0557','341302','district','埇桥区','116.977039','33.640205','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166546,'341323','341300','0557','341323','district','灵璧县','117.549321','33.554464','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166547,'341322','341300','0557','341322','district','萧县','116.947289','34.18884','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166548,'341321','341300','0557','341321','district','砀山县','116.366257','34.442139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166549,'341600','340000','0558','341600','city','亳州市','115.778588','33.846285','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166550,'341602','341600','0558','341602','district','谯城区','115.779081','33.876436','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166551,'341621','341600','0558','341621','district','涡阳县','116.21665','33.494134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166552,'341622','341600','0558','341622','district','蒙城县','116.56434','33.265671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166553,'341623','341600','0558','341623','district','利辛县','116.206396','33.158424','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166554,'341800','340000','0563','341800','city','宣城市','118.759127','30.939278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166555,'341825','341800','0563','341825','district','旌德县','118.550043','30.298287','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166556,'341881','341800','0563','341881','district','宁国市','118.983085','30.634032','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166557,'341824','341800','0563','341824','district','绩溪县','118.578519','30.067533','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166558,'341821','341800','0563','341821','district','郎溪县','119.184326','31.142995','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166559,'341823','341800','0563','341823','district','泾县','118.419552','30.688793','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166560,'341802','341800','0563','341802','district','宣州区','118.786098','30.944356','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166561,'341882','341800','0563','341882','district','广德市','119.420799','30.877608','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166562,'340200','340000','0553','340200','city','芜湖市','118.433065','31.352614','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166563,'340202','340200','0553','340202','district','镜湖区','118.385133','31.34056','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166564,'340209','340200','0553','340209','district','弋江区','118.372664','31.311421','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166565,'340212','340200','0553','340212','district','繁昌区','118.198536','31.101766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166566,'340207','340200','0553','340207','district','鸠江区','118.392337','31.369752','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166567,'340223','340200','0553','340223','district','南陵县','118.334083','30.914621','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166568,'340210','340200','0553','340210','district','湾沚区','118.576124','31.134809','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166569,'340281','340200','0553','340281','district','无为市','117.902265','31.304462','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166570,'340100','340000','0551','340100','city','合肥市','117.227267','31.820567','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166571,'340103','340100','0551','340103','district','庐阳区','117.265088','31.878722','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166572,'340124','340100','0551','340124','district','庐江县','117.288165','31.256978','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166573,'340111','340100','0551','340111','district','包河区','117.310133','31.793801','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166574,'340104','340100','0551','340104','district','蜀山区','117.26053','31.851211','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166575,'340181','340100','0551','340181','district','巢湖市','117.890236','31.624464','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166576,'340122','340100','0551','340122','district','肥东县','117.4779','31.878601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166577,'340102','340100','0551','340102','district','瑶海区','117.30944','31.858111','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166578,'340123','340100','0551','340123','district','肥西县','117.158416','31.707006','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166579,'340121','340100','0551','340121','district','长丰县','117.167632','32.478347','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166580,'341500','340000','0564','341500','city','六安市','116.519729','31.735892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166581,'341525','341500','0564','341525','district','霍山县','116.348274','31.409668','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166582,'341523','341500','0564','341523','district','舒城县','116.94863','31.462036','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166583,'341504','341500','0564','341504','district','叶集区','115.925271','31.863693','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166584,'341524','341500','0564','341524','district','金寨县','115.934253','31.727295','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166585,'341502','341500','0564','341502','district','金安区','116.539458','31.75014','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166586,'341503','341500','0564','341503','district','裕安区','116.479505','31.738789','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166587,'341522','341500','0564','341522','district','霍邱县','116.277966','32.353362','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166588,'341200','340000','1558','341200','city','阜阳市','115.814252','32.891032','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166589,'341202','341200','1558','341202','district','颍州区','115.806916','32.883322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166590,'341221','341200','1558','341221','district','临泉县','115.26312','33.038884','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166591,'341204','341200','1558','341204','district','颍泉区','115.807415','32.925461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166592,'341226','341200','1558','341226','district','颍上县','116.256772','32.653211','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166593,'341282','341200','1558','341282','district','界首市','115.374688','33.257799','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166594,'341222','341200','1558','341222','district','太和县','115.621941','33.160327','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166595,'341225','341200','1558','341225','district','阜南县','115.596003','32.659681','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166596,'341203','341200','1558','341203','district','颍东区','115.856728','32.91173','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166597,'350000','100000','','350000','province','福建省','119.296194','26.101082','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166598,'350900','350000','0593','350900','city','宁德市','119.547729','26.666222','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166599,'350982','350900','0593','350982','district','福鼎市','120.216559','27.324796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166600,'350902','350900','0593','350902','district','蕉城区','119.526284','26.660658','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166601,'350921','350900','0593','350921','district','霞浦县','120.005267','26.885971','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166602,'350922','350900','0593','350922','district','古田县','118.74603','26.578134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166603,'350981','350900','0593','350981','district','福安市','119.647871','27.088274','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166604,'350924','350900','0593','350924','district','寿宁县','119.514589','27.45467','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166605,'350926','350900','0593','350926','district','柘荣县','119.900597','27.23421','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166606,'350923','350900','0593','350923','district','屏南县','118.985759','26.908256','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166607,'350925','350900','0593','350925','district','周宁县','119.338998','27.104797','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166608,'350100','350000','0591','350100','city','福州市','119.296411','26.074286','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166609,'350123','350100','0591','350123','district','罗源县','119.549129','26.490215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166610,'350124','350100','0591','350124','district','闽清县','118.863334','26.221099','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166611,'350122','350100','0591','350122','district','连江县','119.539542','26.197737','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166612,'350181','350100','0591','350181','district','福清市','119.384388','25.720081','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166613,'350112','350100','0591','350112','district','长乐区','119.593579','25.888274','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166614,'350128','350100','0591','350128','district','平潭县','119.789893','25.498767','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166615,'350103','350100','0591','350103','district','台江区','119.31419','26.052826','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166616,'350125','350100','0591','350125','district','永泰县','118.932746','25.867198','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166617,'350104','350100','0591','350104','district','仓山区','119.27322','26.047027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166618,'350102','350100','0591','350102','district','鼓楼区','119.304507','26.082666','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166619,'350121','350100','0591','350121','district','闽侯县','119.131362','26.150428','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166620,'350111','350100','0591','350111','district','晋安区','119.328591','26.081963','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166621,'350105','350100','0591','350105','district','马尾区','119.439259','25.998657','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166622,'350300','350000','0594','350300','city','莆田市','119.007662','25.454202','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166623,'350305','350300','0594','350305','district','秀屿区','119.105177','25.318649','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166624,'350304','350300','0594','350304','district','荔城区','119.014821','25.432268','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166625,'350303','350300','0594','350303','district','涵江区','119.116173','25.459057','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166626,'350302','350300','0594','350302','district','城厢区','118.994261','25.419062','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166627,'350322','350300','0594','350322','district','仙游县','118.689745','25.373373','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166628,'350200','350000','0592','350200','city','厦门市','118.08891','24.479627','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166629,'350203','350200','0592','350203','district','思明区','118.082745','24.445676','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166630,'350206','350200','0592','350206','district','湖里区','118.146825','24.512858','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166631,'350213','350200','0592','350213','district','翔安区','118.247911','24.618583','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166632,'350212','350200','0592','350212','district','同安区','118.150823','24.723299','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166633,'350205','350200','0592','350205','district','海沧区','118.032883','24.484688','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166634,'350211','350200','0592','350211','district','集美区','118.097407','24.575976','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166635,'350500','350000','0595','350500','city','泉州市','118.675724','24.874452','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166636,'350504','350500','0595','350504','district','洛江区','118.671168','24.939319','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166637,'350521','350500','0595','350521','district','惠安县','118.781037','25.012449','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166638,'350582','350500','0595','350582','district','晋江市','118.551659','24.781635','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166639,'350583','350500','0595','350583','district','南安市','118.385929','24.960056','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166640,'350527','350500','0595','350527','district','金门县','118.319179','24.437147','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166641,'350505','350500','0595','350505','district','泉港区','118.915804','25.120399','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166642,'350581','350500','0595','350581','district','石狮市','118.647945','24.731969','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166643,'350526','350500','0595','350526','district','德化县','118.241104','25.492102','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166644,'350503','350500','0595','350503','district','丰泽区','118.613007','24.890373','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166645,'350502','350500','0595','350502','district','鲤城区','118.58652','24.908133','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166646,'350525','350500','0595','350525','district','永春县','118.29416','25.321849','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166647,'350524','350500','0595','350524','district','安溪县','118.186295','25.056065','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166648,'350600','350000','0596','350600','city','漳州市','117.647298','24.515297','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166649,'350604','350600','0596','350604','district','龙海区','117.818485','24.446839','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166650,'350623','350600','0596','350623','district','漳浦县','117.613783','24.11741','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166651,'350626','350600','0596','350626','district','东山县','117.4295','23.702034','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166652,'350605','350600','0596','350605','district','长泰区','117.759119','24.625989','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166653,'350628','350600','0596','350628','district','平和县','117.314798','24.363831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166654,'350624','350600','0596','350624','district','诏安县','117.175314','23.711674','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166655,'350603','350600','0596','350603','district','龙文区','117.711188','24.503523','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166656,'350622','350600','0596','350622','district','云霄县','117.334351','23.935433','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166657,'350629','350600','0596','350629','district','华安县','117.53411','25.00445','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166658,'350602','350600','0596','350602','district','芗城区','117.653727','24.510937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166659,'350627','350600','0596','350627','district','南靖县','117.357061','24.5151','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166660,'350400','350000','0598','350400','city','三明市','117.638919','26.263455','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166661,'350429','350400','0598','350429','district','泰宁县','117.175448','26.900244','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166662,'350430','350400','0598','350430','district','建宁县','116.848488','26.833566','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166663,'350426','350400','0598','350426','district','尤溪县','118.189772','26.168712','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166664,'350425','350400','0598','350425','district','大田县','117.846828','25.692535','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166665,'350404','350400','0598','350404','district','三元区','117.646153','26.271653','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166666,'350405','350400','0598','350405','district','沙县区','117.792551','26.396843','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166667,'350424','350400','0598','350424','district','宁化县','116.654369','26.262298','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166668,'350421','350400','0598','350421','district','明溪县','117.202119','26.355938','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166669,'350423','350400','0598','350423','district','清流县','116.816772','26.177658','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166670,'350481','350400','0598','350481','district','永安市','117.365046','25.941671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166671,'350428','350400','0598','350428','district','将乐县','117.471127','26.728917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166672,'350800','350000','0597','350800','city','龙岩市','117.017362','25.075884','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166673,'350824','350800','0597','350824','district','武平县','116.100216','25.096139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166674,'350803','350800','0597','350803','district','永定区','116.732216','24.724148','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166675,'350823','350800','0597','350823','district','上杭县','116.419447','25.049867','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166676,'350802','350800','0597','350802','district','新罗区','117.036816','25.098942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166677,'350881','350800','0597','350881','district','漳平市','117.419823','25.290481','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166678,'350825','350800','0597','350825','district','连城县','116.754472','25.710538','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166679,'350821','350800','0597','350821','district','长汀县','116.357581','25.833531','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166680,'350700','350000','0599','350700','city','南平市','118.081325','27.382829','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166681,'350722','350700','0599','350722','district','浦城县','118.541079','27.917804','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166682,'350723','350700','0599','350723','district','光泽县','117.333812','27.541061','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166683,'350782','350700','0599','350782','district','武夷山市','118.035321','27.756422','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166684,'350703','350700','0599','350703','district','建阳区','118.120392','27.331996','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166685,'350724','350700','0599','350724','district','松溪县','118.785429','27.526028','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166686,'350725','350700','0599','350725','district','政和县','118.857703','27.366122','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166687,'350702','350700','0599','350702','district','延平区','118.181806','26.637503','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166688,'350783','350700','0599','350783','district','建瓯市','118.304712','27.023233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166689,'350781','350700','0599','350781','district','邵武市','117.492778','27.340672','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166690,'350721','350700','0599','350721','district','顺昌县','117.809433','26.793455','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166691,'430000','100000','','430000','province','湖南省','112.982951','28.116007','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166692,'430600','430000','0730','430600','city','岳阳市','113.128922','29.35648','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166693,'430623','430600','0730','430623','district','华容县','112.540448','29.530775','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166694,'430603','430600','0730','430603','district','云溪区','113.272312','29.472745','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166695,'430602','430600','0730','430602','district','岳阳楼区','113.129362','29.371356','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166696,'430682','430600','0730','430682','district','临湘市','113.450461','29.476687','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166697,'430621','430600','0730','430621','district','岳阳县','113.116152','29.144681','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166698,'430626','430600','0730','430626','district','平江县','113.581296','28.702018','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166699,'430611','430600','0730','430611','district','君山区','113.006434','29.461017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166700,'430624','430600','0730','430624','district','湘阴县','112.909248','28.690123','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166701,'430681','430600','0730','430681','district','汨罗市','113.067097','28.806937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166702,'431200','430000','0745','431200','city','怀化市','110.001598','27.569813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166703,'431230','431200','0745','431230','district','通道侗族自治县','109.784409','26.158032','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166704,'431222','431200','0745','431222','district','沅陵县','110.393782','28.452103','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166705,'431223','431200','0745','431223','district','辰溪县','110.183159','28.006235','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166706,'431224','431200','0745','431224','district','溆浦县','110.594419','27.908869','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166707,'431225','431200','0745','431225','district','会同县','109.734724','26.887156','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166708,'431226','431200','0745','431226','district','麻阳苗族自治县','109.817703','27.857666','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166709,'431221','431200','0745','431221','district','中方县','109.945436','27.440554','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166710,'431281','431200','0745','431281','district','洪江市','109.836475','27.209385','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166711,'431227','431200','0745','431227','district','新晃侗族自治县','109.174808','27.352094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166712,'431229','431200','0745','431229','district','靖州苗族侗族自治县','109.696249','26.575111','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166713,'431228','431200','0745','431228','district','芷江侗族自治县','109.684696','27.443429','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166714,'431202','431200','0745','431202','district','鹤城区','110.040099','27.578581','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166715,'433100','430000','0743','433100','city','湘西土家族苗族自治州','109.673345','28.215983','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166716,'433127','433100','0743','433127','district','永顺县','109.857142','28.979819','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166717,'433125','433100','0743','433125','district','保靖县','109.660433','28.699939','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166718,'433126','433100','0743','433126','district','古丈县','109.95072','28.616971','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166719,'433122','433100','0743','433122','district','泸溪县','110.219619','28.216109','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166720,'433130','433100','0743','433130','district','龙山县','109.443974','29.457623','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166721,'433101','433100','0743','433101','district','吉首市','109.698348','28.261948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166722,'433124','433100','0743','433124','district','花垣县','109.482378','28.57191','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166723,'433123','433100','0743','433123','district','凤凰县','109.580815','27.957441','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166724,'430900','430000','0737','430900','city','益阳市','112.355994','28.554853','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166725,'430902','430900','0737','430902','district','资阳区','112.324286','28.59149','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166726,'430922','430900','0737','430922','district','桃江县','112.156432','28.518215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166727,'430923','430900','0737','430923','district','安化县','111.213296','28.374223','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166728,'430981','430900','0737','430981','district','沅江市','112.354657','28.845755','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166729,'430921','430900','0737','430921','district','南县','112.396323','29.362396','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166730,'430903','430900','0737','430903','district','赫山区','112.373895','28.58011','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166731,'430400','430000','0734','430400','city','衡阳市','112.572016','26.894216','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166732,'430423','430400','0734','430423','district','衡山县','112.868361','27.230225','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166733,'430412','430400','0734','430412','district','南岳区','112.737678','27.231846','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166734,'430421','430400','0734','430421','district','衡阳县','112.370649','26.970258','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166735,'430405','430400','0734','430405','district','珠晖区','112.620653','26.894796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166736,'430407','430400','0734','430407','district','石鼓区','112.597937','26.944257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166737,'430482','430400','0734','430482','district','常宁市','112.399894','26.421717','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166738,'430424','430400','0734','430424','district','衡东县','112.953113','27.081086','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166739,'430426','430400','0734','430426','district','祁东县','112.090319','26.799284','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166740,'430422','430400','0734','430422','district','衡南县','112.677572','26.739665','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166741,'430481','430400','0734','430481','district','耒阳市','112.859806','26.422149','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166742,'430406','430400','0734','430406','district','雁峰区','112.613914','26.840335','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166743,'430408','430400','0734','430408','district','蒸湘区','112.567333','26.912388','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166744,'430300','430000','0732','430300','city','湘潭市','112.945439','27.83136','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166745,'430304','430300','0732','430304','district','岳塘区','112.969444','27.872013','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166746,'430302','430300','0732','430302','district','雨湖区','112.907334','27.856115','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166747,'430382','430300','0732','430382','district','韶山市','112.525364','27.914796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166748,'430321','430300','0732','430321','district','湘潭县','112.950767','27.779669','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166749,'430381','430300','0732','430381','district','湘乡市','112.550268','27.718655','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166750,'430800','430000','0744','430800','city','张家界市','110.478887','29.117343','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166751,'430802','430800','0744','430802','district','永定区','110.537379','29.119662','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166752,'430811','430800','0744','430811','district','武陵源区','110.550309','29.345721','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166753,'430822','430800','0744','430822','district','桑植县','110.204804','29.414112','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166754,'430821','430800','0744','430821','district','慈利县','111.139424','29.430429','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166755,'430700','430000','0736','430700','city','常德市','111.69905','29.031446','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166756,'430723','430700','0736','430723','district','澧县','111.758806','29.633138','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166757,'430781','430700','0736','430781','district','津市市','111.877957','29.606512','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166758,'430721','430700','0736','430721','district','安乡县','112.171107','29.41131','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166759,'430724','430700','0736','430724','district','临澧县','111.647547','29.440813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166760,'430726','430700','0736','430726','district','石门县','111.380056','29.584344','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166761,'430722','430700','0736','430722','district','汉寿县','111.970725','28.906063','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166762,'430703','430700','0736','430703','district','鼎城区','111.679896','29.017596','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166763,'430725','430700','0736','430725','district','桃源县','111.488985','28.90232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166764,'430702','430700','0736','430702','district','武陵区','111.683043','29.055332','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166765,'430100','430000','0731','430100','city','长沙市','112.938882','28.228304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166766,'430104','430100','0731','430104','district','岳麓区','112.930116','28.234202','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166767,'430181','430100','0731','430181','district','浏阳市','113.64328','28.163866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166768,'430182','430100','0731','430182','district','宁乡市','112.551887','28.277709','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166769,'430112','430100','0731','430112','district','望城区','112.83125','28.353221','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166770,'430105','430100','0731','430105','district','开福区','112.985284','28.257286','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166771,'430111','430100','0731','430111','district','雨花区','113.03853','28.135795','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166772,'430103','430100','0731','430103','district','天心区','112.98978','28.114544','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166773,'430121','430100','0731','430121','district','长沙县','113.080555','28.246821','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166774,'430102','430100','0731','430102','district','芙蓉区','113.032605','28.185351','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166775,'430500','430000','0739','430500','city','邵阳市','111.467855','27.239528','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166776,'430503','430500','0739','430503','district','大祥区','111.438892','27.222078','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166777,'430502','430500','0739','430502','district','双清区','111.496946','27.232286','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166778,'430523','430500','0739','430523','district','邵阳县','111.273872','26.990785','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166779,'430527','430500','0739','430527','district','绥宁县','110.155532','26.582027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166780,'430528','430500','0739','430528','district','新宁县','110.857294','26.432913','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166781,'430511','430500','0739','430511','district','北塔区','111.451988','27.246244','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166782,'430582','430500','0739','430582','district','邵东市','111.744268','27.259812','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166783,'430522','430500','0739','430522','district','新邵县','111.458656','27.320917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166784,'430529','430500','0739','430529','district','城步苗族自治县','110.322239','26.390598','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166785,'430524','430500','0739','430524','district','隆回县','111.032437','27.113978','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166786,'430581','430500','0739','430581','district','武冈市','110.632286','26.727414','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166787,'430525','430500','0739','430525','district','洞口县','110.575962','27.060274','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166788,'430200','430000','0733','430200','city','株洲市','113.132783','27.828862','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166789,'430202','430200','0733','430202','district','荷塘区','113.173169','27.856314','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166790,'430223','430200','0733','430223','district','攸县','113.397152','27.01516','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166791,'430211','430200','0733','430211','district','天元区','113.082227','27.826738','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166792,'430212','430200','0733','430212','district','渌口区','113.143832','27.699361','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166793,'430204','430200','0733','430204','district','石峰区','113.117763','27.875513','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166794,'430224','430200','0733','430224','district','茶陵县','113.537907','26.777957','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166795,'430225','430200','0733','430225','district','炎陵县','113.772665','26.489847','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166796,'430203','430200','0733','430203','district','芦淞区','113.153455','27.785198','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166797,'430281','430200','0733','430281','district','醴陵市','113.497119','27.6457','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166798,'431000','430000','0735','431000','city','郴州市','113.015517','25.770117','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166799,'431025','431000','0735','431025','district','临武县','112.563833','25.276459','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166800,'431003','431000','0735','431003','district','苏仙区','113.042364','25.799624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166801,'431023','431000','0735','431023','district','永兴县','113.116587','26.127155','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166802,'431002','431000','0735','431002','district','北湖区','113.010606','25.784632','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166803,'431022','431000','0735','431022','district','宜章县','112.948806','25.40059','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166804,'431026','431000','0735','431026','district','汝城县','113.685193','25.533024','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166805,'431028','431000','0735','431028','district','安仁县','113.269703','26.708569','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166806,'431024','431000','0735','431024','district','嘉禾县','112.379216','25.616025','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166807,'431027','431000','0735','431027','district','桂东县','113.944792','26.077609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166808,'431081','431000','0735','431081','district','资兴市','113.235841','25.977226','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166809,'431021','431000','0735','431021','district','桂阳县','112.733804','25.75382','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166810,'431100','430000','0746','431100','city','永州市','111.613482','26.419861','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166811,'431122','431100','0746','431122','district','东安县','111.315893','26.392173','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166812,'431103','431100','0746','431103','district','冷水滩区','111.592373','26.461313','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166813,'431102','431100','0746','431102','district','零陵区','111.629806','26.222278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166814,'431128','431100','0746','431128','district','新田县','112.203396','25.903965','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166815,'431126','431100','0746','431126','district','宁远县','111.945925','25.570817','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166816,'431123','431100','0746','431123','district','双牌县','111.659967','25.961909','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166817,'431125','431100','0746','431125','district','江永县','111.343543','25.274461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166818,'431124','431100','0746','431124','district','道县','111.600866','25.526282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166819,'431129','431100','0746','431129','district','江华瑶族自治县','111.57951','25.185257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166820,'431181','431100','0746','431181','district','祁阳市','111.840253','26.580292','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166821,'431127','431100','0746','431127','district','蓝山县','112.195842','25.369575','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166822,'431300','430000','0738','431300','city','娄底市','111.994468','27.699838','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166823,'431321','431300','0738','431321','district','双峰县','112.174623','27.457437','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166824,'431382','431300','0738','431382','district','涟源市','111.663837','27.693813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166825,'431381','431300','0738','431381','district','冷水江市','111.459199','27.656017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166826,'431322','431300','0738','431322','district','新化县','111.327674','27.725416','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166827,'431302','431300','0738','431302','district','娄星区','112.001922','27.730208','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166828,'460000','100000','','460000','province','海南省','110.348781','20.018639','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166829,'469022','460000','1892','469022','city','屯昌县','110.101667','19.351662','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166830,'469022_fengmuzhen','469022','1892','469022','street','枫木镇','109.973395','19.190743','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166831,'469022_wupozhen','469022','1892','469022','street','乌坡镇','110.083261','19.206717','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166832,'469022_nankunzhen','469022','1892','469022','street','南坤镇','110.034905','19.407514','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166833,'469022_poxinzhen','469022','1892','469022','street','坡心镇','110.214429','19.310397','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166834,'469022_xichangzhen','469022','1892','469022','street','西昌镇','109.953863','19.415440','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166835,'469022_nanlu:zhen','469022','1892','469022','street','南吕镇','110.042989','19.268166','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166836,'469022_xinxingzhen','469022','1892','469022','street','新兴镇','110.136198','19.558967','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166837,'469022_tunchengzhen','469022','1892','469022','street','屯城镇','110.180636','19.319861','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166838,'469025','460000','0802','469025','city','白沙黎族自治县','109.4429','19.221641','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166839,'469025_nankaixiang','469025','0802','469025','street','南开乡','109.293018','19.059602','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166840,'469025_fulongxiang','469025','0802','469025','street','阜龙乡','109.436387','19.331650','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166841,'469025_xishuixiang','469025','0802','469025','street','细水乡','109.526636','19.201248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166842,'469025_yachazhen','469025','0802','469025','street','牙叉镇','109.399183','19.138439','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166843,'469025_qifangzhen','469025','0802','469025','street','七坊镇','109.139587','19.311855','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166844,'469025_jinboxiang','469025','0802','469025','street','金波乡','109.171689','19.276555','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166845,'469025_yuanmenxiang','469025','0802','469025','street','元门乡','109.449713','19.095705','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166846,'469025_qingsongxiang','469025','0802','469025','street','青松乡','109.293018','19.059602','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166847,'469025_daanzhen','469025','0802','469025','street','打安镇','109.358207','19.378075','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166848,'469025_rongbangxiang','469025','0802','469025','street','荣邦乡','109.047772','19.432678','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166849,'469025_bangxizhen','469025','0802','469025','street','邦溪镇','109.043497','19.419968','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166850,'469030','460000','1899','469030','city','琼中黎族苗族自治县','109.838423','19.03327','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166851,'469030_shenyunxiang','469030','1899','469030','street','什运乡','109.583026','18.923692','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166852,'469030_wanlingzhen','469030','1899','469030','street','湾岭镇','109.865175','19.096504','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166853,'469030_shanganxiang','469030','1899','469030','street','上安乡','109.712993','18.899738','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166854,'469030_yinggenzhen','469030','1899','469030','street','营根镇','109.930582','19.089045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166855,'469030_limushanzhen','469030','1899','469030','street','黎母山镇','109.824353','19.190837','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166856,'469030_zhongpingzhen','469030','1899','469030','street','中平镇','110.032689','18.966494','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166857,'469030_hongmaozhen','469030','1899','469030','street','红毛镇','109.608031','19.033716','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166858,'469030_zhangzhengzhen','469030','1899','469030','street','长征镇','109.793068','18.896296','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166859,'469030_hepingzhen','469030','1899','469030','street','和平镇','110.052562','18.755917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166860,'469030_diaoluoshanxiang','469030','1899','469030','street','吊罗山乡','109.811113','18.766916','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166861,'469007','460000','0807','469007','city','东方市','108.651829','19.095187','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166862,'469007_sigengzhen','469007','0807','469007','street','四更镇','108.596055','19.187648','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166863,'469007_sanjiazhen','469007','0807','469007','street','三家镇','108.833188','19.259935','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166864,'469007_basuozhen','469007','0807','469007','street','八所镇','108.780679','19.124742','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166865,'469007_datianzhen','469007','0807','469007','street','大田镇','108.771554','19.042603','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166866,'469007_xinlongzhen','469007','0807','469007','street','新龙镇','108.678972','19.017898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166867,'469007_ganchengzhen','469007','0807','469007','street','感城镇','108.787859','18.842201','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166868,'469007_banqiaozhen','469007','0807','469007','street','板桥镇','108.910695','18.807162','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166869,'469007_tiananxiang','469007','0807','469007','street','天安乡','108.804715','18.975480','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166870,'469007_donghezhen','469007','0807','469007','street','东河镇','109.015044','19.084384','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166871,'469007_jiangbianxiang','469007','0807','469007','street','江边乡','109.091697','18.906129','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166872,'469027','460000','2802','469027','city','乐东黎族自治县','109.173384','18.750063','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166873,'469027_yinggehaizhen','469027','2802','469027','street','莺歌海镇','108.754600','18.546375','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166874,'469027_jianfengzhen','469027','2802','469027','street','尖峰镇','108.843833','18.624901','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166875,'469027_daanzhen','469027','2802','469027','street','大安镇','109.231993','18.734953','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166876,'469027_huangliuzhen','469027','2802','469027','street','黄流镇','108.804819','18.594264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166877,'469027_foluozhen','469027','2802','469027','street','佛罗镇','108.789451','18.579735','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166878,'469027_jiusuozhen','469027','2802','469027','street','九所镇','109.080605','18.450650','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166879,'469027_liguozhen','469027','2802','469027','street','利国镇','108.938223','18.495361','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166880,'469027_zhizhongzhen','469027','2802','469027','street','志仲镇','109.386810','18.609590','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166881,'469027_wanchongzhen','469027','2802','469027','street','万冲镇','109.331720','18.913271','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166882,'469027_baoyouzhen','469027','2802','469027','street','抱由镇','109.027958','18.797154','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166883,'469027_qianjiazhen','469027','2802','469027','street','千家镇','109.149747','18.465259','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166884,'469028','460000','0809','469028','city','陵水黎族自治县','110.037553','18.506045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166885,'469028_yelinzhen','469028','0809','469028','street','椰林镇','110.019690','18.482546','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166886,'469028_xincunzhen','469028','0809','469028','street','新村镇','110.026125','18.445965','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166887,'469028_lianzhen','469028','0809','469028','street','黎安镇','110.027365','18.450385','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166888,'469028_wenluozhen','469028','0809','469028','street','文罗镇','109.914457','18.573364','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166889,'469028_sancaizhen','469028','0809','469028','street','三才镇','109.963149','18.491519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166890,'469028_qunyingxiang','469028','0809','469028','street','群英乡','109.847456','18.569653','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166891,'469028_timengxiang','469028','0809','469028','street','提蒙乡','110.013235','18.640359','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166892,'469028_longguangzhen','469028','0809','469028','street','隆广镇','109.857549','18.480188','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166893,'469028_yingzhouzhen','469028','0809','469028','street','英州镇','109.875526','18.473898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166894,'469028_guangpozhen','469028','0809','469028','street','光坡镇','110.036496','18.559416','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166895,'469028_benhaozhen','469028','0809','469028','street','本号镇','109.837130','18.632318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166896,'460300','460000','2898','460300','city','三沙市','112.338649','16.831004','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166897,'460301','460300','2898','460301','district','西沙区','112.346961','16.834372','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166898,'460302','460300','2898','460302','district','南沙区','112.896229','9.548531','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166899,'469005','460000','1893','469005','city','文昌市','110.797473','19.544234','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166900,'469005_wenjiaozhen','469005','1893','469005','street','文教镇','110.855856','19.708320','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166901,'469005_dongjiaozhen','469005','1893','469005','street','东郊镇','110.910447','19.629115','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166902,'469005_puqianzhen','469005','1893','469005','street','铺前镇','110.675271','20.037734','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166903,'469005_longlouzhen','469005','1893','469005','street','龙楼镇','110.938472','19.660636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166904,'469005_changsazhen','469005','1893','469005','street','昌洒镇','110.894780','19.826152','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166905,'469005_jinshanzhen','469005','1893','469005','street','锦山镇','110.664000','20.027062','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166906,'469005_fengpozhen','469005','1893','469005','street','冯坡镇','110.790950','20.028869','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166907,'469005_dongluzhen','469005','1893','469005','street','东路镇','110.635704','19.755873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166908,'469005_donggezhen','469005','1893','469005','street','东阁镇','110.855599','19.705977','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166909,'469005_gongpozhen','469005','1893','469005','street','公坡镇','110.826694','19.852259','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166910,'469005_huiwenzhen','469005','1893','469005','street','会文镇','110.740895','19.498601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166911,'469005_wenchengzhen','469005','1893','469005','street','文城镇','110.707616','19.498201','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166912,'469005_penglaizhen','469005','1893','469005','street','蓬莱镇','110.507886','19.511678','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166913,'469005_zhongxingzhen','469005','1893','469005','street','重兴镇','110.563557','19.487059','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166914,'469005_baoluozhen','469005','1893','469005','street','抱罗镇','110.698537','19.833022','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166915,'469005_tanniuzhen','469005','1893','469005','street','潭牛镇','110.773474','19.744417','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166916,'469005_wengtianzhen','469005','1893','469005','street','翁田镇','110.961537','20.024271','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166917,'460400','460000','0805','460400','city','儋州市','109.580812','19.520948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166918,'460400_guangcunzhen','460400','0805','460400','street','光村镇','109.467340','19.903531','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166919,'460400_haitouzhen','460400','0805','460400','street','海头镇','109.028046','19.432317','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166920,'460400_xinzhouzhen','460400','0805','460400','street','新州镇','109.376729','19.708256','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166921,'460400_zhonghezhen','460400','0805','460400','street','中和镇','109.351017','19.774675','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166922,'460400_sandouzhen','460400','0805','460400','street','三都镇','109.204266','19.830050','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166923,'460400_emanzhen','460400','0805','460400','street','峨蔓镇','109.332639','19.843794','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166924,'460400_mutangzhen','460400','0805','460400','street','木棠镇','109.346666','19.900381','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166925,'460400_wangwuzhen','460400','0805','460400','street','王五镇','109.285186','19.573624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166926,'460400_yaxingzhen','460400','0805','460400','street','雅星镇','109.305133','19.393438','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166927,'460400_heqingzhen','460400','0805','460400','street','和庆镇','109.739681','19.587333','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166928,'460400_dachengzhen','460400','0805','460400','street','大成镇','109.371806','19.478206','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166929,'460400_dongchengzhen','460400','0805','460400','street','东成镇','109.521624','19.772032','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166930,'460400_lanyangzhen','460400','0805','460400','street','兰洋镇','109.735770','19.408360','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166931,'460400_nanfengzhen','460400','0805','460400','street','南丰镇','109.543297','19.504378','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166932,'460400_baimajingzhen','460400','0805','460400','street','白马井镇','109.274243','19.631272','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166933,'460400_neidazhen','460400','0805','460400','street','那大镇','109.555399','19.500960','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166934,'460400_paipuzhen','460400','0805','460400','street','排浦镇','109.212152','19.637338','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166935,'460200','460000','0899','460200','city','三亚市','109.511709','18.252865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166936,'460205','460200','0899','460205','district','崖州区','109.172298','18.357572','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166937,'460202','460200','0899','460202','district','海棠区','109.735676','18.384177','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166938,'460203','460200','0899','460203','district','吉阳区','109.578238','18.28146','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166939,'460204','460200','0899','460204','district','天涯区','109.452325','18.298975','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166940,'469029','460000','0801','469029','city','保亭黎族苗族自治县','109.700279','18.640339','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166941,'469029_nanlinxiang','469029','0801','469029','street','南林乡','109.576563','18.389262','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166942,'469029_maoganxiang','469029','0801','469029','street','毛感乡','109.503131','18.556288','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166943,'469029_baochengzhen','469029','0801','469029','street','保城镇','109.773883','18.600774','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166944,'469029_jiamaozhen','469029','0801','469029','street','加茂镇','109.674549','18.516922','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166945,'469029_xinzhengzhen','469029','0801','469029','street','新政镇','109.603989','18.435464','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166946,'469029_sandaozhen','469029','0801','469029','street','三道镇','109.702909','18.430953','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166947,'469029_shenlingzhen','469029','0801','469029','street','什玲镇','109.736545','18.697785','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166948,'469029_liugongxiang','469029','0801','469029','street','六弓乡','109.744740','18.574041','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166949,'469029_xiangshuizhen','469029','0801','469029','street','响水镇','109.550646','18.610753','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166950,'469001','460000','1897','469001','city','五指山市','109.516784','18.774827','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166951,'469001_maoyangzhen','469001','1897','469001','street','毛阳镇','109.449705','18.881089','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166952,'469001_shuimanxiang','469001','1897','469001','street','水满乡','109.600698','18.899478','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166953,'469001_fanyangzhen','469001','1897','469001','street','番阳镇','109.333537','18.913174','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166954,'469001_maodaoxiang','469001','1897','469001','street','毛道乡','109.356022','18.713388','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166955,'469001_changhaoxiang','469001','1897','469001','street','畅好乡','109.383431','18.682307','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166956,'469001_nanshengzhen','469001','1897','469001','street','南圣镇','109.684604','18.822608','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166957,'469001_tongshenzhen','469001','1897','469001','street','通什镇','109.623006','18.822353','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166958,'469026','460000','0803','469026','city','昌江黎族自治县','109.055783','19.298139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166959,'469026_wuliezhen','469026','0803','469026','street','乌烈镇','108.809852','19.352543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166960,'469026_chahezhen','469026','0803','469026','street','叉河镇','108.997547','19.244929','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166961,'469026_shiliuzhen','469026','0803','469026','street','石碌镇','108.997547','19.244929','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166962,'469026_changhuazhen','469026','0803','469026','street','昌化镇','108.731720','19.383636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166963,'469026_wangxiaxiang','469026','0803','469026','street','王下乡','109.094025','18.905182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166964,'469026_shiyuetianzhen','469026','0803','469026','street','十月田镇','108.842173','19.252501','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166965,'469026_qichazhen','469026','0803','469026','street','七叉镇','109.077512','19.190357','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166966,'469026_haiweizhen','469026','0803','469026','street','海尾镇','108.952319','19.494543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166967,'469021','460000','0806','469021','city','定安县','110.358001','19.681215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166968,'469021_lingkouzhen','469021','0806','469021','street','岭口镇','110.276026','19.360104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166969,'469021_longmenzhen','469021','0806','469021','street','龙门镇','110.297826','19.499676','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166970,'469021_dingchengzhen','469021','0806','469021','street','定城镇','110.384099','19.726719','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166971,'469021_leimingzhen','469021','0806','469021','street','雷鸣镇','110.287140','19.499352','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166972,'469021_huangzhuzhen','469021','0806','469021','street','黄竹镇','110.348146','19.445919','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166973,'469021_longhezhen','469021','0806','469021','street','龙河镇','110.258715','19.361056','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166974,'469021_fuwenzhen','469021','0806','469021','street','富文镇','110.223762','19.422974','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166975,'469021_hanlinzhen','469021','0806','469021','street','翰林镇','110.285870','19.349021','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166976,'469021_xinzhuzhen','469021','0806','469021','street','新竹镇','110.165312','19.577271','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166977,'469021_longhuzhen','469021','0806','469021','street','龙湖镇','110.405612','19.607283','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166978,'469023','460000','0804','469023','city','澄迈县','110.007497','19.738885','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166979,'469023_laochengzhen','469023','0804','469023','street','老城镇','110.152799','19.872233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166980,'469023_dafengzhen','469023','0804','469023','street','大丰镇','109.988855','19.904039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166981,'469023_ruixizhen','469023','0804','469023','street','瑞溪镇','110.111302','19.789006','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166982,'469023_jialezhen','469023','0804','469023','street','加乐镇','110.061273','19.617646','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166983,'469023_renxingzhen','469023','0804','469023','street','仁兴镇','109.776963','19.382054','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166984,'469023_zhongxingzhen','469023','0804','469023','street','中兴镇','109.760023','19.528937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166985,'469023_wenruzhen','469023','0804','469023','street','文儒镇','110.134745','19.633652','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166986,'469023_jinjiangzhen','469023','0804','469023','street','金江镇','109.976112','19.774256','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166987,'469023_qiaotouzhen','469023','0804','469023','street','桥头镇','109.936766','19.914013','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166988,'469023_fushanzhen','469023','0804','469023','street','福山镇','109.919175','19.929023','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166989,'469023_yongfazhen','469023','0804','469023','street','永发镇','110.186668','19.641706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166990,'460100','460000','0898','460100','city','海口市','110.200162','20.046316','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166991,'460108','460100','0898','460108','district','美兰区','110.366359','20.028983','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166992,'460107','460100','0898','460107','district','琼山区','110.384318','19.984293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166993,'460106','460100','0898','460106','district','龙华区','110.328628','20.030843','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166994,'460105','460100','0898','460105','district','秀英区','110.293566','20.007703','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166995,'469024','460000','1896','469024','city','临高县','109.690508','19.912025','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166996,'469024_bohouzhen','469024','1896','469024','street','博厚镇','109.807195','19.989365','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166997,'469024_nanbaozhen','469024','1896','469024','street','南宝镇','109.638149','19.751609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166998,'469024_heshezhen','469024','1896','469024','street','和舍镇','109.714907','19.671698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(166999,'469024_diaolouzhen','469024','1896','469024','street','调楼镇','109.609769','19.923138','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167000,'469024_dongyingzhen','469024','1896','469024','street','东英镇','109.612973','19.934938','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167001,'469024_jialaizhen','469024','1896','469024','street','加来镇','109.650909','19.759074','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167002,'469024_linchengzhen','469024','1896','469024','street','临城镇','109.632657','19.753184','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167003,'469024_duowenzhen','469024','1896','469024','street','多文镇','109.751742','19.673620','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167004,'469024_bolianzhen','469024','1896','469024','street','波莲镇','109.614806','19.855541','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167005,'469024_huangtongzhen','469024','1896','469024','street','皇桐镇','109.856872','19.732264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167006,'469024_xinyingzhen','469024','1896','469024','street','新盈镇','109.609386','19.855116','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167007,'469002','460000','1894','469002','city','琼海市','110.474524','19.259112','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167008,'469002_zhangpozhen','469002','1894','469002','street','长坡镇','110.497644','19.427753','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167009,'469002_longjiangzhen','469002','1894','469002','street','龙江镇','110.377839','19.152396','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167010,'469002_shibizhen','469002','1894','469002','street','石壁镇','110.330819','19.151644','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167011,'469002_yangjiangzhen','469002','1894','469002','street','阳江镇','110.343829','19.128946','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167012,'469002_huishanzhen','469002','1894','469002','street','会山镇','110.153445','19.012397','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167013,'469002_tanmenzhen','469002','1894','469002','street','潭门镇','110.539051','19.210843','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167014,'469002_tayangzhen','469002','1894','469002','street','塔洋镇','110.472088','19.325894','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167015,'469002_daluzhen','469002','1894','469002','street','大路镇','110.529076','19.373803','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167016,'469002_jiajizhen','469002','1894','469002','street','嘉积镇','110.421334','19.291689','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167017,'469002_wanquanzhen','469002','1894','469002','street','万泉镇','110.414108','19.355227','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167018,'469002_boaozhen','469002','1894','469002','street','博鳌镇','110.492863','19.177047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167019,'469002_zhongyuanzhen','469002','1894','469002','street','中原镇','110.426258','19.056245','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167020,'469006','460000','1898','469006','city','万宁市','110.392605','18.793697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167021,'469006_houanzhen','469006','1898','469006','street','后安镇','110.374318','18.908719','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167022,'469006_helezhen','469006','1898','469006','street','和乐镇','110.415860','18.962463','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167023,'469006_dongaozhen','469006','1898','469006','street','东澳镇','110.429479','18.640771','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167024,'469006_shangenzhen','469006','1898','469006','street','山根镇','110.451557','18.990371','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167025,'469006_longgunzhen','469006','1898','469006','street','龙滚镇','110.524041','19.000502','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167026,'469006_beidazhen','469006','1898','469006','street','北大镇','110.418437','18.985185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167027,'469006_sangengluozhen','469006','1898','469006','street','三更罗镇','110.113025','18.948777','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167028,'469006_lijizhen','469006','1898','469006','street','礼纪镇','110.265921','18.748523','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167029,'469006_damaozhen','469006','1898','469006','street','大茂镇','110.391696','18.876747','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167030,'469006_wanchengzhen','469006','1898','469006','street','万城镇','110.412512','18.826291','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167031,'469006_zhangfengzhen','469006','1898','469006','street','长丰镇','110.281098','18.855580','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167032,'469006_nanqiaozhen','469006','1898','469006','street','南桥镇','110.031092','18.749525','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167033,'320000','100000','','320000','province','江苏省','118.763563','32.061377','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167034,'320700','320000','0518','320700','city','连云港市','119.221487','34.596639','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167035,'320703','320700','0518','320703','district','连云区','119.338901','34.760317','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167036,'320707','320700','0518','320707','district','赣榆区','119.173173','34.841336','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167037,'320722','320700','0518','320722','district','东海县','118.752869','34.542194','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167038,'320724','320700','0518','320724','district','灌南县','119.315583','34.087251','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167039,'320706','320700','0518','320706','district','海州区','119.163492','34.572506','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167040,'320723','320700','0518','320723','district','灌云县','119.239426','34.284074','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167041,'320600','320000','0513','320600','city','南通市','120.894522','31.981269','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167042,'320623','320600','0513','320623','district','如东县','121.18495','32.331584','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167043,'320681','320600','0513','320681','district','启东市','121.65523','31.792831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167044,'320614','320600','0513','320614','district','海门区','121.182016','31.869418','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167045,'320613','320600','0513','320613','district','崇川区','120.857253','32.010277','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167046,'320612','320600','0513','320612','district','通州区','121.073742','32.065972','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167047,'320682','320600','0513','320682','district','如皋市','120.574028','32.371493','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167048,'320685','320600','0513','320685','district','海安市','120.46779','32.532853','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167049,'320100','320000','025','320100','city','南京市','118.796624','32.059344','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167050,'320115','320100','025','320115','district','江宁区','118.83951','31.953195','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167051,'320114','320100','025','320114','district','雨花台区','118.779087','31.991291','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167052,'320118','320100','025','320118','district','高淳区','118.892074','31.328678','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167053,'320117','320100','025','320117','district','溧水区','119.028414','31.651108','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167054,'320106','320100','025','320106','district','鼓楼区','118.769943','32.066814','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167055,'320104','320100','025','320104','district','秦淮区','118.794792','32.039065','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167056,'320111','320100','025','320111','district','浦口区','118.627165','32.059796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167057,'320105','320100','025','320105','district','建邺区','118.731642','32.003343','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167058,'320116','320100','025','320116','district','六合区','118.822241','32.323235','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167059,'320113','320100','025','320113','district','栖霞区','118.909117','32.096423','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167060,'320102','320100','025','320102','district','玄武区','118.797779','32.048644','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167061,'320500','320000','0512','320500','city','苏州市','120.585294','31.299758','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167062,'320505','320500','0512','320505','district','虎丘区','120.434238','31.329601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167063,'320585','320500','0512','320585','district','太仓市','121.130344','31.458043','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167064,'320507','320500','0512','320507','district','相城区','120.642391','31.369189','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167065,'320508','320500','0512','320508','district','姑苏区','120.617367','31.335648','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167066,'320581','320500','0512','320581','district','常熟市','120.752512','31.656016','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167067,'320583','320500','0512','320583','district','昆山市','120.980795','31.385476','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167068,'320509','320500','0512','320509','district','吴江区','120.645728','31.138525','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167069,'320506','320500','0512','320506','district','吴中区','120.632094','31.263604','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167070,'320582','320500','0512','320582','district','张家港市','120.555979','31.876739','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167071,'321200','320000','0523','321200','city','泰州市','119.922883','32.456692','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167072,'321281','321200','0523','321281','district','兴化市','119.85255','32.911952','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167073,'321282','321200','0523','321282','district','靖江市','120.277124','31.98325','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167074,'321283','321200','0523','321283','district','泰兴市','120.051475','32.173072','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167075,'321203','321200','0523','321203','district','高港区','119.88154','32.31923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167076,'321204','321200','0523','321204','district','姜堰区','120.12807','32.51029','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167077,'321202','321200','0523','321202','district','海陵区','119.923825','32.49248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167078,'321100','320000','0511','321100','city','镇江市','119.424441','32.188141','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167079,'321112','321100','0511','321112','district','丹徒区','119.433854','32.132118','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167080,'321102','321100','0511','321102','district','京口区','119.470186','32.198285','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167081,'321181','321100','0511','321181','district','丹阳市','119.606071','32.010035','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167082,'321111','321100','0511','321111','district','润州区','119.411383','32.195146','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167083,'321182','321100','0511','321182','district','扬中市','119.796816','32.236476','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167084,'321183','321100','0511','321183','district','句容市','119.168693','31.945732','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167085,'320900','320000','0515','320900','city','盐城市','120.16263','33.348176','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167086,'320922','320900','0515','320922','district','滨海县','119.820713','33.990372','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167087,'320924','320900','0515','320924','district','射阳县','120.326338','33.766277','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167088,'320921','320900','0515','320921','district','响水县','119.578332','34.199172','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167089,'320902','320900','0515','320902','district','亭湖区','120.196148','33.391414','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167090,'320903','320900','0515','320903','district','盐都区','120.153567','33.338538','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167091,'320904','320900','0515','320904','district','大丰区','120.500761','33.200047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167092,'320925','320900','0515','320925','district','建湖县','119.788743','33.438931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167093,'320923','320900','0515','320923','district','阜宁县','119.802271','33.758857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167094,'320981','320900','0515','320981','district','东台市','120.320308','32.867845','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167095,'320800','320000','0517','320800','city','淮安市','119.113166','33.551495','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167096,'320830','320800','0517','320830','district','盱眙县','118.544545','33.011905','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167097,'320831','320800','0517','320831','district','金湖县','119.020432','33.024663','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167098,'320813','320800','0517','320813','district','洪泽区','118.873132','33.294095','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167099,'320804','320800','0517','320804','district','淮阴区','119.034895','33.632588','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167100,'320826','320800','0517','320826','district','涟水县','119.260589','33.781648','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167101,'320812','320800','0517','320812','district','清江浦区','119.026662','33.552579','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167102,'320803','320800','0517','320803','district','淮安区','119.141183','33.50296','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167103,'321300','320000','0527','321300','city','宿迁市','118.275228','33.963186','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167104,'321324','321300','0527','321324','district','泗洪县','118.223941','33.476575','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167105,'321302','321300','0527','321302','district','宿城区','118.242048','33.963891','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167106,'321311','321300','0527','321311','district','宿豫区','118.330423','33.94813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167107,'321323','321300','0527','321323','district','泗阳县','118.703636','33.723576','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167108,'321322','321300','0527','321322','district','沭阳县','118.804321','34.110642','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167109,'320400','320000','0519','320400','city','常州市','119.974092','31.811313','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167110,'320413','320400','0519','320413','district','金坛区','119.587503','31.722384','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167111,'320411','320400','0519','320411','district','新北区','119.960925','31.86355','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167112,'320404','320400','0519','320404','district','钟楼区','119.902081','31.802608','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167113,'320481','320400','0519','320481','district','溧阳市','119.484164','31.416967','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167114,'320402','320400','0519','320402','district','天宁区','119.999439','31.79232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167115,'320412','320400','0519','320412','district','武进区','119.942441','31.701252','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167116,'320200','320000','0510','320200','city','无锡市','120.311889','31.491064','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167117,'320205','320200','0510','320205','district','锡山区','120.357732','31.589484','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167118,'320206','320200','0510','320206','district','惠山区','120.29843','31.680282','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167119,'320211','320200','0510','320211','district','滨湖区','120.284381','31.527846','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167120,'320214','320200','0510','320214','district','新吴区','120.364303','31.49085','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167121,'320213','320200','0510','320213','district','梁溪区','120.303551','31.566226','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167122,'320282','320200','0510','320282','district','宜兴市','119.821873','31.338429','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167123,'320281','320200','0510','320281','district','江阴市','120.284794','31.921642','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167124,'321000','320000','0514','321000','city','扬州市','119.412834','32.394404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167125,'321081','321000','0514','321081','district','仪征市','119.184468','32.272833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167126,'321002','321000','0514','321002','district','广陵区','119.431785','32.395654','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167127,'321003','321000','0514','321003','district','邗江区','119.397935','32.37741','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167128,'321084','321000','0514','321084','district','高邮市','119.45892','32.781606','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167129,'321023','321000','0514','321023','district','宝应县','119.358389','33.241125','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167130,'321012','321000','0514','321012','district','江都区','119.569684','32.43571','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167131,'320300','320000','0516','320300','city','徐州市','117.283752','34.204224','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167132,'320311','320300','0516','320311','district','泉山区','117.194405','34.22655','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167133,'320312','320300','0516','320312','district','铜山区','117.169698','34.181162','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167134,'320322','320300','0516','320322','district','沛县','116.936353','34.760761','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167135,'320302','320300','0516','320302','district','鼓楼区','117.185643','34.288736','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167136,'320321','320300','0516','320321','district','丰县','116.658111','34.697232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167137,'320382','320300','0516','320382','district','邳州市','118.012511','34.339208','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167138,'320324','320300','0516','320324','district','睢宁县','117.941364','33.913727','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167139,'320305','320300','0516','320305','district','贾汪区','117.465137','34.436492','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167140,'320303','320300','0516','320303','district','云龙区','117.251515','34.253638','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167141,'320381','320300','0516','320381','district','新沂市','118.354747','34.369585','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167142,'630000','100000','','630000','province','青海省','101.780482','36.622538','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167143,'630200','630000','0972','630200','city','海东市','102.41064','36.473448','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167144,'630222','630200','0972','630222','district','民和回族土族自治县','102.830775','36.320038','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167145,'630202','630200','0972','630202','district','乐都区','102.401614','36.482242','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167146,'630225','630200','0972','630225','district','循化撒拉族自治县','102.488958','35.851079','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167147,'630203','630200','0972','630203','district','平安区','102.108538','36.500166','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167148,'630223','630200','0972','630223','district','互助土族自治县','101.958519','36.844027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167149,'630224','630200','0972','630224','district','化隆回族自治县','102.031221','36.011123','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167150,'632500','630000','0974','632500','city','海南藏族自治州','100.622647','36.296399','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167151,'632523','632500','0974','632523','district','贵德县','101.43403','36.039672','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167152,'632525','632500','0974','632525','district','贵南县','100.747731','35.587239','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167153,'632522','632500','0974','632522','district','同德县','100.577859','35.254297','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167154,'632521','632500','0974','632521','district','共和县','100.619405','36.284158','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167155,'632524','632500','0974','632524','district','兴海县','99.987799','35.589086','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167156,'632800','630000','0977','632800','city','海西蒙古族藏族自治州','97.33197','37.348114','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167157,'632823','632800','0977','632823','district','天峻县','99.02297','37.301206','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167158,'632802','632800','0977','632802','district','德令哈市','97.361528','37.369865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167159,'632801','632800','0977','632801','district','格尔木市','94.928293','36.407272','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167160,'632822','632800','0977','632822','district','都兰县','98.095889','36.302098','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167161,'632821','632800','0977','632821','district','乌兰县','98.47988','36.941279','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167162,'632825','632800','0977','632825','district','海西蒙古族藏族自治州直辖','95.357233','37.853631','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167163,'632803','632800','0977','632803','district','茫崖市','90.856372','38.247537','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167164,'632700','630000','0976','632700','city','玉树藏族自治州','97.006292','33.006308','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167165,'632724','632700','0976','632724','district','治多县','95.618954','33.844854','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167166,'632726','632700','0976','632726','district','曲麻莱县','95.805463','34.137353','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167167,'632723','632700','0976','632723','district','称多县','97.109487','33.377504','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167168,'632722','632700','0976','632722','district','杂多县','95.300723','32.893185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167169,'632701','632700','0976','632701','district','玉树市','97.009184','32.992934','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167170,'632725','632700','0976','632725','district','囊谦县','96.489538','32.203193','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167171,'632300','630000','0973','632300','city','黄南藏族自治州','102.015397','35.519317','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167172,'632301','632300','0973','632301','district','同仁市','102.018663','35.515769','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167173,'632323','632300','0973','632323','district','泽库县','101.466565','35.035322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167174,'632322','632300','0973','632322','district','尖扎县','102.040094','35.943253','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167175,'632324','632300','0973','632324','district','河南蒙古族自治县','101.617719','34.734777','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167176,'632600','630000','0975','632600','city','果洛藏族自治州','100.245161','34.472179','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167177,'632621','632600','0975','632621','district','玛沁县','100.238873','34.478049','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167178,'632623','632600','0975','632623','district','甘德县','99.900923','33.969216','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167179,'632624','632600','0975','632624','district','达日县','99.651863','33.739293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167180,'632625','632600','0975','632625','district','久治县','101.482831','33.429471','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167181,'632622','632600','0975','632622','district','班玛县','100.737138','32.932723','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167182,'632626','632600','0975','632626','district','玛多县','98.209217','34.915645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167183,'630100','630000','0971','630100','city','西宁市','101.777795','36.616621','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167184,'630123','630100','0971','630123','district','湟源县','101.256464','36.682426','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167185,'630121','630100','0971','630121','district','大通回族土族自治县','101.685503','36.926872','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167186,'630104','630100','0971','630104','district','城西区','101.765915','36.628288','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167187,'630105','630100','0971','630105','district','城北区','101.766308','36.650064','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167188,'630102','630100','0971','630102','district','城东区','101.803717','36.599744','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167189,'630106','630100','0971','630106','district','湟中区','101.571683','36.501291','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167190,'630103','630100','0971','630103','district','城中区','101.705357','36.545545','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167191,'632200','630000','0970','632200','city','海北藏族自治州','100.900944','36.954612','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167192,'632223','632200','0970','632223','district','海晏县','100.994521','36.896667','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167193,'632221','632200','0970','632221','district','门源回族自治县','101.611524','37.388567','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167194,'632224','632200','0970','632224','district','刚察县','100.145662','37.325096','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167195,'632222','632200','0970','632222','district','祁连县','100.253211','38.177112','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167196,'450000','100000','','450000','province','广西壮族自治区','108.327537','22.816659','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167197,'451000','450000','0776','451000','city','百色市','106.61869','23.90307','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167198,'451028','451000','0776','451028','district','乐业县','106.556564','24.776812','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167199,'451031','451000','0776','451031','district','隆林各族自治县','105.343816','24.770649','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167200,'451030','451000','0776','451030','district','西林县','105.097229','24.50762','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167201,'451027','451000','0776','451027','district','凌云县','106.56114','24.347444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167202,'451002','451000','0776','451002','district','右江区','106.618151','23.900804','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167203,'451082','451000','0776','451082','district','平果市','107.589768','23.329815','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167204,'451029','451000','0776','451029','district','田林县','106.22874','24.294627','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167205,'451024','451000','0776','451024','district','德保县','106.615087','23.324084','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167206,'451026','451000','0776','451026','district','那坡县','105.83234','23.387997','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167207,'451003','451000','0776','451003','district','田阳区','106.915424','23.735631','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167208,'451022','451000','0776','451022','district','田东县','107.125609','23.596706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167209,'451081','451000','0776','451081','district','靖西市','106.417666','23.134375','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167210,'450500','450000','0779','450500','city','北海市','109.120248','21.481305','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167211,'450503','450500','0779','450503','district','银海区','109.139689','21.449729','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167212,'450512','450500','0779','450512','district','铁山港区','109.422099','21.529878','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167213,'450502','450500','0779','450502','district','海城区','109.117256','21.474914','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167214,'450521','450500','0779','450521','district','合浦县','109.207236','21.66132','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167215,'450700','450000','0777','450700','city','钦州市','108.654355','21.980894','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167216,'450702','450700','0777','450702','district','钦南区','108.657427','21.940438','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167217,'450703','450700','0777','450703','district','钦北区','108.638738','22.0024','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167218,'450722','450700','0777','450722','district','浦北县','109.556232','22.271902','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167219,'450721','450700','0777','450721','district','灵山县','109.290698','22.416671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167220,'450400','450000','0774','450400','city','梧州市','111.279022','23.476733','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167221,'450423','450400','0774','450423','district','蒙山县','110.525003','24.193567','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167222,'450406','450400','0774','450406','district','龙圩区','111.247514','23.414869','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167223,'450481','450400','0774','450481','district','岑溪市','110.994955','22.918327','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167224,'450405','450400','0774','450405','district','长洲区','111.274276','23.486279','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167225,'450422','450400','0774','450422','district','藤县','110.914606','23.375538','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167226,'450403','450400','0774','450403','district','万秀区','111.318065','23.470543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167227,'450421','450400','0774','450421','district','苍梧县','111.547244','23.868208','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167228,'450600','450000','0770','450600','city','防城港市','108.35467','21.686732','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167229,'450621','450600','0770','450621','district','上思县','107.983627','22.153671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167230,'450602','450600','0770','450602','district','港口区','108.380273','21.643426','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167231,'450603','450600','0770','450603','district','防城区','108.353978','21.768826','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167232,'450681','450600','0770','450681','district','东兴市','107.971828','21.547821','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167233,'451100','450000','1774','451100','city','贺州市','111.567216','24.404182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167234,'451123','451100','1774','451123','district','富川瑶族自治县','111.296012','24.811601','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167235,'451122','451100','1774','451122','district','钟山县','111.303085','24.526041','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167236,'451121','451100','1774','451121','district','昭平县','110.811158','24.169675','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167237,'451103','451100','1774','451103','district','平桂区','111.479839','24.453094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167238,'451102','451100','1774','451102','district','八步区','111.552029','24.411822','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167239,'451200','450000','0778','451200','city','河池市','108.63639','24.48523','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167240,'451223','451200','0778','451223','district','凤山县','107.042157','24.546913','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167241,'451229','451200','0778','451229','district','大化瑶族自治县','107.998151','23.735699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167242,'451224','451200','0778','451224','district','东兰县','107.374259','24.510698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167243,'451228','451200','0778','451228','district','都安瑶族自治县','108.105229','23.932704','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167244,'451226','451200','0778','451226','district','环江毛南族自治县','108.258426','24.825923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167245,'451202','451200','0778','451202','district','金城江区','108.085166','24.692865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167246,'451227','451200','0778','451227','district','巴马瑶族自治县','107.258671','24.142216','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167247,'451225','451200','0778','451225','district','罗城仫佬族自治县','108.904613','24.777501','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167248,'451203','451200','0778','451203','district','宜州区','108.611303','24.500981','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167249,'451221','451200','0778','451221','district','南丹县','107.540578','24.975066','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167250,'451222','451200','0778','451222','district','天峨县','107.172287','24.999181','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167251,'450200','450000','0772','450200','city','柳州市','109.428071','24.326442','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167252,'450224','450200','0772','450224','district','融安县','109.397538','25.224549','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167253,'450225','450200','0772','450225','district','融水苗族自治县','109.256609','25.066624','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167254,'450222','450200','0772','450222','district','柳城县','109.244565','24.649989','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167255,'450202','450200','0772','450202','district','城中区','109.427398','24.366964','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167256,'450205','450200','0772','450205','district','柳北区','109.402009','24.362611','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167257,'450226','450200','0772','450226','district','三江侗族自治县','109.607675','25.783197','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167258,'450204','450200','0772','450204','district','柳南区','109.385504','24.336229','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167259,'450206','450200','0772','450206','district','柳江区','109.326365','24.255644','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167260,'450223','450200','0772','450223','district','鹿寨县','109.750527','24.472897','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167261,'450203','450200','0772','450203','district','鱼峰区','109.452781','24.318276','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167262,'451300','450000','1772','451300','city','来宾市','109.221243','23.750105','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167263,'451322','451300','1772','451322','district','象州县','109.704852','23.973832','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167264,'451324','451300','1772','451324','district','金秀瑶族自治县','110.190354','24.130509','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167265,'451381','451300','1772','451381','district','合山市','108.885829','23.807032','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167266,'451302','451300','1772','451302','district','兴宾区','109.183284','23.727647','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167267,'451323','451300','1772','451323','district','武宣县','109.663153','23.594444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167268,'451321','451300','1772','451321','district','忻城县','108.665641','24.066176','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167269,'450900','450000','0775','450900','city','玉林市','110.18097','22.654001','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167270,'450903','450900','0775','450903','district','福绵区','110.059564','22.585316','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167271,'450923','450900','0775','450923','district','博白县','109.975856','22.273539','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167272,'450924','450900','0775','450924','district','兴业县','109.875223','22.736395','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167273,'450921','450900','0775','450921','district','容县','110.558093','22.85844','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167274,'450902','450900','0775','450902','district','玉州区','110.150717','22.628476','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167275,'450981','450900','0775','450981','district','北流市','110.353765','22.708415','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167276,'450922','450900','0775','450922','district','陆川县','110.26412','22.321563','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167277,'450300','450000','0773','450300','city','桂林市','110.179752','25.235615','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167278,'450327','450300','0773','450327','district','灌阳县','111.160764','25.489419','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167279,'450330','450300','0773','450330','district','平乐县','110.632867','24.622814','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167280,'450332','450300','0773','450332','district','恭城瑶族自治县','110.82841','24.831581','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167281,'450324','450300','0773','450324','district','全州县','111.087089','25.94939','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167282,'450326','450300','0773','450326','district','永福县','109.982974','24.980447','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167283,'450321','450300','0773','450321','district','阳朔县','110.496305','24.778785','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167284,'450381','450300','0773','450381','district','荔浦市','110.395232','24.48843','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167285,'450312','450300','0773','450312','district','临桂区','110.212425','25.238556','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167286,'450302','450300','0773','450302','district','秀峰区','110.264102','25.273954','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167287,'450304','450300','0773','450304','district','象山区','110.281223','25.261585','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167288,'450325','450300','0773','450325','district','兴安县','110.672013','25.612576','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167289,'450329','450300','0773','450329','district','资源县','110.652612','26.042452','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167290,'450328','450300','0773','450328','district','龙胜各族自治县','110.011662','25.79803','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167291,'450305','450300','0773','450305','district','七星区','110.317576','25.253093','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167292,'450311','450300','0773','450311','district','雁山区','110.286611','25.101798','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167293,'450323','450300','0773','450323','district','灵川县','110.319837','25.3948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167294,'450303','450300','0773','450303','district','叠彩区','110.301489','25.314158','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167295,'450100','450000','0771','450100','city','南宁市','108.366407','22.8177','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167296,'450124','450100','0771','450124','district','马山县','108.177764','23.708448','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167297,'450125','450100','0771','450125','district','上林县','108.605089','23.432451','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167298,'450110','450100','0771','450110','district','武鸣区','108.274869','23.159257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167299,'450123','450100','0771','450123','district','隆安县','107.695721','23.166356','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167300,'450107','450100','0771','450107','district','西乡塘区','108.31344','22.833852','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167301,'450103','450100','0771','450103','district','青秀区','108.495204','22.785833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167302,'450102','450100','0771','450102','district','兴宁区','108.368071','22.85354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167303,'450126','450100','0771','450126','district','宾阳县','108.810336','23.217771','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167304,'450105','450100','0771','450105','district','江南区','108.273206','22.781166','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167305,'450109','450100','0771','450109','district','邕宁区','108.487438','22.758633','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167306,'450108','450100','0771','450108','district','良庆区','108.393889','22.753613','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167307,'450181','450100','0771','450181','district','横州市','109.262448','22.681257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167308,'450800','450000','1755','450800','city','贵港市','109.598903','23.11182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167309,'450803','450800','1755','450803','district','港南区','109.599357','23.075816','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167310,'450802','450800','1755','450802','district','港北区','109.572227','23.11136','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167311,'450881','450800','1755','450881','district','桂平市','110.079315','23.394208','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167312,'450821','450800','1755','450821','district','平南县','110.392489','23.540413','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167313,'450804','450800','1755','450804','district','覃塘区','109.452668','23.127405','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167314,'451400','450000','1771','451400','city','崇左市','107.364973','22.377139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167315,'451481','451400','1771','451481','district','凭祥市','106.766715','22.094421','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167316,'451421','451400','1771','451421','district','扶绥县','107.90389','22.635542','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167317,'451402','451400','1771','451402','district','江州区','107.353694','22.40609','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167318,'451423','451400','1771','451423','district','龙州县','106.854001','22.343591','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167319,'451422','451400','1771','451422','district','宁明县','107.076394','22.140242','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167320,'451425','451400','1771','451425','district','天等县','107.143539','23.080818','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167321,'451424','451400','1771','451424','district','大新县','107.200654','22.829287','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167322,'640000','100000','','640000','province','宁夏回族自治区','106.258889','38.472273','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167323,'640400','640000','0954','640400','city','固原市','106.24267','36.01628','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167324,'640423','640400','0954','640423','district','隆德县','106.111321','35.62592','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167325,'640425','640400','0954','640425','district','彭阳县','106.632151','35.860067','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167326,'640424','640400','0954','640424','district','泾源县','106.330569','35.497887','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167327,'640422','640400','0954','640422','district','西吉县','105.729189','35.963885','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167328,'640402','640400','0954','640402','district','原州区','106.28784','36.003777','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167329,'640200','640000','0952','640200','city','石嘴山市','106.382792','38.984632','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167330,'640205','640200','0952','640205','district','惠农区','106.781013','39.239292','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167331,'640202','640200','0952','640202','district','大武口区','106.368128','39.019375','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167332,'640221','640200','0952','640221','district','平罗县','106.523411','38.913923','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167333,'640100','640000','0951','640100','city','银川市','106.230977','38.487783','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167334,'640105','640100','0951','640105','district','西夏区','106.161208','38.502325','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167335,'640121','640100','0951','640121','district','永宁县','106.25337','38.277376','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167336,'640181','640100','0951','640181','district','灵武市','106.339978','38.102456','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167337,'640122','640100','0951','640122','district','贺兰县','106.365074','38.579147','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167338,'640104','640100','0951','640104','district','兴庆区','106.288452','38.473972','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167339,'640106','640100','0951','640106','district','金凤区','106.239339','38.474277','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167340,'640500','640000','1953','640500','city','中卫市','105.19677','37.500185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167341,'640522','640500','1953','640522','district','海原县','105.643449','36.565189','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167342,'640502','640500','1953','640502','district','沙坡头区','105.173875','37.516859','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167343,'640521','640500','1953','640521','district','中宁县','105.684729','37.492092','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167344,'640300','640000','0953','640300','city','吴忠市','106.198613','37.997755','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167345,'640323','640300','0953','640323','district','盐池县','107.407184','37.783276','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167346,'640302','640300','0953','640302','district','利通区','106.212479','37.984586','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167347,'640303','640300','0953','640303','district','红寺堡区','106.06216','37.425494','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167348,'640381','640300','0953','640381','district','青铜峡市','106.07906','38.021579','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167349,'640324','640300','0953','640324','district','同心县','105.895412','36.954635','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167350,'330000','100000','','330000','province','浙江省','120.152575','30.266619','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167351,'330900','330000','0580','330900','city','舟山市','122.207395','29.985578','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167352,'330922','330900','0580','330922','district','嵊泗县','122.45132','30.725677','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167353,'330921','330900','0580','330921','district','岱山县','122.225718','30.264533','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167354,'330902','330900','0580','330902','district','定海区','122.106844','30.019795','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167355,'330903','330900','0580','330903','district','普陀区','122.323297','29.970571','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167356,'330400','330000','0573','330400','city','嘉兴市','120.755623','30.746814','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167357,'330482','330400','0573','330482','district','平湖市','121.015619','30.677804','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167358,'330424','330400','0573','330424','district','海盐县','120.94628','30.52664','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167359,'330483','330400','0573','330483','district','桐乡市','120.565127','30.630375','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167360,'330402','330400','0573','330402','district','南湖区','120.782952','30.747738','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167361,'330411','330400','0573','330411','district','秀洲区','120.709047','30.764811','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167362,'330481','330400','0573','330481','district','海宁市','120.680224','30.511536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167363,'330421','330400','0573','330421','district','嘉善县','120.926031','30.83085','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167364,'330200','330000','0574','330200','city','宁波市','121.62454','29.860258','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167365,'330206','330200','0574','330206','district','北仑区','121.844601','29.899548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167366,'330225','330200','0574','330225','district','象山县','121.869251','29.476826','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167367,'330211','330200','0574','330211','district','镇海区','121.596686','29.965212','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167368,'330205','330200','0574','330205','district','江北区','121.555067','29.88673','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167369,'330226','330200','0574','330226','district','宁海县','121.429729','29.287929','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167370,'330203','330200','0574','330203','district','海曙区','121.550485','29.873705','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167371,'330281','330200','0574','330281','district','余姚市','121.154572','30.037967','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167372,'330282','330200','0574','330282','district','慈溪市','121.266525','30.170695','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167373,'330213','330200','0574','330213','district','奉化区','121.406151','29.655292','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167374,'330212','330200','0574','330212','district','鄞州区','121.546617','29.817302','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167375,'331000','330000','0576','331000','city','台州市','121.42079','28.655716','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167376,'331082','331000','0576','331082','district','临海市','121.144625','28.859042','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167377,'331002','331000','0576','331002','district','椒江区','121.442859','28.673334','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167378,'331004','331000','0576','331004','district','路桥区','121.337874','28.578244','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167379,'331083','331000','0576','331083','district','玉环市','121.231915','28.136703','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167380,'331081','331000','0576','331081','district','温岭市','121.385435','28.372805','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167381,'331022','331000','0576','331022','district','三门县','121.39561','29.104888','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167382,'331024','331000','0576','331024','district','仙居县','120.728733','28.846856','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167383,'331023','331000','0576','331023','district','天台县','121.006657','29.144594','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167384,'331003','331000','0576','331003','district','黄岩区','121.261804','28.649433','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167385,'330300','330000','0577','330300','city','温州市','120.699279','27.993849','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167386,'330305','330300','0577','330305','district','洞头区','121.157406','27.836412','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167387,'330327','330300','0577','330327','district','苍南县','120.425957','27.518636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167388,'330326','330300','0577','330326','district','平阳县','120.565161','27.662394','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167389,'330381','330300','0577','330381','district','瑞安市','120.655245','27.778967','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167390,'330383','330300','0577','330383','district','龙港市','120.552952','27.578379','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167391,'330329','330300','0577','330329','district','泰顺县','119.717643','27.556578','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167392,'330382','330300','0577','330382','district','乐清市','120.986297','28.112519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167393,'330324','330300','0577','330324','district','永嘉县','120.69136','28.153914','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167394,'330302','330300','0577','330302','district','鹿城区','120.655199','28.015776','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167395,'330303','330300','0577','330303','district','龙湾区','120.812333','27.933261','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167396,'330328','330300','0577','330328','district','文成县','120.090929','27.786856','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167397,'330304','330300','0577','330304','district','瓯海区','120.615149','27.967445','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167398,'331100','330000','0578','331100','city','丽水市','119.923249','28.467694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167399,'331124','331100','0578','331124','district','松阳县','119.481406','28.448883','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167400,'331125','331100','0578','331125','district','云和县','119.573454','28.116024','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167401,'331181','331100','0578','331181','district','龙泉市','119.14126','28.074916','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167402,'331127','331100','0578','331127','district','景宁畲族自治县','119.635686','27.973594','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167403,'331122','331100','0578','331122','district','缙云县','120.091685','28.659294','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167404,'331121','331100','0578','331121','district','青田县','120.289693','28.1396','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167405,'331102','331100','0578','331102','district','莲都区','119.912266','28.4461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167406,'331126','331100','0578','331126','district','庆元县','119.062572','27.619213','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167407,'331123','331100','0578','331123','district','遂昌县','119.275865','28.592388','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167408,'330600','330000','0575','330600','city','绍兴市','120.582886','30.051549','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167409,'330683','330600','0575','330683','district','嵊州市','120.830505','29.561519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167410,'330624','330600','0575','330624','district','新昌县','120.903918','29.500525','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167411,'330604','330600','0575','330604','district','上虞区','120.868571','30.033862','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167412,'330681','330600','0575','330681','district','诸暨市','120.246602','29.709398','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167413,'330602','330600','0575','330602','district','越城区','120.582338','29.989092','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167414,'330603','330600','0575','330603','district','柯桥区','120.495532','30.083039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167415,'330800','330000','0570','330800','city','衢州市','118.859307','28.970229','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167416,'330822','330800','0570','330822','district','常山县','118.511224','28.902446','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167417,'330803','330800','0570','330803','district','衢江区','118.959139','28.980356','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167418,'330824','330800','0570','330824','district','开化县','118.406852','29.1179','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167419,'330881','330800','0570','330881','district','江山市','118.627228','28.73796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167420,'330802','330800','0570','330802','district','柯城区','118.874138','28.936937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167421,'330825','330800','0570','330825','district','龙游县','119.1723','29.028214','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167422,'330700','330000','0579','330700','city','金华市','119.647265','29.079195','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167423,'330723','330700','0579','330723','district','武义县','119.816341','28.892562','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167424,'330727','330700','0579','330727','district','磐安县','120.449937','29.054491','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167425,'330726','330700','0579','330726','district','浦江县','119.89259','29.453363','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167426,'330784','330700','0579','330784','district','永康市','120.047356','28.88899','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167427,'330783','330700','0579','330783','district','东阳市','120.24179','29.290158','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167428,'330782','330700','0579','330782','district','义乌市','120.075679','29.306296','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167429,'330781','330700','0579','330781','district','兰溪市','119.460404','29.209059','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167430,'330702','330700','0579','330702','district','婺城区','119.571574','29.087311','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167431,'330703','330700','0579','330703','district','金东区','119.692821','29.099822','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167432,'330100','330000','0571','330100','city','杭州市','120.210792','30.246026','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167433,'330122','330100','0571','330122','district','桐庐县','119.691755','29.79418','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167434,'330102','330100','0571','330102','district','上城区','120.19732','30.226543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167435,'330127','330100','0571','330127','district','淳安县','119.042015','29.609678','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167436,'330105','330100','0571','330105','district','拱墅区','120.141503','30.319126','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167437,'330106','330100','0571','330106','district','西湖区','120.130396','30.259242','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167438,'330108','330100','0571','330108','district','滨江区','120.211981','30.208332','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167439,'330114','330100','0571','330114','district','钱塘区','120.493941','30.32304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167440,'330111','330100','0571','330111','district','富阳区','119.96022','30.048803','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167441,'330109','330100','0571','330109','district','萧山区','120.264263','30.184119','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167442,'330182','330100','0571','330182','district','建德市','119.281195','29.474964','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167443,'330112','330100','0571','330112','district','临安区','119.724457','30.234375','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167444,'330113','330100','0571','330113','district','临平区','120.299222','30.419154','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167445,'330110','330100','0571','330110','district','余杭区','119.978742','30.273705','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167446,'330500','330000','0572','330500','city','湖州市','120.086881','30.894178','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167447,'330503','330500','0572','330503','district','南浔区','120.418244','30.850835','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167448,'330502','330500','0572','330502','district','吴兴区','120.185608','30.857184','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167449,'330522','330500','0572','330522','district','长兴县','119.911212','31.026962','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167450,'330521','330500','0572','330521','district','德清县','119.9774','30.54251','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167451,'330523','330500','0572','330523','district','安吉县','119.680261','30.638803','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167452,'130000','100000','','130000','province','河北省','114.530399','38.037707','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167453,'130200','130000','0315','130200','city','唐山市','118.180149','39.63068','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167454,'130225','130200','0315','130225','district','乐亭县','118.91245','39.425748','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167455,'130229','130200','0315','130229','district','玉田县','117.738196','39.901827','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167456,'130209','130200','0315','130209','district','曹妃甸区','118.460197','39.273528','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167457,'130224','130200','0315','130224','district','滦南县','118.68363','39.520272','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167458,'130204','130200','0315','130204','district','古冶区','118.447134','39.73392','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167459,'130227','130200','0315','130227','district','迁西县','118.31467','40.141486','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167460,'130284','130200','0315','130284','district','滦州市','118.70301','39.740963','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167461,'130207','130200','0315','130207','district','丰南区','118.085169','39.576031','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167462,'130283','130200','0315','130283','district','迁安市','118.701021','39.998861','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167463,'130281','130200','0315','130281','district','遵化市','117.965878','40.189119','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167464,'130208','130200','0315','130208','district','丰润区','118.162426','39.832919','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167465,'130202','130200','0315','130202','district','路南区','118.154348','39.624988','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167466,'130205','130200','0315','130205','district','开平区','118.262246','39.671634','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167467,'130203','130200','0315','130203','district','路北区','118.201085','39.625079','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167468,'130300','130000','0335','130300','city','秦皇岛市','119.52022','39.888243','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167469,'130303','130300','0335','130303','district','山海关区','119.775187','39.978882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167470,'130306','130300','0335','130306','district','抚宁区','119.244847','39.876253','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167471,'130302','130300','0335','130302','district','海港区','119.564962','39.94756','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167472,'130304','130300','0335','130304','district','北戴河区','119.48449','39.834912','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167473,'130321','130300','0335','130321','district','青龙满族自治县','118.94985','40.407473','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167474,'130322','130300','0335','130322','district','昌黎县','119.199846','39.699677','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167475,'130324','130300','0335','130324','district','卢龙县','118.891931','39.892564','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167476,'130800','130000','0314','130800','city','承德市','117.962749','40.952942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167477,'130828','130800','0314','130828','district','围场满族蒙古族自治县','117.75934','41.938372','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167478,'130826','130800','0314','130826','district','丰宁满族自治县','116.645798','41.209951','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167479,'130825','130800','0314','130825','district','隆化县','117.739026','41.314402','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167480,'130827','130800','0314','130827','district','宽城满族自治县','118.485472','40.611333','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167481,'130804','130800','0314','130804','district','鹰手营子矿区','117.659341','40.546424','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167482,'130824','130800','0314','130824','district','滦平县','117.332652','40.941644','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167483,'130803','130800','0314','130803','district','双滦区','117.799588','40.959426','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167484,'130802','130800','0314','130802','district','双桥区','117.943121','40.974679','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167485,'130821','130800','0314','130821','district','承德县','118.174166','40.768082','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167486,'130881','130800','0314','130881','district','平泉市','118.702032','41.018482','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167487,'130822','130800','0314','130822','district','兴隆县','117.500558','40.417358','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167488,'130100','130000','0311','130100','city','石家庄市','114.514976','38.042007','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167489,'130126','130100','0311','130126','district','灵寿县','114.383013','38.307908','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167490,'130183','130100','0311','130183','district','晋州市','115.044141','38.033937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167491,'130132','130100','0311','130132','district','元氏县','114.525508','37.767332','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167492,'130181','130100','0311','130181','district','辛集市','115.217626','37.943239','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167493,'130127','130100','0311','130127','district','高邑县','114.611659','37.615905','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167494,'130121','130100','0311','130121','district','井陉县','114.145669','38.032366','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167495,'130107','130100','0311','130107','district','井陉矿区','114.062258','38.065446','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167496,'130128','130100','0311','130128','district','深泽县','115.20089','38.184572','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167497,'130133','130100','0311','130133','district','赵县','114.775914','37.756935','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167498,'130125','130100','0311','130125','district','行唐县','114.553044','38.437535','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167499,'130131','130100','0311','130131','district','平山县','114.186007','38.260288','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167500,'130123','130100','0311','130123','district','正定县','114.57043','38.14699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167501,'130111','130100','0311','130111','district','栾城区','114.647922','37.900915','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167502,'130108','130100','0311','130108','district','裕华区','114.531599','38.007002','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167503,'130109','130100','0311','130109','district','藁城区','114.846562','38.022177','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167504,'130130','130100','0311','130130','district','无极县','114.976256','38.178852','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167505,'130184','130100','0311','130184','district','新乐市','114.683745','38.343952','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167506,'130110','130100','0311','130110','district','鹿泉区','114.313559','38.086536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167507,'130104','130100','0311','130104','district','桥西区','114.45004','38.025245','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167508,'130102','130100','0311','130102','district','长安区','114.538955','38.03682','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167509,'130105','130100','0311','130105','district','新华区','114.463904','38.050749','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167510,'130129','130100','0311','130129','district','赞皇县','114.386114','37.666549','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167511,'130700','130000','0313','130700','city','张家口市','114.885895','40.768931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167512,'130723','130700','0313','130723','district','康保县','114.60018','41.853016','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167513,'130732','130700','0313','130732','district','赤城县','115.831256','40.913348','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167514,'130709','130700','0313','130709','district','崇礼区','115.282345','40.974741','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167515,'130706','130700','0313','130706','district','下花园区','115.287127','40.502628','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167516,'130731','130700','0313','130731','district','涿鹿县','115.196835','40.382681','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167517,'130702','130700','0313','130702','district','桥东区','114.894114','40.788472','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167518,'130705','130700','0313','130705','district','宣化区','115.099515','40.609444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167519,'130726','130700','0313','130726','district','蔚县','114.589136','39.840154','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167520,'130728','130700','0313','130728','district','怀安县','114.386488','40.67527','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167521,'130703','130700','0313','130703','district','桥西区','114.868604','40.819553','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167522,'130725','130700','0313','130725','district','尚义县','113.968763','41.076588','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167523,'130730','130700','0313','130730','district','怀来县','115.517868','40.415625','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167524,'130727','130700','0313','130727','district','阳原县','114.150267','40.104303','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167525,'130724','130700','0313','130724','district','沽源县','115.688544','41.670497','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167526,'130722','130700','0313','130722','district','张北县','114.719927','41.159039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167527,'130708','130700','0313','130708','district','万全区','114.740584','40.767377','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167528,'131000','130000','0316','131000','city','廊坊市','116.683546','39.538304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167529,'131028','131000','0316','131028','district','大厂回族自治县','116.98961','39.886569','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167530,'131026','131000','0316','131026','district','文安县','116.457628','38.873185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167531,'131082','131000','0316','131082','district','三河市','117.078269','39.982933','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167532,'131081','131000','0316','131081','district','霸州市','116.391488','39.125238','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167533,'131002','131000','0316','131002','district','安次区','116.6945443','39.50256863','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167534,'131023','131000','0316','131023','district','永清县','116.50608','39.330983','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167535,'131003','131000','0316','131003','district','广阳区','116.710667','39.52343','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167536,'131024','131000','0316','131024','district','香河县','117.006072','39.763772','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167537,'131025','131000','0316','131025','district','大城县','116.653917','38.705232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167538,'131022','131000','0316','131022','district','固安县','116.298696','39.438797','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167539,'130400','130000','0310','130400','city','邯郸市','114.53915','36.625849','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167540,'130407','130400','0310','130407','district','肥乡区','114.800199','36.548545','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167541,'130431','130400','0310','130431','district','鸡泽县','114.889951','36.911525','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167542,'130408','130400','0310','130408','district','永年区','114.536626','36.74188','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167543,'130423','130400','0310','130423','district','临漳县','114.585514','36.322504','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167544,'130402','130400','0310','130402','district','邯山区','114.531062','36.59457','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167545,'130425','130400','0310','130425','district','大名县','115.147985','36.286406','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167546,'130404','130400','0310','130404','district','复兴区','114.462581','36.638879','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167547,'130403','130400','0310','130403','district','丛台区','114.492875','36.636434','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167548,'130435','130400','0310','130435','district','曲周县','114.957549','36.766347','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167549,'130481','130400','0310','130481','district','武安市','114.203685','36.69759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167550,'130424','130400','0310','130424','district','成安县','114.670094','36.445331','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167551,'130432','130400','0310','130432','district','广平县','114.921185','36.476727','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167552,'130433','130400','0310','130433','district','馆陶县','115.281818','36.548295','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167553,'130430','130400','0310','130430','district','邱县','115.200049','36.811783','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167554,'130434','130400','0310','130434','district','魏县','114.939217','36.35926','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167555,'130406','130400','0310','130406','district','峰峰矿区','114.212571','36.419298','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167556,'130427','130400','0310','130427','district','磁县','114.373965','36.37507','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167557,'130426','130400','0310','130426','district','涉县','113.692157','36.586073','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167558,'130900','130000','0317','130900','city','沧州市','116.838715','38.304676','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167559,'130923','130900','0317','130923','district','东光县','116.537138','37.888844','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167560,'130924','130900','0317','130924','district','海兴县','117.497545','38.143308','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167561,'130928','130900','0317','130928','district','吴桥县','116.391557','37.628225','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167562,'130902','130900','0317','130902','district','新华区','116.866309','38.314094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167563,'130903','130900','0317','130903','district','运河区','116.842964','38.283456','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167564,'130927','130900','0317','130927','district','南皮县','116.708603','38.038761','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167565,'130922','130900','0317','130922','district','青县','116.804137','38.583657','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167566,'130926','130900','0317','130926','district','肃宁县','115.829619','38.423044','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167567,'130984','130900','0317','130984','district','河间市','116.099362','38.446656','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167568,'130929','130900','0317','130929','district','献县','116.152058','38.180381','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167569,'130981','130900','0317','130981','district','泊头市','116.578322','38.084262','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167570,'130930','130900','0317','130930','district','孟村回族自治县','117.104514','38.053438','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167571,'130925','130900','0317','130925','district','盐山县','117.230681','38.058074','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167572,'130982','130900','0317','130982','district','任丘市','116.084412','38.685325','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167573,'130921','130900','0317','130921','district','沧县','117.007478','38.21985569','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167574,'130983','130900','0317','130983','district','黄骅市','117.330043','38.372266','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167575,'131100','130000','0318','131100','city','衡水市','115.668987','37.739367','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167576,'131102','131100','0318','131102','district','桃城区','115.675208','37.735152','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167577,'131182','131100','0318','131182','district','深州市','115.559576','38.001535','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167578,'131126','131100','0318','131126','district','故城县','115.965877','37.347873','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167579,'131122','131100','0318','131122','district','武邑县','115.887498','37.802036','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167580,'131123','131100','0318','131123','district','武强县','115.982119','38.041447','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167581,'131124','131100','0318','131124','district','饶阳县','115.725898','38.235313','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167582,'131125','131100','0318','131125','district','安平县','115.518918','38.234769','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167583,'131127','131100','0318','131127','district','景县','116.270558','37.692831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167584,'131128','131100','0318','131128','district','阜城县','116.175424','37.862984','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167585,'131121','131100','0318','131121','district','枣强县','115.724365','37.514217','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167586,'131103','131100','0318','131103','district','冀州区','115.579392','37.550922','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167587,'130600','130000','0312','130600','city','保定市','115.464523','38.874476','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167588,'130636','130600','0312','130636','district','顺平县','115.135133','38.837988','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167589,'130631','130600','0312','130631','district','望都县','115.15542','38.696221','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167590,'130624','130600','0312','130624','district','阜平县','114.195118','38.849221','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167591,'130627','130600','0312','130627','district','唐县','114.982968','38.748477','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167592,'130634','130600','0312','130634','district','曲阳县','114.740476','38.614409','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167593,'130628','130600','0312','130628','district','高阳县','115.779149','38.700846','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167594,'130630','130600','0312','130630','district','涞源县','114.694416','39.360622','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167595,'130608','130600','0312','130608','district','清苑区','115.48988','38.76527','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167596,'130682','130600','0312','130682','district','定州市','114.990321','38.516746','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167597,'130633','130600','0312','130633','district','易县','115.497487','39.350219','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167598,'130607','130600','0312','130607','district','满城区','115.322246','38.949732','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167599,'130635','130600','0312','130635','district','蠡县','115.583701','38.488064','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167600,'130632','130600','0312','130632','district','安新县','115.935688','38.936102','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167601,'130684','130600','0312','130684','district','高碑店市','115.873612','39.327233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167602,'130638','130600','0312','130638','district','雄县','116.108624','38.994825','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167603,'130623','130600','0312','130623','district','涞水县','115.713651','39.394305','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167604,'130606','130600','0312','130606','district','莲池区','115.497153','38.883528','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167605,'130602','130600','0312','130602','district','竞秀区','115.458671','38.877318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167606,'130681','130600','0312','130681','district','涿州市','115.97444','39.485684','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167607,'130626','130600','0312','130626','district','定兴县','115.808183','39.263219','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167608,'130629','130600','0312','130629','district','容城县','115.861635','39.043321','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167609,'130609','130600','0312','130609','district','徐水区','115.655772','39.018781','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167610,'130683','130600','0312','130683','district','安国市','115.327088','38.418985','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167611,'130637','130600','0312','130637','district','博野县','115.464295','38.458048','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167612,'130500','130000','0319','130500','city','邢台市','114.49742','37.060227','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167613,'130524','130500','0319','130524','district','柏乡县','114.693447','37.48288','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167614,'130581','130500','0319','130581','district','南宫市','115.40866','37.358907','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167615,'130530','130500','0319','130530','district','新河县','115.251005','37.520891','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167616,'130534','130500','0319','130534','district','清河县','115.665081','37.0451','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167617,'130506','130500','0319','130506','district','南和区','114.683683','37.005626','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167618,'130533','130500','0319','130533','district','威县','115.266829','36.975164','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167619,'130535','130500','0319','130535','district','临西县','115.501258','36.871312','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167620,'130582','130500','0319','130582','district','沙河市','114.503023','36.855548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167621,'130522','130500','0319','130522','district','临城县','114.498651','37.444512','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167622,'130529','130500','0319','130529','district','巨鹿县','115.037884','37.221293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167623,'130503','130500','0319','130503','district','信都区','114.468229','37.093798','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167624,'130502','130500','0319','130502','district','襄都区','114.507443','37.071314','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167625,'130505','130500','0319','130505','district','任泽区','114.671339','37.121958','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167626,'130525','130500','0319','130525','district','隆尧县','114.770509','37.351232','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167627,'130523','130500','0319','130523','district','内丘县','114.512226','37.287612','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167628,'130531','130500','0319','130531','district','广宗县','115.142766','37.074795','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167629,'130532','130500','0319','130532','district','平乡县','115.03008','37.063771','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167630,'130528','130500','0319','130528','district','宁晋县','114.940006','37.624524','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167631,'810000','100000','','810000','province','香港特别行政区','114.170714','22.278354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167632,'810000_xianggangtebiexingzhengqu','810000','','810000','city','香港特别行政区','114.170714','22.278354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167633,'810013','810000_xianggangtebiexingzhengqu','1852','810013','district','北区','114.1473639','22.49610389','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167634,'810014','810000_xianggangtebiexingzhengqu','1852','810014','district','大埔区','114.1717431','22.44565306','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167635,'810015','810000_xianggangtebiexingzhengqu','1852','810015','district','西贡区','114.264645','22.31421306','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167636,'810016','810000_xianggangtebiexingzhengqu','1852','810016','district','沙田区','114.1953653','22.37953167','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167637,'810011','810000_xianggangtebiexingzhengqu','1852','810011','district','屯门区','113.9765742','22.39384417','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167638,'810005','810000_xianggangtebiexingzhengqu','1852','810005','district','油尖旺区','114.1733317','22.31170389','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167639,'810008','810000_xianggangtebiexingzhengqu','1852','810008','district','黄大仙区','114.2038856','22.33632056','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167640,'810007','810000_xianggangtebiexingzhengqu','1852','810007','district','九龙城区','114.1928467','22.31251','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167641,'810018','810000_xianggangtebiexingzhengqu','1852','810018','district','离岛区','113.94612','22.28640778','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167642,'810006','810000_xianggangtebiexingzhengqu','1852','810006','district','深水埗区','114.1632417','22.33385417','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167643,'810003','810000_xianggangtebiexingzhengqu','1852','810003','district','东区','114.2260031','22.27969306','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167644,'810009','810000_xianggangtebiexingzhengqu','1852','810009','district','观塘区','114.2140542','22.32083778','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167645,'810001','810000_xianggangtebiexingzhengqu','1852','810001','district','中西区','114.1543731','22.28198083','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167646,'810002','810000_xianggangtebiexingzhengqu','1852','810002','district','湾仔区','114.1829153','22.27638889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167647,'810004','810000_xianggangtebiexingzhengqu','1852','810004','district','南区','114.1600117','22.24589667','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167648,'810012','810000_xianggangtebiexingzhengqu','1852','810012','district','元朗区','114.0324381','22.44142833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167649,'810010','810000_xianggangtebiexingzhengqu','1852','810010','district','荃湾区','114.1210792','22.36830667','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167650,'810017','810000_xianggangtebiexingzhengqu','1852','810017','district','葵青区','114.1393194','22.36387667','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167651,'710000','100000','','710000','province','台湾省','121.509062','25.044332','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167652,'710000_taibeishi','710000','',NULL,'city','台北市','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167653,'710000_taibeishi_nangangqu','710000_taibeishi','',NULL,'district','南港区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167654,'710000_taibeishi_neihuqu','710000_taibeishi','',NULL,'district','内湖区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167655,'710000_taibeishi_daanqu','710000_taibeishi','',NULL,'district','大安区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167656,'710000_taibeishi_songshanqu','710000_taibeishi','',NULL,'district','松山区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167657,'710000_taibeishi_xinyiqu','710000_taibeishi','',NULL,'district','信义区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167658,'710000_taibeishi_wenshanqu','710000_taibeishi','',NULL,'district','文山区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167659,'710000_taibeishi_zhongzhengqu','710000_taibeishi','',NULL,'district','中正区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167660,'710000_taibeishi_wanhuaqu','710000_taibeishi','',NULL,'district','万华区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167661,'710000_taibeishi_shilinqu','710000_taibeishi','',NULL,'district','士林区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167662,'710000_taibeishi_beitouqu','710000_taibeishi','',NULL,'district','北投区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167663,'710000_taibeishi_zhongshanqu','710000_taibeishi','',NULL,'district','中山区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167664,'710000_taibeishi_datongqu','710000_taibeishi','',NULL,'district','大同区','121.574539','25.052047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167665,'710000_xinbeishi','710000','',NULL,'city','新北市','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167666,'710000_xinbeishi_banqiaoqu','710000_xinbeishi','',NULL,'district','板桥区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167667,'710000_xinbeishi_xizhiqu','710000_xinbeishi','',NULL,'district','汐止区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167668,'710000_xinbeishi_xindianqu','710000_xinbeishi','',NULL,'district','新店区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167669,'710000_xinbeishi_yonghequ','710000_xinbeishi','',NULL,'district','永和区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167670,'710000_xinbeishi_zhonghequ','710000_xinbeishi','',NULL,'district','中和区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167671,'710000_xinbeishi_tuchengqu','710000_xinbeishi','',NULL,'district','土城区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167672,'710000_xinbeishi_shulinqu','710000_xinbeishi','',NULL,'district','树林区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167673,'710000_xinbeishi_sanzhongqu','710000_xinbeishi','',NULL,'district','三重区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167674,'710000_xinbeishi_xinzhuangqu','710000_xinbeishi','',NULL,'district','新庄区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167675,'710000_xinbeishi_luzhouqu','710000_xinbeishi','',NULL,'district','芦洲区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167676,'710000_xinbeishi_ruifangqu','710000_xinbeishi','',NULL,'district','瑞芳区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167677,'710000_xinbeishi_sanxiaqu','710000_xinbeishi','',NULL,'district','三峡区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167678,'710000_xinbeishi_yinggequ','710000_xinbeishi','',NULL,'district','莺歌区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167679,'710000_xinbeishi_danshuiqu','710000_xinbeishi','',NULL,'district','淡水区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167680,'710000_xinbeishi_wanliqu','710000_xinbeishi','',NULL,'district','万里区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167681,'710000_xinbeishi_jinshanqu','710000_xinbeishi','',NULL,'district','金山区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167682,'710000_xinbeishi_shenkengqu','710000_xinbeishi','',NULL,'district','深坑区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167683,'710000_xinbeishi_shidingqu','710000_xinbeishi','',NULL,'district','石碇区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167684,'710000_xinbeishi_pingxiqu','710000_xinbeishi','',NULL,'district','平溪区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167685,'710000_xinbeishi_shuangxiqu','710000_xinbeishi','',NULL,'district','双溪区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167686,'710000_xinbeishi_gongliaoqu','710000_xinbeishi','',NULL,'district','贡寮区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167687,'710000_xinbeishi_pinglinqu','710000_xinbeishi','',NULL,'district','坪林区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167688,'710000_xinbeishi_wulaiqu','710000_xinbeishi','',NULL,'district','乌来区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167689,'710000_xinbeishi_taishanqu','710000_xinbeishi','',NULL,'district','泰山区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167690,'710000_xinbeishi_linkouqu','710000_xinbeishi','',NULL,'district','林口区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167691,'710000_xinbeishi_wuguqu','710000_xinbeishi','',NULL,'district','五股区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167692,'710000_xinbeishi_baliqu','710000_xinbeishi','',NULL,'district','八里区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167693,'710000_xinbeishi_sanzhiqu','710000_xinbeishi','',NULL,'district','三芝区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167694,'710000_xinbeishi_shimenqu','710000_xinbeishi','',NULL,'district','石门区','121.477953','25.022714','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167695,'710000_taoyuanshi','710000','',NULL,'city','桃园市','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167696,'710000_taoyuanshi_taoyuanqu','710000_taoyuanshi','',NULL,'district','桃园区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167697,'710000_taoyuanshi_zhongliqu','710000_taoyuanshi','',NULL,'district','中坜区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167698,'710000_taoyuanshi_pingzhenqu','710000_taoyuanshi','',NULL,'district','平镇区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167699,'710000_taoyuanshi_badequ','710000_taoyuanshi','',NULL,'district','八德区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167700,'710000_taoyuanshi_yangmeiqu','710000_taoyuanshi','',NULL,'district','杨梅区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167701,'710000_taoyuanshi_luzhuqu','710000_taoyuanshi','',NULL,'district','芦竹区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167702,'710000_taoyuanshi_daxiqu','710000_taoyuanshi','',NULL,'district','大溪区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167703,'710000_taoyuanshi_longtanqu','710000_taoyuanshi','',NULL,'district','龙潭区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167704,'710000_taoyuanshi_guishanqu','710000_taoyuanshi','',NULL,'district','龟山区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167705,'710000_taoyuanshi_dayuanqu','710000_taoyuanshi','',NULL,'district','大园区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167706,'710000_taoyuanshi_guanyinqu','710000_taoyuanshi','',NULL,'district','观音区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167707,'710000_taoyuanshi_xinwuqu','710000_taoyuanshi','',NULL,'district','新屋区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167708,'710000_taoyuanshi_fuxingqu','710000_taoyuanshi','',NULL,'district','复兴区','121.305479','25.008045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167709,'710000_taizhongshi','710000','',NULL,'city','台中市','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167710,'710000_taizhongshi_zhongqu','710000_taizhongshi','',NULL,'district','中区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167711,'710000_taizhongshi_dongqu','710000_taizhongshi','',NULL,'district','东区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167712,'710000_taizhongshi_nanqu','710000_taizhongshi','',NULL,'district','南区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167713,'710000_taizhongshi_xiqu','710000_taizhongshi','',NULL,'district','西区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167714,'710000_taizhongshi_beiqu','710000_taizhongshi','',NULL,'district','北区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167715,'710000_taizhongshi_beitunqu','710000_taizhongshi','',NULL,'district','北屯区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167716,'710000_taizhongshi_xitunqu','710000_taizhongshi','',NULL,'district','西屯区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167717,'710000_taizhongshi_nantunqu','710000_taizhongshi','',NULL,'district','南屯区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167718,'710000_taizhongshi_taipingqu','710000_taizhongshi','',NULL,'district','太平区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167719,'710000_taizhongshi_daliqu','710000_taizhongshi','',NULL,'district','大里区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167720,'710000_taizhongshi_wufengqu','710000_taizhongshi','',NULL,'district','雾峰区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167721,'710000_taizhongshi_wuriqu','710000_taizhongshi','',NULL,'district','乌日区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167722,'710000_taizhongshi_fengyuanqu','710000_taizhongshi','',NULL,'district','丰原区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167723,'710000_taizhongshi_houliqu','710000_taizhongshi','',NULL,'district','后里区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167724,'710000_taizhongshi_tanziqu','710000_taizhongshi','',NULL,'district','潭子区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167725,'710000_taizhongshi_dayaqu','710000_taizhongshi','',NULL,'district','大雅区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167726,'710000_taizhongshi_shengangqu','710000_taizhongshi','',NULL,'district','神冈区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167727,'710000_taizhongshi_shigangqu','710000_taizhongshi','',NULL,'district','石冈区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167728,'710000_taizhongshi_dongshiqu','710000_taizhongshi','',NULL,'district','东势区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167729,'710000_taizhongshi_xinshequ','710000_taizhongshi','',NULL,'district','新社区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167730,'710000_taizhongshi_hepingqu','710000_taizhongshi','',NULL,'district','和平区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167731,'710000_taizhongshi_daduqu','710000_taizhongshi','',NULL,'district','大肚区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167732,'710000_taizhongshi_shaluqu','710000_taizhongshi','',NULL,'district','沙鹿区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167733,'710000_taizhongshi_longjingqu','710000_taizhongshi','',NULL,'district','龙井区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167734,'710000_taizhongshi_wuqiqu','710000_taizhongshi','',NULL,'district','梧栖区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167735,'710000_taizhongshi_qingshuiqu','710000_taizhongshi','',NULL,'district','清水区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167736,'710000_taizhongshi_dajiaqu','710000_taizhongshi','',NULL,'district','大甲区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167737,'710000_taizhongshi_waipuqu','710000_taizhongshi','',NULL,'district','外埔区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167738,'710000_taizhongshi_daanqu','710000_taizhongshi','',NULL,'district','大安区','120.656974','24.171104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167739,'710000_tainanshi','710000','',NULL,'city','台南市','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167740,'710000_tainanshi_zhongxiqu','710000_tainanshi','',NULL,'district','中西区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167741,'710000_tainanshi_dongqu','710000_tainanshi','',NULL,'district','东区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167742,'710000_tainanshi_nanqu','710000_tainanshi','',NULL,'district','南区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167743,'710000_tainanshi_beiqu','710000_tainanshi','',NULL,'district','北区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167744,'710000_tainanshi_anpingqu','710000_tainanshi','',NULL,'district','安平区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167745,'710000_tainanshi_annanqu','710000_tainanshi','',NULL,'district','安南区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167746,'710000_tainanshi_yongkangqu','710000_tainanshi','',NULL,'district','永康区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167747,'710000_tainanshi_guirenqu','710000_tainanshi','',NULL,'district','归仁区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167748,'710000_tainanshi_xinhuaqu','710000_tainanshi','',NULL,'district','新化区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167749,'710000_tainanshi_zuozhenqu','710000_tainanshi','',NULL,'district','左镇区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167750,'710000_tainanshi_yujingqu','710000_tainanshi','',NULL,'district','玉井区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167751,'710000_tainanshi_nanxiqu','710000_tainanshi','',NULL,'district','楠西区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167752,'710000_tainanshi_nanhuaqu','710000_tainanshi','',NULL,'district','南化区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167753,'710000_tainanshi_rendequ','710000_tainanshi','',NULL,'district','仁德区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167754,'710000_tainanshi_guanmiaoqu','710000_tainanshi','',NULL,'district','关庙区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167755,'710000_tainanshi_longqiqu','710000_tainanshi','',NULL,'district','龙崎区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167756,'710000_tainanshi_guantianqu','710000_tainanshi','',NULL,'district','官田区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167757,'710000_tainanshi_madouqu','710000_tainanshi','',NULL,'district','麻豆区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167758,'710000_tainanshi_jialiqu','710000_tainanshi','',NULL,'district','佳里区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167759,'710000_tainanshi_xigangqu','710000_tainanshi','',NULL,'district','西港区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167760,'710000_tainanshi_qiguqu','710000_tainanshi','',NULL,'district','七股区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167761,'710000_tainanshi_jiangjunqu','710000_tainanshi','',NULL,'district','将军区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167762,'710000_tainanshi_xuejiaqu','710000_tainanshi','',NULL,'district','学甲区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167763,'710000_tainanshi_beimenqu','710000_tainanshi','',NULL,'district','北门区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167764,'710000_tainanshi_xinyingqu','710000_tainanshi','',NULL,'district','新营区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167765,'710000_tainanshi_houbiqu','710000_tainanshi','',NULL,'district','后壁区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167766,'710000_tainanshi_baihequ','710000_tainanshi','',NULL,'district','白河区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167767,'710000_tainanshi_dongshanqu','710000_tainanshi','',NULL,'district','东山区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167768,'710000_tainanshi_liujiaqu','710000_tainanshi','',NULL,'district','六甲区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167769,'710000_tainanshi_xiayingqu','710000_tainanshi','',NULL,'district','下营区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167770,'710000_tainanshi_liuyingqu','710000_tainanshi','',NULL,'district','柳营区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167771,'710000_tainanshi_yanshuiqu','710000_tainanshi','',NULL,'district','盐水区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167772,'710000_tainanshi_shanhuaqu','710000_tainanshi','',NULL,'district','善化区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167773,'710000_tainanshi_daneiqu','710000_tainanshi','',NULL,'district','大内区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167774,'710000_tainanshi_shanshangqu','710000_tainanshi','',NULL,'district','山上区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167775,'710000_tainanshi_xinshiqu','710000_tainanshi','',NULL,'district','新市区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167776,'710000_tainanshi_andingqu','710000_tainanshi','',NULL,'district','安定区','120.197041','23.001107','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167777,'710000_gaoxiongshi','710000','',NULL,'city','高雄市','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167778,'710000_gaoxiongshi_nanziqu','710000_gaoxiongshi','',NULL,'district','楠梓区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167779,'710000_gaoxiongshi_zuoyingqu','710000_gaoxiongshi','',NULL,'district','左营区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167780,'710000_gaoxiongshi_gushanqu','710000_gaoxiongshi','',NULL,'district','鼓山区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167781,'710000_gaoxiongshi_sanminqu','710000_gaoxiongshi','',NULL,'district','三民区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167782,'710000_gaoxiongshi_yanchengqu','710000_gaoxiongshi','',NULL,'district','盐埕区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167783,'710000_gaoxiongshi_qianjinqu','710000_gaoxiongshi','',NULL,'district','前金区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167784,'710000_gaoxiongshi_xinxingqu','710000_gaoxiongshi','',NULL,'district','新兴区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167785,'710000_gaoxiongshi_lingyaqu','710000_gaoxiongshi','',NULL,'district','苓雅区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167786,'710000_gaoxiongshi_qianzhenqu','710000_gaoxiongshi','',NULL,'district','前镇区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167787,'710000_gaoxiongshi_qijinqu','710000_gaoxiongshi','',NULL,'district','旗津区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167788,'710000_gaoxiongshi_xiaogangqu','710000_gaoxiongshi','',NULL,'district','小港区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167789,'710000_gaoxiongshi_fengshanqu','710000_gaoxiongshi','',NULL,'district','凤山区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167790,'710000_gaoxiongshi_daliaoqu','710000_gaoxiongshi','',NULL,'district','大寮区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167791,'710000_gaoxiongshi_niaosongqu','710000_gaoxiongshi','',NULL,'district','鸟松区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167792,'710000_gaoxiongshi_linyuanqu','710000_gaoxiongshi','',NULL,'district','林园区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167793,'710000_gaoxiongshi_renwuqu','710000_gaoxiongshi','',NULL,'district','仁武区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167794,'710000_gaoxiongshi_dashuqu','710000_gaoxiongshi','',NULL,'district','大树区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167795,'710000_gaoxiongshi_dashequ','710000_gaoxiongshi','',NULL,'district','大社区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167796,'710000_gaoxiongshi_gangshanqu','710000_gaoxiongshi','',NULL,'district','冈山区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167797,'710000_gaoxiongshi_luzhuqu','710000_gaoxiongshi','',NULL,'district','路竹区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167798,'710000_gaoxiongshi_qiaotouqu','710000_gaoxiongshi','',NULL,'district','桥头区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167799,'710000_gaoxiongshi_ziguanqu','710000_gaoxiongshi','',NULL,'district','梓官区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167800,'710000_gaoxiongshi_mituoqu','710000_gaoxiongshi','',NULL,'district','弥陀区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167801,'710000_gaoxiongshi_yonganqu','710000_gaoxiongshi','',NULL,'district','永安区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167802,'710000_gaoxiongshi_yanchaoqu','710000_gaoxiongshi','',NULL,'district','燕巢区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167803,'710000_gaoxiongshi_alianqu','710000_gaoxiongshi','',NULL,'district','阿莲区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167804,'710000_gaoxiongshi_qiedingqu','710000_gaoxiongshi','',NULL,'district','茄萣区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167805,'710000_gaoxiongshi_huneiqu','710000_gaoxiongshi','',NULL,'district','湖内区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167806,'710000_gaoxiongshi_qishanqu','710000_gaoxiongshi','',NULL,'district','旗山区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167807,'710000_gaoxiongshi_meinongqu','710000_gaoxiongshi','',NULL,'district','美浓区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167808,'710000_gaoxiongshi_neimenqu','710000_gaoxiongshi','',NULL,'district','内门区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167809,'710000_gaoxiongshi_shanlinqu','710000_gaoxiongshi','',NULL,'district','杉林区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167810,'710000_gaoxiongshi_jiaxianqu','710000_gaoxiongshi','',NULL,'district','甲仙区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167811,'710000_gaoxiongshi_liuguiqu','710000_gaoxiongshi','',NULL,'district','六龟区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167812,'710000_gaoxiongshi_maolinqutaoyuanqu','710000_gaoxiongshi','',NULL,'district','茂林区桃源区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167813,'710000_gaoxiongshi_neimaxiaqu','710000_gaoxiongshi','',NULL,'district','那玛夏区','120.321223','22.630139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167814,'710000_jilongshi','710000','',NULL,'city','基隆市','121.756442','25.145529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167815,'710000_jilongshi_zhongzhengqu','710000_jilongshi','',NULL,'district','中正区','121.756442','25.145529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167816,'710000_jilongshi_xinyiqu','710000_jilongshi','',NULL,'district','信义区','121.756442','25.145529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167817,'710000_jilongshi_renaiqu','710000_jilongshi','',NULL,'district','仁爱区','121.756442','25.145529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167818,'710000_jilongshi_zhongshanqu','710000_jilongshi','',NULL,'district','中山区','121.756442','25.145529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167819,'710000_jilongshi_anlequ','710000_jilongshi','',NULL,'district','安乐区','121.756442','25.145529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167820,'710000_jilongshi_nuannuanqu','710000_jilongshi','',NULL,'district','暖暖区','121.756442','25.145529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167821,'710000_xinzhushi','710000','',NULL,'city','新竹市','120.97929','24.809699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167822,'710000_xinzhushi_dongqu','710000_xinzhushi','',NULL,'district','东区','120.97929','24.809699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167823,'710000_xinzhushi_beiqu','710000_xinzhushi','',NULL,'district','北区','120.97929','24.809699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167824,'710000_xinzhushi_xiangshanqu','710000_xinzhushi','',NULL,'district','香山区','120.97929','24.809699','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167825,'710000_jiayishi','710000','',NULL,'city','嘉义市','120.462941','23.486836','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167826,'710000_jiayishi_dongqu','710000_jiayishi','',NULL,'district','东区','120.462941','23.486836','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167827,'710000_jiayishi_xiqu','710000_jiayishi','',NULL,'district','西区','120.462941','23.486836','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167828,'710000_xinzhuxian','710000','',NULL,'city','新竹县','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167829,'710000_xinzhuxian_zhubeishi','710000_xinzhuxian','',NULL,'district','竹北市','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167830,'710000_xinzhuxian_hukouxiang','710000_xinzhuxian','',NULL,'district','湖口乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167831,'710000_xinzhuxian_xinfengxiang','710000_xinzhuxian','',NULL,'district','新丰乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167832,'710000_xinzhuxian_xinpuzhen','710000_xinzhuxian','',NULL,'district','新埔镇','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167833,'710000_xinzhuxian_guanxizhen','710000_xinzhuxian','',NULL,'district','关西镇','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167834,'710000_xinzhuxian_xionglinxiang','710000_xinzhuxian','',NULL,'district','芎林乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167835,'710000_xinzhuxian_baoshanxiang','710000_xinzhuxian','',NULL,'district','宝山乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167836,'710000_xinzhuxian_zhudongzhen','710000_xinzhuxian','',NULL,'district','竹东镇','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167837,'710000_xinzhuxian_wufengxiang','710000_xinzhuxian','',NULL,'district','五峰乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167838,'710000_xinzhuxian_hengshanxiang','710000_xinzhuxian','',NULL,'district','横山乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167839,'710000_xinzhuxian_jianshixiang','710000_xinzhuxian','',NULL,'district','尖石乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167840,'710000_xinzhuxian_beipuxiang','710000_xinzhuxian','',NULL,'district','北埔乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167841,'710000_xinzhuxian_emeixiang','710000_xinzhuxian','',NULL,'district','峨眉乡','121.023322','24.8322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167842,'710000_miaolixian','710000','',NULL,'city','苗栗县','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167843,'710000_miaolixian_zhunanzhen','710000_miaolixian','',NULL,'district','竹南镇','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167844,'710000_miaolixian_toufenxiang','710000_miaolixian','',NULL,'district','头份乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167845,'710000_miaolixian_sanwanxiang','710000_miaolixian','',NULL,'district','三湾乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167846,'710000_miaolixian_nanzhuangxiang','710000_miaolixian','',NULL,'district','南庄乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167847,'710000_miaolixian_shitanxiang','710000_miaolixian','',NULL,'district','狮潭乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167848,'710000_miaolixian_houlongzhen','710000_miaolixian','',NULL,'district','后龙镇','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167849,'710000_miaolixian_tongxiaozhen','710000_miaolixian','',NULL,'district','通霄镇','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167850,'710000_miaolixian_yuanlizhen','710000_miaolixian','',NULL,'district','苑里镇','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167851,'710000_miaolixian_miaolishi','710000_miaolixian','',NULL,'district','苗栗市','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167852,'710000_miaolixian_zaoqiaoxiang','710000_miaolixian','',NULL,'district','造桥乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167853,'710000_miaolixian_touwuxiang','710000_miaolixian','',NULL,'district','头屋乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167854,'710000_miaolixian_gongguanxiang','710000_miaolixian','',NULL,'district','公馆乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167855,'710000_miaolixian_dahuxiang','710000_miaolixian','',NULL,'district','大湖乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167856,'710000_miaolixian_taianxiang','710000_miaolixian','',NULL,'district','泰安乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167857,'710000_miaolixian_tongluoxiang','710000_miaolixian','',NULL,'district','铜锣乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167858,'710000_miaolixian_sanyixiang','710000_miaolixian','',NULL,'district','三义乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167859,'710000_miaolixian_xihuxiang','710000_miaolixian','',NULL,'district','西湖乡','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167860,'710000_miaolixian_zhuolanzhen','710000_miaolixian','',NULL,'district','卓兰镇','120.831336','24.567931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167861,'710000_zhanghuaxian','710000','',NULL,'city','彰化县','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167862,'710000_zhanghuaxian_zhanghuashi','710000_zhanghuaxian','',NULL,'district','彰化市','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167863,'710000_zhanghuaxian_fenyuanxiang','710000_zhanghuaxian','',NULL,'district','芬园乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167864,'710000_zhanghuaxian_huatanxiang','710000_zhanghuaxian','',NULL,'district','花坛乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167865,'710000_zhanghuaxian_xiushuixiang','710000_zhanghuaxian','',NULL,'district','秀水乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167866,'710000_zhanghuaxian_lugangzhen','710000_zhanghuaxian','',NULL,'district','鹿港镇','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167867,'710000_zhanghuaxian_fuxingxiang','710000_zhanghuaxian','',NULL,'district','福兴乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167868,'710000_zhanghuaxian_xianxixiang','710000_zhanghuaxian','',NULL,'district','线西乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167869,'710000_zhanghuaxian_hemeizhen','710000_zhanghuaxian','',NULL,'district','和美镇','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167870,'710000_zhanghuaxian_shengangxiang','710000_zhanghuaxian','',NULL,'district','伸港乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167871,'710000_zhanghuaxian_yuanlinshi','710000_zhanghuaxian','',NULL,'district','员林市','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167872,'710000_zhanghuaxian_shetouxiang','710000_zhanghuaxian','',NULL,'district','社头乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167873,'710000_zhanghuaxian_yongjingxiang','710000_zhanghuaxian','',NULL,'district','永靖乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167874,'710000_zhanghuaxian_puxinxiang','710000_zhanghuaxian','',NULL,'district','埔心乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167875,'710000_zhanghuaxian_xihuzhen','710000_zhanghuaxian','',NULL,'district','溪湖镇','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167876,'710000_zhanghuaxian_dacunxiang','710000_zhanghuaxian','',NULL,'district','大村乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167877,'710000_zhanghuaxian_puyanxiang','710000_zhanghuaxian','',NULL,'district','埔盐乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167878,'710000_zhanghuaxian_tianzhongzhen','710000_zhanghuaxian','',NULL,'district','田中镇','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167879,'710000_zhanghuaxian_beidouzhen','710000_zhanghuaxian','',NULL,'district','北斗镇','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167880,'710000_zhanghuaxian_tianweixiang','710000_zhanghuaxian','',NULL,'district','田尾乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167881,'710000_zhanghuaxian_kuntouxiang','710000_zhanghuaxian','',NULL,'district','坤头乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167882,'710000_zhanghuaxian_xizhouxiang','710000_zhanghuaxian','',NULL,'district','溪州乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167883,'710000_zhanghuaxian_zhutangxiang','710000_zhanghuaxian','',NULL,'district','竹塘乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167884,'710000_zhanghuaxian_erlinzhen','710000_zhanghuaxian','',NULL,'district','二林镇','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167885,'710000_zhanghuaxian_dachengxiang','710000_zhanghuaxian','',NULL,'district','大城乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167886,'710000_zhanghuaxian_fangyuanxiang','710000_zhanghuaxian','',NULL,'district','芳苑乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167887,'710000_zhanghuaxian_ershuixiang','710000_zhanghuaxian','',NULL,'district','二水乡','120.553823','24.07942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167888,'710000_nantouxian','710000','',NULL,'city','南投县','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167889,'710000_nantouxian_nantoushi','710000_nantouxian','',NULL,'district','南投市','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167890,'710000_nantouxian_zhongliaoxiang','710000_nantouxian','',NULL,'district','中寮乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167891,'710000_nantouxian_caotunzhen','710000_nantouxian','',NULL,'district','草屯镇','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167892,'710000_nantouxian_guoxingxiang','710000_nantouxian','',NULL,'district','国姓乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167893,'710000_nantouxian_pulizhen','710000_nantouxian','',NULL,'district','埔里镇','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167894,'710000_nantouxian_renaixiang','710000_nantouxian','',NULL,'district','仁爱乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167895,'710000_nantouxian_mingjianxiang','710000_nantouxian','',NULL,'district','名间乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167896,'710000_nantouxian_jijizhen','710000_nantouxian','',NULL,'district','集集镇','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167897,'710000_nantouxian_shuilixiang','710000_nantouxian','',NULL,'district','水里乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167898,'710000_nantouxian_yuchixiang','710000_nantouxian','',NULL,'district','鱼池乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167899,'710000_nantouxian_xinyixiang','710000_nantouxian','',NULL,'district','信义乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167900,'710000_nantouxian_zhushanzhen','710000_nantouxian','',NULL,'district','竹山镇','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167901,'710000_nantouxian_luguxiang','710000_nantouxian','',NULL,'district','鹿谷乡','120.701387','23.907318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167902,'710000_yunlinxian','710000','',NULL,'city','云林县','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167903,'710000_yunlinxian_dounanzhen','710000_yunlinxian','',NULL,'district','斗南镇','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167904,'710000_yunlinxian_dapixiang','710000_yunlinxian','',NULL,'district','大埤乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167905,'710000_yunlinxian_huweizhen','710000_yunlinxian','',NULL,'district','虎尾镇','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167906,'710000_yunlinxian_tukuzhen','710000_yunlinxian','',NULL,'district','土库镇','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167907,'710000_yunlinxian_baozhongxiang','710000_yunlinxian','',NULL,'district','褒忠乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167908,'710000_yunlinxian_dongshixiang','710000_yunlinxian','',NULL,'district','东势乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167909,'710000_yunlinxian_taixixiang','710000_yunlinxian','',NULL,'district','台西乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167910,'710000_yunlinxian_lunbeixiang','710000_yunlinxian','',NULL,'district','仑背乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167911,'710000_yunlinxian_mailiaoxiang','710000_yunlinxian','',NULL,'district','麦寮乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167912,'710000_yunlinxian_douliushi','710000_yunlinxian','',NULL,'district','斗六市','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167913,'710000_yunlinxian_linneixiang','710000_yunlinxian','',NULL,'district','林内乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167914,'710000_yunlinxian_gukengxiang','710000_yunlinxian','',NULL,'district','古坑乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167915,'710000_yunlinxian_citongxiang','710000_yunlinxian','',NULL,'district','莿桐乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167916,'710000_yunlinxian_xiluozhen','710000_yunlinxian','',NULL,'district','西螺镇','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167917,'710000_yunlinxian_erlunxiang','710000_yunlinxian','',NULL,'district','二仑乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167918,'710000_yunlinxian_beigangzhen','710000_yunlinxian','',NULL,'district','北港镇','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167919,'710000_yunlinxian_shuilinxiang','710000_yunlinxian','',NULL,'district','水林乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167920,'710000_yunlinxian_kouhuxiang','710000_yunlinxian','',NULL,'district','口湖乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167921,'710000_yunlinxian_sihuxiang','710000_yunlinxian','',NULL,'district','四湖乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167922,'710000_yunlinxian_yuanzhangxiang','710000_yunlinxian','',NULL,'district','元长乡','120.536595','23.703759','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167923,'710000_jiayixian','710000','',NULL,'city','嘉义县','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167924,'710000_jiayixian_fanluxiang','710000_jiayixian','',NULL,'district','番路乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167925,'710000_jiayixian_meishanxiang','710000_jiayixian','',NULL,'district','梅山乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167926,'710000_jiayixian_zhuqixiang','710000_jiayixian','',NULL,'district','竹崎乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167927,'710000_jiayixian_alishanxiang','710000_jiayixian','',NULL,'district','阿里山乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167928,'710000_jiayixian_zhongpuxiang','710000_jiayixian','',NULL,'district','中埔乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167929,'710000_jiayixian_dapuxiang','710000_jiayixian','',NULL,'district','大埔乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167930,'710000_jiayixian_shuishangxiang','710000_jiayixian','',NULL,'district','水上乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167931,'710000_jiayixian_lucaoxiang','710000_jiayixian','',NULL,'district','鹿草乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167932,'710000_jiayixian_taibaoshi','710000_jiayixian','',NULL,'district','太保市','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167933,'710000_jiayixian_pozishi','710000_jiayixian','',NULL,'district','朴子市','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167934,'710000_jiayixian_dongshixiang','710000_jiayixian','',NULL,'district','东石乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167935,'710000_jiayixian_liujiaoxiang','710000_jiayixian','',NULL,'district','六脚乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167936,'710000_jiayixian_xingangxiang','710000_jiayixian','',NULL,'district','新港乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167937,'710000_jiayixian_minxiongxiang','710000_jiayixian','',NULL,'district','民雄乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167938,'710000_jiayixian_dalinzhen','710000_jiayixian','',NULL,'district','大林镇','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167939,'710000_jiayixian_xikouxiang','710000_jiayixian','',NULL,'district','溪口乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167940,'710000_jiayixian_yizhuxiang','710000_jiayixian','',NULL,'district','义竹乡','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167941,'710000_jiayixian_budaizhen','710000_jiayixian','',NULL,'district','布袋镇','120.303638','23.462898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167942,'710000_pingdongxian','710000','',NULL,'city','屏东县','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167943,'710000_pingdongxian_pingdongshi','710000_pingdongxian','',NULL,'district','屏东市','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167944,'710000_pingdongxian_sandimenxiang','710000_pingdongxian','',NULL,'district','三地门乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167945,'710000_pingdongxian_wutaixiang','710000_pingdongxian','',NULL,'district','雾台乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167946,'710000_pingdongxian_majiaxiang','710000_pingdongxian','',NULL,'district','玛家乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167947,'710000_pingdongxian_jiuruxiang','710000_pingdongxian','',NULL,'district','九如乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167948,'710000_pingdongxian_ligangxiang','710000_pingdongxian','',NULL,'district','里港乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167949,'710000_pingdongxian_gaoshuxiang','710000_pingdongxian','',NULL,'district','高树乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167950,'710000_pingdongxian_yanpuxiang','710000_pingdongxian','',NULL,'district','盐埔乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167951,'710000_pingdongxian_zhangzhixiang','710000_pingdongxian','',NULL,'district','长治乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167952,'710000_pingdongxian_linluoxiang','710000_pingdongxian','',NULL,'district','麟洛乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167953,'710000_pingdongxian_zhutianxiang','710000_pingdongxian','',NULL,'district','竹田乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167954,'710000_pingdongxian_neipuxiang','710000_pingdongxian','',NULL,'district','内埔乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167955,'710000_pingdongxian_wandanxiang','710000_pingdongxian','',NULL,'district','万丹乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167956,'710000_pingdongxian_chaozhouzhen','710000_pingdongxian','',NULL,'district','潮州镇','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167957,'710000_pingdongxian_taiwuxiang','710000_pingdongxian','',NULL,'district','泰武乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167958,'710000_pingdongxian_laiyixiang','710000_pingdongxian','',NULL,'district','来义乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167959,'710000_pingdongxian_wanluanxiang','710000_pingdongxian','',NULL,'district','万峦乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167960,'710000_pingdongxian_kandingxiang','710000_pingdongxian','',NULL,'district','崁顶乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167961,'710000_pingdongxian_xinpixiang','710000_pingdongxian','',NULL,'district','新埤乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167962,'710000_pingdongxian_nanzhouxiang','710000_pingdongxian','',NULL,'district','南州乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167963,'710000_pingdongxian_linbianxiang','710000_pingdongxian','',NULL,'district','林边乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167964,'710000_pingdongxian_donggangzhen','710000_pingdongxian','',NULL,'district','东港镇','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167965,'710000_pingdongxian_liuqiuxiang','710000_pingdongxian','',NULL,'district','琉球乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167966,'710000_pingdongxian_jiadongxiang','710000_pingdongxian','',NULL,'district','佳冬乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167967,'710000_pingdongxian_xinyuanxiang','710000_pingdongxian','',NULL,'district','新园乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167968,'710000_pingdongxian_fangliaoxiang','710000_pingdongxian','',NULL,'district','枋寮乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167969,'710000_pingdongxian_fangshanxiang','710000_pingdongxian','',NULL,'district','枋山乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167970,'710000_pingdongxian_chunrixiang','710000_pingdongxian','',NULL,'district','春日乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167971,'710000_pingdongxian_shizixiang','710000_pingdongxian','',NULL,'district','狮子乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167972,'710000_pingdongxian_dongchengxiang','710000_pingdongxian','',NULL,'district','东城乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167973,'710000_pingdongxian_mudanxiang','710000_pingdongxian','',NULL,'district','牡丹乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167974,'710000_pingdongxian_hengchunzhen','710000_pingdongxian','',NULL,'district','恒春镇','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167975,'710000_pingdongxian_manzhouxiang','710000_pingdongxian','',NULL,'district','满州乡','120.496653','22.687529','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167976,'710000_yilanxian','710000','',NULL,'city','宜兰县','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167977,'710000_yilanxian_yilanshi','710000_yilanxian','',NULL,'district','宜兰市','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167978,'710000_yilanxian_touchengzhen','710000_yilanxian','',NULL,'district','头城镇','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167979,'710000_yilanxian_jiaoxixiang','710000_yilanxian','',NULL,'district','礁溪乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167980,'710000_yilanxian_zhuangweixiang','710000_yilanxian','',NULL,'district','壮围乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167981,'710000_yilanxian_yuanshanxiang','710000_yilanxian','',NULL,'district','员山乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167982,'710000_yilanxian_luodongzhen','710000_yilanxian','',NULL,'district','罗东镇','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167983,'710000_yilanxian_sanxingxiang','710000_yilanxian','',NULL,'district','三星乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167984,'710000_yilanxian_datongxiang','710000_yilanxian','',NULL,'district','大同乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167985,'710000_yilanxian_wujiexiang','710000_yilanxian','',NULL,'district','五结乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167986,'710000_yilanxian_dongshanxiang','710000_yilanxian','',NULL,'district','冬山乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167987,'710000_yilanxian_suaozhen','710000_yilanxian','',NULL,'district','苏澳镇','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167988,'710000_yilanxian_nanaoxiang','710000_yilanxian','',NULL,'district','南澳乡','121.77289','24.735701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167989,'710000_hualianxian','710000','',NULL,'city','花莲县','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167990,'710000_hualianxian_hualianshi','710000_hualianxian','',NULL,'district','花莲市','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167991,'710000_hualianxian_xinchengxiang','710000_hualianxian','',NULL,'district','新城乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167992,'710000_hualianxian_xiulinxiang','710000_hualianxian','',NULL,'district','秀林乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167993,'710000_hualianxian_jianxiang','710000_hualianxian','',NULL,'district','吉安乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167994,'710000_hualianxian_shoufengxiang','710000_hualianxian','',NULL,'district','寿丰乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167995,'710000_hualianxian_fenglinzhen','710000_hualianxian','',NULL,'district','凤林镇','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167996,'710000_hualianxian_guangfuxiang','710000_hualianxian','',NULL,'district','光复乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167997,'710000_hualianxian_fengbinxiang','710000_hualianxian','',NULL,'district','丰滨乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167998,'710000_hualianxian_ruisuixiang','710000_hualianxian','',NULL,'district','瑞穗乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(167999,'710000_hualianxian_wanrongxiang','710000_hualianxian','',NULL,'district','万荣乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168000,'710000_hualianxian_yulizhen','710000_hualianxian','',NULL,'district','玉里镇','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168001,'710000_hualianxian_zhuoxixiang','710000_hualianxian','',NULL,'district','卓溪乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168002,'710000_hualianxian_fulixiang','710000_hualianxian','',NULL,'district','富里乡','121.631957','23.995182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168003,'710000_taidongxian','710000','',NULL,'city','台东县','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168004,'710000_taidongxian_taibeishi','710000_taidongxian','',NULL,'district','台北市','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168005,'710000_taidongxian_lu:daoxiang','710000_taidongxian','',NULL,'district','绿岛乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168006,'710000_taidongxian_lanyuxiang','710000_taidongxian','',NULL,'district','兰屿乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168007,'710000_taidongxian_yanpingxiang','710000_taidongxian','',NULL,'district','延平乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168008,'710000_taidongxian_beinanxiang','710000_taidongxian','',NULL,'district','卑南乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168009,'710000_taidongxian_luyexiang','710000_taidongxian','',NULL,'district','鹿野乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168010,'710000_taidongxian_guanshanzhen','710000_taidongxian','',NULL,'district','关山镇','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168011,'710000_taidongxian_haiduanxiang','710000_taidongxian','',NULL,'district','海端乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168012,'710000_taidongxian_chishangxiang','710000_taidongxian','',NULL,'district','池上乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168013,'710000_taidongxian_donghexiang','710000_taidongxian','',NULL,'district','东河乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168014,'710000_taidongxian_chenggongzhen','710000_taidongxian','',NULL,'district','成功镇','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168015,'710000_taidongxian_zhangbinxiang','710000_taidongxian','',NULL,'district','长滨乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168016,'710000_taidongxian_jinfengxiang','710000_taidongxian','',NULL,'district','金峰乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168017,'710000_taidongxian_dawuxiang','710000_taidongxian','',NULL,'district','大武乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168018,'710000_taidongxian_darenxiang','710000_taidongxian','',NULL,'district','达仁乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168019,'710000_taidongxian_taimalixiang','710000_taidongxian','',NULL,'district','太麻里乡','121.161016','22.758833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168020,'710000_penghuxian','710000','',NULL,'city','澎湖县','119.578735','23.57369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168021,'710000_penghuxian_magongshi','710000_penghuxian','',NULL,'district','马公市','119.578735','23.57369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168022,'710000_penghuxian_xiyuxiang','710000_penghuxian','',NULL,'district','西屿乡','119.578735','23.57369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168023,'710000_penghuxian_wanganxiang','710000_penghuxian','',NULL,'district','望安乡','119.578735','23.57369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168024,'710000_penghuxian_qimeixiang','710000_penghuxian','',NULL,'district','七美乡','119.578735','23.57369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168025,'710000_penghuxian_baishaxiang','710000_penghuxian','',NULL,'district','白沙乡','119.578735','23.57369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168026,'710000_penghuxian_huxixiang','710000_penghuxian','',NULL,'district','湖西乡','119.578735','23.57369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168027,'820000','100000','','820000','province','澳门特别行政区','113.543076','22.186927','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168028,'820000_aomentebiexingzhengqu','820000','','820000','city','澳门特别行政区','113.543076','22.186927','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168029,'820001','820000_aomentebiexingzhengqu','1853','820001','district','花地玛堂区','113.5528956','22.20787','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168030,'820007','820000_aomentebiexingzhengqu','1853','820007','district','路氹填海区','113.5695992','22.13663','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168031,'820002','820000_aomentebiexingzhengqu','1853','820002','district','花王堂区','113.5489608','22.1992075','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168032,'820003','820000_aomentebiexingzhengqu','1853','820003','district','望德堂区','113.5501828','22.19372083','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168033,'820006','820000_aomentebiexingzhengqu','1853','820006','district','嘉模堂区','113.5587044','22.15375944','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168034,'820008','820000_aomentebiexingzhengqu','1853','820008','district','圣方济各堂区','113.5599542','22.12348639','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168035,'820005','820000_aomentebiexingzhengqu','1853','820005','district','风顺堂区','113.5419278','22.18736806','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168036,'820004','820000_aomentebiexingzhengqu','1853','820004','district','大堂区','113.5536475','22.18853944','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168037,'620000','100000','','620000','province','甘肃省','103.826777','36.060634','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168038,'620200','620000','1937','620200','city','嘉峪关市','98.2882','39.77325','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168039,'620200_yuquanzhen','620200','1937','620200','street','峪泉镇','98.320410','39.958254','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168040,'620200_xinchengzhen','620200','1937','620200','street','新城镇','98.362748','39.958127','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168041,'620200_wenshuzhen','620200','1937','620200','street','文殊镇','98.157893','39.696861','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168042,'620200_xiongguanjiedao','620200','1937','620200','street','雄关街道','98.239097','39.892952','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168043,'620200_gangchengjiedao','620200','1937','620200','street','钢城街道','98.292606','39.755770','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168044,'620900','620000','0937','620900','city','酒泉市','98.49432','39.733416','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168045,'620923','620900','0937','620923','district','肃北蒙古族自治县','94.876533','39.512158','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168046,'620982','620900','0937','620982','district','敦煌市','94.66201','40.142141','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168047,'620981','620900','0937','620981','district','玉门市','97.045617','40.292344','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168048,'620902','620900','0937','620902','district','肃州区','98.507834','39.74511','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168049,'620921','620900','0937','620921','district','金塔县','98.901523','39.984146','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168050,'620924','620900','0937','620924','district','阿克塞哈萨克族自治县','94.340202','39.633944','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168051,'620922','620900','0937','620922','district','瓜州县','95.782255','40.520457','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168052,'620100','620000','0931','620100','city','兰州市','103.834228','36.060798','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168053,'620111','620100','0931','620111','district','红古区','102.859338','36.345768','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168054,'620105','620100','0931','620105','district','安宁区','103.718953','36.104493','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168055,'620121','620100','0931','620121','district','永登县','103.260273','36.736457','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168056,'620122','620100','0931','620122','district','皋兰县','103.947345','36.332434','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168057,'620104','620100','0931','620104','district','西固区','103.627966','36.08845','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168058,'620103','620100','0931','620103','district','七里河区','103.786261','36.066249','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168059,'620123','620100','0931','620123','district','榆中县','104.112541','35.843354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168060,'620102','620100','0931','620102','district','城关区','103.825315','36.056948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168061,'620800','620000','0933','620800','city','平凉市','106.664913','35.542417','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168062,'620802','620800','0933','620802','district','崆峒区','106.67489','35.542437','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168063,'620825','620800','0933','620825','district','庄浪县','106.036201','35.20266','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168064,'620826','620800','0933','620826','district','静宁县','105.732165','35.522035','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168065,'620881','620800','0933','620881','district','华亭市','106.628899','35.207695','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168066,'620822','620800','0933','620822','district','灵台县','107.595874','35.070027','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168067,'620823','620800','0933','620823','district','崇信县','107.025762','35.305648','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168068,'620821','620800','0933','620821','district','泾川县','107.367608','35.332992','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168069,'620300','620000','0935','620300','city','金昌市','102.187972','38.521468','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168070,'620321','620300','0935','620321','district','永昌县','101.984642','38.243534','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168071,'620302','620300','0935','620302','district','金川区','102.1939','38.520373','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168072,'620500','620000','0938','620500','city','天水市','105.724828','34.581514','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168073,'620521','620500','0938','620521','district','清水县','106.137318','34.749906','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168074,'620503','620500','0938','620503','district','麦积区','105.889452','34.571143','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168075,'620502','620500','0938','620502','district','秦州区','105.724914','34.581187','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168076,'620524','620500','0938','620524','district','武山县','104.89121','34.72183','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168077,'620523','620500','0938','620523','district','甘谷县','105.340789','34.745447','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168078,'620525','620500','0938','620525','district','张家川回族自治县','106.20513','34.988676','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168079,'620522','620500','0938','620522','district','秦安县','105.675799','34.859094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168080,'620400','620000','0943','620400','city','白银市','104.138872','36.545123','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168081,'620421','620400','0943','620421','district','靖远县','104.676202','36.571736','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168082,'620423','620400','0943','620423','district','景泰县','104.063125','37.18351','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168083,'620402','620400','0943','620402','district','白银区','104.14956','36.53469','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168084,'620403','620400','0943','620403','district','平川区','104.825275','36.728494','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168085,'620422','620400','0943','620422','district','会宁县','105.052883','35.693241','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168086,'620600','620000','1935','620600','city','武威市','102.637821','37.92898','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168087,'620602','620600','1935','620602','district','凉州区','102.641959','37.928217','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168088,'620623','620600','1935','620623','district','天祝藏族自治县','103.142416','36.971978','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168089,'620622','620600','1935','620622','district','古浪县','102.897542','37.470882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168090,'620621','620600','1935','620621','district','民勤县','103.093671','38.624293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168091,'620700','620000','0936','620700','city','张掖市','100.449858','38.924766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168092,'620721','620700','0936','620721','district','肃南裕固族自治县','99.615601','38.836931','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168093,'620724','620700','0936','620724','district','高台县','99.819265','39.378294','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168094,'620723','620700','0936','620723','district','临泽县','100.164333','39.15224','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168095,'620702','620700','0936','620702','district','甘州区','100.415324','38.944315','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168096,'620722','620700','0936','620722','district','民乐县','100.812047','38.430318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168097,'620725','620700','0936','620725','district','山丹县','101.088611','38.7846','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168098,'622900','620000','0930','622900','city','临夏回族自治州','103.210386','35.601792','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168099,'622927','622900','0930','622927','district','积石山保安族东乡族撒拉族自治县','102.875939','35.717697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168100,'622901','622900','0930','622901','district','临夏市','103.24222','35.604682','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168101,'622921','622900','0930','622921','district','临夏县','103.04068','35.478726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168102,'622926','622900','0930','622926','district','东乡族自治县','103.388122','35.664409','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168103,'622923','622900','0930','622923','district','永靖县','103.285853','35.958306','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168104,'622924','622900','0930','622924','district','广河县','103.575582','35.488248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168105,'622925','622900','0930','622925','district','和政县','103.350996','35.424602','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168106,'622922','622900','0930','622922','district','康乐县','103.708507','35.370296','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168107,'621100','620000','0932','621100','city','定西市','104.592342','35.607947','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168108,'621123','621100','0932','621123','district','渭源县','104.215092','35.137028','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168109,'621124','621100','0932','621124','district','临洮县','103.859446','35.394993','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168110,'621126','621100','0932','621126','district','岷县','104.036731','34.43833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168111,'621122','621100','0932','621122','district','陇西县','104.634928','35.003899','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168112,'621102','621100','0932','621102','district','安定区','104.610647','35.580918','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168113,'621125','621100','0932','621125','district','漳县','104.471722','34.84854','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168114,'621121','621100','0932','621121','district','通渭县','105.242312','35.211311','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168115,'623000','620000','0941','623000','city','甘南藏族自治州','102.911736','34.983266','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168116,'623021','623000','0941','623021','district','临潭县','103.353665','34.693009','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168117,'623022','623000','0941','623022','district','卓尼县','103.506849','34.589476','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168118,'623025','623000','0941','623025','district','玛曲县','102.072608','33.998145','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168119,'623027','623000','0941','623027','district','夏河县','102.548303','35.203857','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168120,'623026','623000','0941','623026','district','碌曲县','102.487512','34.591084','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168121,'623001','623000','0941','623001','district','合作市','102.910305','35.000228','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168122,'623023','623000','0941','623023','district','舟曲县','104.251543','33.793695','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168123,'623024','623000','0941','623024','district','迭部县','103.221735','34.055888','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168124,'621200','620000','2935','621200','city','陇南市','104.960296','33.370174','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168125,'621221','621200','2935','621221','district','成县','105.729569','33.740547','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168126,'621227','621200','2935','621227','district','徽县','106.087156','33.769927','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168127,'621228','621200','2935','621228','district','两当县','106.304973','33.908952','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168128,'621224','621200','2935','621224','district','康县','105.608609','33.329212','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168129,'621222','621200','2935','621222','district','文县','104.6835','32.944031','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168130,'621202','621200','2935','621202','district','武都区','104.921861','33.400685','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168131,'621225','621200','2935','621225','district','西和县','105.298756','34.014215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168132,'621226','621200','2935','621226','district','礼县','105.17864','34.189345','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168133,'621223','621200','2935','621223','district','宕昌县','104.393385','34.047261','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168134,'621000','620000','0934','621000','city','庆阳市','107.643433','35.709459','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168135,'621027','621000','0934','621027','district','镇原县','107.200888','35.677705','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168136,'621022','621000','0934','621022','district','环县','107.308788','36.568566','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168137,'621021','621000','0934','621021','district','庆城县','107.881706','36.016125','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168138,'621023','621000','0934','621023','district','华池县','107.98972','36.461474','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168139,'621024','621000','0934','621024','district','合水县','108.021859','35.833908','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168140,'621002','621000','0934','621002','district','西峰区','107.650563','35.730318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168141,'621026','621000','0934','621026','district','宁县','107.913463','35.509252','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168142,'621025','621000','0934','621025','district','正宁县','108.359964','35.492158','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168143,'510000','100000','','510000','province','四川省','104.076452','30.651696','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168144,'510800','510000','0839','510800','city','广元市','105.844004','32.435774','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168145,'510812','510800','0839','510812','district','朝天区','105.882848','32.651352','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168146,'510811','510800','0839','510811','district','昭化区','105.957612','32.333173','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168147,'510824','510800','0839','510824','district','苍溪县','105.934756','31.731709','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168148,'510823','510800','0839','510823','district','剑阁县','105.524699','32.288681','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168149,'510822','510800','0839','510822','district','青川县','105.238498','32.575821','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168150,'510821','510800','0839','510821','district','旺苍县','106.290124','32.229074','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168151,'510802','510800','0839','510802','district','利州区','105.845307','32.433756','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168152,'511300','510000','0817','511300','city','南充市','106.110565','30.837235','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168153,'511321','511300','0817','511321','district','南部县','106.036349','31.348255','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168154,'511322','511300','0817','511322','district','营山县','106.565524','31.077057','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168155,'511325','511300','0817','511325','district','西充县','105.900894','30.995546','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168156,'511304','511300','0817','511304','district','嘉陵区','106.07208','30.758831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168157,'511324','511300','0817','511324','district','仪陇县','106.303082','31.271693','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168158,'511302','511300','0817','511302','district','顺庆区','106.092327','30.797366','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168159,'511381','511300','0817','511381','district','阆中市','106.005046','31.558356','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168160,'511303','511300','0817','511303','district','高坪区','106.118931','30.781284','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168161,'511323','511300','0817','511323','district','蓬安县','106.412156','31.028537','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168162,'511900','510000','0827','511900','city','巴中市','106.747548','31.867853','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168163,'511902','511900','0827','511902','district','巴州区','106.76887','31.851458','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168164,'511922','511900','0827','511922','district','南江县','106.828697','32.346589','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168165,'511921','511900','0827','511921','district','通江县','107.245033','31.911705','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168166,'511923','511900','0827','511923','district','平昌县','107.103613','31.560436','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168167,'511903','511900','0827','511903','district','恩阳区','106.634651','31.796476','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168168,'510600','510000','0838','510600','city','德阳市','104.397795','31.127449','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168169,'510623','510600','0838','510623','district','中江县','104.678601','31.03327','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168170,'510682','510600','0838','510682','district','什邡市','104.167345','31.12655','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168171,'510604','510600','0838','510604','district','罗江区','104.510457','31.317388','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168172,'510683','510600','0838','510683','district','绵竹市','104.220679','31.339251','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168173,'510603','510600','0838','510603','district','旌阳区','104.417061','31.143335','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168174,'510681','510600','0838','510681','district','广汉市','104.282204','30.977264','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168175,'510700','510000','0816','510700','city','绵阳市','104.679127','31.467673','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168176,'510781','510700','0816','510781','district','江油市','104.74564','31.778572','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168177,'510725','510700','0816','510725','district','梓潼县','105.170746','31.642635','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168178,'510704','510700','0816','510704','district','游仙区','104.766136','31.473788','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168179,'510722','510700','0816','510722','district','三台县','105.093722','31.095826','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168180,'510703','510700','0816','510703','district','涪城区','104.756917','31.455192','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168181,'510727','510700','0816','510727','district','平武县','104.555481','32.409684','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168182,'510726','510700','0816','510726','district','北川羌族自治县','104.468163','31.617192','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168183,'510723','510700','0816','510723','district','盐亭县','105.389453','31.208362','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168184,'510705','510700','0816','510705','district','安州区','104.567543','31.534319','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168185,'510100','510000','028','510100','city','成都市','104.066301','30.572961','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168186,'510182','510100','028','510182','district','彭州市','103.957706','30.990463','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168187,'510185','510100','028','510185','district','简阳市','104.547644','30.410937','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168188,'510131','510100','028','510131','district','蒲江县','103.506478','30.197558','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168189,'510116','510100','028','510116','district','双流区','103.92342','30.574884','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168190,'510112','510100','028','510112','district','龙泉驿区','104.27536','30.556808','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168191,'510118','510100','028','510118','district','新津区','103.810906','30.410404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168192,'510183','510100','028','510183','district','邛崃市','103.464176','30.41029','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168193,'510105','510100','028','510105','district','青羊区','104.062415','30.674583','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168194,'510106','510100','028','510106','district','金牛区','104.052236','30.691359','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168195,'510107','510100','028','510107','district','武侯区','104.043246','30.641849','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168196,'510113','510100','028','510113','district','青白江区','104.251342','30.8786','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168197,'510129','510100','028','510129','district','大邑县','103.51226','30.573004','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168198,'510184','510100','028','510184','district','崇州市','103.673025','30.630183','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168199,'510115','510100','028','510115','district','温江区','103.856423','30.681956','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168200,'510108','510100','028','510108','district','成华区','104.101452','30.659966','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168201,'510121','510100','028','510121','district','金堂县','104.411871','30.86203','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168202,'510114','510100','028','510114','district','新都区','104.158593','30.823568','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168203,'510117','510100','028','510117','district','郫都区','103.900486','30.795113','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168204,'510181','510100','028','510181','district','都江堰市','103.647193','30.988763','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168205,'510104','510100','028','510104','district','锦江区','104.117262','30.598726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168206,'511600','510000','0826','511600','city','广安市','106.632647','30.456354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168207,'511623','511600','0826','511623','district','邻水县','106.930242','30.334911','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168208,'511602','511600','0826','511602','district','广安区','106.641628','30.473943','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168209,'511621','511600','0826','511621','district','岳池县','106.440056','30.538656','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168210,'511622','511600','0826','511622','district','武胜县','106.295945','30.349493','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168211,'511681','511600','0826','511681','district','华蓥市','106.783151','30.390439','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168212,'511603','511600','0826','511603','district','前锋区','106.886039','30.496059','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168213,'511700','510000','0818','511700','city','达州市','107.46778','31.209278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168214,'511724','511700','0818','511724','district','大竹县','107.204702','30.736222','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168215,'511725','511700','0818','511725','district','渠县','106.973114','30.836504','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168216,'511703','511700','0818','511703','district','达川区','107.511736','31.196573','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168217,'511702','511700','0818','511702','district','通川区','107.505053','31.214665','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168218,'511722','511700','0818','511722','district','宣汉县','107.727198','31.353845','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168219,'511781','511700','0818','511781','district','万源市','108.034393','32.081698','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168220,'511723','511700','0818','511723','district','开江县','107.868609','31.082945','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168221,'510900','510000','0825','510900','city','遂宁市','105.592602','30.53268','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168222,'510923','510900','0825','510923','district','大英县','105.236852','30.594472','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168223,'510981','510900','0825','510981','district','射洪市','105.388366','30.871079','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168224,'510921','510900','0825','510921','district','蓬溪县','105.707498','30.75763','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168225,'510904','510900','0825','510904','district','安居区','105.45636','30.355091','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168226,'510903','510900','0825','510903','district','船山区','105.568359','30.526201','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168227,'512000','510000','0832','512000','city','资阳市','104.627265','30.129236','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168228,'512022','512000','0832','512022','district','乐至县','105.019823','30.275418','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168229,'512021','512000','0832','512021','district','安岳县','105.35551','30.103623','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168230,'512002','512000','0832','512002','district','雁江区','104.676814','30.107778','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168231,'511400','510000','1833','511400','city','眉山市','103.848417','30.077113','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168232,'511421','511400','1833','511421','district','仁寿县','104.133931','29.995638','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168233,'511424','511400','1833','511424','district','丹棱县','103.512859','30.014398','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168234,'511423','511400','1833','511423','district','洪雅县','103.365035','29.915828','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168235,'511403','511400','1833','511403','district','彭山区','103.872852','30.193278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168236,'511425','511400','1833','511425','district','青神县','103.846596','29.831302','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168237,'511402','511400','1833','511402','district','东坡区','103.831868','30.041956','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168238,'511000','510000','1832','511000','city','内江市','105.057992','29.58021','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168239,'511025','511000','1832','511025','district','资中县','104.851874','29.763419','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168240,'511024','511000','1832','511024','district','威远县','104.669032','29.527456','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168241,'511011','511000','1832','511011','district','东兴区','105.076107','29.593528','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168242,'511083','511000','1832','511083','district','隆昌市','105.287507','29.339408','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168243,'511002','511000','1832','511002','district','市中区','105.06759','29.587091','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168244,'511100','510000','0833','511100','city','乐山市','103.766085','29.552275','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168245,'511126','511100','0833','511126','district','夹江县','103.571313','29.738143','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168246,'511111','511100','0833','511111','district','沙湾区','103.550118','29.412404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168247,'511112','511100','0833','511112','district','五通桥区','103.818024','29.406837','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168248,'511124','511100','0833','511124','district','井研县','104.06968','29.65165','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168249,'511113','511100','0833','511113','district','金口河区','103.078597','29.244345','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168250,'511123','511100','0833','511123','district','犍为县','103.949231','29.208118','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168251,'511132','511100','0833','511132','district','峨边彝族自治县','103.262048','29.230426','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168252,'511129','511100','0833','511129','district','沐川县','103.902691','28.956394','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168253,'511133','511100','0833','511133','district','马边彝族自治县','103.546347','28.83552','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168254,'511181','511100','0833','511181','district','峨眉山市','103.484557','29.601189','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168255,'511102','511100','0833','511102','district','市中区','103.761329','29.555374','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168256,'510300','510000','0813','510300','city','自贡市','104.779307','29.33924','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168257,'510321','510300','0813','510321','district','荣县','104.417438','29.445461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168258,'510322','510300','0813','510322','district','富顺县','104.975193','29.181779','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168259,'510304','510300','0813','510304','district','大安区','104.773982','29.36371','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168260,'510311','510300','0813','510311','district','沿滩区','104.873826','29.27208','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168261,'510302','510300','0813','510302','district','自流井区','104.777182','29.337295','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168262,'510303','510300','0813','510303','district','贡井区','104.704179','29.333764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168263,'510500','510000','0830','510500','city','泸州市','105.441866','28.87098','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168264,'510521','510500','0830','510521','district','泸县','105.381879','29.1516','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168265,'510504','510500','0830','510504','district','龙马潭区','105.437751','28.913257','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168266,'510503','510500','0830','510503','district','纳溪区','105.371324','28.772888','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168267,'510524','510500','0830','510524','district','叙永县','105.444777','28.155631','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168268,'510525','510500','0830','510525','district','古蔺县','105.812694','28.038763','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168269,'510502','510500','0830','510502','district','江阳区','105.434982','28.87881','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168270,'510522','510500','0830','510522','district','合江县','105.831011','28.811278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168271,'511500','510000','0831','511500','city','宜宾市','104.642826','28.752354','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168272,'511524','511500','0831','511524','district','长宁县','104.920643','28.582866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168273,'511503','511500','0831','511503','district','南溪区','104.969147','28.846366','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168274,'511526','511500','0831','511526','district','珙县','104.708986','28.439514','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168275,'511528','511500','0831','511528','district','兴文县','105.236207','28.303669','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168276,'511523','511500','0831','511523','district','江安县','105.066982','28.723797','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168277,'511527','511500','0831','511527','district','筠连县','104.511159','28.167981','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168278,'511502','511500','0831','511502','district','翠屏区','104.619853','28.766537','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168279,'511529','511500','0831','511529','district','屏山县','104.346138','28.82867','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168280,'511504','511500','0831','511504','district','叙州区','104.533244','28.690068','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168281,'511525','511500','0831','511525','district','高县','104.517748','28.436166','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168282,'513400','510000','0834','513400','city','凉山彝族自治州','102.267713','27.881396','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168283,'513435','513400','0834','513435','district','甘洛县','102.771441','28.959131','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168284,'513436','513400','0834','513436','district','美姑县','103.132359','28.328591','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168285,'513437','513400','0834','513437','district','雷波县','103.571705','28.263202','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168286,'513422','513400','0834','513422','district','木里藏族自治县','101.280216','27.928736','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168287,'513434','513400','0834','513434','district','越西县','102.507467','28.639874','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168288,'513423','513400','0834','513423','district','盐源县','101.509038','27.422593','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168289,'513433','513400','0834','513433','district','冕宁县','102.176622','28.550145','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168290,'513430','513400','0834','513430','district','金阳县','103.248786','27.696735','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168291,'513429','513400','0834','513429','district','布拖县','102.809157','27.7121','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168292,'513428','513400','0834','513428','district','普格县','102.540901','27.376413','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168293,'513402','513400','0834','513402','district','会理市','102.244774','26.655047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168294,'513424','513400','0834','513424','district','德昌县','102.175661','27.402832','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168295,'513401','513400','0834','513401','district','西昌市','102.264166','27.89441','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168296,'513431','513400','0834','513431','district','昭觉县','102.839849','28.015301','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168297,'513426','513400','0834','513426','district','会东县','102.577979','26.634744','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168298,'513432','513400','0834','513432','district','喜德县','102.412451','28.306429','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168299,'513427','513400','0834','513427','district','宁南县','102.751587','27.061431','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168300,'510400','510000','0812','510400','city','攀枝花市','101.71846','26.582417','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168301,'510421','510400','0812','510421','district','米易县','102.111073','26.896372','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168302,'510422','510400','0812','510422','district','盐边县','101.854027','26.682611','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168303,'510402','510400','0812','510402','district','东区','101.704129','26.546484','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168304,'510411','510400','0812','510411','district','仁和区','101.738615','26.497796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168305,'510403','510400','0812','510403','district','西区','101.630557','26.5977','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168306,'513300','510000','0836','513300','city','甘孜藏族自治州','101.96231','30.04952','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168307,'513332','513300','0836','513332','district','石渠县','98.102938','32.978728','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168308,'513328','513300','0836','513328','district','甘孜县','99.991683','31.622731','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168309,'513330','513300','0836','513330','district','德格县','98.580914','31.806118','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168310,'513327','513300','0836','513327','district','炉霍县','100.676014','31.390657','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168311,'513331','513300','0836','513331','district','白玉县','98.824025','31.209669','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168312,'513329','513300','0836','513329','district','新龙县','100.311569','30.93917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168313,'513326','513300','0836','513326','district','道孚县','101.125157','30.979486','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168314,'513334','513300','0836','513334','district','理塘县','100.269145','29.994228','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168315,'513301','513300','0836','513301','district','康定市','101.95687','29.998544','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168316,'513335','513300','0836','513335','district','巴塘县','99.110555','30.00533','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168317,'513325','513300','0836','513325','district','雅江县','101.014366','30.031498','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168318,'513336','513300','0836','513336','district','乡城县','99.798116','28.931081','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168319,'513337','513300','0836','513337','district','稻城县','100.297369','29.03791','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168320,'513324','513300','0836','513324','district','九龙县','101.507294','29.000347','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168321,'513338','513300','0836','513338','district','得荣县','99.286366','28.713085','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168322,'513323','513300','0836','513323','district','丹巴县','101.89054','30.878618','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168323,'513322','513300','0836','513322','district','泸定县','102.234814','29.914103','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168324,'513333','513300','0836','513333','district','色达县','100.333011','32.268541','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168325,'511800','510000','0835','511800','city','雅安市','103.041538','30.009998','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168326,'511827','511800','0835','511827','district','宝兴县','102.824826','30.252469','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168327,'511822','511800','0835','511822','district','荥经县','102.846537','29.793254','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168328,'511802','511800','0835','511802','district','雨城区','103.032868','30.005718','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168329,'511824','511800','0835','511824','district','石棉县','102.358364','29.230963','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168330,'511823','511800','0835','511823','district','汉源县','102.650417','29.344275','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168331,'511825','511800','0835','511825','district','天全县','102.771745','30.05728','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168332,'511826','511800','0835','511826','district','芦山县','102.933618','30.145077','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168333,'511803','511800','0835','511803','district','名山区','103.109238','30.069837','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168334,'513200','510000','0837','513200','city','阿坝藏族羌族自治州','102.224504','31.899427','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168335,'513225','513200','0837','513225','district','九寨沟县','104.2426','33.252008','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168336,'513233','513200','0837','513233','district','红原县','102.544395','32.790841','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168337,'513231','513200','0837','513231','district','阿坝县','101.706548','32.902387','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168338,'513228','513200','0837','513228','district','黑水县','102.987592','32.069268','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168339,'513226','513200','0837','513226','district','金川县','102.063821','31.47625','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168340,'513201','513200','0837','513201','district','马尔康市','102.206386','31.905799','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168341,'513222','513200','0837','513222','district','理县','103.163284','31.435831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168342,'513224','513200','0837','513224','district','松潘县','103.60428','32.655685','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168343,'513227','513200','0837','513227','district','小金县','102.362984','30.995823','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168344,'513221','513200','0837','513221','district','汶川县','103.590185','31.476875','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168345,'513223','513200','0837','513223','district','茂县','103.85332','31.681727','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168346,'513232','513200','0837','513232','district','若尔盖县','102.96738','33.578503','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168347,'513230','513200','0837','513230','district','壤塘县','100.978526','32.265796','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168348,'120000','100000','','120000','province','天津市','117.201509','39.085318','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168349,'120100','120000','022','120100','city','天津城区','117.190182','39.125596','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168350,'120115','120100','022','120115','district','宝坻区','117.309748','39.717054','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168351,'120105','120100','022','120105','district','河北区','117.196874','39.148018','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168352,'120118','120100','022','120118','district','静海区','116.975474','38.947772','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168353,'120119','120100','022','120119','district','蓟州区','117.408432','40.046544','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168354,'120117','120100','022','120117','district','宁河区','117.826674','39.329749','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168355,'120101','120100','022','120101','district','和平区','117.214713','39.116884','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168356,'120106','120100','022','120106','district','红桥区','117.151566','39.167349','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168357,'120114','120100','022','120114','district','武清区','117.04456','39.384108','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168358,'120104','120100','022','120104','district','南开区','117.150638','39.138551','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168359,'120116','120100','022','120116','district','滨海新区','117.69641','39.017809','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168360,'120102','120100','022','120102','district','河东区','117.251584','39.128294','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168361,'120110','120100','022','120110','district','东丽区','117.313567','39.086789','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168362,'120112','120100','022','120112','district','津南区','117.356683','38.936971','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168363,'120103','120100','022','120103','district','河西区','117.223379','39.109679','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168364,'120113','120100','022','120113','district','北辰区','117.135614','39.224638','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168365,'120111','120100','022','120111','district','西青区','117.008994','39.141811','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168366,'110000','100000','','110000','province','北京市','116.407387','39.904179','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168367,'110100','110000','010','110100','city','北京城区','116.405285','39.904989','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168368,'110116','110100','010','110116','district','怀柔区','116.631974','40.317003','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168369,'110109','110100','010','110109','district','门头沟区','116.101668','39.940842','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168370,'110118','110100','010','110118','district','密云区','116.843351','40.377058','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168371,'110102','110100','010','110102','district','西城区','116.36585','39.9126','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168372,'110113','110100','010','110113','district','顺义区','116.661474','40.149891','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168373,'110119','110100','010','110119','district','延庆区','115.974609','40.457033','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168374,'110105','110100','010','110105','district','朝阳区','116.443136','39.921444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168375,'110101','110100','010','110101','district','东城区','116.416334','39.928359','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168376,'110108','110100','010','110108','district','海淀区','116.2977','39.959893','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168377,'110114','110100','010','110114','district','昌平区','116.231034','40.220952','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168378,'110115','110100','010','110115','district','大兴区','116.341483','39.726917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168379,'110106','110100','010','110106','district','丰台区','116.286726','39.858538','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168380,'110107','110100','010','110107','district','石景山区','116.223015','39.906304','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168381,'110111','110100','010','110111','district','房山区','116.143426','39.748889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168382,'110117','110100','010','110117','district','平谷区','117.121589','40.140805','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168383,'110112','110100','010','110112','district','通州区','116.72923','39.916403','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168384,'540000','100000','','540000','province','西藏自治区','91.117449','29.648694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168385,'540300','540000','0895','540300','city','昌都市','97.170425','31.142879','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168386,'540324','540300','0895','540324','district','丁青县','95.619868','31.409024','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168387,'540321','540300','0895','540321','district','江达县','98.218336','31.499176','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168388,'540302','540300','0895','540302','district','卡若区','97.196021','31.112087','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168389,'540323','540300','0895','540323','district','类乌齐县','96.599386','31.211378','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168390,'540330','540300','0895','540330','district','边坝县','94.7078','30.933652','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168391,'540322','540300','0895','540322','district','贡觉县','98.27097','30.860099','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168392,'540325','540300','0895','540325','district','察雅县','97.568752','30.653943','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168393,'540326','540300','0895','540326','district','八宿县','96.917836','30.053209','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168394,'540329','540300','0895','540329','district','洛隆县','95.825169','30.741988','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168395,'540328','540300','0895','540328','district','芒康县','98.593493','29.679957','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168396,'540327','540300','0895','540327','district','左贡县','97.841176','29.671488','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168397,'540600','540000','0896','540600','city','那曲市','92.05151','31.477905','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168398,'540624','540600','0896','540624','district','安多县','91.68195','32.265016','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168399,'540623','540600','0896','540623','district','聂荣县','92.303377','32.10775','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168400,'540628','540600','0896','540628','district','巴青县','94.053438','31.91847','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168401,'540625','540600','0896','540625','district','申扎县','88.709936','30.93045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168402,'540627','540600','0896','540627','district','班戈县','90.009822','31.392157','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168403,'540622','540600','0896','540622','district','比如县','93.681302','31.477914','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168404,'540626','540600','0896','540626','district','索县','93.785068','31.888045','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168405,'540602','540600','0896','540602','district','色尼区','92.053498','31.469645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168406,'540621','540600','0896','540621','district','嘉黎县','93.232347','30.641543','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168407,'540629','540600','0896','540629','district','尼玛县','87.236772','31.784701','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168408,'540630','540600','0896','540630','district','双湖县','88.838017','33.188355','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168409,'540100','540000','0891','540100','city','拉萨市','91.171924','29.653491','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168410,'540122','540100','0891','540122','district','当雄县','91.101186','30.473134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168411,'540121','540100','0891','540121','district','林周县','91.265287','29.893545','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168412,'540103','540100','0891','540103','district','堆龙德庆区','91.002866','29.646815','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168413,'540104','540100','0891','540104','district','达孜区','91.349503','29.670173','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168414,'540127','540100','0891','540127','district','墨竹工卡县','91.739134','29.850344','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168415,'540123','540100','0891','540123','district','尼木县','90.16446','29.43202','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168416,'540102','540100','0891','540102','district','城关区','91.140368','29.654813','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168417,'540124','540100','0891','540124','district','曲水县','90.743355','29.354293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168418,'540200','540000','0892','540200','city','日喀则市','88.880423','29.266838','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168419,'540232','540200','0892','540232','district','仲巴县','84.03153','29.770279','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168420,'540226','540200','0892','540226','district','昂仁县','87.227739','29.299444','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168421,'540221','540200','0892','540221','district','南木林县','89.099243','29.682331','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168422,'540227','540200','0892','540227','district','谢通门县','88.255784','29.425455','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168423,'540236','540200','0892','540236','district','萨嘎县','85.232941','29.328818','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168424,'540225','540200','0892','540225','district','拉孜县','87.636934','29.08188','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168425,'540202','540200','0892','540202','district','桑珠孜区','88.898503','29.247726','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168426,'540224','540200','0892','540224','district','萨迦县','88.021674','28.899664','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168427,'540229','540200','0892','540229','district','仁布县','89.841983','29.230933','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168428,'540222','540200','0892','540222','district','江孜县','89.605654','28.91186','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168429,'540228','540200','0892','540228','district','白朗县','89.261977','29.107688','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168430,'540235','540200','0892','540235','district','聂拉木县','85.982237','28.155186','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168431,'540223','540200','0892','540223','district','定日县','87.12612','28.658743','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168432,'540237','540200','0892','540237','district','岗巴县','88.515318','28.271189','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168433,'540230','540200','0892','540230','district','康马县','89.681663','28.555627','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168434,'540233','540200','0892','540233','district','亚东县','88.907136','27.486094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168435,'540231','540200','0892','540231','district','定结县','87.765872','28.364159','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168436,'540234','540200','0892','540234','district','吉隆县','85.298109','28.856542','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168437,'540500','540000','0893','540500','city','山南市','91.771426','29.237722','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168438,'540523','540500','0893','540523','district','桑日县','92.017723','29.259439','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168439,'540528','540500','0893','540528','district','加查县','92.597518','29.138165','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168440,'540502','540500','0893','540502','district','乃东区','91.761538','29.224904','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168441,'540521','540500','0893','540521','district','扎囊县','91.33725','29.245113','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168442,'540522','540500','0893','540522','district','贡嘎县','90.978425','29.290169','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168443,'540531','540500','0893','540531','district','浪卡子县','90.400251','28.96693','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168444,'540525','540500','0893','540525','district','曲松县','92.203738','29.062826','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168445,'540524','540500','0893','540524','district','琼结县','91.684307','29.024492','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168446,'540530','540500','0893','540530','district','错那市','91.957155','27.991121','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168447,'540526','540500','0893','540526','district','措美县','91.433509','28.438202','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168448,'540527','540500','0893','540527','district','洛扎县','90.859971','28.385811','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168449,'540529','540500','0893','540529','district','隆子县','92.461774','28.40743','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168450,'540400','540000','0894','540400','city','林芝市','94.361436','29.64875','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168451,'540424','540400','0894','540424','district','波密县','95.768439','29.859751','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168452,'540421','540400','0894','540421','district','工布江达县','93.246077','29.88528','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168453,'540402','540400','0894','540402','district','巴宜区','94.361094','29.636576','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168454,'540423','540400','0894','540423','district','墨脱县','95.332108','29.325425','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168455,'540422','540400','0894','540422','district','米林市','94.213059','29.215971','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168456,'540426','540400','0894','540426','district','朗县','93.07254','29.046892','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168457,'540425','540400','0894','540425','district','察隅县','97.466919','28.66128','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168458,'542500','540000','0897','542500','city','阿里地区','80.105786','32.500987','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168459,'542526','542500','0897','542526','district','改则县','84.057135','32.297165','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168460,'542522','542500','0897','542522','district','札达县','79.807096','31.479882','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168461,'542527','542500','0897','542527','district','措勤县','85.152773','31.015862','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168462,'542521','542500','0897','542521','district','普兰县','81.177116','30.290467','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168463,'542524','542500','0897','542524','district','日土县','79.733552','33.382017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168464,'542523','542500','0897','542523','district','噶尔县','80.096591','32.492078','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168465,'542525','542500','0897','542525','district','革吉县','81.145433','32.387233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168466,'220000','100000','','220000','province','吉林省','125.325802','43.896942','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168467,'220200','220000','0432','220200','city','吉林市','126.549719','43.838132','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168468,'220283','220200','0432','220283','district','舒兰市','126.965515','44.405922','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168469,'220282','220200','0432','220282','district','桦甸市','126.746245','42.972272','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168470,'220281','220200','0432','220281','district','蛟河市','127.344773','43.72382','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168471,'220221','220200','0432','220221','district','永吉县','126.497899','43.672198','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168472,'220284','220200','0432','220284','district','磐石市','126.060328','42.946608','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168473,'220203','220200','0432','220203','district','龙潭区','126.562131','43.910743','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168474,'220211','220200','0432','220211','district','丰满区','126.561351','43.821192','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168475,'220204','220200','0432','220204','district','船营区','126.540909','43.833806','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168476,'220202','220200','0432','220202','district','昌邑区','126.574414','43.881896','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168477,'220100','220000','0431','220100','city','长春市','125.323643','43.816996','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168478,'220182','220100','0431','220182','district','榆树市','126.533126','44.840263','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168479,'220183','220100','0431','220183','district','德惠市','125.728552','44.521788','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168480,'220112','220100','0431','220112','district','双阳区','125.664583','43.525367','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168481,'220122','220100','0431','220122','district','农安县','125.184921','44.432829','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168482,'220184','220100','0431','220184','district','公主岭市','124.79379','43.495116','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168483,'220104','220100','0431','220104','district','朝阳区','125.288168','43.833845','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168484,'220106','220100','0431','220106','district','绿园区','125.256214','43.881047','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168485,'220105','220100','0431','220105','district','二道区','125.37419','43.865912','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168486,'220103','220100','0431','220103','district','宽城区','125.326614','43.943522','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168487,'220102','220100','0431','220102','district','南关区','125.350341','43.86382','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168488,'220113','220100','0431','220113','district','九台区','125.839549','44.151672','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168489,'220800','220000','0436','220800','city','白城市','122.838102','45.620131','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168490,'220881','220800','0436','220881','district','洮南市','122.79845','45.356849','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168491,'220882','220800','0436','220882','district','大安市','124.291032','45.507004','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168492,'220822','220800','0436','220822','district','通榆县','123.088093','44.812912','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168493,'220802','220800','0436','220802','district','洮北区','122.851105','45.621545','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168494,'220821','220800','0436','220821','district','镇赉县','123.19967','45.848195','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168495,'220700','220000','0438','220700','city','松原市','124.825321','45.14191','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168496,'220723','220700','0438','220723','district','乾安县','124.040651','45.003539','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168497,'220722','220700','0438','220722','district','长岭县','123.967244','44.276293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168498,'220721','220700','0438','220721','district','前郭尔罗斯蒙古族自治县','124.823417','45.118061','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168499,'220781','220700','0438','220781','district','扶余市','126.049534','44.989057','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168500,'220702','220700','0438','220702','district','宁江区','124.875965','45.209435','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168501,'222400','220000','1433','222400','city','延边朝鲜族自治州','129.470605','42.909426','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168502,'222404','222400','1433','222404','district','珲春市','130.365829','42.862551','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168503,'222402','222400','1433','222402','district','图们市','129.843807','42.968039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168504,'222406','222400','1433','222406','district','和龙市','129.010932','42.546434','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168505,'222424','222400','1433','222424','district','汪清县','129.785137','43.317215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168506,'222401','222400','1433','222401','district','延吉市','129.507655','42.891034','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168507,'222426','222400','1433','222426','district','安图县','128.899744','43.111978','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168508,'222403','222400','1433','222403','district','敦化市','128.232235','43.372669','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168509,'222405','222400','1433','222405','district','龙井市','129.426529','42.767172','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168510,'220300','220000','0434','220300','city','四平市','124.350599','43.166764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168511,'220303','220300','0434','220303','district','铁东区','124.409852','43.162664','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168512,'220382','220300','0434','220382','district','双辽市','123.502398','43.518301','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168513,'220302','220300','0434','220302','district','铁西区','124.345994','43.146288','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168514,'220322','220300','0434','220322','district','梨树县','124.335389','43.30706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168515,'220323','220300','0434','220323','district','伊通满族自治县','125.305393','43.345754','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168516,'220600','220000','0439','220600','city','白山市','126.414274','41.944132','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168517,'220622','220600','0439','220622','district','靖宇县','126.813262','42.388902','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168518,'220605','220600','0439','220605','district','江源区','126.591178','42.056747','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168519,'220621','220600','0439','220621','district','抚松县','127.449387','42.221038','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168520,'220623','220600','0439','220623','district','长白朝鲜族自治县','128.20066','41.420253','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168521,'220681','220600','0439','220681','district','临江市','126.918086','41.811979','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168522,'220602','220600','0439','220602','district','浑江区','126.416093','41.945409','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168523,'220400','220000','0437','220400','city','辽源市','125.144676','42.887961','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168524,'220403','220400','0437','220403','district','西安区','125.149488','42.927252','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168525,'220422','220400','0437','220422','district','东辽县','124.991045','42.925636','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168526,'220402','220400','0437','220402','district','龙山区','125.13703','42.902194','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168527,'220421','220400','0437','220421','district','东丰县','125.53096','42.677253','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168528,'220500','220000','0435','220500','city','通化市','125.939721','41.728312','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168529,'220503','220500','0435','220503','district','二道江区','126.042546','41.773989','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168530,'220502','220500','0435','220502','district','东昌区','125.927187','41.702872','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168531,'220521','220500','0435','220521','district','通化县','125.758927','41.680135','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168532,'220524','220500','0435','220524','district','柳河县','125.744654','42.284594','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168533,'220523','220500','0435','220523','district','辉南县','126.046006','42.684706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168534,'220581','220500','0435','220581','district','梅河口市','125.711129','42.539183','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168535,'220582','220500','0435','220582','district','集安市','126.193172','41.125805','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168536,'360000','100000','','360000','province','江西省','115.816587','28.637234','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168537,'360500','360000','0790','360500','city','新余市','114.916665','27.818553','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168538,'360502','360500','0790','360502','district','渝水区','114.944499','27.799526','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168539,'360521','360500','0790','360521','district','分宜县','114.69264','27.814723','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168540,'360100','360000','0791','360100','city','南昌市','115.857972','28.682976','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168541,'360104','360100','0791','360104','district','青云谱区','115.925709','28.62182','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168542,'360111','360100','0791','360111','district','青山湖区','115.962138','28.682867','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168543,'360124','360100','0791','360124','district','进贤县','116.242468','28.377627','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168544,'360113','360100','0791','360113','district','红谷滩区','115.858127','28.698188','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168545,'360112','360100','0791','360112','district','新建区','115.815244','28.693192','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168546,'360123','360100','0791','360123','district','安义县','115.549158','28.845585','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168547,'360102','360100','0791','360102','district','东湖区','115.903576','28.698787','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168548,'360103','360100','0791','360103','district','西湖区','115.876998','28.657005','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168549,'360121','360100','0791','360121','district','南昌县','115.93349','28.557921','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168550,'360800','360000','0796','360800','city','吉安市','114.96681','27.091243','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168551,'360825','360800','0796','360825','district','永丰县','115.421599','27.317301','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168552,'360822','360800','0796','360822','district','吉水县','115.135963','27.229697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168553,'360802','360800','0796','360802','district','吉州区','114.994991','27.144204','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168554,'360830','360800','0796','360830','district','永新县','114.242425','26.945157','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168555,'360828','360800','0796','360828','district','万安县','114.759746','26.456821','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168556,'360823','360800','0796','360823','district','峡江县','115.316567','27.5829','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168557,'360881','360800','0796','360881','district','井冈山市','114.289563','26.748132','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168558,'360824','360800','0796','360824','district','新干县','115.386853','27.740368','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168559,'360821','360800','0796','360821','district','吉安县','114.908337','27.039866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168560,'360803','360800','0796','360803','district','青原区','115.014836','27.082012','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168561,'360826','360800','0796','360826','district','泰和县','114.922987','26.801687','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168562,'360829','360800','0796','360829','district','安福县','114.619818','27.393286','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168563,'360827','360800','0796','360827','district','遂川县','114.520825','26.313413','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168564,'360700','360000','0797','360700','city','赣州市','114.933494','25.831139','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168565,'360730','360700','0797','360730','district','宁都县','116.009171','26.470865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168566,'360735','360700','0797','360735','district','石城县','116.347611','26.31491','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168567,'360731','360700','0797','360731','district','于都县','115.415145','25.952564','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168568,'360781','360700','0797','360781','district','瑞金市','116.027114','25.88623','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168569,'360725','360700','0797','360725','district','崇义县','114.308135','25.682278','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168570,'360734','360700','0797','360734','district','寻乌县','115.638534','24.969513','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168571,'360729','360700','0797','360729','district','全南县','114.530148','24.742353','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168572,'360783','360700','0797','360783','district','龙南市','114.804474','24.901216','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168573,'360733','360700','0797','360733','district','会昌县','115.809271','25.58734','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168574,'360722','360700','0797','360722','district','信丰县','114.922485','25.38676','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168575,'360724','360700','0797','360724','district','上犹县','114.55177','25.784754','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168576,'360723','360700','0797','360723','district','大余县','114.362306','25.401968','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168577,'360703','360700','0797','360703','district','南康区','114.765044','25.661369','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168578,'360732','360700','0797','360732','district','兴国县','115.363475','26.338129','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168579,'360704','360700','0797','360704','district','赣县区','115.021196','25.854496','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168580,'360702','360700','0797','360702','district','章贡区','114.920426','25.818247','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168581,'360728','360700','0797','360728','district','定南县','115.027908','24.783372','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168582,'360726','360700','0797','360726','district','安远县','115.393992','25.136855','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168583,'361000','360000','0794','361000','city','抚州市','116.358054','27.948979','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168584,'361028','361000','0794','361028','district','资溪县','117.060332','27.706088','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168585,'361021','361000','0794','361021','district','南城县','116.637228','27.570031','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168586,'361025','361000','0794','361025','district','乐安县','115.83099','27.428682','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168587,'361030','361000','0794','361030','district','广昌县','116.336556','26.843974','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168588,'361027','361000','0794','361027','district','金溪县','116.755018','27.91973','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168589,'361023','361000','0794','361023','district','南丰县','116.525898','27.21845','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168590,'361022','361000','0794','361022','district','黎川县','116.907446','27.282729','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168591,'361003','361000','0794','361003','district','东乡区','116.603159','28.249059','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168592,'361002','361000','0794','361002','district','临川区','116.311932','27.935098','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168593,'361026','361000','0794','361026','district','宜黄县','116.236174','27.554744','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168594,'361024','361000','0794','361024','district','崇仁县','116.076363','27.754416','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168595,'360200','360000','0798','360200','city','景德镇市','117.184892','29.2744','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168596,'360202','360200','0798','360202','district','昌江区','117.182648','29.273683','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168597,'360281','360200','0798','360281','district','乐平市','117.151499','28.978521','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168598,'360203','360200','0798','360203','district','珠山区','117.271365','29.305191','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168599,'360222','360200','0798','360222','district','浮梁县','117.214984','29.352493','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168600,'360600','360000','0701','360600','city','鹰潭市','117.039532','28.272092','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168601,'360602','360600','0701','360602','district','月湖区','117.10247','28.266999','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168602,'360681','360600','0701','360681','district','贵溪市','117.245178','28.292397','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168603,'360603','360600','0701','360603','district','余江区','116.854576','28.199657','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168604,'361100','360000','0793','361100','city','上饶市','117.943064','28.45513','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168605,'361130','361100','0793','361130','district','婺源县','117.861532','29.248491','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168606,'361125','361100','0793','361125','district','横峰县','117.596433','28.407116','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168607,'361123','361100','0793','361123','district','玉山县','118.244736','28.681936','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168608,'361181','361100','0793','361181','district','德兴市','117.594549','28.930557','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168609,'361124','361100','0793','361124','district','铅山县','117.734742','28.298415','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168610,'361103','361100','0793','361103','district','广丰区','118.189729','28.463697','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168611,'361127','361100','0793','361127','district','余干县','116.695787','28.70283','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168612,'361102','361100','0793','361102','district','信州区','117.965997','28.430694','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168613,'361104','361100','0793','361104','district','广信区','117.907454','28.448893','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168614,'361126','361100','0793','361126','district','弋阳县','117.449346','28.378039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168615,'361128','361100','0793','361128','district','鄱阳县','116.703731','29.005675','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168616,'361129','361100','0793','361129','district','万年县','117.058445','28.694582','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168617,'360400','360000','0792','360400','city','九江市','115.95356','29.66116','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168618,'360404','360400','0792','360404','district','柴桑区','115.911005','29.608775','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168619,'360402','360400','0792','360402','district','濂溪区','115.992735','29.668008','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168620,'360483','360400','0792','360483','district','庐山市','116.045118','29.448225','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168621,'360426','360400','0792','360426','district','德安县','115.767114','29.298599','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168622,'360403','360400','0792','360403','district','浔阳区','116.001677','29.70547','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168623,'360429','360400','0792','360429','district','湖口县','116.252206','29.731194','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168624,'360430','360400','0792','360430','district','彭泽县','116.563858','29.877404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168625,'360482','360400','0792','360482','district','共青城市','115.784269','29.235082','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168626,'360425','360400','0792','360425','district','永修县','115.83207','29.011392','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168627,'360481','360400','0792','360481','district','瑞昌市','115.681221','29.676026','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168628,'360424','360400','0792','360424','district','修水县','114.546536','29.026166','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168629,'360428','360400','0792','360428','district','都昌县','116.203999','29.273803','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168630,'360423','360400','0792','360423','district','武宁县','115.092649','29.246785','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168631,'360900','360000','0795','360900','city','宜春市','114.416826','27.816245','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168632,'360926','360900','0795','360926','district','铜鼓县','114.354623','28.513291','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168633,'360922','360900','0795','360922','district','万载县','114.445477','28.106201','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168634,'360902','360900','0795','360902','district','袁州区','114.42794','27.796344','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168635,'360983','360900','0795','360983','district','高安市','115.366863','28.448054','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168636,'360982','360900','0795','360982','district','樟树市','115.546174','28.054632','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168637,'360924','360900','0795','360924','district','宜丰县','114.803036','28.394466','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168638,'360923','360900','0795','360923','district','上高县','114.948045','28.238591','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168639,'360921','360900','0795','360921','district','奉新县','115.400624','28.688254','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168640,'360925','360900','0795','360925','district','靖安县','115.362635','28.861296','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168641,'360981','360900','0795','360981','district','丰城市','115.771131','28.160053','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168642,'360300','360000','0799','360300','city','萍乡市','113.887147','27.658721','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168643,'360302','360300','0799','360302','district','安源区','113.87072','27.615','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168644,'360321','360300','0799','360321','district','莲花县','113.961589','27.128498','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168645,'360323','360300','0799','360323','district','芦溪县','114.029351','27.631273','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168646,'360313','360300','0799','360313','district','湘东区','113.733047','27.640075','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168647,'360322','360300','0799','360322','district','上栗县','113.795294','27.880221','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168648,'140000','100000','','140000','province','山西省','112.578781','37.813948','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168649,'140300','140000','0353','140300','city','阳泉市','113.580426','37.857094','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168650,'140321','140300','0353','140321','district','平定县','113.629777','37.804986','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168651,'140322','140300','0353','140322','district','盂县','113.412279','38.086041','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168652,'140311','140300','0353','140311','district','郊区','113.593998','37.943703','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168653,'140303','140300','0353','140303','district','矿区','113.555279','37.868494','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168654,'140302','140300','0353','140302','district','城区','113.600694','37.847457','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168655,'140600','140000','0349','140600','city','朔州市','112.432906','39.331734','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168656,'140623','140600','0349','140623','district','右玉县','112.466926','39.989198','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168657,'140681','140600','0349','140681','district','怀仁市','113.133061','39.820522','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168658,'140602','140600','0349','140602','district','朔城区','112.432071','39.320196','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168659,'140603','140600','0349','140603','district','平鲁区','112.28827','39.512219','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168660,'140622','140600','0349','140622','district','应县','113.190952','39.554471','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168661,'140621','140600','0349','140621','district','山阴县','112.816421','39.527445','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168662,'140900','140000','0350','140900','city','忻州市','112.734149','38.415958','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168663,'140928','140900','0350','140928','district','五寨县','111.846808','38.91111','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168664,'140921','140900','0350','140921','district','定襄县','112.957234','38.471725','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168665,'140925','140900','0350','140925','district','宁武县','112.304734','39.001498','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168666,'140929','140900','0350','140929','district','岢岚县','111.572964','38.703989','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168667,'140926','140900','0350','140926','district','静乐县','111.939498','38.359306','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168668,'140922','140900','0350','140922','district','五台县','113.255419','38.728056','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168669,'140902','140900','0350','140902','district','忻府区','112.746357','38.403498','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168670,'140924','140900','0350','140924','district','繁峙县','113.265464','39.188835','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168671,'140927','140900','0350','140927','district','神池县','112.210997','39.091079','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168672,'140931','140900','0350','140931','district','保德县','111.085944','39.022616','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168673,'140930','140900','0350','140930','district','河曲县','111.138247','39.38452','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168674,'140981','140900','0350','140981','district','原平市','112.711025','38.731412','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168675,'140923','140900','0350','140923','district','代县','112.960102','39.066831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168676,'140932','140900','0350','140932','district','偏关县','111.508922','39.436917','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168677,'140200','140000','0352','140200','city','大同市','113.366749','40.09711','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168678,'140223','140200','0352','140223','district','广灵县','114.282703','39.760404','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168679,'140225','140200','0352','140225','district','浑源县','113.69183','39.706485','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168680,'140215','140200','0352','140215','district','云州区','113.612496','40.040156','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168681,'140226','140200','0352','140226','district','左云县','112.703008','40.013442','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168682,'140224','140200','0352','140224','district','灵丘县','114.234452','39.442459','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168683,'140214','140200','0352','140214','district','云冈区','113.150035','40.005844','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168684,'140213','140200','0352','140213','district','平城区','113.300179','40.076991','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168685,'140212','140200','0352','140212','district','新荣区','113.139628','40.256355','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168686,'140221','140200','0352','140221','district','阳高县','113.748944','40.361059','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168687,'140222','140200','0352','140222','district','天镇县','114.090871','40.42087','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168688,'141100','140000','0358','141100','city','吕梁市','111.14454','37.518996','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168689,'141127','141100','0358','141127','district','岚县','111.672156','38.279587','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168690,'141128','141100','0358','141128','district','方山县','111.244309','37.895017','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168691,'141130','141100','0358','141130','district','交口县','111.181241','36.982205','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168692,'141129','141100','0358','141129','district','中阳县','111.178841','37.357816','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168693,'141123','141100','0358','141123','district','兴县','111.127486','38.461818','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168694,'141126','141100','0358','141126','district','石楼县','110.834712','36.998461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168695,'141125','141100','0358','141125','district','柳林县','110.888993','37.429816','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168696,'141124','141100','0358','141124','district','临县','110.992712','37.951008','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168697,'141102','141100','0358','141102','district','离石区','111.150325','37.517797','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168698,'141182','141100','0358','141182','district','汾阳市','111.770834','37.261493','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168699,'141181','141100','0358','141181','district','孝义市','111.778935','37.146051','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168700,'141121','141100','0358','141121','district','文水县','112.028866','37.438101','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168701,'141122','141100','0358','141122','district','交城县','112.155857','37.55169','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168702,'140100','140000','0351','140100','city','太原市','112.549656','37.870451','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168703,'140123','140100','0351','140123','district','娄烦县','111.79715','38.067569','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168704,'140122','140100','0351','140122','district','阳曲县','112.67292','38.058511','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168705,'140181','140100','0351','140181','district','古交市','112.175034','37.907414','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168706,'140110','140100','0351','140110','district','晋源区','112.477869','37.715519','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168707,'140121','140100','0351','140121','district','清徐县','112.359367','37.608751','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168708,'140109','140100','0351','140109','district','万柏林区','112.515638','37.859738','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168709,'140107','140100','0351','140107','district','杏花岭区','112.570412','37.894241','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168710,'140108','140100','0351','140108','district','尖草坪区','112.486141','37.940052','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168711,'140105','140100','0351','140105','district','小店区','112.565524','37.736865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168712,'140106','140100','0351','140106','district','迎泽区','112.563373','37.863308','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168713,'141000','140000','0357','141000','city','临汾市','111.51931','36.088581','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168714,'141031','141000','0357','141031','district','隰县','110.940752','36.693345','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168715,'141030','141000','0357','141030','district','大宁县','110.752914','36.465126','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168716,'141028','141000','0357','141028','district','吉县','110.680513','36.096833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168717,'141025','141000','0357','141025','district','古县','111.92031','36.266767','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168718,'141032','141000','0357','141032','district','永和县','110.631981','36.759524','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168719,'141033','141000','0357','141033','district','蒲县','111.096457','36.41183','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168720,'141027','141000','0357','141027','district','浮山县','111.848883','35.968124','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168721,'141022','141000','0357','141022','district','翼城县','111.719048','35.739706','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168722,'141024','141000','0357','141024','district','洪洞县','111.67571','36.254087','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168723,'141029','141000','0357','141029','district','乡宁县','110.846585','35.970834','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168724,'141002','141000','0357','141002','district','尧都区','111.578797','36.082463','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168725,'141023','141000','0357','141023','district','襄汾县','111.441725','35.876293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168726,'141026','141000','0357','141026','district','安泽县','112.250242','36.147921','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168727,'141021','141000','0357','141021','district','曲沃县','111.475783','35.641883','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168728,'141081','141000','0357','141081','district','侯马市','111.372002','35.619105','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168729,'141082','141000','0357','141082','district','霍州市','111.755111','36.569046','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168730,'141034','141000','0357','141034','district','汾西县','111.563993','36.652833','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168731,'140800','140000','0359','140800','city','运城市','111.007051','35.02667','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168732,'140802','140800','0359','140802','district','盐湖区','110.998135','35.015549','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168733,'140822','140800','0359','140822','district','万荣县','110.837957','35.415805','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168734,'140823','140800','0359','140823','district','闻喜县','111.224485','35.356664','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168735,'140828','140800','0359','140828','district','夏县','111.219946','35.140733','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168736,'140821','140800','0359','140821','district','临猗县','110.774553','35.144406','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168737,'140827','140800','0359','140827','district','垣曲县','111.670215','35.298297','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168738,'140824','140800','0359','140824','district','稷山县','110.983273','35.604515','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168739,'140881','140800','0359','140881','district','永济市','110.447771','34.866499','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168740,'140826','140800','0359','140826','district','绛县','111.568849','35.491764','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168741,'140825','140800','0359','140825','district','新绛县','111.224767','35.616007','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168742,'140882','140800','0359','140882','district','河津市','110.712032','35.596357','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168743,'140829','140800','0359','140829','district','平陆县','111.193957','34.829595','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168744,'140830','140800','0359','140830','district','芮城县','110.694418','34.694173','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168745,'140400','140000','0355','140400','city','长治市','113.117394','36.195142','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168746,'140428','140400','0355','140428','district','长子县','112.877922','36.122258','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168747,'140427','140400','0355','140427','district','壶关县','113.206836','36.115645','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168748,'140403','140400','0355','140403','district','潞州区','113.122725','36.203305','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168749,'140404','140400','0355','140404','district','上党区','113.051416','36.053104','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168750,'140429','140400','0355','140429','district','武乡县','112.86396','36.837865','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168751,'140430','140400','0355','140430','district','沁县','112.699176','36.756152','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168752,'140423','140400','0355','140423','district','襄垣县','113.051298','36.535629','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168753,'140405','140400','0355','140405','district','屯留区','112.892301','36.3162','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168754,'140426','140400','0355','140426','district','黎城县','113.387025','36.502258','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168755,'140406','140400','0355','140406','district','潞城区','113.228897','36.334597','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168756,'140431','140400','0355','140431','district','沁源县','112.337726','36.499989','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168757,'140425','140400','0355','140425','district','平顺县','113.435859','36.20037','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168758,'140500','140000','0356','140500','city','晋城市','112.852022','35.491315','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168759,'140525','140500','0356','140525','district','泽州县','112.922243','35.507061','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168760,'140581','140500','0356','140581','district','高平市','112.923798','35.798775','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168761,'140524','140500','0356','140524','district','陵川县','113.280755','35.775239','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168762,'140522','140500','0356','140522','district','阳城县','112.414798','35.486275','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168763,'140521','140500','0356','140521','district','沁水县','112.186726','35.690119','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168764,'140502','140500','0356','140502','district','城区','112.853452','35.50248','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168765,'140700','140000','0354','140700','city','晋中市','112.752633','37.688006','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168766,'140725','140700','0354','140725','district','寿阳县','113.176373','37.895191','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168767,'140721','140700','0354','140721','district','榆社县','112.975378','37.071209','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168768,'140722','140700','0354','140722','district','左权县','113.379412','37.082746','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168769,'140723','140700','0354','140723','district','和顺县','113.570295','37.329696','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168770,'140703','140700','0354','140703','district','太谷区','112.551297','37.421392','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168771,'140729','140700','0354','140729','district','灵石县','111.778692','36.848085','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168772,'140727','140700','0354','140727','district','祁县','112.335226','37.358425','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168773,'140702','140700','0354','140702','district','榆次区','112.707564','37.698637','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168774,'140781','140700','0354','140781','district','介休市','111.916451','37.027538','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168775,'140728','140700','0354','140728','district','平遥县','112.175825','37.189614','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168776,'140724','140700','0354','140724','district','昔阳县','113.707151','37.612577','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168777,'530000','100000','','530000','province','云南省','102.709372','25.046432','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168778,'530600','530000','0870','530600','city','昭通市','103.717078','27.338185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168779,'530626','530600','0870','530626','district','绥江县','103.968995','28.592119','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168780,'530681','530600','0870','530681','district','水富市','104.415964','28.629951','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168781,'530625','530600','0870','530625','district','永善县','103.63756','28.229018','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168782,'530629','530600','0870','530629','district','威信县','105.049012','27.846839','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168783,'530622','530600','0870','530622','district','巧家县','102.935343','26.896904','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168784,'530628','530600','0870','530628','district','彝良县','104.055991','27.624277','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168785,'530623','530600','0870','530623','district','盐津县','104.234458','28.108475','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168786,'530621','530600','0870','530621','district','鲁甸县','103.557969','27.186668','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168787,'530627','530600','0870','530627','district','镇雄县','104.873486','27.441527','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168788,'530602','530600','0870','530602','district','昭阳区','103.706323','27.320035','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168789,'530624','530600','0870','530624','district','大关县','103.891164','27.748054','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168790,'530300','530000','0874','530300','city','曲靖市','103.796288','25.490866','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168791,'530326','530300','0874','530326','district','会泽县','103.297155','26.417116','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168792,'530304','530300','0874','530304','district','马龙区','103.578459','25.428102','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168793,'530323','530300','0874','530323','district','师宗县','103.985224','24.822471','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168794,'530322','530300','0874','530322','district','陆良县','103.66671','25.0293','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168795,'530302','530300','0874','530302','district','麒麟区','103.804406','25.496472','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168796,'530381','530300','0874','530381','district','宣威市','104.104255','26.218956','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168797,'530303','530300','0874','530303','district','沾益区','103.822104','25.600424','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168798,'530325','530300','0874','530325','district','富源县','104.255082','25.674217','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168799,'530324','530300','0874','530324','district','罗平县','104.297124','24.865388','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168800,'532500','530000','0873','532500','city','红河哈尼族彝族自治州','103.374873','23.363129','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168801,'532504','532500','0873','532504','district','弥勒市','103.414817','24.411774','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168802,'532524','532500','0873','532524','district','建水县','102.826178','23.635824','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168803,'532502','532500','0873','532502','district','开远市','103.266908','23.714518','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168804,'532529','532500','0873','532529','district','红河县','102.420566','23.368946','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168805,'532523','532500','0873','532523','district','屏边苗族自治县','103.675458','22.986733','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168806,'532531','532500','0873','532531','district','绿春县','102.392655','22.993654','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168807,'532501','532500','0873','532501','district','个旧市','103.152663','23.389935','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168808,'532532','532500','0873','532532','district','河口瑶族自治县','103.939265','22.529438','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168809,'532525','532500','0873','532525','district','石屏县','102.496138','23.705707','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168810,'532503','532500','0873','532503','district','蒙自市','103.364936','23.396111','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168811,'532527','532500','0873','532527','district','泸西县','103.76615','24.531981','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168812,'532528','532500','0873','532528','district','元阳县','102.835358','23.219671','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168813,'532530','532500','0873','532530','district','金平苗族瑶族傣族自治县','103.227982','22.769894','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168814,'533300','530000','0886','533300','city','怒江傈僳族自治州','98.8566','25.817555','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168815,'533324','533300','0886','533324','district','贡山独龙族怒族自治县','98.666279','27.740839','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168816,'533323','533300','0886','533323','district','福贡县','98.869132','26.901831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168817,'533325','533300','0886','533325','district','兰坪白族普米族自治县','99.416628','26.453622','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168818,'533301','533300','0886','533301','district','泸水市','98.857723','25.822579','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168819,'530400','530000','0877','530400','city','玉溪市','102.526673','24.346786','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168820,'530425','530400','0877','530425','district','易门县','102.161947','24.672156','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168821,'530402','530400','0877','530402','district','红塔区','102.540122','24.341215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168822,'530403','530400','0877','530403','district','江川区','102.748499','24.299441','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168823,'530424','530400','0877','530424','district','华宁县','102.928914','24.19322','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168824,'530426','530400','0877','530426','district','峨山彝族自治县','102.405698','24.168899','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168825,'530423','530400','0877','530423','district','通海县','102.725538','24.11114','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168826,'530481','530400','0877','530481','district','澄江市','102.904181','24.675536','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168827,'530428','530400','0877','530428','district','元江哈尼族彝族傣族自治县','101.998138','23.596068','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168828,'530427','530400','0877','530427','district','新平彝族傣族自治县','101.990805','24.070436','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168829,'532900','530000','0872','532900','city','大理白族自治州','100.267608','25.606548','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168830,'532930','532900','0872','532930','district','洱源县','99.962294','26.11337','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168831,'532931','532900','0872','532931','district','剑川县','99.905041','26.536889','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168832,'532929','532900','0872','532929','district','云龙县','99.371021','25.885733','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168833,'532901','532900','0872','532901','district','大理市','100.301614','25.678466','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168834,'532922','532900','0872','532922','district','漾濞彝族自治县','99.958089','25.669944','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168835,'532928','532900','0872','532928','district','永平县','99.54063','25.464134','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168836,'532927','532900','0872','532927','district','巍山彝族回族自治县','100.306977','25.227065','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168837,'532923','532900','0872','532923','district','祥云县','100.549961','25.483727','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168838,'532926','532900','0872','532926','district','南涧彝族自治县','100.510333','25.032353','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168839,'532925','532900','0872','532925','district','弥渡县','100.491038','25.343778','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168840,'532924','532900','0872','532924','district','宾川县','100.590274','25.830491','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168841,'532932','532900','0872','532932','district','鹤庆县','100.176331','26.560122','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168842,'533400','530000','0887','533400','city','迪庆藏族自治州','99.70211','27.819149','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168843,'533422','533400','0887','533422','district','德钦县','98.917851','28.464213','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168844,'533401','533400','0887','533401','district','香格里拉市','99.743582','27.842185','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168845,'533423','533400','0887','533423','district','维西傈僳族自治县','99.300937','27.163808','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168846,'530900','530000','0883','530900','city','临沧市','100.088837','23.884175','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168847,'530921','530900','0883','530921','district','凤庆县','99.92873','24.580559','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168848,'530922','530900','0883','530922','district','云县','100.1303','24.444461','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168849,'530902','530900','0883','530902','district','临翔区','100.082073','23.895298','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168850,'530925','530900','0883','530925','district','双江拉祜族佤族布朗族傣族自治县','99.828225','23.472719','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168851,'530927','530900','0883','530927','district','沧源佤族自治县','99.245894','23.146758','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168852,'530924','530900','0883','530924','district','镇康县','98.825389','23.762886','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168853,'530926','530900','0883','530926','district','耿马傣族佤族自治县','99.397126','23.538092','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168854,'530923','530900','0883','530923','district','永德县','99.258702','24.018463','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168855,'530500','530000','0875','530500','city','保山市','99.161489','25.112018','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168856,'530581','530500','0875','530581','district','腾冲市','98.490276','25.020283','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168857,'530502','530500','0875','530502','district','隆阳区','99.165638','25.121137','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168858,'530523','530500','0875','530523','district','龙陵县','98.68941','24.586703','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168859,'530521','530500','0875','530521','district','施甸县','99.18919','24.723084','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168860,'530524','530500','0875','530524','district','昌宁县','99.605105','24.827739','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168861,'530700','530000','0888','530700','city','丽江市','100.225936','26.855165','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168862,'530724','530700','0888','530724','district','宁蒗彝族自治县','100.851083','27.282207','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168863,'530722','530700','0888','530722','district','永胜县','100.750907','26.684215','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168864,'530702','530700','0888','530702','district','古城区','100.22583','26.876468','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168865,'530721','530700','0888','530721','district','玉龙纳西族自治县','100.236967','26.821494','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168866,'530723','530700','0888','530723','district','华坪县','101.265373','26.629598','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168867,'532800','530000','0691','532800','city','西双版纳傣族自治州','100.797002','22.009037','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168868,'532822','532800','0691','532822','district','勐海县','100.452444','21.957323','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168869,'532823','532800','0691','532823','district','勐腊县','101.564635','21.459233','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168870,'532801','532800','0691','532801','district','景洪市','100.799595','22.011792','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168871,'532600','530000','0876','532600','city','文山壮族苗族自治州','104.21567','23.400983','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168872,'532626','532600','0876','532626','district','丘北县','104.166713','24.05064','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168873,'532627','532600','0876','532627','district','广南县','105.055075','24.046378','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168874,'532622','532600','0876','532622','district','砚山县','104.336905','23.605075','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168875,'532601','532600','0876','532601','district','文山市','104.233237','23.38683','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168876,'532623','532600','0876','532623','district','西畴县','104.671802','23.437707','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168877,'532624','532600','0876','532624','district','麻栗坡县','104.702732','23.125837','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168878,'532625','532600','0876','532625','district','马关县','104.394524','23.013108','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168879,'532628','532600','0876','532628','district','富宁县','105.630921','23.625072','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168880,'532300','530000','0878','532300','city','楚雄彝族自治州','101.528304','25.045678','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168881,'532326','532300','0878','532326','district','大姚县','101.336576','25.729551','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168882,'532328','532300','0878','532328','district','元谋县','101.87434','25.704499','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168883,'532323','532300','0878','532323','district','牟定县','101.546898','25.312939','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168884,'532325','532300','0878','532325','district','姚安县','101.241632','25.504287','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168885,'532301','532300','0878','532301','district','楚雄市','101.546242','25.032945','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168886,'532302','532300','0878','532302','district','禄丰市','102.079082','25.151061','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168887,'532324','532300','0878','532324','district','南华县','101.283236','25.200163','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168888,'532327','532300','0878','532327','district','永仁县','101.666795','26.049522','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168889,'532322','532300','0878','532322','district','双柏县','101.642369','24.688814','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168890,'532329','532300','0878','532329','district','武定县','102.403949','25.530731','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168891,'530100','530000','0871','530100','city','昆明市','102.833669','24.88149','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168892,'530113','530100','0871','530113','district','东川区','103.187825','26.082997','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168893,'530129','530100','0871','530129','district','寻甸回族彝族自治县','103.256559','25.558163','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168894,'530102','530100','0871','530102','district','五华区','102.707262','25.043635','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168895,'530115','530100','0871','530115','district','晋宁区','102.595325','24.669077','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168896,'530124','530100','0871','530124','district','富民县','102.497722','25.221924','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168897,'530181','530100','0871','530181','district','安宁市','102.47865','24.919831','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168898,'530112','530100','0871','530112','district','西山区','102.664426','25.038039','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168899,'530103','530100','0871','530103','district','盘龙区','102.751643','25.116512','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168900,'530126','530100','0871','530126','district','石林彝族自治县','103.290536','24.771761','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168901,'530128','530100','0871','530128','district','禄劝彝族苗族自治县','102.471993','25.551768','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168902,'530114','530100','0871','530114','district','呈贡区','102.822104','24.885738','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168903,'530111','530100','0871','530111','district','官渡区','102.748888','24.950285','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168904,'530125','530100','0871','530125','district','宜良县','103.141674','24.91983','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168905,'530127','530100','0871','530127','district','嵩明县','103.043384','25.327273','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168906,'530800','530000','0879','530800','city','普洱市','100.966011','22.825229','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168907,'530825','530800','0879','530825','district','镇沅彝族哈尼族拉祜族自治县','101.108733','24.00445','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168908,'530822','530800','0879','530822','district','墨江哈尼族自治县','101.692461','23.431894','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168909,'530824','530800','0879','530824','district','景谷傣族彝族自治县','100.702807','23.496987','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168910,'530828','530800','0879','530828','district','澜沧拉祜族自治县','99.932045','22.555799','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168911,'530829','530800','0879','530829','district','西盟佤族自治县','99.59016','22.644237','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168912,'530826','530800','0879','530826','district','江城哈尼族彝族自治县','101.862344','22.585858','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168913,'530823','530800','0879','530823','district','景东彝族自治县','100.833877','24.446731','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168914,'530802','530800','0879','530802','district','思茅区','100.977069','22.786769','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168915,'530821','530800','0879','530821','district','宁洱哈尼族彝族自治县','101.045743','23.048809','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168916,'530827','530800','0879','530827','district','孟连傣族拉祜族佤族自治县','99.584225','22.329053','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168917,'533100','530000','0692','533100','city','德宏傣族景颇族自治州','98.585621','24.433146','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168918,'533122','533100','0692','533122','district','梁河县','98.296584','24.804275','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168919,'533102','533100','0692','533102','district','瑞丽市','97.855423','24.018377','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168920,'533103','533100','0692','533103','district','芒市','98.58809','24.433766','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168921,'533124','533100','0692','533124','district','陇川县','97.793359','24.182347','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'),(168922,'533123','533100','0692','533123','district','盈江县','97.943474','24.691325','gaodemap','2024-09-10 02:00:01','2024-09-10 02:00:01'); +INSERT INTO `sys_area_config` VALUES (168923,'100000',NULL,'','100000','country','中华人民共和国','116.3683244','39.915085','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168924,'410000','100000','','410000','province','河南省','113.753094','34.767052','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168925,'410300','410000','0379','410300','city','洛阳市','112.453895','34.619702','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168926,'410323','410300','0379','410323','district','新安县','112.13246','34.728909','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168927,'410327','410300','0379','410327','district','宜阳县','112.179187','34.51462','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168928,'410328','410300','0379','410328','district','洛宁县','111.652958','34.389371','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168929,'410324','410300','0379','410324','district','栾川县','111.615729','33.7857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168930,'410329','410300','0379','410329','district','伊川县','112.425751','34.421741','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168931,'410325','410300','0379','410325','district','嵩县','112.085432','34.134639','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168932,'410302','410300','0379','410302','district','老城区','112.469071','34.683645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168933,'410303','410300','0379','410303','district','西工区','112.428183','34.659959','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168934,'410307','410300','0379','410307','district','偃师区','112.789375','34.72715','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168935,'410304','410300','0379','410304','district','瀍河回族区','112.500131','34.679773','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168936,'410326','410300','0379','410326','district','汝阳县','112.473013','34.154283','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168937,'410308','410300','0379','410308','district','孟津区','112.44525','34.825587','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168938,'410311','410300','0379','410311','district','洛龙区','112.463833','34.619711','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168939,'410305','410300','0379','410305','district','涧西区','112.395766','34.658177','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168940,'411200','410000','0398','411200','city','三门峡市','111.200482','34.773196','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168941,'411202','411200','0398','411202','district','湖滨区','111.188552','34.771296','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168942,'411221','411200','0398','411221','district','渑池县','111.761753','34.767937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168943,'411281','411200','0398','411281','district','义马市','111.874726','34.747563','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168944,'411203','411200','0398','411203','district','陕州区','111.103252','34.72066','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168945,'411224','411200','0398','411224','district','卢氏县','111.04522','34.051866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168946,'411282','411200','0398','411282','district','灵宝市','110.894225','34.517734','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168947,'411100','410000','0395','411100','city','漯河市','114.0166','33.58038','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168948,'411122','411100','0395','411122','district','临颍县','113.931121','33.828096','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168949,'411102','411100','0395','411102','district','源汇区','113.984164','33.572319','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168950,'411103','411100','0395','411103','district','郾城区','114.006596','33.587697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168951,'411121','411100','0395','411121','district','舞阳县','113.609327','33.438259','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168952,'411104','411100','0395','411104','district','召陵区','114.093879','33.586509','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168953,'411000','410000','0374','411000','city','许昌市','113.852004','34.03732','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168954,'411003','411000','0374','411003','district','建安区','113.822869','34.124729','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168955,'411002','411000','0374','411002','district','魏都区','113.830826','34.047189','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168956,'411024','411000','0374','411024','district','鄢陵县','114.177329','34.102985','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168957,'411081','411000','0374','411081','district','禹州市','113.488715','34.142442','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168958,'411082','411000','0374','411082','district','长葛市','113.813972','34.195458','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168959,'411025','411000','0374','411025','district','襄城县','113.506904','33.851609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168960,'411300','410000','0377','411300','city','南阳市','112.584753','33.016102','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168961,'411303','411300','0377','411303','district','卧龙区','112.528524','32.990313','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168962,'411321','411300','0377','411321','district','南召县','112.429277','33.489804','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168963,'411328','411300','0377','411328','district','唐河县','112.80829','32.682464','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168964,'411323','411300','0377','411323','district','西峡县','111.473644','33.307272','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168965,'411324','411300','0377','411324','district','镇平县','112.234571','33.033826','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168966,'411326','411300','0377','411326','district','淅川县','111.490902','33.137831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168967,'411329','411300','0377','411329','district','新野县','112.3601','32.521282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168968,'411381','411300','0377','411381','district','邓州市','112.08745','32.687732','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168969,'411325','411300','0377','411325','district','内乡县','111.849354','33.044698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168970,'411330','411300','0377','411330','district','桐柏县','113.428702','32.379164','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168971,'411327','411300','0377','411327','district','社旗县','112.948183','33.056229','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168972,'411302','411300','0377','411302','district','宛城区','112.539506','33.003564','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168973,'411322','411300','0377','411322','district','方城县','113.012849','33.255387','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168974,'411500','410000','0376','411500','city','信阳市','114.091058','32.148624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168975,'411502','411500','0376','411502','district','浉河区','114.05867','32.116885','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168976,'411525','411500','0376','411525','district','固始县','115.654066','32.169239','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168977,'411527','411500','0376','411527','district','淮滨县','115.420101','32.474772','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168978,'411524','411500','0376','411524','district','商城县','115.406894','31.79832','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168979,'411523','411500','0376','411523','district','新县','114.879309','31.643914','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168980,'411521','411500','0376','411521','district','罗山县','114.512838','32.20436','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168981,'411528','411500','0376','411528','district','息县','114.740392','32.34312','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168982,'411526','411500','0376','411526','district','潢川县','115.051683','32.131426','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168983,'411522','411500','0376','411522','district','光山县','114.91934','32.010736','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168984,'411503','411500','0376','411503','district','平桥区','114.125595','32.101005','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168985,'410900','410000','0393','410900','city','濮阳市','115.029246','35.762731','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168986,'410927','410900','0393','410927','district','台前县','115.871671','35.970286','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168987,'410922','410900','0393','410922','district','清丰县','115.104602','35.886694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168988,'410926','410900','0393','410926','district','范县','115.504081','35.85302','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168989,'410923','410900','0393','410923','district','南乐县','115.205876','36.070219','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168990,'410902','410900','0393','410902','district','华龙区','115.074453','35.778289','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168991,'410928','410900','0393','410928','district','濮阳县','115.029165','35.713113','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168992,'419001','410000','1391','419001','city','济源市','112.602347','35.069057','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168993,'419001_potouzhen','419001','1391','419001','street','坡头镇','112.580245','35.063381','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168994,'419001_lilinzhen','419001','1391','419001','street','梨林镇','112.753220','35.088183','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168995,'419001_silizhen','419001','1391','419001','street','思礼镇','112.388078','35.210276','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168996,'419001_wulongkouzhen','419001','1391','419001','street','五龙口镇','112.761264','35.195598','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168997,'419001_wangwuzhen','419001','1391','419001','street','王屋镇','112.168531','35.124376','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168998,'419001_yuquanjiedao','419001','1391','419001','street','玉泉街道','112.623553','35.118882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(168999,'419001_zhichengzhen','419001','1391','419001','street','轵城镇','112.622105','35.062530','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169000,'419001_jishuijiedao','419001','1391','419001','street','济水街道','112.595477','35.094386','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169001,'419001_qinyuanjiedao','419001','1391','419001','street','沁园街道','112.593210','35.082244','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169002,'419001_xiayezhen','419001','1391','419001','street','下冶镇','112.212297','35.113088','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169003,'419001_kejingzhen','419001','1391','419001','street','克井镇','112.634910','35.255031','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169004,'419001_tiantanjiedao','419001','1391','419001','street','天坛街道','112.566796','35.122905','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169005,'419001_shaoyuanzhen','419001','1391','419001','street','邵原镇','112.114016','35.270480','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169006,'419001_beihaijiedao','419001','1391','419001','street','北海街道','112.568975','35.111552','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169007,'419001_chengliuzhen','419001','1391','419001','street','承留镇','112.508612','35.024328','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169008,'419001_dayuzhen','419001','1391','419001','street','大峪镇','112.318910','35.079253','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169009,'410200','410000','0378','410200','city','开封市','114.314278','34.798083','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169010,'410221','410200','0378','410221','district','杞县','114.782629','34.549731','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169011,'410205','410200','0378','410205','district','禹王台区','114.348105','34.777052','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169012,'410223','410200','0378','410223','district','尉氏县','114.19305','34.411437','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169013,'410225','410200','0378','410225','district','兰考县','114.818228','34.856372','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169014,'410202','410200','0378','410202','district','龙亭区','114.355378','34.815515','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169015,'410204','410200','0378','410204','district','鼓楼区','114.348356','34.788473','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169016,'410203','410200','0378','410203','district','顺河回族区','114.360824','34.795933','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169017,'410222','410200','0378','410222','district','通许县','114.47315','34.502053','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169018,'410212','410200','0378','410212','district','祥符区','114.441406','34.757546','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169019,'410100','410000','0371','410100','city','郑州市','113.625351','34.746303','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169020,'410185','410100','0371','410185','district','登封市','113.05056','34.454877','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169021,'410105','410100','0371','410105','district','金水区','113.6603','34.800415','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169022,'410122','410100','0371','410122','district','中牟县','113.975798','34.720535','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169023,'410184','410100','0371','410184','district','新郑市','113.74024','34.396479','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169024,'410181','410100','0371','410181','district','巩义市','113.022354','34.748207','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169025,'410108','410100','0371','410108','district','惠济区','113.617055','34.867994','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169026,'410106','410100','0371','410106','district','上街区','113.309185','34.803514','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169027,'410102','410100','0371','410102','district','中原区','113.612966','34.74828','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169028,'410183','410100','0371','410183','district','新密市','113.390932','34.540216','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169029,'410182','410100','0371','410182','district','荥阳市','113.383385','34.7866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169030,'410103','410100','0371','410103','district','二七区','113.640177','34.724138','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169031,'410104','410100','0371','410104','district','管城回族区','113.677446','34.754436','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169032,'410700','410000','0373','410700','city','新乡市','113.92679','35.303589','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169033,'410724','410700','0373','410724','district','获嘉县','113.657551','35.260153','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169034,'410711','410700','0373','410711','district','牧野区','113.908561','35.315614','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169035,'410703','410700','0373','410703','district','卫滨区','113.865666','35.301796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169036,'410721','410700','0373','410721','district','新乡县','113.813884','35.170066','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169037,'410726','410700','0373','410726','district','延津县','114.205624','35.165876','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169038,'410702','410700','0373','410702','district','红旗区','113.983358','35.306182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169039,'410704','410700','0373','410704','district','凤泉区','113.916183','35.384428','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169040,'410725','410700','0373','410725','district','原阳县','113.939829','35.066873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169041,'410727','410700','0373','410727','district','封丘县','114.418907','35.041237','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169042,'410782','410700','0373','410782','district','辉县市','113.80572','35.462964','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169043,'410783','410700','0373','410783','district','长垣市','114.66885','35.201628','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169044,'410781','410700','0373','410781','district','卫辉市','114.064584','35.398357','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169045,'410800','410000','0391','410800','city','焦作市','113.241902','35.215726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169046,'410803','410800','0391','410803','district','中站区','113.182847','35.237227','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169047,'410802','410800','0391','410802','district','解放区','113.230555','35.240403','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169048,'410821','410800','0391','410821','district','修武县','113.447862','35.22286','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169049,'410804','410800','0391','410804','district','马村区','113.32212','35.257084','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169050,'410883','410800','0391','410883','district','孟州市','112.791372','34.907229','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169051,'410825','410800','0391','410825','district','温县','113.08067','34.93961','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169052,'410823','410800','0391','410823','district','武陟县','113.401848','35.099458','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169053,'410882','410800','0391','410882','district','沁阳市','112.950873','35.087569','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169054,'410822','410800','0391','410822','district','博爱县','113.064701','35.170332','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169055,'410811','410800','0391','410811','district','山阳区','113.254581','35.215054','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169056,'410600','410000','0392','410600','city','鹤壁市','114.297305','35.748329','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169057,'410602','410600','0392','410602','district','鹤山区','114.163133','35.954647','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169058,'410603','410600','0392','410603','district','山城区','114.184391','35.897862','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169059,'410611','410600','0392','410611','district','淇滨区','114.298748','35.741763','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169060,'410622','410600','0392','410622','district','淇县','114.208851','35.622571','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169061,'410621','410600','0392','410621','district','浚县','114.550611','35.677249','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169062,'410500','410000','0372','410500','city','安阳市','114.39248','36.098779','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169063,'410503','410500','0372','410503','district','北关区','114.355742','36.10766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169064,'410522','410500','0372','410522','district','安阳县','114.462953','36.09211','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169065,'410502','410500','0372','410502','district','文峰区','114.356967','36.090593','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169066,'410506','410500','0372','410506','district','龙安区','114.301037','36.076937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169067,'410505','410500','0372','410505','district','殷都区','114.303454','36.109938','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169068,'410581','410500','0372','410581','district','林州市','113.819275','36.084127','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169069,'410526','410500','0372','410526','district','滑县','114.517977','35.576128','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169070,'410523','410500','0372','410523','district','汤阴县','114.357686','35.925155','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169071,'410527','410500','0372','410527','district','内黄县','114.90146','35.972016','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169072,'411700','410000','0396','411700','city','驻马店市','114.021988','33.014038','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169073,'411727','411700','0396','411727','district','汝南县','114.362477','33.006808','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169074,'411722','411700','0396','411722','district','上蔡县','114.264381','33.262439','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169075,'411725','411700','0396','411725','district','确山县','114.016818','32.82134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169076,'411724','411700','0396','411724','district','正阳县','114.392774','32.605697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169077,'411729','411700','0396','411729','district','新蔡县','114.965519','32.74488','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169078,'411721','411700','0396','411721','district','西平县','114.021492','33.387658','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169079,'411726','411700','0396','411726','district','泌阳县','113.327144','32.723974','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169080,'411702','411700','0396','411702','district','驿城区','113.993753','32.97455','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169081,'411728','411700','0396','411728','district','遂平县','114.013323','33.146316','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169082,'411723','411700','0396','411723','district','平舆县','114.618537','32.96344','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169083,'411600','410000','0394','411600','city','周口市','114.701222','33.634652','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169084,'411623','411600','0394','411623','district','商水县','114.608135','33.562072','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169085,'411602','411600','0394','411602','district','川汇区','114.650551','33.647679','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169086,'411603','411600','0394','411603','district','淮阳区','114.852604','33.731543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169087,'411622','411600','0394','411622','district','西华县','114.529709','33.768277','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169088,'411624','411600','0394','411624','district','沈丘县','115.098541','33.409805','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169089,'411621','411600','0394','411621','district','扶沟县','114.394666','34.060062','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169090,'411625','411600','0394','411625','district','郸城县','115.177141','33.64601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169091,'411627','411600','0394','411627','district','太康县','114.837946','34.064513','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169092,'411628','411600','0394','411628','district','鹿邑县','115.484525','33.860698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169093,'411681','411600','0394','411681','district','项城市','114.875128','33.465609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169094,'411400','410000','0370','411400','city','商丘市','115.656358','34.415165','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169095,'411422','411400','0370','411422','district','睢县','115.071957','34.446572','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169096,'411402','411400','0370','411402','district','梁园区','115.613609','34.444519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169097,'411423','411400','0370','411423','district','宁陵县','115.314221','34.461226','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169098,'411403','411400','0370','411403','district','睢阳区','115.653258','34.389048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169099,'411425','411400','0370','411425','district','虞城县','115.828519','34.400868','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169100,'411424','411400','0370','411424','district','柘城县','115.305182','34.092015','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169101,'411421','411400','0370','411421','district','民权县','115.175019','34.648384','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169102,'411481','411400','0370','411481','district','永城市','116.449864','33.929927','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169103,'411426','411400','0370','411426','district','夏邑县','116.131422','34.237801','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169104,'410400','410000','0375','410400','city','平顶山市','113.192595','33.766554','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169105,'410423','410400','0375','410423','district','鲁山县','112.908052','33.738434','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169106,'410411','410400','0375','410411','district','湛河区','113.3208727','33.72568115','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169107,'410481','410400','0375','410481','district','舞钢市','113.516427','33.314147','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169108,'410404','410400','0375','410404','district','石龙区','112.898845','33.899247','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169109,'410482','410400','0375','410482','district','汝州市','112.844696','34.16717','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169110,'410425','410400','0375','410425','district','郏县','113.21261','33.971787','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169111,'410421','410400','0375','410421','district','宝丰县','113.054538','33.869159','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169112,'410422','410400','0375','410422','district','叶县','113.357476','33.627437','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169113,'410403','410400','0375','410403','district','卫东区','113.335316','33.735388','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169114,'410402','410400','0375','410402','district','新华区','113.293977','33.737251','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169115,'440000','100000','','440000','province','广东省','113.266887','23.133306','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169116,'440500','440000','0754','440500','city','汕头市','116.681956','23.354152','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169117,'440515','440500','0754','440515','district','澄海区','116.755945','23.466314','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169118,'440523','440500','0754','440523','district','南澳县','117.023482','23.421658','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169119,'440512','440500','0754','440512','district','濠江区','116.726701','23.286605','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169120,'440507','440500','0754','440507','district','龙湖区','116.716464','23.372211','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169121,'440511','440500','0754','440511','district','金平区','116.70341','23.365716','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169122,'440513','440500','0754','440513','district','潮阳区','116.601677','23.264923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169123,'440514','440500','0754','440514','district','潮南区','116.439105','23.239196','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169124,'440600','440000','0757','440600','city','佛山市','113.121586','23.021351','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169125,'440608','440600','0757','440608','district','高明区','112.892573','22.900047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169126,'440607','440600','0757','440607','district','三水区','112.897271','23.156675','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169127,'440605','440600','0757','440605','district','南海区','113.143246','23.028875','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169128,'440604','440600','0757','440604','district','禅城区','113.122532','23.009475','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169129,'440606','440600','0757','440606','district','顺德区','113.293197','22.805413','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169130,'441200','440000','0758','441200','city','肇庆市','112.465245','23.047747','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169131,'441224','441200','0758','441224','district','怀集县','112.166908','23.920806','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169132,'441225','441200','0758','441225','district','封开县','111.512177','23.423928','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169133,'441223','441200','0758','441223','district','广宁县','112.440694','23.634808','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169134,'441284','441200','0758','441284','district','四会市','112.734309','23.326991','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169135,'441226','441200','0758','441226','district','德庆县','111.785544','23.145035','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169136,'441204','441200','0758','441204','district','高要区','112.458055','23.02474','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169137,'441202','441200','0758','441202','district','端州区','112.485577','23.051847','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169138,'441203','441200','0758','441203','district','鼎湖区','112.56738','23.159062','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169139,'441300','440000','0752','441300','city','惠州市','114.415587','23.112368','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169140,'441324','441300','0752','441324','district','龙门县','114.254898','23.727873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169141,'441323','441300','0752','441323','district','惠东县','114.720136','22.984831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169142,'441303','441300','0752','441303','district','惠阳区','114.456107','22.789431','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169143,'441302','441300','0752','441302','district','惠城区','114.382526','23.084657','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169144,'441322','441300','0752','441322','district','博罗县','114.289602','23.172587','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169145,'440300','440000','0755','440300','city','深圳市','114.057939','22.543527','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169146,'440306','440300','0755','440306','district','宝安区','113.883831','22.554986','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169147,'440305','440300','0755','440305','district','南山区','113.930478','22.533191','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169148,'440307','440300','0755','440307','district','龙岗区','114.246884','22.720889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169149,'440309','440300','0755','440309','district','龙华区','114.04491','22.696735','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169150,'440303','440300','0755','440303','district','罗湖区','114.131611','22.548309','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169151,'440311','440300','0755','440311','district','光明区','113.94733','22.744136','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169152,'440304','440300','0755','440304','district','福田区','114.055198','22.520922','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169153,'440310','440300','0755','440310','district','坪山区','114.350844','22.708786','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169154,'440308','440300','0755','440308','district','盐田区','114.236739','22.557001','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169155,'440400','440000','0756','440400','city','珠海市','113.576892','22.271644','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169156,'440403','440400','0756','440403','district','斗门区','113.296228','22.209134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169157,'440402','440400','0756','440402','district','香洲区','113.543372','22.265635','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169158,'440404','440400','0756','440404','district','金湾区','113.363224','22.146717','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169159,'440499','440400','[]','440499','district','澳门大学横琴校区(由澳门实施管辖)','113.548956','22.126197','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169160,'440800','440000','0759','440800','city','湛江市','110.357538','21.270108','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169161,'440881','440800','0759','440881','district','廉江市','110.286109','21.609988','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169162,'440883','440800','0759','440883','district','吴川市','110.779361','21.440763','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169163,'440811','440800','0759','440811','district','麻章区','110.333833','21.26437','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169164,'440825','440800','0759','440825','district','徐闻县','110.17595','20.325969','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169165,'440804','440800','0759','440804','district','坡头区','110.455192','21.244405','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169166,'440803','440800','0759','440803','district','霞山区','110.397721','21.192463','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169167,'440823','440800','0759','440823','district','遂溪县','110.25043','21.378371','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169168,'440882','440800','0759','440882','district','雷州市','110.097011','20.914548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169169,'440802','440800','0759','440802','district','赤坎区','110.365592','21.265948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169170,'440700','440000','0750','440700','city','江门市','113.081548','22.578948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169171,'440781','440700','0750','440781','district','台山市','112.793812','22.251947','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169172,'440704','440700','0750','440704','district','江海区','113.111029','22.561301','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169173,'440785','440700','0750','440785','district','恩平市','112.304904','22.183743','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169174,'440783','440700','0750','440783','district','开平市','112.698113','22.377378','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169175,'440705','440700','0750','440705','district','新会区','113.034454','22.458519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169176,'440703','440700','0750','440703','district','蓬江区','113.078914','22.595285','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169177,'440784','440700','0750','440784','district','鹤山市','112.964203','22.765912','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169178,'441700','440000','0662','441700','city','阳江市','111.98343','21.856853','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169179,'441721','441700','0662','441721','district','阳西县','111.617696','21.753935','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169180,'441702','441700','0662','441702','district','江城区','111.95486','21.862451','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169181,'441704','441700','0662','441704','district','阳东区','112.005586','21.869081','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169182,'441781','441700','0662','441781','district','阳春市','111.791587','22.17041','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169183,'440900','440000','0668','440900','city','茂名市','110.925533','21.662728','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169184,'440982','440900','0668','440982','district','化州市','110.639581','21.664483','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169185,'440904','440900','0668','440904','district','电白区','111.013368','21.513946','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169186,'440983','440900','0668','440983','district','信宜市','110.946866','22.354887','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169187,'440981','440900','0668','440981','district','高州市','110.853169','21.918017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169188,'440902','440900','0668','440902','district','茂南区','110.918566','21.641661','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169189,'441500','440000','0660','441500','city','汕尾市','115.375557','22.787204','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169190,'441523','441500','0660','441523','district','陆河县','115.659978','23.301557','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169191,'441502','441500','0660','441502','district','城区','115.36522','22.779204','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169192,'441521','441500','0660','441521','district','海丰县','115.322974','22.967212','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169193,'441581','441500','0660','441581','district','陆丰市','115.652142','22.91874','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169194,'445300','440000','0766','445300','city','云浮市','112.044524','22.915163','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169195,'445322','445300','0766','445322','district','郁南县','111.535387','23.234561','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169196,'445321','445300','0766','445321','district','新兴县','112.225174','22.695915','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169197,'445302','445300','0766','445302','district','云城区','112.043945','22.92815','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169198,'445303','445300','0766','445303','district','云安区','112.002947','23.070334','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169199,'445381','445300','0766','445381','district','罗定市','111.569788','22.768345','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169200,'445100','440000','0768','445100','city','潮州市','116.621901','23.657662','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169201,'445122','445100','0768','445122','district','饶平县','117.0045','23.663294','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169202,'445102','445100','0768','445102','district','湘桥区','116.628343','23.675104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169203,'445103','445100','0768','445103','district','潮安区','116.676971','23.463598','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169204,'445200','440000','0663','445200','city','揭阳市','116.372732','23.550968','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169205,'445224','445200','0663','445224','district','惠来县','116.295038','23.033889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169206,'445202','445200','0663','445202','district','榕城区','116.36714','23.525918','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169207,'445281','445200','0663','445281','district','普宁市','116.165646','23.297742','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169208,'445222','445200','0663','445222','district','揭西县','115.841742','23.431314','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169209,'445203','445200','0663','445203','district','揭东区','116.411928','23.567252','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169210,'440200','440000','0751','440200','city','韶关市','113.597324','24.810977','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169211,'440224','440200','0751','440224','district','仁化县','113.749175','25.085764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169212,'440282','440200','0751','440282','district','南雄市','114.31184','25.117653','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169213,'440232','440200','0751','440232','district','乳源瑶族自治县','113.275875','24.775856','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169214,'440204','440200','0751','440204','district','浈江区','113.611077','24.804898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169215,'440222','440200','0751','440222','district','始兴县','114.061998','24.953908','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169216,'440203','440200','0751','440203','district','武江区','113.58792','24.7929','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169217,'440205','440200','0751','440205','district','曲江区','113.604591','24.682826','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169218,'440281','440200','0751','440281','district','乐昌市','113.347669','25.129892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169219,'440233','440200','0751','440233','district','新丰县','114.206641','24.059909','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169220,'440229','440200','0751','440229','district','翁源县','114.129986','24.350581','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169221,'440100','440000','020','440100','city','广州市','113.264499','23.130061','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169222,'440105','440100','020','440105','district','海珠区','113.317412','23.084003','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169223,'440117','440100','020','440117','district','从化区','113.586329','23.54915','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169224,'440114','440100','020','440114','district','花都区','113.220125','23.404326','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169225,'440115','440100','020','440115','district','南沙区','113.525178','22.801435','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169226,'440106','440100','020','440106','district','天河区','113.361597','23.124817','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169227,'440103','440100','020','440103','district','荔湾区','113.218998','23.107123','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169228,'440104','440100','020','440104','district','越秀区','113.267065','23.128673','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169229,'440118','440100','020','440118','district','增城区','113.810734','23.261452','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169230,'440112','440100','020','440112','district','黄埔区','113.480613','23.181355','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169231,'440111','440100','020','440111','district','白云区','113.2732','23.157159','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169232,'440113','440100','020','440113','district','番禺区','113.383917','22.93756','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169233,'441400','440000','0753','441400','city','梅州市','116.122046','24.288832','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169234,'441426','441400','0753','441426','district','平远县','115.891235','24.566928','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169235,'441427','441400','0753','441427','district','蕉岭县','116.171477','24.658963','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169236,'441481','441400','0753','441481','district','兴宁市','115.731133','24.137296','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169237,'441424','441400','0753','441424','district','五华县','115.775751','23.932568','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169238,'441403','441400','0753','441403','district','梅县区','116.081395','24.266191','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169239,'441402','441400','0753','441402','district','梅江区','116.116686','24.31065','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169240,'441423','441400','0753','441423','district','丰顺县','116.181895','23.739364','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169241,'441422','441400','0753','441422','district','大埔县','116.694825','24.347037','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169242,'441600','440000','0762','441600','city','河源市','114.700215','23.744276','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169243,'441623','441600','0762','441623','district','连平县','114.488358','24.369552','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169244,'441625','441600','0762','441625','district','东源县','114.7466','23.790079','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169245,'441621','441600','0762','441621','district','紫金县','115.183814','23.635597','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169246,'441624','441600','0762','441624','district','和平县','114.935634','24.469177','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169247,'441622','441600','0762','441622','district','龙川县','115.26002','24.100599','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169248,'441602','441600','0762','441602','district','源城区','114.703305','23.734055','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169249,'441800','440000','0763','441800','city','清远市','113.056098','23.682064','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169250,'441882','441800','0763','441882','district','连州市','112.377255','24.780873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169251,'441826','441800','0763','441826','district','连南瑶族自治县','112.287212','24.725953','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169252,'441881','441800','0763','441881','district','英德市','113.401827','24.20716','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169253,'441825','441800','0763','441825','district','连山壮族瑶族自治县','112.093726','24.570553','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169254,'441823','441800','0763','441823','district','阳山县','112.641199','24.465234','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169255,'441821','441800','0763','441821','district','佛冈县','113.531559','23.879455','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169256,'441803','441800','0763','441803','district','清新区','113.017747','23.734677','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169257,'441802','441800','0763','441802','district','清城区','113.062612','23.697889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169258,'441900','440000','0769','441900','city','东莞市','113.751884','23.021016','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169259,'441900_huangjiangzhen','441900','0769','441900','street','黄江镇','114.000220','22.916267','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169260,'441900_qingxizhen','441900','0769','441900','street','清溪镇','114.109028','22.864049','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169261,'441900_qiaotouzhen','441900','0769','441900','street','桥头镇','114.065029','23.031536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169262,'441900_hongmeizhen','441900','0769','441900','street','洪梅镇','113.606888','23.015507','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169263,'441900_gaobuzhen','441900','0769','441900','street','高埗镇','113.772920','23.100117','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169264,'441900_mayongzhen','441900','0769','441900','street','麻涌镇','113.616702','23.088653','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169265,'441900_tangshazhen','441900','0769','441900','street','塘厦镇','114.057782','22.833564','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169266,'441900_wangniudunzhen','441900','0769','441900','street','望牛墩镇','113.675238','23.067562','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169267,'441900_daojiaozhen','441900','0769','441900','street','道滘镇','113.687246','23.004094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169268,'441900_wanjiangjiedao','441900','0769','441900','street','万江街道','113.714249','23.004871','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169269,'441900_guanchengjiedao','441900','0769','441900','street','莞城街道','113.756157','23.026359','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169270,'441900_qishizhen','441900','0769','441900','street','企石镇','113.989933','23.054588','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169271,'441900_dongkengzhen','441900','0769','441900','street','东坑镇','113.921005','22.989113','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169272,'441900_dongchengjiedao','441900','0769','441900','street','东城街道','113.772060','22.941938','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169273,'441900_nanchengjiedao','441900','0769','441900','street','南城街道','113.768809','22.941355','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169274,'441900_xiegangzhen','441900','0769','441900','street','谢岗镇','114.171775','22.984642','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169275,'441900_zhangmutouzhen','441900','0769','441900','street','樟木头镇','114.015449','22.869270','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169276,'441900_changpingzhen','441900','0769','441900','street','常平镇','114.041069','23.007892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169277,'441900_fenggangzhen','441900','0769','441900','street','凤岗镇','114.139781','22.777948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169278,'441900_liaobuzhen','441900','0769','441900','street','寮步镇','113.917593','22.981271','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169279,'441900_shatianzhen','441900','0769','441900','street','沙田镇','113.582201','22.942601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169280,'441900_henglizhen','441900','0769','441900','street','横沥镇','114.030270','23.035086','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169281,'441900_shipaizhen','441900','0769','441900','street','石排镇','113.989827','23.069114','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169282,'441900_chashanzhen','441900','0769','441900','street','茶山镇','113.840966','23.092760','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169283,'441900_zhongtangzhen','441900','0769','441900','street','中堂镇','113.612748','23.042585','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169284,'441900_houjiezhen','441900','0769','441900','street','厚街镇','113.631616','22.934094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169285,'441900_zhanganzhen','441900','0769','441900','street','长安镇','113.802243','22.838519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169286,'441900_humenzhen','441900','0769','441900','street','虎门镇','113.631506','22.832134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169287,'441900_shilongzhen','441900','0769','441900','street','石龙镇','113.859745','23.087788','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169288,'441900_shijiezhen','441900','0769','441900','street','石碣镇','113.772148','23.095617','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169289,'441900_dalangzhen','441900','0769','441900','street','大朗镇','113.948398','22.866832','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169290,'441900_dalingshanzhen','441900','0769','441900','street','大岭山镇','113.807913','22.948048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169291,'442000','440000','0760','442000','city','中山市','113.392517','22.517024','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169292,'442000_henglanzhen','442000','0760','442000','street','横栏镇','113.223630','22.604755','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169293,'442000_xiaolanzhen','442000','0760','442000','street','小榄镇','113.320629','22.560691','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169294,'442000_shenwanzhen','442000','0760','442000','street','神湾镇','113.376318','22.276818','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169295,'442000_guzhenzhen','442000','0760','442000','street','古镇镇','113.221289','22.609652','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169296,'442000_gangkouzhen','442000','0760','442000','street','港口镇','113.354019','22.602694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169297,'442000_sanxiangzhen','442000','0760','442000','street','三乡镇','113.431869','22.387876','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169298,'442000_shiqijiedao','442000','0760','442000','street','石岐街道','113.404120','22.548351','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169299,'442000_dayongzhen','442000','0760','442000','street','大涌镇','113.296691','22.483379','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169300,'442000_fushazhen','442000','0760','442000','street','阜沙镇','113.340305','22.640609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169301,'442000_xiqujiedao','442000','0760','442000','street','西区街道','113.314421','22.564923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169302,'442000_shaxizhen','442000','0760','442000','street','沙溪镇','113.343971','22.524791','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169303,'442000_dongfengzhen','442000','0760','442000','street','东凤镇','113.307919','22.680266','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169304,'442000_tanzhouzhen','442000','0760','442000','street','坦洲镇','113.454379','22.310301','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169305,'442000_minzhongjiedao','442000','0760','442000','street','民众街道','113.472738','22.653889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169306,'442000_sanjiaozhen','442000','0760','442000','street','三角镇','113.400593','22.640197','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169307,'442000_nantouzhen','442000','0760','442000','street','南头镇','113.299916','22.683684','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169308,'442000_huangpuzhen','442000','0760','442000','street','黄圃镇','113.359373','22.681261','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169309,'442000_banfuzhen','442000','0760','442000','street','板芙镇','113.368695','22.406764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169310,'442000_nanqujiedao','442000','0760','442000','street','南区街道','113.367676','22.488858','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169311,'442000_dongqujiedao','442000','0760','442000','street','东区街道','113.436188','22.514086','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169312,'442000_wuguishanjiedao','442000','0760','442000','street','五桂山街道','113.476817','22.428448','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169313,'442000_zhongshangangjiedao','442000','0760','442000','street','中山港街道','113.418677','22.549913','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169314,'442000_nanlangjiedao','442000','0760','442000','street','南朗街道','113.486698','22.525740','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169315,'150000','100000','','150000','province','内蒙古自治区','111.765226','40.818233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169316,'150300','150000','0473','150300','city','乌海市','106.79415','39.655048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169317,'150304','150300','0473','150304','district','乌达区','106.726043','39.505609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169318,'150303','150300','0473','150303','district','海南区','106.891472','39.441803','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169319,'150302','150300','0473','150302','district','海勃湾区','106.8228','39.690873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169320,'150800','150000','0478','150800','city','巴彦淖尔市','107.387767','40.742987','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169321,'150824','150800','0478','150824','district','乌拉特中旗','108.513653','41.58813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169322,'150822','150800','0478','150822','district','磴口县','107.008288','40.330534','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169323,'150825','150800','0478','150825','district','乌拉特后旗','107.074748','41.08412','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169324,'150826','150800','0478','150826','district','杭锦后旗','107.151296','40.886596','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169325,'150802','150800','0478','150802','district','临河区','107.363536','40.750969','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169326,'150821','150800','0478','150821','district','五原县','108.267466','41.088446','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169327,'150823','150800','0478','150823','district','乌拉特前旗','108.652114','40.737018','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169328,'150200','150000','0472','150200','city','包头市','109.95315','40.621327','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169329,'150221','150200','0472','150221','district','土默特右旗','110.527831','40.578253','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169330,'150223','150200','0472','150223','district','达尔罕茂明安联合旗','110.432626','41.698992','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169331,'150206','150200','0472','150206','district','白云鄂博矿区','109.973195','41.769956','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169332,'150202','150200','0472','150202','district','东河区','110.044008','40.57626','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169333,'150205','150200','0472','150205','district','石拐区','110.060783','40.676736','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169334,'150222','150200','0472','150222','district','固阳县','110.060055','41.034757','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169335,'150204','150200','0472','150204','district','青山区','109.902157','40.644081','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169336,'150203','150200','0472','150203','district','昆都仑区','109.840249','40.658075','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169337,'150207','150200','0472','150207','district','九原区','109.968082','40.611346','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169338,'150700','150000','0470','150700','city','呼伦贝尔市','119.77845','49.166536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169339,'150785','150700','0470','150785','district','根河市','121.520165','50.779758','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169340,'150782','150700','0470','150782','district','牙克石市','120.711639','49.285947','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169341,'150725','150700','0470','150725','district','陈巴尔虎旗','119.424026','49.328916','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169342,'150702','150700','0470','150702','district','海拉尔区','119.824542','49.234715','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169343,'150721','150700','0470','150721','district','阿荣旗','123.458943','48.126553','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169344,'150724','150700','0470','150724','district','鄂温克族自治旗','119.755253','49.146692','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169345,'150783','150700','0470','150783','district','扎兰屯市','122.708475','48.028396','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169346,'150727','150700','0470','150727','district','新巴尔虎右旗','116.8237','48.671865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169347,'150703','150700','0470','150703','district','扎赉诺尔区','117.669939','49.511213','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169348,'150781','150700','0470','150781','district','满洲里市','117.379134','49.59862','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169349,'150723','150700','0470','150723','district','鄂伦春自治旗','123.725643','50.591604','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169350,'150784','150700','0470','150784','district','额尔古纳市','120.180506','50.243102','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169351,'150726','150700','0470','150726','district','新巴尔虎左旗','118.269782','48.21827','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169352,'150722','150700','0470','150722','district','莫力达瓦达斡尔族自治旗','124.519023','48.477728','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169353,'152200','150000','0482','152200','city','兴安盟','122.037796','46.082373','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169354,'152202','152200','0482','152202','district','阿尔山市','119.943577','47.17744','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169355,'152222','152200','0482','152222','district','科尔沁右翼中旗','121.476357','45.060728','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169356,'152224','152200','0482','152224','district','突泉县','121.593972','45.381918','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169357,'152223','152200','0482','152223','district','扎赉特旗','122.899627','46.723154','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169358,'152221','152200','0482','152221','district','科尔沁右翼前旗','121.952638','46.079664','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169359,'152201','152200','0482','152201','district','乌兰浩特市','122.093309','46.072233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169360,'150500','150000','0475','150500','city','通辽市','122.243309','43.653566','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169361,'150581','150500','0475','150581','district','霍林郭勒市','119.681242','45.533598','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169362,'150523','150500','0475','150523','district','开鲁县','121.319216','43.601446','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169363,'150524','150500','0475','150524','district','库伦旗','121.810629','42.735556','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169364,'150525','150500','0475','150525','district','奈曼旗','120.657813','42.867433','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169365,'150526','150500','0475','150526','district','扎鲁特旗','120.917953','44.567093','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169366,'150521','150500','0475','150521','district','科尔沁左翼中旗','123.312202','44.126606','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169367,'150522','150500','0475','150522','district','科尔沁左翼后旗','122.35677','42.935105','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169368,'150502','150500','0475','150502','district','科尔沁区','122.25545','43.623133','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169369,'150400','150000','0476','150400','city','赤峰市','118.887613','42.256876','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169370,'150423','150400','0476','150423','district','巴林右旗','118.664235','43.534171','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169371,'150422','150400','0476','150422','district','巴林左旗','119.362832','43.961547','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169372,'150424','150400','0476','150424','district','林西县','118.05545','43.61812','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169373,'150430','150400','0476','150430','district','敖汉旗','119.921413','42.290731','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169374,'150402','150400','0476','150402','district','红山区','118.953989','42.296317','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169375,'150426','150400','0476','150426','district','翁牛特旗','119.006187','42.936529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169376,'150425','150400','0476','150425','district','克什克腾旗','117.545413','43.265057','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169377,'150429','150400','0476','150429','district','宁城县','119.320056','41.600193','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169378,'150421','150400','0476','150421','district','阿鲁科尔沁旗','120.065533','43.872398','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169379,'150403','150400','0476','150403','district','元宝山区','119.288475','42.039602','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169380,'150404','150400','0476','150404','district','松山区','118.916156','42.299795','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169381,'150428','150400','0476','150428','district','喀喇沁旗','118.701934','41.927103','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169382,'152500','150000','0479','152500','city','锡林郭勒盟','116.047387','43.933212','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169383,'152525','152500','0479','152525','district','东乌珠穆沁旗','116.97526','45.497329','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169384,'152502','152500','0479','152502','district','锡林浩特市','116.085814','43.933417','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169385,'152523','152500','0479','152523','district','苏尼特左旗','113.667171','43.859718','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169386,'152522','152500','0479','152522','district','阿巴嘎旗','114.950185','44.022831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169387,'152526','152500','0479','152526','district','西乌珠穆沁旗','117.608668','44.587746','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169388,'152501','152500','0479','152501','district','二连浩特市','111.949594','43.64285','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169389,'152529','152500','0479','152529','district','正镶白旗','115.029748','42.287493','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169390,'152530','152500','0479','152530','district','正蓝旗','115.991648','42.241815','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169391,'152524','152500','0479','152524','district','苏尼特右旗','112.641806','42.742417','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169392,'152528','152500','0479','152528','district','镶黄旗','113.847287','42.232371','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169393,'152531','152500','0479','152531','district','多伦县','116.485549','42.203454','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169394,'152527','152500','0479','152527','district','太仆寺旗','115.283173','41.876889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169395,'150900','150000','0474','150900','city','乌兰察布市','113.132227','40.994526','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169396,'150929','150900','0474','150929','district','四子王旗','111.706663','41.533542','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169397,'150928','150900','0474','150928','district','察哈尔右翼后旗','113.191505','41.435937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169398,'150923','150900','0474','150923','district','商都县','113.577778','41.562176','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169399,'150922','150900','0474','150922','district','化德县','114.01029','41.904123','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169400,'150927','150900','0474','150927','district','察哈尔右翼中旗','112.635348','41.277449','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169401,'150921','150900','0474','150921','district','卓资县','112.577716','40.894618','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169402,'150902','150900','0474','150902','district','集宁区','113.168973','41.000742','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169403,'150926','150900','0474','150926','district','察哈尔右翼前旗','113.212409','40.783551','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169404,'150924','150900','0474','150924','district','兴和县','113.834176','40.8723','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169405,'150925','150900','0474','150925','district','凉城县','112.504243','40.532358','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169406,'150981','150900','0474','150981','district','丰镇市','113.109875','40.437022','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169407,'152900','150000','0483','152900','city','阿拉善盟','105.729135','38.851554','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169408,'152923','152900','0483','152923','district','额济纳旗','101.055861','41.953963','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169409,'152922','152900','0483','152922','district','阿拉善右旗','101.666917','39.216185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169410,'152921','152900','0483','152921','district','阿拉善左旗','105.666208','38.833589','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169411,'150600','150000','0477','150600','city','鄂尔多斯市','109.782473','39.608744','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169412,'150625','150600','0477','150625','district','杭锦旗','108.736011','39.833243','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169413,'150621','150600','0477','150621','district','达拉特旗','110.034133','40.412766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169414,'150624','150600','0477','150624','district','鄂托克旗','107.975948','39.089549','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169415,'150623','150600','0477','150623','district','鄂托克前旗','107.47733','38.182402','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169416,'150627','150600','0477','150627','district','伊金霍洛旗','109.747435','39.565064','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169417,'150603','150600','0477','150603','district','康巴什区','109.858586','39.60793','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169418,'150602','150600','0477','150602','district','东胜区','109.963403','39.823066','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169419,'150622','150600','0477','150622','district','准格尔旗','111.239436','39.864923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169420,'150626','150600','0477','150626','district','乌审旗','108.819485','38.60453','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169421,'150100','150000','0471','150100','city','呼和浩特市','111.748814','40.842127','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169422,'150103','150100','0471','150103','district','回民区','111.623485','40.808906','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169423,'150125','150100','0471','150125','district','武川县','111.451226','41.096511','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169424,'150122','150100','0471','150122','district','托克托县','111.193879','40.277703','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169425,'150121','150100','0471','150121','district','土默特左旗','111.16373','40.729044','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169426,'150102','150100','0471','150102','district','新城区','111.665325','40.858271','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169427,'150123','150100','0471','150123','district','和林格尔县','111.821695','40.379226','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169428,'150105','150100','0471','150105','district','赛罕区','111.701166','40.792508','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169429,'150104','150100','0471','150104','district','玉泉区','111.674157','40.753054','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169430,'150124','150100','0471','150124','district','清水河县','111.647351','39.921224','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169431,'230000','100000','','230000','province','黑龙江省','126.661998','45.742253','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169432,'232700','230000','0457','232700','city','大兴安岭地区','124.11786','50.41129','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169433,'232721','232700','0457','232721','district','呼玛县','126.651856','51.725924','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169434,'232718','232700','0457','232718','district','加格达奇区','124.139742','50.408822','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169435,'232701','232700','0457','232701','district','漠河市','122.539313','52.972465','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169436,'232722','232700','0457','232722','district','塔河县','124.709733','52.334512','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169437,'230900','230000','0464','230900','city','七台河市','131.003015','45.771178','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169438,'230921','230900','0464','230921','district','勃利县','130.592009','45.755856','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169439,'230903','230900','0464','230903','district','桃山区','131.020046','45.765733','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169440,'230902','230900','0464','230902','district','新兴区','130.93226','45.816579','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169441,'230904','230900','0464','230904','district','茄子河区','131.067545','45.785755','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169442,'230400','230000','0468','230400','city','鹤岗市','130.297687','47.350659','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169443,'230422','230400','0468','230422','district','绥滨县','131.852863','47.289522','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169444,'230403','230400','0468','230403','district','工农区','130.27472','47.318971','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169445,'230407','230400','0468','230407','district','兴山区','130.303598','47.357698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169446,'230405','230400','0468','230405','district','兴安区','130.239289','47.252805','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169447,'230404','230400','0468','230404','district','南山区','130.285991','47.315121','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169448,'230402','230400','0468','230402','district','向阳区','130.294331','47.342478','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169449,'230421','230400','0468','230421','district','萝北县','130.820566','47.578979','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169450,'230406','230400','0468','230406','district','东山区','130.317151','47.338571','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169451,'230100','230000','0451','230100','city','哈尔滨市','126.53505','45.802981','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169452,'230126','230100','0451','230126','district','巴彦县','127.403521','46.086182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169453,'230123','230100','0451','230123','district','依兰县','129.567777','46.325536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169454,'230128','230100','0451','230128','district','通河县','128.74629','45.990214','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169455,'230127','230100','0451','230127','district','木兰县','128.043194','45.950649','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169456,'230125','230100','0451','230125','district','宾县','127.466372','45.746313','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169457,'230124','230100','0451','230124','district','方正县','128.829513','45.851673','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169458,'230129','230100','0451','230129','district','延寿县','128.311071','45.445956','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169459,'230183','230100','0451','230183','district','尚志市','128.009218','45.209199','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169460,'230184','230100','0451','230184','district','五常市','127.167501','44.932164','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169461,'230109','230100','0451','230109','district','松北区','126.516602','45.794991','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169462,'230111','230100','0451','230111','district','呼兰区','126.587704','45.889557','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169463,'230113','230100','0451','230113','district','双城区','126.31279','45.382873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169464,'230102','230100','0451','230102','district','道里区','126.616912','45.755832','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169465,'230108','230100','0451','230108','district','平房区','126.63675','45.597529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169466,'230104','230100','0451','230104','district','道外区','126.649094','45.792351','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169467,'230112','230100','0451','230112','district','阿城区','126.957984','45.548671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169468,'230110','230100','0451','230110','district','香坊区','126.662959','45.707871','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169469,'230103','230100','0451','230103','district','南岗区','126.66882','45.759967','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169470,'230800','230000','0454','230800','city','佳木斯市','130.318916','46.800002','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169471,'230828','230800','0454','230828','district','汤原县','129.904747','46.730623','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169472,'230803','230800','0454','230803','district','向阳区','130.365263','46.807808','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169473,'230822','230800','0454','230822','district','桦南县','130.553472','46.239314','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169474,'230882','230800','0454','230882','district','富锦市','132.037659','47.250144','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169475,'230881','230800','0454','230881','district','同江市','132.510113','47.642475','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169476,'230883','230800','0454','230883','district','抚远市','134.30786','48.365027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169477,'230826','230800','0454','230826','district','桦川县','130.71908','47.023001','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169478,'230805','230800','0454','230805','district','东风区','130.403588','46.822609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169479,'230804','230800','0454','230804','district','前进区','130.375254','46.81405','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169480,'230811','230800','0454','230811','district','郊区','130.327182','46.809596','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169481,'230500','230000','0469','230500','city','双鸭山市','131.141563','46.676157','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169482,'230502','230500','0469','230502','district','尖山区','131.158372','46.646083','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169483,'230522','230500','0469','230522','district','友谊县','131.807815','46.767299','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169484,'230503','230500','0469','230503','district','岭东区','131.165067','46.592663','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169485,'230506','230500','0469','230506','district','宝山区','131.401589','46.577167','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169486,'230523','230500','0469','230523','district','宝清县','132.196907','46.327335','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169487,'230521','230500','0469','230521','district','集贤县','131.141452','46.728448','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169488,'230505','230500','0469','230505','district','四方台区','131.337636','46.597143','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169489,'230524','230500','0469','230524','district','饶河县','134.014125','46.79726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169490,'231100','230000','0456','231100','city','黑河市','127.528226','50.244887','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169491,'231181','231100','0456','231181','district','北安市','126.490989','48.241168','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169492,'231123','231100','0456','231123','district','逊克县','128.478698','49.56429','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169493,'231182','231100','0456','231182','district','五大连池市','126.205446','48.517342','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169494,'231183','231100','0456','231183','district','嫩江市','125.221192','49.185766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169495,'231124','231100','0456','231124','district','孙吴县','127.336163','49.425645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169496,'231102','231100','0456','231102','district','爱辉区','127.500703','50.252361','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169497,'231000','230000','0453','231000','city','牡丹江市','129.632928','44.551486','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169498,'231004','231000','0453','231004','district','爱民区','129.591227','44.595897','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169499,'231002','231000','0453','231002','district','东安区','129.626651','44.58125','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169500,'231081','231000','0453','231081','district','绥芬河市','131.151805','44.412487','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169501,'231086','231000','0453','231086','district','东宁市','131.124839','44.090361','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169502,'231084','231000','0453','231084','district','宁安市','129.482505','44.340617','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169503,'231005','231000','0453','231005','district','西安区','129.616021','44.577611','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169504,'231083','231000','0453','231083','district','海林市','129.380756','44.594017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169505,'231085','231000','0453','231085','district','穆棱市','130.52446','44.918842','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169506,'231003','231000','0453','231003','district','阳明区','129.635836','44.595851','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169507,'231025','231000','0453','231025','district','林口县','130.282286','45.279754','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169508,'230700','230000','0458','230700','city','伊春市','128.840863','47.728332','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169509,'230722','230700','0458','230722','district','嘉荫县','130.402406','48.888613','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169510,'230717','230700','0458','230717','district','伊美区','128.907156','47.728257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169511,'230723','230700','0458','230723','district','汤旺县','129.570935','48.454639','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169512,'230724','230700','0458','230724','district','丰林县','129.533661','48.290566','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169513,'230718','230700','0458','230718','district','乌翠区','128.68003','47.729319','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169514,'230719','230700','0458','230719','district','友好区','128.836341','47.840801','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169515,'230751','230700','0458','230751','district','金林区','129.428839','47.413019','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169516,'230726','230700','0458','230726','district','南岔县','129.283584','47.139009','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169517,'230781','230700','0458','230781','district','铁力市','128.032554','46.986604','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169518,'230725','230700','0458','230725','district','大箐山县','129.020519','47.028313','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169519,'230300','230000','0467','230300','city','鸡西市','130.969385','45.295087','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169520,'230304','230300','0467','230304','district','滴道区','130.844193','45.349068','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169521,'230306','230300','0467','230306','district','城子河区','131.011504','45.338342','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169522,'230307','230300','0467','230307','district','麻山区','130.477691','45.211863','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169523,'230302','230300','0467','230302','district','鸡冠区','130.981342','45.303892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169524,'230303','230300','0467','230303','district','恒山区','130.90466','45.21119','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169525,'230305','230300','0467','230305','district','梨树区','130.69699','45.092046','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169526,'230321','230300','0467','230321','district','鸡东县','131.124083','45.260413','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169527,'230381','230300','0467','230381','district','虎林市','132.937002','45.763262','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169528,'230382','230300','0467','230382','district','密山市','131.846824','45.529482','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169529,'230200','230000','0452','230200','city','齐齐哈尔市','123.918193','47.354892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169530,'230229','230200','0452','230229','district','克山县','125.875103','48.037748','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169531,'230225','230200','0452','230225','district','甘南县','123.507935','47.921698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169532,'230230','230200','0452','230230','district','克东县','126.249124','48.041562','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169533,'230223','230200','0452','230223','district','依安县','125.306161','47.893442','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169534,'230227','230200','0452','230227','district','富裕县','124.474411','47.774038','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169535,'230208','230200','0452','230208','district','梅里斯达斡尔族区','123.752482','47.309755','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169536,'230207','230200','0452','230207','district','碾子山区','122.887548','47.516614','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169537,'230221','230200','0452','230221','district','龙江县','123.204953','47.338512','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169538,'230206','230200','0452','230206','district','富拉尔基区','123.628926','47.20873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169539,'230202','230200','0452','230202','district','龙沙区','123.958447','47.317103','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169540,'230205','230200','0452','230205','district','昂昂溪区','123.822137','47.154806','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169541,'230224','230200','0452','230224','district','泰来县','123.416631','46.393694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169542,'230231','230200','0452','230231','district','拜泉县','126.09905','47.59586','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169543,'230203','230200','0452','230203','district','建华区','123.95555','47.354212','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169544,'230204','230200','0452','230204','district','铁锋区','123.978079','47.340719','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169545,'230281','230200','0452','230281','district','讷河市','124.88293','48.466829','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169546,'231200','230000','0455','231200','city','绥化市','126.968714','46.654147','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169547,'231226','231200','0455','231226','district','绥棱县','127.114928','47.235814','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169548,'231283','231200','0455','231283','district','海伦市','126.930191','47.450661','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169549,'231224','231200','0455','231224','district','庆安县','127.507586','46.880628','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169550,'231202','231200','0455','231202','district','北林区','126.984995','46.638114','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169551,'231221','231200','0455','231221','district','望奎县','126.486333','46.832185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169552,'231223','231200','0455','231223','district','青冈县','126.099314','46.70398','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169553,'231225','231200','0455','231225','district','明水县','125.90601','47.173649','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169554,'231222','231200','0455','231222','district','兰西县','126.287734','46.252966','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169555,'231282','231200','0455','231282','district','肇东市','125.962419','46.050664','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169556,'231281','231200','0455','231281','district','安达市','125.307629','46.451882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169557,'230600','230000','0459','230600','city','大庆市','125.104078','46.589498','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169558,'230605','230600','0459','230605','district','红岗区','124.891041','46.398567','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169559,'230606','230600','0459','230606','district','大同区','124.812221','46.039972','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169560,'230623','230600','0459','230623','district','林甸县','124.863628','47.171677','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169561,'230604','230600','0459','230604','district','让胡路区','124.889858','46.642567','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169562,'230624','230600','0459','230624','district','杜尔伯特蒙古族自治县','124.442829','46.862348','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169563,'230602','230600','0459','230602','district','萨尔图区','125.135269','46.629281','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169564,'230603','230600','0459','230603','district','龙凤区','125.135093','46.562369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169565,'230621','230600','0459','230621','district','肇州县','125.268449','45.699543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169566,'230622','230600','0459','230622','district','肇源县','125.078311','45.518982','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169567,'650000','100000','','650000','province','新疆维吾尔自治区','87.628579','43.793301','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169568,'659006','650000','1996','659006','city','铁门关市','85.670291','41.862997','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169569,'659006_milanzhen','659006','1996','659006','street','米兰镇','89.003715','39.332614','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169570,'659006_nantunzhen','659006','1996','659006','street','南屯镇','84.116298','37.768112','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169571,'659006_tianhuzhen','659006','1996','659006','street','天湖镇','86.524925','42.010663','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169572,'659006_kaizezhen','659006','1996','659006','street','开泽镇','86.632672','42.311192','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169573,'659006_gaoqiaozhen','659006','1996','659006','street','高桥镇','87.057052','42.213140','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169574,'659006_boguqizhen','659006','1996','659006','street','博古其镇','85.584894','41.882542','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169575,'659006_shuangfengzhen','659006','1996','659006','street','双丰镇','85.635217','41.880304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169576,'659006_hepanzhen','659006','1996','659006','street','河畔镇','86.605010','42.167593','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169577,'659006_jinshanzhen','659006','1996','659006','street','金山镇','85.322762','38.186220','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169578,'659005','650000','1906','659005','city','北屯市','87.834419','47.326733','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169579,'659005_haichuanzhen','659005','1906','659005','street','海川镇','87.518571','47.409865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169580,'659005_fengqingzhen','659005','1906','659005','street','丰庆镇','87.927121','47.333864','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169581,'659005_shuangquzhen','659005','1906','659005','street','双渠镇','88.122468','47.126579','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169582,'659005_beitunzhen','659005','1906','659005','street','北屯镇','87.871109','47.357426','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169583,'652700','650000','0909','652700','city','博尔塔拉蒙古自治州','82.066363','44.906039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169584,'652723','652700','0909','652723','district','温泉县','81.024827','44.968857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169585,'652702','652700','0909','652702','district','阿拉山口市','82.554609','45.173274','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169586,'652701','652700','0909','652701','district','博乐市','82.051433','44.853882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169587,'652722','652700','0909','652722','district','精河县','82.890709','44.599202','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169588,'659007','650000','1909','659007','city','双河市','82.35365587','44.84052409','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169589,'659007_bingtuanbashijiutuan','659007','1909','659007','street','兵团八十九团','82.455805','44.812134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169590,'659007_bohezhen','659007','1909','659007','street','博河镇','82.158974','44.796350','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169591,'659007_shuangqiaozhen','659007','1909','659007','street','双桥镇','82.490803','44.746864','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169592,'659007_shiyuzhen','659007','1909','659007','street','石峪镇','82.066675','45.040830','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169593,'659007_shuanglezhen','659007','1909','659007','street','双乐镇','82.473143','44.826624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169594,'659008','650000','1999','659008','city','可克达拉市','80.994153','43.940381','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169595,'659008_zhangfengzhen','659008','1999','659008','street','长丰镇','80.990266','43.889725','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169596,'659008_jintunzhen','659008','1999','659008','street','金屯镇','80.606773','43.765174','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169597,'659008_doulatakouan','659008','1999','659008','street','都拉塔口岸','80.661467','43.706479','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169598,'659008_yushuzhuangzhen','659008','1999','659008','street','榆树庄镇','80.484243','43.931223','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169599,'659008_weihuzhen','659008','1999','659008','street','苇湖镇','80.648370','44.180308','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169600,'659008_jinliangzhen','659008','1999','659008','street','金梁镇','81.021339','43.908278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169601,'654200','650000','0901','654200','city','塔城地区','82.980316','46.745364','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169602,'654201','654200','0901','654201','district','塔城市','82.986923','46.751669','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169603,'654226','654200','0901','654226','district','和布克赛尔蒙古自治县','85.728328','46.793235','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169604,'654221','654200','0901','654221','district','额敏县','83.628303','46.524673','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169605,'654225','654200','0901','654225','district','裕民县','82.982252','46.201049','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169606,'654224','654200','0901','654224','district','托里县','83.606372','45.948935','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169607,'654202','654200','0901','654202','district','乌苏市','84.713762','44.418693','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169608,'654203','654200','0901','654203','district','沙湾市','85.619483','44.326267','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169609,'659009','650000','1903','659009','city','昆玉市','79.270193','37.215372','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169610,'659009_laobingzhen','659009','1903','659009','street','老兵镇','79.603916','37.366638','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169611,'659009_kunmuzhen','659009','1903','659009','street','昆牧镇','81.029494','36.315217','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169612,'659009_kunquanzhen','659009','1903','659009','street','昆泉镇','78.514768','37.566112','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169613,'659009_bingtuanerersituan','659009','1903','659009','street','兵团二二四团','79.377194','37.416433','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169614,'653200','650000','0903','653200','city','和田地区','79.921646','37.114406','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169615,'653226','653200','0903','653226','district','于田县','81.677417','36.85708','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169616,'653227','653200','0903','653227','district','民丰县','82.695946','37.064428','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169617,'653201','653200','0903','653201','district','和田市','79.912881','37.112246','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169618,'653224','653200','0903','653224','district','洛浦县','80.179911','37.066226','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169619,'653223','653200','0903','653223','district','皮山县','78.28548','37.578264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169620,'653222','653200','0903','653222','district','墨玉县','79.728434','37.277518','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169621,'653225','653200','0903','653225','district','策勒县','80.801433','36.99785','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169622,'653221','653200','0903','653221','district','和田县','79.848009','37.248776','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169623,'654300','650000','0906','654300','city','阿勒泰地区','88.141253','47.844924','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169624,'654321','654300','0906','654321','district','布尔津县','86.875043','47.701892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169625,'654324','654300','0906','654324','district','哈巴河县','86.418621','48.060846','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169626,'654322','654300','0906','654322','district','富蕴县','89.525463','46.994046','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169627,'654326','654300','0906','654326','district','吉木乃县','85.874096','47.443101','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169628,'654325','654300','0906','654325','district','青河县','90.375159','46.678532','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169629,'654323','654300','0906','654323','district','福海县','87.486703','47.111918','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169630,'654301','654300','0906','654301','district','阿勒泰市','88.131842','47.827308','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169631,'659001','650000','0993','659001','city','石河子市','86.080397','44.305368','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169632,'659001_bingtuanyiwuertuan','659001','0993','659001','street','兵团一五二团','86.070393','44.282700','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169633,'659001_xiangyangjiedao','659001','0993','659001','street','向阳街道','86.039719','44.342873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169634,'659001_hongshanjiedao','659001','0993','659001','street','红山街道','86.048043','44.268209','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169635,'659001_bingtuanyisisituan','659001','0993','659001','street','兵团一四四团','85.912346','44.252475','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169636,'659001_dongchengjiedao','659001','0993','659001','street','东城街道','86.068708','44.287316','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169637,'659001_laojiejiedao','659001','0993','659001','street','老街街道','85.990921','44.349559','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169638,'659001_shihezizhen','659001','0993','659001','street','石河子镇','86.102202','44.135229','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169639,'659001_beiquanzhen','659001','0993','659001','street','北泉镇','86.098308','44.434587','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169640,'659001_xinchengjiedao','659001','0993','659001','street','新城街道','85.982288','44.289311','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169641,'652300','650000','0994','652300','city','昌吉回族自治州','87.308995','44.011044','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169642,'652325','652300','0994','652325','district','奇台县','89.593879','44.022001','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169643,'652324','652300','0994','652324','district','玛纳斯县','86.20488','44.284601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169644,'652323','652300','0994','652323','district','呼图壁县','86.871532','44.179362','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169645,'652328','652300','0994','652328','district','木垒哈萨克自治县','90.286013','43.834631','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169646,'652302','652300','0994','652302','district','阜康市','87.953826','44.164525','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169647,'652327','652300','0994','652327','district','吉木萨尔县','89.179698','44.000404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169648,'652301','652300','0994','652301','district','昌吉市','87.267432','44.014468','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169649,'652800','650000','0996','652800','city','巴音郭楞蒙古自治州','86.145298','41.764115','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169650,'652801','652800','0996','652801','district','库尔勒市','86.174633','41.725891','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169651,'652822','652800','0996','652822','district','轮台县','84.251508','41.778043','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169652,'652823','652800','0996','652823','district','尉犁县','86.261613','41.343871','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169653,'652825','652800','0996','652825','district','且末县','85.529619','38.145749','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169654,'652827','652800','0996','652827','district','和静县','86.384065','42.323625','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169655,'652828','652800','0996','652828','district','和硕县','86.877688','42.28361','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169656,'652826','652800','0996','652826','district','焉耆回族自治县','86.57434','42.059509','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169657,'652824','652800','0996','652824','district','若羌县','88.167226','39.022626','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169658,'652829','652800','0996','652829','district','博湖县','86.632116','41.980745','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169659,'654000','650000','0999','654000','city','伊犁哈萨克自治州','81.323691','43.917106','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169660,'654021','654000','0999','654021','district','伊宁县','81.52745','43.977119','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169661,'654024','654000','0999','654024','district','巩留县','82.231219','43.48313','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169662,'654026','654000','0999','654026','district','昭苏县','81.130974','43.157293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169663,'654027','654000','0999','654027','district','特克斯县','81.835732','43.218435','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169664,'654023','654000','0999','654023','district','霍城县','80.878845','44.056329','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169665,'654022','654000','0999','654022','district','察布查尔锡伯自治县','81.151337','43.840726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169666,'654004','654000','0999','654004','district','霍尔果斯市','80.414614','44.218381','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169667,'654002','654000','0999','654002','district','伊宁市','81.277715','43.908021','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169668,'654003','654000','0999','654003','district','奎屯市','84.903216','44.426452','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169669,'654028','654000','0999','654028','district','尼勒克县','82.511884','43.798627','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169670,'654025','654000','0999','654025','district','新源县','83.233002','43.434803','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169671,'659002','650000','1997','659002','city','阿拉尔市','81.280532','40.547205','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169672,'659002_matanzhen','659002','1997','659002','street','玛滩镇','80.654296','40.656858','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169673,'659002_huaqiaozhen','659002','1997','659002','street','花桥镇','81.561898','40.627686','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169674,'659002_shahezhen','659002','1997','659002','street','沙河镇','80.734788','41.289273','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169675,'659002_tuokayixiang','659002','1997','659002','street','托喀依乡','81.354140','40.581819','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169676,'659002_qingsonglujiedao','659002','1997','659002','street','青松路街道','81.254474','40.542004','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169677,'659002_tamenzhen','659002','1997','659002','street','塔门镇','80.799573','40.597311','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169678,'659002_nankoujiedao','659002','1997','659002','street','南口街道','81.298804','40.515367','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169679,'659002_jinyangzhen','659002','1997','659002','street','金杨镇','81.873439','40.928322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169680,'659002_xinjingzizhen','659002','1997','659002','street','新井子镇','80.027429','40.565638','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169681,'659002_jinyinchuanzhen','659002','1997','659002','street','金银川镇','80.086552','40.691135','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169682,'659002_ganquanzhen','659002','1997','659002','street','甘泉镇','79.814651','40.477280','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169683,'659002_bingtuannongyishishajingzishuiliguanlichu','659002','1997','659002','street','兵团农一师沙井子水利管理处','79.726734','40.436977','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169684,'659002_xingfulujiedao','659002','1997','659002','street','幸福路街道','81.270919','40.577037','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169685,'659002_changanzhen','659002','1997','659002','street','昌安镇','81.281049','40.575570','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169686,'659002_xinkailingzhen','659002','1997','659002','street','新开岭镇','80.616820','40.429603','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169687,'659002_xingfuzhen','659002','1997','659002','street','幸福镇','81.665359','40.707751','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169688,'659002_tananzhen','659002','1997','659002','street','塔南镇','81.360828','40.548449','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169689,'659002_jinyinchuanlujiedao','659002','1997','659002','street','金银川路街道','81.262521','40.536818','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169690,'659002_shuangchengzhen','659002','1997','659002','street','双城镇','80.403007','41.029144','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169691,'653100','650000','0998','653100','city','喀什地区','75.990618','39.470215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169692,'653129','653100','0998','653129','district','伽师县','76.723719','39.488181','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169693,'653131','653100','0998','653131','district','塔什库尔干塔吉克自治县','75.229889','37.772094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169694,'653127','653100','0998','653127','district','麦盖提县','77.609099','38.898986','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169695,'653126','653100','0998','653126','district','叶城县','77.413669','37.882994','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169696,'653125','653100','0998','653125','district','莎车县','77.223197','38.390881','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169697,'653124','653100','0998','653124','district','泽普县','77.260375','38.184639','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169698,'653130','653100','0998','653130','district','巴楚县','78.54799','39.79923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169699,'653123','653100','0998','653123','district','英吉沙县','76.175729','38.930381','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169700,'653128','653100','0998','653128','district','岳普湖县','76.821269','39.219857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169701,'653101','653100','0998','653101','district','喀什市','75.993936','39.46823','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169702,'653121','653100','0998','653121','district','疏附县','75.862839','39.375052','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169703,'653122','653100','0998','653122','district','疏勒县','76.047169','39.401173','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169704,'653000','650000','0908','653000','city','克孜勒苏柯尔克孜自治州','76.168157','39.716236','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169705,'653001','653000','0908','653001','district','阿图什市','76.084541','39.667719','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169706,'653024','653000','0908','653024','district','乌恰县','75.259228','39.7205','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169707,'653023','653000','0908','653023','district','阿合奇县','78.402073','40.937581','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169708,'653022','653000','0908','653022','district','阿克陶县','75.955053','39.147592','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169709,'650200','650000','0990','650200','city','克拉玛依市','84.889239','45.577712','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169710,'650205','650200','0990','650205','district','乌尔禾区','85.687497','46.093451','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169711,'650202','650200','0990','650202','district','独山子区','84.886973','44.328096','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169712,'650204','650200','0990','650204','district','白碱滩区','85.119047','45.685416','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169713,'650203','650200','0990','650203','district','克拉玛依区','84.867862','45.602347','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169714,'650400','650000','0995','650400','city','吐鲁番市','89.250261','42.972736','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169715,'650402','650400','0995','650402','district','高昌区','89.185891','42.942728','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169716,'650421','650400','0995','650421','district','鄯善县','90.242843','42.900575','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169717,'650422','650400','0995','650422','district','托克逊县','88.643739','42.802585','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169718,'650500','650000','0902','650500','city','哈密市','93.515053','42.819346','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169719,'650522','650500','0902','650522','district','伊吾县','94.697074','43.254978','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169720,'650521','650500','0902','650521','district','巴里坤哈萨克自治县','93.016563','43.598756','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169721,'650502','650500','0902','650502','district','伊州区','93.515085','42.827376','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169722,'659011','650000','2940','659011','city','新星市','93.74831','42.797043','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169723,'659011_bingtuanhongxingsichang','659011','2940','659011','street','兵团红星四场','94.068557','42.529865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169724,'659011_bingtuanhongxingyichang','659011','2940','659011','street','兵团红星一场','93.645240','42.686620','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169725,'659011_bingtuanhuangtiannongchang','659011','2940','659011','street','兵团黄田农场','93.719461','42.567696','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169726,'659003','650000','1998','659003','city','图木舒克市','79.074965','39.867776','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169727,'659003_haianzhen','659003','1998','659003','street','海安镇','78.756041','39.822379','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169728,'659003_tangyizhen','659003','1998','659003','street','唐驿镇','79.290232','39.988845','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169729,'659003_qianhaijiedao','659003','1998','659003','street','前海街道','79.077771','39.855038','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169730,'659003_kalabailezhen','659003','1998','659003','street','喀拉拜勒镇','79.011211','39.852615','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169731,'659003_qiganquelejiedao','659003','1998','659003','street','齐干却勒街道','79.090585','39.875314','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169732,'659003_jinhuyangzhen','659003','1998','659003','street','金胡杨镇','79.321433','40.031839','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169733,'659003_xiahezhen','659003','1998','659003','street','夏河镇','79.231481','39.954869','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169734,'659003_yonganzhen','659003','1998','659003','street','永安镇','79.192620','39.916764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169735,'659003_caohuzhen','659003','1998','659003','street','草湖镇','76.042807','39.242572','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169736,'659003_yonganbajiedao','659003','1998','659003','street','永安坝街道','79.025712','39.850697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169737,'652900','650000','0997','652900','city','阿克苏地区','80.265068','41.170712','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169738,'652926','652900','0997','652926','district','拜城县','81.851289','41.795289','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169739,'652925','652900','0997','652925','district','新和县','82.620371','41.552097','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169740,'652924','652900','0997','652924','district','沙雅县','82.781774','41.221413','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169741,'652902','652900','0997','652902','district','库车市','82.998544','41.719073','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169742,'652901','652900','0997','652901','district','阿克苏市','80.263387','41.16755','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169743,'652927','652900','0997','652927','district','乌什县','79.22118','41.222706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169744,'652928','652900','0997','652928','district','阿瓦提县','80.375053','40.643647','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169745,'652929','652900','0997','652929','district','柯坪县','79.054019','40.501645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169746,'652922','652900','0997','652922','district','温宿县','80.231563','41.273561','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169747,'650100','650000','0991','650100','city','乌鲁木齐市','87.616824','43.825377','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169748,'650107','650100','0991','650107','district','达坂城区','88.311099','43.363668','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169749,'650102','650100','0991','650102','district','天山区','87.631986','43.794312','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169750,'650121','650100','0991','650121','district','乌鲁木齐县','87.464257','43.509016','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169751,'650103','650100','0991','650103','district','沙依巴克区','87.598043','43.800994','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169752,'650106','650100','0991','650106','district','头屯河区','87.42582303','43.87605225','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169753,'650104','650100','0991','650104','district','新市区','87.592684','43.893023','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169754,'650105','650100','0991','650105','district','水磨沟区','87.64208','43.832714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169755,'650109','650100','0991','650109','district','米东区','87.655122','43.97444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169756,'659010','650000','0992','659010','city','胡杨河市','84.827592','44.692894','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169757,'659010_bingtuanyierjiutuan','659010','0992','659010','street','兵团一二九团','84.733352','44.711517','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169758,'659010_bingtuanyisanlingtuan','659010','0992','659010','street','兵团一三零团','84.642314','44.754040','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169759,'659004','650000','1994','659004','city','五家渠市','87.542852','44.166489','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169760,'659004_wutongzhen','659004','1994','659004','street','梧桐镇','87.592476','44.269442','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169761,'659004_renminlujiedao','659004','1994','659004','street','人民路街道','87.572823','44.182157','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169762,'659004_bingtuanyilingyituan','659004','1994','659004','street','兵团一零一团','87.556234','44.175160','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169763,'659004_caijiahuzhen','659004','1994','659004','street','蔡家湖镇','87.407474','44.531659','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169764,'659004_qinghulujiedao','659004','1994','659004','street','青湖路街道','87.524481','44.176392','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169765,'659004_junkenlujiedao','659004','1994','659004','street','军垦路街道','87.508160','44.188534','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169766,'420000','100000','','420000','province','湖北省','114.341552','30.546222','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169767,'420600','420000','0710','420600','city','襄阳市','112.121743','32.010161','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169768,'420625','420600','0710','420625','district','谷城县','111.653077','32.26339','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169769,'420684','420600','0710','420684','district','宜城市','112.256486','31.720278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169770,'420683','420600','0710','420683','district','枣阳市','112.772723','32.128968','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169771,'420626','420600','0710','420626','district','保康县','111.261308','31.87831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169772,'420624','420600','0710','420624','district','南漳县','111.838997','31.774649','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169773,'420607','420600','0710','420607','district','襄州区','112.211365','32.088651','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169774,'420602','420600','0710','420602','district','襄城区','112.134025','32.009932','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169775,'420606','420600','0710','420606','district','樊城区','112.135241','32.045065','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169776,'420682','420600','0710','420682','district','老河口市','111.683861','32.359068','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169777,'420300','420000','0719','420300','city','十堰市','110.798921','32.629057','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169778,'420304','420300','0719','420304','district','郧阳区','110.812101','32.834847','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169779,'420302','420300','0719','420302','district','茅箭区','110.813478','32.591847','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169780,'420303','420300','0719','420303','district','张湾区','110.769132','32.652297','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169781,'420324','420300','0719','420324','district','竹溪县','109.715322','32.318257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169782,'420323','420300','0719','420323','district','竹山县','110.229696','32.225039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169783,'420325','420300','0719','420325','district','房县','110.726754','32.04017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169784,'420381','420300','0719','420381','district','丹江口市','111.513318','32.540287','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169785,'420322','420300','0719','420322','district','郧西县','110.426005','32.993095','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169786,'420500','420000','0717','420500','city','宜昌市','111.286962','30.69217','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169787,'420527','420500','0717','420527','district','秭归县','110.97793','30.825882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169788,'420526','420500','0717','420526','district','兴山县','110.746831','31.348065','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169789,'420582','420500','0717','420582','district','当阳市','111.78836','30.820893','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169790,'420504','420500','0717','420504','district','点军区','111.268338','30.69343','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169791,'420581','420500','0717','420581','district','宜都市','111.450128','30.378444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169792,'420525','420500','0717','420525','district','远安县','111.640329','31.060904','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169793,'420529','420500','0717','420529','district','五峰土家族自治县','111.07374','30.156741','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169794,'420528','420500','0717','420528','district','长阳土家族自治县','111.20697','30.473038','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169795,'420502','420500','0717','420502','district','西陵区','111.285696','30.710765','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169796,'420506','420500','0717','420506','district','夷陵区','111.326371','30.769875','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169797,'420583','420500','0717','420583','district','枝江市','111.760616','30.425758','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169798,'420503','420500','0717','420503','district','伍家岗区','111.360882','30.644048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169799,'420505','420500','0717','420505','district','猇亭区','111.434378','30.531133','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169800,'420100','420000','027','420100','city','武汉市','114.304569','30.593354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169801,'420117','420100','027','420117','district','新洲区','114.801284','30.841304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169802,'420113','420100','027','420113','district','汉南区','114.084582','30.308776','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169803,'420114','420100','027','420114','district','蔡甸区','114.087279','30.536395','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169804,'420115','420100','027','420115','district','江夏区','114.320884','30.37558','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169805,'420106','420100','027','420106','district','武昌区','114.316464','30.55418','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169806,'420112','420100','027','420112','district','东西湖区','114.136295','30.620079','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169807,'420105','420100','027','420105','district','汉阳区','114.21859','30.554287','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169808,'420104','420100','027','420104','district','硚口区','114.214746','30.582559','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169809,'420116','420100','027','420116','district','黄陂区','114.375698','30.882305','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169810,'420111','420100','027','420111','district','洪山区','114.342664','30.500642','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169811,'420107','420100','027','420107','district','青山区','114.385424','30.639842','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169812,'420103','420100','027','420103','district','江汉区','114.270763','30.601129','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169813,'420102','420100','027','420102','district','江岸区','114.309317','30.600008','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169814,'421100','420000','0713','421100','city','黄冈市','114.872425','30.453722','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169815,'421181','421100','0713','421181','district','麻城市','115.008011','31.172917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169816,'421102','421100','0713','421102','district','黄州区','114.880104','30.434354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169817,'421124','421100','0713','421124','district','英山县','115.680953','30.734989','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169818,'421182','421100','0713','421182','district','武穴市','115.595451','29.869602','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169819,'421123','421100','0713','421123','district','罗田县','115.399149','30.783047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169820,'421121','421100','0713','421121','district','团风县','114.872364','30.643225','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169821,'421127','421100','0713','421127','district','黄梅县','115.944219','30.070453','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169822,'421125','421100','0713','421125','district','浠水县','115.265155','30.452212','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169823,'421126','421100','0713','421126','district','蕲春县','115.436423','30.226146','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169824,'421122','421100','0713','421122','district','红安县','114.618134','31.288167','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169825,'429006','420000','1728','429006','city','天门市','113.166545','30.663706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169826,'429006_hushizhen','429006','1728','429006','street','胡市镇','113.422187','30.802027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169827,'429006_huangtanzhen','429006','1728','429006','street','黄潭镇','113.038506','30.692160','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169828,'429006_duoxiangzhen','429006','1728','429006','street','多祥镇','113.357891','30.423413','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169829,'429006_chenhuguanweihui','429006','1728','429006','street','沉湖管委会','113.336326','30.513845','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169830,'429006_ganyizhen','429006','1728','429006','street','干驿镇','113.450967','30.502984','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169831,'429006_henglinzhen','429006','1728','429006','street','横林镇','113.214590','30.564294','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169832,'429006_mawanzhen','429006','1728','429006','street','马湾镇','113.312283','30.599323','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169833,'429006_jianghunongchang','429006','1728','429006','street','蒋湖农场','112.787693','30.632046','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169834,'429006_xiaobanzhen','429006','1728','429006','street','小板镇','113.263987','30.615139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169835,'429006_yuekouzhen','429006','1728','429006','street','岳口镇','113.105000','30.586764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169836,'429006_jiangchangzhen','429006','1728','429006','street','蒋场镇','112.927266','30.646031','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169837,'429006_shijiahezhen','429006','1728','429006','street','石家河镇','113.063918','30.763540','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169838,'429006_pengshizhen','429006','1728','429006','street','彭市镇','113.157308','30.431522','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169839,'429006_jiuzhenzhen','429006','1728','429006','street','九真镇','113.244103','30.788105','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169840,'429006_fozishanzhen','429006','1728','429006','street','佛子山镇','113.061395','30.699043','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169841,'429006_jinglingjiedao','429006','1728','429006','street','竟陵街道','113.182938','30.706618','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169842,'429006_houkoujiedao','429006','1728','429006','street','侯口街道','113.133899','30.652014','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169843,'429006_mayangzhen','429006','1728','429006','street','麻洋镇','113.309397','30.524900','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169844,'429006_yanglinjiedao','429006','1728','429006','street','杨林街道','113.265467','30.685636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169845,'429006_wangchangzhen','429006','1728','429006','street','汪场镇','112.978692','30.638003','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169846,'429006_baimaohunongchang','429006','1728','429006','street','白茅湖农场','113.063412','30.586804','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169847,'429006_zaoshizhen','429006','1728','429006','street','皂市镇','113.219641','30.800675','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169848,'429006_tuoshizhen','429006','1728','429006','street','拖市镇','112.841174','30.729303','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169849,'429006_lushizhen','429006','1728','429006','street','卢市镇','113.396655','30.659558','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169850,'429006_jingtanxiang','429006','1728','429006','street','净潭乡','113.450669','30.646405','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169851,'429006_yuxinzhen','429006','1728','429006','street','渔薪镇','112.927266','30.646031','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169852,'429006_zhanggangzhen','429006','1728','429006','street','张港镇','112.896375','30.654379','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169853,'429006_duobaozhen','429006','1728','429006','street','多宝镇','112.749108','30.776358','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169854,'420800','420000','0724','420800','city','荆门市','112.199009','31.035445','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169855,'420882','420800','0724','420882','district','京山市','113.119561','31.018414','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169856,'420822','420800','0724','420822','district','沙洋县','112.588675','30.709167','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169857,'420804','420800','0724','420804','district','掇刀区','112.2079','30.973397','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169858,'420881','420800','0724','420881','district','钟祥市','112.588801','31.167006','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169859,'420802','420800','0724','420802','district','东宝区','112.201657','31.05187','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169860,'429005','420000','2728','429005','city','潜江市','112.900279','30.401954','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169861,'429005_taifengjiedao','429005','2728','429005','street','泰丰街道','112.980898','30.416671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169862,'429005_guanghuasijiedao','429005','2728','429005','street','广华寺街道','112.666286','30.463319','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169863,'429005_zhoujiguanliqu','429005','2728','429005','street','周矶管理区','112.785657','30.463577','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169864,'429005_gaochangjiedao','429005','2728','429005','street','高场街道','112.774574','30.407577','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169865,'429005_zongkouguanliqu','429005','2728','429005','street','总口管理区','112.890449','30.258095','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169866,'429005_yunlianghuguanliqu','429005','2728','429005','street','运粮湖管理区','112.581820','30.252044','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169867,'429005_yuanlinjiedao','429005','2728','429005','street','园林街道','112.910007','30.376965','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169868,'429005_zhugentanzhen','429005','2728','429005','street','竹根滩镇','112.979245','30.471601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169869,'429005_bailuhuguanliqu','429005','2728','429005','street','白鹭湖管理区','112.715593','30.178757','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169870,'429005_yuyangzhen','429005','2728','429005','street','渔洋镇','112.966486','30.239237','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169871,'429005_xiongkouzhen','429005','2728','429005','street','熊口镇','112.724425','30.340363','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169872,'429005_xiongkouguanliqu','429005','2728','429005','street','熊口管理区','112.806208','30.256835','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169873,'429005_houhuguanliqu','429005','2728','429005','street','后湖管理区','112.767709','30.404874','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169874,'429005_yangshijiedao','429005','2728','429005','street','杨市街道','112.914959','30.383464','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169875,'429005_gaoshibeizhen','429005','2728','429005','street','高石碑镇','112.625570','30.620340','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169876,'429005_zhoujijiedao','429005','2728','429005','street','周矶街道','112.781398','30.391044','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169877,'429005_zekoujiedao','429005','2728','429005','street','泽口街道','112.915656','30.488160','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169878,'429005_laoxinzhen','429005','2728','429005','street','老新镇','112.887009','30.215033','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169879,'429005_longwanzhen','429005','2728','429005','street','龙湾镇','112.780855','30.253634','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169880,'429005_zhangjinzhen','429005','2728','429005','street','张金镇','112.635950','30.252063','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169881,'429005_wangchangzhen','429005','2728','429005','street','王场镇','112.781586','30.473035','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169882,'429005_haokouzhen','429005','2728','429005','street','浩口镇','112.566899','30.307792','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169883,'429005_jiyukouzhen','429005','2728','429005','street','积玉口镇','112.720009','30.418407','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169884,'420900','420000','0712','420900','city','孝感市','113.956962','30.918311','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169885,'420923','420900','0712','420923','district','云梦县','113.752958','31.021736','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169886,'420981','420900','0712','420981','district','应城市','113.571864','30.928592','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169887,'420902','420900','0712','420902','district','孝南区','113.910769','30.91695','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169888,'420984','420900','0712','420984','district','汉川市','113.838068','30.673219','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169889,'420982','420900','0712','420982','district','安陆市','113.688955','31.25565','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169890,'420921','420900','0712','420921','district','孝昌县','113.997794','31.258225','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169891,'420922','420900','0712','420922','district','大悟县','114.127122','31.561179','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169892,'422800','420000','0718','422800','city','恩施土家族苗族自治州','109.488076','30.272104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169893,'422822','422800','0718','422822','district','建始县','109.722333','30.602195','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169894,'422802','422800','0718','422802','district','利川市','108.936456','30.290974','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169895,'422826','422800','0718','422826','district','咸丰县','109.140163','29.665215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169896,'422827','422800','0718','422827','district','来凤县','109.407697','29.493474','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169897,'422828','422800','0718','422828','district','鹤峰县','110.034011','29.890073','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169898,'422823','422800','0718','422823','district','巴东县','110.340921','31.042854','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169899,'422801','422800','0718','422801','district','恩施市','109.479572','30.295148','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169900,'422825','422800','0718','422825','district','宣恩县','109.489918','29.986856','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169901,'429004','420000','0728','429004','city','仙桃市','113.442973','30.328407','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169902,'429004_tonghaikouzhen','429004','0728','429004','street','通海口镇','113.205730','30.272193','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169903,'429004_huchangzhen','429004','0728','429004','street','胡场镇','113.290392','30.427800','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169904,'429004_ganhejiedao','429004','0728','429004','street','干河街道','113.451023','30.375391','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169905,'429004_yanglinweizhen','429004','0728','429004','street','杨林尾镇','113.561091','30.201430','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169906,'429004_pengchangzhen','429004','0728','429004','street','彭场镇','113.445865','30.251787','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169907,'429004_mianchenghuizuzhen','429004','0728','429004','street','沔城回族镇','113.200597','30.192111','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169908,'429004_longhuashanjiedao','429004','0728','429004','street','龙华山街道','113.460323','30.364932','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169909,'429004_shahuyuanzhongchang','429004','0728','429004','street','沙湖原种场','113.642513','30.148174','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169910,'429004_zhengchangzhen','429004','0728','429004','street','郑场镇','112.978652','30.470679','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169911,'429004_guohezhen','429004','0728','429004','street','郭河镇','113.303624','30.302698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169912,'429004_shazuijiedao','429004','0728','429004','street','沙嘴街道','113.441389','30.359636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169913,'429004_paihufengjingqu','429004','0728','429004','street','排湖风景区','113.223499','30.298659','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169914,'429004_maozuizhen','429004','0728','429004','street','毛嘴镇','113.045359','30.418813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169915,'429004_zhanggouzhen','429004','0728','429004','street','张沟镇','113.438252','30.296766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169916,'429004_sanfutanzhen','429004','0728','429004','street','三伏潭镇','113.206929','30.339491','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169917,'429004_wuhuyuchang','429004','0728','429004','street','五湖渔场','113.768784','30.187345','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169918,'429004_xiliuhezhen','429004','0728','429004','street','西流河镇','113.762133','30.296361','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169919,'429004_zhangzhongkouzhen','429004','0728','429004','street','长埫口镇','113.597786','30.351206','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169920,'429004_duhujiedao','429004','0728','429004','street','杜湖街道','113.364736','30.306324','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169921,'429004_louhezhen','429004','0728','429004','street','剅河镇','112.987670','30.375691','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169922,'429004_shahuzhen','429004','0728','429004','street','沙湖镇','113.719820','30.118003','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169923,'429004_chenchangzhen','429004','0728','429004','street','陈场镇','113.059900','30.294262','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169924,'421200','420000','0715','421200','city','咸宁市','114.322601','29.84135','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169925,'421221','421200','0715','421221','district','嘉鱼县','113.939249','29.970575','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169926,'421202','421200','0715','421202','district','咸安区','114.299002','29.852726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169927,'421281','421200','0715','421281','district','赤壁市','113.900385','29.725122','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169928,'421223','421200','0715','421223','district','崇阳县','114.039484','29.556866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169929,'421222','421200','0715','421222','district','通城县','113.816811','29.2454','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169930,'421224','421200','0715','421224','district','通山县','114.482832','29.606468','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169931,'421000','420000','0716','421000','city','荆州市','112.24143','30.336282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169932,'421088','421000','0716','421088','district','监利市','112.904634','29.840229','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169933,'421024','421000','0716','421024','district','江陵县','112.424581','30.042227','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169934,'421083','421000','0716','421083','district','洪湖市','113.475984','29.827256','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169935,'421087','421000','0716','421087','district','松滋市','111.756455','30.174717','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169936,'421022','421000','0716','421022','district','公安县','112.229742','30.058519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169937,'421081','421000','0716','421081','district','石首市','112.42538','29.720944','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169938,'421002','421000','0716','421002','district','沙市区','112.251975','30.326693','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169939,'421003','421000','0716','421003','district','荆州区','112.190282','30.352984','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169940,'429021','420000','1719','429021','city','神农架林区','110.675879','31.745103','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169941,'429021_muyuzhen','429021','1719','429021','street','木鱼镇','110.566502','31.366101','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169942,'429021_xinhuazhen','429021','1719','429021','street','新华镇','110.842423','31.621763','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169943,'429021_songluoxiang','429021','1719','429021','street','宋洛乡','110.589789','31.730290','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169944,'429021_songbozhen','429021','1719','429021','street','松柏镇','110.609207','31.704132','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169945,'429021_yangrizhen','429021','1719','429021','street','阳日镇','110.763336','31.676979','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169946,'429021_hongpingzhen','429021','1719','429021','street','红坪镇','110.196111','31.471819','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169947,'429021_dajiuhuzhen','429021','1719','429021','street','大九湖镇','110.106251','31.408207','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169948,'429021_xiagupingtujiazuxiang','429021','1719','429021','street','下谷坪土家族乡','110.124191','31.394918','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169949,'421300','420000','0722','421300','city','随州市','113.382324','31.690275','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169950,'421321','421300','0722','421321','district','随县','113.29097','31.883233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169951,'421303','421300','0722','421303','district','曾都区','113.371052','31.716423','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169952,'421381','421300','0722','421381','district','广水市','113.825977','31.617015','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169953,'420700','420000','0711','420700','city','鄂州市','114.894909','30.391461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169954,'420702','420700','0711','420702','district','梁子湖区','114.684805','30.100146','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169955,'420703','420700','0711','420703','district','华容区','114.729945','30.53515','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169956,'420704','420700','0711','420704','district','鄂城区','114.89157','30.400535','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169957,'420200','420000','0714','420200','city','黄石市','115.038999','30.201082','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169958,'420205','420200','0714','420205','district','铁山区','114.891603','30.203152','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169959,'420203','420200','0714','420203','district','西塞山区','115.110067','30.205114','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169960,'420222','420200','0714','420222','district','阳新县','115.215211','29.830236','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169961,'420202','420200','0714','420202','district','黄石港区','115.065653','30.223194','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169962,'420204','420200','0714','420204','district','下陆区','114.960914','30.174148','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169963,'420281','420200','0714','420281','district','大冶市','114.98046','30.096263','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169964,'210000','100000','','210000','province','辽宁省','123.435093','41.836743','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169965,'211400','210000','0429','211400','city','葫芦岛市','120.836783','40.710974','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169966,'211422','211400','0429','211422','district','建昌县','119.836669','40.824484','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169967,'211403','211400','0429','211403','district','龙港区','120.894054','40.735717','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169968,'211481','211400','0429','211481','district','兴城市','120.756661','40.60999','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169969,'211421','211400','0429','211421','district','绥中县','120.34432','40.325576','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169970,'211404','211400','0429','211404','district','南票区','120.74971','41.10721','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169971,'211402','211400','0429','211402','district','连山区','120.869157','40.774784','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169972,'210200','210000','0411','210200','city','大连市','121.614786','38.913962','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169973,'210281','210200','0411','210281','district','瓦房店市','121.979463','39.62701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169974,'210283','210200','0411','210283','district','庄河市','122.965881','39.680825','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169975,'210214','210200','0411','210214','district','普兰店区','121.938299','39.391565','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169976,'210213','210200','0411','210213','district','金州区','121.782513','39.050211','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169977,'210224','210200','0411','210224','district','长海县','122.588487','39.272779','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169978,'210211','210200','0411','210211','district','甘井子区','121.525469','38.952998','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169979,'210212','210200','0411','210212','district','旅顺口区','121.261982','38.851742','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169980,'210202','210200','0411','210202','district','中山区','121.644996','38.918357','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169981,'210203','210200','0411','210203','district','西岗区','121.612461','38.914751','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169982,'210204','210200','0411','210204','district','沙河口区','121.594201','38.904771','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169983,'210600','210000','0415','210600','city','丹东市','124.354419','40.000646','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169984,'210682','210600','0415','210682','district','凤城市','124.066873','40.45218','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169985,'210604','210600','0415','210604','district','振安区','124.470005','40.20154','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169986,'210681','210600','0415','210681','district','东港市','124.152581','39.863193','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169987,'210603','210600','0415','210603','district','振兴区','124.383382','40.129706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169988,'210624','210600','0415','210624','district','宽甸满族自治县','124.783674','40.731319','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169989,'210602','210600','0415','210602','district','元宝区','124.395577','40.136549','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169990,'210700','210000','0416','210700','city','锦州市','121.126859','41.096114','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169991,'210711','210700','0416','210711','district','太和区','121.103445','41.109232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169992,'210781','210700','0416','210781','district','凌海市','121.35499','41.160636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169993,'210782','210700','0416','210782','district','北镇市','121.777503','41.588657','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169994,'210702','210700','0416','210702','district','古塔区','121.128414','41.117481','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169995,'210703','210700','0416','210703','district','凌河区','121.151069','41.115058','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169996,'210726','210700','0416','210726','district','黑山县','122.126645','41.653552','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169997,'210727','210700','0416','210727','district','义县','121.239558','41.533553','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169998,'210100','210000','024','210100','city','沈阳市','123.464675','41.677576','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(169999,'210114','210100','024','210114','district','于洪区','123.308062','41.793925','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170000,'210123','210100','024','210123','district','康平县','123.343701','42.727249','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170001,'210115','210100','024','210115','district','辽中区','122.766159','41.517449','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170002,'210106','210100','024','210106','district','铁西区','123.334781','41.821721','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170003,'210113','210100','024','210113','district','沈北新区','123.584209','41.913071','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170004,'210102','210100','024','210102','district','和平区','123.420401','41.789766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170005,'210181','210100','024','210181','district','新民市','122.835964','41.985757','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170006,'210124','210100','024','210124','district','法库县','123.440294','42.50108','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170007,'210112','210100','024','210112','district','浑南区','123.449597','41.714729','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170008,'210111','210100','024','210111','district','苏家屯区','123.343937','41.665153','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170009,'210104','210100','024','210104','district','大东区','123.469828','41.805292','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170010,'210103','210100','024','210103','district','沈河区','123.45884','41.795688','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170011,'210105','210100','024','210105','district','皇姑区','123.441468','41.824574','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170012,'211200','210000','0410','211200','city','铁岭市','123.726008','42.223709','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170013,'211282','211200','0410','211282','district','开原市','124.051886','42.577645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170014,'211204','211200','0410','211204','district','清河区','124.159232','42.54714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170015,'211281','211200','0410','211281','district','调兵山市','123.567039','42.468007','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170016,'211221','211200','0410','211221','district','铁岭县','123.728933','42.223395','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170017,'211202','211200','0410','211202','district','银州区','123.842472','42.286575','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170018,'211223','211200','0410','211223','district','西丰县','124.727491','42.738178','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170019,'211224','211200','0410','211224','district','昌图县','124.086628','42.779333','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170020,'210900','210000','0418','210900','city','阜新市','121.670052','42.022028','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170021,'210904','210900','0418','210904','district','太平区','121.678637','42.010689','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170022,'210905','210900','0418','210905','district','清河门区','121.416105','41.7831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170023,'210903','210900','0418','210903','district','新邱区','121.792067','42.087549','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170024,'210921','210900','0418','210921','district','阜新蒙古族自治县','121.757901','42.065175','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170025,'210922','210900','0418','210922','district','彰武县','122.538563','42.386264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170026,'210911','210900','0418','210911','district','细河区','121.680157','42.025412','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170027,'210902','210900','0418','210902','district','海州区','121.662594','42.017794','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170028,'210500','210000','0414','210500','city','本溪市','123.684984','41.486834','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170029,'210522','210500','0414','210522','district','桓仁满族自治县','125.361061','41.267048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170030,'210505','210500','0414','210505','district','南芬区','123.744822','41.100273','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170031,'210504','210500','0414','210504','district','明山区','123.861747','41.343624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170032,'210521','210500','0414','210521','district','本溪满族自治县','124.119545','41.301553','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170033,'210503','210500','0414','210503','district','溪湖区','123.767817','41.32931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170034,'210502','210500','0414','210502','district','平山区','123.769081','41.299658','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170035,'211000','210000','0419','211000','city','辽阳市','123.239669','41.267396','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170036,'211011','211000','0419','211011','district','太子河区','123.1814403','41.29502257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170037,'211005','211000','0419','211005','district','弓长岭区','123.419567','41.151787','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170038,'211081','211000','0419','211081','district','灯塔市','123.339398','41.426537','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170039,'211021','211000','0419','211021','district','辽阳县','123.106426','41.206246','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170040,'211004','211000','0419','211004','district','宏伟区','123.196725','41.217852','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170041,'211003','211000','0419','211003','district','文圣区','123.231262','41.282378','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170042,'211002','211000','0419','211002','district','白塔区','123.174347','41.270397','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170043,'210400','210000','0413','210400','city','抚顺市','123.957053','41.881311','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170044,'210422','210400','0413','210422','district','新宾满族自治县','125.039994','41.734031','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170045,'210421','210400','0413','210421','district','抚顺县','123.8999229','41.73009376','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170046,'210403','210400','0413','210403','district','东洲区','124.038491','41.853001','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170047,'210411','210400','0413','210411','district','顺城区','123.94504','41.883375','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170048,'210402','210400','0413','210402','district','新抚区','123.91293','41.861922','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170049,'210404','210400','0413','210404','district','望花区','123.784235','41.853484','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170050,'210423','210400','0413','210423','district','清原满族自治县','124.924028','42.100804','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170051,'211100','210000','0427','211100','city','盘锦市','122.170729','40.71956','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170052,'211122','211100','0427','211122','district','盘山县','121.996408','41.243367','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170053,'211102','211100','0427','211102','district','双台子区','122.07597','41.212401','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170054,'211103','211100','0427','211103','district','兴隆台区','122.070685','41.120261','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170055,'211104','211100','0427','211104','district','大洼区','122.082227','41.002679','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170056,'211300','210000','0421','211300','city','朝阳市','120.488801','41.601855','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170057,'211324','211300','0421','211324','district','喀喇沁左翼蒙古族自治县','119.741223','41.12815','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170058,'211382','211300','0421','211382','district','凌源市','119.401574','41.245445','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170059,'211381','211300','0421','211381','district','北票市','120.771389','41.801117','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170060,'211303','211300','0421','211303','district','龙城区','120.4133759','41.57674859','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170061,'211321','211300','0421','211321','district','朝阳县','120.390001','41.497923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170062,'211302','211300','0421','211302','district','双塔区','120.453717','41.565814','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170063,'211322','211300','0421','211322','district','建平县','119.64328','41.402891','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170064,'210300','210000','0412','210300','city','鞍山市','122.994183','41.108239','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170065,'210323','210300','0412','210323','district','岫岩满族自治县','123.280933','40.290995','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170066,'210304','210300','0412','210304','district','立山区','123.029091','41.150401','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170067,'210303','210300','0412','210303','district','铁西区','122.969531','41.119719','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170068,'210311','210300','0412','210311','district','千山区','122.9447506','41.0689014','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170069,'210302','210300','0412','210302','district','铁东区','122.990888','41.089578','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170070,'210321','210300','0412','210321','district','台安县','122.436037','41.412866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170071,'210381','210300','0412','210381','district','海城市','122.685176','40.882548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170072,'210800','210000','0417','210800','city','营口市','122.219148','40.625027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170073,'210803','210800','0417','210803','district','西市区','122.206431','40.666707','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170074,'210882','210800','0417','210882','district','大石桥市','122.509006','40.644482','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170075,'210804','210800','0417','210804','district','鲅鱼圈区','122.121764','40.226708','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170076,'210881','210800','0417','210881','district','盖州市','122.34845','40.400259','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170077,'210802','210800','0417','210802','district','站前区','122.259058','40.673063','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170078,'210811','210800','0417','210811','district','老边区','122.307956','40.671279','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170079,'370000','100000','','370000','province','山东省','117.020725','36.670201','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170080,'370500','370000','0546','370500','city','东营市','118.674633','37.433992','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170081,'370522','370500','0546','370522','district','利津县','118.255084','37.490919','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170082,'370523','370500','0546','370523','district','广饶县','118.419437','37.053915','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170083,'370502','370500','0546','370502','district','东营区','118.582182','37.449035','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170084,'370503','370500','0546','370503','district','河口区','118.525519','37.886217','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170085,'370505','370500','0546','370505','district','垦利区','118.575234','37.573412','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170086,'371600','370000','0543','371600','city','滨州市','117.970731','37.382687','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170087,'371602','371600','0543','371602','district','滨城区','118.019567','37.431997','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170088,'371625','371600','0543','371625','district','博兴县','118.110715','37.154529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170089,'371603','371600','0543','371603','district','沾化区','118.098962','37.698952','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170090,'371623','371600','0543','371623','district','无棣县','117.625846','37.770579','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170091,'371681','371600','0543','371681','district','邹平市','117.74313','36.863393','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170092,'371621','371600','0543','371621','district','惠民县','117.593744','37.47528','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170093,'371622','371600','0543','371622','district','阳信县','117.603407','37.632773','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170094,'371500','370000','0635','371500','city','聊城市','115.985238','36.455857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170095,'371525','371500','0635','371525','district','冠县','115.441684','36.484011','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170096,'371503','371500','0635','371503','district','茌平区','116.254865','36.580814','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170097,'371526','371500','0635','371526','district','高唐县','116.230126','36.84715','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170098,'371581','371500','0635','371581','district','临清市','115.704982','36.83828','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170099,'371502','371500','0635','371502','district','东昌府区','116.006399','36.412737','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170100,'371522','371500','0635','371522','district','莘县','115.669843','36.233711','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170101,'371524','371500','0635','371524','district','东阿县','116.247655','36.335198','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170102,'371521','371500','0635','371521','district','阳谷县','115.791822','36.114392','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170103,'370600','370000','0535','370600','city','烟台市','121.447755','37.464551','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170104,'370683','370600','0535','370683','district','莱州市','119.942057','37.178187','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170105,'370612','370600','0535','370612','district','牟平区','121.601015','37.387454','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170106,'370614','370600','0535','370614','district','蓬莱区','120.829141','37.795697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170107,'370602','370600','0535','370602','district','芝罘区','121.400303','37.541312','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170108,'370687','370600','0535','370687','district','海阳市','121.173506','36.688316','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170109,'370681','370600','0535','370681','district','龙口市','120.47614','37.645281','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170110,'370682','370600','0535','370682','district','莱阳市','120.711555','36.979757','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170111,'370686','370600','0535','370686','district','栖霞市','120.849595','37.335993','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170112,'370685','370600','0535','370685','district','招远市','120.433904','37.354517','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170113,'370613','370600','0535','370613','district','莱山区','121.444949','37.511322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170114,'370611','370600','0535','370611','district','福山区','121.267638','37.49833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170115,'371000','370000','0631','371000','city','威海市','122.120519','37.513315','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170116,'371083','371000','0631','371083','district','乳山市','121.539557','36.920329','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170117,'371002','371000','0631','371002','district','环翠区','122.123115','37.501735','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170118,'371082','371000','0631','371082','district','荣成市','122.487036','37.165698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170119,'371003','371000','0631','371003','district','文登区','122.08832','37.196032','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170120,'370200','370000','0532','370200','city','青岛市','120.382665','36.066938','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170121,'370285','370200','0532','370285','district','莱西市','120.517581','36.889167','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170122,'370283','370200','0532','370283','district','平度市','119.970192','36.753895','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170123,'370212','370200','0532','370212','district','崂山区','120.469282','36.107069','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170124,'370215','370200','0532','370215','district','即墨区','120.447691','36.390217','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170125,'370214','370200','0532','370214','district','城阳区','120.396255','36.307624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170126,'370211','370200','0532','370211','district','黄岛区','120.19777','35.960688','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170127,'370281','370200','0532','370281','district','胶州市','120.033382','36.26468','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170128,'370203','370200','0532','370203','district','市北区','120.374675','36.08765','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170129,'370202','370200','0532','370202','district','市南区','120.412002','36.075867','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170130,'370213','370200','0532','370213','district','李沧区','120.432652','36.145987','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170131,'370900','370000','0538','370900','city','泰安市','117.086963','36.201784','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170132,'370983','370900','0538','370983','district','肥城市','116.769098','36.181975','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170133,'370982','370900','0538','370982','district','新泰市','117.768069','35.90953','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170134,'370921','370900','0538','370921','district','宁阳县','116.805578','35.758919','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170135,'370923','370900','0538','370923','district','东平县','116.470211','35.937049','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170136,'370902','370900','0538','370902','district','泰山区','117.128828','36.194963','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170137,'370911','370900','0538','370911','district','岱岳区','117.041651','36.188088','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170138,'370300','370000','0533','370300','city','淄博市','118.054994','36.813787','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170139,'370305','370300','0533','370305','district','临淄区','118.309398','36.826882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170140,'370304','370300','0533','370304','district','博山区','117.8627','36.495014','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170141,'370303','370300','0533','370303','district','张店区','118.017877','36.807011','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170142,'370323','370300','0533','370323','district','沂源县','118.170856','36.185402','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170143,'370302','370300','0533','370302','district','淄川区','117.966978','36.644211','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170144,'370306','370300','0533','370306','district','周村区','117.869686','36.80309','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170145,'370322','370300','0533','370322','district','高青县','117.826743','37.171042','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170146,'370321','370300','0533','370321','district','桓台县','118.097923','36.959794','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170147,'371100','370000','0633','371100','city','日照市','119.52685','35.416912','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170148,'371122','371100','0633','371122','district','莒县','118.869059','35.59125','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170149,'371103','371100','0633','371103','district','岚山区','119.31881','35.121985','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170150,'371102','371100','0633','371102','district','东港区','119.462287','35.426037','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170151,'371121','371100','0633','371121','district','五莲县','119.213673','35.760154','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170152,'371300','370000','0539','371300','city','临沂市','118.356464','35.103771','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170153,'371321','371300','0539','371321','district','沂南县','118.465259','35.550078','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170154,'371312','371300','0539','371312','district','河东区','118.403073','35.088936','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170155,'371323','371300','0539','371323','district','沂水县','118.628142','35.790919','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170156,'371328','371300','0539','371328','district','蒙阴县','117.953367','35.720128','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170157,'371326','371300','0539','371326','district','平邑县','117.615201','35.516849','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170158,'371311','371300','0539','371311','district','罗庄区','118.284693','34.997061','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170159,'371302','371300','0539','371302','district','兰山区','118.347332','35.052797','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170160,'371325','371300','0539','371325','district','费县','117.9776','35.265851','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170161,'371324','371300','0539','371324','district','兰陵县','118.070912','34.858235','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170162,'371329','371300','0539','371329','district','临沭县','118.650828','34.920171','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170163,'371322','371300','0539','371322','district','郯城县','118.390701','34.619281','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170164,'371327','371300','0539','371327','district','莒南县','118.835166','35.206252','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170165,'370100','370000','0531','370100','city','济南市','117.120128','36.652069','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170166,'370117','370100','0531','370117','district','钢城区','117.811604','36.059393','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170167,'370113','370100','0531','370113','district','长清区','116.752101','36.554251','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170168,'370126','370100','0531','370126','district','商河县','117.157165','37.309694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170169,'370114','370100','0531','370114','district','章丘区','117.526228','36.681258','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170170,'370116','370100','0531','370116','district','莱芜区','117.675828','36.214895','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170171,'370103','370100','0531','370103','district','市中区','116.997472','36.651121','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170172,'370104','370100','0531','370104','district','槐荫区','116.901057','36.652264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170173,'370124','370100','0531','370124','district','平阴县','116.455865','36.289813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170174,'370112','370100','0531','370112','district','历城区','117.065233','36.680731','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170175,'370115','370100','0531','370115','district','济阳区','117.173722','36.978299','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170176,'370102','370100','0531','370102','district','历下区','117.07632','36.666395','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170177,'370105','370100','0531','370105','district','天桥区','116.987106','36.678665','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170178,'371400','370000','0534','371400','city','德州市','116.359244','37.436492','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170179,'371422','371400','0534','371422','district','宁津县','116.800279','37.652456','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170180,'371481','371400','0534','371481','district','乐陵市','117.232085','37.729769','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170181,'371428','371400','0534','371428','district','武城县','116.069312','37.213398','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170182,'371427','371400','0534','371427','district','夏津县','116.001796','36.948013','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170183,'371425','371400','0534','371425','district','齐河县','116.762767','36.784164','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170184,'371423','371400','0534','371423','district','庆云县','117.384163','37.774376','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170185,'371402','371400','0534','371402','district','德城区','116.299558','37.451051','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170186,'371426','371400','0534','371426','district','平原县','116.434016','37.165453','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170187,'371424','371400','0534','371424','district','临邑县','116.866568','37.190139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170188,'371482','371400','0534','371482','district','禹城市','116.638558','36.934198','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170189,'371403','371400','0534','371403','district','陵城区','116.576148','37.336444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170190,'370700','370000','0536','370700','city','潍坊市','119.161721','36.707668','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170191,'370783','370700','0536','370783','district','寿光市','118.791062','36.857133','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170192,'370786','370700','0536','370786','district','昌邑市','119.403185','36.843256','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170193,'370785','370700','0536','370785','district','高密市','119.80584','36.365658','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170194,'370703','370700','0536','370703','district','寒亭区','119.211251','36.755925','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170195,'370781','370700','0536','370781','district','青州市','118.479637','36.685178','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170196,'370782','370700','0536','370782','district','诸城市','119.410051','35.996404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170197,'370784','370700','0536','370784','district','安丘市','119.21892','36.479642','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170198,'370724','370700','0536','370724','district','临朐县','118.543274','36.51246','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170199,'370704','370700','0536','370704','district','坊子区','119.166343','36.653671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170200,'370705','370700','0536','370705','district','奎文区','119.132288','36.707459','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170201,'370702','370700','0536','370702','district','潍城区','119.02491','36.728077','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170202,'370725','370700','0536','370725','district','昌乐县','118.841035','36.688035','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170203,'371700','370000','0530','371700','city','菏泽市','115.479646','35.234309','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170204,'371703','371700','0530','371703','district','定陶区','115.583172','35.105742','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170205,'371724','371700','0530','371724','district','巨野县','116.062585','35.388543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170206,'371723','371700','0530','371723','district','成武县','115.889775','34.95278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170207,'371728','371700','0530','371728','district','东明县','115.107402','35.275664','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170208,'371702','371700','0530','371702','district','牡丹区','115.417021','35.251911','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170209,'371725','371700','0530','371725','district','郓城县','115.938939','35.575276','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170210,'371726','371700','0530','371726','district','鄄城县','115.544507','35.534088','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170211,'371721','371700','0530','371721','district','曹县','115.556393','34.85875','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170212,'371722','371700','0530','371722','district','单县','116.106396','34.779282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170213,'370400','370000','0632','370400','city','枣庄市','117.323759','34.810858','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170214,'370402','370400','0632','370402','district','市中区','117.556125','34.863791','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170215,'370404','370400','0632','370404','district','峄城区','117.590738','34.772931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170216,'370403','370400','0632','370403','district','薛城区','117.286371','34.783282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170217,'370405','370400','0632','370405','district','台儿庄区','117.734287','34.563103','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170218,'370406','370400','0632','370406','district','山亭区','117.461866','35.099638','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170219,'370481','370400','0632','370481','district','滕州市','117.165881','35.11412','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170220,'370800','370000','0537','370800','city','济宁市','116.587116','35.415117','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170221,'370827','370800','0537','370827','district','鱼台县','116.650526','35.012706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170222,'370826','370800','0537','370826','district','微山县','117.129188','34.806657','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170223,'370832','370800','0537','370832','district','梁山县','116.131779','35.765957','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170224,'370829','370800','0537','370829','district','嘉祥县','116.342308','35.40794','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170225,'370831','370800','0537','370831','district','泗水县','117.250824','35.664719','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170226,'370830','370800','0537','370830','district','汶上县','116.497277','35.711891','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170227,'370883','370800','0537','370883','district','邹城市','117.007406','35.402536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170228,'370811','370800','0537','370811','district','任城区','116.605763','35.444226','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170229,'370812','370800','0537','370812','district','兖州区','116.78365','35.551938','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170230,'370881','370800','0537','370881','district','曲阜市','116.986212','35.581933','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170231,'370828','370800','0537','370828','district','金乡县','116.337271','35.073419','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170232,'610000','100000','','610000','province','陕西省','108.953939','34.266611','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170233,'611000','610000','0914','611000','city','商洛市','109.918646','33.873358','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170234,'611023','611000','0914','611023','district','商南县','110.881741','33.531071','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170235,'611002','611000','0914','611002','district','商州区','109.941452','33.862979','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170236,'611026','611000','0914','611026','district','柞水县','109.114006','33.686048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170237,'611022','611000','0914','611022','district','丹凤县','110.327542','33.696254','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170238,'611024','611000','0914','611024','district','山阳县','109.882289','33.532172','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170239,'611025','611000','0914','611025','district','镇安县','109.152833','33.423764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170240,'611021','611000','0914','611021','district','洛南县','110.148526','34.090815','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170241,'610700','610000','0916','610700','city','汉中市','107.02319','33.066373','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170242,'610726','610700','0916','610726','district','宁强县','106.257636','32.830032','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170243,'610727','610700','0916','610727','district','略阳县','106.15658','33.327293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170244,'610729','610700','0916','610729','district','留坝县','106.920781','33.617637','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170245,'610725','610700','0916','610725','district','勉县','106.673217','33.153636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170246,'610703','610700','0916','610703','district','南郑区','106.936235','33.000034','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170247,'610702','610700','0916','610702','district','汉台区','107.03201','33.067523','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170248,'610722','610700','0916','610722','district','城固县','107.333787','33.156937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170249,'610724','610700','0916','610724','district','西乡县','107.766477','32.983282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170250,'610730','610700','0916','610730','district','佛坪县','107.990551','33.524261','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170251,'610728','610700','0916','610728','district','镇巴县','107.895015','32.536706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170252,'610723','610700','0916','610723','district','洋县','107.545678','33.222808','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170253,'610600','610000','0911','610600','city','延安市','109.49468','36.650109','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170254,'610603','610600','0911','610603','district','安塞区','109.329236','36.864571','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170255,'610681','610600','0911','610681','district','子长市','109.675284','37.142462','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170256,'610626','610600','0911','610626','district','吴起县','108.176501','36.92746','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170257,'610602','610600','0911','610602','district','宝塔区','109.489726','36.585138','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170258,'610625','610600','0911','610625','district','志丹县','108.767816','36.822232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170259,'610622','610600','0911','610622','district','延川县','110.193503','36.878324','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170260,'610621','610600','0911','610621','district','延长县','110.012455','36.579354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170261,'610630','610600','0911','610630','district','宜川县','110.168963','36.050178','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170262,'610628','610600','0911','610628','district','富县','109.37884','35.988111','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170263,'610627','610600','0911','610627','district','甘泉县','109.351046','36.276645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170264,'610631','610600','0911','610631','district','黄龙县','109.84029','35.584655','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170265,'610632','610600','0911','610632','district','黄陵县','109.262919','35.579421','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170266,'610629','610600','0911','610629','district','洛川县','109.43249','35.762626','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170267,'610100','610000','029','610100','city','西安市','108.939645','34.343207','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170268,'610116','610100','029','610116','district','长安区','108.906944','34.158668','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170269,'610122','610100','029','610122','district','蓝田县','109.323473','34.151256','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170270,'610114','610100','029','610114','district','阎良区','109.226124','34.662232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170271,'610117','610100','029','610117','district','高陵区','109.088269','34.53502','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170272,'610112','610100','029','610112','district','未央区','108.946665','34.293109','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170273,'610124','610100','029','610124','district','周至县','108.222219','34.163592','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170274,'610111','610100','029','610111','district','灞桥区','109.064675','34.273111','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170275,'610115','610100','029','610115','district','临潼区','109.214249','34.367181','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170276,'610104','610100','029','610104','district','莲湖区','108.944161','34.26535','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170277,'610113','610100','029','610113','district','雁塔区','108.948592','34.222517','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170278,'610118','610100','029','610118','district','鄠邑区','108.604772','34.108707','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170279,'610103','610100','029','610103','district','碑林区','108.940681','34.256727','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170280,'610102','610100','029','610102','district','新城区','108.960707','34.266601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170281,'610800','610000','0912','610800','city','榆林市','109.734104','38.28576','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170282,'610802','610800','0912','610802','district','榆阳区','109.72054','38.277078','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170283,'610881','610800','0912','610881','district','神木市','110.466867','38.899742','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170284,'610824','610800','0912','610824','district','靖边县','108.794153','37.600351','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170285,'610831','610800','0912','610831','district','子洲县','110.035124','37.610554','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170286,'610829','610800','0912','610829','district','吴堡县','110.739726','37.452179','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170287,'610830','610800','0912','610830','district','清涧县','110.121181','37.088921','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170288,'610826','610800','0912','610826','district','绥德县','110.263226','37.502984','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170289,'610825','610800','0912','610825','district','定边县','107.601048','37.594976','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170290,'610803','610800','0912','610803','district','横山区','109.294144','37.962477','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170291,'610827','610800','0912','610827','district','米脂县','110.183984','37.755134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170292,'610822','610800','0912','610822','district','府谷县','111.016431','39.015658','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170293,'610828','610800','0912','610828','district','佳县','110.491345','38.01951','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170294,'610500','610000','0913','610500','city','渭南市','109.470962','34.520632','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170295,'610527','610500','0913','610527','district','白水县','109.590501','35.177497','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170296,'610525','610500','0913','610525','district','澄城县','109.932439','35.190256','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170297,'610526','610500','0913','610526','district','蒲城县','109.586263','34.955755','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170298,'610528','610500','0913','610528','district','富平县','109.179903','34.751599','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170299,'610524','610500','0913','610524','district','合阳县','110.149412','35.237881','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170300,'610581','610500','0913','610581','district','韩城市','110.44295','35.477145','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170301,'610502','610500','0913','610502','district','临渭区','109.510051','34.498902','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170302,'610523','610500','0913','610523','district','大荔县','109.941784','34.797073','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170303,'610582','610500','0913','610582','district','华阴市','110.092286','34.566552','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170304,'610522','610500','0913','610522','district','潼关县','110.246105','34.544294','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170305,'610503','610500','0913','610503','district','华州区','109.775765','34.497019','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170306,'610900','610000','0915','610900','city','安康市','109.029017','32.685435','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170307,'610924','610900','0915','610924','district','紫阳县','108.534291','32.520209','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170308,'610927','610900','0915','610927','district','镇坪县','109.526873','31.883672','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170309,'610929','610900','0915','610929','district','白河县','110.112608','32.80901','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170310,'610926','610900','0915','610926','district','平利县','109.361919','32.389061','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170311,'610921','610900','0915','610921','district','汉阴县','108.508792','32.893057','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170312,'610922','610900','0915','610922','district','石泉县','108.248061','33.03805','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170313,'610925','610900','0915','610925','district','岚皋县','108.902049','32.307001','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170314,'610923','610900','0915','610923','district','宁陕县','108.314299','33.310284','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170315,'610902','610900','0915','610902','district','汉滨区','109.026928','32.695436','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170316,'610981','610900','0915','610981','district','旬阳市','109.361783','32.832213','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170317,'610300','610000','0917','610300','city','宝鸡市','107.237682','34.362862','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170318,'610327','610300','0917','610327','district','陇县','106.864404','34.892985','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170319,'610328','610300','0917','610328','district','千阳县','107.132421','34.642374','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170320,'610303','610300','0917','610303','district','金台区','107.232733','34.397071','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170321,'610302','610300','0917','610302','district','渭滨区','107.155344','34.355068','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170322,'610330','610300','0917','610330','district','凤县','106.515841','33.910797','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170323,'610304','610300','0917','610304','district','陈仓区','107.368993','34.35073','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170324,'610305','610300','0917','610305','district','凤翔区','107.401029','34.522167','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170325,'610323','610300','0917','610323','district','岐山县','107.621397','34.44373','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170326,'610329','610300','0917','610329','district','麟游县','107.793524','34.677902','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170327,'610324','610300','0917','610324','district','扶风县','107.900157','34.375636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170328,'610326','610300','0917','610326','district','眉县','107.750039','34.274774','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170329,'610331','610300','0917','610331','district','太白县','107.318932','34.058299','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170330,'610200','610000','0919','610200','city','铜川市','108.945116','34.897133','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170331,'610222','610200','0919','610222','district','宜君县','109.117063','35.398624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170332,'610202','610200','0919','610202','district','王益区','109.075615','35.068925','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170333,'610203','610200','0919','610203','district','印台区','109.099848','35.11454','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170334,'610204','610200','0919','610204','district','耀州区','108.980095','34.909685','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170335,'610400','610000','0910','610400','city','咸阳市','108.708837','34.329896','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170336,'610424','610400','0910','610424','district','乾县','108.239316','34.528262','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170337,'610422','610400','0910','610422','district','三原县','108.940754','34.617282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170338,'610403','610400','0910','610403','district','杨陵区','108.084661','34.272084','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170339,'610431','610400','0910','610431','district','武功县','108.200275','34.261026','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170340,'610428','610400','0910','610428','district','长武县','107.79906','35.206273','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170341,'610482','610400','0910','610482','district','彬州市','108.081892','35.035702','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170342,'610426','610400','0910','610426','district','永寿县','108.142197','34.69188','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170343,'610404','610400','0910','610404','district','渭城区','108.737062','34.36202','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170344,'610423','610400','0910','610423','district','泾阳县','108.843029','34.526557','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170345,'610481','610400','0910','610481','district','兴平市','108.490497','34.299199','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170346,'610425','610400','0910','610425','district','礼泉县','108.424682','34.481875','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170347,'610429','610400','0910','610429','district','旬邑县','108.333815','35.111787','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170348,'610402','610400','0910','610402','district','秦都区','108.706347','34.329478','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170349,'610430','610400','0910','610430','district','淳化县','108.580164','34.798596','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170350,'310000','100000','','310000','province','上海市','121.473667','31.230525','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170351,'310100','310000','021','310100','city','上海城区','121.472644','31.231706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170352,'310151','310100','021','310151','district','崇明区','121.397662','31.623863','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170353,'310115','310100','021','310115','district','浦东新区','121.544346','31.221461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170354,'310116','310100','021','310116','district','金山区','121.341774','30.742769','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170355,'310110','310100','021','310110','district','杨浦区','121.525409','31.259588','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170356,'310109','310100','021','310109','district','虹口区','121.504994','31.264917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170357,'310106','310100','021','310106','district','静安区','121.447348','31.227718','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170358,'310105','310100','021','310105','district','长宁区','121.424751','31.220537','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170359,'310120','310100','021','310120','district','奉贤区','121.473945','30.918406','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170360,'310118','310100','021','310118','district','青浦区','121.124249','31.15098','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170361,'310107','310100','021','310107','district','普陀区','121.39547','31.249618','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170362,'310113','310100','021','310113','district','宝山区','121.489431','31.405242','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170363,'310114','310100','021','310114','district','嘉定区','121.265276','31.375566','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170364,'310112','310100','021','310112','district','闵行区','121.380857','31.112834','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170365,'310117','310100','021','310117','district','松江区','121.227676','31.03257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170366,'310104','310100','021','310104','district','徐汇区','121.436307','31.188334','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170367,'310101','310100','021','310101','district','黄浦区','121.48442','31.231661','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170368,'520000','100000','','520000','province','贵州省','106.705251','26.600328','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170369,'520300','520000','0852','520300','city','遵义市','107.031922','27.721931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170370,'520323','520300','0852','520323','district','绥阳县','107.191326','27.946049','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170371,'520329','520300','0852','520329','district','余庆县','107.906043','27.21513','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170372,'520325','520300','0852','520325','district','道真仡佬族苗族自治县','107.613076','28.862548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170373,'520330','520300','0852','520330','district','习水县','106.19715','28.332923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170374,'520381','520300','0852','520381','district','赤水市','105.697501','28.590474','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170375,'520328','520300','0852','520328','district','湄潭县','107.465492','27.748942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170376,'520327','520300','0852','520327','district','凤冈县','107.71646','27.954424','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170377,'520304','520300','0852','520304','district','播州区','106.829081','27.535735','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170378,'520303','520300','0852','520303','district','汇川区','106.933727','27.749716','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170379,'520302','520300','0852','520302','district','红花岗区','106.893598','27.644793','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170380,'520324','520300','0852','520324','district','正安县','107.454463','28.553507','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170381,'520326','520300','0852','520326','district','务川仡佬族苗族自治县','107.899353','28.562921','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170382,'520382','520300','0852','520382','district','仁怀市','106.401322','27.791883','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170383,'520322','520300','0852','520322','district','桐梓县','106.824661','28.132991','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170384,'520600','520000','0856','520600','city','铜仁市','109.189528','27.731555','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170385,'520623','520600','0856','520623','district','石阡县','108.223686','27.513499','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170386,'520628','520600','0856','520628','district','松桃苗族自治县','109.202877','28.15427','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170387,'520622','520600','0856','520622','district','玉屏侗族自治县','108.906415','27.235816','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170388,'520602','520600','0856','520602','district','碧江区','109.264271','27.815244','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170389,'520603','520600','0856','520603','district','万山区','109.153685','27.671268','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170390,'520626','520600','0856','520626','district','德江县','108.120773','28.264028','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170391,'520627','520600','0856','520627','district','沿河土家族自治县','108.503152','28.564083','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170392,'520621','520600','0856','520621','district','江口县','108.843993','27.704883','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170393,'520625','520600','0856','520625','district','印江土家族苗族自治县','108.409638','27.994442','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170394,'520624','520600','0856','520624','district','思南县','108.253798','27.937464','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170395,'520200','520000','0858','520200','city','六盘水市','104.830357','26.592538','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170396,'520281','520200','0858','520281','district','盘州市','104.471554','25.709878','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170397,'520203','520200','0858','520203','district','六枝特区','105.477199','26.214356','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170398,'520201','520200','0858','520201','district','钟山区','104.843723','26.574699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170399,'520204','520200','0858','520204','district','水城区','104.957871','26.547604','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170400,'522700','520000','0854','522700','city','黔南布依族苗族自治州','107.522303','26.253136','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170401,'522727','522700','0854','522727','district','平塘县','107.322635','25.822395','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170402,'522722','522700','0854','522722','district','荔波县','107.88057','25.402528','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170403,'522728','522700','0854','522728','district','罗甸县','106.751724','25.42616','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170404,'522702','522700','0854','522702','district','福泉市','107.520371','26.686773','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170405,'522701','522700','0854','522701','district','都匀市','107.518628','26.259456','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170406,'522729','522700','0854','522729','district','长顺县','106.44057','26.003187','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170407,'522723','522700','0854','522723','district','贵定县','107.232208','26.557205','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170408,'522730','522700','0854','522730','district','龙里县','106.979177','26.453546','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170409,'522731','522700','0854','522731','district','惠水县','106.656993','26.132045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170410,'522732','522700','0854','522732','district','三都水族自治县','107.869489','25.983572','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170411,'522726','522700','0854','522726','district','独山县','107.557591','25.865418','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170412,'522725','522700','0854','522725','district','瓮安县','107.471307','27.07838','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170413,'520400','520000','0853','520400','city','安顺市','105.9476','26.253103','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170414,'520402','520400','0853','520402','district','西秀区','105.966086','26.243928','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170415,'520425','520400','0853','520425','district','紫云苗族布依族自治县','106.084441','25.751047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170416,'520403','520400','0853','520403','district','平坝区','106.255768','26.405968','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170417,'520422','520400','0853','520422','district','普定县','105.743156','26.301876','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170418,'520423','520400','0853','520423','district','镇宁布依族苗族自治县','105.770543','26.057248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170419,'520424','520400','0853','520424','district','关岭布依族苗族自治县','105.538335','25.953518','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170420,'522300','520000','0859','522300','city','黔西南布依族苗族自治州','104.906419','25.087733','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170421,'522328','522300','0859','522328','district','安龙县','105.442702','25.099014','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170422,'522325','522300','0859','522325','district','贞丰县','105.64976','25.38558','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170423,'522326','522300','0859','522326','district','望谟县','106.094864','25.174204','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170424,'522301','522300','0859','522301','district','兴义市','104.895503','25.09196','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170425,'522323','522300','0859','522323','district','普安县','104.953289','25.784225','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170426,'522302','522300','0859','522302','district','兴仁市','105.186132','25.43509','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170427,'522324','522300','0859','522324','district','晴隆县','105.218956','25.834729','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170428,'522327','522300','0859','522327','district','册亨县','105.811592','24.983663','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170429,'522600','520000','0855','522600','city','黔东南苗族侗族自治州','107.982838','26.583759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170430,'522634','522600','0855','522634','district','雷山县','108.078217','26.378892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170431,'522632','522600','0855','522632','district','榕江县','108.52188','25.931893','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170432,'522627','522600','0855','522627','district','天柱县','109.207826','26.909548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170433,'522633','522600','0855','522633','district','从江县','108.904998','25.754638','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170434,'522630','522600','0855','522630','district','台江县','108.321244','26.667525','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170435,'522635','522600','0855','522635','district','麻江县','107.589455','26.49129','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170436,'522629','522600','0855','522629','district','剑河县','108.441501','26.728274','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170437,'522624','522600','0855','522624','district','三穗县','108.675265','26.953359','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170438,'522626','522600','0855','522626','district','岑巩县','108.815855','27.174124','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170439,'522636','522600','0855','522636','district','丹寨县','107.789301','26.19857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170440,'522631','522600','0855','522631','district','黎平县','109.125826','26.213304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170441,'522601','522600','0855','522601','district','凯里市','107.981409','26.5662','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170442,'522625','522600','0855','522625','district','镇远县','108.429536','27.049033','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170443,'522623','522600','0855','522623','district','施秉县','108.124531','27.033107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170444,'522622','522600','0855','522622','district','黄平县','107.916651','26.905278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170445,'522628','522600','0855','522628','district','锦屏县','109.200808','26.675919','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170446,'520100','520000','0851','520100','city','贵阳市','106.628201','26.646694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170447,'520121','520100','0851','520121','district','开阳县','106.964716','27.057823','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170448,'520123','520100','0851','520123','district','修文县','106.591958','26.836048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170449,'520113','520100','0851','520113','district','白云区','106.623069','26.677932','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170450,'520181','520100','0851','520181','district','清镇市','106.473131','26.572978','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170451,'520102','520100','0851','520102','district','南明区','106.714305','26.568055','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170452,'520112','520100','0851','520112','district','乌当区','106.75069','26.630911','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170453,'520111','520100','0851','520111','district','花溪区','106.67026','26.409817','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170454,'520122','520100','0851','520122','district','息烽县','106.740407','27.090479','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170455,'520115','520100','0851','520115','district','观山湖区','106.598978','26.616134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170456,'520103','520100','0851','520103','district','云岩区','106.724394','26.604604','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170457,'520500','520000','0857','520500','city','毕节市','105.291544','27.283615','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170458,'520523','520500','0857','520523','district','金沙县','106.220112','27.458601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170459,'520581','520500','0857','520581','district','黔西市','106.032277','27.008681','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170460,'520524','520500','0857','520524','district','织金县','105.770249','26.663649','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170461,'520525','520500','0857','520525','district','纳雍县','105.414578','26.779344','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170462,'520521','520500','0857','520521','district','大方县','105.601963','27.14443','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170463,'520502','520500','0857','520502','district','七星关区','105.305219','27.298304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170464,'520527','520500','0857','520527','district','赫章县','104.728011','27.117933','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170465,'520526','520500','0857','520526','district','威宁彝族回族苗族自治县','104.252787','26.873872','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170466,'500000','100000','','500000','province','重庆市','106.551787','29.56268','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170467,'500200','500000','023','500200','city','重庆郊县','108.170255','29.291965','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170468,'500238','500200','023','500238','district','巫溪县','109.570038','31.398619','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170469,'500236','500200','023','500236','district','奉节县','109.401056','31.018505','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170470,'500243','500200','023','500243','district','彭水苗族土家族自治县','108.165571','29.293748','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170471,'500241','500200','023','500241','district','秀山土家族苗族自治县','109.007096','28.448248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170472,'500240','500200','023','500240','district','石柱土家族自治县','108.114251','29.999066','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170473,'500237','500200','023','500237','district','巫山县','109.878995','31.07478','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170474,'500230','500200','023','500230','district','丰都县','107.731056','29.863785','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170475,'500229','500200','023','500229','district','城口县','108.664349','31.947319','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170476,'500242','500200','023','500242','district','酉阳土家族苗族自治县','108.76726','28.841409','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170477,'500233','500200','023','500233','district','忠县','108.038073','30.299817','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170478,'500231','500200','023','500231','district','垫江县','107.332511','30.327548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170479,'500235','500200','023','500235','district','云阳县','108.6975','30.930628','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170480,'500100','500000','023','500100','city','重庆城区','106.504962','29.533155','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170481,'500117','500100','023','500117','district','合川区','106.27617','29.971968','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170482,'500152','500100','023','500152','district','潼南区','105.840487','30.191077','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170483,'500115','500100','023','500115','district','长寿区','107.080945','29.857916','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170484,'500151','500100','023','500151','district','铜梁区','106.056265','29.845248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170485,'500111','500100','023','500111','district','大足区','105.721825','29.707555','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170486,'500104','500100','023','500104','district','大渡口区','106.482299','29.484464','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170487,'500107','500100','023','500107','district','九龙坡区','106.510515','29.502325','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170488,'500114','500100','023','500114','district','黔江区','108.770677','29.533609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170489,'500108','500100','023','500108','district','南岸区','106.644254','29.50109','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170490,'500156','500100','023','500156','district','武隆区','107.759955','29.325707','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170491,'500110','500100','023','500110','district','綦江区','106.651213','29.028117','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170492,'500102','500100','023','500102','district','涪陵区','107.246521','29.752475','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170493,'500109','500100','023','500109','district','北碚区','106.395593','29.805197','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170494,'500119','500100','023','500119','district','南川区','107.099147','29.157879','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170495,'500118','500100','023','500118','district','永川区','105.926951','29.356384','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170496,'500153','500100','023','500153','district','荣昌区','105.6118','29.416892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170497,'500154','500100','023','500154','district','开州区','108.39336','31.160416','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170498,'500116','500100','023','500116','district','江津区','106.264435','29.319984','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170499,'500113','500100','023','500113','district','巴南区','106.540603','29.402348','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170500,'500120','500100','023','500120','district','璧山区','106.204885','29.577455','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170501,'500106','500100','023','500106','district','沙坪坝区','106.456939','29.541017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170502,'500103','500100','023','500103','district','渝中区','106.568955','29.552642','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170503,'500155','500100','023','500155','district','梁平区','107.769568','30.654233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170504,'500105','500100','023','500105','district','江北区','106.574395','29.606224','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170505,'500112','500100','023','500112','district','渝北区','106.631155','29.718087','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170506,'500101','500100','023','500101','district','万州区','108.408591','30.807621','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170507,'340000','100000','','340000','province','安徽省','117.330139','31.734559','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170508,'340700','340000','0562','340700','city','铜陵市','117.811298','30.945214','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170509,'340711','340700','0562','340711','district','郊区','117.767919','30.821699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170510,'340705','340700','0562','340705','district','铜官区','117.856541','30.936772','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170511,'340722','340700','0562','340722','district','枞阳县','117.250191','30.705466','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170512,'340706','340700','0562','340706','district','义安区','117.937405','30.950619','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170513,'341700','340000','0566','341700','city','池州市','117.495663','30.674264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170514,'341702','341700','0566','341702','district','贵池区','117.568087','30.688237','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170515,'341722','341700','0566','341722','district','石台县','117.486211','30.210218','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170516,'341723','341700','0566','341723','district','青阳县','117.847366','30.639006','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170517,'341721','341700','0566','341721','district','东至县','117.027533','30.111182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170518,'340800','340000','0556','340800','city','安庆市','117.115349','30.531828','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170519,'340881','340800','0556','340881','district','桐城市','116.936588','31.035476','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170520,'340828','340800','0556','340828','district','岳西县','116.359732','30.849716','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170521,'340803','340800','0556','340803','district','大观区','117.013469','30.553697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170522,'340825','340800','0556','340825','district','太湖县','116.30881','30.454198','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170523,'340827','340800','0556','340827','district','望江县','116.70641','30.128404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170524,'340826','340800','0556','340826','district','宿松县','116.134485','30.171663','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170525,'340811','340800','0556','340811','district','宜秀区','116.987469','30.613189','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170526,'340802','340800','0556','340802','district','迎江区','117.090878','30.512768','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170527,'340882','340800','0556','340882','district','潜山市','116.581224','30.631022','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170528,'340822','340800','0556','340822','district','怀宁县','116.829612','30.73484','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170529,'340600','340000','0561','340600','city','淮北市','116.798362','33.956264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170530,'340602','340600','0561','340602','district','杜集区','116.827949','33.991412','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170531,'340603','340600','0561','340603','district','相山区','116.795233','33.959927','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170532,'340604','340600','0561','340604','district','烈山区','116.813221','33.895407','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170533,'340621','340600','0561','340621','district','濉溪县','116.76616','33.915612','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170534,'340500','340000','0555','340500','city','马鞍山市','118.50685','31.668765','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170535,'340506','340500','0555','340506','district','博望区','118.818276','31.55117','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170536,'340523','340500','0555','340523','district','和县','118.353668','31.74248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170537,'340522','340500','0555','340522','district','含山县','118.101448','31.735559','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170538,'340521','340500','0555','340521','district','当涂县','118.497873','31.570857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170539,'340504','340500','0555','340504','district','雨山区','118.498675','31.682374','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170540,'340503','340500','0555','340503','district','花山区','118.511366','31.700127','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170541,'341000','340000','0559','341000','city','黄山市','118.337643','29.714886','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170542,'341003','341000','0559','341003','district','黄山区','118.141632','30.272991','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170543,'341022','341000','0559','341022','district','休宁县','118.193533','29.784532','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170544,'341024','341000','0559','341024','district','祁门县','117.717452','29.854179','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170545,'341023','341000','0559','341023','district','黟县','117.938139','29.92477','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170546,'341004','341000','0559','341004','district','徽州区','118.336799','29.827291','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170547,'341002','341000','0559','341002','district','屯溪区','118.315012','29.69655','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170548,'341021','341000','0559','341021','district','歙县','118.415258','29.861354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170549,'340400','340000','0554','340400','city','淮南市','117.018603','32.585384','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170550,'340406','340400','0554','340406','district','潘集区','116.834715','32.77208','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170551,'340405','340400','0554','340405','district','八公山区','116.832979','32.630922','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170552,'340404','340400','0554','340404','district','谢家集区','116.860026','32.599173','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170553,'340421','340400','0554','340421','district','凤台县','116.710947','32.710536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170554,'340403','340400','0554','340403','district','田家庵区','117.017263','32.647456','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170555,'340402','340400','0554','340402','district','大通区','117.053314','32.631519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170556,'340422','340400','0554','340422','district','寿县','116.798203','32.545027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170557,'341100','340000','0550','341100','city','滁州市','118.333439','32.255904','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170558,'341126','341100','0550','341126','district','凤阳县','117.531791','32.875714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170559,'341125','341100','0550','341125','district','定远县','117.698528','32.530741','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170560,'341182','341100','0550','341182','district','明光市','118.018197','32.78193','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170561,'341124','341100','0550','341124','district','全椒县','118.274149','32.08593','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170562,'341181','341100','0550','341181','district','天长市','119.004838','32.667409','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170563,'341122','341100','0550','341122','district','来安县','118.432581','32.423072','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170564,'341103','341100','0550','341103','district','南谯区','118.416715','32.200084','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170565,'341102','341100','0550','341102','district','琅琊区','118.32115','32.334475','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170566,'340300','340000','0552','340300','city','蚌埠市','117.388566','32.91682','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170567,'340322','340300','0552','340322','district','五河县','117.881312','33.126532','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170568,'340311','340300','0552','340311','district','淮上区','117.359352','32.96557','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170569,'340304','340300','0552','340304','district','禹会区','117.34186','32.929715','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170570,'340303','340300','0552','340303','district','蚌山区','117.373347','32.916393','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170571,'340302','340300','0552','340302','district','龙子湖区','117.454544','32.90863','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170572,'340321','340300','0552','340321','district','怀远县','117.205083','32.971543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170573,'340323','340300','0552','340323','district','固镇县','117.316585','33.318371','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170574,'341300','340000','0557','341300','city','宿州市','116.96419','33.647726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170575,'341302','341300','0557','341302','district','埇桥区','116.977039','33.640205','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170576,'341323','341300','0557','341323','district','灵璧县','117.549321','33.554464','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170577,'341322','341300','0557','341322','district','萧县','116.947289','34.18884','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170578,'341321','341300','0557','341321','district','砀山县','116.366257','34.442139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170579,'341324','341300','0557','341324','district','泗县','117.910277','33.483686','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170580,'341600','340000','0558','341600','city','亳州市','115.778588','33.846285','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170581,'341602','341600','0558','341602','district','谯城区','115.779081','33.876436','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170582,'341621','341600','0558','341621','district','涡阳县','116.21665','33.494134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170583,'341622','341600','0558','341622','district','蒙城县','116.56434','33.265671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170584,'341623','341600','0558','341623','district','利辛县','116.206396','33.158424','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170585,'341800','340000','0563','341800','city','宣城市','118.759127','30.939278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170586,'341825','341800','0563','341825','district','旌德县','118.550043','30.298287','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170587,'341881','341800','0563','341881','district','宁国市','118.983085','30.634032','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170588,'341824','341800','0563','341824','district','绩溪县','118.578519','30.067533','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170589,'341821','341800','0563','341821','district','郎溪县','119.184326','31.142995','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170590,'341823','341800','0563','341823','district','泾县','118.419552','30.688793','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170591,'341802','341800','0563','341802','district','宣州区','118.786098','30.944356','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170592,'341882','341800','0563','341882','district','广德市','119.420799','30.877608','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170593,'340200','340000','0553','340200','city','芜湖市','118.433065','31.352614','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170594,'340209','340200','0553','340209','district','弋江区','118.372664','31.311421','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170595,'340212','340200','0553','340212','district','繁昌区','118.198536','31.101766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170596,'340202','340200','0553','340202','district','镜湖区','118.385133','31.34056','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170597,'340207','340200','0553','340207','district','鸠江区','118.392337','31.369752','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170598,'340223','340200','0553','340223','district','南陵县','118.334083','30.914621','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170599,'340281','340200','0553','340281','district','无为市','117.902265','31.304462','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170600,'340210','340200','0553','340210','district','湾沚区','118.576124','31.134809','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170601,'340100','340000','0551','340100','city','合肥市','117.227267','31.820567','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170602,'340103','340100','0551','340103','district','庐阳区','117.265088','31.878722','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170603,'340124','340100','0551','340124','district','庐江县','117.288165','31.256978','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170604,'340111','340100','0551','340111','district','包河区','117.310133','31.793801','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170605,'340181','340100','0551','340181','district','巢湖市','117.890236','31.624464','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170606,'340102','340100','0551','340102','district','瑶海区','117.30944','31.858111','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170607,'340121','340100','0551','340121','district','长丰县','117.167632','32.478347','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170608,'340122','340100','0551','340122','district','肥东县','117.4779','31.878601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170609,'340123','340100','0551','340123','district','肥西县','117.158416','31.707006','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170610,'340104','340100','0551','340104','district','蜀山区','117.26053','31.851211','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170611,'341500','340000','0564','341500','city','六安市','116.519729','31.735892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170612,'341525','341500','0564','341525','district','霍山县','116.348274','31.409668','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170613,'341523','341500','0564','341523','district','舒城县','116.94863','31.462036','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170614,'341504','341500','0564','341504','district','叶集区','115.925271','31.863693','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170615,'341524','341500','0564','341524','district','金寨县','115.934253','31.727295','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170616,'341502','341500','0564','341502','district','金安区','116.539458','31.75014','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170617,'341503','341500','0564','341503','district','裕安区','116.479505','31.738789','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170618,'341522','341500','0564','341522','district','霍邱县','116.277966','32.353362','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170619,'341200','340000','1558','341200','city','阜阳市','115.814252','32.891032','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170620,'341202','341200','1558','341202','district','颍州区','115.806916','32.883322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170621,'341221','341200','1558','341221','district','临泉县','115.26312','33.038884','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170622,'341204','341200','1558','341204','district','颍泉区','115.807415','32.925461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170623,'341226','341200','1558','341226','district','颍上县','116.256772','32.653211','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170624,'341282','341200','1558','341282','district','界首市','115.374688','33.257799','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170625,'341225','341200','1558','341225','district','阜南县','115.596003','32.659681','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170626,'341203','341200','1558','341203','district','颍东区','115.856728','32.91173','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170627,'341222','341200','1558','341222','district','太和县','115.621941','33.160327','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170628,'350000','100000','','350000','province','福建省','119.296194','26.101082','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170629,'350900','350000','0593','350900','city','宁德市','119.547729','26.666222','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170630,'350982','350900','0593','350982','district','福鼎市','120.216559','27.324796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170631,'350902','350900','0593','350902','district','蕉城区','119.526284','26.660658','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170632,'350921','350900','0593','350921','district','霞浦县','120.005267','26.885971','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170633,'350922','350900','0593','350922','district','古田县','118.74603','26.578134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170634,'350981','350900','0593','350981','district','福安市','119.647871','27.088274','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170635,'350924','350900','0593','350924','district','寿宁县','119.514589','27.45467','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170636,'350926','350900','0593','350926','district','柘荣县','119.900597','27.23421','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170637,'350925','350900','0593','350925','district','周宁县','119.338998','27.104797','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170638,'350923','350900','0593','350923','district','屏南县','118.985759','26.908256','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170639,'350100','350000','0591','350100','city','福州市','119.296411','26.074286','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170640,'350123','350100','0591','350123','district','罗源县','119.549129','26.490215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170641,'350124','350100','0591','350124','district','闽清县','118.863334','26.221099','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170642,'350122','350100','0591','350122','district','连江县','119.539542','26.197737','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170643,'350181','350100','0591','350181','district','福清市','119.384388','25.720081','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170644,'350112','350100','0591','350112','district','长乐区','119.593579','25.888274','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170645,'350128','350100','0591','350128','district','平潭县','119.789893','25.498767','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170646,'350103','350100','0591','350103','district','台江区','119.31419','26.052826','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170647,'350125','350100','0591','350125','district','永泰县','118.932746','25.867198','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170648,'350111','350100','0591','350111','district','晋安区','119.328591','26.081963','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170649,'350102','350100','0591','350102','district','鼓楼区','119.304507','26.082666','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170650,'350105','350100','0591','350105','district','马尾区','119.439259','25.998657','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170651,'350104','350100','0591','350104','district','仓山区','119.27322','26.047027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170652,'350121','350100','0591','350121','district','闽侯县','119.131362','26.150428','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170653,'350300','350000','0594','350300','city','莆田市','119.007662','25.454202','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170654,'350305','350300','0594','350305','district','秀屿区','119.105177','25.318649','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170655,'350304','350300','0594','350304','district','荔城区','119.014821','25.432268','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170656,'350302','350300','0594','350302','district','城厢区','118.994261','25.419062','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170657,'350303','350300','0594','350303','district','涵江区','119.116173','25.459057','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170658,'350322','350300','0594','350322','district','仙游县','118.689745','25.373373','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170659,'350500','350000','0595','350500','city','泉州市','118.675724','24.874452','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170660,'350504','350500','0595','350504','district','洛江区','118.671168','24.939319','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170661,'350521','350500','0595','350521','district','惠安县','118.781037','25.012449','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170662,'350582','350500','0595','350582','district','晋江市','118.551659','24.781635','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170663,'350583','350500','0595','350583','district','南安市','118.385929','24.960056','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170664,'350527','350500','0595','350527','district','金门县','118.323912','24.434368','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170665,'350505','350500','0595','350505','district','泉港区','118.915804','25.120399','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170666,'350581','350500','0595','350581','district','石狮市','118.647945','24.731969','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170667,'350526','350500','0595','350526','district','德化县','118.241104','25.492102','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170668,'350503','350500','0595','350503','district','丰泽区','118.613007','24.890373','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170669,'350502','350500','0595','350502','district','鲤城区','118.58652','24.908133','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170670,'350525','350500','0595','350525','district','永春县','118.29416','25.321849','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170671,'350524','350500','0595','350524','district','安溪县','118.186295','25.056065','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170672,'350200','350000','0592','350200','city','厦门市','118.08891','24.479627','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170673,'350206','350200','0592','350206','district','湖里区','118.146825','24.512858','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170674,'350203','350200','0592','350203','district','思明区','118.082745','24.445676','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170675,'350213','350200','0592','350213','district','翔安区','118.247911','24.618583','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170676,'350212','350200','0592','350212','district','同安区','118.150823','24.723299','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170677,'350211','350200','0592','350211','district','集美区','118.097407','24.575976','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170678,'350205','350200','0592','350205','district','海沧区','118.032883','24.484688','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170679,'350600','350000','0596','350600','city','漳州市','117.647298','24.515297','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170680,'350604','350600','0596','350604','district','龙海区','117.818485','24.446839','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170681,'350623','350600','0596','350623','district','漳浦县','117.613783','24.11741','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170682,'350626','350600','0596','350626','district','东山县','117.4295','23.702034','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170683,'350605','350600','0596','350605','district','长泰区','117.759119','24.625989','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170684,'350628','350600','0596','350628','district','平和县','117.314798','24.363831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170685,'350624','350600','0596','350624','district','诏安县','117.175314','23.711674','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170686,'350603','350600','0596','350603','district','龙文区','117.711188','24.503523','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170687,'350622','350600','0596','350622','district','云霄县','117.334351','23.935433','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170688,'350629','350600','0596','350629','district','华安县','117.53411','25.00445','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170689,'350602','350600','0596','350602','district','芗城区','117.653727','24.510937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170690,'350627','350600','0596','350627','district','南靖县','117.357061','24.5151','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170691,'350400','350000','0598','350400','city','三明市','117.638919','26.263455','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170692,'350429','350400','0598','350429','district','泰宁县','117.175448','26.900244','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170693,'350430','350400','0598','350430','district','建宁县','116.848488','26.833566','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170694,'350426','350400','0598','350426','district','尤溪县','118.189772','26.168712','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170695,'350425','350400','0598','350425','district','大田县','117.846828','25.692535','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170696,'350404','350400','0598','350404','district','三元区','117.646153','26.271653','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170697,'350405','350400','0598','350405','district','沙县区','117.792551','26.396843','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170698,'350421','350400','0598','350421','district','明溪县','117.202119','26.355938','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170699,'350424','350400','0598','350424','district','宁化县','116.654369','26.262298','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170700,'350423','350400','0598','350423','district','清流县','116.816772','26.177658','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170701,'350481','350400','0598','350481','district','永安市','117.365046','25.941671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170702,'350428','350400','0598','350428','district','将乐县','117.471127','26.728917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170703,'350800','350000','0597','350800','city','龙岩市','117.017362','25.075884','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170704,'350824','350800','0597','350824','district','武平县','116.100216','25.096139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170705,'350803','350800','0597','350803','district','永定区','116.732216','24.724148','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170706,'350823','350800','0597','350823','district','上杭县','116.419447','25.049867','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170707,'350802','350800','0597','350802','district','新罗区','117.036816','25.098942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170708,'350881','350800','0597','350881','district','漳平市','117.419823','25.290481','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170709,'350825','350800','0597','350825','district','连城县','116.754472','25.710538','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170710,'350821','350800','0597','350821','district','长汀县','116.357581','25.833531','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170711,'350700','350000','0599','350700','city','南平市','118.081325','27.382829','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170712,'350722','350700','0599','350722','district','浦城县','118.541079','27.917804','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170713,'350723','350700','0599','350723','district','光泽县','117.333812','27.541061','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170714,'350782','350700','0599','350782','district','武夷山市','118.035321','27.756422','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170715,'350703','350700','0599','350703','district','建阳区','118.120392','27.331996','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170716,'350724','350700','0599','350724','district','松溪县','118.785429','27.526028','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170717,'350725','350700','0599','350725','district','政和县','118.857703','27.366122','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170718,'350702','350700','0599','350702','district','延平区','118.181806','26.637503','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170719,'350783','350700','0599','350783','district','建瓯市','118.304712','27.023233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170720,'350781','350700','0599','350781','district','邵武市','117.492778','27.340672','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170721,'350721','350700','0599','350721','district','顺昌县','117.809433','26.793455','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170722,'430000','100000','','430000','province','湖南省','112.982951','28.116007','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170723,'430600','430000','0730','430600','city','岳阳市','113.128922','29.35648','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170724,'430623','430600','0730','430623','district','华容县','112.540448','29.530775','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170725,'430603','430600','0730','430603','district','云溪区','113.272312','29.472745','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170726,'430602','430600','0730','430602','district','岳阳楼区','113.129362','29.371356','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170727,'430682','430600','0730','430682','district','临湘市','113.450461','29.476687','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170728,'430626','430600','0730','430626','district','平江县','113.581296','28.702018','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170729,'430621','430600','0730','430621','district','岳阳县','113.116152','29.144681','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170730,'430611','430600','0730','430611','district','君山区','113.006434','29.461017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170731,'430681','430600','0730','430681','district','汨罗市','113.067097','28.806937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170732,'430624','430600','0730','430624','district','湘阴县','112.909248','28.690123','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170733,'431200','430000','0745','431200','city','怀化市','110.001598','27.569813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170734,'431230','431200','0745','431230','district','通道侗族自治县','109.784409','26.158032','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170735,'431222','431200','0745','431222','district','沅陵县','110.393782','28.452103','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170736,'431223','431200','0745','431223','district','辰溪县','110.183159','28.006235','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170737,'431224','431200','0745','431224','district','溆浦县','110.594419','27.908869','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170738,'431225','431200','0745','431225','district','会同县','109.734724','26.887156','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170739,'431226','431200','0745','431226','district','麻阳苗族自治县','109.817703','27.857666','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170740,'431221','431200','0745','431221','district','中方县','109.945436','27.440554','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170741,'431281','431200','0745','431281','district','洪江市','109.836475','27.209385','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170742,'431227','431200','0745','431227','district','新晃侗族自治县','109.174808','27.352094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170743,'431229','431200','0745','431229','district','靖州苗族侗族自治县','109.696249','26.575111','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170744,'431228','431200','0745','431228','district','芷江侗族自治县','109.684696','27.443429','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170745,'431202','431200','0745','431202','district','鹤城区','110.040099','27.578581','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170746,'433100','430000','0743','433100','city','湘西土家族苗族自治州','109.673345','28.215983','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170747,'433127','433100','0743','433127','district','永顺县','109.857142','28.979819','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170748,'433125','433100','0743','433125','district','保靖县','109.660433','28.699939','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170749,'433126','433100','0743','433126','district','古丈县','109.95072','28.616971','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170750,'433122','433100','0743','433122','district','泸溪县','110.219619','28.216109','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170751,'433130','433100','0743','433130','district','龙山县','109.443974','29.457623','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170752,'433124','433100','0743','433124','district','花垣县','109.482378','28.57191','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170753,'433101','433100','0743','433101','district','吉首市','109.698348','28.261948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170754,'433123','433100','0743','433123','district','凤凰县','109.580815','27.957441','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170755,'430900','430000','0737','430900','city','益阳市','112.355994','28.554853','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170756,'430902','430900','0737','430902','district','资阳区','112.324286','28.59149','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170757,'430922','430900','0737','430922','district','桃江县','112.156432','28.518215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170758,'430923','430900','0737','430923','district','安化县','111.213296','28.374223','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170759,'430981','430900','0737','430981','district','沅江市','112.354657','28.845755','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170760,'430921','430900','0737','430921','district','南县','112.396323','29.362396','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170761,'430903','430900','0737','430903','district','赫山区','112.373895','28.58011','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170762,'430400','430000','0734','430400','city','衡阳市','112.572016','26.894216','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170763,'430421','430400','0734','430421','district','衡阳县','112.370649','26.970258','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170764,'430412','430400','0734','430412','district','南岳区','112.737678','27.231846','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170765,'430423','430400','0734','430423','district','衡山县','112.868361','27.230225','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170766,'430405','430400','0734','430405','district','珠晖区','112.620653','26.894796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170767,'430407','430400','0734','430407','district','石鼓区','112.597937','26.944257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170768,'430482','430400','0734','430482','district','常宁市','112.399894','26.421717','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170769,'430424','430400','0734','430424','district','衡东县','112.953113','27.081086','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170770,'430426','430400','0734','430426','district','祁东县','112.090319','26.799284','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170771,'430481','430400','0734','430481','district','耒阳市','112.859806','26.422149','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170772,'430422','430400','0734','430422','district','衡南县','112.677572','26.739665','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170773,'430406','430400','0734','430406','district','雁峰区','112.613914','26.840335','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170774,'430408','430400','0734','430408','district','蒸湘区','112.567333','26.912388','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170775,'430300','430000','0732','430300','city','湘潭市','112.945439','27.83136','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170776,'430304','430300','0732','430304','district','岳塘区','112.969444','27.872013','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170777,'430302','430300','0732','430302','district','雨湖区','112.907334','27.856115','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170778,'430382','430300','0732','430382','district','韶山市','112.525364','27.914796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170779,'430321','430300','0732','430321','district','湘潭县','112.950767','27.779669','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170780,'430381','430300','0732','430381','district','湘乡市','112.550268','27.718655','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170781,'430800','430000','0744','430800','city','张家界市','110.478887','29.117343','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170782,'430802','430800','0744','430802','district','永定区','110.537379','29.119662','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170783,'430822','430800','0744','430822','district','桑植县','110.204804','29.414112','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170784,'430811','430800','0744','430811','district','武陵源区','110.550309','29.345721','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170785,'430821','430800','0744','430821','district','慈利县','111.139424','29.430429','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170786,'430700','430000','0736','430700','city','常德市','111.69905','29.031446','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170787,'430781','430700','0736','430781','district','津市市','111.877957','29.606512','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170788,'430723','430700','0736','430723','district','澧县','111.758806','29.633138','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170789,'430721','430700','0736','430721','district','安乡县','112.171107','29.41131','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170790,'430724','430700','0736','430724','district','临澧县','111.647547','29.440813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170791,'430726','430700','0736','430726','district','石门县','111.380056','29.584344','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170792,'430703','430700','0736','430703','district','鼎城区','111.679896','29.017596','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170793,'430722','430700','0736','430722','district','汉寿县','111.970725','28.906063','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170794,'430725','430700','0736','430725','district','桃源县','111.488985','28.90232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170795,'430702','430700','0736','430702','district','武陵区','111.683043','29.055332','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170796,'430100','430000','0731','430100','city','长沙市','112.938882','28.228304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170797,'430104','430100','0731','430104','district','岳麓区','112.930116','28.234202','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170798,'430181','430100','0731','430181','district','浏阳市','113.64328','28.163866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170799,'430182','430100','0731','430182','district','宁乡市','112.551887','28.277709','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170800,'430112','430100','0731','430112','district','望城区','112.83125','28.353221','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170801,'430105','430100','0731','430105','district','开福区','112.985284','28.257286','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170802,'430103','430100','0731','430103','district','天心区','112.98978','28.114544','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170803,'430111','430100','0731','430111','district','雨花区','113.03853','28.135795','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170804,'430102','430100','0731','430102','district','芙蓉区','113.032605','28.185351','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170805,'430121','430100','0731','430121','district','长沙县','113.080555','28.246821','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170806,'430200','430000','0733','430200','city','株洲市','113.132783','27.828862','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170807,'430202','430200','0733','430202','district','荷塘区','113.173169','27.856314','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170808,'430223','430200','0733','430223','district','攸县','113.397152','27.01516','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170809,'430211','430200','0733','430211','district','天元区','113.082227','27.826738','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170810,'430212','430200','0733','430212','district','渌口区','113.143832','27.699361','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170811,'430204','430200','0733','430204','district','石峰区','113.117763','27.875513','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170812,'430224','430200','0733','430224','district','茶陵县','113.537907','26.777957','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170813,'430225','430200','0733','430225','district','炎陵县','113.772665','26.489847','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170814,'430203','430200','0733','430203','district','芦淞区','113.153455','27.785198','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170815,'430281','430200','0733','430281','district','醴陵市','113.497119','27.6457','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170816,'431000','430000','0735','431000','city','郴州市','113.015517','25.770117','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170817,'431025','431000','0735','431025','district','临武县','112.563833','25.276459','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170818,'431023','431000','0735','431023','district','永兴县','113.116587','26.127155','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170819,'431003','431000','0735','431003','district','苏仙区','113.042364','25.799624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170820,'431002','431000','0735','431002','district','北湖区','113.010606','25.784632','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170821,'431026','431000','0735','431026','district','汝城县','113.685193','25.533024','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170822,'431022','431000','0735','431022','district','宜章县','112.948806','25.40059','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170823,'431028','431000','0735','431028','district','安仁县','113.269703','26.708569','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170824,'431024','431000','0735','431024','district','嘉禾县','112.379216','25.616025','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170825,'431027','431000','0735','431027','district','桂东县','113.944792','26.077609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170826,'431081','431000','0735','431081','district','资兴市','113.235841','25.977226','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170827,'431021','431000','0735','431021','district','桂阳县','112.733804','25.75382','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170828,'431100','430000','0746','431100','city','永州市','111.613482','26.419861','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170829,'431103','431100','0746','431103','district','冷水滩区','111.592373','26.461313','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170830,'431122','431100','0746','431122','district','东安县','111.315893','26.392173','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170831,'431102','431100','0746','431102','district','零陵区','111.629806','26.222278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170832,'431128','431100','0746','431128','district','新田县','112.203396','25.903965','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170833,'431126','431100','0746','431126','district','宁远县','111.945925','25.570817','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170834,'431123','431100','0746','431123','district','双牌县','111.659967','25.961909','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170835,'431124','431100','0746','431124','district','道县','111.600866','25.526282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170836,'431125','431100','0746','431125','district','江永县','111.343543','25.274461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170837,'431129','431100','0746','431129','district','江华瑶族自治县','111.57951','25.185257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170838,'431181','431100','0746','431181','district','祁阳市','111.840253','26.580292','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170839,'431127','431100','0746','431127','district','蓝山县','112.195842','25.369575','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170840,'431300','430000','0738','431300','city','娄底市','111.994468','27.699838','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170841,'431321','431300','0738','431321','district','双峰县','112.174623','27.457437','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170842,'431381','431300','0738','431381','district','冷水江市','111.459199','27.656017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170843,'431322','431300','0738','431322','district','新化县','111.327674','27.725416','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170844,'431302','431300','0738','431302','district','娄星区','112.001922','27.730208','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170845,'431382','431300','0738','431382','district','涟源市','111.663837','27.693813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170846,'430500','430000','0739','430500','city','邵阳市','111.467855','27.239528','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170847,'430502','430500','0739','430502','district','双清区','111.496946','27.232286','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170848,'430527','430500','0739','430527','district','绥宁县','110.155532','26.582027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170849,'430503','430500','0739','430503','district','大祥区','111.438892','27.222078','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170850,'430523','430500','0739','430523','district','邵阳县','111.273872','26.990785','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170851,'430528','430500','0739','430528','district','新宁县','110.857294','26.432913','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170852,'430511','430500','0739','430511','district','北塔区','111.451988','27.246244','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170853,'430582','430500','0739','430582','district','邵东市','111.744268','27.259812','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170854,'430529','430500','0739','430529','district','城步苗族自治县','110.322239','26.390598','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170855,'430524','430500','0739','430524','district','隆回县','111.032437','27.113978','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170856,'430581','430500','0739','430581','district','武冈市','110.632286','26.727414','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170857,'430525','430500','0739','430525','district','洞口县','110.575962','27.060274','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170858,'430522','430500','0739','430522','district','新邵县','111.458656','27.320917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170859,'460000','100000','','460000','province','海南省','110.348781','20.018639','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170860,'469022','460000','1892','469022','city','屯昌县','110.101667','19.351662','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170861,'469022_fengmuzhen','469022','1892','469022','street','枫木镇','109.973395','19.190743','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170862,'469022_nanlu:zhen','469022','1892','469022','street','南吕镇','110.042989','19.268166','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170863,'469022_wupozhen','469022','1892','469022','street','乌坡镇','110.083261','19.206717','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170864,'469022_xichangzhen','469022','1892','469022','street','西昌镇','109.953863','19.415440','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170865,'469022_nankunzhen','469022','1892','469022','street','南坤镇','110.034905','19.407514','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170866,'469022_poxinzhen','469022','1892','469022','street','坡心镇','110.214429','19.310397','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170867,'469022_xinxingzhen','469022','1892','469022','street','新兴镇','110.136198','19.558967','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170868,'469022_tunchengzhen','469022','1892','469022','street','屯城镇','110.180636','19.319861','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170869,'469025','460000','0802','469025','city','白沙黎族自治县','109.4429','19.221641','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170870,'469025_nankaixiang','469025','0802','469025','street','南开乡','109.293018','19.059602','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170871,'469025_fulongxiang','469025','0802','469025','street','阜龙乡','109.436387','19.331650','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170872,'469025_xishuixiang','469025','0802','469025','street','细水乡','109.526636','19.201248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170873,'469025_yachazhen','469025','0802','469025','street','牙叉镇','109.399183','19.138439','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170874,'469025_qifangzhen','469025','0802','469025','street','七坊镇','109.139587','19.311855','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170875,'469025_daanzhen','469025','0802','469025','street','打安镇','109.358207','19.378075','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170876,'469025_qingsongxiang','469025','0802','469025','street','青松乡','109.293018','19.059602','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170877,'469025_jinboxiang','469025','0802','469025','street','金波乡','109.171689','19.276555','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170878,'469025_yuanmenxiang','469025','0802','469025','street','元门乡','109.449713','19.095705','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170879,'469025_rongbangxiang','469025','0802','469025','street','荣邦乡','109.047772','19.432678','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170880,'469025_bangxizhen','469025','0802','469025','street','邦溪镇','109.043497','19.419968','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170881,'469030','460000','1899','469030','city','琼中黎族苗族自治县','109.838423','19.03327','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170882,'469030_shenyunxiang','469030','1899','469030','street','什运乡','109.583026','18.923692','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170883,'469030_limushanzhen','469030','1899','469030','street','黎母山镇','109.824353','19.190837','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170884,'469030_wanlingzhen','469030','1899','469030','street','湾岭镇','109.865175','19.096504','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170885,'469030_hongmaozhen','469030','1899','469030','street','红毛镇','109.608031','19.033716','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170886,'469030_diaoluoshanxiang','469030','1899','469030','street','吊罗山乡','109.811113','18.766916','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170887,'469030_shanganxiang','469030','1899','469030','street','上安乡','109.712993','18.899738','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170888,'469030_hepingzhen','469030','1899','469030','street','和平镇','110.052562','18.755917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170889,'469030_zhongpingzhen','469030','1899','469030','street','中平镇','110.032689','18.966494','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170890,'469030_zhangzhengzhen','469030','1899','469030','street','长征镇','109.793068','18.896296','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170891,'469030_yinggenzhen','469030','1899','469030','street','营根镇','109.930582','19.089045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170892,'469007','460000','0807','469007','city','东方市','108.651829','19.095187','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170893,'469007_sanjiazhen','469007','0807','469007','street','三家镇','108.833188','19.259935','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170894,'469007_sigengzhen','469007','0807','469007','street','四更镇','108.596055','19.187648','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170895,'469007_banqiaozhen','469007','0807','469007','street','板桥镇','108.910695','18.807162','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170896,'469007_donghezhen','469007','0807','469007','street','东河镇','109.015044','19.084384','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170897,'469007_jiangbianxiang','469007','0807','469007','street','江边乡','109.091697','18.906129','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170898,'469007_basuozhen','469007','0807','469007','street','八所镇','108.780679','19.124742','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170899,'469007_xinlongzhen','469007','0807','469007','street','新龙镇','108.678972','19.017898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170900,'469007_datianzhen','469007','0807','469007','street','大田镇','108.771554','19.042603','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170901,'469007_ganchengzhen','469007','0807','469007','street','感城镇','108.787859','18.842201','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170902,'469007_tiananxiang','469007','0807','469007','street','天安乡','108.804715','18.975480','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170903,'469027','460000','2802','469027','city','乐东黎族自治县','109.173384','18.750063','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170904,'469027_yinggehaizhen','469027','2802','469027','street','莺歌海镇','108.754600','18.546375','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170905,'469027_huangliuzhen','469027','2802','469027','street','黄流镇','108.804819','18.594264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170906,'469027_jiusuozhen','469027','2802','469027','street','九所镇','109.080605','18.450650','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170907,'469027_jianfengzhen','469027','2802','469027','street','尖峰镇','108.843833','18.624901','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170908,'469027_liguozhen','469027','2802','469027','street','利国镇','108.938223','18.495361','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170909,'469027_baoyouzhen','469027','2802','469027','street','抱由镇','109.027958','18.797154','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170910,'469027_daanzhen','469027','2802','469027','street','大安镇','109.231993','18.734953','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170911,'469027_qianjiazhen','469027','2802','469027','street','千家镇','109.149747','18.465259','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170912,'469027_foluozhen','469027','2802','469027','street','佛罗镇','108.789451','18.579735','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170913,'469027_zhizhongzhen','469027','2802','469027','street','志仲镇','109.386810','18.609590','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170914,'469027_wanchongzhen','469027','2802','469027','street','万冲镇','109.331720','18.913271','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170915,'469028','460000','0809','469028','city','陵水黎族自治县','110.037553','18.506045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170916,'469028_yelinzhen','469028','0809','469028','street','椰林镇','110.019690','18.482546','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170917,'469028_lianzhen','469028','0809','469028','street','黎安镇','110.027365','18.450385','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170918,'469028_xincunzhen','469028','0809','469028','street','新村镇','110.026125','18.445965','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170919,'469028_wenluozhen','469028','0809','469028','street','文罗镇','109.914457','18.573364','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170920,'469028_qunyingxiang','469028','0809','469028','street','群英乡','109.847456','18.569653','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170921,'469028_timengxiang','469028','0809','469028','street','提蒙乡','110.013235','18.640359','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170922,'469028_sancaizhen','469028','0809','469028','street','三才镇','109.963149','18.491519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170923,'469028_longguangzhen','469028','0809','469028','street','隆广镇','109.857549','18.480188','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170924,'469028_yingzhouzhen','469028','0809','469028','street','英州镇','109.875526','18.473898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170925,'469028_benhaozhen','469028','0809','469028','street','本号镇','109.837130','18.632318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170926,'469028_guangpozhen','469028','0809','469028','street','光坡镇','110.036496','18.559416','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170927,'460300','460000','2898','460300','city','三沙市','112.338649','16.831004','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170928,'460302','460300','2898','460302','district','南沙区','112.896229','9.548531','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170929,'460301','460300','2898','460301','district','西沙区','112.346961','16.834372','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170930,'469005','460000','1893','469005','city','文昌市','110.797473','19.544234','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170931,'469005_wenjiaozhen','469005','1893','469005','street','文教镇','110.855856','19.708320','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170932,'469005_puqianzhen','469005','1893','469005','street','铺前镇','110.675271','20.037734','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170933,'469005_longlouzhen','469005','1893','469005','street','龙楼镇','110.938472','19.660636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170934,'469005_dongjiaozhen','469005','1893','469005','street','东郊镇','110.910447','19.629115','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170935,'469005_changsazhen','469005','1893','469005','street','昌洒镇','110.894780','19.826152','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170936,'469005_jinshanzhen','469005','1893','469005','street','锦山镇','110.664000','20.027062','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170937,'469005_fengpozhen','469005','1893','469005','street','冯坡镇','110.790950','20.028869','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170938,'469005_donggezhen','469005','1893','469005','street','东阁镇','110.855599','19.705977','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170939,'469005_dongluzhen','469005','1893','469005','street','东路镇','110.635704','19.755873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170940,'469005_huiwenzhen','469005','1893','469005','street','会文镇','110.740895','19.498601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170941,'469005_gongpozhen','469005','1893','469005','street','公坡镇','110.826694','19.852259','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170942,'469005_wengtianzhen','469005','1893','469005','street','翁田镇','110.961537','20.024271','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170943,'469005_zhongxingzhen','469005','1893','469005','street','重兴镇','110.563557','19.487059','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170944,'469005_penglaizhen','469005','1893','469005','street','蓬莱镇','110.507886','19.511678','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170945,'469005_wenchengzhen','469005','1893','469005','street','文城镇','110.707616','19.498201','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170946,'469005_baoluozhen','469005','1893','469005','street','抱罗镇','110.698537','19.833022','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170947,'469005_tanniuzhen','469005','1893','469005','street','潭牛镇','110.773474','19.744417','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170948,'460400','460000','0805','460400','city','儋州市','109.580812','19.520948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170949,'460400_guangcunzhen','460400','0805','460400','street','光村镇','109.467340','19.903531','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170950,'460400_haitouzhen','460400','0805','460400','street','海头镇','109.028046','19.432317','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170951,'460400_xinzhouzhen','460400','0805','460400','street','新州镇','109.376729','19.708256','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170952,'460400_zhonghezhen','460400','0805','460400','street','中和镇','109.351017','19.774675','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170953,'460400_sandouzhen','460400','0805','460400','street','三都镇','109.204266','19.830050','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170954,'460400_emanzhen','460400','0805','460400','street','峨蔓镇','109.332639','19.843794','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170955,'460400_mutangzhen','460400','0805','460400','street','木棠镇','109.346666','19.900381','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170956,'460400_yaxingzhen','460400','0805','460400','street','雅星镇','109.305133','19.393438','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170957,'460400_wangwuzhen','460400','0805','460400','street','王五镇','109.285186','19.573624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170958,'460400_dongchengzhen','460400','0805','460400','street','东成镇','109.521624','19.772032','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170959,'460400_dachengzhen','460400','0805','460400','street','大成镇','109.371806','19.478206','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170960,'460400_heqingzhen','460400','0805','460400','street','和庆镇','109.739681','19.587333','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170961,'460400_nanfengzhen','460400','0805','460400','street','南丰镇','109.543297','19.504378','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170962,'460400_lanyangzhen','460400','0805','460400','street','兰洋镇','109.735770','19.408360','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170963,'460400_paipuzhen','460400','0805','460400','street','排浦镇','109.212152','19.637338','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170964,'460400_baimajingzhen','460400','0805','460400','street','白马井镇','109.274243','19.631272','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170965,'460400_neidazhen','460400','0805','460400','street','那大镇','109.555399','19.500960','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170966,'460200','460000','0899','460200','city','三亚市','109.511709','18.252865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170967,'460202','460200','0899','460202','district','海棠区','109.735676','18.384177','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170968,'460205','460200','0899','460205','district','崖州区','109.172298','18.357572','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170969,'460203','460200','0899','460203','district','吉阳区','109.578238','18.28146','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170970,'460204','460200','0899','460204','district','天涯区','109.452325','18.298975','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170971,'469029','460000','0801','469029','city','保亭黎族苗族自治县','109.700279','18.640339','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170972,'469029_nanlinxiang','469029','0801','469029','street','南林乡','109.576563','18.389262','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170973,'469029_maoganxiang','469029','0801','469029','street','毛感乡','109.503131','18.556288','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170974,'469029_xinzhengzhen','469029','0801','469029','street','新政镇','109.603989','18.435464','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170975,'469029_shenlingzhen','469029','0801','469029','street','什玲镇','109.736545','18.697785','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170976,'469029_liugongxiang','469029','0801','469029','street','六弓乡','109.744740','18.574041','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170977,'469029_jiamaozhen','469029','0801','469029','street','加茂镇','109.674549','18.516922','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170978,'469029_baochengzhen','469029','0801','469029','street','保城镇','109.773883','18.600774','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170979,'469029_sandaozhen','469029','0801','469029','street','三道镇','109.702909','18.430953','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170980,'469029_xiangshuizhen','469029','0801','469029','street','响水镇','109.550646','18.610753','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170981,'469001','460000','1897','469001','city','五指山市','109.516784','18.774827','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170982,'469001_maoyangzhen','469001','1897','469001','street','毛阳镇','109.449705','18.881089','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170983,'469001_shuimanxiang','469001','1897','469001','street','水满乡','109.600698','18.899478','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170984,'469001_fanyangzhen','469001','1897','469001','street','番阳镇','109.333537','18.913174','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170985,'469001_maodaoxiang','469001','1897','469001','street','毛道乡','109.356022','18.713388','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170986,'469001_nanshengzhen','469001','1897','469001','street','南圣镇','109.684604','18.822608','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170987,'469001_tongshenzhen','469001','1897','469001','street','通什镇','109.623006','18.822353','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170988,'469001_changhaoxiang','469001','1897','469001','street','畅好乡','109.383431','18.682307','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170989,'469026','460000','0803','469026','city','昌江黎族自治县','109.055783','19.298139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170990,'469026_wuliezhen','469026','0803','469026','street','乌烈镇','108.809852','19.352543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170991,'469026_shiliuzhen','469026','0803','469026','street','石碌镇','108.997547','19.244929','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170992,'469026_chahezhen','469026','0803','469026','street','叉河镇','108.997547','19.244929','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170993,'469026_changhuazhen','469026','0803','469026','street','昌化镇','108.731720','19.383636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170994,'469026_wangxiaxiang','469026','0803','469026','street','王下乡','109.094025','18.905182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170995,'469026_shiyuetianzhen','469026','0803','469026','street','十月田镇','108.842173','19.252501','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170996,'469026_qichazhen','469026','0803','469026','street','七叉镇','109.077512','19.190357','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170997,'469026_haiweizhen','469026','0803','469026','street','海尾镇','108.952319','19.494543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170998,'469021','460000','0806','469021','city','定安县','110.358001','19.681215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(170999,'469021_lingkouzhen','469021','0806','469021','street','岭口镇','110.276026','19.360104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171000,'469021_longmenzhen','469021','0806','469021','street','龙门镇','110.297826','19.499676','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171001,'469021_huangzhuzhen','469021','0806','469021','street','黄竹镇','110.348146','19.445919','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171002,'469021_fuwenzhen','469021','0806','469021','street','富文镇','110.223762','19.422974','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171003,'469021_longhezhen','469021','0806','469021','street','龙河镇','110.258715','19.361056','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171004,'469021_dingchengzhen','469021','0806','469021','street','定城镇','110.384099','19.726719','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171005,'469021_hanlinzhen','469021','0806','469021','street','翰林镇','110.285870','19.349021','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171006,'469021_leimingzhen','469021','0806','469021','street','雷鸣镇','110.287140','19.499352','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171007,'469021_xinzhuzhen','469021','0806','469021','street','新竹镇','110.165312','19.577271','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171008,'469021_longhuzhen','469021','0806','469021','street','龙湖镇','110.405612','19.607283','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171009,'469023','460000','0804','469023','city','澄迈县','110.007497','19.738885','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171010,'469023_laochengzhen','469023','0804','469023','street','老城镇','110.152799','19.872233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171011,'469023_dafengzhen','469023','0804','469023','street','大丰镇','109.988855','19.904039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171012,'469023_ruixizhen','469023','0804','469023','street','瑞溪镇','110.111302','19.789006','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171013,'469023_jialezhen','469023','0804','469023','street','加乐镇','110.061273','19.617646','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171014,'469023_zhongxingzhen','469023','0804','469023','street','中兴镇','109.760023','19.528937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171015,'469023_renxingzhen','469023','0804','469023','street','仁兴镇','109.776963','19.382054','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171016,'469023_qiaotouzhen','469023','0804','469023','street','桥头镇','109.936766','19.914013','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171017,'469023_wenruzhen','469023','0804','469023','street','文儒镇','110.134745','19.633652','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171018,'469023_jinjiangzhen','469023','0804','469023','street','金江镇','109.976112','19.774256','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171019,'469023_fushanzhen','469023','0804','469023','street','福山镇','109.919175','19.929023','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171020,'469023_yongfazhen','469023','0804','469023','street','永发镇','110.186668','19.641706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171021,'460100','460000','0898','460100','city','海口市','110.200162','20.046316','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171022,'460108','460100','0898','460108','district','美兰区','110.366359','20.028983','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171023,'460107','460100','0898','460107','district','琼山区','110.384318','19.984293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171024,'460106','460100','0898','460106','district','龙华区','110.328628','20.030843','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171025,'460105','460100','0898','460105','district','秀英区','110.293566','20.007703','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171026,'469024','460000','1896','469024','city','临高县','109.690508','19.912025','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171027,'469024_nanbaozhen','469024','1896','469024','street','南宝镇','109.638149','19.751609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171028,'469024_bohouzhen','469024','1896','469024','street','博厚镇','109.807195','19.989365','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171029,'469024_diaolouzhen','469024','1896','469024','street','调楼镇','109.609769','19.923138','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171030,'469024_heshezhen','469024','1896','469024','street','和舍镇','109.714907','19.671698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171031,'469024_dongyingzhen','469024','1896','469024','street','东英镇','109.612973','19.934938','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171032,'469024_jialaizhen','469024','1896','469024','street','加来镇','109.650909','19.759074','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171033,'469024_linchengzhen','469024','1896','469024','street','临城镇','109.632657','19.753184','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171034,'469024_duowenzhen','469024','1896','469024','street','多文镇','109.751742','19.673620','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171035,'469024_bolianzhen','469024','1896','469024','street','波莲镇','109.614806','19.855541','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171036,'469024_huangtongzhen','469024','1896','469024','street','皇桐镇','109.856872','19.732264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171037,'469024_xinyingzhen','469024','1896','469024','street','新盈镇','109.609386','19.855116','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171038,'469002','460000','1894','469002','city','琼海市','110.474524','19.259112','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171039,'469002_zhangpozhen','469002','1894','469002','street','长坡镇','110.497644','19.427753','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171040,'469002_longjiangzhen','469002','1894','469002','street','龙江镇','110.377839','19.152396','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171041,'469002_yangjiangzhen','469002','1894','469002','street','阳江镇','110.343829','19.128946','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171042,'469002_shibizhen','469002','1894','469002','street','石壁镇','110.330819','19.151644','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171043,'469002_huishanzhen','469002','1894','469002','street','会山镇','110.153445','19.012397','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171044,'469002_tanmenzhen','469002','1894','469002','street','潭门镇','110.539051','19.210843','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171045,'469002_daluzhen','469002','1894','469002','street','大路镇','110.467128','19.442368','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171046,'469002_boaozhen','469002','1894','469002','street','博鳌镇','110.492863','19.177047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171047,'469002_jiajizhen','469002','1894','469002','street','嘉积镇','110.421334','19.291689','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171048,'469002_wanquanzhen','469002','1894','469002','street','万泉镇','110.414108','19.355227','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171049,'469002_zhongyuanzhen','469002','1894','469002','street','中原镇','110.426258','19.056245','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171050,'469002_tayangzhen','469002','1894','469002','street','塔洋镇','110.471660','19.324626','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171051,'469006','460000','1898','469006','city','万宁市','110.392605','18.793697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171052,'469006_houanzhen','469006','1898','469006','street','后安镇','110.374318','18.908719','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171053,'469006_helezhen','469006','1898','469006','street','和乐镇','110.415860','18.962463','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171054,'469006_shangenzhen','469006','1898','469006','street','山根镇','110.451557','18.990371','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171055,'469006_longgunzhen','469006','1898','469006','street','龙滚镇','110.524041','19.000502','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171056,'469006_dongaozhen','469006','1898','469006','street','东澳镇','110.429479','18.640771','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171057,'469006_beidazhen','469006','1898','469006','street','北大镇','110.418437','18.985185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171058,'469006_sangengluozhen','469006','1898','469006','street','三更罗镇','110.113025','18.948777','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171059,'469006_wanchengzhen','469006','1898','469006','street','万城镇','110.412512','18.826291','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171060,'469006_damaozhen','469006','1898','469006','street','大茂镇','110.391696','18.876747','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171061,'469006_lijizhen','469006','1898','469006','street','礼纪镇','110.265921','18.748523','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171062,'469006_zhangfengzhen','469006','1898','469006','street','长丰镇','110.281098','18.855580','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171063,'469006_nanqiaozhen','469006','1898','469006','street','南桥镇','110.031092','18.749525','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171064,'320000','100000','','320000','province','江苏省','118.763563','32.061377','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171065,'320700','320000','0518','320700','city','连云港市','119.221487','34.596639','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171066,'320707','320700','0518','320707','district','赣榆区','119.173173','34.841336','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171067,'320703','320700','0518','320703','district','连云区','119.338901','34.760317','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171068,'320722','320700','0518','320722','district','东海县','118.752869','34.542194','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171069,'320724','320700','0518','320724','district','灌南县','119.315583','34.087251','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171070,'320706','320700','0518','320706','district','海州区','119.163492','34.572506','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171071,'320723','320700','0518','320723','district','灌云县','119.239426','34.284074','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171072,'320600','320000','0513','320600','city','南通市','120.894522','31.981269','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171073,'320623','320600','0513','320623','district','如东县','121.18495','32.331584','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171074,'320681','320600','0513','320681','district','启东市','121.65523','31.792831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171075,'320612','320600','0513','320612','district','通州区','121.073742','32.065972','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171076,'320682','320600','0513','320682','district','如皋市','120.574028','32.371493','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171077,'320614','320600','0513','320614','district','海门区','121.182016','31.869418','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171078,'320613','320600','0513','320613','district','崇川区','120.857253','32.010277','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171079,'320685','320600','0513','320685','district','海安市','120.46779','32.532853','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171080,'320100','320000','025','320100','city','南京市','118.796624','32.059344','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171081,'320115','320100','025','320115','district','江宁区','118.83951','31.953195','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171082,'320114','320100','025','320114','district','雨花台区','118.779087','31.991291','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171083,'320118','320100','025','320118','district','高淳区','118.892074','31.328678','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171084,'320117','320100','025','320117','district','溧水区','119.028414','31.651108','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171085,'320106','320100','025','320106','district','鼓楼区','118.769943','32.066814','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171086,'320111','320100','025','320111','district','浦口区','118.627165','32.059796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171087,'320105','320100','025','320105','district','建邺区','118.731642','32.003343','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171088,'320116','320100','025','320116','district','六合区','118.822241','32.323235','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171089,'320113','320100','025','320113','district','栖霞区','118.909117','32.096423','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171090,'320102','320100','025','320102','district','玄武区','118.797779','32.048644','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171091,'320104','320100','025','320104','district','秦淮区','118.794792','32.039065','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171092,'320500','320000','0512','320500','city','苏州市','120.585294','31.299758','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171093,'320505','320500','0512','320505','district','虎丘区','120.434238','31.329601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171094,'320585','320500','0512','320585','district','太仓市','121.130344','31.458043','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171095,'320507','320500','0512','320507','district','相城区','120.642391','31.369189','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171096,'320508','320500','0512','320508','district','姑苏区','120.617367','31.335648','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171097,'320581','320500','0512','320581','district','常熟市','120.752512','31.656016','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171098,'320583','320500','0512','320583','district','昆山市','120.980795','31.385476','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171099,'320509','320500','0512','320509','district','吴江区','120.645728','31.138525','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171100,'320506','320500','0512','320506','district','吴中区','120.632094','31.263604','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171101,'320582','320500','0512','320582','district','张家港市','120.555979','31.876739','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171102,'321200','320000','0523','321200','city','泰州市','119.922883','32.456692','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171103,'321282','321200','0523','321282','district','靖江市','120.277124','31.98325','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171104,'321281','321200','0523','321281','district','兴化市','119.85255','32.911952','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171105,'321283','321200','0523','321283','district','泰兴市','120.051475','32.173072','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171106,'321203','321200','0523','321203','district','高港区','119.88154','32.31923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171107,'321204','321200','0523','321204','district','姜堰区','120.12807','32.51029','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171108,'321202','321200','0523','321202','district','海陵区','119.923825','32.49248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171109,'320900','320000','0515','320900','city','盐城市','120.16263','33.348176','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171110,'320924','320900','0515','320924','district','射阳县','120.326338','33.766277','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171111,'320922','320900','0515','320922','district','滨海县','119.820713','33.990372','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171112,'320921','320900','0515','320921','district','响水县','119.578332','34.199172','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171113,'320903','320900','0515','320903','district','盐都区','120.153567','33.338538','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171114,'320904','320900','0515','320904','district','大丰区','120.500761','33.200047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171115,'320902','320900','0515','320902','district','亭湖区','120.196148','33.391414','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171116,'320923','320900','0515','320923','district','阜宁县','119.802271','33.758857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171117,'320925','320900','0515','320925','district','建湖县','119.788743','33.438931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171118,'320981','320900','0515','320981','district','东台市','120.320308','32.867845','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171119,'320800','320000','0517','320800','city','淮安市','119.113166','33.551495','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171120,'320830','320800','0517','320830','district','盱眙县','118.544545','33.011905','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171121,'320831','320800','0517','320831','district','金湖县','119.020432','33.024663','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171122,'320813','320800','0517','320813','district','洪泽区','118.873132','33.294095','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171123,'320804','320800','0517','320804','district','淮阴区','119.034895','33.632588','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171124,'320826','320800','0517','320826','district','涟水县','119.260589','33.781648','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171125,'320812','320800','0517','320812','district','清江浦区','119.026662','33.552579','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171126,'320803','320800','0517','320803','district','淮安区','119.141183','33.50296','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171127,'321300','320000','0527','321300','city','宿迁市','118.275228','33.963186','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171128,'321324','321300','0527','321324','district','泗洪县','118.223941','33.476575','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171129,'321302','321300','0527','321302','district','宿城区','118.242048','33.963891','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171130,'321323','321300','0527','321323','district','泗阳县','118.703636','33.723576','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171131,'321311','321300','0527','321311','district','宿豫区','118.330423','33.94813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171132,'321322','321300','0527','321322','district','沭阳县','118.804321','34.110642','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171133,'320400','320000','0519','320400','city','常州市','119.974092','31.811313','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171134,'320413','320400','0519','320413','district','金坛区','119.587503','31.722384','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171135,'320411','320400','0519','320411','district','新北区','119.960925','31.86355','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171136,'320404','320400','0519','320404','district','钟楼区','119.902081','31.802608','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171137,'320481','320400','0519','320481','district','溧阳市','119.484164','31.416967','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171138,'320402','320400','0519','320402','district','天宁区','119.999439','31.79232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171139,'320412','320400','0519','320412','district','武进区','119.942441','31.701252','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171140,'320200','320000','0510','320200','city','无锡市','120.311889','31.491064','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171141,'320205','320200','0510','320205','district','锡山区','120.357732','31.589484','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171142,'320206','320200','0510','320206','district','惠山区','120.29843','31.680282','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171143,'320211','320200','0510','320211','district','滨湖区','120.284381','31.527846','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171144,'320282','320200','0510','320282','district','宜兴市','119.821873','31.338429','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171145,'320281','320200','0510','320281','district','江阴市','120.284794','31.921642','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171146,'320214','320200','0510','320214','district','新吴区','120.364303','31.49085','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171147,'320213','320200','0510','320213','district','梁溪区','120.303551','31.566226','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171148,'321000','320000','0514','321000','city','扬州市','119.412834','32.394404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171149,'321023','321000','0514','321023','district','宝应县','119.358389','33.241125','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171150,'321081','321000','0514','321081','district','仪征市','119.184468','32.272833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171151,'321084','321000','0514','321084','district','高邮市','119.45892','32.781606','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171152,'321002','321000','0514','321002','district','广陵区','119.431785','32.395654','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171153,'321003','321000','0514','321003','district','邗江区','119.397935','32.37741','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171154,'321012','321000','0514','321012','district','江都区','119.569684','32.43571','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171155,'321100','320000','0511','321100','city','镇江市','119.424441','32.188141','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171156,'321112','321100','0511','321112','district','丹徒区','119.433854','32.132118','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171157,'321102','321100','0511','321102','district','京口区','119.470186','32.198285','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171158,'321182','321100','0511','321182','district','扬中市','119.796816','32.236476','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171159,'321181','321100','0511','321181','district','丹阳市','119.606071','32.010035','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171160,'321111','321100','0511','321111','district','润州区','119.411383','32.195146','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171161,'321183','321100','0511','321183','district','句容市','119.168693','31.945732','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171162,'320300','320000','0516','320300','city','徐州市','117.283752','34.204224','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171163,'320312','320300','0516','320312','district','铜山区','117.169698','34.181162','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171164,'320311','320300','0516','320311','district','泉山区','117.194405','34.22655','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171165,'320322','320300','0516','320322','district','沛县','116.936353','34.760761','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171166,'320302','320300','0516','320302','district','鼓楼区','117.185643','34.288736','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171167,'320321','320300','0516','320321','district','丰县','116.658111','34.697232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171168,'320382','320300','0516','320382','district','邳州市','118.012511','34.339208','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171169,'320303','320300','0516','320303','district','云龙区','117.251515','34.253638','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171170,'320305','320300','0516','320305','district','贾汪区','117.465137','34.436492','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171171,'320381','320300','0516','320381','district','新沂市','118.354747','34.369585','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171172,'320324','320300','0516','320324','district','睢宁县','117.941364','33.913727','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171173,'630000','100000','','630000','province','青海省','101.780482','36.622538','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171174,'630200','630000','0972','630200','city','海东市','102.41064','36.473448','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171175,'630202','630200','0972','630202','district','乐都区','102.401614','36.482242','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171176,'630222','630200','0972','630222','district','民和回族土族自治县','102.830775','36.320038','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171177,'630225','630200','0972','630225','district','循化撒拉族自治县','102.488958','35.851079','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171178,'630224','630200','0972','630224','district','化隆回族自治县','102.266031','36.096159','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171179,'630223','630200','0972','630223','district','互助土族自治县','101.958519','36.844027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171180,'630203','630200','0972','630203','district','平安区','102.108538','36.500166','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171181,'632500','630000','0974','632500','city','海南藏族自治州','100.622647','36.296399','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171182,'632523','632500','0974','632523','district','贵德县','101.43403','36.039672','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171183,'632525','632500','0974','632525','district','贵南县','100.747731','35.587239','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171184,'632522','632500','0974','632522','district','同德县','100.577859','35.254297','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171185,'632524','632500','0974','632524','district','兴海县','99.987799','35.589086','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171186,'632521','632500','0974','632521','district','共和县','100.619405','36.284158','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171187,'632800','630000','0977','632800','city','海西蒙古族藏族自治州','97.33197','37.348114','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171188,'632823','632800','0977','632823','district','天峻县','99.02297','37.301206','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171189,'632802','632800','0977','632802','district','德令哈市','97.361528','37.369865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171190,'632801','632800','0977','632801','district','格尔木市','94.928293','36.407272','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171191,'632822','632800','0977','632822','district','都兰县','98.095889','36.302098','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171192,'632821','632800','0977','632821','district','乌兰县','98.47988','36.941279','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171193,'632825','632800','0977','632825','district','海西蒙古族藏族自治州直辖','95.357233','37.853631','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171194,'632803','632800','0977','632803','district','茫崖市','90.856372','38.247537','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171195,'632700','630000','0976','632700','city','玉树藏族自治州','97.006292','33.006308','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171196,'632724','632700','0976','632724','district','治多县','95.618954','33.844854','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171197,'632726','632700','0976','632726','district','曲麻莱县','95.805463','34.137353','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171198,'632723','632700','0976','632723','district','称多县','97.109487','33.377504','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171199,'632722','632700','0976','632722','district','杂多县','95.300723','32.893185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171200,'632701','632700','0976','632701','district','玉树市','97.009184','32.992934','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171201,'632725','632700','0976','632725','district','囊谦县','96.489538','32.203193','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171202,'632300','630000','0973','632300','city','黄南藏族自治州','102.015397','35.519317','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171203,'632301','632300','0973','632301','district','同仁市','102.018663','35.515769','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171204,'632323','632300','0973','632323','district','泽库县','101.466565','35.035322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171205,'632322','632300','0973','632322','district','尖扎县','102.040094','35.943253','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171206,'632324','632300','0973','632324','district','河南蒙古族自治县','101.617719','34.734777','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171207,'632600','630000','0975','632600','city','果洛藏族自治州','100.245161','34.472179','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171208,'632621','632600','0975','632621','district','玛沁县','100.238873','34.478049','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171209,'632623','632600','0975','632623','district','甘德县','99.900923','33.969216','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171210,'632624','632600','0975','632624','district','达日县','99.651863','33.739293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171211,'632625','632600','0975','632625','district','久治县','101.482831','33.429471','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171212,'632622','632600','0975','632622','district','班玛县','100.737138','32.932723','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171213,'632626','632600','0975','632626','district','玛多县','98.209217','34.915645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171214,'630100','630000','0971','630100','city','西宁市','101.777795','36.616621','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171215,'630123','630100','0971','630123','district','湟源县','101.256464','36.682426','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171216,'630121','630100','0971','630121','district','大通回族土族自治县','101.685503','36.926872','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171217,'630104','630100','0971','630104','district','城西区','101.765915','36.628288','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171218,'630105','630100','0971','630105','district','城北区','101.766308','36.650064','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171219,'630102','630100','0971','630102','district','城东区','101.803717','36.599744','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171220,'630106','630100','0971','630106','district','湟中区','101.571683','36.501291','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171221,'630103','630100','0971','630103','district','城中区','101.705357','36.545545','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171222,'632200','630000','0970','632200','city','海北藏族自治州','100.900944','36.954612','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171223,'632223','632200','0970','632223','district','海晏县','100.994521','36.896667','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171224,'632221','632200','0970','632221','district','门源回族自治县','101.611524','37.388567','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171225,'632224','632200','0970','632224','district','刚察县','100.145662','37.325096','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171226,'632222','632200','0970','632222','district','祁连县','100.253211','38.177112','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171227,'450000','100000','','450000','province','广西壮族自治区','108.327537','22.816659','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171228,'451000','450000','0776','451000','city','百色市','106.61869','23.90307','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171229,'451028','451000','0776','451028','district','乐业县','106.556564','24.776812','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171230,'451031','451000','0776','451031','district','隆林各族自治县','105.343816','24.770649','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171231,'451030','451000','0776','451030','district','西林县','105.097229','24.50762','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171232,'451027','451000','0776','451027','district','凌云县','106.56114','24.347444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171233,'451002','451000','0776','451002','district','右江区','106.618151','23.900804','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171234,'451082','451000','0776','451082','district','平果市','107.589768','23.329815','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171235,'451029','451000','0776','451029','district','田林县','106.22874','24.294627','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171236,'451024','451000','0776','451024','district','德保县','106.615087','23.324084','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171237,'451026','451000','0776','451026','district','那坡县','105.83234','23.387997','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171238,'451003','451000','0776','451003','district','田阳区','106.915424','23.735631','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171239,'451022','451000','0776','451022','district','田东县','107.125609','23.596706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171240,'451081','451000','0776','451081','district','靖西市','106.417666','23.134375','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171241,'450700','450000','0777','450700','city','钦州市','108.654355','21.980894','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171242,'450702','450700','0777','450702','district','钦南区','108.657427','21.940438','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171243,'450703','450700','0777','450703','district','钦北区','108.638738','22.0024','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171244,'450722','450700','0777','450722','district','浦北县','109.556232','22.271902','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171245,'450721','450700','0777','450721','district','灵山县','109.290698','22.416671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171246,'450500','450000','0779','450500','city','北海市','109.120248','21.481305','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171247,'450512','450500','0779','450512','district','铁山港区','109.422099','21.529878','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171248,'450502','450500','0779','450502','district','海城区','109.117256','21.474914','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171249,'450521','450500','0779','450521','district','合浦县','109.207236','21.66132','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171250,'450503','450500','0779','450503','district','银海区','109.139689','21.449729','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171251,'450400','450000','0774','450400','city','梧州市','111.279022','23.476733','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171252,'450423','450400','0774','450423','district','蒙山县','110.525003','24.193567','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171253,'450406','450400','0774','450406','district','龙圩区','111.247514','23.414869','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171254,'450481','450400','0774','450481','district','岑溪市','110.994955','22.918327','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171255,'450405','450400','0774','450405','district','长洲区','111.274276','23.486279','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171256,'450422','450400','0774','450422','district','藤县','110.914606','23.375538','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171257,'450403','450400','0774','450403','district','万秀区','111.318065','23.470543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171258,'450421','450400','0774','450421','district','苍梧县','111.547244','23.868208','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171259,'450600','450000','0770','450600','city','防城港市','108.35467','21.686732','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171260,'450621','450600','0770','450621','district','上思县','107.983627','22.153671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171261,'450602','450600','0770','450602','district','港口区','108.380273','21.643426','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171262,'450603','450600','0770','450603','district','防城区','108.353978','21.768826','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171263,'450681','450600','0770','450681','district','东兴市','107.971828','21.547821','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171264,'451100','450000','1774','451100','city','贺州市','111.567216','24.404182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171265,'451123','451100','1774','451123','district','富川瑶族自治县','111.296012','24.811601','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171266,'451122','451100','1774','451122','district','钟山县','111.303085','24.526041','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171267,'451121','451100','1774','451121','district','昭平县','110.811158','24.169675','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171268,'451102','451100','1774','451102','district','八步区','111.552029','24.411822','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171269,'451103','451100','1774','451103','district','平桂区','111.479839','24.453094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171270,'451200','450000','0778','451200','city','河池市','108.63639','24.48523','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171271,'451223','451200','0778','451223','district','凤山县','107.042157','24.546913','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171272,'451224','451200','0778','451224','district','东兰县','107.374259','24.510698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171273,'451229','451200','0778','451229','district','大化瑶族自治县','107.998151','23.735699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171274,'451228','451200','0778','451228','district','都安瑶族自治县','108.105229','23.932704','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171275,'451226','451200','0778','451226','district','环江毛南族自治县','108.258426','24.825923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171276,'451202','451200','0778','451202','district','金城江区','108.085166','24.692865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171277,'451227','451200','0778','451227','district','巴马瑶族自治县','107.258671','24.142216','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171278,'451225','451200','0778','451225','district','罗城仫佬族自治县','108.904613','24.777501','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171279,'451203','451200','0778','451203','district','宜州区','108.611303','24.500981','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171280,'451222','451200','0778','451222','district','天峨县','107.172287','24.999181','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171281,'451221','451200','0778','451221','district','南丹县','107.540578','24.975066','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171282,'450200','450000','0772','450200','city','柳州市','109.428071','24.326442','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171283,'450225','450200','0772','450225','district','融水苗族自治县','109.256609','25.066624','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171284,'450224','450200','0772','450224','district','融安县','109.397538','25.224549','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171285,'450222','450200','0772','450222','district','柳城县','109.244565','24.649989','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171286,'450202','450200','0772','450202','district','城中区','109.427398','24.366964','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171287,'450205','450200','0772','450205','district','柳北区','109.402009','24.362611','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171288,'450226','450200','0772','450226','district','三江侗族自治县','109.607675','25.783197','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171289,'450204','450200','0772','450204','district','柳南区','109.385504','24.336229','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171290,'450206','450200','0772','450206','district','柳江区','109.326365','24.255644','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171291,'450203','450200','0772','450203','district','鱼峰区','109.452781','24.318276','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171292,'450223','450200','0772','450223','district','鹿寨县','109.750527','24.472897','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171293,'451300','450000','1772','451300','city','来宾市','109.221243','23.750105','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171294,'451324','451300','1772','451324','district','金秀瑶族自治县','110.190354','24.130509','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171295,'451322','451300','1772','451322','district','象州县','109.704852','23.973832','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171296,'451381','451300','1772','451381','district','合山市','108.885829','23.807032','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171297,'451302','451300','1772','451302','district','兴宾区','109.183284','23.727647','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171298,'451323','451300','1772','451323','district','武宣县','109.663153','23.594444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171299,'451321','451300','1772','451321','district','忻城县','108.665641','24.066176','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171300,'450900','450000','0775','450900','city','玉林市','110.18097','22.654001','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171301,'450903','450900','0775','450903','district','福绵区','110.059564','22.585316','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171302,'450923','450900','0775','450923','district','博白县','109.975856','22.273539','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171303,'450924','450900','0775','450924','district','兴业县','109.875223','22.736395','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171304,'450921','450900','0775','450921','district','容县','110.558093','22.85844','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171305,'450902','450900','0775','450902','district','玉州区','110.150717','22.628476','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171306,'450981','450900','0775','450981','district','北流市','110.353765','22.708415','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171307,'450922','450900','0775','450922','district','陆川县','110.26412','22.321563','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171308,'450300','450000','0773','450300','city','桂林市','110.179752','25.235615','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171309,'450327','450300','0773','450327','district','灌阳县','111.160764','25.489419','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171310,'450330','450300','0773','450330','district','平乐县','110.632867','24.622814','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171311,'450332','450300','0773','450332','district','恭城瑶族自治县','110.82841','24.831581','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171312,'450324','450300','0773','450324','district','全州县','111.087089','25.94939','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171313,'450326','450300','0773','450326','district','永福县','109.982974','24.980447','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171314,'450381','450300','0773','450381','district','荔浦市','110.395232','24.48843','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171315,'450321','450300','0773','450321','district','阳朔县','110.496305','24.778785','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171316,'450312','450300','0773','450312','district','临桂区','110.212425','25.238556','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171317,'450304','450300','0773','450304','district','象山区','110.281223','25.261585','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171318,'450329','450300','0773','450329','district','资源县','110.652612','26.042452','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171319,'450325','450300','0773','450325','district','兴安县','110.672013','25.612576','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171320,'450328','450300','0773','450328','district','龙胜各族自治县','110.011662','25.79803','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171321,'450305','450300','0773','450305','district','七星区','110.317576','25.253093','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171322,'450311','450300','0773','450311','district','雁山区','110.286611','25.101798','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171323,'450323','450300','0773','450323','district','灵川县','110.319837','25.3948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171324,'450303','450300','0773','450303','district','叠彩区','110.301489','25.314158','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171325,'450302','450300','0773','450302','district','秀峰区','110.264102','25.273954','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171326,'450100','450000','0771','450100','city','南宁市','108.366407','22.8177','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171327,'450124','450100','0771','450124','district','马山县','108.177764','23.708448','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171328,'450125','450100','0771','450125','district','上林县','108.605089','23.432451','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171329,'450110','450100','0771','450110','district','武鸣区','108.274869','23.159257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171330,'450107','450100','0771','450107','district','西乡塘区','108.31344','22.833852','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171331,'450123','450100','0771','450123','district','隆安县','107.695721','23.166356','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171332,'450102','450100','0771','450102','district','兴宁区','108.368071','22.85354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171333,'450103','450100','0771','450103','district','青秀区','108.495204','22.785833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171334,'450126','450100','0771','450126','district','宾阳县','108.810336','23.217771','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171335,'450105','450100','0771','450105','district','江南区','108.273206','22.781166','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171336,'450108','450100','0771','450108','district','良庆区','108.393889','22.753613','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171337,'450109','450100','0771','450109','district','邕宁区','108.487438','22.758633','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171338,'450181','450100','0771','450181','district','横州市','109.262448','22.681257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171339,'450800','450000','1755','450800','city','贵港市','109.598903','23.11182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171340,'450803','450800','1755','450803','district','港南区','109.599357','23.075816','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171341,'450802','450800','1755','450802','district','港北区','109.572227','23.11136','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171342,'450881','450800','1755','450881','district','桂平市','110.079315','23.394208','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171343,'450821','450800','1755','450821','district','平南县','110.392489','23.540413','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171344,'450804','450800','1755','450804','district','覃塘区','109.452668','23.127405','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171345,'451400','450000','1771','451400','city','崇左市','107.364973','22.377139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171346,'451421','451400','1771','451421','district','扶绥县','107.90389','22.635542','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171347,'451402','451400','1771','451402','district','江州区','107.353694','22.40609','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171348,'451423','451400','1771','451423','district','龙州县','106.854001','22.343591','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171349,'451481','451400','1771','451481','district','凭祥市','106.766715','22.094421','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171350,'451422','451400','1771','451422','district','宁明县','107.076394','22.140242','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171351,'451425','451400','1771','451425','district','天等县','107.143539','23.080818','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171352,'451424','451400','1771','451424','district','大新县','107.200654','22.829287','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171353,'640000','100000','','640000','province','宁夏回族自治区','106.258889','38.472273','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171354,'640200','640000','0952','640200','city','石嘴山市','106.382792','38.984632','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171355,'640221','640200','0952','640221','district','平罗县','106.523411','38.913923','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171356,'640205','640200','0952','640205','district','惠农区','106.781013','39.239292','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171357,'640202','640200','0952','640202','district','大武口区','106.368128','39.019375','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171358,'640400','640000','0954','640400','city','固原市','106.24267','36.01628','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171359,'640423','640400','0954','640423','district','隆德县','106.111321','35.62592','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171360,'640425','640400','0954','640425','district','彭阳县','106.632151','35.860067','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171361,'640424','640400','0954','640424','district','泾源县','106.330569','35.497887','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171362,'640422','640400','0954','640422','district','西吉县','105.729189','35.963885','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171363,'640402','640400','0954','640402','district','原州区','106.28784','36.003777','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171364,'640100','640000','0951','640100','city','银川市','106.230977','38.487783','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171365,'640121','640100','0951','640121','district','永宁县','106.25337','38.277376','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171366,'640105','640100','0951','640105','district','西夏区','106.161208','38.502325','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171367,'640181','640100','0951','640181','district','灵武市','106.339978','38.102456','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171368,'640106','640100','0951','640106','district','金凤区','106.239339','38.474277','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171369,'640104','640100','0951','640104','district','兴庆区','106.288452','38.473972','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171370,'640122','640100','0951','640122','district','贺兰县','106.365074','38.579147','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171371,'640500','640000','1953','640500','city','中卫市','105.19677','37.500185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171372,'640522','640500','1953','640522','district','海原县','105.643449','36.565189','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171373,'640502','640500','1953','640502','district','沙坡头区','105.173875','37.516859','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171374,'640521','640500','1953','640521','district','中宁县','105.684729','37.492092','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171375,'640300','640000','0953','640300','city','吴忠市','106.198613','37.997755','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171376,'640323','640300','0953','640323','district','盐池县','107.407184','37.783276','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171377,'640302','640300','0953','640302','district','利通区','106.212479','37.984586','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171378,'640303','640300','0953','640303','district','红寺堡区','106.06216','37.425494','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171379,'640381','640300','0953','640381','district','青铜峡市','106.07906','38.021579','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171380,'640324','640300','0953','640324','district','同心县','105.895412','36.954635','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171381,'330000','100000','','330000','province','浙江省','120.152575','30.266619','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171382,'330900','330000','0580','330900','city','舟山市','122.207395','29.985578','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171383,'330922','330900','0580','330922','district','嵊泗县','122.45132','30.725677','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171384,'330921','330900','0580','330921','district','岱山县','122.225718','30.264533','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171385,'330902','330900','0580','330902','district','定海区','122.106844','30.019795','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171386,'330903','330900','0580','330903','district','普陀区','122.323297','29.970571','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171387,'330400','330000','0573','330400','city','嘉兴市','120.755623','30.746814','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171388,'330482','330400','0573','330482','district','平湖市','121.015619','30.677804','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171389,'330411','330400','0573','330411','district','秀洲区','120.709047','30.764811','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171390,'330402','330400','0573','330402','district','南湖区','120.782952','30.747738','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171391,'330421','330400','0573','330421','district','嘉善县','120.926031','30.83085','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171392,'330483','330400','0573','330483','district','桐乡市','120.565127','30.630375','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171393,'330424','330400','0573','330424','district','海盐县','120.94628','30.52664','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171394,'330481','330400','0573','330481','district','海宁市','120.680224','30.511536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171395,'330200','330000','0574','330200','city','宁波市','121.62454','29.860258','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171396,'330225','330200','0574','330225','district','象山县','121.869251','29.476826','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171397,'330206','330200','0574','330206','district','北仑区','121.844601','29.899548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171398,'330211','330200','0574','330211','district','镇海区','121.596686','29.965212','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171399,'330226','330200','0574','330226','district','宁海县','121.429729','29.287929','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171400,'330203','330200','0574','330203','district','海曙区','121.550485','29.873705','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171401,'330281','330200','0574','330281','district','余姚市','121.154572','30.037967','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171402,'330282','330200','0574','330282','district','慈溪市','121.266525','30.170695','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171403,'330213','330200','0574','330213','district','奉化区','121.406151','29.655292','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171404,'330212','330200','0574','330212','district','鄞州区','121.546617','29.817302','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171405,'330205','330200','0574','330205','district','江北区','121.555067','29.88673','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171406,'331000','330000','0576','331000','city','台州市','121.42079','28.655716','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171407,'331082','331000','0576','331082','district','临海市','121.144625','28.859042','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171408,'331002','331000','0576','331002','district','椒江区','121.442859','28.673334','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171409,'331004','331000','0576','331004','district','路桥区','121.337874','28.578244','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171410,'331083','331000','0576','331083','district','玉环市','121.231915','28.136703','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171411,'331081','331000','0576','331081','district','温岭市','121.385435','28.372805','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171412,'331022','331000','0576','331022','district','三门县','121.39561','29.104888','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171413,'331024','331000','0576','331024','district','仙居县','120.728733','28.846856','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171414,'331023','331000','0576','331023','district','天台县','121.006657','29.144594','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171415,'331003','331000','0576','331003','district','黄岩区','121.261804','28.649433','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171416,'330300','330000','0577','330300','city','温州市','120.699279','27.993849','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171417,'330327','330300','0577','330327','district','苍南县','120.425957','27.518636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171418,'330326','330300','0577','330326','district','平阳县','120.565161','27.662394','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171419,'330305','330300','0577','330305','district','洞头区','121.157406','27.836412','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171420,'330383','330300','0577','330383','district','龙港市','120.552952','27.578379','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171421,'330381','330300','0577','330381','district','瑞安市','120.655245','27.778967','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171422,'330329','330300','0577','330329','district','泰顺县','119.717643','27.556578','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171423,'330382','330300','0577','330382','district','乐清市','120.986297','28.112519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171424,'330324','330300','0577','330324','district','永嘉县','120.69136','28.153914','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171425,'330302','330300','0577','330302','district','鹿城区','120.655199','28.015776','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171426,'330303','330300','0577','330303','district','龙湾区','120.812333','27.933261','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171427,'330328','330300','0577','330328','district','文成县','120.090929','27.786856','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171428,'330304','330300','0577','330304','district','瓯海区','120.615149','27.967445','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171429,'331100','330000','0578','331100','city','丽水市','119.923249','28.467694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171430,'331181','331100','0578','331181','district','龙泉市','119.14126','28.074916','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171431,'331124','331100','0578','331124','district','松阳县','119.481406','28.448883','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171432,'331125','331100','0578','331125','district','云和县','119.573454','28.116024','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171433,'331127','331100','0578','331127','district','景宁畲族自治县','119.635686','27.973594','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171434,'331122','331100','0578','331122','district','缙云县','120.091685','28.659294','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171435,'331121','331100','0578','331121','district','青田县','120.289693','28.1396','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171436,'331102','331100','0578','331102','district','莲都区','119.912266','28.4461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171437,'331126','331100','0578','331126','district','庆元县','119.062572','27.619213','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171438,'331123','331100','0578','331123','district','遂昌县','119.275865','28.592388','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171439,'330600','330000','0575','330600','city','绍兴市','120.582886','30.051549','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171440,'330683','330600','0575','330683','district','嵊州市','120.830505','29.561519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171441,'330624','330600','0575','330624','district','新昌县','120.903918','29.500525','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171442,'330604','330600','0575','330604','district','上虞区','120.868571','30.033862','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171443,'330681','330600','0575','330681','district','诸暨市','120.246602','29.709398','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171444,'330603','330600','0575','330603','district','柯桥区','120.495532','30.083039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171445,'330602','330600','0575','330602','district','越城区','120.582338','29.989092','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171446,'330800','330000','0570','330800','city','衢州市','118.859307','28.970229','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171447,'330822','330800','0570','330822','district','常山县','118.511224','28.902446','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171448,'330803','330800','0570','330803','district','衢江区','118.959139','28.980356','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171449,'330824','330800','0570','330824','district','开化县','118.406852','29.1179','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171450,'330881','330800','0570','330881','district','江山市','118.627228','28.73796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171451,'330802','330800','0570','330802','district','柯城区','118.874138','28.936937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171452,'330825','330800','0570','330825','district','龙游县','119.1723','29.028214','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171453,'330700','330000','0579','330700','city','金华市','119.647265','29.079195','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171454,'330723','330700','0579','330723','district','武义县','119.816341','28.892562','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171455,'330727','330700','0579','330727','district','磐安县','120.449937','29.054491','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171456,'330726','330700','0579','330726','district','浦江县','119.89259','29.453363','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171457,'330784','330700','0579','330784','district','永康市','120.047356','28.88899','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171458,'330783','330700','0579','330783','district','东阳市','120.24179','29.290158','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171459,'330782','330700','0579','330782','district','义乌市','120.075679','29.306296','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171460,'330781','330700','0579','330781','district','兰溪市','119.460404','29.209059','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171461,'330703','330700','0579','330703','district','金东区','119.692821','29.099822','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171462,'330702','330700','0579','330702','district','婺城区','119.571574','29.087311','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171463,'330100','330000','0571','330100','city','杭州市','120.210792','30.246026','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171464,'330122','330100','0571','330122','district','桐庐县','119.691755','29.79418','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171465,'330102','330100','0571','330102','district','上城区','120.19732','30.226543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171466,'330127','330100','0571','330127','district','淳安县','119.042015','29.609678','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171467,'330105','330100','0571','330105','district','拱墅区','120.141503','30.319126','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171468,'330106','330100','0571','330106','district','西湖区','120.130396','30.259242','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171469,'330108','330100','0571','330108','district','滨江区','120.211981','30.208332','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171470,'330114','330100','0571','330114','district','钱塘区','120.493941','30.32304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171471,'330111','330100','0571','330111','district','富阳区','119.96022','30.048803','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171472,'330109','330100','0571','330109','district','萧山区','120.264263','30.184119','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171473,'330182','330100','0571','330182','district','建德市','119.281195','29.474964','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171474,'330112','330100','0571','330112','district','临安区','119.724457','30.234375','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171475,'330113','330100','0571','330113','district','临平区','120.299222','30.419154','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171476,'330110','330100','0571','330110','district','余杭区','119.978742','30.273705','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171477,'330500','330000','0572','330500','city','湖州市','120.086881','30.894178','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171478,'330503','330500','0572','330503','district','南浔区','120.418244','30.850835','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171479,'330502','330500','0572','330502','district','吴兴区','120.185608','30.857184','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171480,'330522','330500','0572','330522','district','长兴县','119.911212','31.026962','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171481,'330523','330500','0572','330523','district','安吉县','119.680261','30.638803','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171482,'330521','330500','0572','330521','district','德清县','119.9774','30.54251','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171483,'130000','100000','','130000','province','河北省','114.530399','38.037707','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171484,'130200','130000','0315','130200','city','唐山市','118.180149','39.63068','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171485,'130225','130200','0315','130225','district','乐亭县','118.91245','39.425748','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171486,'130209','130200','0315','130209','district','曹妃甸区','118.460197','39.273528','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171487,'130224','130200','0315','130224','district','滦南县','118.68363','39.520272','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171488,'130204','130200','0315','130204','district','古冶区','118.447134','39.73392','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171489,'130227','130200','0315','130227','district','迁西县','118.31467','40.141486','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171490,'130284','130200','0315','130284','district','滦州市','118.70301','39.740963','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171491,'130207','130200','0315','130207','district','丰南区','118.085169','39.576031','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171492,'130283','130200','0315','130283','district','迁安市','118.701021','39.998861','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171493,'130281','130200','0315','130281','district','遵化市','117.965878','40.189119','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171494,'130202','130200','0315','130202','district','路南区','118.154348','39.624988','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171495,'130203','130200','0315','130203','district','路北区','118.201085','39.625079','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171496,'130205','130200','0315','130205','district','开平区','118.262246','39.671634','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171497,'130208','130200','0315','130208','district','丰润区','118.162426','39.832919','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171498,'130229','130200','0315','130229','district','玉田县','117.738196','39.901827','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171499,'130300','130000','0335','130300','city','秦皇岛市','119.52022','39.888243','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171500,'130303','130300','0335','130303','district','山海关区','119.775187','39.978882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171501,'130306','130300','0335','130306','district','抚宁区','119.244847','39.876253','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171502,'130302','130300','0335','130302','district','海港区','119.564962','39.94756','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171503,'130304','130300','0335','130304','district','北戴河区','119.48449','39.834912','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171504,'130321','130300','0335','130321','district','青龙满族自治县','118.94985','40.407473','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171505,'130322','130300','0335','130322','district','昌黎县','119.199846','39.699677','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171506,'130324','130300','0335','130324','district','卢龙县','118.891931','39.892564','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171507,'130800','130000','0314','130800','city','承德市','117.962749','40.952942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171508,'130828','130800','0314','130828','district','围场满族蒙古族自治县','117.75934','41.938372','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171509,'130826','130800','0314','130826','district','丰宁满族自治县','116.645798','41.209951','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171510,'130825','130800','0314','130825','district','隆化县','117.739026','41.314402','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171511,'130827','130800','0314','130827','district','宽城满族自治县','118.485472','40.611333','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171512,'130804','130800','0314','130804','district','鹰手营子矿区','117.659341','40.546424','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171513,'130803','130800','0314','130803','district','双滦区','117.799588','40.959426','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171514,'130824','130800','0314','130824','district','滦平县','117.332652','40.941644','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171515,'130802','130800','0314','130802','district','双桥区','117.943121','40.974679','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171516,'130821','130800','0314','130821','district','承德县','118.174166','40.768082','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171517,'130881','130800','0314','130881','district','平泉市','118.702032','41.018482','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171518,'130822','130800','0314','130822','district','兴隆县','117.500558','40.417358','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171519,'130100','130000','0311','130100','city','石家庄市','114.514976','38.042007','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171520,'130126','130100','0311','130126','district','灵寿县','114.383013','38.307908','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171521,'130183','130100','0311','130183','district','晋州市','115.044141','38.033937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171522,'130132','130100','0311','130132','district','元氏县','114.525508','37.767332','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171523,'130127','130100','0311','130127','district','高邑县','114.611659','37.615905','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171524,'130181','130100','0311','130181','district','辛集市','115.217626','37.943239','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171525,'130121','130100','0311','130121','district','井陉县','114.145669','38.032366','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171526,'130107','130100','0311','130107','district','井陉矿区','114.062258','38.065446','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171527,'130128','130100','0311','130128','district','深泽县','115.20089','38.184572','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171528,'130133','130100','0311','130133','district','赵县','114.775914','37.756935','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171529,'130125','130100','0311','130125','district','行唐县','114.553044','38.437535','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171530,'130131','130100','0311','130131','district','平山县','114.186007','38.260288','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171531,'130123','130100','0311','130123','district','正定县','114.57043','38.14699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171532,'130108','130100','0311','130108','district','裕华区','114.531599','38.007002','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171533,'130111','130100','0311','130111','district','栾城区','114.647922','37.900915','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171534,'130109','130100','0311','130109','district','藁城区','114.846562','38.022177','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171535,'130130','130100','0311','130130','district','无极县','114.976256','38.178852','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171536,'130184','130100','0311','130184','district','新乐市','114.683745','38.343952','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171537,'130110','130100','0311','130110','district','鹿泉区','114.313559','38.086536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171538,'130104','130100','0311','130104','district','桥西区','114.45004','38.025245','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171539,'130105','130100','0311','130105','district','新华区','114.463904','38.050749','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171540,'130102','130100','0311','130102','district','长安区','114.538955','38.03682','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171541,'130129','130100','0311','130129','district','赞皇县','114.386114','37.666549','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171542,'130700','130000','0313','130700','city','张家口市','114.885895','40.768931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171543,'130723','130700','0313','130723','district','康保县','114.60018','41.853016','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171544,'130732','130700','0313','130732','district','赤城县','115.831256','40.913348','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171545,'130709','130700','0313','130709','district','崇礼区','115.282345','40.974741','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171546,'130706','130700','0313','130706','district','下花园区','115.287127','40.502628','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171547,'130731','130700','0313','130731','district','涿鹿县','115.196835','40.382681','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171548,'130702','130700','0313','130702','district','桥东区','114.894114','40.788472','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171549,'130705','130700','0313','130705','district','宣化区','115.099515','40.609444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171550,'130726','130700','0313','130726','district','蔚县','114.589136','39.840154','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171551,'130728','130700','0313','130728','district','怀安县','114.386488','40.67527','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171552,'130703','130700','0313','130703','district','桥西区','114.868604','40.819553','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171553,'130725','130700','0313','130725','district','尚义县','113.968763','41.076588','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171554,'130730','130700','0313','130730','district','怀来县','115.517868','40.415625','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171555,'130727','130700','0313','130727','district','阳原县','114.150267','40.104303','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171556,'130724','130700','0313','130724','district','沽源县','115.688544','41.670497','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171557,'130722','130700','0313','130722','district','张北县','114.719927','41.159039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171558,'130708','130700','0313','130708','district','万全区','114.740584','40.767377','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171559,'131000','130000','0316','131000','city','廊坊市','116.683546','39.538304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171560,'131028','131000','0316','131028','district','大厂回族自治县','116.98961','39.886569','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171561,'131026','131000','0316','131026','district','文安县','116.457628','38.873185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171562,'131082','131000','0316','131082','district','三河市','117.078269','39.982933','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171563,'131002','131000','0316','131002','district','安次区','116.6945443','39.50256863','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171564,'131003','131000','0316','131003','district','广阳区','116.710667','39.52343','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171565,'131024','131000','0316','131024','district','香河县','117.006072','39.763772','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171566,'131025','131000','0316','131025','district','大城县','116.653917','38.705232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171567,'131022','131000','0316','131022','district','固安县','116.298696','39.438797','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171568,'131023','131000','0316','131023','district','永清县','116.50608','39.330983','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171569,'131081','131000','0316','131081','district','霸州市','116.391488','39.125238','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171570,'130400','130000','0310','130400','city','邯郸市','114.53915','36.625849','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171571,'130407','130400','0310','130407','district','肥乡区','114.800199','36.548545','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171572,'130431','130400','0310','130431','district','鸡泽县','114.889951','36.911525','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171573,'130408','130400','0310','130408','district','永年区','114.536626','36.74188','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171574,'130423','130400','0310','130423','district','临漳县','114.585514','36.322504','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171575,'130402','130400','0310','130402','district','邯山区','114.531062','36.59457','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171576,'130425','130400','0310','130425','district','大名县','115.147985','36.286406','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171577,'130403','130400','0310','130403','district','丛台区','114.492875','36.636434','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171578,'130404','130400','0310','130404','district','复兴区','114.462581','36.638879','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171579,'130435','130400','0310','130435','district','曲周县','114.957549','36.766347','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171580,'130481','130400','0310','130481','district','武安市','114.203685','36.69759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171581,'130432','130400','0310','130432','district','广平县','114.921185','36.476727','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171582,'130424','130400','0310','130424','district','成安县','114.670094','36.445331','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171583,'130433','130400','0310','130433','district','馆陶县','115.281818','36.548295','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171584,'130430','130400','0310','130430','district','邱县','115.200049','36.811783','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171585,'130434','130400','0310','130434','district','魏县','114.939217','36.35926','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171586,'130406','130400','0310','130406','district','峰峰矿区','114.212571','36.419298','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171587,'130427','130400','0310','130427','district','磁县','114.373965','36.37507','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171588,'130426','130400','0310','130426','district','涉县','113.692157','36.586073','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171589,'130900','130000','0317','130900','city','沧州市','116.838715','38.304676','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171590,'130924','130900','0317','130924','district','海兴县','117.497545','38.143308','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171591,'130923','130900','0317','130923','district','东光县','116.537138','37.888844','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171592,'130928','130900','0317','130928','district','吴桥县','116.391557','37.628225','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171593,'130902','130900','0317','130902','district','新华区','116.866309','38.314094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171594,'130903','130900','0317','130903','district','运河区','116.842964','38.283456','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171595,'130927','130900','0317','130927','district','南皮县','116.708603','38.038761','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171596,'130922','130900','0317','130922','district','青县','116.804137','38.583657','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171597,'130926','130900','0317','130926','district','肃宁县','115.829619','38.423044','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171598,'130984','130900','0317','130984','district','河间市','116.099362','38.446656','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171599,'130929','130900','0317','130929','district','献县','116.152058','38.180381','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171600,'130981','130900','0317','130981','district','泊头市','116.578322','38.084262','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171601,'130930','130900','0317','130930','district','孟村回族自治县','117.104514','38.053438','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171602,'130925','130900','0317','130925','district','盐山县','117.230681','38.058074','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171603,'130982','130900','0317','130982','district','任丘市','116.084412','38.685325','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171604,'130921','130900','0317','130921','district','沧县','117.007478','38.21985569','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171605,'130983','130900','0317','130983','district','黄骅市','117.330043','38.372266','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171606,'131100','130000','0318','131100','city','衡水市','115.668987','37.739367','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171607,'131102','131100','0318','131102','district','桃城区','115.675208','37.735152','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171608,'131182','131100','0318','131182','district','深州市','115.559576','38.001535','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171609,'131126','131100','0318','131126','district','故城县','115.965877','37.347873','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171610,'131122','131100','0318','131122','district','武邑县','115.887498','37.802036','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171611,'131123','131100','0318','131123','district','武强县','115.982119','38.041447','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171612,'131125','131100','0318','131125','district','安平县','115.518918','38.234769','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171613,'131124','131100','0318','131124','district','饶阳县','115.725898','38.235313','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171614,'131127','131100','0318','131127','district','景县','116.270558','37.692831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171615,'131128','131100','0318','131128','district','阜城县','116.175424','37.862984','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171616,'131121','131100','0318','131121','district','枣强县','115.724365','37.514217','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171617,'131103','131100','0318','131103','district','冀州区','115.579392','37.550922','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171618,'130600','130000','0312','130600','city','保定市','115.464523','38.874476','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171619,'130636','130600','0312','130636','district','顺平县','115.135133','38.837988','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171620,'130624','130600','0312','130624','district','阜平县','114.195118','38.849221','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171621,'130631','130600','0312','130631','district','望都县','115.15542','38.696221','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171622,'130627','130600','0312','130627','district','唐县','114.982968','38.748477','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171623,'130634','130600','0312','130634','district','曲阳县','114.740476','38.614409','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171624,'130628','130600','0312','130628','district','高阳县','115.779149','38.700846','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171625,'130630','130600','0312','130630','district','涞源县','114.694416','39.360622','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171626,'130608','130600','0312','130608','district','清苑区','115.48988','38.76527','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171627,'130682','130600','0312','130682','district','定州市','114.990321','38.516746','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171628,'130633','130600','0312','130633','district','易县','115.497487','39.350219','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171629,'130607','130600','0312','130607','district','满城区','115.322246','38.949732','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171630,'130635','130600','0312','130635','district','蠡县','115.583701','38.488064','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171631,'130632','130600','0312','130632','district','安新县','115.935688','38.936102','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171632,'130638','130600','0312','130638','district','雄县','116.108624','38.994825','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171633,'130623','130600','0312','130623','district','涞水县','115.713651','39.394305','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171634,'130606','130600','0312','130606','district','莲池区','115.497153','38.883528','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171635,'130602','130600','0312','130602','district','竞秀区','115.458671','38.877318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171636,'130629','130600','0312','130629','district','容城县','115.861635','39.043321','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171637,'130626','130600','0312','130626','district','定兴县','115.808183','39.263219','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171638,'130609','130600','0312','130609','district','徐水区','115.655772','39.018781','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171639,'130683','130600','0312','130683','district','安国市','115.327088','38.418985','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171640,'130637','130600','0312','130637','district','博野县','115.464295','38.458048','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171641,'130681','130600','0312','130681','district','涿州市','115.97444','39.485684','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171642,'130684','130600','0312','130684','district','高碑店市','115.873612','39.327233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171643,'130500','130000','0319','130500','city','邢台市','114.49742','37.060227','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171644,'130581','130500','0319','130581','district','南宫市','115.40866','37.358907','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171645,'130524','130500','0319','130524','district','柏乡县','114.693447','37.48288','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171646,'130534','130500','0319','130534','district','清河县','115.665081','37.0451','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171647,'130506','130500','0319','130506','district','南和区','114.683683','37.005626','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171648,'130530','130500','0319','130530','district','新河县','115.251005','37.520891','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171649,'130533','130500','0319','130533','district','威县','115.266829','36.975164','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171650,'130535','130500','0319','130535','district','临西县','115.501258','36.871312','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171651,'130582','130500','0319','130582','district','沙河市','114.503023','36.855548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171652,'130522','130500','0319','130522','district','临城县','114.498651','37.444512','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171653,'130529','130500','0319','130529','district','巨鹿县','115.037884','37.221293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171654,'130503','130500','0319','130503','district','信都区','114.468229','37.093798','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171655,'130502','130500','0319','130502','district','襄都区','114.507443','37.071314','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171656,'130505','130500','0319','130505','district','任泽区','114.671339','37.121958','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171657,'130525','130500','0319','130525','district','隆尧县','114.770509','37.351232','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171658,'130523','130500','0319','130523','district','内丘县','114.512226','37.287612','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171659,'130532','130500','0319','130532','district','平乡县','115.03008','37.063771','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171660,'130531','130500','0319','130531','district','广宗县','115.142766','37.074795','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171661,'130528','130500','0319','130528','district','宁晋县','114.940006','37.624524','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171662,'810000','100000','','810000','province','香港特别行政区','114.170714','22.278354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171663,'810000_xianggangtebiexingzhengqu','810000','','810000','city','香港特别行政区','114.170714','22.278354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171664,'810013','810000_xianggangtebiexingzhengqu','1852','810013','district','北区','114.1473639','22.49610389','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171665,'810007','810000_xianggangtebiexingzhengqu','1852','810007','district','九龙城区','114.1928467','22.31251','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171666,'810006','810000_xianggangtebiexingzhengqu','1852','810006','district','深水埗区','114.1632417','22.33385417','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171667,'810011','810000_xianggangtebiexingzhengqu','1852','810011','district','屯门区','113.9765742','22.39384417','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171668,'810014','810000_xianggangtebiexingzhengqu','1852','810014','district','大埔区','114.1717431','22.44565306','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171669,'810008','810000_xianggangtebiexingzhengqu','1852','810008','district','黄大仙区','114.2038856','22.33632056','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171670,'810015','810000_xianggangtebiexingzhengqu','1852','810015','district','西贡区','114.264645','22.31421306','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171671,'810016','810000_xianggangtebiexingzhengqu','1852','810016','district','沙田区','114.1953653','22.37953167','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171672,'810009','810000_xianggangtebiexingzhengqu','1852','810009','district','观塘区','114.2140542','22.32083778','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171673,'810001','810000_xianggangtebiexingzhengqu','1852','810001','district','中西区','114.1543731','22.28198083','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171674,'810018','810000_xianggangtebiexingzhengqu','1852','810018','district','离岛区','113.94612','22.28640778','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171675,'810005','810000_xianggangtebiexingzhengqu','1852','810005','district','油尖旺区','114.1733317','22.31170389','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171676,'810002','810000_xianggangtebiexingzhengqu','1852','810002','district','湾仔区','114.1829153','22.27638889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171677,'810003','810000_xianggangtebiexingzhengqu','1852','810003','district','东区','114.2260031','22.27969306','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171678,'810004','810000_xianggangtebiexingzhengqu','1852','810004','district','南区','114.1600117','22.24589667','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171679,'810012','810000_xianggangtebiexingzhengqu','1852','810012','district','元朗区','114.0324381','22.44142833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171680,'810010','810000_xianggangtebiexingzhengqu','1852','810010','district','荃湾区','114.1210792','22.36830667','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171681,'810017','810000_xianggangtebiexingzhengqu','1852','810017','district','葵青区','114.1393194','22.36387667','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171682,'710000','100000','','710000','province','台湾省','121.509062','25.044332','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171683,'710000_taibeishi','710000','',NULL,'city','台北市','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171684,'710000_taibeishi_nangangqu','710000_taibeishi','',NULL,'district','南港区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171685,'710000_taibeishi_neihuqu','710000_taibeishi','',NULL,'district','内湖区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171686,'710000_taibeishi_daanqu','710000_taibeishi','',NULL,'district','大安区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171687,'710000_taibeishi_songshanqu','710000_taibeishi','',NULL,'district','松山区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171688,'710000_taibeishi_xinyiqu','710000_taibeishi','',NULL,'district','信义区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171689,'710000_taibeishi_wenshanqu','710000_taibeishi','',NULL,'district','文山区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171690,'710000_taibeishi_zhongzhengqu','710000_taibeishi','',NULL,'district','中正区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171691,'710000_taibeishi_wanhuaqu','710000_taibeishi','',NULL,'district','万华区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171692,'710000_taibeishi_shilinqu','710000_taibeishi','',NULL,'district','士林区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171693,'710000_taibeishi_beitouqu','710000_taibeishi','',NULL,'district','北投区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171694,'710000_taibeishi_zhongshanqu','710000_taibeishi','',NULL,'district','中山区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171695,'710000_taibeishi_datongqu','710000_taibeishi','',NULL,'district','大同区','121.574539','25.052047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171696,'710000_xinbeishi','710000','',NULL,'city','新北市','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171697,'710000_xinbeishi_banqiaoqu','710000_xinbeishi','',NULL,'district','板桥区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171698,'710000_xinbeishi_xizhiqu','710000_xinbeishi','',NULL,'district','汐止区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171699,'710000_xinbeishi_xindianqu','710000_xinbeishi','',NULL,'district','新店区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171700,'710000_xinbeishi_yonghequ','710000_xinbeishi','',NULL,'district','永和区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171701,'710000_xinbeishi_zhonghequ','710000_xinbeishi','',NULL,'district','中和区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171702,'710000_xinbeishi_tuchengqu','710000_xinbeishi','',NULL,'district','土城区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171703,'710000_xinbeishi_shulinqu','710000_xinbeishi','',NULL,'district','树林区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171704,'710000_xinbeishi_sanzhongqu','710000_xinbeishi','',NULL,'district','三重区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171705,'710000_xinbeishi_xinzhuangqu','710000_xinbeishi','',NULL,'district','新庄区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171706,'710000_xinbeishi_luzhouqu','710000_xinbeishi','',NULL,'district','芦洲区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171707,'710000_xinbeishi_ruifangqu','710000_xinbeishi','',NULL,'district','瑞芳区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171708,'710000_xinbeishi_sanxiaqu','710000_xinbeishi','',NULL,'district','三峡区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171709,'710000_xinbeishi_yinggequ','710000_xinbeishi','',NULL,'district','莺歌区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171710,'710000_xinbeishi_danshuiqu','710000_xinbeishi','',NULL,'district','淡水区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171711,'710000_xinbeishi_wanliqu','710000_xinbeishi','',NULL,'district','万里区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171712,'710000_xinbeishi_jinshanqu','710000_xinbeishi','',NULL,'district','金山区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171713,'710000_xinbeishi_shenkengqu','710000_xinbeishi','',NULL,'district','深坑区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171714,'710000_xinbeishi_shidingqu','710000_xinbeishi','',NULL,'district','石碇区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171715,'710000_xinbeishi_pingxiqu','710000_xinbeishi','',NULL,'district','平溪区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171716,'710000_xinbeishi_shuangxiqu','710000_xinbeishi','',NULL,'district','双溪区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171717,'710000_xinbeishi_gongliaoqu','710000_xinbeishi','',NULL,'district','贡寮区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171718,'710000_xinbeishi_pinglinqu','710000_xinbeishi','',NULL,'district','坪林区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171719,'710000_xinbeishi_wulaiqu','710000_xinbeishi','',NULL,'district','乌来区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171720,'710000_xinbeishi_taishanqu','710000_xinbeishi','',NULL,'district','泰山区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171721,'710000_xinbeishi_linkouqu','710000_xinbeishi','',NULL,'district','林口区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171722,'710000_xinbeishi_wuguqu','710000_xinbeishi','',NULL,'district','五股区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171723,'710000_xinbeishi_baliqu','710000_xinbeishi','',NULL,'district','八里区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171724,'710000_xinbeishi_sanzhiqu','710000_xinbeishi','',NULL,'district','三芝区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171725,'710000_xinbeishi_shimenqu','710000_xinbeishi','',NULL,'district','石门区','121.477953','25.022714','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171726,'710000_taoyuanshi','710000','',NULL,'city','桃园市','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171727,'710000_taoyuanshi_taoyuanqu','710000_taoyuanshi','',NULL,'district','桃园区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171728,'710000_taoyuanshi_zhongliqu','710000_taoyuanshi','',NULL,'district','中坜区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171729,'710000_taoyuanshi_pingzhenqu','710000_taoyuanshi','',NULL,'district','平镇区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171730,'710000_taoyuanshi_badequ','710000_taoyuanshi','',NULL,'district','八德区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171731,'710000_taoyuanshi_yangmeiqu','710000_taoyuanshi','',NULL,'district','杨梅区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171732,'710000_taoyuanshi_luzhuqu','710000_taoyuanshi','',NULL,'district','芦竹区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171733,'710000_taoyuanshi_daxiqu','710000_taoyuanshi','',NULL,'district','大溪区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171734,'710000_taoyuanshi_longtanqu','710000_taoyuanshi','',NULL,'district','龙潭区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171735,'710000_taoyuanshi_guishanqu','710000_taoyuanshi','',NULL,'district','龟山区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171736,'710000_taoyuanshi_dayuanqu','710000_taoyuanshi','',NULL,'district','大园区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171737,'710000_taoyuanshi_guanyinqu','710000_taoyuanshi','',NULL,'district','观音区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171738,'710000_taoyuanshi_xinwuqu','710000_taoyuanshi','',NULL,'district','新屋区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171739,'710000_taoyuanshi_fuxingqu','710000_taoyuanshi','',NULL,'district','复兴区','121.305479','25.008045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171740,'710000_taizhongshi','710000','',NULL,'city','台中市','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171741,'710000_taizhongshi_zhongqu','710000_taizhongshi','',NULL,'district','中区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171742,'710000_taizhongshi_dongqu','710000_taizhongshi','',NULL,'district','东区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171743,'710000_taizhongshi_nanqu','710000_taizhongshi','',NULL,'district','南区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171744,'710000_taizhongshi_xiqu','710000_taizhongshi','',NULL,'district','西区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171745,'710000_taizhongshi_beiqu','710000_taizhongshi','',NULL,'district','北区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171746,'710000_taizhongshi_beitunqu','710000_taizhongshi','',NULL,'district','北屯区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171747,'710000_taizhongshi_xitunqu','710000_taizhongshi','',NULL,'district','西屯区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171748,'710000_taizhongshi_nantunqu','710000_taizhongshi','',NULL,'district','南屯区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171749,'710000_taizhongshi_taipingqu','710000_taizhongshi','',NULL,'district','太平区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171750,'710000_taizhongshi_daliqu','710000_taizhongshi','',NULL,'district','大里区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171751,'710000_taizhongshi_wufengqu','710000_taizhongshi','',NULL,'district','雾峰区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171752,'710000_taizhongshi_wuriqu','710000_taizhongshi','',NULL,'district','乌日区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171753,'710000_taizhongshi_fengyuanqu','710000_taizhongshi','',NULL,'district','丰原区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171754,'710000_taizhongshi_houliqu','710000_taizhongshi','',NULL,'district','后里区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171755,'710000_taizhongshi_tanziqu','710000_taizhongshi','',NULL,'district','潭子区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171756,'710000_taizhongshi_dayaqu','710000_taizhongshi','',NULL,'district','大雅区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171757,'710000_taizhongshi_shengangqu','710000_taizhongshi','',NULL,'district','神冈区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171758,'710000_taizhongshi_shigangqu','710000_taizhongshi','',NULL,'district','石冈区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171759,'710000_taizhongshi_dongshiqu','710000_taizhongshi','',NULL,'district','东势区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171760,'710000_taizhongshi_xinshequ','710000_taizhongshi','',NULL,'district','新社区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171761,'710000_taizhongshi_hepingqu','710000_taizhongshi','',NULL,'district','和平区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171762,'710000_taizhongshi_daduqu','710000_taizhongshi','',NULL,'district','大肚区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171763,'710000_taizhongshi_shaluqu','710000_taizhongshi','',NULL,'district','沙鹿区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171764,'710000_taizhongshi_longjingqu','710000_taizhongshi','',NULL,'district','龙井区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171765,'710000_taizhongshi_wuqiqu','710000_taizhongshi','',NULL,'district','梧栖区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171766,'710000_taizhongshi_qingshuiqu','710000_taizhongshi','',NULL,'district','清水区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171767,'710000_taizhongshi_dajiaqu','710000_taizhongshi','',NULL,'district','大甲区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171768,'710000_taizhongshi_waipuqu','710000_taizhongshi','',NULL,'district','外埔区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171769,'710000_taizhongshi_daanqu','710000_taizhongshi','',NULL,'district','大安区','120.656974','24.171104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171770,'710000_tainanshi','710000','',NULL,'city','台南市','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171771,'710000_tainanshi_zhongxiqu','710000_tainanshi','',NULL,'district','中西区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171772,'710000_tainanshi_dongqu','710000_tainanshi','',NULL,'district','东区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171773,'710000_tainanshi_nanqu','710000_tainanshi','',NULL,'district','南区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171774,'710000_tainanshi_beiqu','710000_tainanshi','',NULL,'district','北区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171775,'710000_tainanshi_anpingqu','710000_tainanshi','',NULL,'district','安平区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171776,'710000_tainanshi_annanqu','710000_tainanshi','',NULL,'district','安南区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171777,'710000_tainanshi_yongkangqu','710000_tainanshi','',NULL,'district','永康区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171778,'710000_tainanshi_guirenqu','710000_tainanshi','',NULL,'district','归仁区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171779,'710000_tainanshi_xinhuaqu','710000_tainanshi','',NULL,'district','新化区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171780,'710000_tainanshi_zuozhenqu','710000_tainanshi','',NULL,'district','左镇区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171781,'710000_tainanshi_yujingqu','710000_tainanshi','',NULL,'district','玉井区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171782,'710000_tainanshi_nanxiqu','710000_tainanshi','',NULL,'district','楠西区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171783,'710000_tainanshi_nanhuaqu','710000_tainanshi','',NULL,'district','南化区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171784,'710000_tainanshi_rendequ','710000_tainanshi','',NULL,'district','仁德区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171785,'710000_tainanshi_guanmiaoqu','710000_tainanshi','',NULL,'district','关庙区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171786,'710000_tainanshi_longqiqu','710000_tainanshi','',NULL,'district','龙崎区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171787,'710000_tainanshi_guantianqu','710000_tainanshi','',NULL,'district','官田区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171788,'710000_tainanshi_madouqu','710000_tainanshi','',NULL,'district','麻豆区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171789,'710000_tainanshi_jialiqu','710000_tainanshi','',NULL,'district','佳里区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171790,'710000_tainanshi_xigangqu','710000_tainanshi','',NULL,'district','西港区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171791,'710000_tainanshi_qiguqu','710000_tainanshi','',NULL,'district','七股区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171792,'710000_tainanshi_jiangjunqu','710000_tainanshi','',NULL,'district','将军区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171793,'710000_tainanshi_xuejiaqu','710000_tainanshi','',NULL,'district','学甲区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171794,'710000_tainanshi_beimenqu','710000_tainanshi','',NULL,'district','北门区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171795,'710000_tainanshi_xinyingqu','710000_tainanshi','',NULL,'district','新营区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171796,'710000_tainanshi_houbiqu','710000_tainanshi','',NULL,'district','后壁区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171797,'710000_tainanshi_baihequ','710000_tainanshi','',NULL,'district','白河区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171798,'710000_tainanshi_dongshanqu','710000_tainanshi','',NULL,'district','东山区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171799,'710000_tainanshi_liujiaqu','710000_tainanshi','',NULL,'district','六甲区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171800,'710000_tainanshi_xiayingqu','710000_tainanshi','',NULL,'district','下营区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171801,'710000_tainanshi_liuyingqu','710000_tainanshi','',NULL,'district','柳营区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171802,'710000_tainanshi_yanshuiqu','710000_tainanshi','',NULL,'district','盐水区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171803,'710000_tainanshi_shanhuaqu','710000_tainanshi','',NULL,'district','善化区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171804,'710000_tainanshi_daneiqu','710000_tainanshi','',NULL,'district','大内区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171805,'710000_tainanshi_shanshangqu','710000_tainanshi','',NULL,'district','山上区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171806,'710000_tainanshi_xinshiqu','710000_tainanshi','',NULL,'district','新市区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171807,'710000_tainanshi_andingqu','710000_tainanshi','',NULL,'district','安定区','120.197041','23.001107','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171808,'710000_gaoxiongshi','710000','',NULL,'city','高雄市','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171809,'710000_gaoxiongshi_nanziqu','710000_gaoxiongshi','',NULL,'district','楠梓区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171810,'710000_gaoxiongshi_zuoyingqu','710000_gaoxiongshi','',NULL,'district','左营区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171811,'710000_gaoxiongshi_gushanqu','710000_gaoxiongshi','',NULL,'district','鼓山区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171812,'710000_gaoxiongshi_sanminqu','710000_gaoxiongshi','',NULL,'district','三民区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171813,'710000_gaoxiongshi_yanchengqu','710000_gaoxiongshi','',NULL,'district','盐埕区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171814,'710000_gaoxiongshi_qianjinqu','710000_gaoxiongshi','',NULL,'district','前金区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171815,'710000_gaoxiongshi_xinxingqu','710000_gaoxiongshi','',NULL,'district','新兴区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171816,'710000_gaoxiongshi_lingyaqu','710000_gaoxiongshi','',NULL,'district','苓雅区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171817,'710000_gaoxiongshi_qianzhenqu','710000_gaoxiongshi','',NULL,'district','前镇区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171818,'710000_gaoxiongshi_qijinqu','710000_gaoxiongshi','',NULL,'district','旗津区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171819,'710000_gaoxiongshi_xiaogangqu','710000_gaoxiongshi','',NULL,'district','小港区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171820,'710000_gaoxiongshi_fengshanqu','710000_gaoxiongshi','',NULL,'district','凤山区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171821,'710000_gaoxiongshi_daliaoqu','710000_gaoxiongshi','',NULL,'district','大寮区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171822,'710000_gaoxiongshi_niaosongqu','710000_gaoxiongshi','',NULL,'district','鸟松区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171823,'710000_gaoxiongshi_linyuanqu','710000_gaoxiongshi','',NULL,'district','林园区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171824,'710000_gaoxiongshi_renwuqu','710000_gaoxiongshi','',NULL,'district','仁武区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171825,'710000_gaoxiongshi_dashuqu','710000_gaoxiongshi','',NULL,'district','大树区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171826,'710000_gaoxiongshi_dashequ','710000_gaoxiongshi','',NULL,'district','大社区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171827,'710000_gaoxiongshi_gangshanqu','710000_gaoxiongshi','',NULL,'district','冈山区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171828,'710000_gaoxiongshi_luzhuqu','710000_gaoxiongshi','',NULL,'district','路竹区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171829,'710000_gaoxiongshi_qiaotouqu','710000_gaoxiongshi','',NULL,'district','桥头区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171830,'710000_gaoxiongshi_ziguanqu','710000_gaoxiongshi','',NULL,'district','梓官区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171831,'710000_gaoxiongshi_mituoqu','710000_gaoxiongshi','',NULL,'district','弥陀区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171832,'710000_gaoxiongshi_yonganqu','710000_gaoxiongshi','',NULL,'district','永安区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171833,'710000_gaoxiongshi_yanchaoqu','710000_gaoxiongshi','',NULL,'district','燕巢区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171834,'710000_gaoxiongshi_alianqu','710000_gaoxiongshi','',NULL,'district','阿莲区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171835,'710000_gaoxiongshi_qiedingqu','710000_gaoxiongshi','',NULL,'district','茄萣区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171836,'710000_gaoxiongshi_huneiqu','710000_gaoxiongshi','',NULL,'district','湖内区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171837,'710000_gaoxiongshi_qishanqu','710000_gaoxiongshi','',NULL,'district','旗山区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171838,'710000_gaoxiongshi_meinongqu','710000_gaoxiongshi','',NULL,'district','美浓区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171839,'710000_gaoxiongshi_neimenqu','710000_gaoxiongshi','',NULL,'district','内门区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171840,'710000_gaoxiongshi_shanlinqu','710000_gaoxiongshi','',NULL,'district','杉林区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171841,'710000_gaoxiongshi_jiaxianqu','710000_gaoxiongshi','',NULL,'district','甲仙区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171842,'710000_gaoxiongshi_liuguiqu','710000_gaoxiongshi','',NULL,'district','六龟区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171843,'710000_gaoxiongshi_maolinqutaoyuanqu','710000_gaoxiongshi','',NULL,'district','茂林区桃源区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171844,'710000_gaoxiongshi_neimaxiaqu','710000_gaoxiongshi','',NULL,'district','那玛夏区','120.321223','22.630139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171845,'710000_jilongshi','710000','',NULL,'city','基隆市','121.756442','25.145529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171846,'710000_jilongshi_zhongzhengqu','710000_jilongshi','',NULL,'district','中正区','121.756442','25.145529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171847,'710000_jilongshi_xinyiqu','710000_jilongshi','',NULL,'district','信义区','121.756442','25.145529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171848,'710000_jilongshi_renaiqu','710000_jilongshi','',NULL,'district','仁爱区','121.756442','25.145529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171849,'710000_jilongshi_zhongshanqu','710000_jilongshi','',NULL,'district','中山区','121.756442','25.145529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171850,'710000_jilongshi_anlequ','710000_jilongshi','',NULL,'district','安乐区','121.756442','25.145529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171851,'710000_jilongshi_nuannuanqu','710000_jilongshi','',NULL,'district','暖暖区','121.756442','25.145529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171852,'710000_xinzhushi','710000','',NULL,'city','新竹市','120.97929','24.809699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171853,'710000_xinzhushi_dongqu','710000_xinzhushi','',NULL,'district','东区','120.97929','24.809699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171854,'710000_xinzhushi_beiqu','710000_xinzhushi','',NULL,'district','北区','120.97929','24.809699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171855,'710000_xinzhushi_xiangshanqu','710000_xinzhushi','',NULL,'district','香山区','120.97929','24.809699','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171856,'710000_jiayishi','710000','',NULL,'city','嘉义市','120.462941','23.486836','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171857,'710000_jiayishi_dongqu','710000_jiayishi','',NULL,'district','东区','120.462941','23.486836','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171858,'710000_jiayishi_xiqu','710000_jiayishi','',NULL,'district','西区','120.462941','23.486836','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171859,'710000_xinzhuxian','710000','',NULL,'city','新竹县','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171860,'710000_xinzhuxian_zhubeishi','710000_xinzhuxian','',NULL,'district','竹北市','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171861,'710000_xinzhuxian_hukouxiang','710000_xinzhuxian','',NULL,'district','湖口乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171862,'710000_xinzhuxian_xinfengxiang','710000_xinzhuxian','',NULL,'district','新丰乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171863,'710000_xinzhuxian_xinpuzhen','710000_xinzhuxian','',NULL,'district','新埔镇','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171864,'710000_xinzhuxian_guanxizhen','710000_xinzhuxian','',NULL,'district','关西镇','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171865,'710000_xinzhuxian_xionglinxiang','710000_xinzhuxian','',NULL,'district','芎林乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171866,'710000_xinzhuxian_baoshanxiang','710000_xinzhuxian','',NULL,'district','宝山乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171867,'710000_xinzhuxian_zhudongzhen','710000_xinzhuxian','',NULL,'district','竹东镇','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171868,'710000_xinzhuxian_wufengxiang','710000_xinzhuxian','',NULL,'district','五峰乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171869,'710000_xinzhuxian_hengshanxiang','710000_xinzhuxian','',NULL,'district','横山乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171870,'710000_xinzhuxian_jianshixiang','710000_xinzhuxian','',NULL,'district','尖石乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171871,'710000_xinzhuxian_beipuxiang','710000_xinzhuxian','',NULL,'district','北埔乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171872,'710000_xinzhuxian_emeixiang','710000_xinzhuxian','',NULL,'district','峨眉乡','121.023322','24.8322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171873,'710000_miaolixian','710000','',NULL,'city','苗栗县','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171874,'710000_miaolixian_zhunanzhen','710000_miaolixian','',NULL,'district','竹南镇','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171875,'710000_miaolixian_toufenxiang','710000_miaolixian','',NULL,'district','头份乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171876,'710000_miaolixian_sanwanxiang','710000_miaolixian','',NULL,'district','三湾乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171877,'710000_miaolixian_nanzhuangxiang','710000_miaolixian','',NULL,'district','南庄乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171878,'710000_miaolixian_shitanxiang','710000_miaolixian','',NULL,'district','狮潭乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171879,'710000_miaolixian_houlongzhen','710000_miaolixian','',NULL,'district','后龙镇','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171880,'710000_miaolixian_tongxiaozhen','710000_miaolixian','',NULL,'district','通霄镇','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171881,'710000_miaolixian_yuanlizhen','710000_miaolixian','',NULL,'district','苑里镇','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171882,'710000_miaolixian_miaolishi','710000_miaolixian','',NULL,'district','苗栗市','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171883,'710000_miaolixian_zaoqiaoxiang','710000_miaolixian','',NULL,'district','造桥乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171884,'710000_miaolixian_touwuxiang','710000_miaolixian','',NULL,'district','头屋乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171885,'710000_miaolixian_gongguanxiang','710000_miaolixian','',NULL,'district','公馆乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171886,'710000_miaolixian_dahuxiang','710000_miaolixian','',NULL,'district','大湖乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171887,'710000_miaolixian_taianxiang','710000_miaolixian','',NULL,'district','泰安乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171888,'710000_miaolixian_tongluoxiang','710000_miaolixian','',NULL,'district','铜锣乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171889,'710000_miaolixian_sanyixiang','710000_miaolixian','',NULL,'district','三义乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171890,'710000_miaolixian_xihuxiang','710000_miaolixian','',NULL,'district','西湖乡','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171891,'710000_miaolixian_zhuolanzhen','710000_miaolixian','',NULL,'district','卓兰镇','120.831336','24.567931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171892,'710000_zhanghuaxian','710000','',NULL,'city','彰化县','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171893,'710000_zhanghuaxian_zhanghuashi','710000_zhanghuaxian','',NULL,'district','彰化市','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171894,'710000_zhanghuaxian_fenyuanxiang','710000_zhanghuaxian','',NULL,'district','芬园乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171895,'710000_zhanghuaxian_huatanxiang','710000_zhanghuaxian','',NULL,'district','花坛乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171896,'710000_zhanghuaxian_xiushuixiang','710000_zhanghuaxian','',NULL,'district','秀水乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171897,'710000_zhanghuaxian_lugangzhen','710000_zhanghuaxian','',NULL,'district','鹿港镇','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171898,'710000_zhanghuaxian_fuxingxiang','710000_zhanghuaxian','',NULL,'district','福兴乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171899,'710000_zhanghuaxian_xianxixiang','710000_zhanghuaxian','',NULL,'district','线西乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171900,'710000_zhanghuaxian_hemeizhen','710000_zhanghuaxian','',NULL,'district','和美镇','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171901,'710000_zhanghuaxian_shengangxiang','710000_zhanghuaxian','',NULL,'district','伸港乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171902,'710000_zhanghuaxian_yuanlinshi','710000_zhanghuaxian','',NULL,'district','员林市','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171903,'710000_zhanghuaxian_shetouxiang','710000_zhanghuaxian','',NULL,'district','社头乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171904,'710000_zhanghuaxian_yongjingxiang','710000_zhanghuaxian','',NULL,'district','永靖乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171905,'710000_zhanghuaxian_puxinxiang','710000_zhanghuaxian','',NULL,'district','埔心乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171906,'710000_zhanghuaxian_xihuzhen','710000_zhanghuaxian','',NULL,'district','溪湖镇','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171907,'710000_zhanghuaxian_dacunxiang','710000_zhanghuaxian','',NULL,'district','大村乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171908,'710000_zhanghuaxian_puyanxiang','710000_zhanghuaxian','',NULL,'district','埔盐乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171909,'710000_zhanghuaxian_tianzhongzhen','710000_zhanghuaxian','',NULL,'district','田中镇','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171910,'710000_zhanghuaxian_beidouzhen','710000_zhanghuaxian','',NULL,'district','北斗镇','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171911,'710000_zhanghuaxian_tianweixiang','710000_zhanghuaxian','',NULL,'district','田尾乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171912,'710000_zhanghuaxian_kuntouxiang','710000_zhanghuaxian','',NULL,'district','坤头乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171913,'710000_zhanghuaxian_xizhouxiang','710000_zhanghuaxian','',NULL,'district','溪州乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171914,'710000_zhanghuaxian_zhutangxiang','710000_zhanghuaxian','',NULL,'district','竹塘乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171915,'710000_zhanghuaxian_erlinzhen','710000_zhanghuaxian','',NULL,'district','二林镇','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171916,'710000_zhanghuaxian_dachengxiang','710000_zhanghuaxian','',NULL,'district','大城乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171917,'710000_zhanghuaxian_fangyuanxiang','710000_zhanghuaxian','',NULL,'district','芳苑乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171918,'710000_zhanghuaxian_ershuixiang','710000_zhanghuaxian','',NULL,'district','二水乡','120.553823','24.07942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171919,'710000_nantouxian','710000','',NULL,'city','南投县','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171920,'710000_nantouxian_nantoushi','710000_nantouxian','',NULL,'district','南投市','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171921,'710000_nantouxian_zhongliaoxiang','710000_nantouxian','',NULL,'district','中寮乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171922,'710000_nantouxian_caotunzhen','710000_nantouxian','',NULL,'district','草屯镇','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171923,'710000_nantouxian_guoxingxiang','710000_nantouxian','',NULL,'district','国姓乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171924,'710000_nantouxian_pulizhen','710000_nantouxian','',NULL,'district','埔里镇','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171925,'710000_nantouxian_renaixiang','710000_nantouxian','',NULL,'district','仁爱乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171926,'710000_nantouxian_mingjianxiang','710000_nantouxian','',NULL,'district','名间乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171927,'710000_nantouxian_jijizhen','710000_nantouxian','',NULL,'district','集集镇','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171928,'710000_nantouxian_shuilixiang','710000_nantouxian','',NULL,'district','水里乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171929,'710000_nantouxian_yuchixiang','710000_nantouxian','',NULL,'district','鱼池乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171930,'710000_nantouxian_xinyixiang','710000_nantouxian','',NULL,'district','信义乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171931,'710000_nantouxian_zhushanzhen','710000_nantouxian','',NULL,'district','竹山镇','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171932,'710000_nantouxian_luguxiang','710000_nantouxian','',NULL,'district','鹿谷乡','120.701387','23.907318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171933,'710000_yunlinxian','710000','',NULL,'city','云林县','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171934,'710000_yunlinxian_dounanzhen','710000_yunlinxian','',NULL,'district','斗南镇','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171935,'710000_yunlinxian_dapixiang','710000_yunlinxian','',NULL,'district','大埤乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171936,'710000_yunlinxian_huweizhen','710000_yunlinxian','',NULL,'district','虎尾镇','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171937,'710000_yunlinxian_tukuzhen','710000_yunlinxian','',NULL,'district','土库镇','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171938,'710000_yunlinxian_baozhongxiang','710000_yunlinxian','',NULL,'district','褒忠乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171939,'710000_yunlinxian_dongshixiang','710000_yunlinxian','',NULL,'district','东势乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171940,'710000_yunlinxian_taixixiang','710000_yunlinxian','',NULL,'district','台西乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171941,'710000_yunlinxian_lunbeixiang','710000_yunlinxian','',NULL,'district','仑背乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171942,'710000_yunlinxian_mailiaoxiang','710000_yunlinxian','',NULL,'district','麦寮乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171943,'710000_yunlinxian_douliushi','710000_yunlinxian','',NULL,'district','斗六市','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171944,'710000_yunlinxian_linneixiang','710000_yunlinxian','',NULL,'district','林内乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171945,'710000_yunlinxian_gukengxiang','710000_yunlinxian','',NULL,'district','古坑乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171946,'710000_yunlinxian_citongxiang','710000_yunlinxian','',NULL,'district','莿桐乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171947,'710000_yunlinxian_xiluozhen','710000_yunlinxian','',NULL,'district','西螺镇','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171948,'710000_yunlinxian_erlunxiang','710000_yunlinxian','',NULL,'district','二仑乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171949,'710000_yunlinxian_beigangzhen','710000_yunlinxian','',NULL,'district','北港镇','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171950,'710000_yunlinxian_shuilinxiang','710000_yunlinxian','',NULL,'district','水林乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171951,'710000_yunlinxian_kouhuxiang','710000_yunlinxian','',NULL,'district','口湖乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171952,'710000_yunlinxian_sihuxiang','710000_yunlinxian','',NULL,'district','四湖乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171953,'710000_yunlinxian_yuanzhangxiang','710000_yunlinxian','',NULL,'district','元长乡','120.536595','23.703759','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171954,'710000_jiayixian','710000','',NULL,'city','嘉义县','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171955,'710000_jiayixian_fanluxiang','710000_jiayixian','',NULL,'district','番路乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171956,'710000_jiayixian_meishanxiang','710000_jiayixian','',NULL,'district','梅山乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171957,'710000_jiayixian_zhuqixiang','710000_jiayixian','',NULL,'district','竹崎乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171958,'710000_jiayixian_alishanxiang','710000_jiayixian','',NULL,'district','阿里山乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171959,'710000_jiayixian_zhongpuxiang','710000_jiayixian','',NULL,'district','中埔乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171960,'710000_jiayixian_dapuxiang','710000_jiayixian','',NULL,'district','大埔乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171961,'710000_jiayixian_shuishangxiang','710000_jiayixian','',NULL,'district','水上乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171962,'710000_jiayixian_lucaoxiang','710000_jiayixian','',NULL,'district','鹿草乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171963,'710000_jiayixian_taibaoshi','710000_jiayixian','',NULL,'district','太保市','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171964,'710000_jiayixian_pozishi','710000_jiayixian','',NULL,'district','朴子市','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171965,'710000_jiayixian_dongshixiang','710000_jiayixian','',NULL,'district','东石乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171966,'710000_jiayixian_liujiaoxiang','710000_jiayixian','',NULL,'district','六脚乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171967,'710000_jiayixian_xingangxiang','710000_jiayixian','',NULL,'district','新港乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171968,'710000_jiayixian_minxiongxiang','710000_jiayixian','',NULL,'district','民雄乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171969,'710000_jiayixian_dalinzhen','710000_jiayixian','',NULL,'district','大林镇','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171970,'710000_jiayixian_xikouxiang','710000_jiayixian','',NULL,'district','溪口乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171971,'710000_jiayixian_yizhuxiang','710000_jiayixian','',NULL,'district','义竹乡','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171972,'710000_jiayixian_budaizhen','710000_jiayixian','',NULL,'district','布袋镇','120.303638','23.462898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171973,'710000_pingdongxian','710000','',NULL,'city','屏东县','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171974,'710000_pingdongxian_pingdongshi','710000_pingdongxian','',NULL,'district','屏东市','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171975,'710000_pingdongxian_sandimenxiang','710000_pingdongxian','',NULL,'district','三地门乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171976,'710000_pingdongxian_wutaixiang','710000_pingdongxian','',NULL,'district','雾台乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171977,'710000_pingdongxian_majiaxiang','710000_pingdongxian','',NULL,'district','玛家乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171978,'710000_pingdongxian_jiuruxiang','710000_pingdongxian','',NULL,'district','九如乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171979,'710000_pingdongxian_ligangxiang','710000_pingdongxian','',NULL,'district','里港乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171980,'710000_pingdongxian_gaoshuxiang','710000_pingdongxian','',NULL,'district','高树乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171981,'710000_pingdongxian_yanpuxiang','710000_pingdongxian','',NULL,'district','盐埔乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171982,'710000_pingdongxian_zhangzhixiang','710000_pingdongxian','',NULL,'district','长治乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171983,'710000_pingdongxian_linluoxiang','710000_pingdongxian','',NULL,'district','麟洛乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171984,'710000_pingdongxian_zhutianxiang','710000_pingdongxian','',NULL,'district','竹田乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171985,'710000_pingdongxian_neipuxiang','710000_pingdongxian','',NULL,'district','内埔乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171986,'710000_pingdongxian_wandanxiang','710000_pingdongxian','',NULL,'district','万丹乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171987,'710000_pingdongxian_chaozhouzhen','710000_pingdongxian','',NULL,'district','潮州镇','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171988,'710000_pingdongxian_taiwuxiang','710000_pingdongxian','',NULL,'district','泰武乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171989,'710000_pingdongxian_laiyixiang','710000_pingdongxian','',NULL,'district','来义乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171990,'710000_pingdongxian_wanluanxiang','710000_pingdongxian','',NULL,'district','万峦乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171991,'710000_pingdongxian_kandingxiang','710000_pingdongxian','',NULL,'district','崁顶乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171992,'710000_pingdongxian_xinpixiang','710000_pingdongxian','',NULL,'district','新埤乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171993,'710000_pingdongxian_nanzhouxiang','710000_pingdongxian','',NULL,'district','南州乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171994,'710000_pingdongxian_linbianxiang','710000_pingdongxian','',NULL,'district','林边乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171995,'710000_pingdongxian_donggangzhen','710000_pingdongxian','',NULL,'district','东港镇','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171996,'710000_pingdongxian_liuqiuxiang','710000_pingdongxian','',NULL,'district','琉球乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171997,'710000_pingdongxian_jiadongxiang','710000_pingdongxian','',NULL,'district','佳冬乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171998,'710000_pingdongxian_xinyuanxiang','710000_pingdongxian','',NULL,'district','新园乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(171999,'710000_pingdongxian_fangliaoxiang','710000_pingdongxian','',NULL,'district','枋寮乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172000,'710000_pingdongxian_fangshanxiang','710000_pingdongxian','',NULL,'district','枋山乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172001,'710000_pingdongxian_chunrixiang','710000_pingdongxian','',NULL,'district','春日乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172002,'710000_pingdongxian_shizixiang','710000_pingdongxian','',NULL,'district','狮子乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172003,'710000_pingdongxian_dongchengxiang','710000_pingdongxian','',NULL,'district','东城乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172004,'710000_pingdongxian_mudanxiang','710000_pingdongxian','',NULL,'district','牡丹乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172005,'710000_pingdongxian_hengchunzhen','710000_pingdongxian','',NULL,'district','恒春镇','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172006,'710000_pingdongxian_manzhouxiang','710000_pingdongxian','',NULL,'district','满州乡','120.496653','22.687529','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172007,'710000_yilanxian','710000','',NULL,'city','宜兰县','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172008,'710000_yilanxian_yilanshi','710000_yilanxian','',NULL,'district','宜兰市','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172009,'710000_yilanxian_touchengzhen','710000_yilanxian','',NULL,'district','头城镇','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172010,'710000_yilanxian_jiaoxixiang','710000_yilanxian','',NULL,'district','礁溪乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172011,'710000_yilanxian_zhuangweixiang','710000_yilanxian','',NULL,'district','壮围乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172012,'710000_yilanxian_yuanshanxiang','710000_yilanxian','',NULL,'district','员山乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172013,'710000_yilanxian_luodongzhen','710000_yilanxian','',NULL,'district','罗东镇','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172014,'710000_yilanxian_sanxingxiang','710000_yilanxian','',NULL,'district','三星乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172015,'710000_yilanxian_datongxiang','710000_yilanxian','',NULL,'district','大同乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172016,'710000_yilanxian_wujiexiang','710000_yilanxian','',NULL,'district','五结乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172017,'710000_yilanxian_dongshanxiang','710000_yilanxian','',NULL,'district','冬山乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172018,'710000_yilanxian_suaozhen','710000_yilanxian','',NULL,'district','苏澳镇','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172019,'710000_yilanxian_nanaoxiang','710000_yilanxian','',NULL,'district','南澳乡','121.77289','24.735701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172020,'710000_hualianxian','710000','',NULL,'city','花莲县','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172021,'710000_hualianxian_hualianshi','710000_hualianxian','',NULL,'district','花莲市','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172022,'710000_hualianxian_xinchengxiang','710000_hualianxian','',NULL,'district','新城乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172023,'710000_hualianxian_xiulinxiang','710000_hualianxian','',NULL,'district','秀林乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172024,'710000_hualianxian_jianxiang','710000_hualianxian','',NULL,'district','吉安乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172025,'710000_hualianxian_shoufengxiang','710000_hualianxian','',NULL,'district','寿丰乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172026,'710000_hualianxian_fenglinzhen','710000_hualianxian','',NULL,'district','凤林镇','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172027,'710000_hualianxian_guangfuxiang','710000_hualianxian','',NULL,'district','光复乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172028,'710000_hualianxian_fengbinxiang','710000_hualianxian','',NULL,'district','丰滨乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172029,'710000_hualianxian_ruisuixiang','710000_hualianxian','',NULL,'district','瑞穗乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172030,'710000_hualianxian_wanrongxiang','710000_hualianxian','',NULL,'district','万荣乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172031,'710000_hualianxian_yulizhen','710000_hualianxian','',NULL,'district','玉里镇','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172032,'710000_hualianxian_zhuoxixiang','710000_hualianxian','',NULL,'district','卓溪乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172033,'710000_hualianxian_fulixiang','710000_hualianxian','',NULL,'district','富里乡','121.631957','23.995182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172034,'710000_taidongxian','710000','',NULL,'city','台东县','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172035,'710000_taidongxian_taibeishi','710000_taidongxian','',NULL,'district','台北市','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172036,'710000_taidongxian_lu:daoxiang','710000_taidongxian','',NULL,'district','绿岛乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172037,'710000_taidongxian_lanyuxiang','710000_taidongxian','',NULL,'district','兰屿乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172038,'710000_taidongxian_yanpingxiang','710000_taidongxian','',NULL,'district','延平乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172039,'710000_taidongxian_beinanxiang','710000_taidongxian','',NULL,'district','卑南乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172040,'710000_taidongxian_luyexiang','710000_taidongxian','',NULL,'district','鹿野乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172041,'710000_taidongxian_guanshanzhen','710000_taidongxian','',NULL,'district','关山镇','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172042,'710000_taidongxian_haiduanxiang','710000_taidongxian','',NULL,'district','海端乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172043,'710000_taidongxian_chishangxiang','710000_taidongxian','',NULL,'district','池上乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172044,'710000_taidongxian_donghexiang','710000_taidongxian','',NULL,'district','东河乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172045,'710000_taidongxian_chenggongzhen','710000_taidongxian','',NULL,'district','成功镇','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172046,'710000_taidongxian_zhangbinxiang','710000_taidongxian','',NULL,'district','长滨乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172047,'710000_taidongxian_jinfengxiang','710000_taidongxian','',NULL,'district','金峰乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172048,'710000_taidongxian_dawuxiang','710000_taidongxian','',NULL,'district','大武乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172049,'710000_taidongxian_darenxiang','710000_taidongxian','',NULL,'district','达仁乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172050,'710000_taidongxian_taimalixiang','710000_taidongxian','',NULL,'district','太麻里乡','121.161016','22.758833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172051,'710000_penghuxian','710000','',NULL,'city','澎湖县','119.578735','23.57369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172052,'710000_penghuxian_magongshi','710000_penghuxian','',NULL,'district','马公市','119.578735','23.57369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172053,'710000_penghuxian_xiyuxiang','710000_penghuxian','',NULL,'district','西屿乡','119.578735','23.57369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172054,'710000_penghuxian_wanganxiang','710000_penghuxian','',NULL,'district','望安乡','119.578735','23.57369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172055,'710000_penghuxian_qimeixiang','710000_penghuxian','',NULL,'district','七美乡','119.578735','23.57369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172056,'710000_penghuxian_baishaxiang','710000_penghuxian','',NULL,'district','白沙乡','119.578735','23.57369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172057,'710000_penghuxian_huxixiang','710000_penghuxian','',NULL,'district','湖西乡','119.578735','23.57369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172058,'820000','100000','','820000','province','澳门特别行政区','113.543076','22.186927','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172059,'820000_aomentebiexingzhengqu','820000','','820000','city','澳门特别行政区','113.543076','22.186927','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172060,'820006','820000_aomentebiexingzhengqu','1853','820006','district','嘉模堂区','113.5587044','22.15375944','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172061,'820003','820000_aomentebiexingzhengqu','1853','820003','district','望德堂区','113.5501828','22.19372083','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172062,'820002','820000_aomentebiexingzhengqu','1853','820002','district','花王堂区','113.5489608','22.1992075','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172063,'820008','820000_aomentebiexingzhengqu','1853','820008','district','圣方济各堂区','113.5599542','22.12348639','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172064,'820001','820000_aomentebiexingzhengqu','1853','820001','district','花地玛堂区','113.5528956','22.20787','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172065,'820004','820000_aomentebiexingzhengqu','1853','820004','district','大堂区','113.5536475','22.18853944','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172066,'820005','820000_aomentebiexingzhengqu','1853','820005','district','风顺堂区','113.5419278','22.18736806','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172067,'820007','820000_aomentebiexingzhengqu','1853','820007','district','路氹填海区','113.5695992','22.13663','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172068,'620000','100000','','620000','province','甘肃省','103.826777','36.060634','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172069,'620200','620000','1937','620200','city','嘉峪关市','98.2882','39.77325','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172070,'620200_yuquanzhen','620200','1937','620200','street','峪泉镇','98.320410','39.958254','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172071,'620200_xinchengzhen','620200','1937','620200','street','新城镇','98.362748','39.958127','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172072,'620200_wenshuzhen','620200','1937','620200','street','文殊镇','98.157893','39.696861','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172073,'620200_xiongguanjiedao','620200','1937','620200','street','雄关街道','98.239097','39.892952','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172074,'620200_gangchengjiedao','620200','1937','620200','street','钢城街道','98.292606','39.755770','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172075,'620900','620000','0937','620900','city','酒泉市','98.49432','39.733416','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172076,'620923','620900','0937','620923','district','肃北蒙古族自治县','94.876533','39.512158','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172077,'620982','620900','0937','620982','district','敦煌市','94.66201','40.142141','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172078,'620981','620900','0937','620981','district','玉门市','97.045617','40.292344','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172079,'620921','620900','0937','620921','district','金塔县','98.901523','39.984146','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172080,'620902','620900','0937','620902','district','肃州区','98.507834','39.74511','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172081,'620924','620900','0937','620924','district','阿克塞哈萨克族自治县','94.340202','39.633944','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172082,'620922','620900','0937','620922','district','瓜州县','95.782255','40.520457','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172083,'620100','620000','0931','620100','city','兰州市','103.834228','36.060798','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172084,'620111','620100','0931','620111','district','红古区','102.859338','36.345768','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172085,'620105','620100','0931','620105','district','安宁区','103.718953','36.104493','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172086,'620122','620100','0931','620122','district','皋兰县','103.947345','36.332434','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172087,'620121','620100','0931','620121','district','永登县','103.260273','36.736457','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172088,'620104','620100','0931','620104','district','西固区','103.627966','36.08845','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172089,'620123','620100','0931','620123','district','榆中县','104.112541','35.843354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172090,'620103','620100','0931','620103','district','七里河区','103.786261','36.066249','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172091,'620102','620100','0931','620102','district','城关区','103.825315','36.056948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172092,'620800','620000','0933','620800','city','平凉市','106.664913','35.542417','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172093,'620802','620800','0933','620802','district','崆峒区','106.67489','35.542437','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172094,'620825','620800','0933','620825','district','庄浪县','106.036201','35.20266','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172095,'620826','620800','0933','620826','district','静宁县','105.732165','35.522035','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172096,'620822','620800','0933','620822','district','灵台县','107.595874','35.070027','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172097,'620881','620800','0933','620881','district','华亭市','106.628899','35.207695','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172098,'620823','620800','0933','620823','district','崇信县','107.025762','35.305648','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172099,'620821','620800','0933','620821','district','泾川县','107.367608','35.332992','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172100,'620300','620000','0935','620300','city','金昌市','102.187972','38.521468','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172101,'620321','620300','0935','620321','district','永昌县','101.984642','38.243534','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172102,'620302','620300','0935','620302','district','金川区','102.1939','38.520373','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172103,'620500','620000','0938','620500','city','天水市','105.724828','34.581514','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172104,'620521','620500','0938','620521','district','清水县','106.137318','34.749906','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172105,'620503','620500','0938','620503','district','麦积区','105.889452','34.571143','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172106,'620524','620500','0938','620524','district','武山县','104.89121','34.72183','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172107,'620502','620500','0938','620502','district','秦州区','105.724914','34.581187','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172108,'620523','620500','0938','620523','district','甘谷县','105.340789','34.745447','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172109,'620522','620500','0938','620522','district','秦安县','105.675799','34.859094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172110,'620525','620500','0938','620525','district','张家川回族自治县','106.20513','34.988676','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172111,'620400','620000','0943','620400','city','白银市','104.138872','36.545123','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172112,'620421','620400','0943','620421','district','靖远县','104.676202','36.571736','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172113,'620423','620400','0943','620423','district','景泰县','104.063125','37.18351','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172114,'620402','620400','0943','620402','district','白银区','104.14956','36.53469','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172115,'620403','620400','0943','620403','district','平川区','104.825275','36.728494','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172116,'620422','620400','0943','620422','district','会宁县','105.052883','35.693241','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172117,'620600','620000','1935','620600','city','武威市','102.637821','37.92898','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172118,'620602','620600','1935','620602','district','凉州区','102.641959','37.928217','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172119,'620623','620600','1935','620623','district','天祝藏族自治县','103.142416','36.971978','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172120,'620622','620600','1935','620622','district','古浪县','102.897542','37.470882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172121,'620621','620600','1935','620621','district','民勤县','103.093671','38.624293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172122,'620700','620000','0936','620700','city','张掖市','100.449858','38.924766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172123,'620721','620700','0936','620721','district','肃南裕固族自治县','99.615601','38.836931','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172124,'620724','620700','0936','620724','district','高台县','99.819265','39.378294','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172125,'620723','620700','0936','620723','district','临泽县','100.164333','39.15224','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172126,'620702','620700','0936','620702','district','甘州区','100.415324','38.944315','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172127,'620725','620700','0936','620725','district','山丹县','101.088611','38.7846','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172128,'620722','620700','0936','620722','district','民乐县','100.812047','38.430318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172129,'621100','620000','0932','621100','city','定西市','104.592342','35.607947','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172130,'621123','621100','0932','621123','district','渭源县','104.215092','35.137028','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172131,'621124','621100','0932','621124','district','临洮县','103.859446','35.394993','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172132,'621126','621100','0932','621126','district','岷县','104.036731','34.43833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172133,'621125','621100','0932','621125','district','漳县','104.471722','34.84854','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172134,'621122','621100','0932','621122','district','陇西县','104.634928','35.003899','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172135,'621102','621100','0932','621102','district','安定区','104.610647','35.580918','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172136,'621121','621100','0932','621121','district','通渭县','105.242312','35.211311','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172137,'623000','620000','0941','623000','city','甘南藏族自治州','102.911736','34.983266','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172138,'623021','623000','0941','623021','district','临潭县','103.353665','34.693009','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172139,'623022','623000','0941','623022','district','卓尼县','103.506849','34.589476','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172140,'623025','623000','0941','623025','district','玛曲县','102.072608','33.998145','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172141,'623027','623000','0941','623027','district','夏河县','102.548303','35.203857','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172142,'623026','623000','0941','623026','district','碌曲县','102.487512','34.591084','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172143,'623001','623000','0941','623001','district','合作市','102.910305','35.000228','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172144,'623024','623000','0941','623024','district','迭部县','103.221735','34.055888','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172145,'623023','623000','0941','623023','district','舟曲县','104.251543','33.793695','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172146,'621200','620000','2935','621200','city','陇南市','104.960296','33.370174','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172147,'621221','621200','2935','621221','district','成县','105.729569','33.740547','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172148,'621227','621200','2935','621227','district','徽县','106.087156','33.769927','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172149,'621228','621200','2935','621228','district','两当县','106.304973','33.908952','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172150,'621224','621200','2935','621224','district','康县','105.608609','33.329212','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172151,'621222','621200','2935','621222','district','文县','104.6835','32.944031','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172152,'621202','621200','2935','621202','district','武都区','104.921861','33.400685','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172153,'621225','621200','2935','621225','district','西和县','105.298756','34.014215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172154,'621226','621200','2935','621226','district','礼县','105.17864','34.189345','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172155,'621223','621200','2935','621223','district','宕昌县','104.393385','34.047261','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172156,'621000','620000','0934','621000','city','庆阳市','107.643433','35.709459','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172157,'621027','621000','0934','621027','district','镇原县','107.200888','35.677705','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172158,'621022','621000','0934','621022','district','环县','107.308788','36.568566','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172159,'621021','621000','0934','621021','district','庆城县','107.881706','36.016125','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172160,'621023','621000','0934','621023','district','华池县','107.98972','36.461474','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172161,'621024','621000','0934','621024','district','合水县','108.021859','35.833908','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172162,'621002','621000','0934','621002','district','西峰区','107.650563','35.730318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172163,'621026','621000','0934','621026','district','宁县','107.913463','35.509252','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172164,'621025','621000','0934','621025','district','正宁县','108.359964','35.492158','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172165,'622900','620000','0930','622900','city','临夏回族自治州','103.210386','35.601792','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172166,'622927','622900','0930','622927','district','积石山保安族东乡族撒拉族自治县','102.875939','35.717697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172167,'622921','622900','0930','622921','district','临夏县','103.04068','35.478726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172168,'622926','622900','0930','622926','district','东乡族自治县','103.388122','35.664409','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172169,'622901','622900','0930','622901','district','临夏市','103.24222','35.604682','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172170,'622925','622900','0930','622925','district','和政县','103.350996','35.424602','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172171,'622923','622900','0930','622923','district','永靖县','103.285853','35.958306','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172172,'622924','622900','0930','622924','district','广河县','103.575582','35.488248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172173,'622922','622900','0930','622922','district','康乐县','103.708507','35.370296','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172174,'510000','100000','','510000','province','四川省','104.076452','30.651696','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172175,'510800','510000','0839','510800','city','广元市','105.844004','32.435774','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172176,'510812','510800','0839','510812','district','朝天区','105.882848','32.651352','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172177,'510824','510800','0839','510824','district','苍溪县','105.934756','31.731709','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172178,'510811','510800','0839','510811','district','昭化区','105.957612','32.333173','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172179,'510823','510800','0839','510823','district','剑阁县','105.524699','32.288681','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172180,'510822','510800','0839','510822','district','青川县','105.238498','32.575821','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172181,'510821','510800','0839','510821','district','旺苍县','106.290124','32.229074','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172182,'510802','510800','0839','510802','district','利州区','105.845307','32.433756','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172183,'511300','510000','0817','511300','city','南充市','106.110565','30.837235','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172184,'511321','511300','0817','511321','district','南部县','106.036349','31.348255','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172185,'511322','511300','0817','511322','district','营山县','106.565524','31.077057','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172186,'511325','511300','0817','511325','district','西充县','105.900894','30.995546','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172187,'511304','511300','0817','511304','district','嘉陵区','106.07208','30.758831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172188,'511324','511300','0817','511324','district','仪陇县','106.303082','31.271693','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172189,'511302','511300','0817','511302','district','顺庆区','106.092327','30.797366','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172190,'511381','511300','0817','511381','district','阆中市','106.005046','31.558356','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172191,'511323','511300','0817','511323','district','蓬安县','106.412156','31.028537','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172192,'511303','511300','0817','511303','district','高坪区','106.118931','30.781284','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172193,'511900','510000','0827','511900','city','巴中市','106.747548','31.867853','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172194,'511902','511900','0827','511902','district','巴州区','106.76887','31.851458','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172195,'511922','511900','0827','511922','district','南江县','106.828697','32.346589','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172196,'511923','511900','0827','511923','district','平昌县','107.103613','31.560436','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172197,'511921','511900','0827','511921','district','通江县','107.245033','31.911705','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172198,'511903','511900','0827','511903','district','恩阳区','106.634651','31.796476','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172199,'510600','510000','0838','510600','city','德阳市','104.397795','31.127449','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172200,'510682','510600','0838','510682','district','什邡市','104.167345','31.12655','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172201,'510623','510600','0838','510623','district','中江县','104.678601','31.03327','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172202,'510604','510600','0838','510604','district','罗江区','104.510457','31.317388','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172203,'510683','510600','0838','510683','district','绵竹市','104.220679','31.339251','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172204,'510603','510600','0838','510603','district','旌阳区','104.417061','31.143335','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172205,'510681','510600','0838','510681','district','广汉市','104.282204','30.977264','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172206,'510700','510000','0816','510700','city','绵阳市','104.679127','31.467673','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172207,'510781','510700','0816','510781','district','江油市','104.74564','31.778572','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172208,'510725','510700','0816','510725','district','梓潼县','105.170746','31.642635','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172209,'510704','510700','0816','510704','district','游仙区','104.766136','31.473788','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172210,'510722','510700','0816','510722','district','三台县','105.093722','31.095826','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172211,'510703','510700','0816','510703','district','涪城区','104.756917','31.455192','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172212,'510727','510700','0816','510727','district','平武县','104.555481','32.409684','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172213,'510726','510700','0816','510726','district','北川羌族自治县','104.468163','31.617192','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172214,'510723','510700','0816','510723','district','盐亭县','105.389453','31.208362','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172215,'510705','510700','0816','510705','district','安州区','104.567543','31.534319','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172216,'510100','510000','028','510100','city','成都市','104.066301','30.572961','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172217,'510182','510100','028','510182','district','彭州市','103.957706','30.990463','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172218,'510185','510100','028','510185','district','简阳市','104.547644','30.410937','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172219,'510131','510100','028','510131','district','蒲江县','103.506478','30.197558','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172220,'510116','510100','028','510116','district','双流区','103.92342','30.574884','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172221,'510112','510100','028','510112','district','龙泉驿区','104.27536','30.556808','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172222,'510118','510100','028','510118','district','新津区','103.810906','30.410404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172223,'510183','510100','028','510183','district','邛崃市','103.464176','30.41029','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172224,'510105','510100','028','510105','district','青羊区','104.062415','30.674583','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172225,'510106','510100','028','510106','district','金牛区','104.052236','30.691359','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172226,'510107','510100','028','510107','district','武侯区','104.043246','30.641849','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172227,'510113','510100','028','510113','district','青白江区','104.251342','30.8786','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172228,'510129','510100','028','510129','district','大邑县','103.51226','30.573004','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172229,'510115','510100','028','510115','district','温江区','103.856423','30.681956','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172230,'510108','510100','028','510108','district','成华区','104.101452','30.659966','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172231,'510121','510100','028','510121','district','金堂县','104.411871','30.86203','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172232,'510114','510100','028','510114','district','新都区','104.158593','30.823568','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172233,'510104','510100','028','510104','district','锦江区','104.117262','30.598726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172234,'510117','510100','028','510117','district','郫都区','103.900486','30.795113','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172235,'510181','510100','028','510181','district','都江堰市','103.647193','30.988763','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172236,'510184','510100','028','510184','district','崇州市','103.673025','30.630183','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172237,'511600','510000','0826','511600','city','广安市','106.632647','30.456354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172238,'511623','511600','0826','511623','district','邻水县','106.930242','30.334911','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172239,'511602','511600','0826','511602','district','广安区','106.641628','30.473943','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172240,'511621','511600','0826','511621','district','岳池县','106.440056','30.538656','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172241,'511622','511600','0826','511622','district','武胜县','106.295945','30.349493','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172242,'511681','511600','0826','511681','district','华蓥市','106.783151','30.390439','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172243,'511603','511600','0826','511603','district','前锋区','106.886039','30.496059','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172244,'511700','510000','0818','511700','city','达州市','107.46778','31.209278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172245,'511724','511700','0818','511724','district','大竹县','107.204702','30.736222','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172246,'511725','511700','0818','511725','district','渠县','106.973114','30.836504','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172247,'511703','511700','0818','511703','district','达川区','107.511736','31.196573','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172248,'511702','511700','0818','511702','district','通川区','107.505053','31.214665','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172249,'511722','511700','0818','511722','district','宣汉县','107.727198','31.353845','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172250,'511781','511700','0818','511781','district','万源市','108.034393','32.081698','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172251,'511723','511700','0818','511723','district','开江县','107.868609','31.082945','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172252,'510900','510000','0825','510900','city','遂宁市','105.592602','30.53268','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172253,'510923','510900','0825','510923','district','大英县','105.236852','30.594472','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172254,'510981','510900','0825','510981','district','射洪市','105.388366','30.871079','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172255,'510921','510900','0825','510921','district','蓬溪县','105.707498','30.75763','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172256,'510904','510900','0825','510904','district','安居区','105.45636','30.355091','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172257,'510903','510900','0825','510903','district','船山区','105.568359','30.526201','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172258,'512000','510000','0832','512000','city','资阳市','104.627265','30.129236','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172259,'512022','512000','0832','512022','district','乐至县','105.019823','30.275418','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172260,'512021','512000','0832','512021','district','安岳县','105.35551','30.103623','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172261,'512002','512000','0832','512002','district','雁江区','104.676814','30.107778','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172262,'511400','510000','1833','511400','city','眉山市','103.848417','30.077113','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172263,'511421','511400','1833','511421','district','仁寿县','104.133931','29.995638','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172264,'511424','511400','1833','511424','district','丹棱县','103.512859','30.014398','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172265,'511423','511400','1833','511423','district','洪雅县','103.365035','29.915828','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172266,'511403','511400','1833','511403','district','彭山区','103.872852','30.193278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172267,'511425','511400','1833','511425','district','青神县','103.846596','29.831302','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172268,'511402','511400','1833','511402','district','东坡区','103.831868','30.041956','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172269,'511000','510000','1832','511000','city','内江市','105.057992','29.58021','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172270,'511024','511000','1832','511024','district','威远县','104.669032','29.527456','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172271,'511025','511000','1832','511025','district','资中县','104.851874','29.763419','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172272,'511011','511000','1832','511011','district','东兴区','105.076107','29.593528','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172273,'511083','511000','1832','511083','district','隆昌市','105.287507','29.339408','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172274,'511002','511000','1832','511002','district','市中区','105.06759','29.587091','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172275,'511100','510000','0833','511100','city','乐山市','103.766085','29.552275','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172276,'511126','511100','0833','511126','district','夹江县','103.571313','29.738143','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172277,'511111','511100','0833','511111','district','沙湾区','103.550118','29.412404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172278,'511123','511100','0833','511123','district','犍为县','103.949231','29.208118','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172279,'511124','511100','0833','511124','district','井研县','104.06968','29.65165','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172280,'511112','511100','0833','511112','district','五通桥区','103.818024','29.406837','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172281,'511113','511100','0833','511113','district','金口河区','103.078597','29.244345','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172282,'511132','511100','0833','511132','district','峨边彝族自治县','103.262048','29.230426','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172283,'511129','511100','0833','511129','district','沐川县','103.902691','28.956394','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172284,'511133','511100','0833','511133','district','马边彝族自治县','103.546347','28.83552','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172285,'511181','511100','0833','511181','district','峨眉山市','103.484557','29.601189','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172286,'511102','511100','0833','511102','district','市中区','103.761329','29.555374','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172287,'510300','510000','0813','510300','city','自贡市','104.779307','29.33924','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172288,'510321','510300','0813','510321','district','荣县','104.417438','29.445461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172289,'510322','510300','0813','510322','district','富顺县','104.975193','29.181779','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172290,'510304','510300','0813','510304','district','大安区','104.773982','29.36371','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172291,'510311','510300','0813','510311','district','沿滩区','104.873826','29.27208','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172292,'510302','510300','0813','510302','district','自流井区','104.777182','29.337295','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172293,'510303','510300','0813','510303','district','贡井区','104.704179','29.333764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172294,'510500','510000','0830','510500','city','泸州市','105.441866','28.87098','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172295,'510521','510500','0830','510521','district','泸县','105.381879','29.1516','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172296,'510504','510500','0830','510504','district','龙马潭区','105.437751','28.913257','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172297,'510503','510500','0830','510503','district','纳溪区','105.371324','28.772888','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172298,'510524','510500','0830','510524','district','叙永县','105.444777','28.155631','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172299,'510525','510500','0830','510525','district','古蔺县','105.812694','28.038763','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172300,'510502','510500','0830','510502','district','江阳区','105.434982','28.87881','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172301,'510522','510500','0830','510522','district','合江县','105.831011','28.811278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172302,'511500','510000','0831','511500','city','宜宾市','104.642826','28.752354','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172303,'511524','511500','0831','511524','district','长宁县','104.920643','28.582866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172304,'511503','511500','0831','511503','district','南溪区','104.969147','28.846366','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172305,'511528','511500','0831','511528','district','兴文县','105.236207','28.303669','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172306,'511526','511500','0831','511526','district','珙县','104.708986','28.439514','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172307,'511523','511500','0831','511523','district','江安县','105.066982','28.723797','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172308,'511527','511500','0831','511527','district','筠连县','104.511159','28.167981','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172309,'511502','511500','0831','511502','district','翠屏区','104.619853','28.766537','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172310,'511504','511500','0831','511504','district','叙州区','104.533244','28.690068','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172311,'511529','511500','0831','511529','district','屏山县','104.346138','28.82867','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172312,'511525','511500','0831','511525','district','高县','104.517748','28.436166','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172313,'513400','510000','0834','513400','city','凉山彝族自治州','102.267713','27.881396','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172314,'513435','513400','0834','513435','district','甘洛县','102.771441','28.959131','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172315,'513422','513400','0834','513422','district','木里藏族自治县','101.280216','27.928736','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172316,'513436','513400','0834','513436','district','美姑县','103.132359','28.328591','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172317,'513434','513400','0834','513434','district','越西县','102.507467','28.639874','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172318,'513437','513400','0834','513437','district','雷波县','103.571705','28.263202','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172319,'513433','513400','0834','513433','district','冕宁县','102.176622','28.550145','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172320,'513423','513400','0834','513423','district','盐源县','101.509038','27.422593','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172321,'513430','513400','0834','513430','district','金阳县','103.248786','27.696735','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172322,'513402','513400','0834','513402','district','会理市','102.244774','26.655047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172323,'513429','513400','0834','513429','district','布拖县','102.809157','27.7121','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172324,'513428','513400','0834','513428','district','普格县','102.540901','27.376413','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172325,'513424','513400','0834','513424','district','德昌县','102.175661','27.402832','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172326,'513401','513400','0834','513401','district','西昌市','102.264166','27.89441','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172327,'513431','513400','0834','513431','district','昭觉县','102.839849','28.015301','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172328,'513426','513400','0834','513426','district','会东县','102.577979','26.634744','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172329,'513432','513400','0834','513432','district','喜德县','102.412451','28.306429','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172330,'513427','513400','0834','513427','district','宁南县','102.751587','27.061431','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172331,'510400','510000','0812','510400','city','攀枝花市','101.729116','26.558645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172332,'510421','510400','0812','510421','district','米易县','102.111073','26.896372','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172333,'510422','510400','0812','510422','district','盐边县','101.854027','26.682611','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172334,'510411','510400','0812','510411','district','仁和区','101.738615','26.497796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172335,'510402','510400','0812','510402','district','东区','101.704129','26.546484','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172336,'510403','510400','0812','510403','district','西区','101.630557','26.5977','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172337,'513300','510000','0836','513300','city','甘孜藏族自治州','101.96231','30.04952','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172338,'513332','513300','0836','513332','district','石渠县','98.102938','32.978728','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172339,'513328','513300','0836','513328','district','甘孜县','99.991683','31.622731','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172340,'513330','513300','0836','513330','district','德格县','98.580914','31.806118','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172341,'513327','513300','0836','513327','district','炉霍县','100.676014','31.390657','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172342,'513329','513300','0836','513329','district','新龙县','100.311569','30.93917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172343,'513326','513300','0836','513326','district','道孚县','101.125157','30.979486','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172344,'513331','513300','0836','513331','district','白玉县','98.824025','31.209669','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172345,'513301','513300','0836','513301','district','康定市','101.95687','29.998544','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172346,'513334','513300','0836','513334','district','理塘县','100.269145','29.994228','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172347,'513335','513300','0836','513335','district','巴塘县','99.110555','30.00533','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172348,'513325','513300','0836','513325','district','雅江县','101.014366','30.031498','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172349,'513337','513300','0836','513337','district','稻城县','100.297369','29.03791','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172350,'513336','513300','0836','513336','district','乡城县','99.798116','28.931081','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172351,'513324','513300','0836','513324','district','九龙县','101.507294','29.000347','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172352,'513338','513300','0836','513338','district','得荣县','99.286366','28.713085','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172353,'513323','513300','0836','513323','district','丹巴县','101.89054','30.878618','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172354,'513322','513300','0836','513322','district','泸定县','102.234814','29.914103','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172355,'513333','513300','0836','513333','district','色达县','100.333011','32.268541','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172356,'511800','510000','0835','511800','city','雅安市','103.041538','30.009998','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172357,'511827','511800','0835','511827','district','宝兴县','102.824826','30.252469','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172358,'511802','511800','0835','511802','district','雨城区','103.032868','30.005718','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172359,'511822','511800','0835','511822','district','荥经县','102.846537','29.793254','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172360,'511824','511800','0835','511824','district','石棉县','102.358364','29.230963','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172361,'511823','511800','0835','511823','district','汉源县','102.650417','29.344275','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172362,'511826','511800','0835','511826','district','芦山县','102.933618','30.145077','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172363,'511825','511800','0835','511825','district','天全县','102.771745','30.05728','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172364,'511803','511800','0835','511803','district','名山区','103.109238','30.069837','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172365,'513200','510000','0837','513200','city','阿坝藏族羌族自治州','102.224504','31.899427','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172366,'513225','513200','0837','513225','district','九寨沟县','104.2426','33.252008','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172367,'513231','513200','0837','513231','district','阿坝县','101.706548','32.902387','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172368,'513233','513200','0837','513233','district','红原县','102.544395','32.790841','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172369,'513228','513200','0837','513228','district','黑水县','102.987592','32.069268','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172370,'513201','513200','0837','513201','district','马尔康市','102.206386','31.905799','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172371,'513226','513200','0837','513226','district','金川县','102.063821','31.47625','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172372,'513222','513200','0837','513222','district','理县','103.163284','31.435831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172373,'513224','513200','0837','513224','district','松潘县','103.60428','32.655685','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172374,'513227','513200','0837','513227','district','小金县','102.362984','30.995823','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172375,'513221','513200','0837','513221','district','汶川县','103.590185','31.476875','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172376,'513223','513200','0837','513223','district','茂县','103.85332','31.681727','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172377,'513232','513200','0837','513232','district','若尔盖县','102.96738','33.578503','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172378,'513230','513200','0837','513230','district','壤塘县','100.978526','32.265796','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172379,'120000','100000','','120000','province','天津市','117.201509','39.085318','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172380,'120100','120000','022','120100','city','天津城区','117.190182','39.125596','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172381,'120115','120100','022','120115','district','宝坻区','117.309748','39.717054','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172382,'120105','120100','022','120105','district','河北区','117.196874','39.148018','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172383,'120119','120100','022','120119','district','蓟州区','117.408432','40.046544','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172384,'120118','120100','022','120118','district','静海区','116.975474','38.947772','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172385,'120117','120100','022','120117','district','宁河区','117.826674','39.329749','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172386,'120101','120100','022','120101','district','和平区','117.214713','39.116884','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172387,'120114','120100','022','120114','district','武清区','117.04456','39.384108','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172388,'120104','120100','022','120104','district','南开区','117.150638','39.138551','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172389,'120116','120100','022','120116','district','滨海新区','117.69641','39.017809','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172390,'120102','120100','022','120102','district','河东区','117.251584','39.128294','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172391,'120110','120100','022','120110','district','东丽区','117.313567','39.086789','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172392,'120112','120100','022','120112','district','津南区','117.356683','38.936971','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172393,'120103','120100','022','120103','district','河西区','117.223379','39.109679','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172394,'120113','120100','022','120113','district','北辰区','117.135614','39.224638','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172395,'120106','120100','022','120106','district','红桥区','117.151566','39.167349','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172396,'120111','120100','022','120111','district','西青区','117.008994','39.141811','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172397,'110000','100000','','110000','province','北京市','116.407387','39.904179','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172398,'110100','110000','010','110100','city','北京城区','116.405285','39.904989','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172399,'110116','110100','010','110116','district','怀柔区','116.631974','40.317003','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172400,'110109','110100','010','110109','district','门头沟区','116.101668','39.940842','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172401,'110118','110100','010','110118','district','密云区','116.843351','40.377058','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172402,'110113','110100','010','110113','district','顺义区','116.661474','40.149891','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172403,'110119','110100','010','110119','district','延庆区','115.974609','40.457033','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172404,'110105','110100','010','110105','district','朝阳区','116.443136','39.921444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172405,'110101','110100','010','110101','district','东城区','116.416334','39.928359','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172406,'110114','110100','010','110114','district','昌平区','116.231034','40.220952','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172407,'110115','110100','010','110115','district','大兴区','116.341483','39.726917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172408,'110111','110100','010','110111','district','房山区','116.143426','39.748889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172409,'110117','110100','010','110117','district','平谷区','117.121589','40.140805','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172410,'110112','110100','010','110112','district','通州区','116.72923','39.916403','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172411,'110106','110100','010','110106','district','丰台区','116.286726','39.858538','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172412,'110107','110100','010','110107','district','石景山区','116.223015','39.906304','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172413,'110108','110100','010','110108','district','海淀区','116.2977','39.959893','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172414,'110102','110100','010','110102','district','西城区','116.36585','39.9126','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172415,'540000','100000','','540000','province','西藏自治区','91.117449','29.648694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172416,'540300','540000','0895','540300','city','昌都市','97.170425','31.142879','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172417,'540321','540300','0895','540321','district','江达县','98.218336','31.499176','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172418,'540324','540300','0895','540324','district','丁青县','95.619868','31.409024','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172419,'540302','540300','0895','540302','district','卡若区','97.196021','31.112087','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172420,'540323','540300','0895','540323','district','类乌齐县','96.599386','31.211378','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172421,'540330','540300','0895','540330','district','边坝县','94.7078','30.933652','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172422,'540322','540300','0895','540322','district','贡觉县','98.27097','30.860099','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172423,'540325','540300','0895','540325','district','察雅县','97.568752','30.653943','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172424,'540329','540300','0895','540329','district','洛隆县','95.825169','30.741988','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172425,'540326','540300','0895','540326','district','八宿县','96.917836','30.053209','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172426,'540328','540300','0895','540328','district','芒康县','98.593493','29.679957','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172427,'540327','540300','0895','540327','district','左贡县','97.841176','29.671488','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172428,'540600','540000','0896','540600','city','那曲市','92.05151','31.477905','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172429,'540624','540600','0896','540624','district','安多县','91.68195','32.265016','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172430,'540623','540600','0896','540623','district','聂荣县','92.303377','32.10775','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172431,'540628','540600','0896','540628','district','巴青县','94.053438','31.91847','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172432,'540625','540600','0896','540625','district','申扎县','88.709936','30.93045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172433,'540627','540600','0896','540627','district','班戈县','90.009822','31.392157','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172434,'540622','540600','0896','540622','district','比如县','93.681302','31.477914','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172435,'540626','540600','0896','540626','district','索县','93.785068','31.888045','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172436,'540602','540600','0896','540602','district','色尼区','92.053498','31.469645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172437,'540621','540600','0896','540621','district','嘉黎县','93.232347','30.641543','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172438,'540629','540600','0896','540629','district','尼玛县','87.236772','31.784701','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172439,'540630','540600','0896','540630','district','双湖县','88.838017','33.188355','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172440,'540100','540000','0891','540100','city','拉萨市','91.171924','29.653491','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172441,'540122','540100','0891','540122','district','当雄县','91.101186','30.473134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172442,'540121','540100','0891','540121','district','林周县','91.265287','29.893545','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172443,'540127','540100','0891','540127','district','墨竹工卡县','91.739134','29.850344','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172444,'540103','540100','0891','540103','district','堆龙德庆区','91.002866','29.646815','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172445,'540104','540100','0891','540104','district','达孜区','91.349503','29.670173','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172446,'540123','540100','0891','540123','district','尼木县','90.16446','29.43202','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172447,'540102','540100','0891','540102','district','城关区','91.140368','29.654813','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172448,'540124','540100','0891','540124','district','曲水县','90.743355','29.354293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172449,'540200','540000','0892','540200','city','日喀则市','88.880423','29.266838','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172450,'540232','540200','0892','540232','district','仲巴县','84.03153','29.770279','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172451,'540226','540200','0892','540226','district','昂仁县','87.227739','29.299444','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172452,'540227','540200','0892','540227','district','谢通门县','88.255784','29.425455','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172453,'540221','540200','0892','540221','district','南木林县','89.099243','29.682331','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172454,'540236','540200','0892','540236','district','萨嘎县','85.232941','29.328818','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172455,'540202','540200','0892','540202','district','桑珠孜区','88.898503','29.247726','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172456,'540225','540200','0892','540225','district','拉孜县','87.636934','29.08188','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172457,'540229','540200','0892','540229','district','仁布县','89.841983','29.230933','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172458,'540224','540200','0892','540224','district','萨迦县','88.021674','28.899664','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172459,'540228','540200','0892','540228','district','白朗县','89.261977','29.107688','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172460,'540222','540200','0892','540222','district','江孜县','89.605654','28.91186','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172461,'540235','540200','0892','540235','district','聂拉木县','85.982237','28.155186','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172462,'540223','540200','0892','540223','district','定日县','87.12612','28.658743','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172463,'540230','540200','0892','540230','district','康马县','89.681663','28.555627','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172464,'540237','540200','0892','540237','district','岗巴县','88.515318','28.271189','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172465,'540233','540200','0892','540233','district','亚东县','88.907136','27.486094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172466,'540231','540200','0892','540231','district','定结县','87.765872','28.364159','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172467,'540234','540200','0892','540234','district','吉隆县','85.298109','28.856542','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172468,'540500','540000','0893','540500','city','山南市','91.771426','29.237722','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172469,'540523','540500','0893','540523','district','桑日县','92.017723','29.259439','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172470,'540528','540500','0893','540528','district','加查县','92.597518','29.138165','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172471,'540502','540500','0893','540502','district','乃东区','91.761538','29.224904','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172472,'540521','540500','0893','540521','district','扎囊县','91.33725','29.245113','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172473,'540522','540500','0893','540522','district','贡嘎县','90.978425','29.290169','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172474,'540531','540500','0893','540531','district','浪卡子县','90.400251','28.96693','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172475,'540524','540500','0893','540524','district','琼结县','91.684307','29.024492','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172476,'540525','540500','0893','540525','district','曲松县','92.203738','29.062826','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172477,'540529','540500','0893','540529','district','隆子县','92.461774','28.40743','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172478,'540526','540500','0893','540526','district','措美县','91.433509','28.438202','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172479,'540527','540500','0893','540527','district','洛扎县','90.859971','28.385811','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172480,'540581','540500','0893','540581','district','错那市','91.957155','27.991121','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172481,'540400','540000','0894','540400','city','林芝市','94.361436','29.64875','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172482,'540424','540400','0894','540424','district','波密县','95.768439','29.859751','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172483,'540421','540400','0894','540421','district','工布江达县','93.246077','29.88528','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172484,'540402','540400','0894','540402','district','巴宜区','94.361094','29.636576','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172485,'540423','540400','0894','540423','district','墨脱县','95.332108','29.325425','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172486,'540481','540400','0894','540481','district','米林市','94.213059','29.215971','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172487,'540425','540400','0894','540425','district','察隅县','97.466919','28.66128','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172488,'540426','540400','0894','540426','district','朗县','93.07254','29.046892','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172489,'542500','540000','0897','542500','city','阿里地区','80.105786','32.500987','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172490,'542526','542500','0897','542526','district','改则县','84.057135','32.297165','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172491,'542522','542500','0897','542522','district','札达县','79.807096','31.479882','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172492,'542527','542500','0897','542527','district','措勤县','85.152773','31.015862','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172493,'542521','542500','0897','542521','district','普兰县','81.177116','30.290467','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172494,'542524','542500','0897','542524','district','日土县','79.733552','33.382017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172495,'542523','542500','0897','542523','district','噶尔县','80.096591','32.492078','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172496,'542525','542500','0897','542525','district','革吉县','81.145433','32.387233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172497,'220000','100000','','220000','province','吉林省','125.325802','43.896942','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172498,'220200','220000','0432','220200','city','吉林市','126.549719','43.838132','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172499,'220283','220200','0432','220283','district','舒兰市','126.965515','44.405922','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172500,'220282','220200','0432','220282','district','桦甸市','126.746245','42.972272','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172501,'220281','220200','0432','220281','district','蛟河市','127.344773','43.72382','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172502,'220221','220200','0432','220221','district','永吉县','126.497899','43.672198','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172503,'220284','220200','0432','220284','district','磐石市','126.060328','42.946608','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172504,'220203','220200','0432','220203','district','龙潭区','126.562131','43.910743','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172505,'220211','220200','0432','220211','district','丰满区','126.561351','43.821192','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172506,'220204','220200','0432','220204','district','船营区','126.540909','43.833806','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172507,'220202','220200','0432','220202','district','昌邑区','126.574414','43.881896','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172508,'220100','220000','0431','220100','city','长春市','125.323643','43.816996','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172509,'220183','220100','0431','220183','district','德惠市','125.728552','44.521788','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172510,'220182','220100','0431','220182','district','榆树市','126.533126','44.840263','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172511,'220112','220100','0431','220112','district','双阳区','125.664583','43.525367','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172512,'220122','220100','0431','220122','district','农安县','125.184921','44.432829','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172513,'220184','220100','0431','220184','district','公主岭市','124.79379','43.495116','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172514,'220105','220100','0431','220105','district','二道区','125.37419','43.865912','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172515,'220103','220100','0431','220103','district','宽城区','125.326614','43.943522','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172516,'220102','220100','0431','220102','district','南关区','125.350341','43.86382','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172517,'220113','220100','0431','220113','district','九台区','125.839549','44.151672','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172518,'220104','220100','0431','220104','district','朝阳区','125.288168','43.833845','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172519,'220106','220100','0431','220106','district','绿园区','125.256214','43.881047','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172520,'220800','220000','0436','220800','city','白城市','122.838102','45.620131','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172521,'220881','220800','0436','220881','district','洮南市','122.79845','45.356849','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172522,'220882','220800','0436','220882','district','大安市','124.291032','45.507004','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172523,'220822','220800','0436','220822','district','通榆县','123.088093','44.812912','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172524,'220802','220800','0436','220802','district','洮北区','122.851105','45.621545','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172525,'220821','220800','0436','220821','district','镇赉县','123.19967','45.848195','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172526,'220700','220000','0438','220700','city','松原市','124.825321','45.14191','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172527,'220723','220700','0438','220723','district','乾安县','124.040651','45.003539','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172528,'220722','220700','0438','220722','district','长岭县','123.967244','44.276293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172529,'220721','220700','0438','220721','district','前郭尔罗斯蒙古族自治县','124.823417','45.118061','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172530,'220781','220700','0438','220781','district','扶余市','126.049534','44.989057','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172531,'220702','220700','0438','220702','district','宁江区','124.875965','45.209435','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172532,'222400','220000','1433','222400','city','延边朝鲜族自治州','129.470605','42.909426','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172533,'222404','222400','1433','222404','district','珲春市','130.365829','42.862551','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172534,'222402','222400','1433','222402','district','图们市','129.843807','42.968039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172535,'222406','222400','1433','222406','district','和龙市','129.010932','42.546434','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172536,'222424','222400','1433','222424','district','汪清县','129.785137','43.317215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172537,'222401','222400','1433','222401','district','延吉市','129.507655','42.891034','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172538,'222426','222400','1433','222426','district','安图县','128.899744','43.111978','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172539,'222403','222400','1433','222403','district','敦化市','128.232235','43.372669','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172540,'222405','222400','1433','222405','district','龙井市','129.426529','42.767172','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172541,'220300','220000','0434','220300','city','四平市','124.350599','43.166764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172542,'220303','220300','0434','220303','district','铁东区','124.409852','43.162664','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172543,'220382','220300','0434','220382','district','双辽市','123.502398','43.518301','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172544,'220322','220300','0434','220322','district','梨树县','124.335389','43.30706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172545,'220302','220300','0434','220302','district','铁西区','124.345994','43.146288','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172546,'220323','220300','0434','220323','district','伊通满族自治县','125.305393','43.345754','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172547,'220600','220000','0439','220600','city','白山市','126.414274','41.944132','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172548,'220622','220600','0439','220622','district','靖宇县','126.813262','42.388902','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172549,'220605','220600','0439','220605','district','江源区','126.591178','42.056747','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172550,'220621','220600','0439','220621','district','抚松县','127.449387','42.221038','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172551,'220623','220600','0439','220623','district','长白朝鲜族自治县','128.20066','41.420253','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172552,'220681','220600','0439','220681','district','临江市','126.918086','41.811979','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172553,'220602','220600','0439','220602','district','浑江区','126.416093','41.945409','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172554,'220400','220000','0437','220400','city','辽源市','125.144676','42.887961','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172555,'220403','220400','0437','220403','district','西安区','125.149488','42.927252','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172556,'220422','220400','0437','220422','district','东辽县','124.991045','42.925636','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172557,'220402','220400','0437','220402','district','龙山区','125.13703','42.902194','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172558,'220421','220400','0437','220421','district','东丰县','125.53096','42.677253','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172559,'220500','220000','0435','220500','city','通化市','125.939721','41.728312','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172560,'220503','220500','0435','220503','district','二道江区','126.042546','41.773989','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172561,'220521','220500','0435','220521','district','通化县','125.758927','41.680135','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172562,'220524','220500','0435','220524','district','柳河县','125.744654','42.284594','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172563,'220523','220500','0435','220523','district','辉南县','126.046006','42.684706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172564,'220581','220500','0435','220581','district','梅河口市','125.711129','42.539183','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172565,'220582','220500','0435','220582','district','集安市','126.193172','41.125805','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172566,'220502','220500','0435','220502','district','东昌区','125.927187','41.702872','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172567,'360000','100000','','360000','province','江西省','115.816587','28.637234','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172568,'360500','360000','0790','360500','city','新余市','114.916665','27.818553','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172569,'360502','360500','0790','360502','district','渝水区','114.944499','27.799526','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172570,'360521','360500','0790','360521','district','分宜县','114.69264','27.814723','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172571,'360100','360000','0791','360100','city','南昌市','115.857972','28.682976','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172572,'360104','360100','0791','360104','district','青云谱区','115.925709','28.62182','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172573,'360111','360100','0791','360111','district','青山湖区','115.962138','28.682867','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172574,'360124','360100','0791','360124','district','进贤县','116.242468','28.377627','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172575,'360113','360100','0791','360113','district','红谷滩区','115.858127','28.698188','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172576,'360112','360100','0791','360112','district','新建区','115.815244','28.693192','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172577,'360123','360100','0791','360123','district','安义县','115.549158','28.845585','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172578,'360102','360100','0791','360102','district','东湖区','115.903576','28.698787','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172579,'360103','360100','0791','360103','district','西湖区','115.876998','28.657005','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172580,'360121','360100','0791','360121','district','南昌县','115.93349','28.557921','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172581,'360800','360000','0796','360800','city','吉安市','114.96681','27.091243','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172582,'360822','360800','0796','360822','district','吉水县','115.135963','27.229697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172583,'360825','360800','0796','360825','district','永丰县','115.421599','27.317301','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172584,'360802','360800','0796','360802','district','吉州区','114.994991','27.144204','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172585,'360830','360800','0796','360830','district','永新县','114.242425','26.945157','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172586,'360828','360800','0796','360828','district','万安县','114.759746','26.456821','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172587,'360823','360800','0796','360823','district','峡江县','115.316567','27.5829','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172588,'360881','360800','0796','360881','district','井冈山市','114.289563','26.748132','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172589,'360824','360800','0796','360824','district','新干县','115.386853','27.740368','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172590,'360821','360800','0796','360821','district','吉安县','114.908337','27.039866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172591,'360803','360800','0796','360803','district','青原区','115.014836','27.082012','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172592,'360826','360800','0796','360826','district','泰和县','114.922987','26.801687','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172593,'360829','360800','0796','360829','district','安福县','114.619818','27.393286','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172594,'360827','360800','0796','360827','district','遂川县','114.520825','26.313413','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172595,'360700','360000','0797','360700','city','赣州市','114.933494','25.831139','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172596,'360781','360700','0797','360781','district','瑞金市','116.027114','25.88623','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172597,'360725','360700','0797','360725','district','崇义县','114.308135','25.682278','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172598,'360735','360700','0797','360735','district','石城县','116.347611','26.31491','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172599,'360730','360700','0797','360730','district','宁都县','116.009171','26.470865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172600,'360731','360700','0797','360731','district','于都县','115.415145','25.952564','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172601,'360734','360700','0797','360734','district','寻乌县','115.638534','24.969513','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172602,'360783','360700','0797','360783','district','龙南市','114.804474','24.901216','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172603,'360729','360700','0797','360729','district','全南县','114.530148','24.742353','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172604,'360733','360700','0797','360733','district','会昌县','115.809271','25.58734','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172605,'360722','360700','0797','360722','district','信丰县','114.922485','25.38676','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172606,'360724','360700','0797','360724','district','上犹县','114.55177','25.784754','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172607,'360703','360700','0797','360703','district','南康区','114.765044','25.661369','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172608,'360723','360700','0797','360723','district','大余县','114.362306','25.401968','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172609,'360732','360700','0797','360732','district','兴国县','115.363475','26.338129','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172610,'360702','360700','0797','360702','district','章贡区','114.920426','25.818247','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172611,'360704','360700','0797','360704','district','赣县区','115.021196','25.854496','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172612,'360728','360700','0797','360728','district','定南县','115.027908','24.783372','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172613,'360726','360700','0797','360726','district','安远县','115.393992','25.136855','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172614,'361000','360000','0794','361000','city','抚州市','116.358054','27.948979','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172615,'361025','361000','0794','361025','district','乐安县','115.83099','27.428682','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172616,'361021','361000','0794','361021','district','南城县','116.637228','27.570031','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172617,'361028','361000','0794','361028','district','资溪县','117.060332','27.706088','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172618,'361030','361000','0794','361030','district','广昌县','116.336556','26.843974','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172619,'361027','361000','0794','361027','district','金溪县','116.755018','27.91973','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172620,'361023','361000','0794','361023','district','南丰县','116.525898','27.21845','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172621,'361022','361000','0794','361022','district','黎川县','116.907446','27.282729','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172622,'361003','361000','0794','361003','district','东乡区','116.603159','28.249059','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172623,'361002','361000','0794','361002','district','临川区','116.311932','27.935098','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172624,'361024','361000','0794','361024','district','崇仁县','116.076363','27.754416','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172625,'361026','361000','0794','361026','district','宜黄县','116.236174','27.554744','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172626,'360200','360000','0798','360200','city','景德镇市','117.184892','29.2744','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172627,'360202','360200','0798','360202','district','昌江区','117.182648','29.273683','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172628,'360281','360200','0798','360281','district','乐平市','117.151499','28.978521','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172629,'360203','360200','0798','360203','district','珠山区','117.271365','29.305191','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172630,'360222','360200','0798','360222','district','浮梁县','117.214984','29.352493','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172631,'360600','360000','0701','360600','city','鹰潭市','117.039532','28.272092','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172632,'360681','360600','0701','360681','district','贵溪市','117.245178','28.292397','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172633,'360602','360600','0701','360602','district','月湖区','117.10247','28.266999','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172634,'360603','360600','0701','360603','district','余江区','116.854576','28.199657','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172635,'361100','360000','0793','361100','city','上饶市','117.943064','28.45513','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172636,'361130','361100','0793','361130','district','婺源县','117.861532','29.248491','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172637,'361125','361100','0793','361125','district','横峰县','117.596433','28.407116','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172638,'361123','361100','0793','361123','district','玉山县','118.244736','28.681936','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172639,'361181','361100','0793','361181','district','德兴市','117.594549','28.930557','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172640,'361124','361100','0793','361124','district','铅山县','117.734742','28.298415','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172641,'361103','361100','0793','361103','district','广丰区','118.189729','28.463697','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172642,'361127','361100','0793','361127','district','余干县','116.695787','28.70283','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172643,'361104','361100','0793','361104','district','广信区','117.907454','28.448893','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172644,'361102','361100','0793','361102','district','信州区','117.965997','28.430694','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172645,'361126','361100','0793','361126','district','弋阳县','117.449346','28.378039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172646,'361128','361100','0793','361128','district','鄱阳县','116.703731','29.005675','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172647,'361129','361100','0793','361129','district','万年县','117.058445','28.694582','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172648,'360400','360000','0792','360400','city','九江市','115.95356','29.66116','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172649,'360404','360400','0792','360404','district','柴桑区','115.911005','29.608775','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172650,'360483','360400','0792','360483','district','庐山市','116.045118','29.448225','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172651,'360402','360400','0792','360402','district','濂溪区','115.992735','29.668008','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172652,'360426','360400','0792','360426','district','德安县','115.767114','29.298599','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172653,'360403','360400','0792','360403','district','浔阳区','116.001677','29.70547','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172654,'360430','360400','0792','360430','district','彭泽县','116.563858','29.877404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172655,'360429','360400','0792','360429','district','湖口县','116.252206','29.731194','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172656,'360482','360400','0792','360482','district','共青城市','115.784269','29.235082','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172657,'360425','360400','0792','360425','district','永修县','115.83207','29.011392','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172658,'360424','360400','0792','360424','district','修水县','114.546536','29.026166','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172659,'360428','360400','0792','360428','district','都昌县','116.203999','29.273803','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172660,'360481','360400','0792','360481','district','瑞昌市','115.681221','29.676026','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172661,'360423','360400','0792','360423','district','武宁县','115.092649','29.246785','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172662,'360900','360000','0795','360900','city','宜春市','114.416826','27.816245','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172663,'360926','360900','0795','360926','district','铜鼓县','114.354623','28.513291','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172664,'360922','360900','0795','360922','district','万载县','114.445477','28.106201','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172665,'360902','360900','0795','360902','district','袁州区','114.42794','27.796344','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172666,'360983','360900','0795','360983','district','高安市','115.366863','28.448054','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172667,'360982','360900','0795','360982','district','樟树市','115.546174','28.054632','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172668,'360924','360900','0795','360924','district','宜丰县','114.803036','28.394466','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172669,'360923','360900','0795','360923','district','上高县','114.948045','28.238591','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172670,'360921','360900','0795','360921','district','奉新县','115.400624','28.688254','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172671,'360925','360900','0795','360925','district','靖安县','115.362635','28.861296','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172672,'360981','360900','0795','360981','district','丰城市','115.771131','28.160053','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172673,'360300','360000','0799','360300','city','萍乡市','113.887147','27.658721','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172674,'360302','360300','0799','360302','district','安源区','113.87072','27.615','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172675,'360321','360300','0799','360321','district','莲花县','113.961589','27.128498','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172676,'360323','360300','0799','360323','district','芦溪县','114.029351','27.631273','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172677,'360313','360300','0799','360313','district','湘东区','113.733047','27.640075','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172678,'360322','360300','0799','360322','district','上栗县','113.795294','27.880221','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172679,'140000','100000','','140000','province','山西省','112.578781','37.813948','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172680,'140300','140000','0353','140300','city','阳泉市','113.580426','37.857094','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172681,'140321','140300','0353','140321','district','平定县','113.629777','37.804986','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172682,'140322','140300','0353','140322','district','盂县','113.412279','38.086041','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172683,'140311','140300','0353','140311','district','郊区','113.593998','37.943703','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172684,'140303','140300','0353','140303','district','矿区','113.555279','37.868494','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172685,'140302','140300','0353','140302','district','城区','113.600694','37.847457','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172686,'140900','140000','0350','140900','city','忻州市','112.734149','38.415958','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172687,'140928','140900','0350','140928','district','五寨县','111.846808','38.91111','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172688,'140929','140900','0350','140929','district','岢岚县','111.572964','38.703989','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172689,'140902','140900','0350','140902','district','忻府区','112.746357','38.403498','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172690,'140925','140900','0350','140925','district','宁武县','112.304734','39.001498','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172691,'140926','140900','0350','140926','district','静乐县','111.939498','38.359306','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172692,'140927','140900','0350','140927','district','神池县','112.210997','39.091079','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172693,'140924','140900','0350','140924','district','繁峙县','113.265464','39.188835','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172694,'140931','140900','0350','140931','district','保德县','111.085944','39.022616','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172695,'140930','140900','0350','140930','district','河曲县','111.138247','39.38452','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172696,'140981','140900','0350','140981','district','原平市','112.711025','38.731412','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172697,'140923','140900','0350','140923','district','代县','112.960102','39.066831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172698,'140922','140900','0350','140922','district','五台县','113.255419','38.728056','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172699,'140921','140900','0350','140921','district','定襄县','112.957234','38.471725','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172700,'140932','140900','0350','140932','district','偏关县','111.508922','39.436917','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172701,'140200','140000','0352','140200','city','大同市','113.366749','40.09711','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172702,'140223','140200','0352','140223','district','广灵县','114.282703','39.760404','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172703,'140225','140200','0352','140225','district','浑源县','113.69183','39.706485','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172704,'140215','140200','0352','140215','district','云州区','113.612496','40.040156','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172705,'140226','140200','0352','140226','district','左云县','112.703008','40.013442','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172706,'140224','140200','0352','140224','district','灵丘县','114.234452','39.442459','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172707,'140213','140200','0352','140213','district','平城区','113.300179','40.076991','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172708,'140212','140200','0352','140212','district','新荣区','113.139628','40.256355','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172709,'140221','140200','0352','140221','district','阳高县','113.748944','40.361059','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172710,'140222','140200','0352','140222','district','天镇县','114.090871','40.42087','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172711,'140214','140200','0352','140214','district','云冈区','113.150035','40.005844','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172712,'141100','140000','0358','141100','city','吕梁市','111.14454','37.518996','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172713,'141127','141100','0358','141127','district','岚县','111.672156','38.279587','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172714,'141128','141100','0358','141128','district','方山县','111.244309','37.895017','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172715,'141129','141100','0358','141129','district','中阳县','111.178841','37.357816','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172716,'141130','141100','0358','141130','district','交口县','111.181241','36.982205','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172717,'141123','141100','0358','141123','district','兴县','111.127486','38.461818','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172718,'141126','141100','0358','141126','district','石楼县','110.834712','36.998461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172719,'141125','141100','0358','141125','district','柳林县','110.888993','37.429816','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172720,'141102','141100','0358','141102','district','离石区','111.150325','37.517797','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172721,'141124','141100','0358','141124','district','临县','110.992712','37.951008','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172722,'141182','141100','0358','141182','district','汾阳市','111.770834','37.261493','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172723,'141181','141100','0358','141181','district','孝义市','111.778935','37.146051','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172724,'141121','141100','0358','141121','district','文水县','112.028866','37.438101','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172725,'141122','141100','0358','141122','district','交城县','112.155857','37.55169','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172726,'140100','140000','0351','140100','city','太原市','112.549656','37.870451','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172727,'140123','140100','0351','140123','district','娄烦县','111.79715','38.067569','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172728,'140122','140100','0351','140122','district','阳曲县','112.67292','38.058511','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172729,'140181','140100','0351','140181','district','古交市','112.175034','37.907414','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172730,'140110','140100','0351','140110','district','晋源区','112.477869','37.715519','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172731,'140121','140100','0351','140121','district','清徐县','112.359367','37.608751','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172732,'140109','140100','0351','140109','district','万柏林区','112.515638','37.859738','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172733,'140108','140100','0351','140108','district','尖草坪区','112.486141','37.940052','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172734,'140107','140100','0351','140107','district','杏花岭区','112.570412','37.894241','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172735,'140105','140100','0351','140105','district','小店区','112.565524','37.736865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172736,'140106','140100','0351','140106','district','迎泽区','112.563373','37.863308','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172737,'140800','140000','0359','140800','city','运城市','111.007051','35.02667','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172738,'140828','140800','0359','140828','district','夏县','111.219946','35.140733','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172739,'140822','140800','0359','140822','district','万荣县','110.837957','35.415805','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172740,'140823','140800','0359','140823','district','闻喜县','111.224485','35.356664','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172741,'140821','140800','0359','140821','district','临猗县','110.774553','35.144406','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172742,'140802','140800','0359','140802','district','盐湖区','110.998135','35.015549','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172743,'140827','140800','0359','140827','district','垣曲县','111.670215','35.298297','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172744,'140824','140800','0359','140824','district','稷山县','110.983273','35.604515','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172745,'140881','140800','0359','140881','district','永济市','110.447771','34.866499','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172746,'140826','140800','0359','140826','district','绛县','111.568849','35.491764','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172747,'140825','140800','0359','140825','district','新绛县','111.224767','35.616007','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172748,'140882','140800','0359','140882','district','河津市','110.712032','35.596357','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172749,'140829','140800','0359','140829','district','平陆县','111.193957','34.829595','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172750,'140830','140800','0359','140830','district','芮城县','110.694418','34.694173','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172751,'140500','140000','0356','140500','city','晋城市','112.852022','35.491315','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172752,'140525','140500','0356','140525','district','泽州县','112.922243','35.507061','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172753,'140581','140500','0356','140581','district','高平市','112.923798','35.798775','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172754,'140524','140500','0356','140524','district','陵川县','113.280755','35.775239','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172755,'140522','140500','0356','140522','district','阳城县','112.414798','35.486275','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172756,'140521','140500','0356','140521','district','沁水县','112.186726','35.690119','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172757,'140502','140500','0356','140502','district','城区','112.853452','35.50248','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172758,'140400','140000','0355','140400','city','长治市','113.117394','36.195142','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172759,'140428','140400','0355','140428','district','长子县','112.877922','36.122258','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172760,'140403','140400','0355','140403','district','潞州区','113.122725','36.203305','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172761,'140404','140400','0355','140404','district','上党区','113.051416','36.053104','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172762,'140427','140400','0355','140427','district','壶关县','113.206836','36.115645','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172763,'140429','140400','0355','140429','district','武乡县','112.86396','36.837865','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172764,'140430','140400','0355','140430','district','沁县','112.699176','36.756152','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172765,'140423','140400','0355','140423','district','襄垣县','113.051298','36.535629','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172766,'140405','140400','0355','140405','district','屯留区','112.892301','36.3162','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172767,'140426','140400','0355','140426','district','黎城县','113.387025','36.502258','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172768,'140406','140400','0355','140406','district','潞城区','113.228897','36.334597','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172769,'140431','140400','0355','140431','district','沁源县','112.337726','36.499989','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172770,'140425','140400','0355','140425','district','平顺县','113.435859','36.20037','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172771,'141000','140000','0357','141000','city','临汾市','111.51931','36.088581','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172772,'141025','141000','0357','141025','district','古县','111.92031','36.266767','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172773,'141031','141000','0357','141031','district','隰县','110.940752','36.693345','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172774,'141032','141000','0357','141032','district','永和县','110.631981','36.759524','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172775,'141033','141000','0357','141033','district','蒲县','111.096457','36.41183','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172776,'141027','141000','0357','141027','district','浮山县','111.848883','35.968124','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172777,'141022','141000','0357','141022','district','翼城县','111.719048','35.739706','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172778,'141024','141000','0357','141024','district','洪洞县','111.67571','36.254087','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172779,'141002','141000','0357','141002','district','尧都区','111.578797','36.082463','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172780,'141029','141000','0357','141029','district','乡宁县','110.846585','35.970834','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172781,'141023','141000','0357','141023','district','襄汾县','111.441725','35.876293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172782,'141026','141000','0357','141026','district','安泽县','112.250242','36.147921','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172783,'141081','141000','0357','141081','district','侯马市','111.372002','35.619105','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172784,'141021','141000','0357','141021','district','曲沃县','111.475783','35.641883','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172785,'141034','141000','0357','141034','district','汾西县','111.563993','36.652833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172786,'141082','141000','0357','141082','district','霍州市','111.755111','36.569046','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172787,'141030','141000','0357','141030','district','大宁县','110.752914','36.465126','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172788,'141028','141000','0357','141028','district','吉县','110.680513','36.096833','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172789,'140700','140000','0354','140700','city','晋中市','112.752633','37.688006','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172790,'140721','140700','0354','140721','district','榆社县','112.975378','37.071209','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172791,'140725','140700','0354','140725','district','寿阳县','113.176373','37.895191','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172792,'140723','140700','0354','140723','district','和顺县','113.570295','37.329696','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172793,'140722','140700','0354','140722','district','左权县','113.379412','37.082746','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172794,'140703','140700','0354','140703','district','太谷区','112.551297','37.421392','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172795,'140727','140700','0354','140727','district','祁县','112.335226','37.358425','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172796,'140702','140700','0354','140702','district','榆次区','112.707564','37.698637','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172797,'140728','140700','0354','140728','district','平遥县','112.175825','37.189614','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172798,'140781','140700','0354','140781','district','介休市','111.916451','37.027538','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172799,'140724','140700','0354','140724','district','昔阳县','113.707151','37.612577','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172800,'140729','140700','0354','140729','district','灵石县','111.778692','36.848085','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172801,'140600','140000','0349','140600','city','朔州市','112.432906','39.331734','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172802,'140623','140600','0349','140623','district','右玉县','112.466926','39.989198','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172803,'140602','140600','0349','140602','district','朔城区','112.432071','39.320196','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172804,'140603','140600','0349','140603','district','平鲁区','112.28827','39.512219','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172805,'140621','140600','0349','140621','district','山阴县','112.816421','39.527445','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172806,'140622','140600','0349','140622','district','应县','113.190952','39.554471','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172807,'140681','140600','0349','140681','district','怀仁市','113.133061','39.820522','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172808,'530000','100000','','530000','province','云南省','102.709372','25.046432','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172809,'530600','530000','0870','530600','city','昭通市','103.717078','27.338185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172810,'530626','530600','0870','530626','district','绥江县','103.968995','28.592119','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172811,'530625','530600','0870','530625','district','永善县','103.63756','28.229018','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172812,'530681','530600','0870','530681','district','水富市','104.415964','28.629951','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172813,'530629','530600','0870','530629','district','威信县','105.049012','27.846839','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172814,'530622','530600','0870','530622','district','巧家县','102.935343','26.896904','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172815,'530628','530600','0870','530628','district','彝良县','104.055991','27.624277','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172816,'530621','530600','0870','530621','district','鲁甸县','103.557969','27.186668','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172817,'530623','530600','0870','530623','district','盐津县','104.234458','28.108475','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172818,'530627','530600','0870','530627','district','镇雄县','104.873486','27.441527','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172819,'530624','530600','0870','530624','district','大关县','103.891164','27.748054','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172820,'530602','530600','0870','530602','district','昭阳区','103.706323','27.320035','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172821,'530300','530000','0874','530300','city','曲靖市','103.796288','25.490866','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172822,'530326','530300','0874','530326','district','会泽县','103.297155','26.417116','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172823,'530304','530300','0874','530304','district','马龙区','103.578459','25.428102','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172824,'530323','530300','0874','530323','district','师宗县','103.985224','24.822471','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172825,'530322','530300','0874','530322','district','陆良县','103.66671','25.0293','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172826,'530302','530300','0874','530302','district','麒麟区','103.804406','25.496472','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172827,'530381','530300','0874','530381','district','宣威市','104.104255','26.218956','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172828,'530303','530300','0874','530303','district','沾益区','103.822104','25.600424','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172829,'530324','530300','0874','530324','district','罗平县','104.297124','24.865388','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172830,'530325','530300','0874','530325','district','富源县','104.255082','25.674217','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172831,'532500','530000','0873','532500','city','红河哈尼族彝族自治州','103.374873','23.363129','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172832,'532504','532500','0873','532504','district','弥勒市','103.414817','24.411774','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172833,'532524','532500','0873','532524','district','建水县','102.826178','23.635824','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172834,'532502','532500','0873','532502','district','开远市','103.266908','23.714518','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172835,'532529','532500','0873','532529','district','红河县','102.420566','23.368946','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172836,'532523','532500','0873','532523','district','屏边苗族自治县','103.675458','22.986733','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172837,'532531','532500','0873','532531','district','绿春县','102.392655','22.993654','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172838,'532501','532500','0873','532501','district','个旧市','103.152663','23.389935','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172839,'532532','532500','0873','532532','district','河口瑶族自治县','103.939265','22.529438','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172840,'532525','532500','0873','532525','district','石屏县','102.496138','23.705707','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172841,'532503','532500','0873','532503','district','蒙自市','103.364936','23.396111','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172842,'532527','532500','0873','532527','district','泸西县','103.76615','24.531981','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172843,'532528','532500','0873','532528','district','元阳县','102.835358','23.219671','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172844,'532530','532500','0873','532530','district','金平苗族瑶族傣族自治县','103.227982','22.769894','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172845,'533300','530000','0886','533300','city','怒江傈僳族自治州','98.8566','25.817555','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172846,'533324','533300','0886','533324','district','贡山独龙族怒族自治县','98.666279','27.740839','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172847,'533323','533300','0886','533323','district','福贡县','98.869132','26.901831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172848,'533325','533300','0886','533325','district','兰坪白族普米族自治县','99.416628','26.453622','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172849,'533301','533300','0886','533301','district','泸水市','98.857723','25.822579','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172850,'530400','530000','0877','530400','city','玉溪市','102.526673','24.346786','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172851,'530425','530400','0877','530425','district','易门县','102.161947','24.672156','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172852,'530424','530400','0877','530424','district','华宁县','102.928914','24.19322','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172853,'530402','530400','0877','530402','district','红塔区','102.540122','24.341215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172854,'530426','530400','0877','530426','district','峨山彝族自治县','102.405698','24.168899','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172855,'530403','530400','0877','530403','district','江川区','102.748499','24.299441','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172856,'530423','530400','0877','530423','district','通海县','102.725538','24.11114','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172857,'530481','530400','0877','530481','district','澄江市','102.904181','24.675536','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172858,'530428','530400','0877','530428','district','元江哈尼族彝族傣族自治县','101.998138','23.596068','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172859,'530427','530400','0877','530427','district','新平彝族傣族自治县','101.990805','24.070436','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172860,'532900','530000','0872','532900','city','大理白族自治州','100.267608','25.606548','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172861,'532931','532900','0872','532931','district','剑川县','99.905041','26.536889','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172862,'532930','532900','0872','532930','district','洱源县','99.962294','26.11337','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172863,'532929','532900','0872','532929','district','云龙县','99.371021','25.885733','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172864,'532901','532900','0872','532901','district','大理市','100.301614','25.678466','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172865,'532922','532900','0872','532922','district','漾濞彝族自治县','99.958089','25.669944','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172866,'532928','532900','0872','532928','district','永平县','99.54063','25.464134','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172867,'532927','532900','0872','532927','district','巍山彝族回族自治县','100.306977','25.227065','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172868,'532923','532900','0872','532923','district','祥云县','100.549961','25.483727','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172869,'532926','532900','0872','532926','district','南涧彝族自治县','100.510333','25.032353','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172870,'532925','532900','0872','532925','district','弥渡县','100.491038','25.343778','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172871,'532932','532900','0872','532932','district','鹤庆县','100.176331','26.560122','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172872,'532924','532900','0872','532924','district','宾川县','100.590274','25.830491','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172873,'533400','530000','0887','533400','city','迪庆藏族自治州','99.70211','27.819149','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172874,'533422','533400','0887','533422','district','德钦县','98.917851','28.464213','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172875,'533401','533400','0887','533401','district','香格里拉市','99.743582','27.842185','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172876,'533423','533400','0887','533423','district','维西傈僳族自治县','99.300937','27.163808','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172877,'530900','530000','0883','530900','city','临沧市','100.088837','23.884175','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172878,'530921','530900','0883','530921','district','凤庆县','99.92873','24.580559','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172879,'530922','530900','0883','530922','district','云县','100.1303','24.444461','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172880,'530902','530900','0883','530902','district','临翔区','100.082073','23.895298','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172881,'530925','530900','0883','530925','district','双江拉祜族佤族布朗族傣族自治县','99.828225','23.472719','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172882,'530927','530900','0883','530927','district','沧源佤族自治县','99.245894','23.146758','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172883,'530924','530900','0883','530924','district','镇康县','98.825389','23.762886','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172884,'530923','530900','0883','530923','district','永德县','99.258702','24.018463','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172885,'530926','530900','0883','530926','district','耿马傣族佤族自治县','99.397126','23.538092','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172886,'530500','530000','0875','530500','city','保山市','99.161489','25.112018','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172887,'530581','530500','0875','530581','district','腾冲市','98.490276','25.020283','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172888,'530502','530500','0875','530502','district','隆阳区','99.165638','25.121137','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172889,'530521','530500','0875','530521','district','施甸县','99.18919','24.723084','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172890,'530523','530500','0875','530523','district','龙陵县','98.68941','24.586703','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172891,'530524','530500','0875','530524','district','昌宁县','99.605105','24.827739','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172892,'530700','530000','0888','530700','city','丽江市','100.225936','26.855165','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172893,'530724','530700','0888','530724','district','宁蒗彝族自治县','100.851083','27.282207','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172894,'530722','530700','0888','530722','district','永胜县','100.750907','26.684215','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172895,'530702','530700','0888','530702','district','古城区','100.22583','26.876468','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172896,'530721','530700','0888','530721','district','玉龙纳西族自治县','100.236967','26.821494','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172897,'530723','530700','0888','530723','district','华坪县','101.265373','26.629598','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172898,'532800','530000','0691','532800','city','西双版纳傣族自治州','100.797002','22.009037','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172899,'532822','532800','0691','532822','district','勐海县','100.452444','21.957323','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172900,'532823','532800','0691','532823','district','勐腊县','101.564635','21.459233','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172901,'532801','532800','0691','532801','district','景洪市','100.799595','22.011792','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172902,'532600','530000','0876','532600','city','文山壮族苗族自治州','104.21567','23.400983','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172903,'532626','532600','0876','532626','district','丘北县','104.166713','24.05064','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172904,'532622','532600','0876','532622','district','砚山县','104.336905','23.605075','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172905,'532627','532600','0876','532627','district','广南县','105.055075','24.046378','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172906,'532601','532600','0876','532601','district','文山市','104.233237','23.38683','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172907,'532623','532600','0876','532623','district','西畴县','104.671802','23.437707','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172908,'532624','532600','0876','532624','district','麻栗坡县','104.702732','23.125837','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172909,'532625','532600','0876','532625','district','马关县','104.394524','23.013108','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172910,'532628','532600','0876','532628','district','富宁县','105.630921','23.625072','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172911,'532300','530000','0878','532300','city','楚雄彝族自治州','101.528304','25.045678','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172912,'532326','532300','0878','532326','district','大姚县','101.336576','25.729551','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172913,'532328','532300','0878','532328','district','元谋县','101.87434','25.704499','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172914,'532325','532300','0878','532325','district','姚安县','101.241632','25.504287','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172915,'532323','532300','0878','532323','district','牟定县','101.546898','25.312939','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172916,'532302','532300','0878','532302','district','禄丰市','102.079082','25.151061','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172917,'532301','532300','0878','532301','district','楚雄市','101.546242','25.032945','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172918,'532324','532300','0878','532324','district','南华县','101.283236','25.200163','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172919,'532327','532300','0878','532327','district','永仁县','101.666795','26.049522','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172920,'532322','532300','0878','532322','district','双柏县','101.642369','24.688814','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172921,'532329','532300','0878','532329','district','武定县','102.403949','25.530731','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172922,'530100','530000','0871','530100','city','昆明市','102.833669','24.88149','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172923,'530113','530100','0871','530113','district','东川区','103.187825','26.082997','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172924,'530129','530100','0871','530129','district','寻甸回族彝族自治县','103.256559','25.558163','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172925,'530102','530100','0871','530102','district','五华区','102.707262','25.043635','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172926,'530115','530100','0871','530115','district','晋宁区','102.595325','24.669077','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172927,'530181','530100','0871','530181','district','安宁市','102.47865','24.919831','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172928,'530112','530100','0871','530112','district','西山区','102.664426','25.038039','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172929,'530124','530100','0871','530124','district','富民县','102.497722','25.221924','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172930,'530103','530100','0871','530103','district','盘龙区','102.751643','25.116512','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172931,'530126','530100','0871','530126','district','石林彝族自治县','103.290536','24.771761','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172932,'530128','530100','0871','530128','district','禄劝彝族苗族自治县','102.471993','25.551768','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172933,'530111','530100','0871','530111','district','官渡区','102.748888','24.950285','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172934,'530114','530100','0871','530114','district','呈贡区','102.822104','24.885738','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172935,'530127','530100','0871','530127','district','嵩明县','103.043384','25.327273','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172936,'530125','530100','0871','530125','district','宜良县','103.141674','24.91983','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172937,'530800','530000','0879','530800','city','普洱市','100.966011','22.825229','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172938,'530825','530800','0879','530825','district','镇沅彝族哈尼族拉祜族自治县','101.108733','24.00445','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172939,'530822','530800','0879','530822','district','墨江哈尼族自治县','101.692461','23.431894','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172940,'530824','530800','0879','530824','district','景谷傣族彝族自治县','100.702807','23.496987','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172941,'530828','530800','0879','530828','district','澜沧拉祜族自治县','99.932045','22.555799','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172942,'530826','530800','0879','530826','district','江城哈尼族彝族自治县','101.862344','22.585858','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172943,'530829','530800','0879','530829','district','西盟佤族自治县','99.59016','22.644237','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172944,'530823','530800','0879','530823','district','景东彝族自治县','100.833877','24.446731','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172945,'530802','530800','0879','530802','district','思茅区','100.977069','22.786769','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172946,'530821','530800','0879','530821','district','宁洱哈尼族彝族自治县','101.045743','23.048809','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172947,'530827','530800','0879','530827','district','孟连傣族拉祜族佤族自治县','99.584225','22.329053','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172948,'533100','530000','0692','533100','city','德宏傣族景颇族自治州','98.585621','24.433146','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172949,'533122','533100','0692','533122','district','梁河县','98.296584','24.804275','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172950,'533103','533100','0692','533103','district','芒市','98.58809','24.433766','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172951,'533124','533100','0692','533124','district','陇川县','97.793359','24.182347','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172952,'533123','533100','0692','533123','district','盈江县','97.943474','24.691325','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'),(172953,'533102','533100','0692','533102','district','瑞丽市','97.855423','24.018377','gaodemap','2024-10-23 02:00:01','2024-10-23 02:00:01'); /*!40000 ALTER TABLE `sys_area_config` ENABLE KEYS */; UNLOCK TABLES; @@ -32,7 +32,7 @@ UNLOCK TABLES; LOCK TABLES `sys_area_pinyin` WRITE; /*!40000 ALTER TABLE `sys_area_pinyin` DISABLE KEYS */; -INSERT INTO `sys_area_pinyin` VALUES (4031,'中华人民共和国','China','china','2020-07-30 08:45:38','2020-12-12 02:00:02'),(4032,'香港特别行政区','Xianggang','Hong Kong','2020-07-30 08:45:38','2020-12-12 02:00:02'),(4033,'沙田区','Shatian','Sha Tin District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4034,'油尖旺区','Youjianwang','Yau Tsim Mong District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4035,'观塘区','Guantang','Kwun Tong District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4036,'屯门区','Tunmen','Tuen Mun District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4037,'大埔区','Dapu','Tai Po District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4038,'南区','Nan','Southern District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4039,'九龙城区','Jiulongcheng','Kowloon City District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4040,'西贡区','Xigong','Sai Kung District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4041,'深水埗区','Shenshuibu','Sham Shui Po District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4042,'黄大仙区','Huangdaxian','Wong Tai Sin District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4043,'中西区','Zhongxi','Central and Western District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4044,'北区','Bei','North District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4045,'元朗区','Yuanlang','Yuen Long District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4046,'湾仔区','Wanzi','Wan Chai District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4047,'离岛区','Lidao','Island District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4048,'东区','Dong','Eastern District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4049,'荃湾区','Quanwan','Tsuen Wan District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4050,'葵青区','Kuiqing','Kwai Tsing District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4051,'河南省','Henan',NULL,'2021-01-30 02:00:01','2021-01-30 02:00:01'),(4052,'洛阳市','Luoyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4053,'栾川县','Luanchuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4054,'新安县','Xinan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4055,'吉利区','Jili',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4056,'伊川县','Yichuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4057,'洛宁县','Luoning',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4058,'偃师市','Yanshi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4059,'瀍河回族区','Chanhehuizu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4060,'西工区','Xigong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4061,'老城区','Laocheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4062,'孟津县','Mengjin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4063,'洛龙区','Luolong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4064,'汝阳县','Ruyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4065,'宜阳县','Yiyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4066,'涧西区','Jianxi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4067,'嵩县','Song',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4068,'三门峡市','Sanmenxia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4069,'渑池县','Mianchi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4070,'湖滨区','Hubin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4071,'卢氏县','Lushi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4072,'灵宝市','Lingbao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4073,'陕州区','Shanzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4074,'义马市','Yima',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4075,'漯河市','Luohe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4076,'召陵区','Zhaoling',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4077,'临颍县','Linying',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4078,'源汇区','Yuanhui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4079,'舞阳县','Wuyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4080,'郾城区','Yancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4081,'许昌市','Xuchang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4082,'建安区','Jianan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4083,'魏都区','Weidu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4084,'鄢陵县','Yanling',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4085,'襄城县','Xiangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4086,'禹州市','Yuzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4087,'长葛市','Zhangge',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4088,'南阳市','Nanyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4089,'卧龙区','Wolong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4090,'西峡县','Xixia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4091,'桐柏县','Tongbo',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4092,'南召县','Nanzhao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4093,'唐河县','Tanghe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4094,'社旗县','Sheqi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4095,'方城县','Fangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4096,'镇平县','Zhenping',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4097,'淅川县','Xichuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4098,'内乡县','Neixiang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4099,'邓州市','Dengzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4100,'新野县','Xinye',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4101,'宛城区','Wancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4102,'信阳市','Xinyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4103,'罗山县','Luoshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4104,'新县','Xin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4105,'淮滨县','Huaibin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4106,'浉河区','Shihe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4107,'固始县','Gushi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4108,'商城县','Shangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4109,'平桥区','Pingqiao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4110,'息县','Xi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4111,'潢川县','Huangchuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4112,'光山县','Guangshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4113,'济源市','Jiyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4114,'济源市坡头镇','Jiyuanpotouzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4115,'济源市梨林镇','Jiyuanlilinzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4116,'济源市思礼镇','Jiyuansilizhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4117,'济源市大峪镇','Jiyuandayuzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4118,'济源市五龙口镇','Jiyuanwulongkouzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4119,'济源市王屋镇','Jiyuanwangwuzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4120,'济源市轵城镇','Jiyuanzhichengzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4121,'济源市玉泉街道','Jiyuanyuquanjiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4122,'济源市济水街道','Jiyuanjishuijiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4123,'济源市沁园街道','Jiyuanqinyuanjiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4124,'济源市下冶镇','Jiyuanxiayezhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4125,'济源市天坛街道','Jiyuantiantanjiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4126,'济源市克井镇','Jiyuankejingzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4127,'济源市邵原镇','Jiyuanshaoyuanzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4128,'济源市北海街道','Jiyuanbeihaijiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4129,'济源市承留镇','Jiyuanchengliuzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4130,'濮阳市','Puyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4131,'南乐县','Nanle',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4132,'台前县','Taiqian',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4133,'范县','Fan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4134,'华龙区','Hualong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4135,'清丰县','Qingfeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4136,'濮阳县','Puyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4137,'焦作市','Jiaozuo',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4138,'马村区','Macun',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4139,'沁阳市','Qinyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4140,'温县','Wen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4141,'孟州市','Mengzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4142,'修武县','Xiuwu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4143,'博爱县','Boai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4144,'武陟县','Wuzhi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4145,'中站区','Zhongzhan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4146,'山阳区','Shanyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4147,'解放区','Jiefang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4148,'郑州市','Zhengzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4149,'登封市','Dengfeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4150,'中原区','Zhongyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4151,'新密市','Xinmi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4152,'新郑市','Xinzheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4153,'上街区','Shangjie',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4154,'荥阳市','Yingyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4155,'巩义市','Gongyi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4156,'二七区','Erqi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4157,'管城回族区','Guanchenghuizu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4158,'中牟县','Zhongmou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4159,'金水区','Jinshui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4160,'惠济区','Huiji',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4161,'新乡市','Xinxiang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4162,'凤泉区','Fengquan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4163,'辉县市','Hui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4164,'长垣市','Zhangyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4165,'牧野区','Muye',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4166,'卫滨区','Weibin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4167,'新乡县','Xinxiang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4168,'封丘县','Fengqiu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4169,'获嘉县','Huojia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4170,'原阳县','Yuanyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4171,'延津县','Yanjin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4172,'红旗区','Hongqi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4173,'卫辉市','Weihui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4174,'平顶山市','Pingdingshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4175,'卫东区','Weidong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4176,'湛河区','Zhanhe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4177,'鲁山县','Lushan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4178,'舞钢市','Wugang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4179,'郏县','Jia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4180,'叶县','Ye',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4181,'汝州市','Ruzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4182,'新华区','Xinhua',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4183,'石龙区','Shilong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4184,'宝丰县','Baofeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4185,'商丘市','Shangqiu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4186,'宁陵县','Ningling',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4187,'梁园区','Liangyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4188,'永城市','Yongcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4189,'睢县','Sui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4190,'民权县','Minquan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4191,'柘城县','Zhecheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4192,'睢阳区','Suiyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4193,'夏邑县','Xiayi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4194,'虞城县','Yucheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4195,'周口市','Zhoukou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4196,'沈丘县','Shenqiu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4197,'项城市','Xiangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4198,'商水县','Shangshui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4199,'川汇区','Chuanhui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4200,'鹿邑县','Luyi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4201,'郸城县','Dancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4202,'西华县','Xihua',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4203,'淮阳区','Huaiyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4204,'太康县','Taikang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4205,'扶沟县','Fugou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4206,'驻马店市','Zhumadian',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4207,'西平县','Xiping',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4208,'上蔡县','Shangcai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4209,'泌阳县','Miyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4210,'新蔡县','Xincai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4211,'正阳县','Zhengyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4212,'遂平县','Suiping',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4213,'汝南县','Runan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4214,'平舆县','Pingyu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4215,'驿城区','Yicheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4216,'确山县','Queshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4217,'安阳市','Anyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4218,'殷都区','Yindu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4219,'林州市','Linzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4220,'龙安区','Longan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4221,'内黄县','Neihuang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4222,'北关区','Beiguan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4223,'文峰区','Wenfeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4224,'安阳县','Anyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4225,'滑县','Hua',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4226,'汤阴县','Tangyin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4227,'鹤壁市','Hebi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4228,'鹤山区','Heshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4229,'山城区','Shancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4230,'淇县','Qi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4231,'浚县','Jun',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4232,'淇滨区','Qibin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4233,'开封市','Kaifeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4234,'顺河回族区','Shunhehuizu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4235,'龙亭区','Longting',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4236,'兰考县','Lankao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4237,'杞县','Qi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4238,'通许县','Tongxu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4239,'尉氏县','Weishi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4240,'禹王台区','Yuwangtai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4241,'祥符区','Xiangfu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4242,'鼓楼区','Gulou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4243,'广东省','Guangdong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4244,'汕头市','Shantou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4245,'南澳县','Nanao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4246,'潮阳区','Chaoyang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4247,'澄海区','Chenghai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4248,'濠江区','Haojiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4249,'潮南区','Chaonan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4250,'龙湖区','Longhu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4251,'金平区','Jinping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4252,'佛山市','Foshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4253,'三水区','Sanshui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4254,'高明区','Gaoming',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4255,'顺德区','Shunde',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4256,'禅城区','Shancheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4257,'南海区','Nanhai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4258,'肇庆市','Zhaoqing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4259,'封开县','Fengkai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4260,'怀集县','Huaiji',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4261,'广宁县','Guangning',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4262,'德庆县','Deqing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4263,'四会市','Sihui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4264,'鼎湖区','Dinghu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4265,'高要区','Gaoyao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4266,'端州区','Duanzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4267,'惠州市','Huizhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4268,'惠东县','Huidong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4269,'博罗县','Boluo',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4270,'龙门县','Longmen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4271,'惠阳区','Huiyang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4272,'惠城区','Huicheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4273,'深圳市','Shenzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4274,'宝安区','Baoan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4275,'南山区','Nanshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4276,'盐田区','Yantian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4277,'福田区','Futian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4278,'罗湖区','Luohu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4279,'龙岗区','Longgang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4280,'坪山区','Pingshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4281,'光明区','Guangming',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4282,'龙华区','Longhua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4283,'珠海市','Zhuhai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4284,'金湾区','Jinwan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4285,'斗门区','Doumen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4286,'香洲区','Xiangzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4287,'湛江市','Zhanjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4288,'麻章区','Mazhang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4289,'廉江市','Lianjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4290,'雷州市','Leizhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4291,'吴川市','Wuchuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4292,'徐闻县','Xuwen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4293,'坡头区','Potou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4294,'霞山区','Xiashan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4295,'遂溪县','Suixi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4296,'赤坎区','Chikan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4297,'阳江市','Yangjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4298,'阳春市','Yangchun',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4299,'阳西县','Yangxi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4300,'江城区','Jiangcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4301,'阳东区','Yangdong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4302,'江门市','Jiangmen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4303,'鹤山市','Heshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4304,'江海区','Jianghai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4305,'开平市','Kaiping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4306,'台山市','Taishan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4307,'恩平市','Enping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4308,'新会区','Xinhui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4309,'蓬江区','Pengjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4310,'梅州市','Meizhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4311,'平远县','Pingyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4312,'蕉岭县','Jiaoling',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4313,'兴宁市','Xingning',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4314,'五华县','Wuhua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4315,'丰顺县','Fengshun',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4316,'梅县区','Mei',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4317,'梅江区','Meijiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4318,'大埔县','Dapu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4319,'茂名市','Maoming',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4320,'信宜市','Xinyi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4321,'高州市','Gaozhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4322,'电白区','Dianbai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4323,'化州市','Huazhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4324,'茂南区','Maonan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4325,'潮州市','Chaozhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4326,'饶平县','Raoping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4327,'潮安区','Chaoan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4328,'湘桥区','Xiangqiao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4329,'汕尾市','Shanwei',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4330,'陆河县','Luhe',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4331,'海丰县','Haifeng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4332,'城区','Cheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4333,'陆丰市','Lufeng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4334,'云浮市','Yunfu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4335,'郁南县','Yunan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4336,'罗定市','Luoding',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4337,'新兴县','Xinxing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4338,'云城区','Yuncheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4339,'云安区','Yunan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4340,'河源市','Heyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4341,'东源县','Dongyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4342,'和平县','Heping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4343,'龙川县','Longchuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4344,'连平县','Lianping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4345,'源城区','Yuancheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4346,'紫金县','Zijin',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4347,'揭阳市','Jieyang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4348,'普宁市','Puning',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4349,'揭西县','Jiexi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4350,'惠来县','Huilai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4351,'榕城区','Rongcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4352,'揭东区','Jiedong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4353,'清远市','Qingyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4354,'连州市','Lianzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4355,'连南瑶族自治县','Liannanyaozuzizhixian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4356,'连山壮族瑶族自治县','Lianshanzhuangzuyaozuzizhixian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4357,'英德市','Yingde',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4358,'佛冈县','Fogang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4359,'阳山县','Yangshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4360,'清城区','Qingcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4361,'清新区','Qingxin',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4362,'韶关市','Shaoguan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4363,'南雄市','Nanxiong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4364,'乳源瑶族自治县','Ruyuanyaozuzizhixian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4365,'仁化县','Renhua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4366,'新丰县','Xinfeng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4367,'始兴县','Shixing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4368,'翁源县','Wengyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4369,'浈江区','Zhenjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4370,'武江区','Wujiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4371,'曲江区','Qujiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4372,'乐昌市','Lechang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4373,'广州市','Guangzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4374,'从化区','Conghua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4375,'花都区','Huadu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4376,'南沙区','Nansha',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4377,'番禺区','Fanyu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4378,'白云区','Baiyun',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4379,'海珠区','Haizhu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4380,'荔湾区','Liwan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4381,'增城区','Zengcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4382,'越秀区','Yuexiu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4383,'天河区','Tianhe',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4384,'黄埔区','Huangpu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4385,'中山市','Zhongshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4386,'三角镇','Sanjiaozhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4387,'横栏镇','Henglanzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4388,'五桂山街道','Wuguishanjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4389,'东升镇','Dongshengzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4390,'神湾镇','Shenwanzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4391,'火炬开发区街道','Huojukaifajiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4392,'小榄镇','Xiaolanzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4393,'南朗镇','Nanlangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4394,'古镇镇','Guzhenzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4395,'民众镇','Minzhongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4396,'港口镇','Gangkouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4397,'三乡镇','Sanxiangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4398,'石岐区街道','Shiqijiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4399,'大涌镇','Dayongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4400,'南头镇','Nantouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4401,'黄圃镇','Huangpuzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4402,'东区街道','Dongjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4403,'阜沙镇','Fushazhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4404,'西区街道','Xijiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4405,'坦洲镇','Tanzhouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4406,'板芙镇','Banfuzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4407,'南区街道','Nanjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4408,'沙溪镇','Shaxizhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4409,'东凤镇','Dongfengzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4410,'东莞市','Dongguan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4411,'莞城街道','Guanchengjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4412,'常平镇','Changpingzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4413,'望牛墩镇','Wangniudunzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4414,'大朗镇','Dalangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4415,'麻涌镇','Mayongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4416,'东莞生态园','Dongguanshengtaiyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4417,'桥头镇','Qiaotouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4418,'樟木头镇','Zhangmutouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4419,'松山湖管委会','Songshanhuguanweihui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4420,'凤岗镇','Fenggangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4421,'石龙镇','Shilongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4422,'高埗镇','Gaobuzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4423,'塘厦镇','Tangshazhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4424,'寮步镇','Liaobuzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4425,'厚街镇','Houjiezhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4426,'谢岗镇','Xiegangzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4427,'虎门镇','Humenzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4428,'南城街道','Nanchengjiedao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4429,'虎门港管委会','Humengangguanweihui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4430,'横沥镇','Henglizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4431,'企石镇','Qishizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4432,'东坑镇','Dongkengzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4433,'石排镇','Shipaizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4434,'东城街道','Dongchengjiedao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4435,'洪梅镇','Hongmeizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4436,'沙田镇','Shatianzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4437,'道滘镇','Daojiaozhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4438,'大岭山镇','Dalingshanzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4439,'清溪镇','Qingxizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4440,'茶山镇','Chashanzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4441,'中堂镇','Zhongtangzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4442,'万江街道','Wanjiangjiedao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4443,'石碣镇','Shijiezhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4444,'长安镇','Zhanganzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4445,'黄江镇','Huangjiangzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4446,'内蒙古自治区','Neimenggu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4447,'鄂尔多斯市','Eerduosi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4448,'鄂托克旗','Etuokeqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4449,'达拉特旗','Dalateqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4450,'准格尔旗','Zhungeerqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4451,'杭锦旗','Hangjinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4452,'乌审旗','Wushenqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4453,'鄂托克前旗','Etuokeqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4454,'东胜区','Dongsheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4455,'伊金霍洛旗','Yijinhuoluoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4456,'康巴什区','Kangbashen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4457,'呼伦贝尔市','Hulunbeier',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4458,'海拉尔区','Hailaer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4459,'根河市','Genhe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4460,'额尔古纳市','Eerguna',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4461,'牙克石市','Yakeshi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4462,'陈巴尔虎旗','Chenbaerhuqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4463,'莫力达瓦达斡尔族自治旗','Molidawadawoerzuzizhiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4464,'扎兰屯市','Zhalantun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4465,'阿荣旗','Arongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4466,'鄂温克族自治旗','Ewenkezuzizhiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4467,'扎赉诺尔区','Zhalainuoer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4468,'新巴尔虎右旗','Xinbaerhuyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4469,'满洲里市','Manzhouli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4470,'新巴尔虎左旗','Xinbaerhuzuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4471,'鄂伦春自治旗','Elunchunzizhiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4472,'乌海市','Wuhai',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4473,'乌达区','Wuda',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4474,'海南区','Hainan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4475,'海勃湾区','Haibowan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4476,'巴彦淖尔市','Bayannaoer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4477,'乌拉特中旗','Wulatezhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4478,'五原县','Wuyuan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4479,'临河区','Linhe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4480,'磴口县','Dengkou',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4481,'乌拉特前旗','Wulateqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4482,'乌拉特后旗','Wulatehouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4483,'杭锦后旗','Hangjinhouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4484,'包头市','Baotou',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4485,'土默特右旗','Tumoteyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4486,'白云鄂博矿区','Baiyunebokuang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4487,'达尔罕茂明安联合旗','Daerhanmaominganlianheqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4488,'石拐区','Shiguai',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4489,'九原区','Jiuyuan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4490,'东河区','Donghe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4491,'青山区','Qingshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4492,'昆都仑区','Kundulun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4493,'固阳县','Guyang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4494,'通辽市','Tongliao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4495,'霍林郭勒市','Huolinguole',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4496,'扎鲁特旗','Zhaluteqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4497,'科尔沁左翼中旗','Keerqinzuoyizhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4498,'开鲁县','Kailu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4499,'奈曼旗','Naimanqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4500,'科尔沁区','Keerqin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4501,'库伦旗','Kulunqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4502,'科尔沁左翼后旗','Keerqinzuoyihouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4503,'阿拉善盟','Alashanmeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4504,'额济纳旗','Ejinaqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4505,'阿拉善右旗','Alashanyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4506,'阿拉善左旗','Alashanzuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4507,'兴安盟','Xinganmeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4508,'阿尔山市','Aershan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4509,'科尔沁右翼中旗','Keerqinyouyizhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4510,'突泉县','Tuquan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4511,'扎赉特旗','Zhalaiteqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4512,'乌兰浩特市','Wulanhaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4513,'科尔沁右翼前旗','Keerqinyouyiqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4514,'锡林郭勒盟','Xilinguolemeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4515,'东乌珠穆沁旗','Dongwuzhumuqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4516,'西乌珠穆沁旗','Xiwuzhumuqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4517,'阿巴嘎旗','Abagaqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4518,'锡林浩特市','Xilinhaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4519,'苏尼特左旗','Sunitezuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4520,'二连浩特市','Erlianhaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4521,'苏尼特右旗','Suniteyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4522,'正蓝旗','Zhenglanqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4523,'镶黄旗','Xianghuangqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4524,'正镶白旗','Zhengxiangbaiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4525,'多伦县','Duolun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4526,'太仆寺旗','Taipusiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4527,'呼和浩特市','Huhehaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4528,'和林格尔县','Helingeer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4529,'玉泉区','Yuquan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4530,'回民区','Huimin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4531,'武川县','Wuchuan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4532,'托克托县','Tuoketuo',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4533,'土默特左旗','Tumotezuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4534,'新城区','Xincheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4535,'赛罕区','Saihan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4536,'清水河县','Qingshuihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4537,'赤峰市','Chifeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4538,'阿鲁科尔沁旗','Alukeerqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4539,'巴林左旗','Balinzuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4540,'克什克腾旗','Keshenketengqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4541,'林西县','Linxi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4542,'巴林右旗','Balinyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4543,'翁牛特旗','Wengniuteqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4544,'松山区','Songshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4545,'元宝山区','Yuanbaoshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4546,'喀喇沁旗','Kalaqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4547,'红山区','Hongshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4548,'敖汉旗','Aohanqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4549,'宁城县','Ningcheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4550,'乌兰察布市','Wulanchabu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4551,'四子王旗','Siziwangqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4552,'商都县','Shangdu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4553,'察哈尔右翼中旗','Chahaeryouyizhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4554,'化德县','Huade',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4555,'兴和县','Xinghe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4556,'卓资县','Zhuozi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4557,'察哈尔右翼后旗','Chahaeryouyihouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4558,'丰镇市','Fengzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4559,'察哈尔右翼前旗','Chahaeryouyiqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4560,'集宁区','Jining',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4561,'凉城县','Liangcheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4562,'黑龙江省','Heilongjiang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4563,'大兴安岭地区','Daxinganlingdi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4564,'漠河市','Mohe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4565,'呼玛县','Huma',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4566,'塔河县','Tahe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4567,'加格达奇区','Jiagedaqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4568,'七台河市','Qitaihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4569,'桃山区','Taoshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4570,'勃利县','Boli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4571,'茄子河区','Qiezihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4572,'新兴区','Xinxing',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4573,'鹤岗市','Hegang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4574,'绥滨县','Suibin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4575,'工农区','Gongnong',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4576,'兴山区','Xingshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4577,'向阳区','Xiangyang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4578,'萝北县','Luobei',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4579,'兴安区','Xingan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4580,'东山区','Dongshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4581,'伊春市','Yichun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4582,'嘉荫县','Jiayin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4583,'南岔县','Nancha',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4584,'丰林县','Fenglin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4585,'乌翠区','Wucui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4586,'伊美区','Yimei',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4587,'金林区','Jinlin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4588,'友好区','Youhao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4589,'大箐山县','Daqingshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4590,'铁力市','Tieli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4591,'汤旺县','Tangwang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4592,'绥化市','Suihua',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4593,'绥棱县','Suileng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4594,'庆安县','Qingan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4595,'海伦市','Hailun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4596,'望奎县','Wangkui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4597,'青冈县','Qinggang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4598,'北林区','Beilin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4599,'肇东市','Zhaodong',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4600,'明水县','Mingshui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4601,'兰西县','Lanxi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4602,'安达市','Anda',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4603,'哈尔滨市','Haerbin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4604,'方正县','Fangzheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4605,'通河县','Tonghe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4606,'巴彦县','Bayan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4607,'木兰县','Mulan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4608,'依兰县','Yilan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4609,'宾县','Bin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4610,'平房区','Pingfang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4611,'双城区','Shuangcheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4612,'延寿县','Yanshou',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4613,'尚志市','Shangzhi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4614,'香坊区','Xiangfang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4615,'道里区','Daoli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4616,'五常市','Wuchang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4617,'阿城区','Acheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4618,'呼兰区','Hulan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4619,'松北区','Songbei',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4620,'道外区','Daowai',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4621,'南岗区','Nangang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4622,'黑河市','Heihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4623,'嫩江市','Nenjiang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4624,'爱辉区','Aihui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4625,'北安市','Beian',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4626,'孙吴县','Sunwu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4627,'逊克县','Xunke',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4628,'五大连池市','Wudalianchi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4629,'齐齐哈尔市','Qiqihaer',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4630,'克东县','Kedong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4631,'克山县','Keshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4632,'依安县','Yian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4633,'讷河市','Nehe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4634,'甘南县','Gannan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4635,'富裕县','Fuyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4636,'建华区','Jianhua',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4637,'碾子山区','Nianzishan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4638,'龙江县','Longjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4639,'梅里斯达斡尔族区','Meilisidawoerzu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4640,'铁锋区','Tiefeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4641,'富拉尔基区','Fulaerji',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4642,'昂昂溪区','Angangxi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4643,'龙沙区','Longsha',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4644,'泰来县','Tailai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4645,'拜泉县','Baiquan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4646,'牡丹江市','Mudanjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4647,'爱民区','Aimin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4648,'绥芬河市','Suifenhe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4649,'东安区','Dongan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4650,'东宁市','Dongning',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4651,'宁安市','Ningan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4652,'穆棱市','Muleng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4653,'林口县','Linkou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4654,'阳明区','Yangming',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4655,'西安区','Xian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4656,'海林市','Hailin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4657,'鸡西市','Jixi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4658,'城子河区','Chengzihe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4659,'麻山区','Mashan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4660,'滴道区','Didao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4661,'梨树区','Lishu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4662,'恒山区','Hengshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4663,'鸡冠区','Jiguan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4664,'密山市','Mishan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4665,'鸡东县','Jidong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4666,'虎林市','Hulin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4667,'大庆市','Daqing',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4668,'让胡路区','Ranghulu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4669,'红岗区','Honggang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4670,'肇源县','Zhaoyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4671,'大同区','Datong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4672,'杜尔伯特蒙古族自治县','Duerbotemengguzuzizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4673,'林甸县','Lindian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4674,'龙凤区','Longfeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4675,'萨尔图区','Saertu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4676,'肇州县','Zhaozhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4677,'佳木斯市','Jiamusi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4678,'同江市','Tongjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4679,'桦川县','Huachuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4680,'汤原县','Tangyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4681,'前进区','Qianjin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4682,'郊区','Jiao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4683,'东风区','Dongfeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4684,'桦南县','Huanan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4685,'抚远市','Fuyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4686,'富锦市','Fujin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4687,'双鸭山市','Shuangyashan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4688,'友谊县','Youyi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4689,'尖山区','Jianshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4690,'四方台区','Sifangtai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4691,'岭东区','Lingdong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4692,'宝山区','Baoshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4693,'宝清县','Baoqing',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4694,'饶河县','Raohe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4695,'集贤县','Jixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4696,'新疆维吾尔自治区','Xinjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4697,'可克达拉市','Kekedala',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4698,'兵团六十八团','Bingtuanliushibatuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4699,'都拉塔口岸','Dulatakouan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4700,'兵团六十七团','Bingtuanliushiqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4701,'兵团六十六团','Bingtuanliushiliutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4702,'兵团六十三团','Bingtuanliushisantuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4703,'兵团六十四团','Bingtuanliushisituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4704,'双河市','Shuanghe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4705,'兵团八十九团','Bingtuanbashijiutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4706,'兵团八十六团','Bingtuanbashiliutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4707,'兵团八十四团','Bingtuanbashisituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4708,'兵团九十团','Bingtuanjiushituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4709,'兵团八十一团','Bingtuanbashiyituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4710,'北屯市','Beitun',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4711,'北屯镇','Beitunzhen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4712,'兵团一八八团','Bingtuanyibabatuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4713,'兵团一八七团','Bingtuanyibaqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4714,'兵团一八三团','Bingtuanyibasantuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4715,'博尔塔拉蒙古自治州','Boertalamengguzizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4716,'温泉县','Wenquan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4717,'阿拉山口市','Alashankou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4718,'博乐市','Bole',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4719,'精河县','Jinghe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4720,'铁门关市','Tiemenguan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4721,'农二师三十团','Nongershisanshituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4722,'兵团二十九团','Bingtuanershijiutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4723,'和田地区','Hetiandi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4724,'于田县','Yutian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4725,'民丰县','Minfeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4726,'和田市','Hetian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4727,'和田县','Hetian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4728,'洛浦县','Luopu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4729,'皮山县','Pishan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4730,'墨玉县','Moyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4731,'策勒县','Cele',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4732,'塔城地区','Tachengdi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4733,'和布克赛尔蒙古自治县','Hebukesaiermengguzizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4734,'塔城市','Tacheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4735,'裕民县','Yumin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4736,'额敏县','Emin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4737,'托里县','Tuoli',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4738,'乌苏市','Wusu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4739,'沙湾县','Shawan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4740,'石河子市','Shihezi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4741,'兵团一五二团','Bingtuanyiwuertuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4742,'红山街道','Hongshanjiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4743,'向阳街道','Xiangyangjiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4744,'石河子乡','Shihezixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4745,'老街街道','Laojiejiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4746,'北泉镇','Beiquanzhen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4747,'新城街道','Xinchengjiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4748,'五家渠市','Wujiaqu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4749,'兵团一零二团','Bingtuanyilingertuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4750,'军垦路街道','Junkenlujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4751,'人民路街道','Renminlujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4752,'兵团一零一团','Bingtuanyilingyituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4753,'兵团一零三团','Bingtuanyilingsantuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4754,'青湖路街道','Qinghulujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4755,'昆玉市','Kunyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4756,'乌鲁克萨依乡','Wulukesayixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4757,'奴尔乡','Nuerxiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4758,'普恰克其乡','Puqiakeqixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4759,'乌尔其乡','Wuerqixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4760,'博斯坦乡','Bositanxiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4761,'兵团四十七团','Bingtuansishiqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4762,'兵团皮山农场','Bingtuanpishannongchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4763,'喀拉喀什镇','Kalakashenzhen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4764,'阔依其乡','Kuoyiqixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4765,'兵团一牧场','Bingtuanyimuchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4766,'兵团二二四团','Bingtuanerersituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4767,'昌吉回族自治州','Changjihuizuzizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4768,'玛纳斯县','Manasi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4769,'木垒哈萨克自治县','Muleihasakezizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4770,'奇台县','Qitai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4771,'呼图壁县','Hutubi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4772,'阜康市','Fukang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4773,'昌吉市','Changji',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4774,'吉木萨尔县','Jimusaer',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4775,'伊犁哈萨克自治州','Yilihasakezizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4776,'奎屯市','Kuitun',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4777,'尼勒克县','Nileke',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4778,'伊宁县','Yining',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4779,'巩留县','Gongliu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4780,'昭苏县','Zhaosu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4781,'新源县','Xinyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4782,'特克斯县','Tekesi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4783,'察布查尔锡伯自治县','Chabuchaerxibozizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4784,'霍城县','Huocheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4785,'霍尔果斯市','Huoerguosi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4786,'伊宁市','Yining',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4787,'阿勒泰地区','Aletaidi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4788,'布尔津县','Buerjin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4789,'吉木乃县','Jimunai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4790,'富蕴县','Fuyun',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4791,'青河县','Qinghe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4792,'哈巴河县','Habahe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4793,'福海县','Fuhai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4794,'阿勒泰市','Aletai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4795,'乌鲁木齐市','Wulumuqi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4796,'达坂城区','Dabancheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4797,'天山区','Tianshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4798,'米东区','Midong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4799,'水磨沟区','Shuimogou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4800,'头屯河区','Toutunhe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4801,'乌鲁木齐县','Wulumuqi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4802,'新市区','Xin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4803,'沙依巴克区','Shayibake',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4804,'巴音郭楞蒙古自治州','Bayinguolengmengguzizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4805,'和硕县','Heshuo',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4806,'和静县','Hejing',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4807,'博湖县','Bohu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4808,'焉耆回族自治县','Yanqihuizuzizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4809,'若羌县','Ruoqiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4810,'且末县','Qiemo',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4811,'库尔勒市','Kuerle',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4812,'轮台县','Luntai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4813,'尉犁县','Weili',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4814,'阿克苏地区','Akesudi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4815,'拜城县','Baicheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4816,'温宿县','Wensu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4817,'库车市','Kuche',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4818,'新和县','Xinhe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4819,'沙雅县','Shaya',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4820,'阿克苏市','Akesu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4821,'阿瓦提县','Awati',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4822,'柯坪县','Keping',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4823,'乌什县','Wushen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4824,'哈密市','Hami',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4825,'伊州区','Yizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4826,'伊吾县','Yiwu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4827,'巴里坤哈萨克自治县','Balikunhasakezizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4828,'阿拉尔市','Alaer',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4829,'幸福路街道','Xingfulujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4830,'阿拉尔农场','Alaernongchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4831,'兵团第一师幸福农场','Bingtuandiyishixingfunongchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4832,'工业园区','Gongyeyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4833,'兵团七团','Bingtuanqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4834,'兵团十一团','Bingtuanshiyituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4835,'托喀依乡','Tuokayixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4836,'青松路街道','Qingsonglujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4837,'兵团八团','Bingtuanbatuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4838,'兵团第一师水利水电工程处','Bingtuandiyishishuilishuidiangongchengchu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4839,'中心监狱','Zhongxinjianyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4840,'兵团第一师塔里木灌区水利管理处','Bingtuandiyishitalimuguanshuiliguanlichu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4841,'兵团十四团','Bingtuanshisituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4842,'兵团十团','Bingtuanshituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4843,'金银川路街道','Jinyinchuanlujiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4844,'兵团十三团','Bingtuanshisantuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4845,'南口街道','Nankoujiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4846,'兵团十六团','Bingtuanshiliutuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4847,'兵团十二团','Bingtuanshiertuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4848,'喀什地区','Kashendi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4849,'麦盖提县','Maigaiti',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4850,'疏勒县','Shule',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4851,'伽师县','Jiashi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4852,'叶城县','Yecheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4853,'莎车县','Shache',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4854,'塔什库尔干塔吉克自治县','Tashenkuergantajikezizhixian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4855,'泽普县','Zepu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4856,'疏附县','Shufu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4857,'巴楚县','Bachu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4858,'英吉沙县','Yingjisha',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4859,'喀什市','Kashen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4860,'岳普湖县','Yuepuhu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4861,'吐鲁番市','Tulufan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4862,'托克逊县','Tuokexun',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4863,'高昌区','Gaochang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4864,'鄯善县','Shanshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4865,'图木舒克市','Tumushuke',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4866,'兵团四十九团','Bingtuansishijiutuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4867,'兵团图木舒克市永安坝','Bingtuantumushukeyonganba',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4868,'兵团五十一团','Bingtuanwushiyituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4869,'前海街道','Qianhaijiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4870,'兵团图木舒克市喀拉拜勒镇','Bingtuantumushukekalabailezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4871,'永安坝街道','Yonganbajiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4872,'齐干却勒街道','Qiganquelejiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4873,'兵团五十团','Bingtuanwushituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4874,'兵团五十三团','Bingtuanwushisantuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4875,'兵团四十四团','Bingtuansishisituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4876,'克孜勒苏柯尔克孜自治州','Kezilesukeerkezizizhizhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4877,'乌恰县','Wuqia',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4878,'阿图什市','Atushen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4879,'阿合奇县','Aheqi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4880,'阿克陶县','Aketao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4881,'克拉玛依市','Kelamayi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4882,'乌尔禾区','Wuerhe',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4883,'白碱滩区','Baijiantan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4884,'克拉玛依区','Kelamayi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4885,'独山子区','Dushanzi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4886,'胡杨河市','Huyanghe',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4887,'兵团一三零团','Bingtuanyisanlingtuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4888,'五五新镇街道','Wuwuxinzhenjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4889,'兵团一二八团','Bingtuanyierbatuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4890,'兵团一二九团','Bingtuanyierjiutuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4891,'湖北省','Hubei',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4892,'宜昌市','Yichang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4893,'兴山县','Xingshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4894,'当阳市','Dangyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4895,'秭归县','Zigui',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4896,'长阳土家族自治县','Zhangyangtujiazuzizhixian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4897,'点军区','Dianjun',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4898,'枝江市','Zhijiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4899,'伍家岗区','Wujiagang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4900,'猇亭区','Yaoting',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4901,'五峰土家族自治县','Wufengtujiazuzizhixian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4902,'宜都市','Yidu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4903,'夷陵区','Yiling',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4904,'西陵区','Xiling',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4905,'远安县','Yuanan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4906,'十堰市','Shiyan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4907,'张湾区','Zhangwan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4908,'郧阳区','Yunyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4909,'茅箭区','Maojian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4910,'丹江口市','Danjiangkou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4911,'竹山县','Zhushan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4912,'房县','Fang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4913,'竹溪县','Zhuxi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4914,'郧西县','Yunxi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4915,'襄阳市','Xiangyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4916,'老河口市','Laohekou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4917,'谷城县','Gucheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4918,'枣阳市','Zaoyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4919,'宜城市','Yicheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4920,'保康县','Baokang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4921,'襄城区','Xiangcheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4922,'襄州区','Xiangzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4923,'樊城区','Fancheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4924,'南漳县','Nanzhang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4925,'孝感市','Xiaogan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4926,'云梦县','Yunmeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4927,'应城市','Yingcheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4928,'汉川市','Hanchuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4929,'孝南区','Xiaonan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4930,'孝昌县','Xiaochang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4931,'大悟县','Dawu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4932,'安陆市','Anlu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4933,'黄冈市','Huanggang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4934,'麻城市','Macheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4935,'蕲春县','Qichun',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4936,'黄州区','Huangzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4937,'浠水县','Xishui',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4938,'英山县','Yingshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4939,'红安县','Hongan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4940,'武穴市','Wuxue',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4941,'黄梅县','Huangmei',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4942,'罗田县','Luotian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4943,'团风县','Tuanfeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4944,'潜江市','Qianjiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4945,'积玉口镇','Jiyukouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4946,'广华街道','Guanghuajiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4947,'泰丰街道','Taifengjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4948,'周矶管理区','Zhoujiguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4949,'潜江经济开发区','Qianjiangjingjikaifa',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4950,'高场街道','Gaochangjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4951,'周矶街道','Zhoujijiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4952,'总口管理区','Zongkouguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4953,'运粮湖管理区','Yunlianghuguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4954,'王场镇','Wangchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4955,'竹根滩镇','Zhugentanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4956,'园林街道','Yuanlinjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4957,'白鹭湖管理区','Bailuhuguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4958,'渔洋镇','Yuyangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4959,'熊口镇','Xiongkouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4960,'后湖管理区','Houhuguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4961,'江汉石油管理局','Jianghanshiyouguanliju',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4962,'熊口管理区','Xiongkouguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4963,'张金镇','Zhangjinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4964,'杨市街道','Yangjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4965,'高石碑镇','Gaoshibeizhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4966,'浩口镇','Haokouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4967,'龙湾镇','Longwanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4968,'老新镇','Laoxinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4969,'浩口原种场','Haokouyuanzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4970,'天门市','Tianmen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4971,'胡市镇','Huzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4972,'多祥镇','Duoxiangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4973,'黄潭镇','Huangtanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4974,'沉湖管委会','Chenhuguanweihui',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4975,'干驿镇','Ganyizhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4976,'横林镇','Henglinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4977,'马湾镇','Mawanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4978,'蒋湖农场','Jianghunongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4979,'小板镇','Xiaobanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4980,'岳口镇','Yuekouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4981,'多宝镇','Duobaozhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4982,'蒋场镇','Jiangchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4983,'石家河镇','Shijiahezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4984,'彭市镇','Pengzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4985,'佛子山镇','Fozishanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4986,'九真镇','Jiuzhenzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4987,'竟陵街道','Jinglingjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4988,'侨乡街道开发区','Qiaoxiangjiedaokaifa',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4989,'麻洋镇','Mayangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4990,'杨林街道','Yanglinjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4991,'白茅湖农场','Baimaohunongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4992,'皂市镇','Zaozhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4993,'拖市镇','Tuozhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4994,'汪场镇','Wangchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4995,'张港镇','Zhanggangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4996,'渔薪镇','Yuxinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4997,'卢市镇','Luzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4998,'净潭乡','Jingtanxiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4999,'武汉市','Wuhan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5000,'黄陂区','Huangpo',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5001,'新洲区','Xinzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5002,'汉南区','Hannan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5003,'蔡甸区','Caidian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5004,'武昌区','Wuchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5005,'江夏区','Jiangxia',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5006,'东西湖区','Dongxihu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5007,'硚口区','Qiaokou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5008,'汉阳区','Hanyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5009,'洪山区','Hongshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5010,'江汉区','Jianghan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5011,'江岸区','Jiangan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5012,'恩施土家族苗族自治州','Enshitujiazumiaozuzizhizhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5013,'建始县','Jianshi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5014,'恩施市','Enshi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5015,'利川市','Lichuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5016,'鹤峰县','Hefeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5017,'来凤县','Laifeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5018,'宣恩县','Xuanen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5019,'巴东县','Badong',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5020,'咸丰县','Xianfeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5021,'荆门市','Jingmen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5022,'东宝区','Dongbao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5023,'钟祥市','Zhongxiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5024,'京山市','Jingshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5025,'掇刀区','Duodao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5026,'沙洋县','Shayang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5027,'荆州市','Jingzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5028,'江陵县','Jiangling',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5029,'监利市','Jianli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5030,'石首市','Shishou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5031,'洪湖市','Honghu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5032,'松滋市','Songzi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5033,'沙市区','Sha',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5034,'公安县','Gongan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5035,'荆州区','Jingzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5036,'仙桃市','Xiantao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5037,'畜禽良种场','Chuqinliangzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5038,'沙湖镇','Shahuzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5039,'豆河镇','Douhezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5040,'通海口镇','Tonghaikouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5041,'胡场镇','Huchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5042,'长倘口镇','Zhangtangkouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5043,'五湖渔场','Wuhuyuchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5044,'干河街道','Ganhejiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5045,'杨林尾镇','Yanglinweizhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5046,'西流河镇','Xiliuhezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5047,'赵西垸林场','Zhaoxihuanlinchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5048,'彭场镇','Pengchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5049,'九合垸原种场','Jiuhehuanyuanzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5050,'沔城回族镇','Mianchenghuizuzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5051,'龙华山街道','Longhuashanjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5052,'沙湖原种场','Shahuyuanzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5053,'陈场镇','Chenchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5054,'郑场镇','Zhengchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5055,'排湖风景区','Paihufengjing',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5056,'郭河镇','Guohezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5057,'沙嘴街道','Shazuijiedao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5058,'毛嘴镇','Maozuizhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5059,'张沟镇','Zhanggouzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5060,'三伏潭镇','Sanfutanzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5061,'咸宁市','Xianning',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5062,'嘉鱼县','Jiayu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5063,'通山县','Tongshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5064,'咸安区','Xianan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5065,'赤壁市','Chibi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5066,'崇阳县','Chongyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5067,'通城县','Tongcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5068,'神农架林区','Shennongjialin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5069,'木鱼镇','Muyuzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5070,'下谷坪土家族乡','Xiagupingtujiazuxiang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5071,'新华镇','Xinhuazhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5072,'九湖镇','Jiuhuzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5073,'宋洛乡','Songluoxiang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5074,'松柏镇','Songbozhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5075,'红坪镇','Hongpingzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5076,'阳日镇','Yangrizhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5077,'随州市','Suizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5078,'曾都区','Cengdu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5079,'随县','Sui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5080,'广水市','Guangshui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5081,'鄂州市','Ezhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5082,'华容区','Huarong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5083,'梁子湖区','Liangzihu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5084,'鄂城区','Echeng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5085,'黄石市','Huangshi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5086,'铁山区','Tieshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5087,'西塞山区','Xisaishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5088,'下陆区','Xialu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5089,'阳新县','Yangxin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5090,'大冶市','Daye',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5091,'黄石港区','Huangshigang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5092,'辽宁省','Liaoning',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5093,'营口市','Yingkou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5094,'西市区','Xi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5095,'盖州市','Gaizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5096,'鲅鱼圈区','Bayuquan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5097,'大石桥市','Dashiqiao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5098,'站前区','Zhanqian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5099,'老边区','Laobian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5100,'锦州市','Jinzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5101,'义县','Yi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5102,'黑山县','Heishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5103,'太和区','Taihe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5104,'凌海市','Linghai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5105,'北镇市','Beizhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5106,'凌河区','Linghe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5107,'古塔区','Guta',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5108,'葫芦岛市','Huludao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5109,'建昌县','Jianchang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5110,'龙港区','Longgang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5111,'兴城市','Xingcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5112,'绥中县','Suizhong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5113,'南票区','Nanpiao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5114,'连山区','Lianshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5115,'丹东市','Dandong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5116,'凤城市','Fengcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5117,'东港市','Donggang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5118,'振安区','Zhenan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5119,'振兴区','Zhenxing',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5120,'宽甸满族自治县','Kuandianmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5121,'元宝区','Yuanbao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5122,'沈阳市','Shenyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5123,'新民市','Xinmin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5124,'和平区','Heping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5125,'苏家屯区','Sujiatun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5126,'于洪区','Yuhong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5127,'皇姑区','Huanggu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5128,'康平县','Kangping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5129,'法库县','Faku',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5130,'大东区','Dadong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5131,'沈河区','Shenhe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5132,'铁西区','Tiexi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5133,'辽中区','Liaozhong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5134,'沈北新区','Shenbeixin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5135,'浑南区','Hunnan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5136,'抚顺市','Fushun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5137,'新宾满族自治县','Xinbinmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5138,'清原满族自治县','Qingyuanmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5139,'望花区','Wanghua',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5140,'新抚区','Xinfu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5141,'东洲区','Dongzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5142,'顺城区','Shuncheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5143,'抚顺县','Fushun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5144,'大连市','Dalian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5145,'瓦房店市','Wafangdian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5146,'庄河市','Zhuanghe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5147,'金州区','Jinzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5148,'普兰店区','Pulandian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5149,'长海县','Zhanghai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5150,'旅顺口区','Lu:shunkou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5151,'甘井子区','Ganjingzi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5152,'中山区','Zhongshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5153,'西岗区','Xigang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5154,'沙河口区','Shahekou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5155,'铁岭市','Tieling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5156,'开原市','Kaiyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5157,'清河区','Qinghe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5158,'调兵山市','Diaobingshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5159,'铁岭县','Tieling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5160,'银州区','Yinzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5161,'西丰县','Xifeng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5162,'昌图县','Changtu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5163,'阜新市','Fuxin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5164,'太平区','Taiping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5165,'清河门区','Qinghemen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5166,'阜新蒙古族自治县','Fuxinmengguzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5167,'新邱区','Xinqiu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5168,'彰武县','Zhangwu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5169,'细河区','Xihe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5170,'海州区','Haizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5171,'盘锦市','Panjin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5172,'大洼区','Dawa',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5173,'盘山县','Panshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5174,'兴隆台区','Xinglongtai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5175,'双台子区','Shuangtaizi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5176,'本溪市','Benxi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5177,'桓仁满族自治县','Huanrenmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5178,'溪湖区','Xihu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5179,'南芬区','Nanfen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5180,'平山区','Pingshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5181,'明山区','Mingshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5182,'本溪满族自治县','Benximanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5183,'辽阳市','Liaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5184,'白塔区','Baita',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5185,'文圣区','Wensheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5186,'辽阳县','Liaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5187,'宏伟区','Hongwei',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5188,'太子河区','Taizihe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5189,'灯塔市','Dengta',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5190,'弓长岭区','Gongzhangling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5191,'鞍山市','Anshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5192,'台安县','Taian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5193,'岫岩满族自治县','Xiuyanmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5194,'千山区','Qianshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5195,'立山区','Lishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5196,'铁东区','Tiedong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5197,'海城市','Haicheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5198,'朝阳市','Chaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5199,'双塔区','Shuangta',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5200,'北票市','Beipiao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5201,'朝阳县','Chaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5202,'龙城区','Longcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5203,'喀喇沁左翼蒙古族自治县','Kalaqinzuoyimengguzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5204,'建平县','Jianping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5205,'凌源市','Lingyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5206,'山东省','Shandong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5207,'青岛市','Qingdao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5208,'莱西市','Laixi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5209,'即墨区','Jimo',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5210,'崂山区','Laoshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5211,'城阳区','Chengyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5212,'黄岛区','Huangdao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5213,'市北区','Bei',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5214,'市南区','Nan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5215,'胶州市','Jiaozhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5216,'平度市','Pingdu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5217,'李沧区','Licang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5218,'聊城市','Liaocheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5219,'冠县','Guan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5220,'莘县','Xin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5221,'茌平区','Chiping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5222,'东昌府区','Dongchangfu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5223,'临清市','Linqing',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5224,'东阿县','Donga',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5225,'阳谷县','Yanggu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5226,'高唐县','Gaotang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5227,'烟台市','Yantai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5228,'蓬莱区','Penglai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5229,'莱州市','Laizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5230,'芝罘区','Zhifu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5231,'海阳市','Haiyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5232,'龙口市','Longkou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5233,'莱阳市','Laiyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5234,'招远市','Zhaoyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5235,'福山区','Fushan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5236,'莱山区','Laishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5237,'栖霞市','Qixia',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5238,'牟平区','Mouping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5239,'淄博市','Zibo',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5240,'高青县','Gaoqing',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5241,'张店区','Zhangdian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5242,'临淄区','Linzi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5243,'桓台县','Huantai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5244,'博山区','Boshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5245,'沂源县','Yiyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5246,'周村区','Zhoucun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5247,'淄川区','Zichuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5248,'临沂市','Linyi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5249,'沂水县','Yishui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5250,'蒙阴县','Mengyin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5251,'平邑县','Pingyi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5252,'兰山区','Lanshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5253,'郯城县','Tancheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5254,'莒南县','Junan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5255,'沂南县','Yinan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5256,'罗庄区','Luozhuang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5257,'临沭县','Linshu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5258,'河东区','Hedong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5259,'兰陵县','Lanling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5260,'费县','Fei',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5261,'威海市','Weihai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5262,'环翠区','Huancui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5263,'荣成市','Rongcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5264,'乳山市','Rushan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5265,'文登区','Wendeng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5266,'东营市','Dongying',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5267,'利津县','Lijin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5268,'广饶县','Guangrao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5269,'东营区','Dongying',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5270,'河口区','Hekou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5271,'垦利区','Kenli',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5272,'潍坊市','Weifang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5273,'潍城区','Weicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5274,'奎文区','Kuiwen',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5275,'临朐县','Linqu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5276,'诸城市','Zhucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5277,'寿光市','Shouguang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5278,'寒亭区','Hanting',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5279,'青州市','Qingzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5280,'昌乐县','Changle',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5281,'高密市','Gaomi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5282,'昌邑市','Changyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5283,'坊子区','Fangzi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5284,'安丘市','Anqiu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5285,'滨州市','Binzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5286,'滨城区','Bincheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5287,'沾化区','Zhanhua',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5288,'邹平市','Zouping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5289,'博兴县','Boxing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5290,'无棣县','Wudi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5291,'阳信县','Yangxin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5292,'惠民县','Huimin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5293,'日照市','Rizhao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5294,'五莲县','Wulian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5295,'莒县','Ju',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5296,'东港区','Donggang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5297,'岚山区','Lanshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5298,'枣庄市','Zaozhuang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5299,'山亭区','Shanting',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5300,'薛城区','Xuecheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5301,'市中区','Zhong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5302,'峄城区','Yicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5303,'滕州市','Tengzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5304,'台儿庄区','Taierzhuang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5305,'德州市','Dezhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5306,'乐陵市','Leling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5307,'德城区','Decheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5308,'宁津县','Ningjin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5309,'武城县','Wucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5310,'庆云县','Qingyun',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5311,'夏津县','Xiajin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5312,'齐河县','Qihe',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5313,'禹城市','Yucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5314,'临邑县','Linyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5315,'陵城区','Lingcheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5316,'平原县','Pingyuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5317,'菏泽市','Heze',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5318,'东明县','Dongming',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5319,'鄄城县','Juancheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5320,'牡丹区','Mudan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5321,'定陶区','Dingtao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5322,'郓城县','Yuncheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5323,'巨野县','Juye',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5324,'成武县','Chengwu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5325,'曹县','Cao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5326,'单县','Dan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5327,'济南市','Jinan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5328,'章丘区','Zhangqiu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5329,'历城区','Licheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5330,'济阳区','Jiyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5331,'平阴县','Pingyin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5332,'商河县','Shanghe',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5333,'槐荫区','Huaiyin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5334,'长清区','Zhangqing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5335,'莱芜区','Laiwu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5336,'钢城区','Gangcheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5337,'历下区','Lixia',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5338,'天桥区','Tianqiao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5339,'泰安市','Taian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5340,'新泰市','Xintai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5341,'东平县','Dongping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5342,'岱岳区','Daiyue',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5343,'泰山区','Taishan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5344,'肥城市','Feicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5345,'宁阳县','Ningyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5346,'济宁市','Jining',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5347,'汶上县','Wenshang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5348,'邹城市','Zoucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5349,'泗水县','Sishui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5350,'曲阜市','Qufu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5351,'任城区','Rencheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5352,'嘉祥县','Jiaxiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5353,'梁山县','Liangshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5354,'鱼台县','Yutai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5355,'金乡县','Jinxiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5356,'微山县','Weishan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5357,'兖州区','Yanzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5358,'陕西省','Shanxi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5359,'商洛市','Shangluo',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5360,'镇安县','Zhenan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5361,'丹凤县','Danfeng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5362,'商南县','Shangnan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5363,'洛南县','Luonan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5364,'山阳县','Shanyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5365,'商州区','Shangzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5366,'柞水县','Zuoshui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5367,'汉中市','Hanzhong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5368,'洋县','Yang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5369,'佛坪县','Foping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5370,'留坝县','Liuba',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5371,'西乡县','Xixiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5372,'略阳县','Lu:eyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5373,'宁强县','Ningqiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5374,'勉县','Mian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5375,'南郑区','Nanzheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5376,'城固县','Chenggu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5377,'汉台区','Hantai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5378,'镇巴县','Zhenba',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5379,'铜川市','Tongchuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5380,'王益区','Wangyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5381,'耀州区','Yaozhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5382,'印台区','Yintai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5383,'宜君县','Yijun',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5384,'榆林市','Yulin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5385,'榆阳区','Yuyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5386,'府谷县','Fugu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5387,'靖边县','Jingbian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5388,'绥德县','Suide',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5389,'子洲县','Zizhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5390,'神木市','Shenmu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5391,'米脂县','Mizhi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5392,'清涧县','Qingjian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5393,'吴堡县','Wubao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5394,'佳县','Jia',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5395,'横山区','Hengshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5396,'定边县','Dingbian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5397,'延安市','Yanan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5398,'子长市','Zizhang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5399,'宝塔区','Baota',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5400,'志丹县','Zhidan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5401,'安塞区','Ansai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5402,'延川县','Yanchuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5403,'富县','Fu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5404,'吴起县','Wuqi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5405,'洛川县','Luochuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5406,'甘泉县','Ganquan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5407,'宜川县','Yichuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5408,'延长县','Yanzhang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5409,'黄陵县','Huangling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5410,'黄龙县','Huanglong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5411,'宝鸡市','Baoji',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5412,'陇县','Long',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5413,'岐山县','Qishan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5414,'麟游县','Linyou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5415,'金台区','Jintai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5416,'千阳县','Qianyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5417,'凤县','Feng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5418,'渭滨区','Weibin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5419,'太白县','Taibai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5420,'陈仓区','Chencang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5421,'凤翔县','Fengxiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5422,'眉县','Mei',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5423,'扶风县','Fufeng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5424,'渭南市','Weinan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5425,'韩城市','Hancheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5426,'白水县','Baishui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5427,'大荔县','Dali',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5428,'潼关县','Tongguan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5429,'澄城县','Chengcheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5430,'临渭区','Linwei',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5431,'蒲城县','Pucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5432,'合阳县','Heyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5433,'富平县','Fuping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5434,'华阴市','Huayin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5435,'华州区','Huazhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5436,'西安市','Xian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5437,'高陵区','Gaoling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5438,'临潼区','Lintong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5439,'蓝田县','Lantian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5440,'鄠邑区','Huyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5441,'莲湖区','Lianhu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5442,'灞桥区','Baqiao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5443,'碑林区','Beilin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5444,'周至县','Zhouzhi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5445,'阎良区','Yanliang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5446,'未央区','Weiyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5447,'雁塔区','Yanta',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5448,'长安区','Zhangan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5449,'咸阳市','Xianyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5450,'旬邑县','Xunyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5451,'彬州市','Binzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5452,'渭城区','Weicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5453,'乾县','Qian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5454,'永寿县','Yongshou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5455,'武功县','Wugong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5456,'泾阳县','Jingyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5457,'长武县','Zhangwu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5458,'杨陵区','Yangling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5459,'三原县','Sanyuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5460,'兴平市','Xingping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5461,'礼泉县','Liquan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5462,'淳化县','Chunhua',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5463,'秦都区','Qindu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5464,'安康市','Ankang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5465,'宁陕县','Ningshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5466,'旬阳县','Xunyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5467,'汉滨区','Hanbin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5468,'平利县','Pingli',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5469,'石泉县','Shiquan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5470,'汉阴县','Hanyin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5471,'白河县','Baihe',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5472,'紫阳县','Ziyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5473,'岚皋县','Langao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5474,'镇坪县','Zhenping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5475,'上海市','Shanghai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5476,'上海城区','Shanghaicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5477,'浦东新区','Pudongxin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5478,'崇明区','Chongming',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5479,'奉贤区','Fengxian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5480,'金山区','Jinshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5481,'普陀区','Putuo',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5482,'黄浦区','Huangpu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5483,'嘉定区','Jiading',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5484,'杨浦区','Yangpu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5485,'松江区','Songjiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5486,'虹口区','Hongkou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5487,'长宁区','Zhangning',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5488,'静安区','Jingan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5489,'闵行区','Minxing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5490,'徐汇区','Xuhui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5491,'青浦区','Qingpu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5492,'贵州省','Guizhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5493,'遵义市','Zunyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5494,'湄潭县','Meitan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5495,'桐梓县','Tongzi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5496,'余庆县','Yuqing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5497,'绥阳县','Suiyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5498,'播州区','Bozhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5499,'仁怀市','Renhuai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5500,'赤水市','Chishui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5501,'习水县','Xishui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5502,'道真仡佬族苗族自治县','Daozhengelaozumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5503,'正安县','Zhengan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5504,'务川仡佬族苗族自治县','Wuchuangelaozumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5505,'凤冈县','Fenggang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5506,'汇川区','Huichuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5507,'红花岗区','Honghuagang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5508,'黔东南苗族侗族自治州','Qiandongnanmiaozudongzuzizhizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5509,'榕江县','Rongjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5510,'雷山县','Leishan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5511,'天柱县','Tianzhu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5512,'镇远县','Zhenyuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5513,'施秉县','Shibing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5514,'丹寨县','Danzhai',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5515,'凯里市','Kaili',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5516,'从江县','Congjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5517,'黎平县','Liping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5518,'锦屏县','Jinping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5519,'台江县','Taijiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5520,'黄平县','Huangping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5521,'麻江县','Majiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5522,'岑巩县','Cengong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5523,'三穗县','Sansui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5524,'剑河县','Jianhe',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5525,'安顺市','Anshun',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5526,'西秀区','Xixiu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5527,'紫云苗族布依族自治县','Ziyunmiaozubuyizuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5528,'关岭布依族苗族自治县','Guanlingbuyizumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5529,'镇宁布依族苗族自治县','Zhenningbuyizumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5530,'平坝区','Pingba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5531,'普定县','Puding',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5532,'铜仁市','Tongren',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5533,'石阡县','Shiqian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5534,'印江土家族苗族自治县','Yinjiangtujiazumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5535,'德江县','Dejiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5536,'碧江区','Bijiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5537,'万山区','Wanshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5538,'思南县','Sinan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5539,'玉屏侗族自治县','Yupingdongzuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5540,'江口县','Jiangkou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5541,'松桃苗族自治县','Songtaomiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5542,'沿河土家族自治县','Yanhetujiazuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5543,'黔西南布依族苗族自治州','Qianxinanbuyizumiaozuzizhizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5544,'安龙县','Anlong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5545,'册亨县','Ceheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5546,'兴义市','Xingyi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5547,'兴仁市','Xingren',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5548,'普安县','Puan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5549,'望谟县','Wangmo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5550,'晴隆县','Qinglong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5551,'贞丰县','Zhenfeng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5552,'黔南布依族苗族自治州','Qiannanbuyizumiaozuzizhizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5553,'长顺县','Zhangshun',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5554,'平塘县','Pingtang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5555,'惠水县','Huishui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5556,'独山县','Dushan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5557,'罗甸县','Luodian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5558,'荔波县','Libo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5559,'贵定县','Guiding',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5560,'龙里县','Longli',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5561,'三都水族自治县','Sandushuizuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5562,'福泉市','Fuquan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5563,'瓮安县','Wengan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5564,'都匀市','Duyun',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5565,'六盘水市','Liupanshui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5566,'钟山区','Zhongshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5567,'六枝特区','Liuzhite',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5568,'盘州市','Panzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5569,'水城区','Shuicheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5570,'毕节市','Bijie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5571,'七星关区','Qixingguan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5572,'大方县','Dafang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5573,'黔西县','Qianxi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5574,'金沙县','Jinsha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5575,'纳雍县','Nayong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5576,'织金县','Zhijin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5577,'赫章县','Hezhang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5578,'威宁彝族回族苗族自治县','Weiningyizuhuizumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5579,'贵阳市','Guiyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5580,'开阳县','Kaiyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5581,'息烽县','Xifeng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5582,'修文县','Xiuwen',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5583,'清镇市','Qingzhen',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5584,'南明区','Nanming',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5585,'乌当区','Wudang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5586,'花溪区','Huaxi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5587,'观山湖区','Guanshanhu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5588,'云岩区','Yunyan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5589,'重庆市','Zhongqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5590,'重庆郊县','Zhongqingjiao',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5591,'巫溪县','Wuxi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5592,'奉节县','Fengjie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5593,'彭水苗族土家族自治县','Pengshuimiaozutujiazuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5594,'城口县','Chengkou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5595,'云阳县','Yunyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5596,'秀山土家族苗族自治县','Xiushantujiazumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5597,'巫山县','Wushan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5598,'垫江县','Dianjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5599,'石柱土家族自治县','Shizhutujiazuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5600,'忠县','Zhong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5601,'丰都县','Fengdu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5602,'酉阳土家族苗族自治县','Youyangtujiazumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5603,'重庆城区','Zhongqingcheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5604,'合川区','Hechuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5605,'潼南区','Tongnan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5606,'长寿区','Zhangshou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5607,'璧山区','Bishan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5608,'铜梁区','Tongliang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5609,'大足区','Dazu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5610,'荣昌区','Rongchang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5611,'南川区','Nanchuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5612,'大渡口区','Dadukou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5613,'涪陵区','Fuling',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5614,'永川区','Yongchuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5615,'九龙坡区','Jiulongpo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5616,'渝中区','Yuzhong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5617,'万州区','Wanzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5618,'綦江区','Qijiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5619,'梁平区','Liangping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5620,'开州区','Kaizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5621,'江津区','Jiangjin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5622,'黔江区','Qianjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5623,'巴南区','Banan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5624,'南岸区','Nanan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5625,'北碚区','Beibei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5626,'武隆区','Wulong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5627,'沙坪坝区','Shapingba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5628,'渝北区','Yubei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5629,'江北区','Jiangbei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5630,'西藏自治区','Xizang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5631,'昌都市','Changdu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5632,'丁青县','Dingqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5633,'江达县','Jiangda',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5634,'卡若区','Karuo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5635,'类乌齐县','Leiwuqi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5636,'边坝县','Bianba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5637,'贡觉县','Gongjue',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5638,'洛隆县','Luolong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5639,'察雅县','Chaya',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5640,'八宿县','Basu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5641,'芒康县','Mangkang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5642,'左贡县','Zuogong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5643,'日喀则市','Rikaze',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5644,'仲巴县','Zhongba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5645,'南木林县','Nanmulin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5646,'昂仁县','Angren',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5647,'谢通门县','Xietongmen',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5648,'萨嘎县','Saga',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5649,'桑珠孜区','Sangzhuzi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5650,'拉孜县','Lazi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5651,'仁布县','Renbu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5652,'萨迦县','Sajia',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5653,'吉隆县','Jilong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5654,'康马县','Kangma',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5655,'定日县','Dingri',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5656,'江孜县','Jiangzi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5657,'白朗县','Bailang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5658,'聂拉木县','Nielamu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5659,'岗巴县','Gangba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5660,'定结县','Dingjie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5661,'亚东县','Yadong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5662,'拉萨市','Lasa',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5663,'当雄县','Dangxiong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5664,'墨竹工卡县','Mozhugongka',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5665,'林周县','Linzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5666,'达孜区','Dazi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5667,'堆龙德庆区','Duilongdeqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5668,'尼木县','Nimu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5669,'城关区','Chengguan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5670,'曲水县','Qushui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5671,'山南市','Shannan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5672,'桑日县','Sangri',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5673,'加查县','Jiacha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5674,'乃东区','Naidong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5675,'扎囊县','Zhanang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5676,'浪卡子县','Langkazi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5677,'贡嘎县','Gongga',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5678,'琼结县','Qiongjie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5679,'措美县','Cuomei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5680,'隆子县','Longzi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5681,'曲松县','Qusong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5682,'错那县','Cuonei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5683,'洛扎县','Luozha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5684,'林芝市','Linzhi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5685,'波密县','Bomi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5686,'工布江达县','Gongbujiangda',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5687,'巴宜区','Bayi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5688,'米林县','Milin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5689,'墨脱县','Motuo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5690,'察隅县','Chayu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5691,'朗县','Lang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5692,'那曲市','Neiqu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5693,'安多县','Anduo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5694,'聂荣县','Nierong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5695,'巴青县','Baqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5696,'班戈县','Bange',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5697,'申扎县','Shenzha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5698,'索县','Suo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5699,'比如县','Biru',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5700,'色尼区','Seni',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5701,'嘉黎县','Jiali',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5702,'尼玛县','Nima',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5703,'双湖县','Shuanghu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5704,'阿里地区','Alidi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5705,'改则县','Gaize',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5706,'札达县','Zhada',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5707,'措勤县','Cuoqin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5708,'普兰县','Pulan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5709,'日土县','Ritu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5710,'革吉县','Geji',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5711,'噶尔县','Gaer',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5712,'安徽省','Anhui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5713,'阜阳市','Fuyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5714,'颍东区','Yingdong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5715,'颍州区','Yingzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5716,'太和县','Taihe',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5717,'颍泉区','Yingquan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5718,'临泉县','Linquan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5719,'阜南县','Funan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5720,'颍上县','Yingshang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5721,'界首市','Jieshou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5722,'马鞍山市','Maanshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5723,'博望区','Bowang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5724,'花山区','Huashan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5725,'雨山区','Yushan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5726,'和县','He',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5727,'含山县','Hanshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5728,'当涂县','Dangtu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5729,'淮北市','Huaibei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5730,'杜集区','Duji',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5731,'烈山区','Lieshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5732,'相山区','Xiangshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5733,'濉溪县','Suixi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5734,'安庆市','Anqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5735,'岳西县','Yuexi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5736,'宜秀区','Yixiu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5737,'桐城市','Tongcheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5738,'潜山市','Qianshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5739,'迎江区','Yingjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5740,'太湖县','Taihu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5741,'望江县','Wangjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5742,'宿松县','Susong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5743,'大观区','Daguan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5744,'怀宁县','Huaining',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5745,'池州市','Chizhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5746,'青阳县','Qingyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5747,'东至县','Dongzhi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5748,'贵池区','Guichi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5749,'石台县','Shitai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5750,'铜陵市','Tongling',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5751,'枞阳县','Zongyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5752,'铜官区','Tongguan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5753,'义安区','Yian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5754,'黄山市','Huangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5755,'黄山区','Huangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5756,'黟县','Yi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5757,'祁门县','Qimen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5758,'歙县','She',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5759,'屯溪区','Tunxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5760,'休宁县','Xiuning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5761,'徽州区','Huizhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5762,'蚌埠市','Bangbu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5763,'淮上区','Huaishang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5764,'五河县','Wuhe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5765,'怀远县','Huaiyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5766,'禹会区','Yuhui',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5767,'蚌山区','Bangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5768,'龙子湖区','Longzihu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5769,'固镇县','Guzhen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5770,'滁州市','Chuzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5771,'明光市','Mingguang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5772,'天长市','Tianzhang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5773,'凤阳县','Fengyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5774,'定远县','Dingyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5775,'来安县','Laian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5776,'南谯区','Nanqiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5777,'琅琊区','Langya',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5778,'全椒县','Quanjiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5779,'宣城市','Xuancheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5780,'广德市','Guangde',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5781,'旌德县','Jingde',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5782,'绩溪县','Jixi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5783,'宣州区','Xuanzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5784,'郎溪县','Langxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5785,'宁国市','Ningguo',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5786,'泾县','Jing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5787,'芜湖市','Wuhu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5788,'繁昌区','Fanchang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5789,'无为市','Wuwei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5790,'镜湖区','Jinghu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5791,'湾沚区','Wanzhi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5792,'鸠江区','Jiujiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5793,'南陵县','Nanling',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5794,'弋江区','Yijiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5795,'宿州市','Suzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5796,'埇桥区','Yongqiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5797,'泗县','Si',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5798,'萧县','Xiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5799,'灵璧县','Lingbi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5800,'砀山县','Dangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5801,'淮南市','Huainan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5802,'凤台县','Fengtai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5803,'八公山区','Bagongshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5804,'潘集区','Panji',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5805,'大通区','Datong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5806,'田家庵区','Tianjiaan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5807,'谢家集区','Xiejiaji',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5808,'寿县','Shou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5809,'亳州市','Bozhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5810,'利辛县','Lixin',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5811,'谯城区','Qiaocheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5812,'涡阳县','Woyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5813,'蒙城县','Mengcheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5814,'合肥市','Hefei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5815,'庐江县','Lujiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5816,'包河区','Baohe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5817,'瑶海区','Yaohai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5818,'肥东县','Feidong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5819,'巢湖市','Chaohu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5820,'肥西县','Feixi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5821,'庐阳区','Luyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5822,'长丰县','Zhangfeng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5823,'蜀山区','Shushan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5824,'六安市','Liuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5825,'霍山县','Huoshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5826,'裕安区','Yuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5827,'金寨县','Jinzhai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5828,'金安区','Jinan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5829,'霍邱县','Huoqiu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5830,'叶集区','Yeji',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5831,'舒城县','Shucheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5832,'福建省','Fujian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5833,'宁德市','Ningde',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5834,'福安市','Fuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5835,'寿宁县','Shouning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5836,'周宁县','Zhouning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5837,'屏南县','Pingnan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5838,'福鼎市','Fuding',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5839,'古田县','Gutian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5840,'蕉城区','Jiaocheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5841,'霞浦县','Xiapu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5842,'柘荣县','Zherong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5843,'福州市','Fuzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5844,'罗源县','Luoyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5845,'闽清县','Minqing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5846,'连江县','Lianjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5847,'永泰县','Yongtai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5848,'长乐区','Zhangle',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5849,'福清市','Fuqing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5850,'平潭县','Pingtan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5851,'台江区','Taijiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5852,'马尾区','Mawei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5853,'仓山区','Cangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5854,'晋安区','Jinan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5855,'闽侯县','Minhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5856,'龙岩市','Longyan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5857,'漳平市','Zhangping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5858,'上杭县','Shanghang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5859,'武平县','Wuping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5860,'新罗区','Xinluo',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5861,'永定区','Yongding',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5862,'长汀县','Zhangting',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5863,'连城县','Liancheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5864,'莆田市','Putian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5865,'仙游县','Xianyou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5866,'荔城区','Licheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5867,'秀屿区','Xiuyu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5868,'城厢区','Chengxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5869,'涵江区','Hanjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5870,'泉州市','Quanzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5871,'德化县','Dehua',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5872,'洛江区','Luojiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5873,'泉港区','Quangang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5874,'永春县','Yongchun',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5875,'晋江市','Jinjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5876,'南安市','Nanan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5877,'惠安县','Huian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5878,'石狮市','Shishi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5879,'金门县','Jinmen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5880,'安溪县','Anxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5881,'丰泽区','Fengze',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5882,'鲤城区','Licheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5883,'厦门市','Shamen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5884,'思明区','Siming',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5885,'湖里区','Huli',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5886,'翔安区','Xiangan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5887,'海沧区','Haicang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5888,'集美区','Jimei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5889,'同安区','Tongan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5890,'三明市','Sanming',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5891,'泰宁县','Taining',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5892,'梅列区','Meilie',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5893,'宁化县','Ninghua',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5894,'清流县','Qingliu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5895,'大田县','Datian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5896,'永安市','Yongan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5897,'三元区','Sanyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5898,'建宁县','Jianning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5899,'尤溪县','Youxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5900,'沙县','Sha',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5901,'将乐县','Jiangle',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5902,'明溪县','Mingxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5903,'南平市','Nanping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5904,'浦城县','Pucheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5905,'松溪县','Songxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5906,'武夷山市','Wuyishan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5907,'光泽县','Guangze',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5908,'邵武市','Shaowu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5909,'建瓯市','Jianou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5910,'政和县','Zhenghe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5911,'顺昌县','Shunchang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5912,'建阳区','Jianyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5913,'延平区','Yanping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5914,'漳州市','Zhangzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5915,'华安县','Huaan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5916,'龙海市','Longhai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5917,'漳浦县','Zhangpu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5918,'南靖县','Nanjing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5919,'东山县','Dongshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5920,'龙文区','Longwen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5921,'芗城区','Xiangcheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5922,'长泰县','Zhangtai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5923,'平和县','Pinghe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5924,'诏安县','Zhaoan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5925,'云霄县','Yunxiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5926,'湖南省','Hunan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5927,'长沙市','Zhangsha',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5928,'岳麓区','Yuelu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5929,'开福区','Kaifu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5930,'浏阳市','Liuyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5931,'长沙县','Zhangsha',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5932,'宁乡市','Ningxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5933,'望城区','Wangcheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5934,'芙蓉区','Furong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5935,'雨花区','Yuhua',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5936,'天心区','Tianxin',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5937,'张家界市','Zhangjiajie',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5938,'武陵源区','Wulingyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5939,'慈利县','Cili',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5940,'桑植县','Sangzhi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5941,'衡阳市','Hengyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5942,'衡阳县','Hengyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5943,'衡山县','Hengshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5944,'衡东县','Hengdong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5945,'石鼓区','Shigu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5946,'祁东县','Qidong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5947,'南岳区','Nanyue',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5948,'珠晖区','Zhuhui',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5949,'雁峰区','Yanfeng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5950,'衡南县','Hengnan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5951,'耒阳市','Leiyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5952,'蒸湘区','Zhengxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5953,'常宁市','Changning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5954,'岳阳市','Yueyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5955,'华容县','Huarong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5956,'君山区','Junshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5957,'云溪区','Yunxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5958,'岳阳楼区','Yueyanglou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5959,'汨罗市','Miluo',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5960,'湘阴县','Xiangyin',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5961,'岳阳县','Yueyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5962,'临湘市','Linxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5963,'平江县','Pingjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5964,'湘西土家族苗族自治州','Xiangxitujiazumiaozuzizhizhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5965,'永顺县','Yongshun',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5966,'花垣县','Huayuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5967,'保靖县','Baojing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5968,'吉首市','Jishou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5969,'泸溪县','Luxi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5970,'古丈县','Guzhang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5971,'凤凰县','Fenghuang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5972,'龙山县','Longshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5973,'怀化市','Huaihua',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5974,'芷江侗族自治县','Zhijiangdongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5975,'洪江市','Hongjiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5976,'通道侗族自治县','Tongdaodongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5977,'辰溪县','Chenxi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5978,'沅陵县','Yuanling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5979,'会同县','Huitong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5980,'溆浦县','Xupu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5981,'靖州苗族侗族自治县','Jingzhoumiaozudongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5982,'麻阳苗族自治县','Mayangmiaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5983,'新晃侗族自治县','Xinhuangdongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5984,'鹤城区','Hecheng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5985,'中方县','Zhongfang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5986,'常德市','Changde',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5987,'临澧县','Linli',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5988,'石门县','Shimen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5989,'澧县','Li',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5990,'鼎城区','Dingcheng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5991,'津市市','Jin',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5992,'汉寿县','Hanshou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5993,'武陵区','Wuling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5994,'桃源县','Taoyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5995,'安乡县','Anxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5996,'湘潭市','Xiangtan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5997,'岳塘区','Yuetang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5998,'雨湖区','Yuhu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5999,'湘潭县','Xiangtan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6000,'韶山市','Shaoshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6001,'湘乡市','Xiangxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6002,'株洲市','Zhuzhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6003,'荷塘区','Hetang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6004,'攸县','You',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6005,'茶陵县','Chaling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6006,'炎陵县','Yanling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6007,'天元区','Tianyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6008,'芦淞区','Lusong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6009,'渌口区','Lukou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6010,'石峰区','Shifeng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6011,'醴陵市','Liling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6012,'邵阳市','Shaoyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6013,'隆回县','Longhui',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6014,'大祥区','Daxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6015,'邵阳县','Shaoyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6016,'绥宁县','Suining',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6017,'北塔区','Beita',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6018,'双清区','Shuangqing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6019,'城步苗族自治县','Chengbumiaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6020,'邵东市','Shaodong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6021,'新邵县','Xinshao',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6022,'新宁县','Xinning',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6023,'洞口县','Dongkou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6024,'武冈市','Wugang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6025,'郴州市','Chenzhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6026,'永兴县','Yongxing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6027,'安仁县','Anren',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6028,'汝城县','Rucheng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6029,'北湖区','Beihu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6030,'桂东县','Guidong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6031,'苏仙区','Suxian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6032,'资兴市','Zixing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6033,'临武县','Linwu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6034,'宜章县','Yizhang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6035,'嘉禾县','Jiahe',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6036,'桂阳县','Guiyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6037,'永州市','Yongzhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6038,'祁阳县','Qiyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6039,'东安县','Dongan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6040,'冷水滩区','Lengshuitan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6041,'零陵区','Lingling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6042,'新田县','Xintian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6043,'宁远县','Ningyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6044,'双牌县','Shuangpai',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6045,'蓝山县','Lanshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6046,'江永县','Jiangyong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6047,'道县','Dao',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6048,'江华瑶族自治县','Jianghuayaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6049,'益阳市','Yiyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6050,'桃江县','Taojiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6051,'资阳区','Ziyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6052,'赫山区','Heshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6053,'安化县','Anhua',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6054,'南县','Nan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6055,'沅江市','Yuanjiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6056,'娄底市','Loudi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6057,'冷水江市','Lengshuijiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6058,'新化县','Xinhua',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6059,'涟源市','Lianyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6060,'双峰县','Shuangfeng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6061,'娄星区','Louxing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6062,'海南省','Hainan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6063,'临高县','Lingao',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6064,'南宝镇','Nanbaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6065,'博厚镇','Bohouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6066,'调楼镇','Diaolouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6067,'和舍镇','Heshezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6068,'东英镇','Dongyingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6069,'临城镇','Linchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6070,'波莲镇','Bolianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6071,'多文镇','Duowenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6072,'国营红华农场','Guoyinghonghuanongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6073,'国营加来农场','Guoyingjialainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6074,'新盈镇','Xinyingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6075,'皇桐镇','Huangtongzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6076,'定安县','Dingan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6077,'新竹镇','Xinzhuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6078,'富文镇','Fuwenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6079,'国营中瑞农场','Guoyingzhongruinongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6080,'黄竹镇','Huangzhuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6081,'定城镇','Dingchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6082,'岭口镇','Lingkouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6083,'雷鸣镇','Leimingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6084,'国营南海农场','Guoyingnanhainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6085,'翰林镇','Hanlinzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6086,'国营金鸡岭农场','Guoyingjinjilingnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6087,'龙门镇','Longmenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6088,'龙河镇','Longhezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6089,'龙湖镇','Longhuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6090,'屯昌县','Tunchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6091,'国营中建农场','Guoyingzhongjiannongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6092,'屯城镇','Tunchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6093,'南吕镇','Nanlu:zhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6094,'新兴镇','Xinxingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6095,'国营中坤农场','Guoyingzhongkunnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6096,'西昌镇','Xichangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6097,'坡心镇','Poxinzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6098,'枫木镇','Fengmuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6099,'南坤镇','Nankunzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6100,'乌坡镇','Wupozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6101,'东方市','Dongfang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6102,'江边乡','Jiangbianxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6103,'东方华侨农场','Dongfanghuaqiaonongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6104,'天安乡','Tiananxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6105,'东河镇','Donghezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6106,'新龙镇','Xinlongzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6107,'国营广坝农场','Guoyingguangbanongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6108,'感城镇','Ganchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6109,'三家镇','Sanjiazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6110,'四更镇','Sigengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6111,'板桥镇','Banqiaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6112,'八所镇','Basuozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6113,'大田镇','Datianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6114,'琼中黎族苗族自治县','Qiongzhonglizumiaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6115,'湾岭镇','Wanlingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6116,'吊罗山乡','Diaoluoshanxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6117,'什运乡','Shenyunxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6118,'和平镇','Hepingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6119,'国营乌石农场','Guoyingwushinongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6120,'国营加钗农场','Guoyingjiachainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6121,'国营阳江农场','Guoyingyangjiangnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6122,'营根镇','Yinggenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6123,'上安乡','Shanganxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6124,'国营黎母山林业公司','Guoyinglimushanlinyegongsi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6125,'中平镇','Zhongpingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6126,'长征镇','Zhangzhengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6127,'国营长征农场','Guoyingzhangzhengnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6128,'红毛镇','Hongmaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6129,'黎母山镇','Limushanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6130,'琼海市','Qionghai',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6131,'嘉积镇','Jiajizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6132,'会山镇','Huishanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6133,'国营东升农场','Guoyingdongshengnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6134,'万泉镇','Wanquanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6135,'国营东红农场','Guoyingdonghongnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6136,'国营东太农场','Guoyingdongtainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6137,'彬村山华侨农场','Bincunshanhuaqiaonongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6138,'大路镇','Daluzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6139,'潭门镇','Tanmenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6140,'中原镇','Zhongyuanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6141,'阳江镇','Yangjiangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6142,'塔洋镇','Tayangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6143,'石壁镇','Shibizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6144,'龙江镇','Longjiangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6145,'长坡镇','Zhangpozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6146,'博鳌镇','Boaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6147,'昌江黎族自治县','Changjianglizuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6148,'国营霸王岭林场','Guoyingbawanglinglinchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6149,'乌烈镇','Wuliezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6150,'海南矿业联合有限公司','Hainankuangyelianheyouxiangongsi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6151,'十月田镇','Shiyuetianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6152,'七叉镇','Qichazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6153,'叉河镇','Chahezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6154,'石碌镇','Shiliuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6155,'海尾镇','Haiweizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6156,'昌化镇','Changhuazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6157,'国营红林农场','Guoyinghonglinnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6158,'王下乡','Wangxiaxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6159,'陵水黎族自治县','Lingshuilizuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6160,'黎安镇','Lianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6161,'国营吊罗山林业公司','Guoyingdiaoluoshanlinyegongsi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6162,'新村镇','Xincunzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6163,'国营南平农场','Guoyingnanpingnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6164,'文罗镇','Wenluozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6165,'椰林镇','Yelinzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6166,'本号镇','Benhaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6167,'群英乡','Qunyingxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6168,'提蒙乡','Timengxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6169,'光坡镇','Guangpozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6170,'三才镇','Sancaizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6171,'隆广镇','Longguangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6172,'英州镇','Yingzhouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6173,'国营岭门农场','Guoyinglingmennongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6174,'万宁市','Wanning',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6175,'国营东兴农场','Guoyingdongxingnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6176,'万城镇','Wanchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6177,'后安镇','Houanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6178,'礼纪镇','Lijizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6179,'山根镇','Shangenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6180,'国营东和农场','Guoyingdonghenongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6181,'大茂镇','Damaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6182,'龙滚镇','Longgunzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6183,'和乐镇','Helezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6184,'兴隆华侨农场','Xinglonghuaqiaonongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6185,'三更罗镇','Sangengluozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6186,'长丰镇','Zhangfengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6187,'地方国营六连林场','Difangguoyingliulianlinchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6188,'南桥镇','Nanqiaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6189,'北大镇','Beidazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6190,'东澳镇','Dongaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6191,'国营新中农场','Guoyingxinzhongnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6192,'乐东黎族自治县','Ledonglizuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6193,'万冲镇','Wanchongzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6194,'国营山荣农场','Guoyingshanrongnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6195,'利国镇','Liguozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6196,'莺歌海镇','Yinggehaizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6197,'国营保国农场','Guoyingbaoguonongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6198,'抱由镇','Baoyouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6199,'国营乐光农场','Guoyingleguangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6200,'九所镇','Jiusuozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6201,'大安镇','Daanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6202,'国营莺歌海盐场','Guoyingyinggehaiyanchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6203,'佛罗镇','Foluozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6204,'国营尖峰岭林业公司','Guoyingjianfenglinglinyegongsi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6205,'黄流镇','Huangliuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6206,'志仲镇','Zhizhongzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6207,'千家镇','Qianjiazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6208,'尖峰镇','Jianfengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6209,'三沙市','Sansha',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6210,'西沙区','Xisha',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6211,'白沙黎族自治县','Baishalizuzizhixian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6212,'七坊镇','Qifangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6213,'荣邦乡','Rongbangxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6214,'金波乡','Jinboxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6215,'南开乡','Nankaixiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6216,'青松乡','Qingsongxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6217,'邦溪镇','Bangxizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6218,'国营龙江农场','Guoyinglongjiangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6219,'细水乡','Xishuixiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6220,'元门乡','Yuanmenxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6221,'打安镇','Daanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6222,'阜龙乡','Fulongxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6223,'牙叉镇','Yachazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6224,'国营白沙农场','Guoyingbaishanongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6225,'国营邦溪农场','Guoyingbangxinongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6226,'文昌市','Wenchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6227,'国营罗豆农场','Guoyingluodounongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6228,'文教镇','Wenjiaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6229,'东阁镇','Donggezhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6230,'国营东路农场','Guoyingdonglunongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6231,'会文镇','Huiwenzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6232,'铺前镇','Puqianzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6233,'锦山镇','Jinshanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6234,'翁田镇','Wengtianzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6235,'冯坡镇','Fengpozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6236,'龙楼镇','Longlouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6237,'国营南阳农场','Guoyingnanyangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6238,'东郊镇','Dongjiaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6239,'昌洒镇','Changsazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6240,'公坡镇','Gongpozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6241,'重兴镇','Zhongxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6242,'东路镇','Dongluzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6243,'文城镇','Wenchengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6244,'抱罗镇','Baoluozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6245,'潭牛镇','Tanniuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6246,'蓬莱镇','Penglaizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6247,'澄迈县','Chengmai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6248,'福山镇','Fushanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6249,'永发镇','Yongfazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6250,'金江镇','Jinjiangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6251,'文儒镇','Wenruzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6252,'中兴镇','Zhongxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6253,'老城镇','Laochengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6254,'国营红岗农场','Guoyinghonggangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6255,'瑞溪镇','Ruixizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6256,'国营红光农场','Guoyinghongguangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6257,'加乐镇','Jialezhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6258,'国营和岭农场','Guoyinghelingnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6259,'国营金安农场','Guoyingjinannongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6260,'大丰镇','Dafengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6261,'国营西达农场','Guoyingxidanongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6262,'仁兴镇','Renxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6263,'国营昆仑农场','Guoyingkunlunnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6264,'儋州市','Danzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6265,'洋浦经济开发区','Yangpujingjikaifa',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6266,'兰洋镇','Lanyangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6267,'和庆镇','Heqingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6268,'光村镇','Guangcunzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6269,'华南热作学院','Huananrezuoxueyuan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6270,'海头镇','Haitouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6271,'东成镇','Dongchengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6272,'国营蓝洋农场','Guoyinglanyangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6273,'王五镇','Wangwuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6274,'新州镇','Xinzhouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6275,'木棠镇','Mutangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6276,'排浦镇','Paipuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6277,'中和镇','Zhonghezhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6278,'雅星镇','Yaxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6279,'南丰镇','Nanfengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6280,'国营八一农场','Guoyingbayinongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6281,'国营西联农场','Guoyingxiliannongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6282,'国营西培农场','Guoyingxipeinongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6283,'那大镇','Neidazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6284,'白马井镇','Baimajingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6285,'大成镇','Dachengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6286,'峨蔓镇','Emanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6287,'三都镇','Sanduzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6288,'三亚市','Sanya',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6289,'崖州区','Yazhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6290,'吉阳区','Jiyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6291,'天涯区','Tianya',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6292,'海棠区','Haitang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6293,'海口市','Haikou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6294,'美兰区','Meilan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6295,'琼山区','Qiongshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6296,'秀英区','Xiuying',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6297,'保亭黎族苗族自治县','Baotinglizumiaozuzizhixian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6298,'海南保亭热带作物研究所','Hainanbaotingredaizuowuyanjiusuo',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6299,'国营金江农场','Guoyingjinjiangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6300,'新政镇','Xinzhengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6301,'加茂镇','Jiamaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6302,'南林乡','Nanlinxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6303,'国营新星农场','Guoyingxinxingnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6304,'保城镇','Baochengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6305,'国营三道农场','Guoyingsandaonongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6306,'毛感乡','Maoganxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6307,'什玲镇','Shenlingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6308,'六弓乡','Liugongxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6309,'响水镇','Xiangshuizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6310,'三道镇','Sandaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6311,'五指山市','Wuzhishan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6312,'南圣镇','Nanshengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6313,'毛阳镇','Maoyangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6314,'通什镇','Tongshenzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6315,'水满乡','Shuimanxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6316,'番阳镇','Fanyangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6317,'畅好乡','Changhaoxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6318,'毛道乡','Maodaoxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6319,'国营畅好农场','Guoyingchanghaonongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6320,'江苏省','Jiangsu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6321,'连云港市','Lianyungang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6322,'灌云县','Guanyun',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6323,'连云区','Lianyun',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6324,'东海县','Donghai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6325,'赣榆区','Ganyu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6326,'灌南县','Guannan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6327,'南京市','Nanjing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6328,'雨花台区','Yuhuatai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6329,'溧水区','Lishui',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6330,'江宁区','Jiangning',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6331,'浦口区','Pukou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6332,'高淳区','Gaochun',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6333,'六合区','Liuhe',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6334,'建邺区','Jianye',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6335,'秦淮区','Qinhuai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6336,'玄武区','Xuanwu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6337,'栖霞区','Qixia',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6338,'南通市','Nantong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6339,'海门区','Haimen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6340,'启东市','Qidong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6341,'海安市','Haian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6342,'如东县','Rudong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6343,'通州区','Tongzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6344,'崇川区','Chongchuan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6345,'如皋市','Rugao',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6346,'淮安市','Huaian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6347,'洪泽区','Hongze',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6348,'金湖县','Jinhu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6349,'淮阴区','Huaiyin',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6350,'盱眙县','Xuyi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6351,'涟水县','Lianshui',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6352,'清江浦区','Qingjiangpu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6353,'淮安区','Huaian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6354,'扬州市','Yangzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6355,'广陵区','Guangling',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6356,'邗江区','Hanjiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6357,'仪征市','Yizheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6358,'高邮市','Gaoyou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6359,'宝应县','Baoying',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6360,'江都区','Jiangdu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6361,'泰州市','Taizhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6362,'兴化市','Xinghua',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6363,'姜堰区','Jiangyan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6364,'海陵区','Hailing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6365,'高港区','Gaogang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6366,'靖江市','Jingjiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6367,'泰兴市','Taixing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6368,'盐城市','Yancheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6369,'滨海县','Binhai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6370,'建湖县','Jianhu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6371,'射阳县','Sheyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6372,'阜宁县','Funing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6373,'盐都区','Yandu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6374,'亭湖区','Tinghu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6375,'东台市','Dongtai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6376,'大丰区','Dafeng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6377,'响水县','Xiangshui',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6378,'徐州市','Xuzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6379,'新沂市','Xinyi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6380,'泉山区','Quanshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6381,'铜山区','Tongshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6382,'睢宁县','Suining',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6383,'邳州市','Pizhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6384,'沛县','Pei',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6385,'丰县','Feng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6386,'贾汪区','Jiawang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6387,'云龙区','Yunlong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6388,'宿迁市','Suqian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6389,'泗洪县','Sihong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6390,'泗阳县','Siyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6391,'宿城区','Sucheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6392,'宿豫区','Suyu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6393,'沭阳县','Shuyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6394,'苏州市','Suzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6395,'太仓市','Taicang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6396,'姑苏区','Gusu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6397,'吴江区','Wujiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6398,'相城区','Xiangcheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6399,'苏州工业园区','Suzhougongyeyuan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6400,'常熟市','Changshu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6401,'昆山市','Kunshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6402,'虎丘区','Huqiu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6403,'吴中区','Wuzhong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6404,'张家港市','Zhangjiagang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6405,'无锡市','Wuxi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6406,'梁溪区','Liangxi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6407,'新吴区','Xinwu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6408,'滨湖区','Binhu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6409,'锡山区','Xishan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6410,'宜兴市','Yixing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6411,'惠山区','Huishan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6412,'江阴市','Jiangyin',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6413,'镇江市','Zhenjiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6414,'扬中市','Yangzhong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6415,'润州区','Runzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6416,'京口区','Jingkou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6417,'丹徒区','Dantu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6418,'丹阳市','Danyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6419,'句容市','Jurong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6420,'常州市','Changzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6421,'溧阳市','Liyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6422,'新北区','Xinbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6423,'武进区','Wujin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6424,'天宁区','Tianning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6425,'钟楼区','Zhonglou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6426,'金坛区','Jintan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6427,'青海省','Qinghai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6428,'海南藏族自治州','Hainanzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6429,'共和县','Gonghe',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6430,'贵德县','Guide',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6431,'同德县','Tongde',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6432,'贵南县','Guinan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6433,'兴海县','Xinghai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6434,'海东市','Haidong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6435,'乐都区','Ledu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6436,'民和回族土族自治县','Minhehuizutuzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6437,'化隆回族自治县','Hualonghuizuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6438,'循化撒拉族自治县','Xunhuasalazuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6439,'平安区','Pingan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6440,'互助土族自治县','Huzhutuzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6441,'海西蒙古族藏族自治州','Haiximengguzuzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6442,'格尔木市','Geermu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6443,'都兰县','Dulan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6444,'德令哈市','Delingha',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6445,'天峻县','Tianjun',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6446,'乌兰县','Wulan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6447,'海西蒙古族藏族自治州直辖','Haiximengguzuzangzuzizhizhouzhixia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6448,'茫崖市','Mangya',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6449,'玉树藏族自治州','Yushuzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6450,'曲麻莱县','Qumalai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6451,'治多县','Zhiduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6452,'称多县','Chengduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6453,'杂多县','Zaduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6454,'玉树市','Yushu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6455,'囊谦县','Nangqian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6456,'果洛藏族自治州','Guoluozangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6457,'玛沁县','Maqin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6458,'甘德县','Gande',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6459,'班玛县','Banma',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6460,'久治县','Jiuzhi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6461,'达日县','Dari',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6462,'玛多县','Maduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6463,'黄南藏族自治州','Huangnanzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6464,'尖扎县','Jianzha',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6465,'同仁市','Tongren',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6466,'泽库县','Zeku',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6467,'河南蒙古族自治县','Henanmengguzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6468,'西宁市','Xining',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6469,'湟源县','Huangyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6470,'大通回族土族自治县','Datonghuizutuzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6471,'城东区','Chengdong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6472,'城中区','Chengzhong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6473,'城西区','Chengxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6474,'湟中区','Huangzhong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6475,'城北区','Chengbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6476,'海北藏族自治州','Haibeizangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6477,'海晏县','Haiyan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6478,'门源回族自治县','Menyuanhuizuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6479,'刚察县','Gangcha',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6480,'祁连县','Qilian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6481,'广西壮族自治区','Guangxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6482,'柳州市','Liuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6483,'三江侗族自治县','Sanjiangdongzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6484,'融水苗族自治县','Rongshuimiaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6485,'融安县','Rongan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6486,'鹿寨县','Luzhai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6487,'柳城县','Liucheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6488,'柳北区','Liubei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6489,'鱼峰区','Yufeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6490,'柳江区','Liujiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6491,'柳南区','Liunan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6492,'钦州市','Qinzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6493,'钦南区','Qinnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6494,'钦北区','Qinbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6495,'灵山县','Lingshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6496,'浦北县','Pubei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6497,'北海市','Beihai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6498,'银海区','Yinhai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6499,'海城区','Haicheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6500,'铁山港区','Tieshangang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6501,'合浦县','Hepu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6502,'南宁市','Nanning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6503,'马山县','Mashan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6504,'上林县','Shanglin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6505,'武鸣区','Wuming',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6506,'宾阳县','Binyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6507,'横县','Heng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6508,'邕宁区','Yongning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6509,'江南区','Jiangnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6510,'良庆区','Liangqing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6511,'西乡塘区','Xixiangtang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6512,'青秀区','Qingxiu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6513,'兴宁区','Xingning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6514,'隆安县','Longan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6515,'百色市','Baise',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6516,'西林县','Xilin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6517,'隆林各族自治县','Longlingezuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6518,'乐业县','Leye',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6519,'凌云县','Lingyun',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6520,'右江区','Youjiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6521,'靖西市','Jingxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6522,'平果市','Pingguo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6523,'那坡县','Neipo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6524,'田林县','Tianlin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6525,'德保县','Debao',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6526,'田东县','Tiandong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6527,'田阳区','Tianyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6528,'梧州市','Wuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6529,'蒙山县','Mengshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6530,'长洲区','Zhangzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6531,'龙圩区','Longwei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6532,'岑溪市','Cenxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6533,'万秀区','Wanxiu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6534,'苍梧县','Cangwu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6535,'藤县','Teng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6536,'桂林市','Guilin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6537,'兴安县','Xingan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6538,'七星区','Qixing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6539,'临桂区','Lingui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6540,'雁山区','Yanshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6541,'永福县','Yongfu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6542,'阳朔县','Yangshuo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6543,'荔浦市','Lipu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6544,'龙胜各族自治县','Longshenggezuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6545,'秀峰区','Xiufeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6546,'灌阳县','Guanyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6547,'全州县','Quanzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6548,'象山区','Xiangshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6549,'叠彩区','Diecai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6550,'灵川县','Lingchuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6551,'资源县','Ziyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6552,'恭城瑶族自治县','Gongchengyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6553,'平乐县','Pingle',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6554,'防城港市','Fangchenggang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6555,'防城区','Fangcheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6556,'港口区','Gangkou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6557,'东兴市','Dongxing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6558,'上思县','Shangsi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6559,'崇左市','Chongzuo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6560,'江州区','Jiangzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6561,'天等县','Tiandeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6562,'大新县','Daxin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6563,'扶绥县','Fusui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6564,'龙州县','Longzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6565,'凭祥市','Pingxiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6566,'宁明县','Ningming',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6567,'贺州市','Hezhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6568,'富川瑶族自治县','Fuchuanyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6569,'昭平县','Zhaoping',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6570,'钟山县','Zhongshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6571,'平桂区','Pinggui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6572,'八步区','Babu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6573,'玉林市','Yulin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6574,'福绵区','Fumian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6575,'兴业县','Xingye',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6576,'博白县','Bobai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6577,'陆川县','Luchuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6578,'玉州区','Yuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6579,'北流市','Beiliu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6580,'容县','Rong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6581,'来宾市','Laibin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6582,'金秀瑶族自治县','Jinxiuyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6583,'忻城县','Xincheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6584,'兴宾区','Xingbin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6585,'象州县','Xiangzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6586,'合山市','Heshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6587,'武宣县','Wuxuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6588,'河池市','Hechi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6589,'天峨县','Tiane',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6590,'南丹县','Nandan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6591,'环江毛南族自治县','Huanjiangmaonanzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6592,'罗城仫佬族自治县','Luochengmulaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6593,'金城江区','Jinchengjiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6594,'凤山县','Fengshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6595,'宜州区','Yizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6596,'大化瑶族自治县','Dahuayaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6597,'都安瑶族自治县','Duanyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6598,'东兰县','Donglan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6599,'巴马瑶族自治县','Bamayaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6600,'贵港市','Guigang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6601,'港北区','Gangbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6602,'港南区','Gangnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6603,'覃塘区','Tantang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6604,'平南县','Pingnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6605,'桂平市','Guiping',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6606,'宁夏回族自治区','Ningxia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6607,'固原市','Guyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6608,'彭阳县','Pengyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6609,'泾源县','Jingyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6610,'隆德县','Longde',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6611,'原州区','Yuanzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6612,'西吉县','Xiji',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6613,'石嘴山市','Shizuishan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6614,'惠农区','Huinong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6615,'平罗县','Pingluo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6616,'大武口区','Dawukou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6617,'中卫市','Zhongwei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6618,'海原县','Haiyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6619,'中宁县','Zhongning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6620,'沙坡头区','Shapotou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6621,'吴忠市','Wuzhong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6622,'青铜峡市','Qingtongxia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6623,'盐池县','Yanchi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6624,'同心县','Tongxin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6625,'红寺堡区','Hongsibao',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6626,'利通区','Litong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6627,'银川市','Yinchuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6628,'贺兰县','Helan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6629,'西夏区','Xixia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6630,'金凤区','Jinfeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6631,'永宁县','Yongning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6632,'兴庆区','Xingqing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6633,'灵武市','Lingwu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6634,'江西省','Jiangxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6635,'赣州市','Ganzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6636,'于都县','Yudu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6637,'瑞金市','Ruijin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6638,'宁都县','Ningdu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6639,'石城县','Shicheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6640,'会昌县','Huichang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6641,'兴国县','Xingguo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6642,'上犹县','Shangyou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6643,'信丰县','Xinfeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6644,'全南县','Quannan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6645,'安远县','Anyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6646,'崇义县','Chongyi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6647,'龙南市','Longnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6648,'大余县','Dayu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6649,'寻乌县','Xunwu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6650,'定南县','Dingnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6651,'章贡区','Zhanggong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6652,'赣县区','Gan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6653,'南康区','Nankang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6654,'九江市','Jiujiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6655,'武宁县','Wuning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6656,'彭泽县','Pengze',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6657,'湖口县','Hukou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6658,'都昌县','Duchang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6659,'柴桑区','Chaisang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6660,'修水县','Xiushui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6661,'庐山市','Lushan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6662,'濂溪区','Lianxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6663,'永修县','Yongxiu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6664,'共青城市','Gongqingcheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6665,'瑞昌市','Ruichang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6666,'德安县','Dean',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6667,'浔阳区','Xunyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6668,'抚州市','Fuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6669,'东乡区','Dongxiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6670,'金溪县','Jinxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6671,'乐安县','Lean',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6672,'资溪县','Zixi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6673,'南城县','Nancheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6674,'临川区','Linchuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6675,'崇仁县','Chongren',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6676,'南丰县','Nanfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6677,'宜黄县','Yihuang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6678,'黎川县','Lichuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6679,'广昌县','Guangchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6680,'景德镇市','Jingdezhen',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6681,'珠山区','Zhushan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6682,'浮梁县','Fuliang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6683,'昌江区','Changjiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6684,'乐平市','Leping',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6685,'萍乡市','Pingxiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6686,'安源区','Anyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6687,'上栗县','Shangli',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6688,'莲花县','Lianhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6689,'芦溪县','Luxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6690,'湘东区','Xiangdong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6691,'宜春市','Yichun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6692,'奉新县','Fengxin',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6693,'高安市','Gaoan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6694,'上高县','Shanggao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6695,'宜丰县','Yifeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6696,'丰城市','Fengcheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6697,'铜鼓县','Tonggu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6698,'万载县','Wanzai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6699,'袁州区','Yuanzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6700,'樟树市','Zhangshu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6701,'靖安县','Jingan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6702,'南昌市','Nanchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6703,'进贤县','Jinxian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6704,'青云谱区','Qingyunpu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6705,'南昌县','Nanchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6706,'西湖区','Xihu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6707,'青山湖区','Qingshanhu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6708,'东湖区','Donghu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6709,'红谷滩区','Honggutan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6710,'安义县','Anyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6711,'新建区','Xinjian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6712,'新余市','Xinyu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6713,'分宜县','Fenyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6714,'渝水区','Yushui',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6715,'吉安市','Jian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6716,'吉安县','Jian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6717,'吉水县','Jishui',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6718,'青原区','Qingyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6719,'永新县','Yongxin',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6720,'永丰县','Yongfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6721,'吉州区','Jizhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6722,'万安县','Wanan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6723,'遂川县','Suichuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6724,'新干县','Xingan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6725,'安福县','Anfu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6726,'峡江县','Xiajiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6727,'泰和县','Taihe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6728,'井冈山市','Jinggangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6729,'上饶市','Shangrao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6730,'德兴市','Dexing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6731,'婺源县','Wuyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6732,'弋阳县','Yiyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6733,'横峰县','Hengfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6734,'广丰区','Guangfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6735,'铅山县','Qianshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6736,'玉山县','Yushan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6737,'信州区','Xinzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6738,'广信区','Guangxin',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6739,'余干县','Yugan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6740,'鄱阳县','Poyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6741,'万年县','Wannian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6742,'鹰潭市','Yingtan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6743,'贵溪市','Guixi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6744,'月湖区','Yuehu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6745,'余江区','Yujiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6746,'浙江省','Zhejiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6747,'台州市','Taizhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6748,'临海市','Linhai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6749,'椒江区','Jiaojiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6750,'温岭市','Wenling',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6751,'玉环市','Yuhuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6752,'路桥区','Luqiao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6753,'天台县','Tiantai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6754,'三门县','Sanmen',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6755,'仙居县','Xianju',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6756,'黄岩区','Huangyan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6757,'嘉兴市','Jiaxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6758,'平湖市','Pinghu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6759,'南湖区','Nanhu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6760,'海盐县','Haiyan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6761,'嘉善县','Jiashan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6762,'秀洲区','Xiuzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6763,'海宁市','Haining',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6764,'桐乡市','Tongxiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6765,'宁波市','Ningbo',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6766,'北仑区','Beilun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6767,'象山县','Xiangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6768,'镇海区','Zhenhai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6769,'宁海县','Ninghai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6770,'鄞州区','Yinzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6771,'海曙区','Haishu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6772,'余姚市','Yuyao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6773,'慈溪市','Cixi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6774,'奉化区','Fenghua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6775,'舟山市','Zhoushan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6776,'嵊泗县','Shengsi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6777,'岱山县','Daishan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6778,'定海区','Dinghai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6779,'温州市','Wenzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6780,'洞头区','Dongtou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6781,'苍南县','Cangnan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6782,'平阳县','Pingyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6783,'龙港市','Longgang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6784,'瑞安市','Ruian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6785,'泰顺县','Taishun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6786,'文成县','Wencheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6787,'鹿城区','Lucheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6788,'龙湾区','Longwan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6789,'瓯海区','Ouhai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6790,'乐清市','Leqing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6791,'永嘉县','Yongjia',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6792,'丽水市','Lishui',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6793,'莲都区','Liandu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6794,'云和县','Yunhe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6795,'龙泉市','Longquan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6796,'松阳县','Songyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6797,'遂昌县','Suichang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6798,'景宁畲族自治县','Jingningshezuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6799,'缙云县','Jinyun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6800,'青田县','Qingtian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6801,'庆元县','Qingyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6802,'衢州市','Quzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6803,'开化县','Kaihua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6804,'柯城区','Kecheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6805,'常山县','Changshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6806,'江山市','Jiangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6807,'龙游县','Longyou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6808,'衢江区','Qujiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6809,'金华市','Jinhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6810,'浦江县','Pujiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6811,'永康市','Yongkang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6812,'武义县','Wuyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6813,'兰溪市','Lanxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6814,'东阳市','Dongyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6815,'磐安县','Panan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6816,'金东区','Jindong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6817,'义乌市','Yiwu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6818,'婺城区','Wucheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6819,'湖州市','Huzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6820,'长兴县','Zhangxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6821,'吴兴区','Wuxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6822,'南浔区','Nanxun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6823,'安吉县','Anji',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6824,'德清县','Deqing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6825,'杭州市','Hangzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6826,'上城区','Shangcheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6827,'富阳区','Fuyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6828,'桐庐县','Tonglu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6829,'建德市','Jiande',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6830,'淳安县','Chunan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6831,'滨江区','Binjiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6832,'萧山区','Xiaoshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6833,'拱墅区','Gongshu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6834,'余杭区','Yuhang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6835,'下城区','Xiacheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6836,'江干区','Jianggan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6837,'临安区','Linan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6838,'绍兴市','Shaoxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6839,'嵊州市','Shengzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6840,'越城区','Yuecheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6841,'柯桥区','Keqiao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6842,'诸暨市','Zhuji',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6843,'上虞区','Shangyu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6844,'新昌县','Xinchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6845,'河北省','Hebei',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6846,'唐山市','Tangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6847,'迁西县','Qianxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6848,'迁安市','Qianan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6849,'遵化市','Zunhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6850,'滦州市','Luanzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6851,'滦南县','Luannan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6852,'曹妃甸区','Caofeidian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6853,'乐亭县','Leting',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6854,'玉田县','Yutian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6855,'路南区','Lunan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6856,'路北区','Lubei',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6857,'丰南区','Fengnan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6858,'丰润区','Fengrun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6859,'开平区','Kaiping',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6860,'古冶区','Guye',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6861,'廊坊市','Langfang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6862,'大厂回族自治县','Dachanghuizuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6863,'大城县','Dacheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6864,'永清县','Yongqing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6865,'固安县','Guan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6866,'香河县','Xianghe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6867,'文安县','Wenan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6868,'安次区','Anci',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6869,'三河市','Sanhe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6870,'广阳区','Guangyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6871,'霸州市','Bazhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6872,'秦皇岛市','Qinhuangdao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6873,'青龙满族自治县','Qinglongmanzuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6874,'卢龙县','Lulong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6875,'山海关区','Shanhaiguan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6876,'海港区','Haigang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6877,'北戴河区','Beidaihe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6878,'抚宁区','Funing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6879,'昌黎县','Changli',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6880,'沧州市','Cangzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6881,'运河区','Yunhe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6882,'任丘市','Renqiu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6883,'献县','Xian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6884,'东光县','Dongguang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6885,'海兴县','Haixing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6886,'南皮县','Nanpi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6887,'吴桥县','Wuqiao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6888,'黄骅市','Huanghua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6889,'青县','Qing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6890,'泊头市','Botou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6891,'肃宁县','Suning',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6892,'河间市','Hejian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6893,'盐山县','Yanshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6894,'孟村回族自治县','Mengcunhuizuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6895,'沧县','Cang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6896,'张家口市','Zhangjiakou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6897,'沽源县','Guyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6898,'张北县','Zhangbei',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6899,'赤城县','Chicheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6900,'尚义县','Shangyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6901,'崇礼区','Chongli',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6902,'康保县','Kangbao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6903,'万全区','Wanquan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6904,'下花园区','Xiahuayuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6905,'涿鹿县','Zhuolu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6906,'怀来县','Huailai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6907,'桥西区','Qiaoxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6908,'桥东区','Qiaodong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6909,'宣化区','Xuanhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6910,'怀安县','Huaian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6911,'阳原县','Yangyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6912,'蔚县','Yu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6913,'邯郸市','Handan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6914,'武安市','Wuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6915,'峰峰矿区','Fengfengkuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6916,'魏县','Wei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6917,'肥乡区','Feixiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6918,'涉县','She',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6919,'临漳县','Linzhang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6920,'曲周县','Quzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6921,'鸡泽县','Jize',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6922,'复兴区','Fuxing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6923,'磁县','Ci',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6924,'丛台区','Congtai',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6925,'永年区','Yongnian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6926,'邯山区','Hanshan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6927,'成安县','Chengan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6928,'馆陶县','Guantao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6929,'邱县','Qiu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6930,'广平县','Guangping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6931,'大名县','Daming',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6932,'石家庄市','Shijiazhuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6933,'平山县','Pingshan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6934,'正定县','Zhengding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6935,'灵寿县','Lingshou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6936,'藁城区','Gaocheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6937,'裕华区','Yuhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6938,'无极县','Wuji',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6939,'鹿泉区','Luquan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6940,'元氏县','Yuanshi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6941,'赞皇县','Zanhuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6942,'晋州市','Jinzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6943,'高邑县','Gaoyi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6944,'新乐市','Xinle',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6945,'井陉矿区','Jingxingkuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6946,'辛集市','Xinji',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6947,'井陉县','Jingxing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6948,'深泽县','Shenze',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6949,'赵县','Zhao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6950,'栾城区','Luancheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6951,'行唐县','Xingtang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6952,'邢台市','Xingtai',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6953,'清河县','Qinghe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6954,'临城县','Lincheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6955,'南宫市','Nangong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6956,'内丘县','Neiqiu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6957,'柏乡县','Boxiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6958,'新河县','Xinhe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6959,'广宗县','Guangzong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6960,'平乡县','Pingxiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6961,'沙河市','Shahe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6962,'南和区','Nanhe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6963,'宁晋县','Ningjin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6964,'巨鹿县','Julu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6965,'任泽区','Renze',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6966,'隆尧县','Longyao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6967,'信都区','Xindu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6968,'襄都区','Xiangdu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6969,'威县','Wei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6970,'临西县','Linxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6971,'衡水市','Hengshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6972,'桃城区','Taocheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6973,'枣强县','Zaoqiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6974,'深州市','Shenzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6975,'阜城县','Fucheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6976,'饶阳县','Raoyang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6977,'安平县','Anping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6978,'冀州区','Jizhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6979,'景县','Jing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6980,'故城县','Gucheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6981,'武邑县','Wuyi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6982,'武强县','Wuqiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6983,'保定市','Baoding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6984,'涞源县','Laiyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6985,'易县','Yi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6986,'顺平县','Shunping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6987,'徐水区','Xushui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6988,'安新县','Anxin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6989,'高阳县','Gaoyang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6990,'竞秀区','Jingxiu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6991,'安国市','Anguo',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6992,'定州市','Dingzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6993,'莲池区','Lianchi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6994,'涞水县','Laishui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6995,'涿州市','Zhuozhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6996,'博野县','Boye',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6997,'蠡县','Li',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6998,'望都县','Wangdu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6999,'阜平县','Fuping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7000,'曲阳县','Quyang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7001,'唐县','Tang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7002,'高碑店市','Gaobeidian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7003,'定兴县','Dingxing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7004,'容城县','Rongcheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7005,'雄县','Xiong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7006,'满城区','Mancheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7007,'清苑区','Qingyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7008,'承德市','Chengde',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7009,'隆化县','Longhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7010,'围场满族蒙古族自治县','Weichangmanzumengguzuzizhixian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7011,'丰宁满族自治县','Fengningmanzuzizhixian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7012,'宽城满族自治县','Kuanchengmanzuzizhixian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7013,'鹰手营子矿区','Yingshouyingzikuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7014,'兴隆县','Xinglong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7015,'平泉市','Pingquan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7016,'滦平县','Luanping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7017,'双滦区','Shuangluan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7018,'承德县','Chengde',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7019,'双桥区','Shuangqiao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7020,'台湾省','Taiwan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7021,'台北市','Taibei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7022,'南港区','Nangang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7023,'内湖区','Neihu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7024,'大安区','Daan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7025,'信义区','Xinyi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7026,'文山区','Wenshan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7027,'中正区','Zhongzheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7028,'万华区','Wanhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7029,'士林区','Shilin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7030,'北投区','Beitou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7031,'新北市','Xinbei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7032,'板桥区','Banqiao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7033,'汐止区','Xizhi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7034,'新店区','Xindian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7035,'永和区','Yonghe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7036,'中和区','Zhonghe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7037,'土城区','Tucheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7038,'树林区','Shulin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7039,'三重区','Sanzhong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7040,'新庄区','Xinzhuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7041,'芦洲区','Luzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7042,'瑞芳区','Ruifang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7043,'三峡区','Sanxia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7044,'莺歌区','Yingge',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7045,'淡水区','Danshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7046,'万里区','Wanli',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7047,'深坑区','Shenkeng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7048,'石碇区','Shiding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7049,'平溪区','Pingxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7050,'双溪区','Shuangxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7051,'贡寮区','Gongliao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7052,'坪林区','Pinglin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7053,'乌来区','Wulai',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7054,'林口区','Linkou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7055,'五股区','Wugu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7056,'八里区','Bali',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7057,'三芝区','Sanzhi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7058,'石门区','Shimen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7059,'桃园市','Taoyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7060,'桃园区','Taoyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7061,'中坜区','Zhongli',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7062,'平镇区','Pingzhen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7063,'八德区','Bade',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7064,'杨梅区','Yangmei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7065,'芦竹区','Luzhu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7066,'大溪区','Daxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7067,'龙潭区','Longtan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7068,'龟山区','Guishan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7069,'大园区','Dayuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7070,'观音区','Guanyin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7071,'新屋区','Xinwu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7072,'台中市','Taizhong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7073,'中区','Zhong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7074,'西区','Xi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7075,'北屯区','Beitun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7076,'西屯区','Xitun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7077,'南屯区','Nantun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7078,'大里区','Dali',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7079,'雾峰区','Wufeng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7080,'乌日区','Wuri',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7081,'丰原区','Fengyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7082,'后里区','Houli',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7083,'潭子区','Tanzi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7084,'大雅区','Daya',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7085,'神冈区','Shengang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7086,'石冈区','Shigang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7087,'东势区','Dongshi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7088,'新社区','Xinshe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7089,'大肚区','Dadu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7090,'沙鹿区','Shalu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7091,'龙井区','Longjing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7092,'梧栖区','Wuqi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7093,'清水区','Qingshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7094,'大甲区','Dajia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7095,'外埔区','Waipu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7096,'台南市','Tainan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7097,'安平区','Anping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7098,'安南区','Annan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7099,'永康区','Yongkang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7100,'归仁区','Guiren',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7101,'新化区','Xinhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7102,'左镇区','Zuozhen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7103,'玉井区','Yujing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7104,'楠西区','Nanxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7105,'南化区','Nanhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7106,'仁德区','Rende',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7107,'关庙区','Guanmiao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7108,'龙崎区','Longqi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7109,'官田区','Guantian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7110,'麻豆区','Madou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7111,'佳里区','Jiali',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7112,'西港区','Xigang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7113,'七股区','Qigu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7114,'将军区','Jiangjun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7115,'学甲区','Xuejia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7116,'北门区','Beimen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7117,'新营区','Xinying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7118,'后壁区','Houbi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7119,'白河区','Baihe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7120,'六甲区','Liujia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7121,'下营区','Xiaying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7122,'柳营区','Liuying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7123,'盐水区','Yanshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7124,'善化区','Shanhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7125,'大内区','Danei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7126,'山上区','Shanshang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7127,'安定区','Anding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7128,'高雄市','Gaoxiong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7129,'楠梓区','Nanzi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7130,'左营区','Zuoying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7131,'鼓山区','Gushan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7132,'三民区','Sanmin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7133,'盐埕区','Yancheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7134,'前金区','Qianjin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7135,'苓雅区','Lingya',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7136,'前镇区','Qianzhen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7137,'旗津区','Qijin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7138,'小港区','Xiaogang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7139,'凤山区','Fengshan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7140,'大寮区','Daliao',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7141,'鸟松区','Niaosong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7142,'林园区','Linyuan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7143,'仁武区','Renwu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7144,'大树区','Dashu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7145,'大社区','Dashe',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7146,'冈山区','Gangshan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7147,'路竹区','Luzhu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7148,'桥头区','Qiaotou',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7149,'梓官区','Ziguan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7150,'弥陀区','Mituo',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7151,'永安区','Yongan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7152,'燕巢区','Yanchao',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7153,'阿莲区','Alian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7154,'茄萣区','Qieding',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7155,'湖内区','Hunei',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7156,'旗山区','Qishan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7157,'美浓区','Meinong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7158,'内门区','Neimen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7159,'杉林区','Shanlin',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7160,'甲仙区','Jiaxian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7161,'六龟区','Liugui',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7162,'茂林区桃源区','Maolintaoyuan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7163,'那玛夏区','Neimaxia',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7164,'基隆市','Jilong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7165,'仁爱区','Renai',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7166,'安乐区','Anle',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7167,'暖暖区','Nuannuan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7168,'新竹市','Xinzhu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7169,'香山区','Xiangshan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7170,'嘉义市','Jiayi',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7171,'新竹县','Xinzhu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7172,'竹北市','Zhubei',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7173,'湖口乡','Hukouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7174,'新丰乡','Xinfengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7175,'新埔镇','Xinpuzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7176,'关西镇','Guanxizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7177,'芎林乡','Xionglinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7178,'宝山乡','Baoshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7179,'竹东镇','Zhudongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7180,'五峰乡','Wufengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7181,'横山乡','Hengshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7182,'尖石乡','Jianshixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7183,'北埔乡','Beipuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7184,'峨眉乡','Emeixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7185,'苗栗县','Miaoli',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7186,'竹南镇','Zhunanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7187,'头份乡','Toufenxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7188,'三湾乡','Sanwanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7189,'南庄乡','Nanzhuangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7190,'狮潭乡','Shitanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7191,'后龙镇','Houlongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7192,'通霄镇','Tongxiaozhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7193,'苑里镇','Yuanlizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7194,'苗栗市','Miaoli',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7195,'造桥乡','Zaoqiaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7196,'头屋乡','Touwuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7197,'公馆乡','Gongguanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7198,'大湖乡','Dahuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7199,'泰安乡','Taianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7200,'铜锣乡','Tongluoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7201,'三义乡','Sanyixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7202,'西湖乡','Xihuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7203,'卓兰镇','Zhuolanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7204,'彰化县','Zhanghua',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7205,'彰化市','Zhanghua',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7206,'芬园乡','Fenyuanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7207,'花坛乡','Huatanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7208,'秀水乡','Xiushuixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7209,'鹿港镇','Lugangzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7210,'福兴乡','Fuxingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7211,'线西乡','Xianxixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7212,'和美镇','Hemeizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7213,'伸港乡','Shengangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7214,'员林市','Yuanlin',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7215,'社头乡','Shetouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7216,'永靖乡','Yongjingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7217,'埔心乡','Puxinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7218,'溪湖镇','Xihuzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7219,'大村乡','Dacunxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7220,'埔盐乡','Puyanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7221,'田中镇','Tianzhongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7222,'北斗镇','Beidouzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7223,'田尾乡','Tianweixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7224,'坤头乡','Kuntouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7225,'溪州乡','Xizhouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7226,'竹塘乡','Zhutangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7227,'二林镇','Erlinzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7228,'大城乡','Dachengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7229,'芳苑乡','Fangyuanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7230,'二水乡','Ershuixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7231,'南投县','Nantou',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7232,'南投市','Nantou',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7233,'中寮乡','Zhongliaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7234,'草屯镇','Caotunzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7235,'国姓乡','Guoxingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7236,'埔里镇','Pulizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7237,'仁爱乡','Renaixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7238,'名间乡','Mingjianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7239,'集集镇','Jijizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7240,'水里乡','Shuilixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7241,'鱼池乡','Yuchixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7242,'信义乡','Xinyixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7243,'竹山镇','Zhushanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7244,'鹿谷乡','Luguxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7245,'云林县','Yunlin',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7246,'斗南镇','Dounanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7247,'大埤乡','Dapixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7248,'虎尾镇','Huweizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7249,'土库镇','Tukuzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7250,'褒忠乡','Baozhongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7251,'东势乡','Dongshixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7252,'台西乡','Taixixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7253,'仑背乡','Lunbeixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7254,'麦寮乡','Mailiaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7255,'斗六市','Douliu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7256,'林内乡','Linneixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7257,'古坑乡','Gukengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7258,'莿桐乡','Citongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7259,'西螺镇','Xiluozhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7260,'二仑乡','Erlunxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7261,'北港镇','Beigangzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7262,'水林乡','Shuilinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7263,'口湖乡','Kouhuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7264,'四湖乡','Sihuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7265,'元长乡','Yuanzhangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7266,'嘉义县','Jiayi',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7267,'番路乡','Fanluxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7268,'梅山乡','Meishanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7269,'竹崎乡','Zhuqixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7270,'阿里山乡','Alishanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7271,'中埔乡','Zhongpuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7272,'大埔乡','Dapuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7273,'水上乡','Shuishangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7274,'鹿草乡','Lucaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7275,'太保市','Taibao',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7276,'朴子市','Pozi',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7277,'东石乡','Dongshixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7278,'六脚乡','Liujiaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7279,'新港乡','Xingangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7280,'民雄乡','Minxiongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7281,'大林镇','Dalinzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7282,'溪口乡','Xikouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7283,'义竹乡','Yizhuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7284,'布袋镇','Budaizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7285,'屏东县','Pingdong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7286,'屏东市','Pingdong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7287,'三地门乡','Sandimenxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7288,'雾台乡','Wutaixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7289,'玛家乡','Majiaxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7290,'九如乡','Jiuruxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7291,'里港乡','Ligangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7292,'高树乡','Gaoshuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7293,'盐埔乡','Yanpuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7294,'长治乡','Zhangzhixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7295,'麟洛乡','Linluoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7296,'竹田乡','Zhutianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7297,'内埔乡','Neipuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7298,'万丹乡','Wandanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7299,'潮州镇','Chaozhouzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7300,'泰武乡','Taiwuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7301,'来义乡','Laiyixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7302,'万峦乡','Wanluanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7303,'崁顶乡','Kandingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7304,'新埤乡','Xinpixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7305,'南州乡','Nanzhouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7306,'林边乡','Linbianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7307,'东港镇','Donggangzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7308,'琉球乡','Liuqiuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7309,'佳冬乡','Jiadongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7310,'新园乡','Xinyuanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7311,'枋寮乡','Fangliaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7312,'枋山乡','Fangshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7313,'春日乡','Chunrixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7314,'狮子乡','Shizixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7315,'东城乡','Dongchengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7316,'牡丹乡','Mudanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7317,'恒春镇','Hengchunzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7318,'满州乡','Manzhouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7319,'宜兰县','Yilan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7320,'宜兰市','Yilan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7321,'头城镇','Touchengzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7322,'礁溪乡','Jiaoxixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7323,'壮围乡','Zhuangweixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7324,'员山乡','Yuanshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7325,'罗东镇','Luodongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7326,'三星乡','Sanxingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7327,'大同乡','Datongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7328,'五结乡','Wujiexiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7329,'冬山乡','Dongshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7330,'苏澳镇','Suaozhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7331,'南澳乡','Nanaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7332,'花莲县','Hualian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7333,'花莲市','Hualian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7334,'新城乡','Xinchengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7335,'秀林乡','Xiulinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7336,'吉安乡','Jianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7337,'寿丰乡','Shoufengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7338,'凤林镇','Fenglinzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7339,'光复乡','Guangfuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7340,'丰滨乡','Fengbinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7341,'瑞穗乡','Ruisuixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7342,'万荣乡','Wanrongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7343,'玉里镇','Yulizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7344,'卓溪乡','Zhuoxixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7345,'富里乡','Fulixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7346,'台东县','Taidong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7347,'绿岛乡','Lu:daoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7348,'兰屿乡','Lanyuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7349,'延平乡','Yanpingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7350,'卑南乡','Beinanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7351,'鹿野乡','Luyexiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7352,'关山镇','Guanshanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7353,'海端乡','Haiduanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7354,'池上乡','Chishangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7355,'东河乡','Donghexiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7356,'成功镇','Chenggongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7357,'长滨乡','Zhangbinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7358,'金峰乡','Jinfengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7359,'大武乡','Dawuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7360,'达仁乡','Darenxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7361,'太麻里乡','Taimalixiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7362,'澎湖县','Penghu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7363,'马公市','Magong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7364,'西屿乡','Xiyuxiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7365,'望安乡','Wanganxiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7366,'七美乡','Qimeixiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7367,'白沙乡','Baishaxiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7368,'湖西乡','Huxixiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7369,'澳门特别行政区','Aomen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7370,'望德堂区','Wangdetang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7371,'路凼填海区','Ludangtianhai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7372,'花王堂区','Huawangtang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7373,'嘉模堂区','Jiamotang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7374,'风顺堂区','Fengshuntang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7375,'花地玛堂区','Huadimatang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7376,'大堂区','Datang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7377,'圣方济各堂区','Shengfangjigetang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7378,'甘肃省','Gansu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7379,'金昌市','Jinchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7380,'金川区','Jinchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7381,'永昌县','Yongchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7382,'嘉峪关市','Jiayuguan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7383,'峪泉镇','Yuquanzhen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7384,'新城镇','Xinchengzhen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7385,'文殊镇','Wenshuzhen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7386,'钢城街道','Gangchengjiedao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7387,'雄关街道','Xiongguanjiedao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7388,'兰州市','Lanzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7389,'皋兰县','Gaolan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7390,'安宁区','Anning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7391,'红古区','Honggu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7392,'西固区','Xigu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7393,'永登县','Yongdeng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7394,'七里河区','Qilihe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7395,'榆中县','Yuzhong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7396,'酒泉市','Jiuquan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7397,'玉门市','Yumen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7398,'肃州区','Suzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7399,'肃北蒙古族自治县','Subeimengguzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7400,'金塔县','Jinta',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7401,'敦煌市','Dunhuang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7402,'阿克塞哈萨克族自治县','Akesaihasakezuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7403,'瓜州县','Guazhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7404,'平凉市','Pingliang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7405,'崇信县','Chongxin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7406,'庄浪县','Zhuanglang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7407,'灵台县','Lingtai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7408,'崆峒区','Kongtong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7409,'华亭市','Huating',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7410,'静宁县','Jingning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7411,'泾川县','Jingchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7412,'白银市','Baiyin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7413,'靖远县','Jingyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7414,'平川区','Pingchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7415,'白银区','Baiyin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7416,'景泰县','Jingtai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7417,'会宁县','Huining',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7418,'武威市','Wuwei',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7419,'古浪县','Gulang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7420,'凉州区','Liangzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7421,'天祝藏族自治县','Tianzhuzangzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7422,'民勤县','Minqin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7423,'陇南市','Longnan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7424,'礼县','Li',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7425,'徽县','Hui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7426,'武都区','Wudu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7427,'宕昌县','Dangchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7428,'两当县','Liangdang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7429,'文县','Wen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7430,'西和县','Xihe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7431,'康县','Kang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7432,'成县','Cheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7433,'张掖市','Zhangye',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7434,'高台县','Gaotai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7435,'肃南裕固族自治县','Sunanyuguzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7436,'民乐县','Minle',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7437,'山丹县','Shandan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7438,'甘州区','Ganzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7439,'临泽县','Linze',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7440,'庆阳市','Qingyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7441,'华池县','Huachi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7442,'镇原县','Zhenyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7443,'环县','Huan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7444,'正宁县','Zhengning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7445,'宁县','Ning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7446,'庆城县','Qingcheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7447,'西峰区','Xifeng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7448,'合水县','Heshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7449,'天水市','Tianshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7450,'秦安县','Qinan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7451,'甘谷县','Gangu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7452,'秦州区','Qinzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7453,'麦积区','Maiji',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7454,'张家川回族自治县','Zhangjiachuanhuizuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7455,'清水县','Qingshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7456,'武山县','Wushan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7457,'临夏回族自治州','Linxiahuizuzizhizhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7458,'永靖县','Yongjing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7459,'东乡族自治县','Dongxiangzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7460,'临夏市','Linxia',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7461,'积石山保安族东乡族撒拉族自治县','Jishishanbaoanzudongxiangzusalazuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7462,'临夏县','Linxia',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7463,'广河县','Guanghe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7464,'和政县','Hezheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7465,'康乐县','Kangle',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7466,'甘南藏族自治州','Gannanzangzuzizhizhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7467,'夏河县','Xiahe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7468,'卓尼县','Zhuoni',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7469,'玛曲县','Maqu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7470,'合作市','Hezuo',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7471,'舟曲县','Zhouqu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7472,'临潭县','Lintan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7473,'迭部县','Diebu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7474,'碌曲县','Liuqu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7475,'定西市','Dingxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7476,'岷县','Min',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7477,'临洮县','Lintao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7478,'渭源县','Weiyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7479,'漳县','Zhang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7480,'陇西县','Longxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7481,'通渭县','Tongwei',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7482,'四川省','Sichuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7483,'广元市','Guangyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7484,'昭化区','Zhaohua',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7485,'朝天区','Chaotian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7486,'剑阁县','Jiange',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7487,'苍溪县','Cangxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7488,'旺苍县','Wangcang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7489,'青川县','Qingchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7490,'利州区','Lizhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7491,'成都市','Chengdu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7492,'彭州市','Pengzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7493,'青白江区','Qingbaijiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7494,'大邑县','Dayi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7495,'都江堰市','Dujiangyan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7496,'崇州市','Chongzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7497,'简阳市','Jianyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7498,'蒲江县','Pujiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7499,'新津区','Xinjin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7500,'金堂县','Jintang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7501,'邛崃市','Qionglai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7502,'温江区','Wenjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7503,'双流区','Shuangliu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7504,'郫都区','Pidu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7505,'武侯区','Wuhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7506,'金牛区','Jinniu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7507,'龙泉驿区','Longquanyi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7508,'新都区','Xindu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7509,'成华区','Chenghua',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7510,'锦江区','Jinjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7511,'青羊区','Qingyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7512,'绵阳市','Mianyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7513,'三台县','Santai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7514,'梓潼县','Zitong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7515,'游仙区','Youxian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7516,'江油市','Jiangyou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7517,'平武县','Pingwu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7518,'盐亭县','Yanting',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7519,'涪城区','Fucheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7520,'安州区','Anzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7521,'北川羌族自治县','Beichuanqiangzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7522,'广安市','Guangan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7523,'武胜县','Wusheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7524,'邻水县','Linshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7525,'广安区','Guangan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7526,'华蓥市','Huaying',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7527,'前锋区','Qianfeng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7528,'岳池县','Yuechi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7529,'德阳市','Deyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7530,'中江县','Zhongjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7531,'旌阳区','Jingyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7532,'广汉市','Guanghan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7533,'什邡市','Shenfang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7534,'罗江区','Luojiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7535,'绵竹市','Mianzhu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7536,'巴中市','Bazhong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7537,'通江县','Tongjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7538,'南江县','Nanjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7539,'巴州区','Bazhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7540,'平昌县','Pingchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7541,'恩阳区','Enyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7542,'南充市','Nanchong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7543,'蓬安县','Pengan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7544,'嘉陵区','Jialing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7545,'南部县','Nanbu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7546,'西充县','Xichong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7547,'营山县','Yingshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7548,'仪陇县','Yilong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7549,'顺庆区','Shunqing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7550,'高坪区','Gaoping',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7551,'阆中市','Langzhong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7552,'自贡市','Zigong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7553,'富顺县','Fushun',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7554,'自流井区','Ziliujing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7555,'贡井区','Gongjing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7556,'荣县','Rong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7557,'沿滩区','Yantan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7558,'泸州市','Luzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7559,'龙马潭区','Longmatan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7560,'纳溪区','Naxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7561,'叙永县','Xuyong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7562,'古蔺县','Gulin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7563,'泸县','Lu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7564,'江阳区','Jiangyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7565,'合江县','Hejiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7566,'资阳市','Ziyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7567,'安岳县','Anyue',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7568,'乐至县','Lezhi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7569,'雁江区','Yanjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7570,'眉山市','Meishan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7571,'仁寿县','Renshou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7572,'丹棱县','Danleng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7573,'洪雅县','Hongya',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7574,'青神县','Qingshen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7575,'彭山区','Pengshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7576,'东坡区','Dongpo',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7577,'乐山市','Leshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7578,'金口河区','Jinkouhe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7579,'沙湾区','Shawan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7580,'井研县','Jingyan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7581,'犍为县','Jianwei',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7582,'夹江县','Jiajiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7583,'五通桥区','Wutongqiao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7584,'峨边彝族自治县','Ebianyizuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7585,'马边彝族自治县','Mabianyizuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7586,'沐川县','Muchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7587,'峨眉山市','Emeishan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7588,'宜宾市','Yibin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7589,'筠连县','Yunlian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7590,'南溪区','Nanxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7591,'兴文县','Xingwen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7592,'翠屏区','Cuiping',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7593,'高县','Gao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7594,'珙县','Gong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7595,'长宁县','Zhangning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7596,'江安县','Jiangan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7597,'屏山县','Pingshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7598,'叙州区','Xuzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7599,'遂宁市','Suining',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7600,'大英县','Daying',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7601,'射洪市','Shehong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7602,'船山区','Chuanshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7603,'蓬溪县','Pengxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7604,'安居区','Anju',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7605,'内江市','Neijiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7606,'资中县','Zizhong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7607,'威远县','Weiyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7608,'东兴区','Dongxing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7609,'隆昌市','Longchang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7610,'达州市','Dazhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7611,'大竹县','Dazhu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7612,'渠县','Qu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7613,'宣汉县','Xuanhan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7614,'开江县','Kaijiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7615,'万源市','Wanyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7616,'通川区','Tongchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7617,'达川区','Dachuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7618,'凉山彝族自治州','Liangshanyizuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7619,'越西县','Yuexi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7620,'美姑县','Meigu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7621,'冕宁县','Mianning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7622,'德昌县','Dechang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7623,'金阳县','Jinyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7624,'木里藏族自治县','Mulizangzuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7625,'普格县','Puge',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7626,'甘洛县','Ganluo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7627,'雷波县','Leibo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7628,'布拖县','Butuo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7629,'喜德县','Xide',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7630,'会东县','Huidong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7631,'盐源县','Yanyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7632,'会理县','Huili',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7633,'宁南县','Ningnan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7634,'西昌市','Xichang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7635,'昭觉县','Zhaojue',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7636,'攀枝花市','Panzhihua',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7637,'米易县','Miyi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7638,'盐边县','Yanbian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7639,'仁和区','Renhe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7640,'雅安市','Yaan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7641,'芦山县','Lushan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7642,'宝兴县','Baoxing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7643,'天全县','Tianquan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7644,'雨城区','Yucheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7645,'荥经县','Yingjing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7646,'汉源县','Hanyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7647,'石棉县','Shimian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7648,'名山区','Mingshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7649,'阿坝藏族羌族自治州','Abazangzuqiangzuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7650,'九寨沟县','Jiuzhaigou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7651,'马尔康市','Maerkang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7652,'若尔盖县','Ruoergai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7653,'红原县','Hongyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7654,'汶川县','Wenchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7655,'黑水县','Heishui',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7656,'金川县','Jinchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7657,'阿坝县','Aba',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7658,'理县','Li',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7659,'小金县','Xiaojin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7660,'壤塘县','Rangtang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7661,'松潘县','Songpan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7662,'茂县','Mao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7663,'甘孜藏族自治州','Ganzizangzuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7664,'石渠县','Shiqu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7665,'道孚县','Daofu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7666,'新龙县','Xinlong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7667,'炉霍县','Luhuo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7668,'白玉县','Baiyu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7669,'理塘县','Litang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7670,'甘孜县','Ganzi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7671,'德格县','Dege',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7672,'康定市','Kangding',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7673,'雅江县','Yajiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7674,'巴塘县','Batang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7675,'乡城县','Xiangcheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7676,'九龙县','Jiulong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7677,'稻城县','Daocheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7678,'丹巴县','Danba',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7679,'色达县','Seda',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7680,'得荣县','Derong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7681,'泸定县','Luding',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7682,'天津市','Tianjin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7683,'天津城区','Tianjincheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7684,'东丽区','Dongli',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7685,'静海区','Jinghai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7686,'河北区','Hebei',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7687,'宝坻区','Baochi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7688,'滨海新区','Binhaixin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7689,'蓟州区','Jizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7690,'武清区','Wuqing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7691,'南开区','Nankai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7692,'宁河区','Ninghe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7693,'红桥区','Hongqiao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7694,'北辰区','Beichen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7695,'西青区','Xiqing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7696,'河西区','Hexi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7697,'津南区','Jinnan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7698,'山西省','Shanxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7699,'阳泉市','Yangquan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7700,'盂县','Yu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7701,'平定县','Pingding',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7702,'矿区','Kuang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7703,'太原市','Taiyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7704,'尖草坪区','Jiancaoping',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7705,'娄烦县','Loufan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7706,'古交市','Gujiao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7707,'阳曲县','Yangqu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7708,'清徐县','Qingxu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7709,'杏花岭区','Xinghualing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7710,'晋源区','Jinyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7711,'万柏林区','Wanbolin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7712,'迎泽区','Yingze',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7713,'小店区','Xiaodian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7714,'临汾市','Linfen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7715,'吉县','Ji',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7716,'汾西县','Fenxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7717,'隰县','Xi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7718,'曲沃县','Quwo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7719,'古县','Gu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7720,'大宁县','Daning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7721,'永和县','Yonghe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7722,'安泽县','Anze',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7723,'霍州市','Huozhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7724,'乡宁县','Xiangning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7725,'侯马市','Houma',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7726,'蒲县','Pu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7727,'浮山县','Fushan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7728,'洪洞县','Hongdong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7729,'襄汾县','Xiangfen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7730,'尧都区','Yaodu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7731,'翼城县','Yicheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7732,'运城市','Yuncheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7733,'夏县','Xia',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7734,'闻喜县','Wenxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7735,'芮城县','Ruicheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7736,'永济市','Yongji',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7737,'垣曲县','Yuanqu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7738,'平陆县','Pinglu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7739,'绛县','Jiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7740,'新绛县','Xinjiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7741,'临猗县','Linyi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7742,'万荣县','Wanrong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7743,'盐湖区','Yanhu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7744,'河津市','Hejin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7745,'稷山县','Jishan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7746,'忻州市','Xinzhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7747,'原平市','Yuanping',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7748,'岢岚县','Kelan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7749,'代县','Dai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7750,'宁武县','Ningwu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7751,'河曲县','Hequ',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7752,'五寨县','Wuzhai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7753,'偏关县','Pianguan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7754,'五台县','Wutai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7755,'忻府区','Xinfu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7756,'繁峙县','Fanzhi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7757,'定襄县','Dingxiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7758,'静乐县','Jingle',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7759,'神池县','Shenchi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7760,'保德县','Baode',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7761,'朔州市','Shuozhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7762,'平鲁区','Pinglu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7763,'右玉县','Youyu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7764,'怀仁市','Huairen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7765,'朔城区','Shuocheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7766,'山阴县','Shanyin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7767,'应县','Ying',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7768,'吕梁市','Lu:liang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7769,'临县','Lin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7770,'交口县','Jiaokou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7771,'交城县','Jiaocheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7772,'柳林县','Liulin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7773,'中阳县','Zhongyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7774,'岚县','Lan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7775,'方山县','Fangshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7776,'兴县','Xing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7777,'离石区','Lishi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7778,'石楼县','Shilou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7779,'文水县','Wenshui',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7780,'汾阳市','Fenyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7781,'孝义市','Xiaoyi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7782,'大同市','Datong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7783,'广灵县','Guangling',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7784,'浑源县','Hunyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7785,'灵丘县','Lingqiu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7786,'阳高县','Yanggao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7787,'云州区','Yunzhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7788,'新荣区','Xinrong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7789,'云冈区','Yungang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7790,'平城区','Pingcheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7791,'天镇县','Tianzhen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7792,'左云县','Zuoyun',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7793,'晋中市','Jinzhong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7794,'和顺县','Heshun',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7795,'左权县','Zuoquan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7796,'寿阳县','Shouyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7797,'昔阳县','Xiyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7798,'榆社县','Yushe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7799,'介休市','Jiexiu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7800,'灵石县','Lingshi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7801,'榆次区','Yuci',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7802,'太谷区','Taigu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7803,'祁县','Qi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7804,'平遥县','Pingyao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7805,'长治市','Zhangzhi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7806,'平顺县','Pingshun',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7807,'潞城区','Lucheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7808,'黎城县','Licheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7809,'长子县','Zhangzi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7810,'屯留区','Tunliu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7811,'襄垣县','Xiangyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7812,'潞州区','Luzhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7813,'武乡县','Wuxiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7814,'沁县','Qin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7815,'壶关县','Huguan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7816,'沁源县','Qinyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7817,'上党区','Shangdang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7818,'晋城市','Jincheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7819,'泽州县','Zezhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7820,'沁水县','Qinshui',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7821,'阳城县','Yangcheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7822,'陵川县','Lingchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7823,'高平市','Gaoping',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7824,'云南省','Yunnan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7825,'昭通市','Zhaotong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7826,'大关县','Daguan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7827,'威信县','Weixin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7828,'绥江县','Suijiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7829,'永善县','Yongshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7830,'水富市','Shuifu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7831,'巧家县','Qiaojia',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7832,'彝良县','Yiliang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7833,'镇雄县','Zhenxiong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7834,'昭阳区','Zhaoyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7835,'鲁甸县','Ludian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7836,'盐津县','Yanjin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7837,'玉溪市','Yuxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7838,'易门县','Yimen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7839,'澄江市','Chengjiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7840,'华宁县','Huaning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7841,'红塔区','Hongta',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7842,'江川区','Jiangchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7843,'峨山彝族自治县','Eshanyizuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7844,'新平彝族傣族自治县','Xinpingyizudaizuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7845,'通海县','Tonghai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7846,'元江哈尼族彝族傣族自治县','Yuanjianghanizuyizudaizuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7847,'大理白族自治州','Dalibaizuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7848,'鹤庆县','Heqing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7849,'洱源县','Eryuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7850,'宾川县','Binchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7851,'云龙县','Yunlong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7852,'大理市','Dali',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7853,'剑川县','Jianchuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7854,'漾濞彝族自治县','Yangbiyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7855,'祥云县','Xiangyun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7856,'永平县','Yongping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7857,'巍山彝族回族自治县','Weishanyizuhuizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7858,'弥渡县','Midu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7859,'南涧彝族自治县','Nanjianyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7860,'曲靖市','Qujing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7861,'会泽县','Huize',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7862,'马龙区','Malong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7863,'罗平县','Luoping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7864,'陆良县','Luliang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7865,'师宗县','Shizong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7866,'宣威市','Xuanwei',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7867,'富源县','Fuyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7868,'沾益区','Zhanyi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7869,'麒麟区','Qilin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7870,'怒江傈僳族自治州','Nujianglisuzuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7871,'贡山独龙族怒族自治县','Gongshandulongzunuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7872,'兰坪白族普米族自治县','Lanpingbaizupumizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7873,'福贡县','Fugong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7874,'泸水市','Lushui',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7875,'红河哈尼族彝族自治州','Honghehanizuyizuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7876,'弥勒市','Mile',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7877,'泸西县','Luxi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7878,'建水县','Jianshui',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7879,'开远市','Kaiyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7880,'石屏县','Shiping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7881,'个旧市','Gejiu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7882,'屏边苗族自治县','Pingbianmiaozuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7883,'蒙自市','Mengzi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7884,'元阳县','Yuanyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7885,'红河县','Honghe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7886,'绿春县','Lu:chun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7887,'金平苗族瑶族傣族自治县','Jinpingmiaozuyaozudaizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7888,'河口瑶族自治县','Hekouyaozuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7889,'西双版纳傣族自治州','Xishuangbannadaizuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7890,'勐腊县','Mengla',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7891,'景洪市','Jinghong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7892,'勐海县','Menghai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7893,'迪庆藏族自治州','Diqingzangzuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7894,'德钦县','Deqin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7895,'香格里拉市','Xianggelila',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7896,'维西傈僳族自治县','Weixilisuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7897,'丽江市','Lijiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7898,'古城区','Gucheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7899,'玉龙纳西族自治县','Yulongnaxizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7900,'永胜县','Yongsheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7901,'华坪县','Huaping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7902,'宁蒗彝族自治县','Ninglangyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7903,'普洱市','Puer',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7904,'景东彝族自治县','Jingdongyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7905,'镇沅彝族哈尼族拉祜族自治县','Zhenyuanyizuhanizulahuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7906,'景谷傣族彝族自治县','Jinggudaizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7907,'墨江哈尼族自治县','Mojianghanizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7908,'澜沧拉祜族自治县','Lancanglahuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7909,'宁洱哈尼族彝族自治县','Ningerhanizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7910,'孟连傣族拉祜族佤族自治县','Mengliandaizulahuzuwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7911,'江城哈尼族彝族自治县','Jiangchenghanizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7912,'思茅区','Simao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7913,'西盟佤族自治县','Ximengwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7914,'保山市','Baoshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7915,'腾冲市','Tengchong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7916,'隆阳区','Longyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7917,'施甸县','Shidian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7918,'昌宁县','Changning',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7919,'龙陵县','Longling',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7920,'昆明市','Kunming',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7921,'东川区','Dongchuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7922,'寻甸回族彝族自治县','Xundianhuizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7923,'宜良县','Yiliang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7924,'西山区','Xishan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7925,'五华区','Wuhua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7926,'呈贡区','Chenggong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7927,'石林彝族自治县','Shilinyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7928,'晋宁区','Jinning',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7929,'禄劝彝族苗族自治县','Luquanyizumiaozuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7930,'富民县','Fumin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7931,'安宁市','Anning',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7932,'嵩明县','Songming',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7933,'盘龙区','Panlong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7934,'官渡区','Guandu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7935,'文山壮族苗族自治州','Wenshanzhuangzumiaozuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7936,'丘北县','Qiubei',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7937,'广南县','Guangnan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7938,'文山市','Wenshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7939,'砚山县','Yanshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7940,'麻栗坡县','Malipo',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7941,'西畴县','Xichou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7942,'马关县','Maguan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7943,'富宁县','Funing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7944,'楚雄彝族自治州','Chuxiongyizuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7945,'大姚县','Dayao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7946,'元谋县','Yuanmou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7947,'姚安县','Yaoan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7948,'牟定县','Mouding',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7949,'楚雄市','Chuxiong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7950,'禄丰县','Lufeng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7951,'南华县','Nanhua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7952,'双柏县','Shuangbo',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7953,'武定县','Wuding',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7954,'永仁县','Yongren',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7955,'临沧市','Lincang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7956,'凤庆县','Fengqing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7957,'云县','Yun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7958,'镇康县','Zhenkang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7959,'临翔区','Linxiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7960,'永德县','Yongde',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7961,'耿马傣族佤族自治县','Gengmadaizuwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7962,'双江拉祜族佤族布朗族傣族自治县','Shuangjianglahuzuwazubulangzudaizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7963,'沧源佤族自治县','Cangyuanwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7964,'德宏傣族景颇族自治州','Dehongdaizujingpozuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7965,'盈江县','Yingjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7966,'梁河县','Lianghe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7967,'陇川县','Longchuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7968,'芒市','Mang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7969,'瑞丽市','Ruili',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7970,'北京市','Beijing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7971,'北京城区','Beijingcheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7972,'怀柔区','Huairou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7973,'延庆区','Yanqing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7974,'门头沟区','Mentougou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7975,'顺义区','Shunyi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7976,'平谷区','Pinggu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7977,'朝阳区','Chaoyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7978,'东城区','Dongcheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7979,'石景山区','Shijingshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7980,'房山区','Fangshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7981,'丰台区','Fengtai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7982,'西城区','Xicheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7983,'大兴区','Daxing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7984,'密云区','Miyun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7985,'昌平区','Changping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7986,'海淀区','Haidian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7987,'吉林省','Jilin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7988,'吉林市','Jilin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7989,'丰满区','Fengman',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7990,'桦甸市','Huadian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7991,'舒兰市','Shulan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7992,'蛟河市','Jiaohe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7993,'永吉县','Yongji',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7994,'磐石市','Panshi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7995,'昌邑区','Changyi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7996,'船营区','Chuanying',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7997,'松原市','Songyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7998,'扶余市','Fuyu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7999,'宁江区','Ningjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8000,'乾安县','Qianan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8001,'前郭尔罗斯蒙古族自治县','Qianguoerluosimengguzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8002,'长岭县','Zhangling',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8003,'辽源市','Liaoyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8004,'东丰县','Dongfeng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8005,'东辽县','Dongliao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8006,'龙山区','Longshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8007,'长春市','Zhangchun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8008,'德惠市','Dehui',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8009,'榆树市','Yushu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8010,'双阳区','Shuangyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8011,'农安县','Nongan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8012,'宽城区','Kuancheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8013,'九台区','Jiutai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8014,'公主岭市','Gongzhuling',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8015,'绿园区','Lu:yuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8016,'二道区','Erdao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8017,'南关区','Nanguan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8018,'白城市','Baicheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8019,'通榆县','Tongyu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8020,'大安市','Daan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8021,'洮南市','Taonan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8022,'洮北区','Taobei',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8023,'镇赉县','Zhenlai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8024,'白山市','Baishan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8025,'长白朝鲜族自治县','Zhangbaichaoxianzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8026,'靖宇县','Jingyu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8027,'江源区','Jiangyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8028,'抚松县','Fusong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8029,'浑江区','Hunjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8030,'临江市','Linjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8031,'通化市','Tonghua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8032,'二道江区','Erdaojiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8033,'东昌区','Dongchang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8034,'柳河县','Liuhe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8035,'通化县','Tonghua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8036,'梅河口市','Meihekou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8037,'辉南县','Huinan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8038,'集安市','Jian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8039,'四平市','Siping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8040,'双辽市','Shuangliao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8041,'伊通满族自治县','Yitongmanzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8042,'梨树县','Lishu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8043,'延边朝鲜族自治州','Yanbianchaoxianzuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8044,'图们市','Tumen',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8045,'珲春市','Hunchun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8046,'和龙市','Helong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8047,'汪清县','Wangqing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8048,'延吉市','Yanji',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8049,'龙井市','Longjing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8050,'安图县','Antu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8051,'敦化市','Dunhua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8052,'沙湾市','Shawan',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8053,'旬阳市','Xunyang',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8054,'凤翔区','Fengxiang',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8055,'龙海区','Longhai',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8056,'长泰区','Zhangtai',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8057,'沙县区','Sha',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8058,'横州市','Hengzhou',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8059,'会理市','Huili',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8060,'禄丰市','Lufeng',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8061,'偃师区','Yanshi',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8062,'孟津区','Mengjin',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8063,'黔西市','Qianxi',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8064,'祁阳市','Qiyang',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8065,'临平区','Linping',NULL,'2021-04-14 18:00:02','2021-04-14 18:00:02'),(8066,'钱塘区','Qiantang',NULL,'2021-04-14 18:00:02','2021-04-14 18:00:02'),(8067,'博古其镇','Boguqizhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8068,'双丰镇','Shuangfengzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8069,'苇湖镇','Weihuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8070,'榆树庄镇','Yushuzhuangzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8071,'博河镇','Bohezhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8072,'石峪镇','Shiyuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8073,'双乐镇','Shuanglezhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8074,'双桥镇','Shuangqiaozhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8075,'海川镇','Haichuanzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8076,'丰庆镇','Fengqingzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8077,'双渠镇','Shuangquzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8078,'昆牧镇','Kunmuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8079,'老兵镇','Laobingzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8080,'昆泉镇','Kunquanzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8081,'石河子镇','Shihezizhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8082,'梧桐镇','Wutongzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8083,'蔡家湖镇','Caijiahuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8084,'花桥镇','Huaqiaozhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8085,'金杨镇','Jinyangzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8086,'幸福镇','Xingfuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8087,'夏河镇','Xiahezhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8088,'中山港街道','Zhongshangangjiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8089,'南朗街道','Nanlangjiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8090,'民众街道','Minzhongjiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8091,'石岐街道','Shiqijiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8092,'候口街道','Houkoujiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8093,'大九湖镇','Dajiuhuzhen',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8094,'金屯镇','Jintunzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8095,'金粱镇','Jinliangzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8096,'玛滩镇','Matanzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8097,'塔门镇','Tamenzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8098,'昌安镇','Changanzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8099,'塔南镇','Tananzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8100,'新开岭镇','Xinkailingzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8101,'海安镇','Haianzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8102,'唐驿镇','Tangyizhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8103,'金胡杨镇','Jinhuyangzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8104,'永安镇','Yonganzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8105,'加来镇','Jialaizhen',NULL,'2021-12-07 02:00:03','2021-12-07 02:00:03'),(8106,'新星市','Xinxing',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8107,'兵团红星四场','Bingtuanhongxingsichang',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8108,'兵团红星一场','Bingtuanhongxingyichang',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8109,'兵团黄田农场','Bingtuanhuangtiannongchang',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8110,'坡头镇','Potouzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8111,'梨林镇','Lilinzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8112,'思礼镇','Silizhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8113,'大峪镇','Dayuzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8114,'五龙口镇','Wulongkouzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8115,'王屋镇','Wangwuzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8116,'玉泉街道','Yuquanjiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8117,'轵城镇','Zhichengzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8118,'济水街道','Jishuijiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8119,'沁园街道','Qinyuanjiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8120,'下冶镇','Xiayezhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8121,'克井镇','Kejingzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8122,'天坛街道','Tiantanjiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8123,'邵原镇','Shaoyuanzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8124,'北海街道','Beihaijiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8125,'承留镇','Chengliuzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8126,'喀拉拜勒镇','Kalabailezhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8127,'兵团农一师沙井子水利管理处','Bingtuannongyishishajingzishuiliguanlichu',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8128,'沙河镇','Shahezhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8129,'甘泉镇','Ganquanzhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8130,'金银川镇','Jinyinchuanzhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8131,'双城镇','Shuangchengzhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8132,'新井子镇','Xinjingzizhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8133,'杜湖街道','Duhujiedao',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8134,'金梁镇','Jinliangzhen',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8135,'侯口街道','Houkoujiedao',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8136,'广华寺街道','Guanghuasijiedao',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8137,'泽口街道','Zekoujiedao',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8138,'剅河镇','Louhezhen',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8139,'长埫口镇','Zhangzhongkouzhen',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8140,'澳门大学横琴校区(由澳门实施管辖)','Aomendaxuehengqinxiao(youaomenshishiguanxia)',NULL,'2023-04-18 02:00:02','2023-04-18 02:00:02'),(8141,'错那市','Cuonei',NULL,'2023-07-06 02:00:03','2023-07-06 02:00:03'),(8142,'米林市','Milin',NULL,'2023-07-06 02:00:03','2023-07-06 02:00:03'),(8143,'兵团一四四团','Bingtuanyisisituan',NULL,'2023-10-19 02:00:03','2023-10-19 02:00:03'),(8144,'路氹填海区','Ludangtianhai',NULL,'2023-10-19 02:00:03','2023-10-19 02:00:03'),(8145,'草湖镇','Caohuzhen',NULL,'2024-06-04 02:00:03','2024-06-04 02:00:03'); +INSERT INTO `sys_area_pinyin` VALUES (4031,'中华人民共和国','China','china','2020-07-30 08:45:38','2020-12-12 02:00:02'),(4032,'香港特别行政区','Xianggang','Hong Kong','2020-07-30 08:45:38','2020-12-12 02:00:02'),(4033,'沙田区','Shatian','Sha Tin District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4034,'油尖旺区','Youjianwang','Yau Tsim Mong District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4035,'观塘区','Guantang','Kwun Tong District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4036,'屯门区','Tunmen','Tuen Mun District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4037,'大埔区','Dapu','Tai Po District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4038,'南区','Nan','Southern District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4039,'九龙城区','Jiulongcheng','Kowloon City District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4040,'西贡区','Xigong','Sai Kung District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4041,'深水埗区','Shenshuibu','Sham Shui Po District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4042,'黄大仙区','Huangdaxian','Wong Tai Sin District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4043,'中西区','Zhongxi','Central and Western District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4044,'北区','Bei','North District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4045,'元朗区','Yuanlang','Yuen Long District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4046,'湾仔区','Wanzi','Wan Chai District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4047,'离岛区','Lidao','Island District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4048,'东区','Dong','Eastern District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4049,'荃湾区','Quanwan','Tsuen Wan District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4050,'葵青区','Kuiqing','Kwai Tsing District','2020-07-30 08:47:01','2020-12-12 02:00:21'),(4051,'河南省','Henan',NULL,'2021-01-30 02:00:01','2021-01-30 02:00:01'),(4052,'洛阳市','Luoyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4053,'栾川县','Luanchuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4054,'新安县','Xinan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4055,'吉利区','Jili',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4056,'伊川县','Yichuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4057,'洛宁县','Luoning',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4058,'偃师市','Yanshi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4059,'瀍河回族区','Chanhehuizu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4060,'西工区','Xigong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4061,'老城区','Laocheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4062,'孟津县','Mengjin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4063,'洛龙区','Luolong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4064,'汝阳县','Ruyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4065,'宜阳县','Yiyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4066,'涧西区','Jianxi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4067,'嵩县','Song',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4068,'三门峡市','Sanmenxia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4069,'渑池县','Mianchi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4070,'湖滨区','Hubin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4071,'卢氏县','Lushi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4072,'灵宝市','Lingbao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4073,'陕州区','Shanzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4074,'义马市','Yima',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4075,'漯河市','Luohe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4076,'召陵区','Zhaoling',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4077,'临颍县','Linying',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4078,'源汇区','Yuanhui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4079,'舞阳县','Wuyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4080,'郾城区','Yancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4081,'许昌市','Xuchang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4082,'建安区','Jianan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4083,'魏都区','Weidu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4084,'鄢陵县','Yanling',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4085,'襄城县','Xiangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4086,'禹州市','Yuzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4087,'长葛市','Zhangge',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4088,'南阳市','Nanyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4089,'卧龙区','Wolong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4090,'西峡县','Xixia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4091,'桐柏县','Tongbo',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4092,'南召县','Nanzhao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4093,'唐河县','Tanghe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4094,'社旗县','Sheqi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4095,'方城县','Fangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4096,'镇平县','Zhenping',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4097,'淅川县','Xichuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4098,'内乡县','Neixiang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4099,'邓州市','Dengzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4100,'新野县','Xinye',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4101,'宛城区','Wancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4102,'信阳市','Xinyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4103,'罗山县','Luoshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4104,'新县','Xin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4105,'淮滨县','Huaibin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4106,'浉河区','Shihe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4107,'固始县','Gushi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4108,'商城县','Shangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4109,'平桥区','Pingqiao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4110,'息县','Xi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4111,'潢川县','Huangchuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4112,'光山县','Guangshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4113,'济源市','Jiyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4114,'济源市坡头镇','Jiyuanpotouzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4115,'济源市梨林镇','Jiyuanlilinzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4116,'济源市思礼镇','Jiyuansilizhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4117,'济源市大峪镇','Jiyuandayuzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4118,'济源市五龙口镇','Jiyuanwulongkouzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4119,'济源市王屋镇','Jiyuanwangwuzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4120,'济源市轵城镇','Jiyuanzhichengzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4121,'济源市玉泉街道','Jiyuanyuquanjiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4122,'济源市济水街道','Jiyuanjishuijiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4123,'济源市沁园街道','Jiyuanqinyuanjiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4124,'济源市下冶镇','Jiyuanxiayezhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4125,'济源市天坛街道','Jiyuantiantanjiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4126,'济源市克井镇','Jiyuankejingzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4127,'济源市邵原镇','Jiyuanshaoyuanzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4128,'济源市北海街道','Jiyuanbeihaijiedao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4129,'济源市承留镇','Jiyuanchengliuzhen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4130,'濮阳市','Puyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4131,'南乐县','Nanle',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4132,'台前县','Taiqian',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4133,'范县','Fan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4134,'华龙区','Hualong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4135,'清丰县','Qingfeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4136,'濮阳县','Puyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4137,'焦作市','Jiaozuo',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4138,'马村区','Macun',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4139,'沁阳市','Qinyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4140,'温县','Wen',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4141,'孟州市','Mengzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4142,'修武县','Xiuwu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4143,'博爱县','Boai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4144,'武陟县','Wuzhi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4145,'中站区','Zhongzhan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4146,'山阳区','Shanyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4147,'解放区','Jiefang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4148,'郑州市','Zhengzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4149,'登封市','Dengfeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4150,'中原区','Zhongyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4151,'新密市','Xinmi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4152,'新郑市','Xinzheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4153,'上街区','Shangjie',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4154,'荥阳市','Yingyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4155,'巩义市','Gongyi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4156,'二七区','Erqi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4157,'管城回族区','Guanchenghuizu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4158,'中牟县','Zhongmou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4159,'金水区','Jinshui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4160,'惠济区','Huiji',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4161,'新乡市','Xinxiang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4162,'凤泉区','Fengquan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4163,'辉县市','Hui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4164,'长垣市','Zhangyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4165,'牧野区','Muye',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4166,'卫滨区','Weibin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4167,'新乡县','Xinxiang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4168,'封丘县','Fengqiu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4169,'获嘉县','Huojia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4170,'原阳县','Yuanyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4171,'延津县','Yanjin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4172,'红旗区','Hongqi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4173,'卫辉市','Weihui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4174,'平顶山市','Pingdingshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4175,'卫东区','Weidong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4176,'湛河区','Zhanhe',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4177,'鲁山县','Lushan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4178,'舞钢市','Wugang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4179,'郏县','Jia',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4180,'叶县','Ye',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4181,'汝州市','Ruzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4182,'新华区','Xinhua',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4183,'石龙区','Shilong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4184,'宝丰县','Baofeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4185,'商丘市','Shangqiu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4186,'宁陵县','Ningling',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4187,'梁园区','Liangyuan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4188,'永城市','Yongcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4189,'睢县','Sui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4190,'民权县','Minquan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4191,'柘城县','Zhecheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4192,'睢阳区','Suiyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4193,'夏邑县','Xiayi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4194,'虞城县','Yucheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4195,'周口市','Zhoukou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4196,'沈丘县','Shenqiu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4197,'项城市','Xiangcheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4198,'商水县','Shangshui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4199,'川汇区','Chuanhui',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4200,'鹿邑县','Luyi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4201,'郸城县','Dancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4202,'西华县','Xihua',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4203,'淮阳区','Huaiyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4204,'太康县','Taikang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4205,'扶沟县','Fugou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4206,'驻马店市','Zhumadian',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4207,'西平县','Xiping',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4208,'上蔡县','Shangcai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4209,'泌阳县','Miyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4210,'新蔡县','Xincai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4211,'正阳县','Zhengyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4212,'遂平县','Suiping',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4213,'汝南县','Runan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4214,'平舆县','Pingyu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4215,'驿城区','Yicheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4216,'确山县','Queshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4217,'安阳市','Anyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4218,'殷都区','Yindu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4219,'林州市','Linzhou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4220,'龙安区','Longan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4221,'内黄县','Neihuang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4222,'北关区','Beiguan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4223,'文峰区','Wenfeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4224,'安阳县','Anyang',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4225,'滑县','Hua',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4226,'汤阴县','Tangyin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4227,'鹤壁市','Hebi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4228,'鹤山区','Heshan',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4229,'山城区','Shancheng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4230,'淇县','Qi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4231,'浚县','Jun',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4232,'淇滨区','Qibin',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4233,'开封市','Kaifeng',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4234,'顺河回族区','Shunhehuizu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4235,'龙亭区','Longting',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4236,'兰考县','Lankao',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4237,'杞县','Qi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4238,'通许县','Tongxu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4239,'尉氏县','Weishi',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4240,'禹王台区','Yuwangtai',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4241,'祥符区','Xiangfu',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4242,'鼓楼区','Gulou',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4243,'广东省','Guangdong',NULL,'2021-01-30 02:00:02','2021-01-30 02:00:02'),(4244,'汕头市','Shantou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4245,'南澳县','Nanao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4246,'潮阳区','Chaoyang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4247,'澄海区','Chenghai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4248,'濠江区','Haojiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4249,'潮南区','Chaonan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4250,'龙湖区','Longhu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4251,'金平区','Jinping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4252,'佛山市','Foshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4253,'三水区','Sanshui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4254,'高明区','Gaoming',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4255,'顺德区','Shunde',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4256,'禅城区','Shancheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4257,'南海区','Nanhai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4258,'肇庆市','Zhaoqing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4259,'封开县','Fengkai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4260,'怀集县','Huaiji',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4261,'广宁县','Guangning',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4262,'德庆县','Deqing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4263,'四会市','Sihui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4264,'鼎湖区','Dinghu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4265,'高要区','Gaoyao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4266,'端州区','Duanzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4267,'惠州市','Huizhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4268,'惠东县','Huidong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4269,'博罗县','Boluo',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4270,'龙门县','Longmen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4271,'惠阳区','Huiyang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4272,'惠城区','Huicheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4273,'深圳市','Shenzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4274,'宝安区','Baoan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4275,'南山区','Nanshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4276,'盐田区','Yantian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4277,'福田区','Futian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4278,'罗湖区','Luohu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4279,'龙岗区','Longgang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4280,'坪山区','Pingshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4281,'光明区','Guangming',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4282,'龙华区','Longhua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4283,'珠海市','Zhuhai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4284,'金湾区','Jinwan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4285,'斗门区','Doumen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4286,'香洲区','Xiangzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4287,'湛江市','Zhanjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4288,'麻章区','Mazhang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4289,'廉江市','Lianjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4290,'雷州市','Leizhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4291,'吴川市','Wuchuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4292,'徐闻县','Xuwen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4293,'坡头区','Potou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4294,'霞山区','Xiashan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4295,'遂溪县','Suixi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4296,'赤坎区','Chikan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4297,'阳江市','Yangjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4298,'阳春市','Yangchun',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4299,'阳西县','Yangxi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4300,'江城区','Jiangcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4301,'阳东区','Yangdong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4302,'江门市','Jiangmen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4303,'鹤山市','Heshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4304,'江海区','Jianghai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4305,'开平市','Kaiping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4306,'台山市','Taishan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4307,'恩平市','Enping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4308,'新会区','Xinhui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4309,'蓬江区','Pengjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4310,'梅州市','Meizhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4311,'平远县','Pingyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4312,'蕉岭县','Jiaoling',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4313,'兴宁市','Xingning',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4314,'五华县','Wuhua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4315,'丰顺县','Fengshun',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4316,'梅县区','Mei',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4317,'梅江区','Meijiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4318,'大埔县','Dapu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4319,'茂名市','Maoming',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4320,'信宜市','Xinyi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4321,'高州市','Gaozhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4322,'电白区','Dianbai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4323,'化州市','Huazhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4324,'茂南区','Maonan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4325,'潮州市','Chaozhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4326,'饶平县','Raoping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4327,'潮安区','Chaoan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4328,'湘桥区','Xiangqiao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4329,'汕尾市','Shanwei',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4330,'陆河县','Luhe',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4331,'海丰县','Haifeng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4332,'城区','Cheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4333,'陆丰市','Lufeng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4334,'云浮市','Yunfu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4335,'郁南县','Yunan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4336,'罗定市','Luoding',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4337,'新兴县','Xinxing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4338,'云城区','Yuncheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4339,'云安区','Yunan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4340,'河源市','Heyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4341,'东源县','Dongyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4342,'和平县','Heping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4343,'龙川县','Longchuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4344,'连平县','Lianping',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4345,'源城区','Yuancheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4346,'紫金县','Zijin',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4347,'揭阳市','Jieyang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4348,'普宁市','Puning',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4349,'揭西县','Jiexi',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4350,'惠来县','Huilai',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4351,'榕城区','Rongcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4352,'揭东区','Jiedong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4353,'清远市','Qingyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4354,'连州市','Lianzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4355,'连南瑶族自治县','Liannanyaozuzizhixian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4356,'连山壮族瑶族自治县','Lianshanzhuangzuyaozuzizhixian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4357,'英德市','Yingde',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4358,'佛冈县','Fogang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4359,'阳山县','Yangshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4360,'清城区','Qingcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4361,'清新区','Qingxin',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4362,'韶关市','Shaoguan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4363,'南雄市','Nanxiong',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4364,'乳源瑶族自治县','Ruyuanyaozuzizhixian',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4365,'仁化县','Renhua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4366,'新丰县','Xinfeng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4367,'始兴县','Shixing',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4368,'翁源县','Wengyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4369,'浈江区','Zhenjiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4370,'武江区','Wujiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4371,'曲江区','Qujiang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4372,'乐昌市','Lechang',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4373,'广州市','Guangzhou',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4374,'从化区','Conghua',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4375,'花都区','Huadu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4376,'南沙区','Nansha',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4377,'番禺区','Fanyu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4378,'白云区','Baiyun',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4379,'海珠区','Haizhu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4380,'荔湾区','Liwan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4381,'增城区','Zengcheng',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4382,'越秀区','Yuexiu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4383,'天河区','Tianhe',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4384,'黄埔区','Huangpu',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4385,'中山市','Zhongshan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4386,'三角镇','Sanjiaozhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4387,'横栏镇','Henglanzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4388,'五桂山街道','Wuguishanjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4389,'东升镇','Dongshengzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4390,'神湾镇','Shenwanzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4391,'火炬开发区街道','Huojukaifajiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4392,'小榄镇','Xiaolanzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4393,'南朗镇','Nanlangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4394,'古镇镇','Guzhenzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4395,'民众镇','Minzhongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4396,'港口镇','Gangkouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4397,'三乡镇','Sanxiangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4398,'石岐区街道','Shiqijiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4399,'大涌镇','Dayongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4400,'南头镇','Nantouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4401,'黄圃镇','Huangpuzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4402,'东区街道','Dongjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4403,'阜沙镇','Fushazhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4404,'西区街道','Xijiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4405,'坦洲镇','Tanzhouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4406,'板芙镇','Banfuzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4407,'南区街道','Nanjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4408,'沙溪镇','Shaxizhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4409,'东凤镇','Dongfengzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4410,'东莞市','Dongguan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4411,'莞城街道','Guanchengjiedao',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4412,'常平镇','Changpingzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4413,'望牛墩镇','Wangniudunzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4414,'大朗镇','Dalangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4415,'麻涌镇','Mayongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4416,'东莞生态园','Dongguanshengtaiyuan',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4417,'桥头镇','Qiaotouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4418,'樟木头镇','Zhangmutouzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4419,'松山湖管委会','Songshanhuguanweihui',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4420,'凤岗镇','Fenggangzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4421,'石龙镇','Shilongzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4422,'高埗镇','Gaobuzhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4423,'塘厦镇','Tangshazhen',NULL,'2021-01-30 02:00:03','2021-01-30 02:00:03'),(4424,'寮步镇','Liaobuzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4425,'厚街镇','Houjiezhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4426,'谢岗镇','Xiegangzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4427,'虎门镇','Humenzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4428,'南城街道','Nanchengjiedao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4429,'虎门港管委会','Humengangguanweihui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4430,'横沥镇','Henglizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4431,'企石镇','Qishizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4432,'东坑镇','Dongkengzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4433,'石排镇','Shipaizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4434,'东城街道','Dongchengjiedao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4435,'洪梅镇','Hongmeizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4436,'沙田镇','Shatianzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4437,'道滘镇','Daojiaozhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4438,'大岭山镇','Dalingshanzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4439,'清溪镇','Qingxizhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4440,'茶山镇','Chashanzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4441,'中堂镇','Zhongtangzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4442,'万江街道','Wanjiangjiedao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4443,'石碣镇','Shijiezhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4444,'长安镇','Zhanganzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4445,'黄江镇','Huangjiangzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4446,'内蒙古自治区','Neimenggu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4447,'鄂尔多斯市','Eerduosi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4448,'鄂托克旗','Etuokeqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4449,'达拉特旗','Dalateqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4450,'准格尔旗','Zhungeerqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4451,'杭锦旗','Hangjinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4452,'乌审旗','Wushenqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4453,'鄂托克前旗','Etuokeqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4454,'东胜区','Dongsheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4455,'伊金霍洛旗','Yijinhuoluoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4456,'康巴什区','Kangbashen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4457,'呼伦贝尔市','Hulunbeier',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4458,'海拉尔区','Hailaer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4459,'根河市','Genhe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4460,'额尔古纳市','Eerguna',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4461,'牙克石市','Yakeshi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4462,'陈巴尔虎旗','Chenbaerhuqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4463,'莫力达瓦达斡尔族自治旗','Molidawadawoerzuzizhiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4464,'扎兰屯市','Zhalantun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4465,'阿荣旗','Arongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4466,'鄂温克族自治旗','Ewenkezuzizhiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4467,'扎赉诺尔区','Zhalainuoer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4468,'新巴尔虎右旗','Xinbaerhuyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4469,'满洲里市','Manzhouli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4470,'新巴尔虎左旗','Xinbaerhuzuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4471,'鄂伦春自治旗','Elunchunzizhiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4472,'乌海市','Wuhai',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4473,'乌达区','Wuda',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4474,'海南区','Hainan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4475,'海勃湾区','Haibowan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4476,'巴彦淖尔市','Bayannaoer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4477,'乌拉特中旗','Wulatezhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4478,'五原县','Wuyuan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4479,'临河区','Linhe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4480,'磴口县','Dengkou',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4481,'乌拉特前旗','Wulateqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4482,'乌拉特后旗','Wulatehouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4483,'杭锦后旗','Hangjinhouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4484,'包头市','Baotou',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4485,'土默特右旗','Tumoteyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4486,'白云鄂博矿区','Baiyunebokuang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4487,'达尔罕茂明安联合旗','Daerhanmaominganlianheqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4488,'石拐区','Shiguai',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4489,'九原区','Jiuyuan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4490,'东河区','Donghe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4491,'青山区','Qingshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4492,'昆都仑区','Kundulun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4493,'固阳县','Guyang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4494,'通辽市','Tongliao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4495,'霍林郭勒市','Huolinguole',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4496,'扎鲁特旗','Zhaluteqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4497,'科尔沁左翼中旗','Keerqinzuoyizhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4498,'开鲁县','Kailu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4499,'奈曼旗','Naimanqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4500,'科尔沁区','Keerqin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4501,'库伦旗','Kulunqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4502,'科尔沁左翼后旗','Keerqinzuoyihouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4503,'阿拉善盟','Alashanmeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4504,'额济纳旗','Ejinaqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4505,'阿拉善右旗','Alashanyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4506,'阿拉善左旗','Alashanzuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4507,'兴安盟','Xinganmeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4508,'阿尔山市','Aershan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4509,'科尔沁右翼中旗','Keerqinyouyizhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4510,'突泉县','Tuquan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4511,'扎赉特旗','Zhalaiteqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4512,'乌兰浩特市','Wulanhaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4513,'科尔沁右翼前旗','Keerqinyouyiqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4514,'锡林郭勒盟','Xilinguolemeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4515,'东乌珠穆沁旗','Dongwuzhumuqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4516,'西乌珠穆沁旗','Xiwuzhumuqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4517,'阿巴嘎旗','Abagaqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4518,'锡林浩特市','Xilinhaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4519,'苏尼特左旗','Sunitezuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4520,'二连浩特市','Erlianhaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4521,'苏尼特右旗','Suniteyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4522,'正蓝旗','Zhenglanqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4523,'镶黄旗','Xianghuangqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4524,'正镶白旗','Zhengxiangbaiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4525,'多伦县','Duolun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4526,'太仆寺旗','Taipusiqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4527,'呼和浩特市','Huhehaote',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4528,'和林格尔县','Helingeer',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4529,'玉泉区','Yuquan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4530,'回民区','Huimin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4531,'武川县','Wuchuan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4532,'托克托县','Tuoketuo',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4533,'土默特左旗','Tumotezuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4534,'新城区','Xincheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4535,'赛罕区','Saihan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4536,'清水河县','Qingshuihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4537,'赤峰市','Chifeng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4538,'阿鲁科尔沁旗','Alukeerqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4539,'巴林左旗','Balinzuoqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4540,'克什克腾旗','Keshenketengqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4541,'林西县','Linxi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4542,'巴林右旗','Balinyouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4543,'翁牛特旗','Wengniuteqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4544,'松山区','Songshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4545,'元宝山区','Yuanbaoshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4546,'喀喇沁旗','Kalaqinqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4547,'红山区','Hongshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4548,'敖汉旗','Aohanqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4549,'宁城县','Ningcheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4550,'乌兰察布市','Wulanchabu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4551,'四子王旗','Siziwangqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4552,'商都县','Shangdu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4553,'察哈尔右翼中旗','Chahaeryouyizhongqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4554,'化德县','Huade',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4555,'兴和县','Xinghe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4556,'卓资县','Zhuozi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4557,'察哈尔右翼后旗','Chahaeryouyihouqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4558,'丰镇市','Fengzhen',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4559,'察哈尔右翼前旗','Chahaeryouyiqianqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4560,'集宁区','Jining',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4561,'凉城县','Liangcheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4562,'黑龙江省','Heilongjiang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4563,'大兴安岭地区','Daxinganlingdi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4564,'漠河市','Mohe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4565,'呼玛县','Huma',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4566,'塔河县','Tahe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4567,'加格达奇区','Jiagedaqi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4568,'七台河市','Qitaihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4569,'桃山区','Taoshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4570,'勃利县','Boli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4571,'茄子河区','Qiezihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4572,'新兴区','Xinxing',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4573,'鹤岗市','Hegang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4574,'绥滨县','Suibin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4575,'工农区','Gongnong',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4576,'兴山区','Xingshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4577,'向阳区','Xiangyang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4578,'萝北县','Luobei',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4579,'兴安区','Xingan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4580,'东山区','Dongshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4581,'伊春市','Yichun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4582,'嘉荫县','Jiayin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4583,'南岔县','Nancha',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4584,'丰林县','Fenglin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4585,'乌翠区','Wucui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4586,'伊美区','Yimei',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4587,'金林区','Jinlin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4588,'友好区','Youhao',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4589,'大箐山县','Daqingshan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4590,'铁力市','Tieli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4591,'汤旺县','Tangwang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4592,'绥化市','Suihua',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4593,'绥棱县','Suileng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4594,'庆安县','Qingan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4595,'海伦市','Hailun',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4596,'望奎县','Wangkui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4597,'青冈县','Qinggang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4598,'北林区','Beilin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4599,'肇东市','Zhaodong',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4600,'明水县','Mingshui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4601,'兰西县','Lanxi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4602,'安达市','Anda',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4603,'哈尔滨市','Haerbin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4604,'方正县','Fangzheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4605,'通河县','Tonghe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4606,'巴彦县','Bayan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4607,'木兰县','Mulan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4608,'依兰县','Yilan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4609,'宾县','Bin',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4610,'平房区','Pingfang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4611,'双城区','Shuangcheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4612,'延寿县','Yanshou',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4613,'尚志市','Shangzhi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4614,'香坊区','Xiangfang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4615,'道里区','Daoli',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4616,'五常市','Wuchang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4617,'阿城区','Acheng',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4618,'呼兰区','Hulan',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4619,'松北区','Songbei',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4620,'道外区','Daowai',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4621,'南岗区','Nangang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4622,'黑河市','Heihe',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4623,'嫩江市','Nenjiang',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4624,'爱辉区','Aihui',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4625,'北安市','Beian',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4626,'孙吴县','Sunwu',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4627,'逊克县','Xunke',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4628,'五大连池市','Wudalianchi',NULL,'2021-01-30 02:00:04','2021-01-30 02:00:04'),(4629,'齐齐哈尔市','Qiqihaer',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4630,'克东县','Kedong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4631,'克山县','Keshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4632,'依安县','Yian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4633,'讷河市','Nehe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4634,'甘南县','Gannan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4635,'富裕县','Fuyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4636,'建华区','Jianhua',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4637,'碾子山区','Nianzishan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4638,'龙江县','Longjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4639,'梅里斯达斡尔族区','Meilisidawoerzu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4640,'铁锋区','Tiefeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4641,'富拉尔基区','Fulaerji',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4642,'昂昂溪区','Angangxi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4643,'龙沙区','Longsha',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4644,'泰来县','Tailai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4645,'拜泉县','Baiquan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4646,'牡丹江市','Mudanjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4647,'爱民区','Aimin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4648,'绥芬河市','Suifenhe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4649,'东安区','Dongan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4650,'东宁市','Dongning',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4651,'宁安市','Ningan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4652,'穆棱市','Muleng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4653,'林口县','Linkou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4654,'阳明区','Yangming',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4655,'西安区','Xian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4656,'海林市','Hailin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4657,'鸡西市','Jixi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4658,'城子河区','Chengzihe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4659,'麻山区','Mashan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4660,'滴道区','Didao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4661,'梨树区','Lishu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4662,'恒山区','Hengshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4663,'鸡冠区','Jiguan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4664,'密山市','Mishan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4665,'鸡东县','Jidong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4666,'虎林市','Hulin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4667,'大庆市','Daqing',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4668,'让胡路区','Ranghulu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4669,'红岗区','Honggang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4670,'肇源县','Zhaoyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4671,'大同区','Datong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4672,'杜尔伯特蒙古族自治县','Duerbotemengguzuzizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4673,'林甸县','Lindian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4674,'龙凤区','Longfeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4675,'萨尔图区','Saertu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4676,'肇州县','Zhaozhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4677,'佳木斯市','Jiamusi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4678,'同江市','Tongjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4679,'桦川县','Huachuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4680,'汤原县','Tangyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4681,'前进区','Qianjin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4682,'郊区','Jiao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4683,'东风区','Dongfeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4684,'桦南县','Huanan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4685,'抚远市','Fuyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4686,'富锦市','Fujin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4687,'双鸭山市','Shuangyashan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4688,'友谊县','Youyi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4689,'尖山区','Jianshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4690,'四方台区','Sifangtai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4691,'岭东区','Lingdong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4692,'宝山区','Baoshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4693,'宝清县','Baoqing',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4694,'饶河县','Raohe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4695,'集贤县','Jixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4696,'新疆维吾尔自治区','Xinjiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4697,'可克达拉市','Kekedala',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4698,'兵团六十八团','Bingtuanliushibatuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4699,'都拉塔口岸','Dulatakouan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4700,'兵团六十七团','Bingtuanliushiqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4701,'兵团六十六团','Bingtuanliushiliutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4702,'兵团六十三团','Bingtuanliushisantuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4703,'兵团六十四团','Bingtuanliushisituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4704,'双河市','Shuanghe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4705,'兵团八十九团','Bingtuanbashijiutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4706,'兵团八十六团','Bingtuanbashiliutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4707,'兵团八十四团','Bingtuanbashisituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4708,'兵团九十团','Bingtuanjiushituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4709,'兵团八十一团','Bingtuanbashiyituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4710,'北屯市','Beitun',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4711,'北屯镇','Beitunzhen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4712,'兵团一八八团','Bingtuanyibabatuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4713,'兵团一八七团','Bingtuanyibaqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4714,'兵团一八三团','Bingtuanyibasantuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4715,'博尔塔拉蒙古自治州','Boertalamengguzizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4716,'温泉县','Wenquan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4717,'阿拉山口市','Alashankou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4718,'博乐市','Bole',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4719,'精河县','Jinghe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4720,'铁门关市','Tiemenguan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4721,'农二师三十团','Nongershisanshituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4722,'兵团二十九团','Bingtuanershijiutuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4723,'和田地区','Hetiandi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4724,'于田县','Yutian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4725,'民丰县','Minfeng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4726,'和田市','Hetian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4727,'和田县','Hetian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4728,'洛浦县','Luopu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4729,'皮山县','Pishan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4730,'墨玉县','Moyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4731,'策勒县','Cele',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4732,'塔城地区','Tachengdi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4733,'和布克赛尔蒙古自治县','Hebukesaiermengguzizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4734,'塔城市','Tacheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4735,'裕民县','Yumin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4736,'额敏县','Emin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4737,'托里县','Tuoli',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4738,'乌苏市','Wusu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4739,'沙湾县','Shawan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4740,'石河子市','Shihezi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4741,'兵团一五二团','Bingtuanyiwuertuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4742,'红山街道','Hongshanjiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4743,'向阳街道','Xiangyangjiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4744,'石河子乡','Shihezixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4745,'老街街道','Laojiejiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4746,'北泉镇','Beiquanzhen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4747,'新城街道','Xinchengjiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4748,'五家渠市','Wujiaqu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4749,'兵团一零二团','Bingtuanyilingertuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4750,'军垦路街道','Junkenlujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4751,'人民路街道','Renminlujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4752,'兵团一零一团','Bingtuanyilingyituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4753,'兵团一零三团','Bingtuanyilingsantuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4754,'青湖路街道','Qinghulujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4755,'昆玉市','Kunyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4756,'乌鲁克萨依乡','Wulukesayixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4757,'奴尔乡','Nuerxiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4758,'普恰克其乡','Puqiakeqixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4759,'乌尔其乡','Wuerqixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4760,'博斯坦乡','Bositanxiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4761,'兵团四十七团','Bingtuansishiqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4762,'兵团皮山农场','Bingtuanpishannongchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4763,'喀拉喀什镇','Kalakashenzhen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4764,'阔依其乡','Kuoyiqixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4765,'兵团一牧场','Bingtuanyimuchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4766,'兵团二二四团','Bingtuanerersituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4767,'昌吉回族自治州','Changjihuizuzizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4768,'玛纳斯县','Manasi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4769,'木垒哈萨克自治县','Muleihasakezizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4770,'奇台县','Qitai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4771,'呼图壁县','Hutubi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4772,'阜康市','Fukang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4773,'昌吉市','Changji',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4774,'吉木萨尔县','Jimusaer',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4775,'伊犁哈萨克自治州','Yilihasakezizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4776,'奎屯市','Kuitun',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4777,'尼勒克县','Nileke',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4778,'伊宁县','Yining',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4779,'巩留县','Gongliu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4780,'昭苏县','Zhaosu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4781,'新源县','Xinyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4782,'特克斯县','Tekesi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4783,'察布查尔锡伯自治县','Chabuchaerxibozizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4784,'霍城县','Huocheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4785,'霍尔果斯市','Huoerguosi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4786,'伊宁市','Yining',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4787,'阿勒泰地区','Aletaidi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4788,'布尔津县','Buerjin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4789,'吉木乃县','Jimunai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4790,'富蕴县','Fuyun',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4791,'青河县','Qinghe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4792,'哈巴河县','Habahe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4793,'福海县','Fuhai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4794,'阿勒泰市','Aletai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4795,'乌鲁木齐市','Wulumuqi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4796,'达坂城区','Dabancheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4797,'天山区','Tianshan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4798,'米东区','Midong',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4799,'水磨沟区','Shuimogou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4800,'头屯河区','Toutunhe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4801,'乌鲁木齐县','Wulumuqi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4802,'新市区','Xin',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4803,'沙依巴克区','Shayibake',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4804,'巴音郭楞蒙古自治州','Bayinguolengmengguzizhizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4805,'和硕县','Heshuo',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4806,'和静县','Hejing',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4807,'博湖县','Bohu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4808,'焉耆回族自治县','Yanqihuizuzizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4809,'若羌县','Ruoqiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4810,'且末县','Qiemo',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4811,'库尔勒市','Kuerle',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4812,'轮台县','Luntai',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4813,'尉犁县','Weili',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4814,'阿克苏地区','Akesudi',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4815,'拜城县','Baicheng',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4816,'温宿县','Wensu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4817,'库车市','Kuche',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4818,'新和县','Xinhe',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4819,'沙雅县','Shaya',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4820,'阿克苏市','Akesu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4821,'阿瓦提县','Awati',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4822,'柯坪县','Keping',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4823,'乌什县','Wushen',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4824,'哈密市','Hami',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4825,'伊州区','Yizhou',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4826,'伊吾县','Yiwu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4827,'巴里坤哈萨克自治县','Balikunhasakezizhixian',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4828,'阿拉尔市','Alaer',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4829,'幸福路街道','Xingfulujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4830,'阿拉尔农场','Alaernongchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4831,'兵团第一师幸福农场','Bingtuandiyishixingfunongchang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4832,'工业园区','Gongyeyuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4833,'兵团七团','Bingtuanqituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4834,'兵团十一团','Bingtuanshiyituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4835,'托喀依乡','Tuokayixiang',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4836,'青松路街道','Qingsonglujiedao',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4837,'兵团八团','Bingtuanbatuan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4838,'兵团第一师水利水电工程处','Bingtuandiyishishuilishuidiangongchengchu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4839,'中心监狱','Zhongxinjianyu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4840,'兵团第一师塔里木灌区水利管理处','Bingtuandiyishitalimuguanshuiliguanlichu',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4841,'兵团十四团','Bingtuanshisituan',NULL,'2021-01-30 02:00:05','2021-01-30 02:00:05'),(4842,'兵团十团','Bingtuanshituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4843,'金银川路街道','Jinyinchuanlujiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4844,'兵团十三团','Bingtuanshisantuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4845,'南口街道','Nankoujiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4846,'兵团十六团','Bingtuanshiliutuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4847,'兵团十二团','Bingtuanshiertuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4848,'喀什地区','Kashendi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4849,'麦盖提县','Maigaiti',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4850,'疏勒县','Shule',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4851,'伽师县','Jiashi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4852,'叶城县','Yecheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4853,'莎车县','Shache',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4854,'塔什库尔干塔吉克自治县','Tashenkuergantajikezizhixian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4855,'泽普县','Zepu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4856,'疏附县','Shufu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4857,'巴楚县','Bachu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4858,'英吉沙县','Yingjisha',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4859,'喀什市','Kashen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4860,'岳普湖县','Yuepuhu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4861,'吐鲁番市','Tulufan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4862,'托克逊县','Tuokexun',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4863,'高昌区','Gaochang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4864,'鄯善县','Shanshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4865,'图木舒克市','Tumushuke',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4866,'兵团四十九团','Bingtuansishijiutuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4867,'兵团图木舒克市永安坝','Bingtuantumushukeyonganba',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4868,'兵团五十一团','Bingtuanwushiyituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4869,'前海街道','Qianhaijiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4870,'兵团图木舒克市喀拉拜勒镇','Bingtuantumushukekalabailezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4871,'永安坝街道','Yonganbajiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4872,'齐干却勒街道','Qiganquelejiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4873,'兵团五十团','Bingtuanwushituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4874,'兵团五十三团','Bingtuanwushisantuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4875,'兵团四十四团','Bingtuansishisituan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4876,'克孜勒苏柯尔克孜自治州','Kezilesukeerkezizizhizhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4877,'乌恰县','Wuqia',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4878,'阿图什市','Atushen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4879,'阿合奇县','Aheqi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4880,'阿克陶县','Aketao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4881,'克拉玛依市','Kelamayi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4882,'乌尔禾区','Wuerhe',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4883,'白碱滩区','Baijiantan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4884,'克拉玛依区','Kelamayi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4885,'独山子区','Dushanzi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4886,'胡杨河市','Huyanghe',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4887,'兵团一三零团','Bingtuanyisanlingtuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4888,'五五新镇街道','Wuwuxinzhenjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4889,'兵团一二八团','Bingtuanyierbatuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4890,'兵团一二九团','Bingtuanyierjiutuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4891,'湖北省','Hubei',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4892,'宜昌市','Yichang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4893,'兴山县','Xingshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4894,'当阳市','Dangyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4895,'秭归县','Zigui',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4896,'长阳土家族自治县','Zhangyangtujiazuzizhixian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4897,'点军区','Dianjun',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4898,'枝江市','Zhijiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4899,'伍家岗区','Wujiagang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4900,'猇亭区','Yaoting',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4901,'五峰土家族自治县','Wufengtujiazuzizhixian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4902,'宜都市','Yidu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4903,'夷陵区','Yiling',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4904,'西陵区','Xiling',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4905,'远安县','Yuanan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4906,'十堰市','Shiyan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4907,'张湾区','Zhangwan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4908,'郧阳区','Yunyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4909,'茅箭区','Maojian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4910,'丹江口市','Danjiangkou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4911,'竹山县','Zhushan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4912,'房县','Fang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4913,'竹溪县','Zhuxi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4914,'郧西县','Yunxi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4915,'襄阳市','Xiangyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4916,'老河口市','Laohekou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4917,'谷城县','Gucheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4918,'枣阳市','Zaoyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4919,'宜城市','Yicheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4920,'保康县','Baokang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4921,'襄城区','Xiangcheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4922,'襄州区','Xiangzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4923,'樊城区','Fancheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4924,'南漳县','Nanzhang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4925,'孝感市','Xiaogan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4926,'云梦县','Yunmeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4927,'应城市','Yingcheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4928,'汉川市','Hanchuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4929,'孝南区','Xiaonan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4930,'孝昌县','Xiaochang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4931,'大悟县','Dawu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4932,'安陆市','Anlu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4933,'黄冈市','Huanggang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4934,'麻城市','Macheng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4935,'蕲春县','Qichun',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4936,'黄州区','Huangzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4937,'浠水县','Xishui',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4938,'英山县','Yingshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4939,'红安县','Hongan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4940,'武穴市','Wuxue',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4941,'黄梅县','Huangmei',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4942,'罗田县','Luotian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4943,'团风县','Tuanfeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4944,'潜江市','Qianjiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4945,'积玉口镇','Jiyukouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4946,'广华街道','Guanghuajiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4947,'泰丰街道','Taifengjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4948,'周矶管理区','Zhoujiguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4949,'潜江经济开发区','Qianjiangjingjikaifa',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4950,'高场街道','Gaochangjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4951,'周矶街道','Zhoujijiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4952,'总口管理区','Zongkouguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4953,'运粮湖管理区','Yunlianghuguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4954,'王场镇','Wangchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4955,'竹根滩镇','Zhugentanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4956,'园林街道','Yuanlinjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4957,'白鹭湖管理区','Bailuhuguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4958,'渔洋镇','Yuyangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4959,'熊口镇','Xiongkouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4960,'后湖管理区','Houhuguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4961,'江汉石油管理局','Jianghanshiyouguanliju',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4962,'熊口管理区','Xiongkouguanli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4963,'张金镇','Zhangjinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4964,'杨市街道','Yangjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4965,'高石碑镇','Gaoshibeizhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4966,'浩口镇','Haokouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4967,'龙湾镇','Longwanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4968,'老新镇','Laoxinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4969,'浩口原种场','Haokouyuanzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4970,'天门市','Tianmen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4971,'胡市镇','Huzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4972,'多祥镇','Duoxiangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4973,'黄潭镇','Huangtanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4974,'沉湖管委会','Chenhuguanweihui',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4975,'干驿镇','Ganyizhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4976,'横林镇','Henglinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4977,'马湾镇','Mawanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4978,'蒋湖农场','Jianghunongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4979,'小板镇','Xiaobanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4980,'岳口镇','Yuekouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4981,'多宝镇','Duobaozhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4982,'蒋场镇','Jiangchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4983,'石家河镇','Shijiahezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4984,'彭市镇','Pengzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4985,'佛子山镇','Fozishanzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4986,'九真镇','Jiuzhenzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4987,'竟陵街道','Jinglingjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4988,'侨乡街道开发区','Qiaoxiangjiedaokaifa',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4989,'麻洋镇','Mayangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4990,'杨林街道','Yanglinjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4991,'白茅湖农场','Baimaohunongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4992,'皂市镇','Zaozhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4993,'拖市镇','Tuozhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4994,'汪场镇','Wangchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4995,'张港镇','Zhanggangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4996,'渔薪镇','Yuxinzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4997,'卢市镇','Luzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4998,'净潭乡','Jingtanxiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(4999,'武汉市','Wuhan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5000,'黄陂区','Huangpo',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5001,'新洲区','Xinzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5002,'汉南区','Hannan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5003,'蔡甸区','Caidian',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5004,'武昌区','Wuchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5005,'江夏区','Jiangxia',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5006,'东西湖区','Dongxihu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5007,'硚口区','Qiaokou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5008,'汉阳区','Hanyang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5009,'洪山区','Hongshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5010,'江汉区','Jianghan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5011,'江岸区','Jiangan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5012,'恩施土家族苗族自治州','Enshitujiazumiaozuzizhizhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5013,'建始县','Jianshi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5014,'恩施市','Enshi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5015,'利川市','Lichuan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5016,'鹤峰县','Hefeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5017,'来凤县','Laifeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5018,'宣恩县','Xuanen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5019,'巴东县','Badong',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5020,'咸丰县','Xianfeng',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5021,'荆门市','Jingmen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5022,'东宝区','Dongbao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5023,'钟祥市','Zhongxiang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5024,'京山市','Jingshan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5025,'掇刀区','Duodao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5026,'沙洋县','Shayang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5027,'荆州市','Jingzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5028,'江陵县','Jiangling',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5029,'监利市','Jianli',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5030,'石首市','Shishou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5031,'洪湖市','Honghu',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5032,'松滋市','Songzi',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5033,'沙市区','Sha',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5034,'公安县','Gongan',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5035,'荆州区','Jingzhou',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5036,'仙桃市','Xiantao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5037,'畜禽良种场','Chuqinliangzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5038,'沙湖镇','Shahuzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5039,'豆河镇','Douhezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5040,'通海口镇','Tonghaikouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5041,'胡场镇','Huchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5042,'长倘口镇','Zhangtangkouzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5043,'五湖渔场','Wuhuyuchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5044,'干河街道','Ganhejiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5045,'杨林尾镇','Yanglinweizhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5046,'西流河镇','Xiliuhezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5047,'赵西垸林场','Zhaoxihuanlinchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5048,'彭场镇','Pengchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5049,'九合垸原种场','Jiuhehuanyuanzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5050,'沔城回族镇','Mianchenghuizuzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5051,'龙华山街道','Longhuashanjiedao',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5052,'沙湖原种场','Shahuyuanzhongchang',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5053,'陈场镇','Chenchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5054,'郑场镇','Zhengchangzhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5055,'排湖风景区','Paihufengjing',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5056,'郭河镇','Guohezhen',NULL,'2021-01-30 02:00:06','2021-01-30 02:00:06'),(5057,'沙嘴街道','Shazuijiedao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5058,'毛嘴镇','Maozuizhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5059,'张沟镇','Zhanggouzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5060,'三伏潭镇','Sanfutanzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5061,'咸宁市','Xianning',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5062,'嘉鱼县','Jiayu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5063,'通山县','Tongshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5064,'咸安区','Xianan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5065,'赤壁市','Chibi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5066,'崇阳县','Chongyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5067,'通城县','Tongcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5068,'神农架林区','Shennongjialin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5069,'木鱼镇','Muyuzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5070,'下谷坪土家族乡','Xiagupingtujiazuxiang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5071,'新华镇','Xinhuazhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5072,'九湖镇','Jiuhuzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5073,'宋洛乡','Songluoxiang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5074,'松柏镇','Songbozhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5075,'红坪镇','Hongpingzhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5076,'阳日镇','Yangrizhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5077,'随州市','Suizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5078,'曾都区','Cengdu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5079,'随县','Sui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5080,'广水市','Guangshui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5081,'鄂州市','Ezhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5082,'华容区','Huarong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5083,'梁子湖区','Liangzihu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5084,'鄂城区','Echeng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5085,'黄石市','Huangshi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5086,'铁山区','Tieshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5087,'西塞山区','Xisaishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5088,'下陆区','Xialu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5089,'阳新县','Yangxin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5090,'大冶市','Daye',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5091,'黄石港区','Huangshigang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5092,'辽宁省','Liaoning',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5093,'营口市','Yingkou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5094,'西市区','Xi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5095,'盖州市','Gaizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5096,'鲅鱼圈区','Bayuquan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5097,'大石桥市','Dashiqiao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5098,'站前区','Zhanqian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5099,'老边区','Laobian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5100,'锦州市','Jinzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5101,'义县','Yi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5102,'黑山县','Heishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5103,'太和区','Taihe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5104,'凌海市','Linghai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5105,'北镇市','Beizhen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5106,'凌河区','Linghe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5107,'古塔区','Guta',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5108,'葫芦岛市','Huludao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5109,'建昌县','Jianchang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5110,'龙港区','Longgang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5111,'兴城市','Xingcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5112,'绥中县','Suizhong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5113,'南票区','Nanpiao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5114,'连山区','Lianshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5115,'丹东市','Dandong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5116,'凤城市','Fengcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5117,'东港市','Donggang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5118,'振安区','Zhenan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5119,'振兴区','Zhenxing',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5120,'宽甸满族自治县','Kuandianmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5121,'元宝区','Yuanbao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5122,'沈阳市','Shenyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5123,'新民市','Xinmin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5124,'和平区','Heping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5125,'苏家屯区','Sujiatun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5126,'于洪区','Yuhong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5127,'皇姑区','Huanggu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5128,'康平县','Kangping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5129,'法库县','Faku',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5130,'大东区','Dadong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5131,'沈河区','Shenhe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5132,'铁西区','Tiexi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5133,'辽中区','Liaozhong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5134,'沈北新区','Shenbeixin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5135,'浑南区','Hunnan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5136,'抚顺市','Fushun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5137,'新宾满族自治县','Xinbinmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5138,'清原满族自治县','Qingyuanmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5139,'望花区','Wanghua',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5140,'新抚区','Xinfu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5141,'东洲区','Dongzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5142,'顺城区','Shuncheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5143,'抚顺县','Fushun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5144,'大连市','Dalian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5145,'瓦房店市','Wafangdian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5146,'庄河市','Zhuanghe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5147,'金州区','Jinzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5148,'普兰店区','Pulandian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5149,'长海县','Zhanghai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5150,'旅顺口区','Lu:shunkou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5151,'甘井子区','Ganjingzi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5152,'中山区','Zhongshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5153,'西岗区','Xigang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5154,'沙河口区','Shahekou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5155,'铁岭市','Tieling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5156,'开原市','Kaiyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5157,'清河区','Qinghe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5158,'调兵山市','Diaobingshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5159,'铁岭县','Tieling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5160,'银州区','Yinzhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5161,'西丰县','Xifeng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5162,'昌图县','Changtu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5163,'阜新市','Fuxin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5164,'太平区','Taiping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5165,'清河门区','Qinghemen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5166,'阜新蒙古族自治县','Fuxinmengguzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5167,'新邱区','Xinqiu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5168,'彰武县','Zhangwu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5169,'细河区','Xihe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5170,'海州区','Haizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5171,'盘锦市','Panjin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5172,'大洼区','Dawa',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5173,'盘山县','Panshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5174,'兴隆台区','Xinglongtai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5175,'双台子区','Shuangtaizi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5176,'本溪市','Benxi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5177,'桓仁满族自治县','Huanrenmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5178,'溪湖区','Xihu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5179,'南芬区','Nanfen',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5180,'平山区','Pingshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5181,'明山区','Mingshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5182,'本溪满族自治县','Benximanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5183,'辽阳市','Liaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5184,'白塔区','Baita',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5185,'文圣区','Wensheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5186,'辽阳县','Liaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5187,'宏伟区','Hongwei',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5188,'太子河区','Taizihe',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5189,'灯塔市','Dengta',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5190,'弓长岭区','Gongzhangling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5191,'鞍山市','Anshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5192,'台安县','Taian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5193,'岫岩满族自治县','Xiuyanmanzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5194,'千山区','Qianshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5195,'立山区','Lishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5196,'铁东区','Tiedong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5197,'海城市','Haicheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5198,'朝阳市','Chaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5199,'双塔区','Shuangta',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5200,'北票市','Beipiao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5201,'朝阳县','Chaoyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5202,'龙城区','Longcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5203,'喀喇沁左翼蒙古族自治县','Kalaqinzuoyimengguzuzizhixian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5204,'建平县','Jianping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5205,'凌源市','Lingyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5206,'山东省','Shandong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5207,'青岛市','Qingdao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5208,'莱西市','Laixi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5209,'即墨区','Jimo',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5210,'崂山区','Laoshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5211,'城阳区','Chengyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5212,'黄岛区','Huangdao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5213,'市北区','Bei',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5214,'市南区','Nan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5215,'胶州市','Jiaozhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5216,'平度市','Pingdu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5217,'李沧区','Licang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5218,'聊城市','Liaocheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5219,'冠县','Guan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5220,'莘县','Xin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5221,'茌平区','Chiping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5222,'东昌府区','Dongchangfu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5223,'临清市','Linqing',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5224,'东阿县','Donga',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5225,'阳谷县','Yanggu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5226,'高唐县','Gaotang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5227,'烟台市','Yantai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5228,'蓬莱区','Penglai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5229,'莱州市','Laizhou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5230,'芝罘区','Zhifu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5231,'海阳市','Haiyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5232,'龙口市','Longkou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5233,'莱阳市','Laiyang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5234,'招远市','Zhaoyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5235,'福山区','Fushan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5236,'莱山区','Laishan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5237,'栖霞市','Qixia',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5238,'牟平区','Mouping',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5239,'淄博市','Zibo',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5240,'高青县','Gaoqing',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5241,'张店区','Zhangdian',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5242,'临淄区','Linzi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5243,'桓台县','Huantai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5244,'博山区','Boshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5245,'沂源县','Yiyuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5246,'周村区','Zhoucun',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5247,'淄川区','Zichuan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5248,'临沂市','Linyi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5249,'沂水县','Yishui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5250,'蒙阴县','Mengyin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5251,'平邑县','Pingyi',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5252,'兰山区','Lanshan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5253,'郯城县','Tancheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5254,'莒南县','Junan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5255,'沂南县','Yinan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5256,'罗庄区','Luozhuang',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5257,'临沭县','Linshu',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5258,'河东区','Hedong',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5259,'兰陵县','Lanling',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5260,'费县','Fei',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5261,'威海市','Weihai',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5262,'环翠区','Huancui',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5263,'荣成市','Rongcheng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5264,'乳山市','Rushan',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5265,'文登区','Wendeng',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5266,'东营市','Dongying',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5267,'利津县','Lijin',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5268,'广饶县','Guangrao',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5269,'东营区','Dongying',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5270,'河口区','Hekou',NULL,'2021-01-30 02:00:07','2021-01-30 02:00:07'),(5271,'垦利区','Kenli',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5272,'潍坊市','Weifang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5273,'潍城区','Weicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5274,'奎文区','Kuiwen',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5275,'临朐县','Linqu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5276,'诸城市','Zhucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5277,'寿光市','Shouguang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5278,'寒亭区','Hanting',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5279,'青州市','Qingzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5280,'昌乐县','Changle',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5281,'高密市','Gaomi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5282,'昌邑市','Changyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5283,'坊子区','Fangzi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5284,'安丘市','Anqiu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5285,'滨州市','Binzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5286,'滨城区','Bincheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5287,'沾化区','Zhanhua',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5288,'邹平市','Zouping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5289,'博兴县','Boxing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5290,'无棣县','Wudi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5291,'阳信县','Yangxin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5292,'惠民县','Huimin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5293,'日照市','Rizhao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5294,'五莲县','Wulian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5295,'莒县','Ju',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5296,'东港区','Donggang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5297,'岚山区','Lanshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5298,'枣庄市','Zaozhuang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5299,'山亭区','Shanting',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5300,'薛城区','Xuecheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5301,'市中区','Zhong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5302,'峄城区','Yicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5303,'滕州市','Tengzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5304,'台儿庄区','Taierzhuang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5305,'德州市','Dezhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5306,'乐陵市','Leling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5307,'德城区','Decheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5308,'宁津县','Ningjin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5309,'武城县','Wucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5310,'庆云县','Qingyun',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5311,'夏津县','Xiajin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5312,'齐河县','Qihe',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5313,'禹城市','Yucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5314,'临邑县','Linyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5315,'陵城区','Lingcheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5316,'平原县','Pingyuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5317,'菏泽市','Heze',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5318,'东明县','Dongming',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5319,'鄄城县','Juancheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5320,'牡丹区','Mudan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5321,'定陶区','Dingtao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5322,'郓城县','Yuncheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5323,'巨野县','Juye',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5324,'成武县','Chengwu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5325,'曹县','Cao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5326,'单县','Dan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5327,'济南市','Jinan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5328,'章丘区','Zhangqiu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5329,'历城区','Licheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5330,'济阳区','Jiyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5331,'平阴县','Pingyin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5332,'商河县','Shanghe',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5333,'槐荫区','Huaiyin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5334,'长清区','Zhangqing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5335,'莱芜区','Laiwu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5336,'钢城区','Gangcheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5337,'历下区','Lixia',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5338,'天桥区','Tianqiao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5339,'泰安市','Taian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5340,'新泰市','Xintai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5341,'东平县','Dongping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5342,'岱岳区','Daiyue',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5343,'泰山区','Taishan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5344,'肥城市','Feicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5345,'宁阳县','Ningyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5346,'济宁市','Jining',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5347,'汶上县','Wenshang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5348,'邹城市','Zoucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5349,'泗水县','Sishui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5350,'曲阜市','Qufu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5351,'任城区','Rencheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5352,'嘉祥县','Jiaxiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5353,'梁山县','Liangshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5354,'鱼台县','Yutai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5355,'金乡县','Jinxiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5356,'微山县','Weishan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5357,'兖州区','Yanzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5358,'陕西省','Shanxi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5359,'商洛市','Shangluo',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5360,'镇安县','Zhenan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5361,'丹凤县','Danfeng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5362,'商南县','Shangnan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5363,'洛南县','Luonan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5364,'山阳县','Shanyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5365,'商州区','Shangzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5366,'柞水县','Zuoshui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5367,'汉中市','Hanzhong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5368,'洋县','Yang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5369,'佛坪县','Foping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5370,'留坝县','Liuba',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5371,'西乡县','Xixiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5372,'略阳县','Lu:eyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5373,'宁强县','Ningqiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5374,'勉县','Mian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5375,'南郑区','Nanzheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5376,'城固县','Chenggu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5377,'汉台区','Hantai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5378,'镇巴县','Zhenba',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5379,'铜川市','Tongchuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5380,'王益区','Wangyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5381,'耀州区','Yaozhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5382,'印台区','Yintai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5383,'宜君县','Yijun',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5384,'榆林市','Yulin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5385,'榆阳区','Yuyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5386,'府谷县','Fugu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5387,'靖边县','Jingbian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5388,'绥德县','Suide',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5389,'子洲县','Zizhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5390,'神木市','Shenmu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5391,'米脂县','Mizhi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5392,'清涧县','Qingjian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5393,'吴堡县','Wubao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5394,'佳县','Jia',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5395,'横山区','Hengshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5396,'定边县','Dingbian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5397,'延安市','Yanan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5398,'子长市','Zizhang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5399,'宝塔区','Baota',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5400,'志丹县','Zhidan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5401,'安塞区','Ansai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5402,'延川县','Yanchuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5403,'富县','Fu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5404,'吴起县','Wuqi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5405,'洛川县','Luochuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5406,'甘泉县','Ganquan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5407,'宜川县','Yichuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5408,'延长县','Yanzhang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5409,'黄陵县','Huangling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5410,'黄龙县','Huanglong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5411,'宝鸡市','Baoji',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5412,'陇县','Long',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5413,'岐山县','Qishan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5414,'麟游县','Linyou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5415,'金台区','Jintai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5416,'千阳县','Qianyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5417,'凤县','Feng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5418,'渭滨区','Weibin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5419,'太白县','Taibai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5420,'陈仓区','Chencang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5421,'凤翔县','Fengxiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5422,'眉县','Mei',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5423,'扶风县','Fufeng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5424,'渭南市','Weinan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5425,'韩城市','Hancheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5426,'白水县','Baishui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5427,'大荔县','Dali',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5428,'潼关县','Tongguan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5429,'澄城县','Chengcheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5430,'临渭区','Linwei',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5431,'蒲城县','Pucheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5432,'合阳县','Heyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5433,'富平县','Fuping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5434,'华阴市','Huayin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5435,'华州区','Huazhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5436,'西安市','Xian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5437,'高陵区','Gaoling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5438,'临潼区','Lintong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5439,'蓝田县','Lantian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5440,'鄠邑区','Huyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5441,'莲湖区','Lianhu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5442,'灞桥区','Baqiao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5443,'碑林区','Beilin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5444,'周至县','Zhouzhi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5445,'阎良区','Yanliang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5446,'未央区','Weiyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5447,'雁塔区','Yanta',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5448,'长安区','Zhangan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5449,'咸阳市','Xianyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5450,'旬邑县','Xunyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5451,'彬州市','Binzhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5452,'渭城区','Weicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5453,'乾县','Qian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5454,'永寿县','Yongshou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5455,'武功县','Wugong',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5456,'泾阳县','Jingyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5457,'长武县','Zhangwu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5458,'杨陵区','Yangling',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5459,'三原县','Sanyuan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5460,'兴平市','Xingping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5461,'礼泉县','Liquan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5462,'淳化县','Chunhua',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5463,'秦都区','Qindu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5464,'安康市','Ankang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5465,'宁陕县','Ningshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5466,'旬阳县','Xunyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5467,'汉滨区','Hanbin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5468,'平利县','Pingli',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5469,'石泉县','Shiquan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5470,'汉阴县','Hanyin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5471,'白河县','Baihe',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5472,'紫阳县','Ziyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5473,'岚皋县','Langao',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5474,'镇坪县','Zhenping',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5475,'上海市','Shanghai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5476,'上海城区','Shanghaicheng',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5477,'浦东新区','Pudongxin',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5478,'崇明区','Chongming',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5479,'奉贤区','Fengxian',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5480,'金山区','Jinshan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5481,'普陀区','Putuo',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5482,'黄浦区','Huangpu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5483,'嘉定区','Jiading',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5484,'杨浦区','Yangpu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5485,'松江区','Songjiang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5486,'虹口区','Hongkou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5487,'长宁区','Zhangning',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5488,'静安区','Jingan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5489,'闵行区','Minxing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5490,'徐汇区','Xuhui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5491,'青浦区','Qingpu',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5492,'贵州省','Guizhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5493,'遵义市','Zunyi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5494,'湄潭县','Meitan',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5495,'桐梓县','Tongzi',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5496,'余庆县','Yuqing',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5497,'绥阳县','Suiyang',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5498,'播州区','Bozhou',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5499,'仁怀市','Renhuai',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5500,'赤水市','Chishui',NULL,'2021-01-30 02:00:08','2021-01-30 02:00:08'),(5501,'习水县','Xishui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5502,'道真仡佬族苗族自治县','Daozhengelaozumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5503,'正安县','Zhengan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5504,'务川仡佬族苗族自治县','Wuchuangelaozumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5505,'凤冈县','Fenggang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5506,'汇川区','Huichuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5507,'红花岗区','Honghuagang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5508,'黔东南苗族侗族自治州','Qiandongnanmiaozudongzuzizhizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5509,'榕江县','Rongjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5510,'雷山县','Leishan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5511,'天柱县','Tianzhu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5512,'镇远县','Zhenyuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5513,'施秉县','Shibing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5514,'丹寨县','Danzhai',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5515,'凯里市','Kaili',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5516,'从江县','Congjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5517,'黎平县','Liping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5518,'锦屏县','Jinping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5519,'台江县','Taijiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5520,'黄平县','Huangping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5521,'麻江县','Majiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5522,'岑巩县','Cengong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5523,'三穗县','Sansui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5524,'剑河县','Jianhe',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5525,'安顺市','Anshun',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5526,'西秀区','Xixiu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5527,'紫云苗族布依族自治县','Ziyunmiaozubuyizuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5528,'关岭布依族苗族自治县','Guanlingbuyizumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5529,'镇宁布依族苗族自治县','Zhenningbuyizumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5530,'平坝区','Pingba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5531,'普定县','Puding',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5532,'铜仁市','Tongren',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5533,'石阡县','Shiqian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5534,'印江土家族苗族自治县','Yinjiangtujiazumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5535,'德江县','Dejiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5536,'碧江区','Bijiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5537,'万山区','Wanshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5538,'思南县','Sinan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5539,'玉屏侗族自治县','Yupingdongzuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5540,'江口县','Jiangkou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5541,'松桃苗族自治县','Songtaomiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5542,'沿河土家族自治县','Yanhetujiazuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5543,'黔西南布依族苗族自治州','Qianxinanbuyizumiaozuzizhizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5544,'安龙县','Anlong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5545,'册亨县','Ceheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5546,'兴义市','Xingyi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5547,'兴仁市','Xingren',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5548,'普安县','Puan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5549,'望谟县','Wangmo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5550,'晴隆县','Qinglong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5551,'贞丰县','Zhenfeng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5552,'黔南布依族苗族自治州','Qiannanbuyizumiaozuzizhizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5553,'长顺县','Zhangshun',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5554,'平塘县','Pingtang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5555,'惠水县','Huishui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5556,'独山县','Dushan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5557,'罗甸县','Luodian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5558,'荔波县','Libo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5559,'贵定县','Guiding',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5560,'龙里县','Longli',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5561,'三都水族自治县','Sandushuizuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5562,'福泉市','Fuquan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5563,'瓮安县','Wengan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5564,'都匀市','Duyun',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5565,'六盘水市','Liupanshui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5566,'钟山区','Zhongshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5567,'六枝特区','Liuzhite',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5568,'盘州市','Panzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5569,'水城区','Shuicheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5570,'毕节市','Bijie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5571,'七星关区','Qixingguan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5572,'大方县','Dafang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5573,'黔西县','Qianxi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5574,'金沙县','Jinsha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5575,'纳雍县','Nayong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5576,'织金县','Zhijin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5577,'赫章县','Hezhang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5578,'威宁彝族回族苗族自治县','Weiningyizuhuizumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5579,'贵阳市','Guiyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5580,'开阳县','Kaiyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5581,'息烽县','Xifeng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5582,'修文县','Xiuwen',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5583,'清镇市','Qingzhen',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5584,'南明区','Nanming',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5585,'乌当区','Wudang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5586,'花溪区','Huaxi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5587,'观山湖区','Guanshanhu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5588,'云岩区','Yunyan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5589,'重庆市','Zhongqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5590,'重庆郊县','Zhongqingjiao',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5591,'巫溪县','Wuxi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5592,'奉节县','Fengjie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5593,'彭水苗族土家族自治县','Pengshuimiaozutujiazuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5594,'城口县','Chengkou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5595,'云阳县','Yunyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5596,'秀山土家族苗族自治县','Xiushantujiazumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5597,'巫山县','Wushan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5598,'垫江县','Dianjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5599,'石柱土家族自治县','Shizhutujiazuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5600,'忠县','Zhong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5601,'丰都县','Fengdu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5602,'酉阳土家族苗族自治县','Youyangtujiazumiaozuzizhixian',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5603,'重庆城区','Zhongqingcheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5604,'合川区','Hechuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5605,'潼南区','Tongnan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5606,'长寿区','Zhangshou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5607,'璧山区','Bishan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5608,'铜梁区','Tongliang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5609,'大足区','Dazu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5610,'荣昌区','Rongchang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5611,'南川区','Nanchuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5612,'大渡口区','Dadukou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5613,'涪陵区','Fuling',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5614,'永川区','Yongchuan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5615,'九龙坡区','Jiulongpo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5616,'渝中区','Yuzhong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5617,'万州区','Wanzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5618,'綦江区','Qijiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5619,'梁平区','Liangping',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5620,'开州区','Kaizhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5621,'江津区','Jiangjin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5622,'黔江区','Qianjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5623,'巴南区','Banan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5624,'南岸区','Nanan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5625,'北碚区','Beibei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5626,'武隆区','Wulong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5627,'沙坪坝区','Shapingba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5628,'渝北区','Yubei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5629,'江北区','Jiangbei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5630,'西藏自治区','Xizang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5631,'昌都市','Changdu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5632,'丁青县','Dingqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5633,'江达县','Jiangda',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5634,'卡若区','Karuo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5635,'类乌齐县','Leiwuqi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5636,'边坝县','Bianba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5637,'贡觉县','Gongjue',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5638,'洛隆县','Luolong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5639,'察雅县','Chaya',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5640,'八宿县','Basu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5641,'芒康县','Mangkang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5642,'左贡县','Zuogong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5643,'日喀则市','Rikaze',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5644,'仲巴县','Zhongba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5645,'南木林县','Nanmulin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5646,'昂仁县','Angren',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5647,'谢通门县','Xietongmen',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5648,'萨嘎县','Saga',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5649,'桑珠孜区','Sangzhuzi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5650,'拉孜县','Lazi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5651,'仁布县','Renbu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5652,'萨迦县','Sajia',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5653,'吉隆县','Jilong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5654,'康马县','Kangma',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5655,'定日县','Dingri',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5656,'江孜县','Jiangzi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5657,'白朗县','Bailang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5658,'聂拉木县','Nielamu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5659,'岗巴县','Gangba',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5660,'定结县','Dingjie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5661,'亚东县','Yadong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5662,'拉萨市','Lasa',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5663,'当雄县','Dangxiong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5664,'墨竹工卡县','Mozhugongka',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5665,'林周县','Linzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5666,'达孜区','Dazi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5667,'堆龙德庆区','Duilongdeqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5668,'尼木县','Nimu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5669,'城关区','Chengguan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5670,'曲水县','Qushui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5671,'山南市','Shannan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5672,'桑日县','Sangri',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5673,'加查县','Jiacha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5674,'乃东区','Naidong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5675,'扎囊县','Zhanang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5676,'浪卡子县','Langkazi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5677,'贡嘎县','Gongga',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5678,'琼结县','Qiongjie',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5679,'措美县','Cuomei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5680,'隆子县','Longzi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5681,'曲松县','Qusong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5682,'错那县','Cuonei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5683,'洛扎县','Luozha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5684,'林芝市','Linzhi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5685,'波密县','Bomi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5686,'工布江达县','Gongbujiangda',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5687,'巴宜区','Bayi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5688,'米林县','Milin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5689,'墨脱县','Motuo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5690,'察隅县','Chayu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5691,'朗县','Lang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5692,'那曲市','Neiqu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5693,'安多县','Anduo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5694,'聂荣县','Nierong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5695,'巴青县','Baqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5696,'班戈县','Bange',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5697,'申扎县','Shenzha',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5698,'索县','Suo',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5699,'比如县','Biru',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5700,'色尼区','Seni',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5701,'嘉黎县','Jiali',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5702,'尼玛县','Nima',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5703,'双湖县','Shuanghu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5704,'阿里地区','Alidi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5705,'改则县','Gaize',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5706,'札达县','Zhada',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5707,'措勤县','Cuoqin',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5708,'普兰县','Pulan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5709,'日土县','Ritu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5710,'革吉县','Geji',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5711,'噶尔县','Gaer',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5712,'安徽省','Anhui',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5713,'阜阳市','Fuyang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5714,'颍东区','Yingdong',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5715,'颍州区','Yingzhou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5716,'太和县','Taihe',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5717,'颍泉区','Yingquan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5718,'临泉县','Linquan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5719,'阜南县','Funan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5720,'颍上县','Yingshang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5721,'界首市','Jieshou',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5722,'马鞍山市','Maanshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5723,'博望区','Bowang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5724,'花山区','Huashan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5725,'雨山区','Yushan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5726,'和县','He',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5727,'含山县','Hanshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5728,'当涂县','Dangtu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5729,'淮北市','Huaibei',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5730,'杜集区','Duji',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5731,'烈山区','Lieshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5732,'相山区','Xiangshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5733,'濉溪县','Suixi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5734,'安庆市','Anqing',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5735,'岳西县','Yuexi',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5736,'宜秀区','Yixiu',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5737,'桐城市','Tongcheng',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5738,'潜山市','Qianshan',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5739,'迎江区','Yingjiang',NULL,'2021-01-30 02:00:09','2021-01-30 02:00:09'),(5740,'太湖县','Taihu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5741,'望江县','Wangjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5742,'宿松县','Susong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5743,'大观区','Daguan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5744,'怀宁县','Huaining',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5745,'池州市','Chizhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5746,'青阳县','Qingyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5747,'东至县','Dongzhi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5748,'贵池区','Guichi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5749,'石台县','Shitai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5750,'铜陵市','Tongling',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5751,'枞阳县','Zongyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5752,'铜官区','Tongguan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5753,'义安区','Yian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5754,'黄山市','Huangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5755,'黄山区','Huangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5756,'黟县','Yi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5757,'祁门县','Qimen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5758,'歙县','She',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5759,'屯溪区','Tunxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5760,'休宁县','Xiuning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5761,'徽州区','Huizhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5762,'蚌埠市','Bangbu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5763,'淮上区','Huaishang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5764,'五河县','Wuhe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5765,'怀远县','Huaiyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5766,'禹会区','Yuhui',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5767,'蚌山区','Bangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5768,'龙子湖区','Longzihu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5769,'固镇县','Guzhen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5770,'滁州市','Chuzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5771,'明光市','Mingguang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5772,'天长市','Tianzhang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5773,'凤阳县','Fengyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5774,'定远县','Dingyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5775,'来安县','Laian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5776,'南谯区','Nanqiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5777,'琅琊区','Langya',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5778,'全椒县','Quanjiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5779,'宣城市','Xuancheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5780,'广德市','Guangde',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5781,'旌德县','Jingde',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5782,'绩溪县','Jixi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5783,'宣州区','Xuanzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5784,'郎溪县','Langxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5785,'宁国市','Ningguo',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5786,'泾县','Jing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5787,'芜湖市','Wuhu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5788,'繁昌区','Fanchang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5789,'无为市','Wuwei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5790,'镜湖区','Jinghu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5791,'湾沚区','Wanzhi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5792,'鸠江区','Jiujiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5793,'南陵县','Nanling',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5794,'弋江区','Yijiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5795,'宿州市','Suzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5796,'埇桥区','Yongqiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5797,'泗县','Si',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5798,'萧县','Xiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5799,'灵璧县','Lingbi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5800,'砀山县','Dangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5801,'淮南市','Huainan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5802,'凤台县','Fengtai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5803,'八公山区','Bagongshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5804,'潘集区','Panji',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5805,'大通区','Datong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5806,'田家庵区','Tianjiaan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5807,'谢家集区','Xiejiaji',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5808,'寿县','Shou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5809,'亳州市','Bozhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5810,'利辛县','Lixin',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5811,'谯城区','Qiaocheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5812,'涡阳县','Woyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5813,'蒙城县','Mengcheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5814,'合肥市','Hefei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5815,'庐江县','Lujiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5816,'包河区','Baohe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5817,'瑶海区','Yaohai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5818,'肥东县','Feidong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5819,'巢湖市','Chaohu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5820,'肥西县','Feixi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5821,'庐阳区','Luyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5822,'长丰县','Zhangfeng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5823,'蜀山区','Shushan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5824,'六安市','Liuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5825,'霍山县','Huoshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5826,'裕安区','Yuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5827,'金寨县','Jinzhai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5828,'金安区','Jinan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5829,'霍邱县','Huoqiu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5830,'叶集区','Yeji',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5831,'舒城县','Shucheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5832,'福建省','Fujian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5833,'宁德市','Ningde',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5834,'福安市','Fuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5835,'寿宁县','Shouning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5836,'周宁县','Zhouning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5837,'屏南县','Pingnan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5838,'福鼎市','Fuding',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5839,'古田县','Gutian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5840,'蕉城区','Jiaocheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5841,'霞浦县','Xiapu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5842,'柘荣县','Zherong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5843,'福州市','Fuzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5844,'罗源县','Luoyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5845,'闽清县','Minqing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5846,'连江县','Lianjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5847,'永泰县','Yongtai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5848,'长乐区','Zhangle',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5849,'福清市','Fuqing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5850,'平潭县','Pingtan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5851,'台江区','Taijiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5852,'马尾区','Mawei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5853,'仓山区','Cangshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5854,'晋安区','Jinan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5855,'闽侯县','Minhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5856,'龙岩市','Longyan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5857,'漳平市','Zhangping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5858,'上杭县','Shanghang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5859,'武平县','Wuping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5860,'新罗区','Xinluo',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5861,'永定区','Yongding',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5862,'长汀县','Zhangting',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5863,'连城县','Liancheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5864,'莆田市','Putian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5865,'仙游县','Xianyou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5866,'荔城区','Licheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5867,'秀屿区','Xiuyu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5868,'城厢区','Chengxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5869,'涵江区','Hanjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5870,'泉州市','Quanzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5871,'德化县','Dehua',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5872,'洛江区','Luojiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5873,'泉港区','Quangang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5874,'永春县','Yongchun',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5875,'晋江市','Jinjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5876,'南安市','Nanan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5877,'惠安县','Huian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5878,'石狮市','Shishi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5879,'金门县','Jinmen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5880,'安溪县','Anxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5881,'丰泽区','Fengze',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5882,'鲤城区','Licheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5883,'厦门市','Shamen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5884,'思明区','Siming',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5885,'湖里区','Huli',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5886,'翔安区','Xiangan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5887,'海沧区','Haicang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5888,'集美区','Jimei',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5889,'同安区','Tongan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5890,'三明市','Sanming',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5891,'泰宁县','Taining',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5892,'梅列区','Meilie',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5893,'宁化县','Ninghua',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5894,'清流县','Qingliu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5895,'大田县','Datian',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5896,'永安市','Yongan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5897,'三元区','Sanyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5898,'建宁县','Jianning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5899,'尤溪县','Youxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5900,'沙县','Sha',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5901,'将乐县','Jiangle',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5902,'明溪县','Mingxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5903,'南平市','Nanping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5904,'浦城县','Pucheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5905,'松溪县','Songxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5906,'武夷山市','Wuyishan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5907,'光泽县','Guangze',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5908,'邵武市','Shaowu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5909,'建瓯市','Jianou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5910,'政和县','Zhenghe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5911,'顺昌县','Shunchang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5912,'建阳区','Jianyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5913,'延平区','Yanping',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5914,'漳州市','Zhangzhou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5915,'华安县','Huaan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5916,'龙海市','Longhai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5917,'漳浦县','Zhangpu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5918,'南靖县','Nanjing',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5919,'东山县','Dongshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5920,'龙文区','Longwen',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5921,'芗城区','Xiangcheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5922,'长泰县','Zhangtai',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5923,'平和县','Pinghe',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5924,'诏安县','Zhaoan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5925,'云霄县','Yunxiao',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5926,'湖南省','Hunan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5927,'长沙市','Zhangsha',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5928,'岳麓区','Yuelu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5929,'开福区','Kaifu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5930,'浏阳市','Liuyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5931,'长沙县','Zhangsha',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5932,'宁乡市','Ningxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5933,'望城区','Wangcheng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5934,'芙蓉区','Furong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5935,'雨花区','Yuhua',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5936,'天心区','Tianxin',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5937,'张家界市','Zhangjiajie',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5938,'武陵源区','Wulingyuan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5939,'慈利县','Cili',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5940,'桑植县','Sangzhi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5941,'衡阳市','Hengyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5942,'衡阳县','Hengyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5943,'衡山县','Hengshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5944,'衡东县','Hengdong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5945,'石鼓区','Shigu',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5946,'祁东县','Qidong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5947,'南岳区','Nanyue',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5948,'珠晖区','Zhuhui',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5949,'雁峰区','Yanfeng',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5950,'衡南县','Hengnan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5951,'耒阳市','Leiyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5952,'蒸湘区','Zhengxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5953,'常宁市','Changning',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5954,'岳阳市','Yueyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5955,'华容县','Huarong',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5956,'君山区','Junshan',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5957,'云溪区','Yunxi',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5958,'岳阳楼区','Yueyanglou',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5959,'汨罗市','Miluo',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5960,'湘阴县','Xiangyin',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5961,'岳阳县','Yueyang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5962,'临湘市','Linxiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5963,'平江县','Pingjiang',NULL,'2021-01-30 02:00:10','2021-01-30 02:00:10'),(5964,'湘西土家族苗族自治州','Xiangxitujiazumiaozuzizhizhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5965,'永顺县','Yongshun',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5966,'花垣县','Huayuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5967,'保靖县','Baojing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5968,'吉首市','Jishou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5969,'泸溪县','Luxi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5970,'古丈县','Guzhang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5971,'凤凰县','Fenghuang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5972,'龙山县','Longshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5973,'怀化市','Huaihua',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5974,'芷江侗族自治县','Zhijiangdongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5975,'洪江市','Hongjiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5976,'通道侗族自治县','Tongdaodongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5977,'辰溪县','Chenxi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5978,'沅陵县','Yuanling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5979,'会同县','Huitong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5980,'溆浦县','Xupu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5981,'靖州苗族侗族自治县','Jingzhoumiaozudongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5982,'麻阳苗族自治县','Mayangmiaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5983,'新晃侗族自治县','Xinhuangdongzuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5984,'鹤城区','Hecheng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5985,'中方县','Zhongfang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5986,'常德市','Changde',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5987,'临澧县','Linli',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5988,'石门县','Shimen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5989,'澧县','Li',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5990,'鼎城区','Dingcheng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5991,'津市市','Jin',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5992,'汉寿县','Hanshou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5993,'武陵区','Wuling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5994,'桃源县','Taoyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5995,'安乡县','Anxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5996,'湘潭市','Xiangtan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5997,'岳塘区','Yuetang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5998,'雨湖区','Yuhu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(5999,'湘潭县','Xiangtan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6000,'韶山市','Shaoshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6001,'湘乡市','Xiangxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6002,'株洲市','Zhuzhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6003,'荷塘区','Hetang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6004,'攸县','You',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6005,'茶陵县','Chaling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6006,'炎陵县','Yanling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6007,'天元区','Tianyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6008,'芦淞区','Lusong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6009,'渌口区','Lukou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6010,'石峰区','Shifeng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6011,'醴陵市','Liling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6012,'邵阳市','Shaoyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6013,'隆回县','Longhui',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6014,'大祥区','Daxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6015,'邵阳县','Shaoyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6016,'绥宁县','Suining',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6017,'北塔区','Beita',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6018,'双清区','Shuangqing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6019,'城步苗族自治县','Chengbumiaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6020,'邵东市','Shaodong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6021,'新邵县','Xinshao',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6022,'新宁县','Xinning',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6023,'洞口县','Dongkou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6024,'武冈市','Wugang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6025,'郴州市','Chenzhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6026,'永兴县','Yongxing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6027,'安仁县','Anren',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6028,'汝城县','Rucheng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6029,'北湖区','Beihu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6030,'桂东县','Guidong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6031,'苏仙区','Suxian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6032,'资兴市','Zixing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6033,'临武县','Linwu',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6034,'宜章县','Yizhang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6035,'嘉禾县','Jiahe',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6036,'桂阳县','Guiyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6037,'永州市','Yongzhou',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6038,'祁阳县','Qiyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6039,'东安县','Dongan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6040,'冷水滩区','Lengshuitan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6041,'零陵区','Lingling',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6042,'新田县','Xintian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6043,'宁远县','Ningyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6044,'双牌县','Shuangpai',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6045,'蓝山县','Lanshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6046,'江永县','Jiangyong',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6047,'道县','Dao',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6048,'江华瑶族自治县','Jianghuayaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6049,'益阳市','Yiyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6050,'桃江县','Taojiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6051,'资阳区','Ziyang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6052,'赫山区','Heshan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6053,'安化县','Anhua',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6054,'南县','Nan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6055,'沅江市','Yuanjiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6056,'娄底市','Loudi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6057,'冷水江市','Lengshuijiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6058,'新化县','Xinhua',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6059,'涟源市','Lianyuan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6060,'双峰县','Shuangfeng',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6061,'娄星区','Louxing',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6062,'海南省','Hainan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6063,'临高县','Lingao',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6064,'南宝镇','Nanbaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6065,'博厚镇','Bohouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6066,'调楼镇','Diaolouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6067,'和舍镇','Heshezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6068,'东英镇','Dongyingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6069,'临城镇','Linchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6070,'波莲镇','Bolianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6071,'多文镇','Duowenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6072,'国营红华农场','Guoyinghonghuanongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6073,'国营加来农场','Guoyingjialainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6074,'新盈镇','Xinyingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6075,'皇桐镇','Huangtongzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6076,'定安县','Dingan',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6077,'新竹镇','Xinzhuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6078,'富文镇','Fuwenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6079,'国营中瑞农场','Guoyingzhongruinongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6080,'黄竹镇','Huangzhuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6081,'定城镇','Dingchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6082,'岭口镇','Lingkouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6083,'雷鸣镇','Leimingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6084,'国营南海农场','Guoyingnanhainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6085,'翰林镇','Hanlinzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6086,'国营金鸡岭农场','Guoyingjinjilingnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6087,'龙门镇','Longmenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6088,'龙河镇','Longhezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6089,'龙湖镇','Longhuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6090,'屯昌县','Tunchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6091,'国营中建农场','Guoyingzhongjiannongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6092,'屯城镇','Tunchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6093,'南吕镇','Nanlu:zhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6094,'新兴镇','Xinxingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6095,'国营中坤农场','Guoyingzhongkunnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6096,'西昌镇','Xichangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6097,'坡心镇','Poxinzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6098,'枫木镇','Fengmuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6099,'南坤镇','Nankunzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6100,'乌坡镇','Wupozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6101,'东方市','Dongfang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6102,'江边乡','Jiangbianxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6103,'东方华侨农场','Dongfanghuaqiaonongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6104,'天安乡','Tiananxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6105,'东河镇','Donghezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6106,'新龙镇','Xinlongzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6107,'国营广坝农场','Guoyingguangbanongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6108,'感城镇','Ganchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6109,'三家镇','Sanjiazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6110,'四更镇','Sigengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6111,'板桥镇','Banqiaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6112,'八所镇','Basuozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6113,'大田镇','Datianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6114,'琼中黎族苗族自治县','Qiongzhonglizumiaozuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6115,'湾岭镇','Wanlingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6116,'吊罗山乡','Diaoluoshanxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6117,'什运乡','Shenyunxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6118,'和平镇','Hepingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6119,'国营乌石农场','Guoyingwushinongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6120,'国营加钗农场','Guoyingjiachainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6121,'国营阳江农场','Guoyingyangjiangnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6122,'营根镇','Yinggenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6123,'上安乡','Shanganxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6124,'国营黎母山林业公司','Guoyinglimushanlinyegongsi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6125,'中平镇','Zhongpingzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6126,'长征镇','Zhangzhengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6127,'国营长征农场','Guoyingzhangzhengnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6128,'红毛镇','Hongmaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6129,'黎母山镇','Limushanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6130,'琼海市','Qionghai',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6131,'嘉积镇','Jiajizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6132,'会山镇','Huishanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6133,'国营东升农场','Guoyingdongshengnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6134,'万泉镇','Wanquanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6135,'国营东红农场','Guoyingdonghongnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6136,'国营东太农场','Guoyingdongtainongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6137,'彬村山华侨农场','Bincunshanhuaqiaonongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6138,'大路镇','Daluzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6139,'潭门镇','Tanmenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6140,'中原镇','Zhongyuanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6141,'阳江镇','Yangjiangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6142,'塔洋镇','Tayangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6143,'石壁镇','Shibizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6144,'龙江镇','Longjiangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6145,'长坡镇','Zhangpozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6146,'博鳌镇','Boaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6147,'昌江黎族自治县','Changjianglizuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6148,'国营霸王岭林场','Guoyingbawanglinglinchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6149,'乌烈镇','Wuliezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6150,'海南矿业联合有限公司','Hainankuangyelianheyouxiangongsi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6151,'十月田镇','Shiyuetianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6152,'七叉镇','Qichazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6153,'叉河镇','Chahezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6154,'石碌镇','Shiliuzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6155,'海尾镇','Haiweizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6156,'昌化镇','Changhuazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6157,'国营红林农场','Guoyinghonglinnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6158,'王下乡','Wangxiaxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6159,'陵水黎族自治县','Lingshuilizuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6160,'黎安镇','Lianzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6161,'国营吊罗山林业公司','Guoyingdiaoluoshanlinyegongsi',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6162,'新村镇','Xincunzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6163,'国营南平农场','Guoyingnanpingnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6164,'文罗镇','Wenluozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6165,'椰林镇','Yelinzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6166,'本号镇','Benhaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6167,'群英乡','Qunyingxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6168,'提蒙乡','Timengxiang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6169,'光坡镇','Guangpozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6170,'三才镇','Sancaizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6171,'隆广镇','Longguangzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6172,'英州镇','Yingzhouzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6173,'国营岭门农场','Guoyinglingmennongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6174,'万宁市','Wanning',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6175,'国营东兴农场','Guoyingdongxingnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6176,'万城镇','Wanchengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6177,'后安镇','Houanzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6178,'礼纪镇','Lijizhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6179,'山根镇','Shangenzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6180,'国营东和农场','Guoyingdonghenongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6181,'大茂镇','Damaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6182,'龙滚镇','Longgunzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6183,'和乐镇','Helezhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6184,'兴隆华侨农场','Xinglonghuaqiaonongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6185,'三更罗镇','Sangengluozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6186,'长丰镇','Zhangfengzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6187,'地方国营六连林场','Difangguoyingliulianlinchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6188,'南桥镇','Nanqiaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6189,'北大镇','Beidazhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6190,'东澳镇','Dongaozhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6191,'国营新中农场','Guoyingxinzhongnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6192,'乐东黎族自治县','Ledonglizuzizhixian',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6193,'万冲镇','Wanchongzhen',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6194,'国营山荣农场','Guoyingshanrongnongchang',NULL,'2021-01-30 02:00:11','2021-01-30 02:00:11'),(6195,'利国镇','Liguozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6196,'莺歌海镇','Yinggehaizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6197,'国营保国农场','Guoyingbaoguonongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6198,'抱由镇','Baoyouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6199,'国营乐光农场','Guoyingleguangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6200,'九所镇','Jiusuozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6201,'大安镇','Daanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6202,'国营莺歌海盐场','Guoyingyinggehaiyanchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6203,'佛罗镇','Foluozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6204,'国营尖峰岭林业公司','Guoyingjianfenglinglinyegongsi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6205,'黄流镇','Huangliuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6206,'志仲镇','Zhizhongzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6207,'千家镇','Qianjiazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6208,'尖峰镇','Jianfengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6209,'三沙市','Sansha',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6210,'西沙区','Xisha',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6211,'白沙黎族自治县','Baishalizuzizhixian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6212,'七坊镇','Qifangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6213,'荣邦乡','Rongbangxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6214,'金波乡','Jinboxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6215,'南开乡','Nankaixiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6216,'青松乡','Qingsongxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6217,'邦溪镇','Bangxizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6218,'国营龙江农场','Guoyinglongjiangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6219,'细水乡','Xishuixiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6220,'元门乡','Yuanmenxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6221,'打安镇','Daanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6222,'阜龙乡','Fulongxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6223,'牙叉镇','Yachazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6224,'国营白沙农场','Guoyingbaishanongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6225,'国营邦溪农场','Guoyingbangxinongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6226,'文昌市','Wenchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6227,'国营罗豆农场','Guoyingluodounongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6228,'文教镇','Wenjiaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6229,'东阁镇','Donggezhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6230,'国营东路农场','Guoyingdonglunongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6231,'会文镇','Huiwenzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6232,'铺前镇','Puqianzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6233,'锦山镇','Jinshanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6234,'翁田镇','Wengtianzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6235,'冯坡镇','Fengpozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6236,'龙楼镇','Longlouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6237,'国营南阳农场','Guoyingnanyangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6238,'东郊镇','Dongjiaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6239,'昌洒镇','Changsazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6240,'公坡镇','Gongpozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6241,'重兴镇','Zhongxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6242,'东路镇','Dongluzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6243,'文城镇','Wenchengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6244,'抱罗镇','Baoluozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6245,'潭牛镇','Tanniuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6246,'蓬莱镇','Penglaizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6247,'澄迈县','Chengmai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6248,'福山镇','Fushanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6249,'永发镇','Yongfazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6250,'金江镇','Jinjiangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6251,'文儒镇','Wenruzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6252,'中兴镇','Zhongxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6253,'老城镇','Laochengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6254,'国营红岗农场','Guoyinghonggangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6255,'瑞溪镇','Ruixizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6256,'国营红光农场','Guoyinghongguangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6257,'加乐镇','Jialezhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6258,'国营和岭农场','Guoyinghelingnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6259,'国营金安农场','Guoyingjinannongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6260,'大丰镇','Dafengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6261,'国营西达农场','Guoyingxidanongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6262,'仁兴镇','Renxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6263,'国营昆仑农场','Guoyingkunlunnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6264,'儋州市','Danzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6265,'洋浦经济开发区','Yangpujingjikaifa',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6266,'兰洋镇','Lanyangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6267,'和庆镇','Heqingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6268,'光村镇','Guangcunzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6269,'华南热作学院','Huananrezuoxueyuan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6270,'海头镇','Haitouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6271,'东成镇','Dongchengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6272,'国营蓝洋农场','Guoyinglanyangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6273,'王五镇','Wangwuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6274,'新州镇','Xinzhouzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6275,'木棠镇','Mutangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6276,'排浦镇','Paipuzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6277,'中和镇','Zhonghezhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6278,'雅星镇','Yaxingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6279,'南丰镇','Nanfengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6280,'国营八一农场','Guoyingbayinongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6281,'国营西联农场','Guoyingxiliannongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6282,'国营西培农场','Guoyingxipeinongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6283,'那大镇','Neidazhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6284,'白马井镇','Baimajingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6285,'大成镇','Dachengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6286,'峨蔓镇','Emanzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6287,'三都镇','Sanduzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6288,'三亚市','Sanya',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6289,'崖州区','Yazhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6290,'吉阳区','Jiyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6291,'天涯区','Tianya',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6292,'海棠区','Haitang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6293,'海口市','Haikou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6294,'美兰区','Meilan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6295,'琼山区','Qiongshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6296,'秀英区','Xiuying',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6297,'保亭黎族苗族自治县','Baotinglizumiaozuzizhixian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6298,'海南保亭热带作物研究所','Hainanbaotingredaizuowuyanjiusuo',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6299,'国营金江农场','Guoyingjinjiangnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6300,'新政镇','Xinzhengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6301,'加茂镇','Jiamaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6302,'南林乡','Nanlinxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6303,'国营新星农场','Guoyingxinxingnongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6304,'保城镇','Baochengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6305,'国营三道农场','Guoyingsandaonongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6306,'毛感乡','Maoganxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6307,'什玲镇','Shenlingzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6308,'六弓乡','Liugongxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6309,'响水镇','Xiangshuizhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6310,'三道镇','Sandaozhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6311,'五指山市','Wuzhishan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6312,'南圣镇','Nanshengzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6313,'毛阳镇','Maoyangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6314,'通什镇','Tongshenzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6315,'水满乡','Shuimanxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6316,'番阳镇','Fanyangzhen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6317,'畅好乡','Changhaoxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6318,'毛道乡','Maodaoxiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6319,'国营畅好农场','Guoyingchanghaonongchang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6320,'江苏省','Jiangsu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6321,'连云港市','Lianyungang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6322,'灌云县','Guanyun',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6323,'连云区','Lianyun',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6324,'东海县','Donghai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6325,'赣榆区','Ganyu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6326,'灌南县','Guannan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6327,'南京市','Nanjing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6328,'雨花台区','Yuhuatai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6329,'溧水区','Lishui',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6330,'江宁区','Jiangning',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6331,'浦口区','Pukou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6332,'高淳区','Gaochun',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6333,'六合区','Liuhe',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6334,'建邺区','Jianye',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6335,'秦淮区','Qinhuai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6336,'玄武区','Xuanwu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6337,'栖霞区','Qixia',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6338,'南通市','Nantong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6339,'海门区','Haimen',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6340,'启东市','Qidong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6341,'海安市','Haian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6342,'如东县','Rudong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6343,'通州区','Tongzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6344,'崇川区','Chongchuan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6345,'如皋市','Rugao',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6346,'淮安市','Huaian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6347,'洪泽区','Hongze',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6348,'金湖县','Jinhu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6349,'淮阴区','Huaiyin',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6350,'盱眙县','Xuyi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6351,'涟水县','Lianshui',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6352,'清江浦区','Qingjiangpu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6353,'淮安区','Huaian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6354,'扬州市','Yangzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6355,'广陵区','Guangling',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6356,'邗江区','Hanjiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6357,'仪征市','Yizheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6358,'高邮市','Gaoyou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6359,'宝应县','Baoying',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6360,'江都区','Jiangdu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6361,'泰州市','Taizhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6362,'兴化市','Xinghua',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6363,'姜堰区','Jiangyan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6364,'海陵区','Hailing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6365,'高港区','Gaogang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6366,'靖江市','Jingjiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6367,'泰兴市','Taixing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6368,'盐城市','Yancheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6369,'滨海县','Binhai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6370,'建湖县','Jianhu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6371,'射阳县','Sheyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6372,'阜宁县','Funing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6373,'盐都区','Yandu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6374,'亭湖区','Tinghu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6375,'东台市','Dongtai',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6376,'大丰区','Dafeng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6377,'响水县','Xiangshui',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6378,'徐州市','Xuzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6379,'新沂市','Xinyi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6380,'泉山区','Quanshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6381,'铜山区','Tongshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6382,'睢宁县','Suining',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6383,'邳州市','Pizhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6384,'沛县','Pei',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6385,'丰县','Feng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6386,'贾汪区','Jiawang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6387,'云龙区','Yunlong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6388,'宿迁市','Suqian',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6389,'泗洪县','Sihong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6390,'泗阳县','Siyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6391,'宿城区','Sucheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6392,'宿豫区','Suyu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6393,'沭阳县','Shuyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6394,'苏州市','Suzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6395,'太仓市','Taicang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6396,'姑苏区','Gusu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6397,'吴江区','Wujiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6398,'相城区','Xiangcheng',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6399,'苏州工业园区','Suzhougongyeyuan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6400,'常熟市','Changshu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6401,'昆山市','Kunshan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6402,'虎丘区','Huqiu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6403,'吴中区','Wuzhong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6404,'张家港市','Zhangjiagang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6405,'无锡市','Wuxi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6406,'梁溪区','Liangxi',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6407,'新吴区','Xinwu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6408,'滨湖区','Binhu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6409,'锡山区','Xishan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6410,'宜兴市','Yixing',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6411,'惠山区','Huishan',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6412,'江阴市','Jiangyin',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6413,'镇江市','Zhenjiang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6414,'扬中市','Yangzhong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6415,'润州区','Runzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6416,'京口区','Jingkou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6417,'丹徒区','Dantu',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6418,'丹阳市','Danyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6419,'句容市','Jurong',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6420,'常州市','Changzhou',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6421,'溧阳市','Liyang',NULL,'2021-01-30 02:00:12','2021-01-30 02:00:12'),(6422,'新北区','Xinbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6423,'武进区','Wujin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6424,'天宁区','Tianning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6425,'钟楼区','Zhonglou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6426,'金坛区','Jintan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6427,'青海省','Qinghai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6428,'海南藏族自治州','Hainanzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6429,'共和县','Gonghe',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6430,'贵德县','Guide',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6431,'同德县','Tongde',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6432,'贵南县','Guinan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6433,'兴海县','Xinghai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6434,'海东市','Haidong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6435,'乐都区','Ledu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6436,'民和回族土族自治县','Minhehuizutuzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6437,'化隆回族自治县','Hualonghuizuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6438,'循化撒拉族自治县','Xunhuasalazuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6439,'平安区','Pingan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6440,'互助土族自治县','Huzhutuzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6441,'海西蒙古族藏族自治州','Haiximengguzuzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6442,'格尔木市','Geermu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6443,'都兰县','Dulan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6444,'德令哈市','Delingha',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6445,'天峻县','Tianjun',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6446,'乌兰县','Wulan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6447,'海西蒙古族藏族自治州直辖','Haiximengguzuzangzuzizhizhouzhixia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6448,'茫崖市','Mangya',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6449,'玉树藏族自治州','Yushuzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6450,'曲麻莱县','Qumalai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6451,'治多县','Zhiduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6452,'称多县','Chengduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6453,'杂多县','Zaduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6454,'玉树市','Yushu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6455,'囊谦县','Nangqian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6456,'果洛藏族自治州','Guoluozangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6457,'玛沁县','Maqin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6458,'甘德县','Gande',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6459,'班玛县','Banma',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6460,'久治县','Jiuzhi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6461,'达日县','Dari',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6462,'玛多县','Maduo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6463,'黄南藏族自治州','Huangnanzangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6464,'尖扎县','Jianzha',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6465,'同仁市','Tongren',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6466,'泽库县','Zeku',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6467,'河南蒙古族自治县','Henanmengguzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6468,'西宁市','Xining',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6469,'湟源县','Huangyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6470,'大通回族土族自治县','Datonghuizutuzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6471,'城东区','Chengdong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6472,'城中区','Chengzhong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6473,'城西区','Chengxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6474,'湟中区','Huangzhong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6475,'城北区','Chengbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6476,'海北藏族自治州','Haibeizangzuzizhizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6477,'海晏县','Haiyan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6478,'门源回族自治县','Menyuanhuizuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6479,'刚察县','Gangcha',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6480,'祁连县','Qilian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6481,'广西壮族自治区','Guangxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6482,'柳州市','Liuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6483,'三江侗族自治县','Sanjiangdongzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6484,'融水苗族自治县','Rongshuimiaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6485,'融安县','Rongan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6486,'鹿寨县','Luzhai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6487,'柳城县','Liucheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6488,'柳北区','Liubei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6489,'鱼峰区','Yufeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6490,'柳江区','Liujiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6491,'柳南区','Liunan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6492,'钦州市','Qinzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6493,'钦南区','Qinnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6494,'钦北区','Qinbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6495,'灵山县','Lingshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6496,'浦北县','Pubei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6497,'北海市','Beihai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6498,'银海区','Yinhai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6499,'海城区','Haicheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6500,'铁山港区','Tieshangang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6501,'合浦县','Hepu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6502,'南宁市','Nanning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6503,'马山县','Mashan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6504,'上林县','Shanglin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6505,'武鸣区','Wuming',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6506,'宾阳县','Binyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6507,'横县','Heng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6508,'邕宁区','Yongning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6509,'江南区','Jiangnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6510,'良庆区','Liangqing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6511,'西乡塘区','Xixiangtang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6512,'青秀区','Qingxiu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6513,'兴宁区','Xingning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6514,'隆安县','Longan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6515,'百色市','Baise',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6516,'西林县','Xilin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6517,'隆林各族自治县','Longlingezuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6518,'乐业县','Leye',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6519,'凌云县','Lingyun',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6520,'右江区','Youjiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6521,'靖西市','Jingxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6522,'平果市','Pingguo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6523,'那坡县','Neipo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6524,'田林县','Tianlin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6525,'德保县','Debao',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6526,'田东县','Tiandong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6527,'田阳区','Tianyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6528,'梧州市','Wuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6529,'蒙山县','Mengshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6530,'长洲区','Zhangzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6531,'龙圩区','Longwei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6532,'岑溪市','Cenxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6533,'万秀区','Wanxiu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6534,'苍梧县','Cangwu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6535,'藤县','Teng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6536,'桂林市','Guilin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6537,'兴安县','Xingan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6538,'七星区','Qixing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6539,'临桂区','Lingui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6540,'雁山区','Yanshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6541,'永福县','Yongfu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6542,'阳朔县','Yangshuo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6543,'荔浦市','Lipu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6544,'龙胜各族自治县','Longshenggezuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6545,'秀峰区','Xiufeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6546,'灌阳县','Guanyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6547,'全州县','Quanzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6548,'象山区','Xiangshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6549,'叠彩区','Diecai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6550,'灵川县','Lingchuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6551,'资源县','Ziyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6552,'恭城瑶族自治县','Gongchengyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6553,'平乐县','Pingle',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6554,'防城港市','Fangchenggang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6555,'防城区','Fangcheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6556,'港口区','Gangkou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6557,'东兴市','Dongxing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6558,'上思县','Shangsi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6559,'崇左市','Chongzuo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6560,'江州区','Jiangzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6561,'天等县','Tiandeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6562,'大新县','Daxin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6563,'扶绥县','Fusui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6564,'龙州县','Longzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6565,'凭祥市','Pingxiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6566,'宁明县','Ningming',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6567,'贺州市','Hezhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6568,'富川瑶族自治县','Fuchuanyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6569,'昭平县','Zhaoping',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6570,'钟山县','Zhongshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6571,'平桂区','Pinggui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6572,'八步区','Babu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6573,'玉林市','Yulin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6574,'福绵区','Fumian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6575,'兴业县','Xingye',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6576,'博白县','Bobai',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6577,'陆川县','Luchuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6578,'玉州区','Yuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6579,'北流市','Beiliu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6580,'容县','Rong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6581,'来宾市','Laibin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6582,'金秀瑶族自治县','Jinxiuyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6583,'忻城县','Xincheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6584,'兴宾区','Xingbin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6585,'象州县','Xiangzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6586,'合山市','Heshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6587,'武宣县','Wuxuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6588,'河池市','Hechi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6589,'天峨县','Tiane',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6590,'南丹县','Nandan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6591,'环江毛南族自治县','Huanjiangmaonanzuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6592,'罗城仫佬族自治县','Luochengmulaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6593,'金城江区','Jinchengjiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6594,'凤山县','Fengshan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6595,'宜州区','Yizhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6596,'大化瑶族自治县','Dahuayaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6597,'都安瑶族自治县','Duanyaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6598,'东兰县','Donglan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6599,'巴马瑶族自治县','Bamayaozuzizhixian',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6600,'贵港市','Guigang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6601,'港北区','Gangbei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6602,'港南区','Gangnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6603,'覃塘区','Tantang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6604,'平南县','Pingnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6605,'桂平市','Guiping',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6606,'宁夏回族自治区','Ningxia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6607,'固原市','Guyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6608,'彭阳县','Pengyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6609,'泾源县','Jingyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6610,'隆德县','Longde',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6611,'原州区','Yuanzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6612,'西吉县','Xiji',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6613,'石嘴山市','Shizuishan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6614,'惠农区','Huinong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6615,'平罗县','Pingluo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6616,'大武口区','Dawukou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6617,'中卫市','Zhongwei',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6618,'海原县','Haiyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6619,'中宁县','Zhongning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6620,'沙坡头区','Shapotou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6621,'吴忠市','Wuzhong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6622,'青铜峡市','Qingtongxia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6623,'盐池县','Yanchi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6624,'同心县','Tongxin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6625,'红寺堡区','Hongsibao',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6626,'利通区','Litong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6627,'银川市','Yinchuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6628,'贺兰县','Helan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6629,'西夏区','Xixia',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6630,'金凤区','Jinfeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6631,'永宁县','Yongning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6632,'兴庆区','Xingqing',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6633,'灵武市','Lingwu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6634,'江西省','Jiangxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6635,'赣州市','Ganzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6636,'于都县','Yudu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6637,'瑞金市','Ruijin',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6638,'宁都县','Ningdu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6639,'石城县','Shicheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6640,'会昌县','Huichang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6641,'兴国县','Xingguo',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6642,'上犹县','Shangyou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6643,'信丰县','Xinfeng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6644,'全南县','Quannan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6645,'安远县','Anyuan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6646,'崇义县','Chongyi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6647,'龙南市','Longnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6648,'大余县','Dayu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6649,'寻乌县','Xunwu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6650,'定南县','Dingnan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6651,'章贡区','Zhanggong',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6652,'赣县区','Gan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6653,'南康区','Nankang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6654,'九江市','Jiujiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6655,'武宁县','Wuning',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6656,'彭泽县','Pengze',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6657,'湖口县','Hukou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6658,'都昌县','Duchang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6659,'柴桑区','Chaisang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6660,'修水县','Xiushui',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6661,'庐山市','Lushan',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6662,'濂溪区','Lianxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6663,'永修县','Yongxiu',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6664,'共青城市','Gongqingcheng',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6665,'瑞昌市','Ruichang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6666,'德安县','Dean',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6667,'浔阳区','Xunyang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6668,'抚州市','Fuzhou',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6669,'东乡区','Dongxiang',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6670,'金溪县','Jinxi',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6671,'乐安县','Lean',NULL,'2021-01-30 02:00:13','2021-01-30 02:00:13'),(6672,'资溪县','Zixi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6673,'南城县','Nancheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6674,'临川区','Linchuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6675,'崇仁县','Chongren',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6676,'南丰县','Nanfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6677,'宜黄县','Yihuang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6678,'黎川县','Lichuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6679,'广昌县','Guangchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6680,'景德镇市','Jingdezhen',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6681,'珠山区','Zhushan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6682,'浮梁县','Fuliang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6683,'昌江区','Changjiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6684,'乐平市','Leping',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6685,'萍乡市','Pingxiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6686,'安源区','Anyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6687,'上栗县','Shangli',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6688,'莲花县','Lianhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6689,'芦溪县','Luxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6690,'湘东区','Xiangdong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6691,'宜春市','Yichun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6692,'奉新县','Fengxin',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6693,'高安市','Gaoan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6694,'上高县','Shanggao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6695,'宜丰县','Yifeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6696,'丰城市','Fengcheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6697,'铜鼓县','Tonggu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6698,'万载县','Wanzai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6699,'袁州区','Yuanzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6700,'樟树市','Zhangshu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6701,'靖安县','Jingan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6702,'南昌市','Nanchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6703,'进贤县','Jinxian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6704,'青云谱区','Qingyunpu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6705,'南昌县','Nanchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6706,'西湖区','Xihu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6707,'青山湖区','Qingshanhu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6708,'东湖区','Donghu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6709,'红谷滩区','Honggutan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6710,'安义县','Anyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6711,'新建区','Xinjian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6712,'新余市','Xinyu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6713,'分宜县','Fenyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6714,'渝水区','Yushui',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6715,'吉安市','Jian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6716,'吉安县','Jian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6717,'吉水县','Jishui',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6718,'青原区','Qingyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6719,'永新县','Yongxin',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6720,'永丰县','Yongfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6721,'吉州区','Jizhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6722,'万安县','Wanan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6723,'遂川县','Suichuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6724,'新干县','Xingan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6725,'安福县','Anfu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6726,'峡江县','Xiajiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6727,'泰和县','Taihe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6728,'井冈山市','Jinggangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6729,'上饶市','Shangrao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6730,'德兴市','Dexing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6731,'婺源县','Wuyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6732,'弋阳县','Yiyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6733,'横峰县','Hengfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6734,'广丰区','Guangfeng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6735,'铅山县','Qianshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6736,'玉山县','Yushan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6737,'信州区','Xinzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6738,'广信区','Guangxin',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6739,'余干县','Yugan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6740,'鄱阳县','Poyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6741,'万年县','Wannian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6742,'鹰潭市','Yingtan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6743,'贵溪市','Guixi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6744,'月湖区','Yuehu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6745,'余江区','Yujiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6746,'浙江省','Zhejiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6747,'台州市','Taizhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6748,'临海市','Linhai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6749,'椒江区','Jiaojiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6750,'温岭市','Wenling',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6751,'玉环市','Yuhuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6752,'路桥区','Luqiao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6753,'天台县','Tiantai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6754,'三门县','Sanmen',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6755,'仙居县','Xianju',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6756,'黄岩区','Huangyan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6757,'嘉兴市','Jiaxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6758,'平湖市','Pinghu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6759,'南湖区','Nanhu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6760,'海盐县','Haiyan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6761,'嘉善县','Jiashan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6762,'秀洲区','Xiuzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6763,'海宁市','Haining',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6764,'桐乡市','Tongxiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6765,'宁波市','Ningbo',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6766,'北仑区','Beilun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6767,'象山县','Xiangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6768,'镇海区','Zhenhai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6769,'宁海县','Ninghai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6770,'鄞州区','Yinzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6771,'海曙区','Haishu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6772,'余姚市','Yuyao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6773,'慈溪市','Cixi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6774,'奉化区','Fenghua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6775,'舟山市','Zhoushan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6776,'嵊泗县','Shengsi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6777,'岱山县','Daishan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6778,'定海区','Dinghai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6779,'温州市','Wenzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6780,'洞头区','Dongtou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6781,'苍南县','Cangnan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6782,'平阳县','Pingyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6783,'龙港市','Longgang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6784,'瑞安市','Ruian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6785,'泰顺县','Taishun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6786,'文成县','Wencheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6787,'鹿城区','Lucheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6788,'龙湾区','Longwan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6789,'瓯海区','Ouhai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6790,'乐清市','Leqing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6791,'永嘉县','Yongjia',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6792,'丽水市','Lishui',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6793,'莲都区','Liandu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6794,'云和县','Yunhe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6795,'龙泉市','Longquan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6796,'松阳县','Songyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6797,'遂昌县','Suichang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6798,'景宁畲族自治县','Jingningshezuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6799,'缙云县','Jinyun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6800,'青田县','Qingtian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6801,'庆元县','Qingyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6802,'衢州市','Quzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6803,'开化县','Kaihua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6804,'柯城区','Kecheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6805,'常山县','Changshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6806,'江山市','Jiangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6807,'龙游县','Longyou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6808,'衢江区','Qujiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6809,'金华市','Jinhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6810,'浦江县','Pujiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6811,'永康市','Yongkang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6812,'武义县','Wuyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6813,'兰溪市','Lanxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6814,'东阳市','Dongyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6815,'磐安县','Panan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6816,'金东区','Jindong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6817,'义乌市','Yiwu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6818,'婺城区','Wucheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6819,'湖州市','Huzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6820,'长兴县','Zhangxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6821,'吴兴区','Wuxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6822,'南浔区','Nanxun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6823,'安吉县','Anji',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6824,'德清县','Deqing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6825,'杭州市','Hangzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6826,'上城区','Shangcheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6827,'富阳区','Fuyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6828,'桐庐县','Tonglu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6829,'建德市','Jiande',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6830,'淳安县','Chunan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6831,'滨江区','Binjiang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6832,'萧山区','Xiaoshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6833,'拱墅区','Gongshu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6834,'余杭区','Yuhang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6835,'下城区','Xiacheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6836,'江干区','Jianggan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6837,'临安区','Linan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6838,'绍兴市','Shaoxing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6839,'嵊州市','Shengzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6840,'越城区','Yuecheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6841,'柯桥区','Keqiao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6842,'诸暨市','Zhuji',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6843,'上虞区','Shangyu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6844,'新昌县','Xinchang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6845,'河北省','Hebei',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6846,'唐山市','Tangshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6847,'迁西县','Qianxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6848,'迁安市','Qianan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6849,'遵化市','Zunhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6850,'滦州市','Luanzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6851,'滦南县','Luannan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6852,'曹妃甸区','Caofeidian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6853,'乐亭县','Leting',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6854,'玉田县','Yutian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6855,'路南区','Lunan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6856,'路北区','Lubei',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6857,'丰南区','Fengnan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6858,'丰润区','Fengrun',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6859,'开平区','Kaiping',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6860,'古冶区','Guye',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6861,'廊坊市','Langfang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6862,'大厂回族自治县','Dachanghuizuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6863,'大城县','Dacheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6864,'永清县','Yongqing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6865,'固安县','Guan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6866,'香河县','Xianghe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6867,'文安县','Wenan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6868,'安次区','Anci',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6869,'三河市','Sanhe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6870,'广阳区','Guangyang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6871,'霸州市','Bazhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6872,'秦皇岛市','Qinhuangdao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6873,'青龙满族自治县','Qinglongmanzuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6874,'卢龙县','Lulong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6875,'山海关区','Shanhaiguan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6876,'海港区','Haigang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6877,'北戴河区','Beidaihe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6878,'抚宁区','Funing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6879,'昌黎县','Changli',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6880,'沧州市','Cangzhou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6881,'运河区','Yunhe',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6882,'任丘市','Renqiu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6883,'献县','Xian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6884,'东光县','Dongguang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6885,'海兴县','Haixing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6886,'南皮县','Nanpi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6887,'吴桥县','Wuqiao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6888,'黄骅市','Huanghua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6889,'青县','Qing',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6890,'泊头市','Botou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6891,'肃宁县','Suning',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6892,'河间市','Hejian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6893,'盐山县','Yanshan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6894,'孟村回族自治县','Mengcunhuizuzizhixian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6895,'沧县','Cang',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6896,'张家口市','Zhangjiakou',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6897,'沽源县','Guyuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6898,'张北县','Zhangbei',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6899,'赤城县','Chicheng',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6900,'尚义县','Shangyi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6901,'崇礼区','Chongli',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6902,'康保县','Kangbao',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6903,'万全区','Wanquan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6904,'下花园区','Xiahuayuan',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6905,'涿鹿县','Zhuolu',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6906,'怀来县','Huailai',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6907,'桥西区','Qiaoxi',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6908,'桥东区','Qiaodong',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6909,'宣化区','Xuanhua',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6910,'怀安县','Huaian',NULL,'2021-01-30 02:00:14','2021-01-30 02:00:14'),(6911,'阳原县','Yangyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6912,'蔚县','Yu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6913,'邯郸市','Handan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6914,'武安市','Wuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6915,'峰峰矿区','Fengfengkuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6916,'魏县','Wei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6917,'肥乡区','Feixiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6918,'涉县','She',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6919,'临漳县','Linzhang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6920,'曲周县','Quzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6921,'鸡泽县','Jize',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6922,'复兴区','Fuxing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6923,'磁县','Ci',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6924,'丛台区','Congtai',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6925,'永年区','Yongnian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6926,'邯山区','Hanshan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6927,'成安县','Chengan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6928,'馆陶县','Guantao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6929,'邱县','Qiu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6930,'广平县','Guangping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6931,'大名县','Daming',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6932,'石家庄市','Shijiazhuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6933,'平山县','Pingshan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6934,'正定县','Zhengding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6935,'灵寿县','Lingshou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6936,'藁城区','Gaocheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6937,'裕华区','Yuhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6938,'无极县','Wuji',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6939,'鹿泉区','Luquan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6940,'元氏县','Yuanshi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6941,'赞皇县','Zanhuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6942,'晋州市','Jinzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6943,'高邑县','Gaoyi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6944,'新乐市','Xinle',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6945,'井陉矿区','Jingxingkuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6946,'辛集市','Xinji',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6947,'井陉县','Jingxing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6948,'深泽县','Shenze',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6949,'赵县','Zhao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6950,'栾城区','Luancheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6951,'行唐县','Xingtang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6952,'邢台市','Xingtai',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6953,'清河县','Qinghe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6954,'临城县','Lincheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6955,'南宫市','Nangong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6956,'内丘县','Neiqiu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6957,'柏乡县','Boxiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6958,'新河县','Xinhe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6959,'广宗县','Guangzong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6960,'平乡县','Pingxiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6961,'沙河市','Shahe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6962,'南和区','Nanhe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6963,'宁晋县','Ningjin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6964,'巨鹿县','Julu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6965,'任泽区','Renze',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6966,'隆尧县','Longyao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6967,'信都区','Xindu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6968,'襄都区','Xiangdu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6969,'威县','Wei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6970,'临西县','Linxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6971,'衡水市','Hengshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6972,'桃城区','Taocheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6973,'枣强县','Zaoqiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6974,'深州市','Shenzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6975,'阜城县','Fucheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6976,'饶阳县','Raoyang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6977,'安平县','Anping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6978,'冀州区','Jizhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6979,'景县','Jing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6980,'故城县','Gucheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6981,'武邑县','Wuyi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6982,'武强县','Wuqiang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6983,'保定市','Baoding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6984,'涞源县','Laiyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6985,'易县','Yi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6986,'顺平县','Shunping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6987,'徐水区','Xushui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6988,'安新县','Anxin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6989,'高阳县','Gaoyang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6990,'竞秀区','Jingxiu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6991,'安国市','Anguo',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6992,'定州市','Dingzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6993,'莲池区','Lianchi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6994,'涞水县','Laishui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6995,'涿州市','Zhuozhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6996,'博野县','Boye',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6997,'蠡县','Li',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6998,'望都县','Wangdu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(6999,'阜平县','Fuping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7000,'曲阳县','Quyang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7001,'唐县','Tang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7002,'高碑店市','Gaobeidian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7003,'定兴县','Dingxing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7004,'容城县','Rongcheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7005,'雄县','Xiong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7006,'满城区','Mancheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7007,'清苑区','Qingyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7008,'承德市','Chengde',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7009,'隆化县','Longhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7010,'围场满族蒙古族自治县','Weichangmanzumengguzuzizhixian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7011,'丰宁满族自治县','Fengningmanzuzizhixian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7012,'宽城满族自治县','Kuanchengmanzuzizhixian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7013,'鹰手营子矿区','Yingshouyingzikuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7014,'兴隆县','Xinglong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7015,'平泉市','Pingquan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7016,'滦平县','Luanping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7017,'双滦区','Shuangluan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7018,'承德县','Chengde',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7019,'双桥区','Shuangqiao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7020,'台湾省','Taiwan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7021,'台北市','Taibei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7022,'南港区','Nangang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7023,'内湖区','Neihu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7024,'大安区','Daan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7025,'信义区','Xinyi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7026,'文山区','Wenshan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7027,'中正区','Zhongzheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7028,'万华区','Wanhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7029,'士林区','Shilin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7030,'北投区','Beitou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7031,'新北市','Xinbei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7032,'板桥区','Banqiao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7033,'汐止区','Xizhi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7034,'新店区','Xindian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7035,'永和区','Yonghe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7036,'中和区','Zhonghe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7037,'土城区','Tucheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7038,'树林区','Shulin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7039,'三重区','Sanzhong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7040,'新庄区','Xinzhuang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7041,'芦洲区','Luzhou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7042,'瑞芳区','Ruifang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7043,'三峡区','Sanxia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7044,'莺歌区','Yingge',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7045,'淡水区','Danshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7046,'万里区','Wanli',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7047,'深坑区','Shenkeng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7048,'石碇区','Shiding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7049,'平溪区','Pingxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7050,'双溪区','Shuangxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7051,'贡寮区','Gongliao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7052,'坪林区','Pinglin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7053,'乌来区','Wulai',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7054,'林口区','Linkou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7055,'五股区','Wugu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7056,'八里区','Bali',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7057,'三芝区','Sanzhi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7058,'石门区','Shimen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7059,'桃园市','Taoyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7060,'桃园区','Taoyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7061,'中坜区','Zhongli',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7062,'平镇区','Pingzhen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7063,'八德区','Bade',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7064,'杨梅区','Yangmei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7065,'芦竹区','Luzhu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7066,'大溪区','Daxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7067,'龙潭区','Longtan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7068,'龟山区','Guishan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7069,'大园区','Dayuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7070,'观音区','Guanyin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7071,'新屋区','Xinwu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7072,'台中市','Taizhong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7073,'中区','Zhong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7074,'西区','Xi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7075,'北屯区','Beitun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7076,'西屯区','Xitun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7077,'南屯区','Nantun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7078,'大里区','Dali',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7079,'雾峰区','Wufeng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7080,'乌日区','Wuri',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7081,'丰原区','Fengyuan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7082,'后里区','Houli',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7083,'潭子区','Tanzi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7084,'大雅区','Daya',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7085,'神冈区','Shengang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7086,'石冈区','Shigang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7087,'东势区','Dongshi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7088,'新社区','Xinshe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7089,'大肚区','Dadu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7090,'沙鹿区','Shalu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7091,'龙井区','Longjing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7092,'梧栖区','Wuqi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7093,'清水区','Qingshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7094,'大甲区','Dajia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7095,'外埔区','Waipu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7096,'台南市','Tainan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7097,'安平区','Anping',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7098,'安南区','Annan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7099,'永康区','Yongkang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7100,'归仁区','Guiren',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7101,'新化区','Xinhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7102,'左镇区','Zuozhen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7103,'玉井区','Yujing',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7104,'楠西区','Nanxi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7105,'南化区','Nanhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7106,'仁德区','Rende',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7107,'关庙区','Guanmiao',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7108,'龙崎区','Longqi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7109,'官田区','Guantian',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7110,'麻豆区','Madou',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7111,'佳里区','Jiali',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7112,'西港区','Xigang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7113,'七股区','Qigu',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7114,'将军区','Jiangjun',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7115,'学甲区','Xuejia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7116,'北门区','Beimen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7117,'新营区','Xinying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7118,'后壁区','Houbi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7119,'白河区','Baihe',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7120,'六甲区','Liujia',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7121,'下营区','Xiaying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7122,'柳营区','Liuying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7123,'盐水区','Yanshui',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7124,'善化区','Shanhua',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7125,'大内区','Danei',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7126,'山上区','Shanshang',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7127,'安定区','Anding',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7128,'高雄市','Gaoxiong',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7129,'楠梓区','Nanzi',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7130,'左营区','Zuoying',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7131,'鼓山区','Gushan',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7132,'三民区','Sanmin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7133,'盐埕区','Yancheng',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7134,'前金区','Qianjin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7135,'苓雅区','Lingya',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7136,'前镇区','Qianzhen',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7137,'旗津区','Qijin',NULL,'2021-01-30 02:00:15','2021-01-30 02:00:15'),(7138,'小港区','Xiaogang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7139,'凤山区','Fengshan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7140,'大寮区','Daliao',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7141,'鸟松区','Niaosong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7142,'林园区','Linyuan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7143,'仁武区','Renwu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7144,'大树区','Dashu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7145,'大社区','Dashe',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7146,'冈山区','Gangshan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7147,'路竹区','Luzhu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7148,'桥头区','Qiaotou',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7149,'梓官区','Ziguan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7150,'弥陀区','Mituo',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7151,'永安区','Yongan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7152,'燕巢区','Yanchao',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7153,'阿莲区','Alian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7154,'茄萣区','Qieding',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7155,'湖内区','Hunei',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7156,'旗山区','Qishan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7157,'美浓区','Meinong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7158,'内门区','Neimen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7159,'杉林区','Shanlin',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7160,'甲仙区','Jiaxian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7161,'六龟区','Liugui',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7162,'茂林区桃源区','Maolintaoyuan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7163,'那玛夏区','Neimaxia',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7164,'基隆市','Jilong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7165,'仁爱区','Renai',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7166,'安乐区','Anle',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7167,'暖暖区','Nuannuan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7168,'新竹市','Xinzhu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7169,'香山区','Xiangshan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7170,'嘉义市','Jiayi',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7171,'新竹县','Xinzhu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7172,'竹北市','Zhubei',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7173,'湖口乡','Hukouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7174,'新丰乡','Xinfengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7175,'新埔镇','Xinpuzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7176,'关西镇','Guanxizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7177,'芎林乡','Xionglinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7178,'宝山乡','Baoshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7179,'竹东镇','Zhudongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7180,'五峰乡','Wufengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7181,'横山乡','Hengshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7182,'尖石乡','Jianshixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7183,'北埔乡','Beipuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7184,'峨眉乡','Emeixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7185,'苗栗县','Miaoli',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7186,'竹南镇','Zhunanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7187,'头份乡','Toufenxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7188,'三湾乡','Sanwanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7189,'南庄乡','Nanzhuangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7190,'狮潭乡','Shitanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7191,'后龙镇','Houlongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7192,'通霄镇','Tongxiaozhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7193,'苑里镇','Yuanlizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7194,'苗栗市','Miaoli',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7195,'造桥乡','Zaoqiaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7196,'头屋乡','Touwuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7197,'公馆乡','Gongguanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7198,'大湖乡','Dahuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7199,'泰安乡','Taianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7200,'铜锣乡','Tongluoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7201,'三义乡','Sanyixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7202,'西湖乡','Xihuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7203,'卓兰镇','Zhuolanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7204,'彰化县','Zhanghua',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7205,'彰化市','Zhanghua',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7206,'芬园乡','Fenyuanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7207,'花坛乡','Huatanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7208,'秀水乡','Xiushuixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7209,'鹿港镇','Lugangzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7210,'福兴乡','Fuxingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7211,'线西乡','Xianxixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7212,'和美镇','Hemeizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7213,'伸港乡','Shengangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7214,'员林市','Yuanlin',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7215,'社头乡','Shetouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7216,'永靖乡','Yongjingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7217,'埔心乡','Puxinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7218,'溪湖镇','Xihuzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7219,'大村乡','Dacunxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7220,'埔盐乡','Puyanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7221,'田中镇','Tianzhongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7222,'北斗镇','Beidouzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7223,'田尾乡','Tianweixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7224,'坤头乡','Kuntouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7225,'溪州乡','Xizhouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7226,'竹塘乡','Zhutangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7227,'二林镇','Erlinzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7228,'大城乡','Dachengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7229,'芳苑乡','Fangyuanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7230,'二水乡','Ershuixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7231,'南投县','Nantou',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7232,'南投市','Nantou',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7233,'中寮乡','Zhongliaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7234,'草屯镇','Caotunzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7235,'国姓乡','Guoxingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7236,'埔里镇','Pulizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7237,'仁爱乡','Renaixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7238,'名间乡','Mingjianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7239,'集集镇','Jijizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7240,'水里乡','Shuilixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7241,'鱼池乡','Yuchixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7242,'信义乡','Xinyixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7243,'竹山镇','Zhushanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7244,'鹿谷乡','Luguxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7245,'云林县','Yunlin',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7246,'斗南镇','Dounanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7247,'大埤乡','Dapixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7248,'虎尾镇','Huweizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7249,'土库镇','Tukuzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7250,'褒忠乡','Baozhongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7251,'东势乡','Dongshixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7252,'台西乡','Taixixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7253,'仑背乡','Lunbeixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7254,'麦寮乡','Mailiaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7255,'斗六市','Douliu',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7256,'林内乡','Linneixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7257,'古坑乡','Gukengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7258,'莿桐乡','Citongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7259,'西螺镇','Xiluozhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7260,'二仑乡','Erlunxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7261,'北港镇','Beigangzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7262,'水林乡','Shuilinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7263,'口湖乡','Kouhuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7264,'四湖乡','Sihuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7265,'元长乡','Yuanzhangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7266,'嘉义县','Jiayi',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7267,'番路乡','Fanluxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7268,'梅山乡','Meishanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7269,'竹崎乡','Zhuqixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7270,'阿里山乡','Alishanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7271,'中埔乡','Zhongpuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7272,'大埔乡','Dapuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7273,'水上乡','Shuishangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7274,'鹿草乡','Lucaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7275,'太保市','Taibao',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7276,'朴子市','Pozi',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7277,'东石乡','Dongshixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7278,'六脚乡','Liujiaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7279,'新港乡','Xingangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7280,'民雄乡','Minxiongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7281,'大林镇','Dalinzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7282,'溪口乡','Xikouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7283,'义竹乡','Yizhuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7284,'布袋镇','Budaizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7285,'屏东县','Pingdong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7286,'屏东市','Pingdong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7287,'三地门乡','Sandimenxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7288,'雾台乡','Wutaixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7289,'玛家乡','Majiaxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7290,'九如乡','Jiuruxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7291,'里港乡','Ligangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7292,'高树乡','Gaoshuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7293,'盐埔乡','Yanpuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7294,'长治乡','Zhangzhixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7295,'麟洛乡','Linluoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7296,'竹田乡','Zhutianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7297,'内埔乡','Neipuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7298,'万丹乡','Wandanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7299,'潮州镇','Chaozhouzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7300,'泰武乡','Taiwuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7301,'来义乡','Laiyixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7302,'万峦乡','Wanluanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7303,'崁顶乡','Kandingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7304,'新埤乡','Xinpixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7305,'南州乡','Nanzhouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7306,'林边乡','Linbianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7307,'东港镇','Donggangzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7308,'琉球乡','Liuqiuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7309,'佳冬乡','Jiadongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7310,'新园乡','Xinyuanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7311,'枋寮乡','Fangliaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7312,'枋山乡','Fangshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7313,'春日乡','Chunrixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7314,'狮子乡','Shizixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7315,'东城乡','Dongchengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7316,'牡丹乡','Mudanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7317,'恒春镇','Hengchunzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7318,'满州乡','Manzhouxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7319,'宜兰县','Yilan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7320,'宜兰市','Yilan',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7321,'头城镇','Touchengzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7322,'礁溪乡','Jiaoxixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7323,'壮围乡','Zhuangweixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7324,'员山乡','Yuanshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7325,'罗东镇','Luodongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7326,'三星乡','Sanxingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7327,'大同乡','Datongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7328,'五结乡','Wujiexiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7329,'冬山乡','Dongshanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7330,'苏澳镇','Suaozhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7331,'南澳乡','Nanaoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7332,'花莲县','Hualian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7333,'花莲市','Hualian',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7334,'新城乡','Xinchengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7335,'秀林乡','Xiulinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7336,'吉安乡','Jianxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7337,'寿丰乡','Shoufengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7338,'凤林镇','Fenglinzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7339,'光复乡','Guangfuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7340,'丰滨乡','Fengbinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7341,'瑞穗乡','Ruisuixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7342,'万荣乡','Wanrongxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7343,'玉里镇','Yulizhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7344,'卓溪乡','Zhuoxixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7345,'富里乡','Fulixiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7346,'台东县','Taidong',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7347,'绿岛乡','Lu:daoxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7348,'兰屿乡','Lanyuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7349,'延平乡','Yanpingxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7350,'卑南乡','Beinanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7351,'鹿野乡','Luyexiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7352,'关山镇','Guanshanzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7353,'海端乡','Haiduanxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7354,'池上乡','Chishangxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7355,'东河乡','Donghexiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7356,'成功镇','Chenggongzhen',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7357,'长滨乡','Zhangbinxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7358,'金峰乡','Jinfengxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7359,'大武乡','Dawuxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7360,'达仁乡','Darenxiang',NULL,'2021-01-30 02:00:16','2021-01-30 02:00:16'),(7361,'太麻里乡','Taimalixiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7362,'澎湖县','Penghu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7363,'马公市','Magong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7364,'西屿乡','Xiyuxiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7365,'望安乡','Wanganxiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7366,'七美乡','Qimeixiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7367,'白沙乡','Baishaxiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7368,'湖西乡','Huxixiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7369,'澳门特别行政区','Aomen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7370,'望德堂区','Wangdetang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7371,'路凼填海区','Ludangtianhai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7372,'花王堂区','Huawangtang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7373,'嘉模堂区','Jiamotang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7374,'风顺堂区','Fengshuntang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7375,'花地玛堂区','Huadimatang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7376,'大堂区','Datang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7377,'圣方济各堂区','Shengfangjigetang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7378,'甘肃省','Gansu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7379,'金昌市','Jinchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7380,'金川区','Jinchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7381,'永昌县','Yongchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7382,'嘉峪关市','Jiayuguan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7383,'峪泉镇','Yuquanzhen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7384,'新城镇','Xinchengzhen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7385,'文殊镇','Wenshuzhen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7386,'钢城街道','Gangchengjiedao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7387,'雄关街道','Xiongguanjiedao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7388,'兰州市','Lanzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7389,'皋兰县','Gaolan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7390,'安宁区','Anning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7391,'红古区','Honggu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7392,'西固区','Xigu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7393,'永登县','Yongdeng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7394,'七里河区','Qilihe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7395,'榆中县','Yuzhong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7396,'酒泉市','Jiuquan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7397,'玉门市','Yumen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7398,'肃州区','Suzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7399,'肃北蒙古族自治县','Subeimengguzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7400,'金塔县','Jinta',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7401,'敦煌市','Dunhuang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7402,'阿克塞哈萨克族自治县','Akesaihasakezuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7403,'瓜州县','Guazhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7404,'平凉市','Pingliang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7405,'崇信县','Chongxin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7406,'庄浪县','Zhuanglang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7407,'灵台县','Lingtai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7408,'崆峒区','Kongtong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7409,'华亭市','Huating',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7410,'静宁县','Jingning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7411,'泾川县','Jingchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7412,'白银市','Baiyin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7413,'靖远县','Jingyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7414,'平川区','Pingchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7415,'白银区','Baiyin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7416,'景泰县','Jingtai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7417,'会宁县','Huining',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7418,'武威市','Wuwei',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7419,'古浪县','Gulang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7420,'凉州区','Liangzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7421,'天祝藏族自治县','Tianzhuzangzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7422,'民勤县','Minqin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7423,'陇南市','Longnan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7424,'礼县','Li',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7425,'徽县','Hui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7426,'武都区','Wudu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7427,'宕昌县','Dangchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7428,'两当县','Liangdang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7429,'文县','Wen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7430,'西和县','Xihe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7431,'康县','Kang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7432,'成县','Cheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7433,'张掖市','Zhangye',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7434,'高台县','Gaotai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7435,'肃南裕固族自治县','Sunanyuguzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7436,'民乐县','Minle',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7437,'山丹县','Shandan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7438,'甘州区','Ganzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7439,'临泽县','Linze',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7440,'庆阳市','Qingyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7441,'华池县','Huachi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7442,'镇原县','Zhenyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7443,'环县','Huan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7444,'正宁县','Zhengning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7445,'宁县','Ning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7446,'庆城县','Qingcheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7447,'西峰区','Xifeng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7448,'合水县','Heshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7449,'天水市','Tianshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7450,'秦安县','Qinan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7451,'甘谷县','Gangu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7452,'秦州区','Qinzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7453,'麦积区','Maiji',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7454,'张家川回族自治县','Zhangjiachuanhuizuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7455,'清水县','Qingshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7456,'武山县','Wushan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7457,'临夏回族自治州','Linxiahuizuzizhizhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7458,'永靖县','Yongjing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7459,'东乡族自治县','Dongxiangzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7460,'临夏市','Linxia',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7461,'积石山保安族东乡族撒拉族自治县','Jishishanbaoanzudongxiangzusalazuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7462,'临夏县','Linxia',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7463,'广河县','Guanghe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7464,'和政县','Hezheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7465,'康乐县','Kangle',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7466,'甘南藏族自治州','Gannanzangzuzizhizhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7467,'夏河县','Xiahe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7468,'卓尼县','Zhuoni',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7469,'玛曲县','Maqu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7470,'合作市','Hezuo',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7471,'舟曲县','Zhouqu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7472,'临潭县','Lintan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7473,'迭部县','Diebu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7474,'碌曲县','Liuqu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7475,'定西市','Dingxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7476,'岷县','Min',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7477,'临洮县','Lintao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7478,'渭源县','Weiyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7479,'漳县','Zhang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7480,'陇西县','Longxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7481,'通渭县','Tongwei',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7482,'四川省','Sichuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7483,'广元市','Guangyuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7484,'昭化区','Zhaohua',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7485,'朝天区','Chaotian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7486,'剑阁县','Jiange',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7487,'苍溪县','Cangxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7488,'旺苍县','Wangcang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7489,'青川县','Qingchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7490,'利州区','Lizhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7491,'成都市','Chengdu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7492,'彭州市','Pengzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7493,'青白江区','Qingbaijiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7494,'大邑县','Dayi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7495,'都江堰市','Dujiangyan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7496,'崇州市','Chongzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7497,'简阳市','Jianyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7498,'蒲江县','Pujiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7499,'新津区','Xinjin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7500,'金堂县','Jintang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7501,'邛崃市','Qionglai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7502,'温江区','Wenjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7503,'双流区','Shuangliu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7504,'郫都区','Pidu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7505,'武侯区','Wuhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7506,'金牛区','Jinniu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7507,'龙泉驿区','Longquanyi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7508,'新都区','Xindu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7509,'成华区','Chenghua',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7510,'锦江区','Jinjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7511,'青羊区','Qingyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7512,'绵阳市','Mianyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7513,'三台县','Santai',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7514,'梓潼县','Zitong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7515,'游仙区','Youxian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7516,'江油市','Jiangyou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7517,'平武县','Pingwu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7518,'盐亭县','Yanting',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7519,'涪城区','Fucheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7520,'安州区','Anzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7521,'北川羌族自治县','Beichuanqiangzuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7522,'广安市','Guangan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7523,'武胜县','Wusheng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7524,'邻水县','Linshui',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7525,'广安区','Guangan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7526,'华蓥市','Huaying',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7527,'前锋区','Qianfeng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7528,'岳池县','Yuechi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7529,'德阳市','Deyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7530,'中江县','Zhongjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7531,'旌阳区','Jingyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7532,'广汉市','Guanghan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7533,'什邡市','Shenfang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7534,'罗江区','Luojiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7535,'绵竹市','Mianzhu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7536,'巴中市','Bazhong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7537,'通江县','Tongjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7538,'南江县','Nanjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7539,'巴州区','Bazhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7540,'平昌县','Pingchang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7541,'恩阳区','Enyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7542,'南充市','Nanchong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7543,'蓬安县','Pengan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7544,'嘉陵区','Jialing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7545,'南部县','Nanbu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7546,'西充县','Xichong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7547,'营山县','Yingshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7548,'仪陇县','Yilong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7549,'顺庆区','Shunqing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7550,'高坪区','Gaoping',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7551,'阆中市','Langzhong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7552,'自贡市','Zigong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7553,'富顺县','Fushun',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7554,'自流井区','Ziliujing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7555,'贡井区','Gongjing',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7556,'荣县','Rong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7557,'沿滩区','Yantan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7558,'泸州市','Luzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7559,'龙马潭区','Longmatan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7560,'纳溪区','Naxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7561,'叙永县','Xuyong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7562,'古蔺县','Gulin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7563,'泸县','Lu',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7564,'江阳区','Jiangyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7565,'合江县','Hejiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7566,'资阳市','Ziyang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7567,'安岳县','Anyue',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7568,'乐至县','Lezhi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7569,'雁江区','Yanjiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7570,'眉山市','Meishan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7571,'仁寿县','Renshou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7572,'丹棱县','Danleng',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7573,'洪雅县','Hongya',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7574,'青神县','Qingshen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7575,'彭山区','Pengshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7576,'东坡区','Dongpo',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7577,'乐山市','Leshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7578,'金口河区','Jinkouhe',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7579,'沙湾区','Shawan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7580,'井研县','Jingyan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7581,'犍为县','Jianwei',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7582,'夹江县','Jiajiang',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7583,'五通桥区','Wutongqiao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7584,'峨边彝族自治县','Ebianyizuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7585,'马边彝族自治县','Mabianyizuzizhixian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7586,'沐川县','Muchuan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7587,'峨眉山市','Emeishan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7588,'宜宾市','Yibin',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7589,'筠连县','Yunlian',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7590,'南溪区','Nanxi',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7591,'兴文县','Xingwen',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7592,'翠屏区','Cuiping',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7593,'高县','Gao',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7594,'珙县','Gong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7595,'长宁县','Zhangning',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7596,'江安县','Jiangan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7597,'屏山县','Pingshan',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7598,'叙州区','Xuzhou',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7599,'遂宁市','Suining',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7600,'大英县','Daying',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7601,'射洪市','Shehong',NULL,'2021-01-30 02:00:17','2021-01-30 02:00:17'),(7602,'船山区','Chuanshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7603,'蓬溪县','Pengxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7604,'安居区','Anju',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7605,'内江市','Neijiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7606,'资中县','Zizhong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7607,'威远县','Weiyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7608,'东兴区','Dongxing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7609,'隆昌市','Longchang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7610,'达州市','Dazhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7611,'大竹县','Dazhu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7612,'渠县','Qu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7613,'宣汉县','Xuanhan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7614,'开江县','Kaijiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7615,'万源市','Wanyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7616,'通川区','Tongchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7617,'达川区','Dachuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7618,'凉山彝族自治州','Liangshanyizuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7619,'越西县','Yuexi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7620,'美姑县','Meigu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7621,'冕宁县','Mianning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7622,'德昌县','Dechang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7623,'金阳县','Jinyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7624,'木里藏族自治县','Mulizangzuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7625,'普格县','Puge',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7626,'甘洛县','Ganluo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7627,'雷波县','Leibo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7628,'布拖县','Butuo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7629,'喜德县','Xide',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7630,'会东县','Huidong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7631,'盐源县','Yanyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7632,'会理县','Huili',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7633,'宁南县','Ningnan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7634,'西昌市','Xichang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7635,'昭觉县','Zhaojue',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7636,'攀枝花市','Panzhihua',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7637,'米易县','Miyi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7638,'盐边县','Yanbian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7639,'仁和区','Renhe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7640,'雅安市','Yaan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7641,'芦山县','Lushan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7642,'宝兴县','Baoxing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7643,'天全县','Tianquan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7644,'雨城区','Yucheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7645,'荥经县','Yingjing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7646,'汉源县','Hanyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7647,'石棉县','Shimian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7648,'名山区','Mingshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7649,'阿坝藏族羌族自治州','Abazangzuqiangzuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7650,'九寨沟县','Jiuzhaigou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7651,'马尔康市','Maerkang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7652,'若尔盖县','Ruoergai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7653,'红原县','Hongyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7654,'汶川县','Wenchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7655,'黑水县','Heishui',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7656,'金川县','Jinchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7657,'阿坝县','Aba',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7658,'理县','Li',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7659,'小金县','Xiaojin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7660,'壤塘县','Rangtang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7661,'松潘县','Songpan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7662,'茂县','Mao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7663,'甘孜藏族自治州','Ganzizangzuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7664,'石渠县','Shiqu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7665,'道孚县','Daofu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7666,'新龙县','Xinlong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7667,'炉霍县','Luhuo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7668,'白玉县','Baiyu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7669,'理塘县','Litang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7670,'甘孜县','Ganzi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7671,'德格县','Dege',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7672,'康定市','Kangding',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7673,'雅江县','Yajiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7674,'巴塘县','Batang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7675,'乡城县','Xiangcheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7676,'九龙县','Jiulong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7677,'稻城县','Daocheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7678,'丹巴县','Danba',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7679,'色达县','Seda',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7680,'得荣县','Derong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7681,'泸定县','Luding',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7682,'天津市','Tianjin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7683,'天津城区','Tianjincheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7684,'东丽区','Dongli',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7685,'静海区','Jinghai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7686,'河北区','Hebei',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7687,'宝坻区','Baochi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7688,'滨海新区','Binhaixin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7689,'蓟州区','Jizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7690,'武清区','Wuqing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7691,'南开区','Nankai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7692,'宁河区','Ninghe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7693,'红桥区','Hongqiao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7694,'北辰区','Beichen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7695,'西青区','Xiqing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7696,'河西区','Hexi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7697,'津南区','Jinnan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7698,'山西省','Shanxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7699,'阳泉市','Yangquan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7700,'盂县','Yu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7701,'平定县','Pingding',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7702,'矿区','Kuang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7703,'太原市','Taiyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7704,'尖草坪区','Jiancaoping',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7705,'娄烦县','Loufan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7706,'古交市','Gujiao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7707,'阳曲县','Yangqu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7708,'清徐县','Qingxu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7709,'杏花岭区','Xinghualing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7710,'晋源区','Jinyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7711,'万柏林区','Wanbolin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7712,'迎泽区','Yingze',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7713,'小店区','Xiaodian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7714,'临汾市','Linfen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7715,'吉县','Ji',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7716,'汾西县','Fenxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7717,'隰县','Xi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7718,'曲沃县','Quwo',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7719,'古县','Gu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7720,'大宁县','Daning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7721,'永和县','Yonghe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7722,'安泽县','Anze',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7723,'霍州市','Huozhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7724,'乡宁县','Xiangning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7725,'侯马市','Houma',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7726,'蒲县','Pu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7727,'浮山县','Fushan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7728,'洪洞县','Hongdong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7729,'襄汾县','Xiangfen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7730,'尧都区','Yaodu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7731,'翼城县','Yicheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7732,'运城市','Yuncheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7733,'夏县','Xia',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7734,'闻喜县','Wenxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7735,'芮城县','Ruicheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7736,'永济市','Yongji',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7737,'垣曲县','Yuanqu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7738,'平陆县','Pinglu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7739,'绛县','Jiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7740,'新绛县','Xinjiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7741,'临猗县','Linyi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7742,'万荣县','Wanrong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7743,'盐湖区','Yanhu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7744,'河津市','Hejin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7745,'稷山县','Jishan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7746,'忻州市','Xinzhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7747,'原平市','Yuanping',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7748,'岢岚县','Kelan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7749,'代县','Dai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7750,'宁武县','Ningwu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7751,'河曲县','Hequ',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7752,'五寨县','Wuzhai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7753,'偏关县','Pianguan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7754,'五台县','Wutai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7755,'忻府区','Xinfu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7756,'繁峙县','Fanzhi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7757,'定襄县','Dingxiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7758,'静乐县','Jingle',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7759,'神池县','Shenchi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7760,'保德县','Baode',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7761,'朔州市','Shuozhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7762,'平鲁区','Pinglu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7763,'右玉县','Youyu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7764,'怀仁市','Huairen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7765,'朔城区','Shuocheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7766,'山阴县','Shanyin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7767,'应县','Ying',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7768,'吕梁市','Lu:liang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7769,'临县','Lin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7770,'交口县','Jiaokou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7771,'交城县','Jiaocheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7772,'柳林县','Liulin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7773,'中阳县','Zhongyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7774,'岚县','Lan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7775,'方山县','Fangshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7776,'兴县','Xing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7777,'离石区','Lishi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7778,'石楼县','Shilou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7779,'文水县','Wenshui',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7780,'汾阳市','Fenyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7781,'孝义市','Xiaoyi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7782,'大同市','Datong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7783,'广灵县','Guangling',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7784,'浑源县','Hunyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7785,'灵丘县','Lingqiu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7786,'阳高县','Yanggao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7787,'云州区','Yunzhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7788,'新荣区','Xinrong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7789,'云冈区','Yungang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7790,'平城区','Pingcheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7791,'天镇县','Tianzhen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7792,'左云县','Zuoyun',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7793,'晋中市','Jinzhong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7794,'和顺县','Heshun',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7795,'左权县','Zuoquan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7796,'寿阳县','Shouyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7797,'昔阳县','Xiyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7798,'榆社县','Yushe',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7799,'介休市','Jiexiu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7800,'灵石县','Lingshi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7801,'榆次区','Yuci',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7802,'太谷区','Taigu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7803,'祁县','Qi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7804,'平遥县','Pingyao',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7805,'长治市','Zhangzhi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7806,'平顺县','Pingshun',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7807,'潞城区','Lucheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7808,'黎城县','Licheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7809,'长子县','Zhangzi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7810,'屯留区','Tunliu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7811,'襄垣县','Xiangyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7812,'潞州区','Luzhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7813,'武乡县','Wuxiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7814,'沁县','Qin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7815,'壶关县','Huguan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7816,'沁源县','Qinyuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7817,'上党区','Shangdang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7818,'晋城市','Jincheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7819,'泽州县','Zezhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7820,'沁水县','Qinshui',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7821,'阳城县','Yangcheng',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7822,'陵川县','Lingchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7823,'高平市','Gaoping',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7824,'云南省','Yunnan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7825,'昭通市','Zhaotong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7826,'大关县','Daguan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7827,'威信县','Weixin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7828,'绥江县','Suijiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7829,'永善县','Yongshan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7830,'水富市','Shuifu',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7831,'巧家县','Qiaojia',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7832,'彝良县','Yiliang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7833,'镇雄县','Zhenxiong',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7834,'昭阳区','Zhaoyang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7835,'鲁甸县','Ludian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7836,'盐津县','Yanjin',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7837,'玉溪市','Yuxi',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7838,'易门县','Yimen',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7839,'澄江市','Chengjiang',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7840,'华宁县','Huaning',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7841,'红塔区','Hongta',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7842,'江川区','Jiangchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7843,'峨山彝族自治县','Eshanyizuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7844,'新平彝族傣族自治县','Xinpingyizudaizuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7845,'通海县','Tonghai',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7846,'元江哈尼族彝族傣族自治县','Yuanjianghanizuyizudaizuzizhixian',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7847,'大理白族自治州','Dalibaizuzizhizhou',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7848,'鹤庆县','Heqing',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7849,'洱源县','Eryuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7850,'宾川县','Binchuan',NULL,'2021-01-30 02:00:18','2021-01-30 02:00:18'),(7851,'云龙县','Yunlong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7852,'大理市','Dali',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7853,'剑川县','Jianchuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7854,'漾濞彝族自治县','Yangbiyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7855,'祥云县','Xiangyun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7856,'永平县','Yongping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7857,'巍山彝族回族自治县','Weishanyizuhuizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7858,'弥渡县','Midu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7859,'南涧彝族自治县','Nanjianyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7860,'曲靖市','Qujing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7861,'会泽县','Huize',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7862,'马龙区','Malong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7863,'罗平县','Luoping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7864,'陆良县','Luliang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7865,'师宗县','Shizong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7866,'宣威市','Xuanwei',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7867,'富源县','Fuyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7868,'沾益区','Zhanyi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7869,'麒麟区','Qilin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7870,'怒江傈僳族自治州','Nujianglisuzuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7871,'贡山独龙族怒族自治县','Gongshandulongzunuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7872,'兰坪白族普米族自治县','Lanpingbaizupumizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7873,'福贡县','Fugong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7874,'泸水市','Lushui',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7875,'红河哈尼族彝族自治州','Honghehanizuyizuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7876,'弥勒市','Mile',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7877,'泸西县','Luxi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7878,'建水县','Jianshui',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7879,'开远市','Kaiyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7880,'石屏县','Shiping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7881,'个旧市','Gejiu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7882,'屏边苗族自治县','Pingbianmiaozuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7883,'蒙自市','Mengzi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7884,'元阳县','Yuanyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7885,'红河县','Honghe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7886,'绿春县','Lu:chun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7887,'金平苗族瑶族傣族自治县','Jinpingmiaozuyaozudaizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7888,'河口瑶族自治县','Hekouyaozuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7889,'西双版纳傣族自治州','Xishuangbannadaizuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7890,'勐腊县','Mengla',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7891,'景洪市','Jinghong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7892,'勐海县','Menghai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7893,'迪庆藏族自治州','Diqingzangzuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7894,'德钦县','Deqin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7895,'香格里拉市','Xianggelila',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7896,'维西傈僳族自治县','Weixilisuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7897,'丽江市','Lijiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7898,'古城区','Gucheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7899,'玉龙纳西族自治县','Yulongnaxizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7900,'永胜县','Yongsheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7901,'华坪县','Huaping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7902,'宁蒗彝族自治县','Ninglangyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7903,'普洱市','Puer',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7904,'景东彝族自治县','Jingdongyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7905,'镇沅彝族哈尼族拉祜族自治县','Zhenyuanyizuhanizulahuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7906,'景谷傣族彝族自治县','Jinggudaizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7907,'墨江哈尼族自治县','Mojianghanizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7908,'澜沧拉祜族自治县','Lancanglahuzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7909,'宁洱哈尼族彝族自治县','Ningerhanizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7910,'孟连傣族拉祜族佤族自治县','Mengliandaizulahuzuwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7911,'江城哈尼族彝族自治县','Jiangchenghanizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7912,'思茅区','Simao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7913,'西盟佤族自治县','Ximengwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7914,'保山市','Baoshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7915,'腾冲市','Tengchong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7916,'隆阳区','Longyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7917,'施甸县','Shidian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7918,'昌宁县','Changning',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7919,'龙陵县','Longling',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7920,'昆明市','Kunming',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7921,'东川区','Dongchuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7922,'寻甸回族彝族自治县','Xundianhuizuyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7923,'宜良县','Yiliang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7924,'西山区','Xishan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7925,'五华区','Wuhua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7926,'呈贡区','Chenggong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7927,'石林彝族自治县','Shilinyizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7928,'晋宁区','Jinning',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7929,'禄劝彝族苗族自治县','Luquanyizumiaozuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7930,'富民县','Fumin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7931,'安宁市','Anning',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7932,'嵩明县','Songming',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7933,'盘龙区','Panlong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7934,'官渡区','Guandu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7935,'文山壮族苗族自治州','Wenshanzhuangzumiaozuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7936,'丘北县','Qiubei',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7937,'广南县','Guangnan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7938,'文山市','Wenshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7939,'砚山县','Yanshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7940,'麻栗坡县','Malipo',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7941,'西畴县','Xichou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7942,'马关县','Maguan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7943,'富宁县','Funing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7944,'楚雄彝族自治州','Chuxiongyizuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7945,'大姚县','Dayao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7946,'元谋县','Yuanmou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7947,'姚安县','Yaoan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7948,'牟定县','Mouding',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7949,'楚雄市','Chuxiong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7950,'禄丰县','Lufeng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7951,'南华县','Nanhua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7952,'双柏县','Shuangbo',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7953,'武定县','Wuding',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7954,'永仁县','Yongren',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7955,'临沧市','Lincang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7956,'凤庆县','Fengqing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7957,'云县','Yun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7958,'镇康县','Zhenkang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7959,'临翔区','Linxiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7960,'永德县','Yongde',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7961,'耿马傣族佤族自治县','Gengmadaizuwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7962,'双江拉祜族佤族布朗族傣族自治县','Shuangjianglahuzuwazubulangzudaizuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7963,'沧源佤族自治县','Cangyuanwazuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7964,'德宏傣族景颇族自治州','Dehongdaizujingpozuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7965,'盈江县','Yingjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7966,'梁河县','Lianghe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7967,'陇川县','Longchuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7968,'芒市','Mang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7969,'瑞丽市','Ruili',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7970,'北京市','Beijing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7971,'北京城区','Beijingcheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7972,'怀柔区','Huairou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7973,'延庆区','Yanqing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7974,'门头沟区','Mentougou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7975,'顺义区','Shunyi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7976,'平谷区','Pinggu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7977,'朝阳区','Chaoyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7978,'东城区','Dongcheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7979,'石景山区','Shijingshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7980,'房山区','Fangshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7981,'丰台区','Fengtai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7982,'西城区','Xicheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7983,'大兴区','Daxing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7984,'密云区','Miyun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7985,'昌平区','Changping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7986,'海淀区','Haidian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7987,'吉林省','Jilin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7988,'吉林市','Jilin',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7989,'丰满区','Fengman',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7990,'桦甸市','Huadian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7991,'舒兰市','Shulan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7992,'蛟河市','Jiaohe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7993,'永吉县','Yongji',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7994,'磐石市','Panshi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7995,'昌邑区','Changyi',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7996,'船营区','Chuanying',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7997,'松原市','Songyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7998,'扶余市','Fuyu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(7999,'宁江区','Ningjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8000,'乾安县','Qianan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8001,'前郭尔罗斯蒙古族自治县','Qianguoerluosimengguzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8002,'长岭县','Zhangling',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8003,'辽源市','Liaoyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8004,'东丰县','Dongfeng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8005,'东辽县','Dongliao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8006,'龙山区','Longshan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8007,'长春市','Zhangchun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8008,'德惠市','Dehui',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8009,'榆树市','Yushu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8010,'双阳区','Shuangyang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8011,'农安县','Nongan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8012,'宽城区','Kuancheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8013,'九台区','Jiutai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8014,'公主岭市','Gongzhuling',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8015,'绿园区','Lu:yuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8016,'二道区','Erdao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8017,'南关区','Nanguan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8018,'白城市','Baicheng',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8019,'通榆县','Tongyu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8020,'大安市','Daan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8021,'洮南市','Taonan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8022,'洮北区','Taobei',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8023,'镇赉县','Zhenlai',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8024,'白山市','Baishan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8025,'长白朝鲜族自治县','Zhangbaichaoxianzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8026,'靖宇县','Jingyu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8027,'江源区','Jiangyuan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8028,'抚松县','Fusong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8029,'浑江区','Hunjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8030,'临江市','Linjiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8031,'通化市','Tonghua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8032,'二道江区','Erdaojiang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8033,'东昌区','Dongchang',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8034,'柳河县','Liuhe',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8035,'通化县','Tonghua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8036,'梅河口市','Meihekou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8037,'辉南县','Huinan',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8038,'集安市','Jian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8039,'四平市','Siping',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8040,'双辽市','Shuangliao',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8041,'伊通满族自治县','Yitongmanzuzizhixian',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8042,'梨树县','Lishu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8043,'延边朝鲜族自治州','Yanbianchaoxianzuzizhizhou',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8044,'图们市','Tumen',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8045,'珲春市','Hunchun',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8046,'和龙市','Helong',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8047,'汪清县','Wangqing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8048,'延吉市','Yanji',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8049,'龙井市','Longjing',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8050,'安图县','Antu',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8051,'敦化市','Dunhua',NULL,'2021-01-30 02:00:19','2021-01-30 02:00:19'),(8052,'沙湾市','Shawan',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8053,'旬阳市','Xunyang',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8054,'凤翔区','Fengxiang',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8055,'龙海区','Longhai',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8056,'长泰区','Zhangtai',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8057,'沙县区','Sha',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8058,'横州市','Hengzhou',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8059,'会理市','Huili',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8060,'禄丰市','Lufeng',NULL,'2021-03-02 02:00:02','2021-03-02 02:00:02'),(8061,'偃师区','Yanshi',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8062,'孟津区','Mengjin',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8063,'黔西市','Qianxi',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8064,'祁阳市','Qiyang',NULL,'2021-04-06 18:00:03','2021-04-06 18:00:03'),(8065,'临平区','Linping',NULL,'2021-04-14 18:00:02','2021-04-14 18:00:02'),(8066,'钱塘区','Qiantang',NULL,'2021-04-14 18:00:02','2021-04-14 18:00:02'),(8067,'博古其镇','Boguqizhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8068,'双丰镇','Shuangfengzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8069,'苇湖镇','Weihuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8070,'榆树庄镇','Yushuzhuangzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8071,'博河镇','Bohezhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8072,'石峪镇','Shiyuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8073,'双乐镇','Shuanglezhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8074,'双桥镇','Shuangqiaozhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8075,'海川镇','Haichuanzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8076,'丰庆镇','Fengqingzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8077,'双渠镇','Shuangquzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8078,'昆牧镇','Kunmuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8079,'老兵镇','Laobingzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8080,'昆泉镇','Kunquanzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8081,'石河子镇','Shihezizhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8082,'梧桐镇','Wutongzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8083,'蔡家湖镇','Caijiahuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8084,'花桥镇','Huaqiaozhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8085,'金杨镇','Jinyangzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8086,'幸福镇','Xingfuzhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8087,'夏河镇','Xiahezhen',NULL,'2021-05-26 18:00:02','2021-05-26 18:00:02'),(8088,'中山港街道','Zhongshangangjiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8089,'南朗街道','Nanlangjiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8090,'民众街道','Minzhongjiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8091,'石岐街道','Shiqijiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8092,'候口街道','Houkoujiedao',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8093,'大九湖镇','Dajiuhuzhen',NULL,'2021-08-10 18:00:04','2021-08-10 18:00:04'),(8094,'金屯镇','Jintunzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8095,'金粱镇','Jinliangzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8096,'玛滩镇','Matanzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8097,'塔门镇','Tamenzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8098,'昌安镇','Changanzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8099,'塔南镇','Tananzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8100,'新开岭镇','Xinkailingzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8101,'海安镇','Haianzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8102,'唐驿镇','Tangyizhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8103,'金胡杨镇','Jinhuyangzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8104,'永安镇','Yonganzhen',NULL,'2021-09-15 18:00:03','2021-09-15 18:00:03'),(8105,'加来镇','Jialaizhen',NULL,'2021-12-07 02:00:03','2021-12-07 02:00:03'),(8106,'新星市','Xinxing',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8107,'兵团红星四场','Bingtuanhongxingsichang',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8108,'兵团红星一场','Bingtuanhongxingyichang',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8109,'兵团黄田农场','Bingtuanhuangtiannongchang',NULL,'2022-04-26 02:00:03','2022-04-26 02:00:03'),(8110,'坡头镇','Potouzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8111,'梨林镇','Lilinzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8112,'思礼镇','Silizhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8113,'大峪镇','Dayuzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8114,'五龙口镇','Wulongkouzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8115,'王屋镇','Wangwuzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8116,'玉泉街道','Yuquanjiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8117,'轵城镇','Zhichengzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8118,'济水街道','Jishuijiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8119,'沁园街道','Qinyuanjiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8120,'下冶镇','Xiayezhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8121,'克井镇','Kejingzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8122,'天坛街道','Tiantanjiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8123,'邵原镇','Shaoyuanzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8124,'北海街道','Beihaijiedao',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8125,'承留镇','Chengliuzhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8126,'喀拉拜勒镇','Kalabailezhen',NULL,'2022-06-14 02:00:02','2022-06-14 02:00:02'),(8127,'兵团农一师沙井子水利管理处','Bingtuannongyishishajingzishuiliguanlichu',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8128,'沙河镇','Shahezhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8129,'甘泉镇','Ganquanzhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8130,'金银川镇','Jinyinchuanzhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8131,'双城镇','Shuangchengzhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8132,'新井子镇','Xinjingzizhen',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8133,'杜湖街道','Duhujiedao',NULL,'2022-09-06 02:00:02','2022-09-06 02:00:02'),(8134,'金梁镇','Jinliangzhen',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8135,'侯口街道','Houkoujiedao',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8136,'广华寺街道','Guanghuasijiedao',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8137,'泽口街道','Zekoujiedao',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8138,'剅河镇','Louhezhen',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8139,'长埫口镇','Zhangzhongkouzhen',NULL,'2023-02-28 02:00:03','2023-02-28 02:00:03'),(8140,'澳门大学横琴校区(由澳门实施管辖)','Aomendaxuehengqinxiao(youaomenshishiguanxia)',NULL,'2023-04-18 02:00:02','2023-04-18 02:00:02'),(8141,'错那市','Cuonei',NULL,'2023-07-06 02:00:03','2023-07-06 02:00:03'),(8142,'米林市','Milin',NULL,'2023-07-06 02:00:03','2023-07-06 02:00:03'),(8143,'兵团一四四团','Bingtuanyisisituan',NULL,'2023-10-19 02:00:03','2023-10-19 02:00:03'),(8144,'路氹填海区','Ludangtianhai',NULL,'2023-10-19 02:00:03','2023-10-19 02:00:03'),(8145,'草湖镇','Caohuzhen',NULL,'2024-06-04 02:00:03','2024-06-04 02:00:03'),(8146,'米兰镇','Milanzhen',NULL,'2024-10-23 02:00:02','2024-10-23 02:00:02'),(8147,'南屯镇','Nantunzhen',NULL,'2024-10-23 02:00:02','2024-10-23 02:00:02'),(8148,'天湖镇','Tianhuzhen',NULL,'2024-10-23 02:00:02','2024-10-23 02:00:02'),(8149,'开泽镇','Kaizezhen',NULL,'2024-10-23 02:00:02','2024-10-23 02:00:02'),(8150,'高桥镇','Gaoqiaozhen',NULL,'2024-10-23 02:00:02','2024-10-23 02:00:02'),(8151,'河畔镇','Hepanzhen',NULL,'2024-10-23 02:00:02','2024-10-23 02:00:02'),(8152,'金山镇','Jinshanzhen',NULL,'2024-10-23 02:00:02','2024-10-23 02:00:02'); /*!40000 ALTER TABLE `sys_area_pinyin` ENABLE KEYS */; UNLOCK TABLES; @@ -42,7 +42,7 @@ UNLOCK TABLES; LOCK TABLES `sys_dictionary` WRITE; /*!40000 ALTER TABLE `sys_dictionary` DISABLE KEYS */; -INSERT INTO `sys_dictionary` VALUES (1,NULL,'sccj001','MNF','2001',1,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2024-09-06 02:37:22','89730635001757696'),(2,NULL,'sccj002','MNF',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(3,NULL,'sccj003','MNF',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(4,NULL,'sccj004','MNF',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(5,NULL,'sccj005','MNF',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(6,NULL,'sccj006','MNF',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(7,NULL,'sccj007','MNF',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(8,NULL,'sccj008','MNF',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(9,NULL,'sccj009','MNF',NULL,9,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(10,NULL,'sccj010','MNF',NULL,10,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(11,NULL,'sccj011','MNF',NULL,11,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:04','1'),(12,NULL,'sccj012','MNF',NULL,12,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:04','1'),(13,NULL,'sccj013','MNF',NULL,13,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(14,NULL,'sccj014','MNF',NULL,14,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(15,NULL,'sccj015','MNF',NULL,15,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(16,NULL,'sccj016','MNF',NULL,16,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(17,NULL,'wrjxh001','PLANE_MODEL',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:18:45','70179580555558912','2022-09-20 08:29:36','1'),(18,NULL,'wrjxh002','PLANE_MODEL',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:18:30','70179580555558912','2022-09-20 08:29:35','1'),(19,NULL,'wrjxh003','PLANE_MODEL',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:18:06','70179580555558912','2022-09-20 08:29:35','1'),(20,NULL,'wrjxh004','PLANE_MODEL',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:17:57','70179580555558912','2022-09-20 08:29:35','1'),(21,NULL,'wrjxh005','PLANE_MODEL',NULL,5,1,_binary '\0',_binary '\0','2021-09-22 07:17:45','70179580555558912','2022-09-20 08:29:35','1'),(22,NULL,'wrjxh006','PLANE_MODEL','2108',6,1,_binary '\0',_binary '\0','2020-09-18 02:21:30','admin','2022-09-20 08:29:35','1'),(23,NULL,'wrjxh007','PLANE_MODEL',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:30','admin','2022-09-20 08:29:35','1'),(24,NULL,'wrjxh008','PLANE_MODEL',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:30','admin','2022-09-20 08:29:35','1'),(25,NULL,'wrjxh009','PLANE_MODEL',NULL,9,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(26,NULL,'wrjxh010','PLANE_MODEL',NULL,10,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(27,NULL,'wrjxh011','PLANE_MODEL',NULL,11,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(28,NULL,'wrjxh012','PLANE_MODEL',NULL,12,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(29,NULL,'wrjxh013','PLANE_MODEL',NULL,13,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(30,NULL,'wrjxh014','PLANE_MODEL',NULL,14,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(31,NULL,'wrjxh015','PLANE_MODEL',NULL,15,1,_binary '\0',_binary '\0','2021-09-22 07:17:26','70179580555558912','2022-09-20 08:29:35','1'),(32,NULL,'wrjxh016','PLANE_MODEL',NULL,16,1,_binary '\0',_binary '\0','2021-09-22 07:16:55','70179580555558912','2022-09-20 08:29:35','1'),(33,NULL,'wrjxh017','PLANE_MODEL',NULL,17,1,_binary '\0',_binary '\0','2021-09-22 07:16:29','70179580555558912','2022-09-20 08:29:35','1'),(34,NULL,'wrjxh018','PLANE_MODEL',NULL,18,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(35,NULL,'wrjxh019','PLANE_MODEL',NULL,19,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(36,NULL,'wrjxh020','PLANE_MODEL',NULL,20,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(37,NULL,'wrjxh021','PLANE_MODEL',NULL,21,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(38,NULL,'wrjxh022','PLANE_MODEL',NULL,22,1,_binary '\0',_binary '\0','2021-09-22 07:16:01','70179580555558912','2022-09-20 08:29:34','1'),(39,NULL,'wrjxh023','PLANE_MODEL',NULL,23,1,_binary '\0',_binary '\0','2021-09-22 07:15:38','70179580555558912','2022-09-20 08:29:34','1'),(40,NULL,'wrjxh024','PLANE_MODEL',NULL,24,1,_binary '\0',_binary '\0','2021-09-22 07:09:42','70179580555558912','2022-09-20 08:29:34','1'),(41,NULL,'wrjxh025','PLANE_MODEL',NULL,25,1,_binary '\0',_binary '\0','2020-12-16 09:38:56','1','2022-09-20 08:29:34','1'),(42,NULL,'wrjxh026','PLANE_MODEL',NULL,26,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(43,NULL,'wrjxh027','PLANE_MODEL',NULL,27,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(44,NULL,'wrjxh028','PLANE_MODEL',NULL,28,1,_binary '\0',_binary '\0','2020-12-16 09:35:49','1','2022-09-20 08:29:34','1'),(45,NULL,'wrjxh029','PLANE_MODEL',NULL,29,1,_binary '\0',_binary '\0','2021-09-22 07:15:14','70179580555558912','2022-09-20 08:29:34','1'),(46,NULL,'wrjxh030','PLANE_MODEL',NULL,30,1,_binary '\0',_binary '\0','2021-09-22 07:14:27','70179580555558912','2022-09-20 08:29:34','1'),(47,NULL,'wrjxh031','PLANE_MODEL',NULL,31,1,_binary '\0',_binary '\0','2021-09-22 07:13:38','70179580555558912','2022-09-20 08:29:34','1'),(48,NULL,'wrjxh032','PLANE_MODEL',NULL,32,1,_binary '\0',_binary '\0','2021-09-22 07:11:56','70179580555558912','2022-09-20 08:29:34','1'),(49,NULL,'wrjxh033','PLANE_MODEL',NULL,33,1,_binary '\0',_binary '\0','2021-09-22 07:11:10','70179580555558912','2022-09-20 08:29:34','1'),(50,NULL,'wrjxh034','PLANE_MODEL',NULL,34,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(51,NULL,'wrjxh035','PLANE_MODEL',NULL,35,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(52,NULL,'wrjxh036','PLANE_MODEL',NULL,36,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(53,NULL,'wrjxh037','PLANE_MODEL',NULL,37,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(54,NULL,'wrjxh038','PLANE_MODEL',NULL,38,1,_binary '\0',_binary '\0','2021-09-22 07:10:12','70179580555558912','2022-09-20 08:29:34','1'),(55,NULL,'wrjxh039','PLANE_MODEL',NULL,39,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(56,NULL,'wrjxh040','PLANE_MODEL',NULL,40,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(57,NULL,'wrjxh041','PLANE_MODEL',NULL,41,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:33','1'),(58,NULL,'wrjxh042','PLANE_MODEL',NULL,42,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(59,NULL,'wrjxh043','PLANE_MODEL',NULL,43,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(60,NULL,'wrjxh044','PLANE_MODEL',NULL,3249,1,_binary '\0',_binary '\0','2021-02-07 03:10:18','1','2022-09-20 08:29:33','1'),(61,NULL,'wrjxh045','PLANE_MODEL',NULL,3250,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(62,NULL,'wrjxh046','PLANE_MODEL',NULL,3251,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(63,NULL,'xt001','PLANE_SHAPE','23',1,1,_binary '\0',_binary '\0','2020-09-18 02:21:34','admin','2024-09-06 02:38:04','89730635001757696'),(64,NULL,'xt002','PLANE_SHAPE','22',2,1,_binary '\0',_binary '\0','2020-09-18 02:21:34','admin','2022-01-20 01:16:07','123'),(65,NULL,'xt003','PLANE_SHAPE','22',3,1,_binary '\0',_binary '\0','2020-09-18 02:21:34','admin','2022-01-20 01:16:07','123'),(66,NULL,'wrjcd001','PLANE_SIZE',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:20:04','70179580555558912','2021-09-22 07:20:03','1'),(67,NULL,'wrjcd002','PLANE_SIZE',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:19:49','70179580555558912','2021-09-22 07:19:48','admin'),(68,NULL,'wrjcd003','PLANE_SIZE',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:19:30','70179580555558912','2021-09-22 07:19:29','admin'),(69,NULL,'wrjcd004','PLANE_SIZE',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:19:19','70179580555558912','2021-09-22 07:19:19','admin'),(70,NULL,'cl001','PLANE_MAT',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:35','admin','2020-11-27 01:25:10','1'),(71,NULL,'cl002','PLANE_MAT',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-11-26 08:00:16','1'),(72,NULL,'cl003','PLANE_MAT',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-11-27 01:26:06','1'),(73,NULL,'cl004','PLANE_MAT',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(74,NULL,'cl005','PLANE_MAT',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-11-27 01:26:05','1'),(75,NULL,'cl006','PLANE_MAT',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(76,NULL,'cl007','PLANE_MAT',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(77,NULL,'cl008','PLANE_MAT',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(78,NULL,'cl009','PLANE_MAT',NULL,9,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(79,NULL,'cl010','PLANE_MAT',NULL,10,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-11-27 09:34:58','1'),(80,NULL,'wbjk001','PLANE_INF',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(81,NULL,'wbjk002','PLANE_INF',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(82,NULL,'wbjk003','PLANE_INF',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(83,NULL,'wbjk004','PLANE_INF',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(84,NULL,'wbjk005','PLANE_INF',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-11-27 09:35:01','1'),(85,NULL,'wbjk006','PLANE_INF',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(86,NULL,'xh001','LOAD_CAM_MODEL',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(87,NULL,'xh002','LOAD_CAM_MODEL',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(88,NULL,'bg001','LOAD_CAM_EXP_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(89,NULL,'bg002','LOAD_CAM_EXP_MODE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(90,NULL,'bg003','LOAD_CAM_EXP_MODE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(91,NULL,'bg004','LOAD_CAM_EXP_MODE',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(92,NULL,'gz001','LOAD_CAM_WORK_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(93,NULL,'gz002','LOAD_CAM_WORK_MODE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(94,NULL,'gz003','LOAD_CAM_WORK_MODE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-11-26 08:06:13','1'),(95,NULL,'bp001','LOAD_CAM_BALANCE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(96,NULL,'bp002','LOAD_CAM_BALANCE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(97,NULL,'bp003','LOAD_CAM_BALANCE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(98,NULL,'bp004','LOAD_CAM_BALANCE',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(99,NULL,'bp005','LOAD_CAM_BALANCE',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(100,NULL,'cc001','LOAD_CAM_IMG_FMT',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(101,NULL,'cc002','LOAD_CAM_IMG_FMT',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(102,NULL,'cc003','LOAD_CAM_IMG_FMT',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(103,NULL,'tx001','LOAD_CAM_IMG_SIZE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(104,NULL,'tx002','LOAD_CAM_IMG_SIZE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(105,NULL,'pz001','LOAD_CAM_CAM_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(106,NULL,'pz002','LOAD_CAM_CAM_MODE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(107,NULL,'pz003','LOAD_CAM_CAM_MODE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(108,NULL,'km001','LOAD_CAM_SHUT_SPEED',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(109,NULL,'km002','LOAD_CAM_SHUT_SPEED',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(110,NULL,'km003','LOAD_CAM_SHUT_SPEED',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(111,NULL,'km004','LOAD_CAM_SHUT_SPEED',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(112,NULL,'km005','LOAD_CAM_SHUT_SPEED',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(113,NULL,'km006','LOAD_CAM_SHUT_SPEED',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(114,NULL,'km007','LOAD_CAM_SHUT_SPEED',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(115,NULL,'km008','LOAD_CAM_SHUT_SPEED',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(116,NULL,'sp001','LOAD_CAM_VIDEO_FMT',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(117,NULL,'sp002','LOAD_CAM_VIDEO_FMT',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(118,NULL,'fb001','LOAD_CAM_VIDEO_DIS',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(119,NULL,'hhqxh001','LOAD_SPK_MODEL',NULL,1191,1,_binary '\0',_binary '\0','2020-12-15 07:08:01','1','2020-12-15 07:08:01','1'),(120,NULL,'hhqxh002','LOAD_SPK_MODEL',NULL,1192,1,_binary '\0',_binary '\0','2020-12-15 07:08:18','1','2020-12-15 07:08:18','1'),(121,NULL,'jkxh001','LOAD_HNG_MODEL',NULL,1188,1,_binary '\0',_binary '\0','2021-02-07 02:23:27','1','2021-02-07 02:23:26','1'),(122,NULL,'jkxh002','LOAD_HNG_MODEL',NULL,1189,1,_binary '\0',_binary '\0','2021-02-07 02:23:04','1','2021-02-07 02:23:04','1'),(123,NULL,'jkxh003','LOAD_HNG_MODEL',NULL,1190,1,_binary '\0',_binary '\0','2020-12-15 07:07:18','1','2020-12-15 07:07:18','1'),(124,NULL,'jklx001','HNG_TYPE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(125,NULL,'jklx002','HNG_TYPE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(126,NULL,'jklx003','HNG_TYPE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(127,NULL,'dj001','PROT_LEVEL',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(128,NULL,'PLANE_MODEL','DEV_MODEL',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:01','123'),(129,NULL,'LOAD_CAM_MODEL','DEV_MODEL',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:00','123'),(130,NULL,'LOAD_SPK_MODEL','DEV_MODEL',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:00','123'),(131,NULL,'LOAD_HNG_MODEL','DEV_MODEL',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:00','123'),(132,NULL,'CAN_USE','USE_STAT',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:32:04','70179580555558912','2023-11-16 02:42:05','188243415207510016'),(133,NULL,'FORBIDDEN','USE_STAT',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:31:49','70179580555558912','2023-11-16 02:42:08','system'),(134,NULL,'MAINTAIN','USE_STAT',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:31:30','70179580555558912','2023-11-16 02:42:14','system'),(135,NULL,'ABANDONMENT','USE_STAT',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:30:20','70179580555558912','2023-11-16 02:42:14','188243415207510016'),(136,NULL,'ONLINE','ONLINE_STAT',NULL,1,1,_binary '\0',_binary '\0','2021-10-25 07:48:32','1','2021-10-25 07:48:32','system'),(137,NULL,'OFFLINE','ONLINE_STAT',NULL,2,1,_binary '\0',_binary '\0','2021-10-25 07:48:24','1','2021-10-25 07:48:23','system'),(138,NULL,'MUTIL_SELECT_COUNT','LEN',NULL,1,1,_binary '\0',_binary '\0','2021-10-25 07:50:44','1','2021-10-25 07:50:43','system'),(139,NULL,'0','VIDEO_LINE',NULL,1,1,_binary '\0',_binary '\0','2020-11-13 09:46:51','1','2020-11-13 09:41:02','system'),(140,NULL,'1','VIDEO_LINE',NULL,2,1,_binary '',_binary '\0','2021-09-22 07:08:26','70179580555558912','2021-09-22 07:08:25','1'),(141,NULL,'2','VIDEO_LINE',NULL,3,1,_binary '',_binary '\0','2021-09-22 07:08:34','70179580555558912','2021-09-22 07:08:34','1'),(756469121218117632,NULL,'action001','DEV_ACTION_MODEL',NULL,47,1,_binary '\0',_binary '','2020-09-18 02:58:13','1','2020-11-16 07:29:10','1'),(756469247374393344,NULL,'action002','DEV_ACTION_MODEL',NULL,48,1,_binary '\0',_binary '','2020-09-18 02:58:43','1','2020-11-16 07:29:08','1'),(756469325862404096,NULL,'action003','DEV_ACTION_MODEL',NULL,49,1,_binary '\0',_binary '','2020-09-18 02:59:01','1','2020-11-16 07:29:06','1'),(756469424944447488,NULL,'actio004','DEV_ACTION_MODEL',NULL,50,1,_binary '\0',_binary '','2020-09-18 02:59:25','1','2020-11-16 07:29:04','1'),(756469570579070976,NULL,'action005','DEV_ACTION_MODEL',NULL,51,1,_binary '\0',_binary '','2020-09-18 03:00:00','1','2020-11-16 07:29:02','1'),(756469673125609472,NULL,'action006','DEV_ACTION_MODEL',NULL,52,1,_binary '\0',_binary '','2020-09-18 03:00:24','1','2020-11-16 07:29:00','1'),(756469787839823872,756469570579070976,'action007','DEV_ACTION_MODEL',NULL,53,2,_binary '\0',_binary '','2020-09-18 03:00:51','1','2020-11-16 07:29:02','1'),(756469887177719808,756469673125609472,'action008','DEV_ACTION_MODEL',NULL,54,2,_binary '\0',_binary '','2020-09-18 03:01:15','1','2020-11-16 07:29:00','1'),(756470001799659520,756469121218117632,'action009','DEV_ACTION_MODEL',NULL,55,2,_binary '\0',_binary '','2020-09-18 03:01:42','1','2020-11-16 07:29:10','1'),(756470114232172544,756469247374393344,'action010','DEV_ACTION_MODEL',NULL,56,2,_binary '\0',_binary '','2020-09-18 03:02:09','1','2020-11-16 07:29:08','1'),(756470204460040192,756469247374393344,'action011','DEV_ACTION_MODEL',NULL,57,2,_binary '\0',_binary '','2020-09-18 03:02:31','1','2020-11-16 07:29:08','1'),(756470269341728768,756469424944447488,'action012','DEV_ACTION_MODEL',NULL,58,2,_binary '\0',_binary '','2020-09-18 03:02:46','1','2020-11-16 07:29:04','1'),(756470324027064320,756469424944447488,'action013','DEV_ACTION_MODEL',NULL,59,2,_binary '\0',_binary '','2020-09-18 03:02:59','1','2020-11-16 07:29:04','1'),(756470379022778368,756469424944447488,'action014','DEV_ACTION_MODEL',NULL,60,2,_binary '\0',_binary '','2020-09-18 03:03:12','1','2020-11-16 07:29:04','1'),(756470379022778369,NULL,'wait','APPR_STAT',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:02:11','70179580555558912','2021-09-22 07:02:10','1'),(756470379022778370,NULL,'pass','APPR_STAT',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:02:00','70179580555558912','2021-09-22 07:02:00','1'),(756470379022778371,NULL,'expired','APPR_STAT',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:01:49','70179580555558912','2021-09-22 07:01:49','1'),(756470379022778372,NULL,'ing','APPR_STAT',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:01:35','70179580555558912','2021-09-22 07:01:35','1'),(756470379022778373,NULL,'refuse','APPR_STAT',NULL,5,1,_binary '\0',_binary '\0','2021-09-22 07:01:14','70179580555558912','2021-09-22 07:01:13','1'),(756470379022778374,NULL,'reject','APPR_STAT',NULL,6,1,_binary '\0',_binary '\0','2021-09-22 07:01:02','70179580555558912','2021-09-22 07:01:01','1'),(756470379022778375,NULL,'limit','AREA_TYPE',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:03:51','70179580555558912','2022-06-10 03:51:16','123'),(756470379022778376,NULL,'forbidden','AREA_TYPE',NULL,2,1,_binary '\0',_binary '\0','2022-04-01 01:17:38','173818970422378496','2022-06-10 03:51:15','123'),(756470379022778377,NULL,'clear','AREA_TYPE',NULL,3,1,_binary '\0',_binary '\0','2022-04-01 01:17:19','173818970422378496','2022-06-10 03:51:15','123'),(756470379022778378,NULL,'danger','AREA_TYPE',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:02:45','70179580555558912','2022-06-10 03:51:15','123'),(756470379022778379,NULL,'temp','AREA_TYPE',NULL,5,1,_binary '\0',_binary '\0','2021-09-22 07:02:31','70179580555558912','2022-06-10 03:51:15','123'),(756470379022778380,NULL,'testfly','FLY_TASK','94',1,1,_binary '\0',_binary '\0','2021-09-22 07:07:49','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778381,NULL,'power','FLY_TASK','114',2,1,_binary '\0',_binary '\0','2021-09-22 07:07:12','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778382,NULL,'show','FLY_TASK','98',3,1,_binary '\0',_binary '\0','2021-09-22 07:07:28','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778383,NULL,'fire','FLY_TASK','111',4,1,_binary '\0',_binary '\0','2021-09-22 07:06:37','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778384,NULL,'protection','FLY_TASK','119',5,1,_binary '\0',_binary '\0','2021-09-22 07:06:00','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778385,NULL,'poppy','FLY_TASK',NULL,6,1,_binary '',_binary '\0','2021-09-22 07:06:26','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778386,NULL,'other','FLY_TASK','121',7,1,_binary '\0',_binary '\0','2021-09-22 07:05:31','70179580555558912','2022-01-20 01:15:09','123'),(764551033476218880,NULL,'test','LOAD_CAM_MODEL',NULL,61,1,_binary '\0',_binary '','2020-10-10 10:12:51','1','2020-10-10 10:12:55','1'),(764551033476219013,NULL,'0','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219014,NULL,'1','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219015,NULL,'2','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219016,NULL,'3','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219017,NULL,'4','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219018,NULL,'5','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219019,NULL,'6','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219020,NULL,'7','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219021,NULL,'8','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219022,NULL,'9','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219023,NULL,'10','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219024,NULL,'11','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219025,NULL,'12','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219026,NULL,'13','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219027,NULL,'14','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219028,NULL,'15','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219029,NULL,'16','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219030,NULL,'17','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219031,NULL,'18','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219032,NULL,'19','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219033,NULL,'20','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219034,NULL,'21','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219035,NULL,'22','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219036,NULL,'23','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219037,NULL,'24','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219038,NULL,'25','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219039,NULL,'26','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219040,NULL,'27','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219041,NULL,'28','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219042,NULL,'29','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219043,NULL,'30','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219044,NULL,'31','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219045,NULL,'32','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219046,NULL,'33','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219047,NULL,'34','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219048,NULL,'35','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219049,NULL,'36','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219050,NULL,'37','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219051,NULL,'38','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219052,NULL,'39','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219053,NULL,'40','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219054,NULL,'41','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219055,NULL,'42','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219056,NULL,'43','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219057,NULL,'44','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219058,NULL,'45','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219059,NULL,'46','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219060,NULL,'47','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219061,NULL,'48','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219062,NULL,'49','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219063,NULL,'50','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219064,NULL,'51','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219065,NULL,'52','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219066,NULL,'53','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219067,NULL,'54','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219068,NULL,'55','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219069,NULL,'56','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219070,NULL,'57','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219071,NULL,'58','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219072,NULL,'59','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219073,NULL,'60','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219074,NULL,'61','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219075,NULL,'62','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219076,NULL,'63','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219077,NULL,'64','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219078,NULL,'65','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219079,NULL,'66','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219080,NULL,'160','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219081,NULL,'170','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219082,NULL,'180','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219083,NULL,'200','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219084,NULL,'220','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219085,NULL,'240','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219086,NULL,'250','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219087,NULL,'260','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219088,NULL,'280','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219089,NULL,'320','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219090,NULL,'340','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219091,NULL,'350','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219092,NULL,'400','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219093,NULL,'450','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219094,NULL,'480','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219095,NULL,'500','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219096,NULL,'560','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219097,NULL,'630','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219098,NULL,'680','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219099,NULL,'710','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219100,NULL,'800','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219101,NULL,'900','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219102,NULL,'960','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219103,NULL,'1000','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219104,NULL,'1100','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219105,NULL,'1300','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219106,NULL,'1400','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219107,NULL,'1600','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219108,NULL,'1800','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219109,NULL,'1900','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219110,NULL,'2000','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219111,NULL,'2200','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219112,NULL,'1','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219113,NULL,'2','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219114,NULL,'3','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219115,NULL,'4','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219116,NULL,'5','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219117,NULL,'6','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219118,NULL,'7','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219119,NULL,'8','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219120,NULL,'9','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219121,NULL,'10','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219122,NULL,'11','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219123,NULL,'12','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219124,NULL,'13','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219125,NULL,'14','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219126,NULL,'15','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219127,NULL,'16','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219128,NULL,'17','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219129,NULL,'18','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219130,NULL,'19','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219131,NULL,'20','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219132,NULL,'21','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219133,NULL,'22','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219134,NULL,'23','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219135,NULL,'24','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219136,NULL,'25','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219137,NULL,'26','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219138,NULL,'27','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219139,NULL,'28','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219140,NULL,'29','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219141,NULL,'30','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219142,NULL,'31','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219143,NULL,'1','CAMERA_PHOTO_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system'),(764551033476219144,NULL,'0','CAMERA_PHOTO_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system'),(765151242212212736,NULL,'1','CAMERA_EXPOSURE_MODE',NULL,62,1,_binary '\0',_binary '\0','2020-10-12 01:57:52','1',NULL,NULL),(765151340098879488,NULL,'2','CAMERA_EXPOSURE_MODE',NULL,63,1,_binary '\0',_binary '\0','2020-10-12 01:58:15','1',NULL,NULL),(765151456495009792,NULL,'3','CAMERA_EXPOSURE_MODE',NULL,64,1,_binary '\0',_binary '\0','2020-10-12 01:58:43','1',NULL,NULL),(765151553257603072,NULL,'4','CAMERA_EXPOSURE_MODE',NULL,65,1,_binary '\0',_binary '\0','2020-10-12 01:59:06','1',NULL,NULL),(765152000827588608,NULL,'25600','CAMERA_ISO',NULL,67,1,_binary '\0',_binary '\0','2020-10-12 02:00:53','1','2020-10-12 02:03:24',NULL),(765152052467859456,NULL,'12800','CAMERA_ISO',NULL,68,1,_binary '\0',_binary '\0','2020-10-12 02:01:05','1','2020-10-12 02:03:22',NULL),(765152105051848704,NULL,'6400','CAMERA_ISO',NULL,69,1,_binary '\0',_binary '\0','2020-10-12 02:01:18','1','2020-10-12 02:03:21',NULL),(765152152472649728,NULL,'3200','CAMERA_ISO',NULL,70,1,_binary '\0',_binary '\0','2020-10-12 02:01:29','1','2020-10-12 02:03:19',NULL),(765152196605116416,NULL,'1600','CAMERA_ISO',NULL,71,1,_binary '\0',_binary '\0','2020-10-12 02:01:40','1','2020-10-12 02:03:17',NULL),(765152244952858624,NULL,'800','CAMERA_ISO',NULL,72,1,_binary '\0',_binary '\0','2020-10-12 02:01:51','1','2020-10-12 02:03:16',NULL),(765152289571864576,NULL,'400','CAMERA_ISO',NULL,73,1,_binary '\0',_binary '\0','2020-10-12 02:02:02','1','2020-10-12 02:03:15',NULL),(765152334576746496,NULL,'200','CAMERA_ISO',NULL,74,1,_binary '\0',_binary '\0','2020-10-12 02:02:13','1','2020-10-12 02:03:13',NULL),(765152388385472512,NULL,'100','CAMERA_ISO',NULL,75,1,_binary '\0',_binary '\0','2020-10-12 02:02:25','1','2020-10-12 02:03:09',NULL),(765152466487607296,NULL,'1','CAMERA_ISO',NULL,66,1,_binary '\0',_binary '\0','2021-01-22 03:18:46','1','2021-01-22 03:18:46',NULL),(765152560913973248,NULL,'0','CAMERA_ISO',NULL,76,1,_binary '\0',_binary '\0','2020-10-12 02:03:07','1',NULL,NULL),(771049672755249152,NULL,'AUTOTEST_hanger','PLANE_MODEL','接口自动化',801,1,_binary '\0',_binary '','2020-11-23 07:08:36','1','2020-11-23 07:10:16','1'),(771049677457063936,NULL,'AUTO_TESTHangar','LOAD_HNG_MODEL','自动化机库管理',1180,1,_binary '\0',_binary '','2020-12-01 01:14:58','1','2020-12-01 01:15:19','1'),(771793012190740480,NULL,'z5','LOAD_CAM_MODEL',NULL,95,1,_binary '\0',_binary '\0','2020-10-30 09:44:28','1','2020-11-23 07:00:15','1'),(773920694005268480,NULL,'xh003','LOAD_CAM_MODEL',NULL,96,1,_binary '\0',_binary '\0','2020-11-05 06:38:57','1',NULL,NULL),(773920849521672192,NULL,'sccj017','MNF','105',17,1,_binary '\0',_binary '\0','2020-11-05 06:39:34','1','2022-11-11 05:49:03','1'),(773920870648381440,NULL,'xh004','LOAD_CAM_MODEL',NULL,98,1,_binary '\0',_binary '\0','2020-11-05 06:39:39','1',NULL,NULL),(773921004236963840,NULL,'xh005','LOAD_CAM_MODEL',NULL,1196,1,_binary '\0',_binary '\0','2020-12-16 08:59:45','1','2020-12-16 08:59:45','1'),(773921117437034496,NULL,'wrjxh047','PLANE_MODEL','3010',332,1,_binary '\0',_binary '\0','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1'),(773921164937527296,NULL,'xh006','LOAD_CAM_MODEL',NULL,1195,1,_binary '\0',_binary '\0','2020-12-16 08:59:24','1','2020-12-16 08:59:24','1'),(773921267383402496,NULL,'xh007','LOAD_CAM_MODEL',NULL,1194,1,_binary '\0',_binary '\0','2020-12-16 08:59:01','1','2020-12-16 08:59:01','1'),(773924464843948032,NULL,'sccj018','MNF',NULL,103,1,_binary '\0',_binary '\0','2020-11-05 06:53:56','1','2022-11-11 05:49:03','1'),(773925087677120512,NULL,'wrjxh048','PLANE_MODEL',NULL,3253,1,_binary '\0',_binary '\0','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1'),(773925257512878080,NULL,'wrjxh049','PLANE_MODEL',NULL,3255,1,_binary '\0',_binary '\0','2020-12-16 09:39:30','1','2022-09-20 08:29:33','1'),(773952973972832256,NULL,'xh008','LOAD_CAM_MODEL',NULL,1213,1,_binary '\0',_binary '\0','2021-01-04 06:30:31','1','2021-01-04 06:30:31','1'),(774202421927870464,NULL,'sccj017','ADAPT_MNF',NULL,107,1,_binary '\0',_binary '\0','2021-09-22 07:00:27','70179580555558912','2021-09-22 07:00:27',NULL),(774227714327576576,NULL,'xh010','LOAD_CAM_MODEL',NULL,1220,1,_binary '\0',_binary '\0','2021-01-19 06:40:00','1','2021-01-19 06:40:00','1'),(774274052826202112,NULL,'sccj001','ADAPT_MNF',NULL,109,1,_binary '\0',_binary '\0','2020-11-06 06:03:03','1',NULL,NULL),(776134564270702592,NULL,'test1','AUTO_TEST','接口自动化',24766,1,_binary '\0',_binary '','2024-10-15 00:55:49','58582660930338816','2024-10-15 00:55:56','58582660930338816'),(776134564824350720,NULL,'test2','AUTO_TEST','接口2更新',24767,1,_binary '',_binary '','2024-10-15 00:55:49','58582660930338816','2024-10-15 00:55:56','58582660930338816'),(776134568511143936,776134564270702592,'test1.1','AUTO_TEST','接口1.1更新',24768,2,_binary '',_binary '','2024-10-15 00:55:50','58582660930338816','2024-10-15 00:55:55','58582660930338816'),(776134817556332544,NULL,'AUTOTEST_PlAN','PLANE_MODEL','接口自动化使用',1004,1,_binary '\0',_binary '','2020-11-26 05:04:15','1','2020-11-26 05:04:43','1'),(776134843300970496,NULL,'AUTOTEST_CAM','LOAD_CAM_MODEL','接口自动化使用',1005,1,_binary '\0',_binary '','2020-11-26 05:04:20','1','2020-11-26 05:04:42','1'),(776134883444654080,NULL,'AUTOTEST_SPK','LOAD_SPK_MODEL','接口自动化使用',1006,1,_binary '\0',_binary '','2020-11-26 05:04:26','1','2020-11-26 05:04:42','1'),(776134898841944064,NULL,'auto_TESTHangar','LOAD_HNG_MODEL','接口自动化使用',1007,1,_binary '\0',_binary '','2020-11-26 05:04:29','1','2020-11-26 05:04:43','1'),(776746302468915200,NULL,'wrjxh050','PLANE_MODEL',NULL,3256,1,_binary '\0',_binary '\0','2020-12-16 09:39:57','1','2022-09-20 08:29:33','1'),(776746779856207872,NULL,'xh011','LOAD_CAM_MODEL',NULL,1214,1,_binary '\0',_binary '\0','2021-01-06 03:00:10','1','2021-01-06 03:00:10','1'),(776752709599625216,NULL,'sccj007','ADAPT_MNF',NULL,129,1,_binary '\0',_binary '\0','2021-09-22 07:00:06','70179580555558912','2021-09-22 07:00:05',NULL),(777124043492032512,NULL,'自动化','PLANE_MODEL',NULL,130,1,_binary '\0',_binary '','2020-11-14 02:53:47','1','2020-11-14 02:55:07','1'),(777818223524577280,NULL,'AUTOTEST_load0','PLANE_MODEL','载荷管理自动化plan',1002,1,_binary '\0',_binary '','2020-11-26 03:30:49','1','2020-11-26 03:33:50','1'),(777818228410941440,NULL,'AUTOTEST_loadCAM','LOAD_CAM_MODEL','载荷管理自动化CAM',760,1,_binary '\0',_binary '','2020-11-20 09:21:49','1','2020-11-20 09:22:12','1'),(777818235348320256,NULL,'AUTOTEST_SPK01','LOAD_SPK_MODEL','载荷管理自动化spk',761,1,_binary '\0',_binary '','2020-11-20 09:21:50','1','2020-11-20 09:22:12','1'),(777831120556392448,NULL,'AutoTest_waypoint','PLANE_MODEL','接口自动化',1169,1,_binary '\0',_binary '','2020-12-01 01:10:56','1','2020-12-01 01:11:26','1'),(777831124461289472,NULL,'AutoTest_CAM','LOAD_CAM_MODEL','数据表单自动化',24664,1,_binary '\0',_binary '','2024-09-11 01:44:56','58582660930338816','2024-09-11 01:45:01','58582660930338816'),(777836439248437248,141,'pull','VIDEO_LINE',NULL,173,2,_binary '\0',_binary '','2020-11-16 02:04:36','1','2020-11-16 02:10:45','1'),(777839740312485888,NULL,'testcode','LOAD_CAM_MODEL',NULL,180,1,_binary '\0',_binary '','2020-11-16 02:17:43','1','2020-11-16 02:17:48','1'),(777840413032710144,NULL,'AUTOtest_CAM01','LOAD_CAM_MODEL','接口自动化使用',361,1,_binary '\0',_binary '','2020-11-17 00:57:30','1','2020-11-17 00:58:30','1'),(777840562794528768,NULL,'AUTOTEST_PlAN1','PLANE_MODEL','接口自动化使用',233,1,_binary '\0',_binary '','2020-11-16 03:22:25','1','2020-11-16 03:24:03','1'),(777845166110277632,NULL,'AUTOTEST_SPK1','LOAD_SPK_MODEL','接口自动化使用',235,1,_binary '\0',_binary '','2020-11-16 03:22:42','1','2020-11-16 03:24:02','1'),(777845188939874304,NULL,'auto_TESTHangar01','LOAD_HNG_MODEL','接口自动化使用',209,1,_binary '\0',_binary '','2020-11-16 02:39:22','1','2020-11-16 03:23:01','1'),(777918185893658624,NULL,'stopRecord','DEV_ACTION_MODEL',NULL,320,1,_binary '\0',_binary '\0','2020-11-16 07:29:26','1','2021-03-31 09:34:46',NULL),(777918299219558400,NULL,'uavYaw','DEV_ACTION_MODEL',NULL,313,1,_binary '\0',_binary '\0','2020-11-16 07:29:53','1','2021-03-31 09:34:41',NULL),(777918421470937088,777918299219558400,'yaw','DEV_ACTION_MODEL',NULL,315,2,_binary '\0',_binary '\0','2020-11-16 07:30:22','1',NULL,NULL),(777918633811771392,NULL,'cameraPanControl','DEV_ACTION_MODEL',NULL,314,1,_binary '\0',_binary '\0','2020-11-16 07:31:13','1','2021-03-31 09:34:43',NULL),(777918849227030528,777918633811771392,'cameraYaw','DEV_ACTION_MODEL',NULL,317,2,_binary '\0',_binary '\0','2020-11-16 07:32:04','1',NULL,NULL),(777918969448366080,777918633811771392,'cameraPitch','DEV_ACTION_MODEL',NULL,318,2,_binary '\0',_binary '\0','2020-11-16 07:32:33','1',NULL,NULL),(777919104240713728,777918633811771392,'cameraRoll','DEV_ACTION_MODEL',NULL,319,2,_binary '\0',_binary '\0','2020-11-16 07:33:05','1',NULL,NULL),(777919251796328448,NULL,'startRecord','DEV_ACTION_MODEL',NULL,323,1,_binary '\0',_binary '\0','2020-11-16 07:33:40','1','2021-03-31 09:34:39',NULL),(777919384520884224,777919251796328448,'videoFormat','DEV_ACTION_MODEL',NULL,15343,2,_binary '\0',_binary '\0','2023-05-19 03:26:11','173818970422378496','2023-05-19 03:26:11','173818970422378496'),(777919481077956608,777919251796328448,'videoResolution','DEV_ACTION_MODEL',NULL,15344,2,_binary '\0',_binary '\0','2023-05-19 03:26:52','173818970422378496','2023-05-19 03:26:52','173818970422378496'),(777919573763686400,NULL,'photo','DEV_ACTION_MODEL',NULL,4796,1,_binary '\0',_binary '\0','2021-03-10 07:02:43','1','2021-03-31 09:32:25','1'),(777919654315294720,777919573763686400,'picFormat','DEV_ACTION_MODEL',NULL,15316,2,_binary '\0',_binary '\0','2023-05-08 07:07:57','173818970422378496','2023-05-08 07:07:57','173818970422378496'),(777919787123736576,NULL,'hover','DEV_ACTION_MODEL',NULL,316,1,_binary '\0',_binary '\0','2020-11-16 07:35:48','1','2021-03-31 09:34:46','1'),(777919875149594624,777919787123736576,'hoverTime','DEV_ACTION_MODEL',NULL,326,2,_binary '\0',_binary '\0','2020-11-16 07:36:09','1','2020-11-27 09:14:14','1'),(777933867339350016,777831120556392448,'1122','PLANE_MODEL',NULL,327,2,_binary '\0',_binary '','2020-11-16 08:31:45','1','2020-11-16 08:32:39','1'),(777933946049658880,777831120556392448,'2233','PLANE_MODEL',NULL,328,2,_binary '\0',_binary '','2020-11-16 08:32:04','1','2020-11-16 08:32:35','1'),(777934035983925248,777831120556392448,'3344','PLANE_MODEL',NULL,329,2,_binary '\0',_binary '','2020-11-16 08:32:25','1','2020-11-16 08:32:32','1'),(778231894729949184,NULL,'test33','AUTO','接口自动化',394,1,_binary '\0',_binary '\0','2020-11-17 04:16:01','1',NULL,NULL),(778259155722043392,776134564270702592,'test1.2','AUTO_TEST','接口1.2更新',24769,2,_binary '\0',_binary '','2024-10-15 00:55:51','58582660930338816','2024-10-15 00:55:56','58582660930338816'),(778259969861615616,776134564270702592,'AUTO_TEST','AUTO_TEST','接口自动化',430,2,_binary '\0',_binary '','2020-11-17 06:07:34','1','2020-11-17 06:07:53','1'),(778263263229116416,776134564270702592,'test33','AUTO_TEST','接口自动化',432,2,_binary '\0',_binary '','2020-11-17 06:20:39','1','2020-11-17 06:21:18','1'),(778567110229098496,NULL,'test1','AUTO_TEST3','接口自动化0',514,1,_binary '\0',_binary '','2020-11-18 02:27:47','1','2020-11-18 02:28:08','1'),(778567110812106752,NULL,'test2','AUTO_TEST3','接口自动化',515,1,_binary '',_binary '','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1'),(778567114083663872,778567110229098496,'test1.1','AUTO_TEST3','接口自动化1',516,2,_binary '',_binary '','2020-11-18 02:27:47','1','2020-11-18 02:28:08','1'),(779000369471684608,NULL,'AutoTest_waypoint01','PLANE_MODEL','航线管理自动化01',665,1,_binary '\0',_binary '','2020-11-19 08:27:13','1','2020-11-26 01:05:28','1'),(779000684082233344,NULL,'AutoTest_CAM01','LOAD_CAM_MODEL','航线管理自动化CAM01',666,1,_binary '\0',_binary '','2020-11-19 08:47:35','1','2020-11-25 05:04:46','1'),(779314526335139840,NULL,'wurenji','PLANE_MODEL','wurenji',699,1,_binary '\0',_binary '','2020-11-20 03:58:02','1','2020-11-20 04:02:02','1'),(779315389761978368,NULL,'AUTOTEST_planet','PLANE_MODEL','无人机接口自动化',772,1,_binary '\0',_binary '','2020-11-23 01:13:44','1','2020-11-23 05:04:48','1'),(779338566957400064,NULL,'SPK_TEST','LOAD_SPK_MODEL',NULL,705,1,_binary '\0',_binary '','2020-11-20 05:33:33','1','2020-11-25 05:04:47','1'),(779367000391680000,NULL,'TESTPLAN','PLANE_MODEL',NULL,727,1,_binary '\0',_binary '','2020-11-20 07:26:33','1','2020-11-25 05:04:47','1'),(779368359245512704,NULL,'CAMcode','LOAD_CAM_MODEL',NULL,728,1,_binary '\0',_binary '','2020-11-20 07:31:57','1','2020-11-20 07:32:32','1'),(779368686254424064,NULL,'TESTCAM','LOAD_CAM_MODEL',NULL,729,1,_binary '\0',_binary '','2020-11-20 07:33:14','1','2020-11-23 05:04:47','1'),(779369076861566976,NULL,'SPKTEST','LOAD_SPK_MODEL',NULL,730,1,_binary '\0',_binary '','2020-11-20 07:34:48','1','2020-11-23 05:04:47','1'),(780374875998126080,NULL,'AutoTest_data','PLANE_MODEL','数据表单自动化',24667,1,_binary '\0',_binary '','2024-09-11 01:45:01','58582660930338816','2024-09-11 01:45:05','58582660930338816'),(780390381752811520,NULL,'AutoTest_SPK','LOAD_SPK_MODEL','数据表单自动化',24665,1,_binary '\0',_binary '','2024-09-11 01:44:57','58582660930338816','2024-09-11 01:45:01','58582660930338816'),(780390723521478656,NULL,'AutoTest_Hangar','LOAD_HNG_MODEL','自动化机库管理',24676,1,_binary '\0',_binary '\0','2024-09-11 02:14:27','58582660930338816','2024-09-11 02:14:27','58582660930338816'),(780434963555287040,NULL,'HGR23','LOAD_HNG_MODEL','机库23',800,1,_binary '\0',_binary '','2020-11-23 06:10:16','1','2020-11-24 05:04:47','1'),(780450072918884352,NULL,'AutoTest_hanger','PLANE_MODEL','机库管理自动化',1211,1,_binary '\0',_binary '','2020-12-28 08:00:10','1','2020-12-28 08:00:26','1'),(781451809423228928,NULL,'AUTOTEST_mission','PLANE_MODEL','作业管理自动化',1008,1,_binary '\0',_binary '','2020-11-26 05:35:08','1','2021-03-03 01:59:47','1'),(781453384174665728,NULL,'AUTOTEST_CAMmisson','LOAD_CAM_MODEL','作业管理自动化CAM',1009,1,_binary '\0',_binary '','2020-11-26 05:35:40','1','2020-11-27 06:53:18','1'),(781454583502340096,NULL,'AUTOTEST_SPKmisson','LOAD_SPK_MODEL','作业管理自动化spk',990,1,_binary '\0',_binary '','2020-11-26 01:45:42','1','2020-11-26 01:48:20','1'),(781455121476354048,NULL,'SPK_V1','LOAD_SPK_MODEL',NULL,989,1,_binary '\0',_binary '','2020-11-26 01:44:03','1','2020-11-26 01:49:57','1'),(781456085834924032,NULL,'AUTO_TESTmisson','LOAD_HNG_MODEL','作业管理自动化机库',992,1,_binary '\0',_binary '','2020-11-26 01:47:52','1','2020-11-26 01:49:57','1'),(781482762254286848,NULL,'AutoTest_load','PLANE_MODEL','载荷管理自动化',24614,1,_binary '\0',_binary '','2024-09-09 01:36:25','58582660930338816','2024-09-09 01:36:44','58582660930338816'),(781543824488005632,NULL,'jik001','LOAD_HNG_MODEL',NULL,1010,1,_binary '\0',_binary '','2020-11-26 07:36:31','1','2020-11-27 01:00:58','1'),(781552463076524032,NULL,'AutoTest_loadCAM','LOAD_CAM_MODEL','载荷管理自动化',24615,1,_binary '\0',_binary '','2024-09-09 01:36:25','58582660930338816','2024-09-09 01:36:44','58582660930338816'),(781809341882826752,NULL,'jiku001','LOAD_HNG_MODEL',NULL,1032,1,_binary '\0',_binary '\0','2020-11-27 01:11:36','1','2020-11-27 09:25:31','1'),(781814420455161856,NULL,'AutoTestLoad_SPK','LOAD_SPK_MODEL','载荷管理自动化',24616,1,_binary '\0',_binary '','2024-09-09 01:36:26','58582660930338816','2024-09-09 01:36:44','58582660930338816'),(781830189310148608,NULL,'54hhh','PLANE_MODEL',NULL,1072,1,_binary '\0',_binary '\0','2020-11-27 02:34:26','1',NULL,NULL),(781895685141299200,NULL,'AUTOTEST_missonCAM','LOAD_CAM_MODEL','作业管理自动化CAM1',1081,1,_binary '\0',_binary '','2020-11-27 06:54:42','1','2023-03-02 02:31:32','1'),(782930404536614912,NULL,'ttest','LOAD_HNG_MODEL',NULL,1125,1,_binary '\0',_binary '','2020-11-30 03:26:19','1','2020-11-30 07:07:33','1'),(785955076568121344,NULL,'mws-file','MWS',NULL,807,1,_binary '\0',_binary '\0','2021-09-22 06:57:17','70179580555558912','2021-09-22 06:57:17',NULL),(785955341773963264,785955076568121344,'file-zip','MWS',NULL,808,2,_binary '\0',_binary '\0','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL),(785955499165220864,NULL,'mws-image','MWS',NULL,809,1,_binary '\0',_binary '\0','2021-09-22 06:57:10','70179580555558912','2021-09-22 06:57:10','1'),(785955655818280960,NULL,'mws-video','MWS',NULL,811,1,_binary '\0',_binary '\0','2021-09-22 06:56:50','70179580555558912','2021-09-22 06:56:49',NULL),(785955738987134976,NULL,'mws-sound','MWS',NULL,810,1,_binary '\0',_binary '\0','2021-09-22 06:57:04','70179580555558912','2021-09-22 06:57:04',NULL),(785956045745946624,785955738987134976,'sound-wma','MWS',NULL,812,2,_binary '\0',_binary '\0','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL),(785956111290335232,785955738987134976,'sound-mp3','MWS',NULL,813,2,_binary '\0',_binary '\0','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL),(785956238235140096,785955655818280960,'video-flv','MWS',NULL,814,2,_binary '\0',_binary '\0','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL),(785956332518899712,785955499165220864,'image-png','MWS',NULL,815,2,_binary '\0',_binary '\0','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL),(785971030224142336,785955738987134976,'sound-wav','MWS',NULL,816,2,_binary '\0',_binary '\0','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL),(785971231127109632,785955655818280960,'video-AVI','MWS',NULL,819,2,_binary '\0',_binary '\0','2020-12-08 12:50:02','1','2021-03-05 08:15:59','1'),(785971315835273216,785955655818280960,'video-avi','MWS',NULL,818,2,_binary '\0',_binary '\0','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL),(785971581032726528,785955655818280960,'video-FLV','MWS',NULL,820,2,_binary '\0',_binary '\0','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL),(785971701841264640,785955655818280960,'video-MP4','MWS',NULL,821,2,_binary '\0',_binary '\0','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL),(785971768492949504,785955655818280960,'video-mp4','MWS',NULL,822,2,_binary '\0',_binary '\0','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL),(785971855805775872,785955499165220864,'image-JEPG','MWS',NULL,823,2,_binary '\0',_binary '','2020-12-08 12:51:33','1','2021-03-05 08:15:59','1'),(785971998630215680,785955499165220864,'image-jepg','MWS',NULL,824,2,_binary '\0',_binary '','2020-12-08 12:52:07','1','2021-03-05 08:15:59','1'),(785972305049288704,785955499165220864,'image-GIF','MWS',NULL,825,2,_binary '\0',_binary '\0','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL),(785972446586077184,785955499165220864,'image-jpg','MWS',NULL,826,2,_binary '\0',_binary '\0','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL),(785990953981837312,785955076568121344,'file-pdf','MWS',NULL,827,2,_binary '\0',_binary '\0','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL),(785991277043908608,785955076568121344,'file-txt','MWS',NULL,828,2,_binary '\0',_binary '\0','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL),(785991358312742912,785955076568121344,'file-doc','MWS',NULL,829,2,_binary '\0',_binary '\0','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL),(785991464269250560,785955076568121344,'file-docx','MWS',NULL,830,2,_binary '\0',_binary '\0','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL),(786166603552260096,785955499165220864,'image-gif','MWS',NULL,831,2,_binary '\0',_binary '\0','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL),(786166689434828800,785955499165220864,'image-BMP','MWS',NULL,832,2,_binary '\0',_binary '\0','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL),(786166814857101312,785955499165220864,'image-bmp','MWS',NULL,833,2,_binary '\0',_binary '\0','2020-12-09 01:46:14','1','2021-03-05 08:15:59',NULL),(786166913309999104,785955499165220864,'image-PNG','MWS',NULL,834,2,_binary '\0',_binary '\0','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL),(786167073310113792,785955499165220864,'image-JPG','MWS',NULL,835,2,_binary '\0',_binary '\0','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL),(786167269846810624,785955076568121344,'file-rar','MWS',NULL,836,2,_binary '\0',_binary '\0','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL),(786167334803996672,785955076568121344,'file-gzip','MWS',NULL,837,2,_binary '\0',_binary '\0','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL),(786167391397740544,785955076568121344,'file-tar','MWS',NULL,838,2,_binary '\0',_binary '\0','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL),(786167461652332544,785955076568121344,'file-7z','MWS',NULL,839,2,_binary '\0',_binary '\0','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL),(786168266883203072,785955076568121344,'file-TXT','MWS',NULL,840,2,_binary '\0',_binary '\0','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL),(786250802737053696,NULL,'INDUSTRY_APP','APP_TYPE','行业应用',171,1,_binary '\0',_binary '\0','2020-12-28 02:47:38','1','2023-04-18 06:14:41','1'),(786250985008922624,NULL,'DATA_APP','APP_TYPE','数据应用',170,1,_binary '\0',_binary '\0','2020-12-09 07:20:42','1','2023-04-18 06:14:41','1'),(786251083168219136,NULL,'VALUE_ADDED_APP','APP_TYPE','增值服务',169,1,_binary '\0',_binary '\0','2020-12-09 07:21:06','1','2023-04-18 06:14:41','1'),(788052283698053120,785955499165220864,'image-jpeg','MWS',NULL,872,2,_binary '\0',_binary '\0','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL),(788052580864491520,785955499165220864,'image-JPEG','MWS',NULL,873,2,_binary '\0',_binary '\0','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL),(788424128922255360,NULL,'wrjxh051','PLANE_MODEL',NULL,3254,1,_binary '\0',_binary '\0','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1'),(793143916168871936,NULL,'AutoTest_plane','PLANE_MODEL','无人机管理自动化',24613,1,_binary '\0',_binary '','2024-09-09 01:34:35','58582660930338816','2024-09-09 01:35:02','58582660930338816'),(799714390139076608,NULL,'wrjxh052','PLANE_MODEL','3010',6121,1,_binary '\0',_binary '\0','2021-01-15 10:59:28','1','2022-09-20 08:29:33','1'),(801097991447511040,NULL,'sccj019','MNF',NULL,2221,1,_binary '\0',_binary '\0','2021-01-19 06:37:24','1','2022-11-11 05:49:03','1'),(801098271467634688,NULL,'xt004','PLANE_SHAPE',NULL,3259,1,_binary '\0',_binary '\0','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123'),(801098394583040000,NULL,'wrj053','PLANE_MODEL',NULL,1218,1,_binary '\0',_binary '','2021-01-19 06:39:00','1','2021-01-19 06:39:08','1'),(801098473846996992,NULL,'wrjxh053','PLANE_MODEL','测试使用',9576,1,_binary '\0',_binary '\0','2021-01-19 06:39:19','1','2022-09-20 08:29:33','1'),(802483084174950400,NULL,'sccj019','ADAPT_MNF',NULL,1221,1,_binary '\0',_binary '\0','2021-09-22 06:59:39','70179580555558912','2021-09-22 06:59:39',NULL),(805843904883720192,NULL,'jkxh010','LOAD_HNG_MODEL',NULL,1222,1,_binary '\0',_binary '\0','2021-02-07 02:06:04','1','2021-02-07 02:06:03',NULL),(805844343272374272,NULL,'jkxh011','LOAD_HNG_MODEL',NULL,1223,1,_binary '\0',_binary '\0','2021-02-07 02:05:38','1','2021-02-07 02:05:38',NULL),(805844587976458240,NULL,'jkxh012','LOAD_HNG_MODEL',NULL,1224,1,_binary '\0',_binary '\0','2021-02-07 02:05:15','1','2021-02-07 02:05:15',NULL),(806488785524228096,NULL,'xh013','LOAD_CAM_MODEL',NULL,1225,1,_binary '\0',_binary '\0','2021-02-03 03:38:30','1',NULL,NULL),(806548289536262144,NULL,'HEAD','AI_VIDEO',NULL,1226,1,_binary '\0',_binary '\0','2021-03-15 05:42:35','1','2021-03-15 05:42:34',NULL),(806548356229890048,NULL,'CAR','AI_VIDEO',NULL,1227,1,_binary '\0',_binary '\0','2021-03-15 05:42:07','1','2021-03-15 05:42:06',NULL),(816612738498428928,NULL,'wrjxh054','PLANE_MODEL',NULL,1228,1,_binary '\0',_binary '\0','2021-09-22 07:09:14','70179580555558912','2021-09-22 07:09:13',NULL),(816616912250339328,NULL,'xh014','LOAD_CAM_MODEL',NULL,1229,1,_binary '\0',_binary '\0','2021-03-03 02:24:03','1',NULL,NULL),(816664677282086912,NULL,'xh099','LOAD_CAM_MODEL',NULL,1230,1,_binary '\0',_binary '\0','2021-03-03 05:33:51','1','2021-03-12 03:16:11',NULL),(819226411490476032,963755719004389376,'zoom','DEV_ACTION_MODEL','变焦数值',10891,2,_binary '\0',_binary '\0','2022-04-13 03:02:12','175627050911006720','2022-11-16 06:28:48','188243415207510016'),(819891377478434816,NULL,'xh100','LOAD_CAM_MODEL','tiantu12',1232,1,_binary '\0',_binary '','2021-03-12 03:15:59','70213995537104896','2021-03-12 07:55:21','70213995537104896'),(819891377478434817,NULL,'PLATFORM_CLOUD','PLATFORM_TYPE',NULL,1612,1,_binary '\0',_binary '\0','2021-03-12 05:46:26','1','2021-03-19 06:06:49','1'),(819891377478434818,NULL,'PLATFORM_OPEN','PLATFORM_TYPE',NULL,1614,1,_binary '\0',_binary '\0','2021-03-12 05:46:26','1','2021-03-19 06:06:47','1'),(819891377478434819,NULL,'PLATFORM_ADMIN','PLATFORM_TYPE',NULL,1613,1,_binary '\0',_binary '\0','2021-03-12 05:46:26','1','2021-03-19 06:06:49','1'),(819891377478434820,NULL,'OPTIMIZATION_SUGGESTIONS','FEEDBACK_TYPE',NULL,1617,1,_binary '\0',_binary '\0','2021-03-12 05:46:56','1','2021-03-12 07:40:10','1'),(819891377478434821,NULL,'ABNORMAL_FUNCTION','FEEDBACK_TYPE',NULL,1616,1,_binary '\0',_binary '\0','2021-03-12 05:46:56','1','2021-03-12 07:40:10','1'),(819891377478434822,NULL,'OTHER_FEEDBACK','FEEDBACK_TYPE',NULL,1615,1,_binary '\0',_binary '\0','2021-03-12 05:46:56','1','2021-03-12 05:46:56','1'),(819951653787664384,NULL,'123213','213','123',1618,1,_binary '\0',_binary '','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11','70213995537104896'),(822471083549655040,NULL,'test4','test','testtesttesttest1',1619,1,_binary '\0',_binary '','2021-03-19 06:06:37','1','2021-03-19 06:06:41','1'),(822471083549655041,NULL,'LOAD_NUMBER','QUOTA_TYPE','公司可创建的载荷数量',9233,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655042,NULL,'SUB_ACCOUNT_NUMBER','QUOTA_TYPE','公司可创建的子账号数量',3679,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655043,NULL,'AIR_LINE_NUMBER','QUOTA_TYPE','公司可创建的航线数量',3344,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655044,NULL,'UAV_NUMBER','QUOTA_TYPE','公司可创建的无人机数量',3342,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655045,NULL,'HANGAR_NUMBER','QUOTA_TYPE','公司可创建的机库数量',3341,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655046,NULL,'JOB_NUMBER','QUOTA_TYPE','公司可创建的作业数量',3340,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655047,NULL,'UAV_ONLINE_NUMBER','QUOTA_TYPE','公司可创建的无人机在线数量',3339,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655048,NULL,'TEMP_AIRSPACE_NUMBER','QUOTA_TYPE','公司可创建的临时空域数量',3338,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655049,NULL,'HANGAR_ONLINE_NUMBER','QUOTA_TYPE','公司可创建的机库在线数量',3336,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655050,NULL,'CHONGQINGNK','NJ_COMPANY',NULL,4752,1,_binary '\0',_binary '\0','2021-03-19 07:06:16','1','2021-03-19 07:06:16','1'),(822471083549655051,NULL,'LINE_INSPECTION','SCENCE_TYPE',NULL,4789,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655052,NULL,'RIVER_DETECTION','SCENCE_TYPE',NULL,4788,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655053,NULL,'ROAD_DETECTION','SCENCE_TYPE',NULL,4787,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655054,NULL,'FARMLAND_SCENCE','SCENCE_TYPE',NULL,4786,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655055,NULL,'ROUTE_PLANNING','SCENCE_TYPE',NULL,4785,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655056,NULL,'OTHER_SCENCE','SCENCE_TYPE',NULL,4783,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822489529737936896,NULL,'视频1','NJ_VIDEO',NULL,4790,1,_binary '\0',_binary '','2021-03-19 07:25:49','1','2021-03-23 01:38:28','1'),(822489529737936897,NULL,'视频一','NJ_VIDEO',NULL,4779,1,_binary '\0',_binary '\0','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1'),(826868962842247168,NULL,'FLIGHT_DETAIL_PAGE_URL','MISSION_MANAGEMENT','https://www.demo.uavcmlc.com:18000/#/flightDetail?uavCode=${uavId}&hangarCode=${hangarId}&deviceType=plane',4791,1,_binary '\0',_binary '\0','2021-04-01 00:48:57','89730635001757696','2021-04-01 00:48:57',NULL),(826869187430449152,NULL,'TIMING_MISSION_DETAIL_URL','MISSION_MANAGEMENT','https://www.demo.uavcmlc.com:18000/#/mission/timing-detail/${missionId}/SubTask',4792,1,_binary '\0',_binary '\0','2021-04-15 02:33:16','89730635001757696','2021-04-15 02:33:16',NULL),(826869467588984832,NULL,'temperPhoto','DEV_ACTION_MODEL','测温拍照',4797,1,_binary '\0',_binary '\0','2021-03-31 09:24:03','89730635001757696','2021-03-31 09:32:22',NULL),(826869611470389248,826869467588984832,'temperPhotoDesc','DEV_ACTION_MODEL','测温描述',4794,2,_binary '\0',_binary '\0','2021-03-31 09:24:37','89730635001757696',NULL,NULL),(826869831411302400,777919573763686400,'picDesc','DEV_ACTION_MODEL',NULL,15317,2,_binary '\0',_binary '\0','2023-05-08 07:08:35','173818970422378496','2023-05-08 07:08:35','173818970422378496'),(826871114474061824,NULL,'startMeasurement','DEV_ACTION_MODEL','開始測溫',4793,1,_binary '\0',_binary '\0','2021-03-31 09:30:36','89730635001757696','2021-03-31 09:32:28',NULL),(826871339846598656,NULL,'stopMeasurement','DEV_ACTION_MODEL','停止测温',1231,1,_binary '\0',_binary '\0','2021-03-31 09:31:29','89730635001757696','2021-03-31 09:32:30',NULL),(826871536899194880,NULL,'temperatureDetect','DEV_ACTION_MODEL','溫度監測',325,1,_binary '\0',_binary '\0','2021-03-31 09:32:16','89730635001757696','2021-03-31 09:32:30',NULL),(826871747943989248,826871536899194880,'maxWarning','DEV_ACTION_MODEL','最高告警',4801,2,_binary '\0',_binary '\0','2021-03-31 09:33:07','89730635001757696','2021-03-31 09:34:26',NULL),(826871897378652160,826871536899194880,'minWarning','DEV_ACTION_MODEL','最低告警',4800,2,_binary '\0',_binary '\0','2021-03-31 09:33:42','89730635001757696','2021-03-31 09:34:28',NULL),(826872067679977472,826871536899194880,'temperatureDetectDesc','DEV_ACTION_MODEL','温度监测描述',4799,2,_binary '\0',_binary '\0','2021-03-31 09:34:23','89730635001757696','2021-03-31 09:34:28',NULL),(827111579068792832,NULL,'r','ss',NULL,4803,1,_binary '\0',_binary '','2021-04-01 01:26:07','1','2021-04-01 01:26:34','1'),(827111604377223168,NULL,'y','ss',NULL,4804,1,_binary '\0',_binary '','2021-04-01 01:26:13','1','2021-04-01 01:26:36','1'),(827111631480815616,NULL,'u','ss',NULL,4802,1,_binary '\0',_binary '','2021-04-01 01:26:19','1','2021-04-01 01:26:38','1'),(829036758112010240,NULL,'CAR_UAS00010353','AI_VIDEO',NULL,4805,1,_binary '\0',_binary '\0','2021-04-06 08:56:05','1',NULL,NULL),(829036883894992896,NULL,'HEAD_UAS00010353','AI_VIDEO',NULL,4806,1,_binary '\0',_binary '\0','2021-04-06 08:56:35','1',NULL,NULL),(829036883894992897,NULL,'1','DEMO_STATUS',NULL,257,1,_binary '\0',_binary '\0','2021-04-07 08:14:58','123','2021-04-07 08:14:58','123'),(829715458394554368,NULL,'xh009','LOAD_CAM_MODEL','禅思H20T',4807,1,_binary '\0',_binary '\0','2021-04-08 05:53:00','89730635001757696',NULL,NULL),(832254044922839040,NULL,'wrjxh055','PLANE_MODEL',NULL,4808,1,_binary '\0',_binary '\0','2021-04-15 06:00:26','1',NULL,NULL),(834388291288694784,NULL,'test','test',NULL,4809,1,_binary '\0',_binary '','2021-04-21 03:21:10','1','2021-04-21 03:21:35','1'),(834388327653310464,NULL,'test1','test',NULL,4810,1,_binary '\0',_binary '','2021-04-21 03:21:19','1','2021-04-21 03:21:35','1'),(841607657893789696,NULL,'HEAD_UAS00010467','AI_VIDEO',NULL,4811,1,_binary '\0',_binary '\0','2021-05-11 01:28:21','1',NULL,NULL),(841607873808171008,NULL,'CAR_UAS00010467','AI_VIDEO',NULL,4812,1,_binary '\0',_binary '\0','2021-05-11 01:29:13','1',NULL,NULL),(844284482126217216,NULL,'CAR_UAS00010402','AI_VIDEO',NULL,4813,1,_binary '\0',_binary '\0','2021-05-18 10:45:06','1',NULL,NULL),(844284639202902016,NULL,'HEAD_UAS00010402','AI_VIDEO',NULL,4814,1,_binary '\0',_binary '\0','2021-05-18 10:45:44','1',NULL,NULL),(844889172232765440,NULL,'sccj020','MNF',NULL,4815,1,_binary '\0',_binary '\0','2021-05-20 02:47:55','1',NULL,NULL),(844889487510208512,NULL,'wrjxh056','PLANE_MODEL',NULL,4816,1,_binary '\0',_binary '\0','2021-05-20 02:49:11','1',NULL,NULL),(844889615340011520,NULL,'sccj020','ADAPT_MNF',NULL,4817,1,_binary '\0',_binary '\0','2021-09-22 06:58:29','70179580555558912','2021-09-22 06:58:28',NULL),(844889798345883648,NULL,'xj015','LOAD_CAM_MODEL',NULL,4818,1,_binary '\0',_binary '\0','2021-05-20 02:50:25','1',NULL,NULL),(846404383016091648,NULL,'electricInspection','DEV_ACTION_MODEL',NULL,4859,1,_binary '\0',_binary '\0','2021-05-24 07:08:50','89730635001757696','2022-04-13 03:01:15',NULL),(846404535558733824,846404383016091648,'relativePosition','DEV_ACTION_MODEL',NULL,4820,2,_binary '\0',_binary '\0','2021-05-24 07:09:26','89730635001757696',NULL,NULL),(846404675241639936,846404383016091648,'partLabel','DEV_ACTION_MODEL',NULL,4821,2,_binary '\0',_binary '\0','2021-05-24 07:10:00','89730635001757696',NULL,NULL),(846404843819106304,846404383016091648,'towerSide','DEV_ACTION_MODEL',NULL,4822,2,_binary '\0',_binary '\0','2021-05-24 07:10:40','89730635001757696',NULL,NULL),(846405008059662336,846404383016091648,'phase','DEV_ACTION_MODEL',NULL,4823,2,_binary '\0',_binary '\0','2021-05-24 07:11:19','89730635001757696',NULL,NULL),(846405112871124992,846404383016091648,'sequenceNum','DEV_ACTION_MODEL',NULL,4824,2,_binary '\0',_binary '\0','2021-05-24 07:11:44','89730635001757696',NULL,NULL),(846405330748440576,846404383016091648,'towerCode','DEV_ACTION_MODEL',NULL,4825,2,_binary '\0',_binary '\0','2021-05-24 07:12:36','89730635001757696',NULL,NULL),(846405428517666816,846404383016091648,'voltage','DEV_ACTION_MODEL',NULL,4826,2,_binary '\0',_binary '\0','2021-05-24 07:12:59','89730635001757696',NULL,NULL),(846405531689156608,846404383016091648,'lineName','DEV_ACTION_MODEL',NULL,4827,2,_binary '\0',_binary '\0','2021-05-24 07:13:24','89730635001757696',NULL,NULL),(846793656714264576,NULL,'HEAD_UAS00010511','AI_VIDEO',NULL,4828,1,_binary '\0',_binary '\0','2021-05-25 08:55:40','1',NULL,NULL),(846793890471215104,NULL,'CAR_UAS00010511','AI_VIDEO',NULL,4829,1,_binary '\0',_binary '\0','2021-05-25 08:56:36','1',NULL,NULL),(847109628566306816,NULL,'aa','testt',NULL,4831,1,_binary '\0',_binary '','2021-05-26 05:51:13','292','2021-05-26 05:51:49','292'),(847109670467403776,NULL,'bb','testt',NULL,4830,1,_binary '\0',_binary '','2021-05-26 05:51:23','292','2021-05-26 05:51:47','292'),(847109715451314176,847109670467403776,'aaaa','testt',NULL,4832,2,_binary '\0',_binary '','2021-05-26 05:51:34','292','2021-05-26 05:51:47','292'),(847109715451314177,NULL,'otherLoad','DEV_MODEL_HUBBLE',NULL,4843,1,_binary '\0',_binary '','2021-06-16 09:22:16','1','2023-04-06 03:05:42','1'),(847109715451314178,NULL,'commonLoad','DEV_MODEL_HUBBLE',NULL,4842,1,_binary '\0',_binary '\0','2021-06-16 09:22:05','1','2021-06-16 09:22:05','1'),(847109715451314179,NULL,'xh003','DEV_MODEL_HUBBLE',NULL,303,1,_binary '\0',_binary '\0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123'),(847109715451314180,NULL,'xh005','DEV_MODEL_HUBBLE',NULL,302,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314181,NULL,'xh006','DEV_MODEL_HUBBLE',NULL,301,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314182,NULL,'xh001','DEV_MODEL_HUBBLE',NULL,300,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314183,NULL,'otherUav2','DEV_MODEL_HUBBLE',NULL,299,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314184,NULL,'otherUav1','DEV_MODEL_HUBBLE',NULL,298,1,_binary '\0',_binary '','2021-06-02 07:11:43','123','2023-04-06 03:04:39','1'),(847109715451314185,NULL,'commonUav','DEV_MODEL_HUBBLE',NULL,297,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314186,NULL,'wrjxh059','DEV_MODEL_HUBBLE',NULL,295,1,_binary '\0',_binary '','2021-06-02 07:11:43','123','2021-06-16 09:08:42','1'),(847109715451314187,NULL,'wrjxh047','DEV_MODEL_HUBBLE',NULL,293,1,_binary '\0',_binary '','2021-06-02 07:11:43','123','2021-06-16 09:08:39','1'),(847109715451314188,NULL,'wrjxh006','DEV_MODEL_HUBBLE',NULL,292,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(849667997298720768,NULL,'sccj002','ADAPT_MNF',NULL,4833,1,_binary '\0',_binary '\0','2021-09-22 06:57:38','70179580555558912','2021-09-22 06:57:38',NULL),(850074196724809728,NULL,'CAR_UAS00010487','AI_VIDEO',NULL,4834,1,_binary '\0',_binary '\0','2021-06-03 10:11:22','123',NULL,NULL),(850074301641129984,NULL,'HEAD_UAS00010487','AI_VIDEO',NULL,4835,1,_binary '\0',_binary '\0','2021-06-03 10:11:47','123',NULL,NULL),(851404291041263616,NULL,'hhqxh003','LOAD_SPK_MODEL','喊话器型号:MP130,厂家:成至',4836,1,_binary '\0',_binary '\0','2021-06-07 02:16:41','1',NULL,NULL),(851404935592542208,NULL,'sccj021','MNF','生产厂家:成至',4837,1,_binary '\0',_binary '\0','2021-06-07 02:19:14','1',NULL,NULL),(851404935592542209,NULL,'INTERFACE_WITHOUT_BINDING_COMPANY','INTERFACE_TYPE','不要绑定公司的接口',281,1,_binary '\0',_binary '\0','2021-09-22 06:54:37','70179580555558912','2021-09-22 06:54:36','1'),(851404935592542210,NULL,'INTERFACE_BINDING_COMPANY','INTERFACE_TYPE','需要绑定公司的接口',280,1,_binary '\0',_binary '\0','2021-09-22 06:55:25','70179580555558912','2021-09-22 06:55:25','1'),(851404935592542211,NULL,'OPEN_LIMIT_TYPE_TIEMS','OPEN_LIMIT_TYPE',NULL,271,1,_binary '\0',_binary '\0','2021-09-22 06:53:44','70179580555558912','2021-09-22 06:53:44','1'),(851404935592542212,NULL,'OPEN_LIMIT_TYPE_FLOW','OPEN_LIMIT_TYPE',NULL,270,1,_binary '',_binary '\0','2021-09-22 06:54:02','70179580555558912','2021-09-22 06:54:02','1'),(851404935592542213,NULL,'OPEN_LIMIT_TYPE_SPACE','OPEN_LIMIT_TYPE',NULL,269,1,_binary '',_binary '\0','2021-09-22 06:54:15','70179580555558912','2021-09-22 06:54:15','1'),(851404935592542214,NULL,'INTERFACE_GROUP_WAYPOINT','INTERFACE_GROUP',NULL,268,1,_binary '\0',_binary '\0','2021-09-22 06:53:02','70179580555558912','2022-03-30 10:16:48','1'),(851404935592542215,NULL,'INTERFACE_GROUP_AIRSPACE','INTERFACE_GROUP',NULL,267,1,_binary '\0',_binary '\0','2021-09-22 06:53:17','70179580555558912','2022-03-30 10:16:48','1'),(851404935592542216,NULL,'INTERFACE_GROUP_SURVEILLANCE','INTERFACE_GROUP',NULL,266,1,_binary '\0',_binary '\0','2021-09-22 06:52:24','70179580555558912','2022-03-30 10:16:48','1'),(854653485289963520,NULL,'auto','VIDEO_LINE',NULL,4838,1,_binary '\0',_binary '\0','2021-06-16 01:27:49','1',NULL,NULL),(854769552981098496,NULL,'wrjxh052','DEV_MODEL_HUBBLE',NULL,4839,1,_binary '\0',_binary '\0','2021-06-16 09:09:02','1',NULL,NULL),(854769607901315072,NULL,'wrjxh055','DEV_MODEL_HUBBLE',NULL,4840,1,_binary '\0',_binary '\0','2021-06-16 09:09:15','1',NULL,NULL),(854772784155459584,NULL,'xh009','DEV_MODEL_HUBBLE',NULL,4841,1,_binary '\0',_binary '\0','2021-06-16 09:21:52','1',NULL,NULL),(862625578661052416,NULL,'xh016','LOAD_CAM_MODEL',NULL,4844,1,_binary '\0',_binary '\0','2021-07-08 01:26:04','1',NULL,NULL),(862625710068596736,NULL,'sccj022','MNF',NULL,4845,1,_binary '\0',_binary '\0','2021-07-08 01:26:36','1',NULL,NULL),(869881973760458752,NULL,'videoFlowing','VIDEO_FLOWING]',NULL,4846,1,_binary '\0',_binary '\0','2021-07-28 02:00:24','1',NULL,NULL),(869977610707402752,819226411490476032,'ZOOMVALUE','DEV_ACTION_MODEL',NULL,4847,2,_binary '',_binary '','2021-07-28 08:20:25','1','2022-04-13 03:01:46','175627050911006720'),(877924523268243456,NULL,'INTERFACE_GROUP_WAREHOUSE','INTERFACE_GROUP',NULL,9790,1,_binary '\0',_binary '\0','2021-09-22 06:52:48','70179580555558912','2022-03-30 10:16:48','1'),(888060587236524032,NULL,'chengyanyuan','DETECTION_COMPANY',NULL,4849,1,_binary '\0',_binary '\0','2021-09-16 05:55:43','1',NULL,NULL),(890542739517734912,NULL,'sccj023','MNF',NULL,4850,1,_binary '\0',_binary '\0','2021-09-23 02:18:54','1',NULL,NULL),(890543036805808128,NULL,'sccj024','MNF',NULL,4851,1,_binary '\0',_binary '\0','2021-09-23 02:20:05','1',NULL,NULL),(890543737313296384,NULL,'wrjxh057','PLANE_MODEL',NULL,4852,1,_binary '\0',_binary '\0','2021-09-23 02:22:52','1',NULL,NULL),(890544103899660288,NULL,'wrjxh058','PLANE_MODEL',NULL,4853,1,_binary '\0',_binary '\0','2021-09-23 02:24:19','1',NULL,NULL),(890544198930006016,NULL,'wrjxh059','PLANE_MODEL',NULL,4854,1,_binary '\0',_binary '\0','2021-09-23 02:24:42','1',NULL,NULL),(890544439741775872,NULL,'xh017','LOAD_CAM_MODEL',NULL,4855,1,_binary '\0',_binary '\0','2021-09-23 02:25:39','1',NULL,NULL),(890544616858845184,NULL,'xh018','LOAD_CAM_MODEL',NULL,4856,1,_binary '\0',_binary '\0','2021-09-23 02:26:22','1',NULL,NULL),(890544706298183680,NULL,'xh020','LOAD_CAM_MODEL',NULL,4857,1,_binary '\0',_binary '\0','2021-09-23 02:26:43','1',NULL,NULL),(890544706298183681,NULL,'JAVA_OKHTTP','OPEN_API_SAMPLE_LANGUAGE',NULL,330,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183682,NULL,'PHP_HTTP_REQUEST2','OPEN_API_SAMPLE_LANGUAGE',NULL,328,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183683,NULL,'PYTHON_REQUESTS','OPEN_API_SAMPLE_LANGUAGE',NULL,328,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183684,NULL,'NODEJS_AXIOS','OPEN_API_SAMPLE_LANGUAGE',NULL,328,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183685,NULL,'C#_RESTSHARP','OPEN_API_SAMPLE_LANGUAGE',NULL,326,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(910187933183639552,NULL,'358','POC_USER','{\"loginApi\":\"https://112.33.0.176:4010\",\"serverApi\":\"https://112.33.0.176:4482\",\"customId\":\"POC-1284\",\"customPd\":\"MzQwY04zYiE=\",\"dispatcherId\":\"8586510001\",\"dispatcherPd\":\"WXhjQDE5OTE=\"}',4858,1,_binary '',_binary '\0','2021-11-18 09:14:24','175627050911006720','2024-07-04 01:21:34','188243415207510016'),(910564884515782656,NULL,'towerInspectionQJ','DEV_ACTION_MODEL',NULL,10890,1,_binary '\0',_binary '\0','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016'),(910572131199352832,NULL,'358','CHEWUTONG_COMPANY',NULL,4860,1,_binary '\0',_binary '\0','2021-11-17 08:48:33','175627050911006720',NULL,NULL),(910572387282583552,NULL,'71','CHEWUTONG_COMPANY',NULL,4861,1,_binary '\0',_binary '\0','2021-11-17 08:49:34','175627050911006720',NULL,NULL),(911207437468565504,NULL,'gddc','LOAD_CAM_MODEL',NULL,4862,1,_binary '\0',_binary '\0','2021-11-19 02:53:02','175627050911006720',NULL,NULL),(917722458432339968,NULL,'INTERFACE_GROUP_FIRE','INTERFACE_GROUP',NULL,9789,1,_binary '\0',_binary '\0','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1'),(917809101881344000,NULL,'2','XF_COMPANY',NULL,4864,1,_binary '\0',_binary '\0','2021-12-07 08:05:41','175627050911006720',NULL,NULL),(920367578843578368,NULL,'UAS00011009 ','UASID_ZIGONG',NULL,4875,1,_binary '\0',_binary '','2021-12-15 05:38:12','175627050911006720','2021-12-15 05:41:59','175627050911006720'),(920367751128809472,NULL,'IP','IP_ZIGONG',NULL,4868,1,_binary '\0',_binary '\0','2021-12-15 05:43:22','175627050911006720','2021-12-15 05:43:21','175627050911006720'),(920367823522496512,NULL,'PORT','IP_ZIGONG',NULL,4869,1,_binary '\0',_binary '\0','2021-12-14 09:46:32','175627050911006720','2021-12-14 09:46:32','175627050911006720'),(920670911965822976,NULL,'UAS00011007','UASID_ZIGONG',NULL,4874,1,_binary '\0',_binary '','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23','175627050911006720'),(920672098844803072,NULL,'UAS00011010','UASID_ZIGONG',NULL,4876,1,_binary '\0',_binary '\0','2021-12-15 05:42:13','175627050911006720',NULL,NULL),(922428546452946944,NULL,'test','DEV_MODEL_HUBBLE',NULL,4877,1,_binary '\0',_binary '','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08','173818970422378496'),(922428546452946945,NULL,'cover','TOWER_DEFECT_CATEGORY',NULL,4856,1,_binary '\0',_binary '\0','2022-01-18 11:27:41','1','2022-01-18 11:27:41','1'),(922428546452946946,NULL,'disaster','TOWER_DEFECT_CATEGORY',NULL,4855,1,_binary '\0',_binary '\0','2022-01-18 11:27:41','1','2022-01-18 11:27:41','1'),(922428546452946947,NULL,'construction','TOWER_DEFECT_CATEGORY',NULL,4854,1,_binary '\0',_binary '\0','2022-01-18 11:27:42','1','2022-01-18 11:27:42','1'),(922428546452946948,NULL,'fall','TOWER_DEFECT_CATEGORY',NULL,4853,1,_binary '\0',_binary '\0','2022-01-18 11:27:42','1','2022-01-18 11:27:42','1'),(922428546452946949,NULL,'tilted','TOWER_DEFECT_CATEGORY',NULL,4852,1,_binary '\0',_binary '\0','2022-01-18 11:27:42','1','2022-01-18 11:27:42','1'),(922428546452946950,NULL,'area','ALARM_INDEX',NULL,365,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946951,NULL,'signal','ALARM_INDEX',NULL,341,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946952,NULL,'gps','ALARM_INDEX',NULL,340,1,_binary '\0',_binary '\0','2022-03-14 05:50:28','173818970422378496','2022-03-14 05:50:27','1'),(922428546452946953,NULL,'elec','ALARM_INDEX',NULL,339,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946954,NULL,'height','ALARM_INDEX',NULL,338,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946955,NULL,'speed','ALARM_INDEX',NULL,337,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946956,NULL,'web','NOTICE_WAY',NULL,9781,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946957,NULL,'sms','NOTICE_WAY',NULL,9780,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946958,NULL,'email','NOTICE_WAY',NULL,345,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946959,NULL,'message','NOTICE_WAY',NULL,344,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946960,NULL,'instation','NOTICE_WAY',NULL,343,1,_binary '\0',_binary '\0','2022-01-19 01:14:23','1','2022-01-19 01:14:23','1'),(922428546452946961,NULL,'warn','ALARM_LEVEL',NULL,348,1,_binary '\0',_binary '\0','2022-01-19 01:14:50','1','2022-01-19 01:14:50','1'),(922428546452946962,NULL,'careful','ALARM_LEVEL',NULL,347,1,_binary '\0',_binary '\0','2022-01-19 01:14:50','1','2022-01-19 01:14:50','1'),(922428546452946963,NULL,'attention','ALARM_LEVEL',NULL,346,1,_binary '\0',_binary '\0','2022-01-19 01:14:50','1','2022-01-19 01:14:50','1'),(922428546452946964,NULL,'rushInto','ALARM_TRIGGER',NULL,364,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946965,NULL,'rushOut','ALARM_TRIGGER',NULL,363,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946966,NULL,'smallOrEqual','ALARM_TRIGGER',NULL,352,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946967,NULL,'bigOrEqual','ALARM_TRIGGER',NULL,351,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946968,NULL,'small','ALARM_TRIGGER',NULL,350,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946969,NULL,'big','ALARM_TRIGGER',NULL,349,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946970,NULL,'0','DEAL_RESULT',NULL,369,1,_binary '\0',_binary '\0','2022-01-19 01:15:48','1','2022-01-19 01:15:48','1'),(922428546452946971,NULL,'1','DEAL_RESULT',NULL,368,1,_binary '\0',_binary '\0','2022-01-19 01:15:48','1','2022-01-19 01:15:48','1'),(922428546452946972,NULL,'rushOut','AREA_ALARM_TRIGGER',NULL,362,1,_binary '\0',_binary '\0','2022-01-19 01:16:12','1','2022-01-19 01:16:12','1'),(922428546452946973,NULL,'rushInto','AREA_ALARM_TRIGGER',NULL,361,1,_binary '\0',_binary '\0','2022-01-19 01:16:12','1','2022-01-19 01:16:12','1'),(922428546452946974,NULL,'level','TRIGGER_UNIT',NULL,371,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946975,NULL,'meter','TRIGGER_UNIT',NULL,357,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946976,NULL,'percent','TRIGGER_UNIT',NULL,356,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946977,NULL,'ge','TRIGGER_UNIT',NULL,355,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946978,NULL,'mPerSec','TRIGGER_UNIT',NULL,353,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946979,NULL,'DA','PLANE_MODEL',NULL,7144,1,_binary '\0',_binary '\0','2022-01-20 01:15:40','123','2022-09-20 08:29:33','1'),(922428546452946980,NULL,'FFFF','PLANE_MODEL',NULL,6226,1,_binary '',_binary '\0','2022-01-20 01:15:40','123','2022-09-20 08:29:33','1'),(922428546452946981,NULL,'five','PLANE_LEVEL','5',391,1,_binary '\0',_binary '\0','2022-01-20 01:16:26','123','2022-01-20 01:16:26','123'),(922428546452946982,NULL,'four','PLANE_LEVEL','4',390,1,_binary '\0',_binary '\0','2022-01-20 01:16:26','123','2022-01-20 01:16:26','123'),(922428546452946983,NULL,'three','PLANE_LEVEL','3',389,1,_binary '\0',_binary '\0','2022-01-20 01:16:27','123','2022-01-20 01:16:27','123'),(922428546452946984,NULL,'two','PLANE_LEVEL','2',388,1,_binary '\0',_binary '\0','2022-01-20 01:16:27','123','2022-01-20 01:16:27','123'),(922428546452946985,NULL,'one','PLANE_LEVEL','1',387,1,_binary '\0',_binary '\0','2022-01-20 01:16:27','123','2022-01-20 01:16:27','123'),(922428546452946986,NULL,'idcard','IDENTITY_TYPE',NULL,392,1,_binary '\0',_binary '\0','2022-01-20 01:16:46','123','2022-01-20 01:16:46','123'),(922428546452946987,NULL,'westarea','AIRSPACE_UNIT',NULL,393,1,_binary '\0',_binary '\0','2022-01-20 01:17:03','123','2022-01-20 01:17:03','123'),(922428546452946988,NULL,'qualification','FLIGHT_TYPE','4',400,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946989,NULL,'medium ','FLIGHT_TYPE','3',399,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946990,NULL,'micro','FLIGHT_TYPE','2',398,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946991,NULL,'light','FLIGHT_TYPE','1',397,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946992,NULL,'perair','FLIGHT_TYPE',NULL,395,1,_binary '',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946993,NULL,'airtrans','FLIGHT_TYPE',NULL,394,1,_binary '',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946994,NULL,'PROCEDURE_TYPE','PROCEDURE_TYPE','0:无终审\n1:自动终审\n2:手动终审',4850,1,_binary '\0',_binary '\0','2022-01-20 01:17:46','123','2023-07-17 08:43:35','199120334480211968'),(922428546452946995,NULL,'0','REAL_STAT',NULL,9788,1,_binary '\0',_binary '\0','2022-03-11 06:08:54','123','2022-03-11 06:08:54','123'),(922428546452946996,NULL,'1','REAL_STAT',NULL,9787,1,_binary '\0',_binary '\0','2022-03-11 06:08:54','123','2022-03-11 06:08:54','123'),(922428546452946997,NULL,'LOAD_GAS_MODEL','DEV_MODEL',NULL,4857,1,_binary '\0',_binary '\0','2022-03-11 06:09:18','123','2023-10-11 06:11:00','123'),(922428546452946998,NULL,'test-ltt-3','LOAD_GAS_MODEL',NULL,4862,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452946999,NULL,'test-ltt-2','LOAD_GAS_MODEL',NULL,4861,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452947000,NULL,'test-ltt-1','LOAD_GAS_MODEL',NULL,4860,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452947001,NULL,'qtjc001','LOAD_GAS_MODEL',NULL,4858,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452947002,NULL,'123232','QUOTA_TYPE',NULL,10826,1,_binary '\0',_binary '','2022-03-11 06:13:07','123','2022-04-27 05:58:20','1'),(922428546452947003,NULL,'STORAGE_CAPACITY','QUOTA_TYPE','公司可使用的存储空间',10825,1,_binary '\0',_binary '\0','2022-03-11 06:13:07','123','2022-04-27 03:39:58','1'),(922428546452947004,NULL,'KML_IMPORT_ROUTE_NUMBER','QUOTA_TYPE','kmz航线管理里面,【导入航线】的配额',3343,1,_binary '\0',_binary '\0','2022-03-11 06:13:07','123','2024-03-04 03:49:34','89730635001757696'),(922428546452947005,NULL,'0','SAVE_STAT',NULL,10884,1,_binary '\0',_binary '\0','2022-03-11 06:13:43','123','2022-03-11 06:13:43','123'),(922428546452947006,NULL,'1','SAVE_STAT',NULL,10883,1,_binary '\0',_binary '\0','2022-03-11 06:13:43','123','2022-03-11 06:13:43','123'),(956152932712185856,NULL,'UAS00011175','UASID_ZIGONG',NULL,10885,1,_binary '\0',_binary '\0','2022-03-23 03:30:23','175627050911006720',NULL,NULL),(956152932712185857,NULL,'ACCOUNT_RULE','BLUR_RULE',NULL,381,1,_binary '\0',_binary '\0','2022-03-30 06:05:45','1','2022-03-30 06:05:45','1'),(956152932712185858,NULL,'EMAIL_RULE','BLUR_RULE',NULL,380,1,_binary '\0',_binary '\0','2022-03-30 06:05:45','1','2022-03-30 06:05:45','1'),(956152932712185859,NULL,'TELEPHONE','BLUR_RULE',NULL,379,1,_binary '\0',_binary '\0','2022-03-30 06:05:45','1','2022-03-30 06:05:45','1'),(958731191543005184,NULL,'wrjxh060','PLANE_MODEL',NULL,10886,1,_binary '\0',_binary '\0','2022-03-30 06:15:28','175627050911006720',NULL,NULL),(958731452466462720,NULL,'sccj025','MNF',NULL,10887,1,_binary '\0',_binary '\0','2022-03-30 06:16:30','175627050911006720',NULL,NULL),(958731486968807424,NULL,'sccj025','ADAPT_MNF',NULL,10888,1,_binary '\0',_binary '\0','2022-03-30 06:16:38','175627050911006720',NULL,NULL),(958731765491564544,NULL,'xh021','LOAD_CAM_MODEL',NULL,10889,1,_binary '\0',_binary '\0','2022-03-30 06:17:45','175627050911006720',NULL,NULL),(963755719004389376,NULL,'ZOOM','DEV_ACTION_MODEL','摄像头变焦',4819,1,_binary '\0',_binary '\0','2022-04-13 03:01:31','175627050911006720','2022-04-13 03:01:31',NULL),(968802322463457280,NULL,'sccj026','MNF',NULL,10892,1,_binary '\0',_binary '\0','2022-04-27 01:14:33','175627050911006720','2022-04-27 01:14:33','175627050911006720'),(968802441632022528,NULL,'wrjxh061','PLANE_MODEL',NULL,10893,1,_binary '\0',_binary '\0','2022-04-27 01:15:02','175627050911006720','2022-04-27 01:15:02','175627050911006720'),(968803243973017600,NULL,'xh022','LOAD_CAM_MODEL',NULL,10894,1,_binary '\0',_binary '\0','2022-04-27 01:18:13','175627050911006720','2022-04-27 01:18:13','175627050911006720'),(968803243973017601,NULL,'HOUSE_MODEL','DEV_MODEL',NULL,12255,1,_binary '\0',_binary '\0','2022-04-27 03:38:53','1','2022-04-27 03:38:53','1'),(968803243973017602,NULL,'AutoTest_load','DEV_MODEL',NULL,10876,1,_binary '\0',_binary '\0','2022-04-27 03:38:53','1','2022-04-27 03:38:53','1'),(968803243973017603,NULL,'SUB_COMPANY_NUMBER','QUOTA_TYPE','可创建子组织数量',10891,1,_binary '\0',_binary '\0','2022-04-27 03:39:57','1','2024-02-19 06:15:35','89730635001757696'),(968880084515684352,NULL,'xiliuuav','PLANE_MODEL',NULL,12256,1,_binary '\0',_binary '\0','2022-04-27 06:23:33','199120334480211968','2022-04-27 06:23:33','199120334480211968'),(972179860631977984,NULL,'SPARY','DEV_MODEL',NULL,12257,1,_binary '\0',_binary '\0','2022-05-06 08:55:41','188243415207510016','2022-05-06 08:55:41','188243415207510016'),(972180183790518272,NULL,'sxh001','SPARY',NULL,12258,1,_binary '\0',_binary '\0','2022-05-06 08:56:58','188243415207510016','2022-05-06 08:56:58','188243415207510016'),(972180183790518273,NULL,'PL1','PICTURE_LABELS','',10899,1,_binary '\0',_binary '\0','2022-06-08 06:24:53','123','2023-12-18 08:30:17','1'),(972180183790518274,NULL,'PL2','PICTURE_LABELS',NULL,10900,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518275,NULL,'PL3','PICTURE_LABELS',NULL,10904,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518276,NULL,'PL7','PICTURE_LABELS',NULL,10903,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:20','188243415207510016'),(972180183790518277,NULL,'PL8','PICTURE_LABELS',NULL,10902,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:24','188243415207510016'),(972180183790518278,NULL,'PL9','PICTURE_LABELS',NULL,10901,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:13','188243415207510016'),(972180183790518279,NULL,'PL4','PICTURE_LABELS',NULL,10905,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518280,NULL,'PL5','PICTURE_LABELS',NULL,10906,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518281,NULL,'PL6','PICTURE_LABELS',NULL,10898,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:33','188243415207510016'),(972180183790518282,NULL,'PL10','PICTURE_LABELS',NULL,10897,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:37','188243415207510016'),(972180183790518283,NULL,'PL11','PICTURE_LABELS',NULL,10896,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:42','188243415207510016'),(972180183790518284,NULL,'PL12','PICTURE_LABELS',NULL,10895,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518285,NULL,'yrd','TASK_TYPE',NULL,10894,1,_binary '\0',_binary '\0','2022-06-08 06:25:24','123','2022-06-08 06:25:24','123'),(972180183790518286,NULL,'other','TASK_TYPE',NULL,10893,1,_binary '\0',_binary '\0','2022-06-08 06:25:24','123','2022-06-08 06:25:24','123'),(972180183790518287,NULL,'danger-fence','AREA_TYPE',NULL,371,1,_binary '\0',_binary '\0','2022-06-10 03:51:15','123','2022-06-10 03:51:15','123'),(972180183790518288,NULL,'security-fence','AREA_TYPE',NULL,370,1,_binary '\0',_binary '\0','2022-06-10 03:51:15','123','2022-06-10 03:51:15','123'),(972180183790518289,NULL,'GL1','GAS_LABELS',NULL,13417,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518290,NULL,'GL2','GAS_LABELS',NULL,13416,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518291,NULL,'GL3','GAS_LABELS',NULL,13415,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518292,NULL,'GL4','GAS_LABELS',NULL,13414,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518293,NULL,'GL5','GAS_LABELS',NULL,13413,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518294,NULL,'GL6','GAS_LABELS',NULL,13412,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518295,NULL,'GL7','GAS_LABELS',NULL,13411,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518296,NULL,'LICENSE_SUSPENSION','PILOT_VIOLATION_PENALTY',NULL,10915,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518297,NULL,'DEDUCTION','PILOT_VIOLATION_PENALTY',NULL,10914,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518298,NULL,'FINE','PILOT_VIOLATION_PENALTY',NULL,10913,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518299,NULL,'WARN','PILOT_VIOLATION_PENALTY',NULL,10912,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518300,NULL,'ANONYMOUS_FLY','PILOT_VIOLATION_TYPE',NULL,10911,1,_binary '\0',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(972180183790518301,NULL,'NO_FLY_AREA','PILOT_VIOLATION_TYPE',NULL,10910,1,_binary '\0',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(972180183790518302,NULL,'WORK_DISTURBANCE','PILOT_VIOLATION_TYPE',NULL,10909,1,_binary '\0',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(972180183790518303,NULL,'VTOLFIXED_WING_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10908,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518304,NULL,'VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10907,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518305,NULL,'VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10906,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518306,NULL,'AIRSHIP_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10905,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518307,NULL,'AIRSHIP_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10904,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518308,NULL,'AIRSHIP_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10903,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518309,NULL,'MULTI_ROTOR_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10902,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518310,NULL,'MULTI_ROTOR_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10901,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518311,NULL,'MULTI_ROTOR_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10900,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518312,NULL,'HELICOPTER_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10899,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518313,NULL,'HELICOPTER_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10898,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518314,NULL,'HELICOPTER_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10897,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518315,NULL,'FIXED_WING_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10896,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518316,NULL,'FIXED_WING_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10895,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518317,NULL,'FIXED_WING_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10894,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518318,NULL,'GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','GROUP_TEMPLATE_SCOPE',NULL,10927,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518319,NULL,'GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','GROUP_TEMPLATE_SCOPE',NULL,10926,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518320,NULL,'GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','GROUP_TEMPLATE_SCOPE',NULL,10925,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518321,NULL,'GROUP_TEMPLATE_SCOPE_ALL','GROUP_TEMPLATE_SCOPE',NULL,10923,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518322,NULL,'GROUP_TEMPLATE_SCOPE_ROLE','GROUP_TEMPLATE_SCOPE',NULL,10921,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518323,NULL,'EMERGENCY_COMMUNICATION','MNF',NULL,14943,1,_binary '\0',_binary '\0','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1'),(972180183790518324,NULL,'CERTIFIED','SUAV_USER_CERTIFICATION_STATUS',NULL,10920,1,_binary '\0',_binary '\0','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1'),(972180183790518325,NULL,'UNDER_CERTIFICATION','SUAV_USER_CERTIFICATION_STATUS',NULL,10919,1,_binary '\0',_binary '\0','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1'),(972180183790518326,NULL,'UNCERTIFIED','SUAV_USER_CERTIFICATION_STATUS',NULL,10918,1,_binary '\0',_binary '\0','2022-09-20 08:29:18','1','2023-08-24 02:17:46','1'),(972180183790518327,NULL,'DISABLED','SUAV_USER_STATUS',NULL,10917,1,_binary '\0',_binary '\0','2022-09-20 08:29:21','1','2022-09-20 08:29:21','1'),(972180183790518328,NULL,'ENABLED','SUAV_USER_STATUS',NULL,10916,1,_binary '\0',_binary '\0','2022-09-20 08:29:21','1','2022-09-20 08:29:21','1'),(972180183790518329,NULL,'Tethered_Drone','PLANE_MODEL',NULL,14942,1,_binary '\0',_binary '\0','2022-09-20 08:29:32','1','2022-09-20 08:29:32','1'),(972180183790518330,NULL,'Medium_Drone','PLANE_MODEL',NULL,14941,1,_binary '\0',_binary '\0','2022-09-20 08:29:32','1','2022-09-20 08:29:32','1'),(972180183790518331,NULL,'Large_Drone','PLANE_MODEL',NULL,14940,1,_binary '\0',_binary '\0','2022-09-20 08:29:32','1','2022-09-20 08:29:32','1'),(972180183790518332,NULL,'test','PLANE_MODEL',NULL,14758,1,_binary '\0',_binary '\0','2022-09-20 08:29:33','1','2022-09-20 08:29:33','1'),(972180183790518333,NULL,'mt1','MAINTENANCE_TEAM',NULL,8822,1,_binary '\0',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(972180183790518334,NULL,'mt2','MAINTENANCE_TEAM',NULL,8821,1,_binary '\0',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(972180183790518335,NULL,'mt3','MAINTENANCE_TEAM',NULL,8820,1,_binary '\0',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(972180183790518336,NULL,'tc1','TOWER_CATEGORY',NULL,8819,1,_binary '\0',_binary '\0','2022-09-22 06:47:14','1','2022-09-22 06:47:14','1'),(972180183790518337,NULL,'tc2','TOWER_CATEGORY',NULL,8818,1,_binary '\0',_binary '\0','2022-09-22 06:47:14','1','2022-09-22 06:47:14','1'),(972180183790518338,NULL,'1323096648758464513','scrName',NULL,15120,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:06','1'),(972180183790518339,NULL,'1323096648758464512','scrName',NULL,15119,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:17','1'),(972180183790518340,NULL,'1323096648758464516','scrName',NULL,15118,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:28','1'),(972180183790518341,NULL,'1323096648758464517','scrName',NULL,15117,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:35','1'),(1031857258025189376,NULL,'INTERFACE_GROUP_AI','INTERFACE_GROUP',NULL,15121,1,_binary '\0',_binary '\0','2022-10-18 01:12:21','188243415207510016','2022-10-18 01:12:21','188243415207510016'),(1031863474717720576,NULL,'INTERFACE_GROUP_MODELV2','INTERFACE_GROUP',NULL,15122,1,_binary '\0',_binary '\0','2022-10-18 01:37:03','188243415207510016','2022-10-18 01:37:03','188243415207510016'),(1037685983618793472,NULL,'INTERFACE_FLIGHTCONTROL','INTERFACE_GROUP',NULL,15123,1,_binary '\0',_binary '','2022-11-03 03:13:38','1','2022-11-03 03:13:47','1'),(1037686130448793600,NULL,'INTERFACE_GROUP_FLIGHTCONTROL','INTERFACE_GROUP',NULL,15124,1,_binary '\0',_binary '\0','2022-11-03 03:14:13','1','2022-12-06 03:51:21','188243415207510016'),(1039174194060853248,NULL,'INTERFACE_GROUP_PAYLOADCONTROL','INTERFACE_GROUP',NULL,15125,1,_binary '\0',_binary '\0','2022-11-07 05:47:15','1','2022-11-07 05:47:15','1'),(1044181943391879168,NULL,'xh023','LOAD_CAM_MODEL',NULL,15126,1,_binary '\0',_binary '\0','2022-11-21 01:26:15','1','2022-11-21 01:26:15','1'),(1044198875373502464,NULL,'sccj027','MNF',NULL,15127,1,_binary '\0',_binary '\0','2022-11-21 02:33:32','1','2023-03-02 02:14:50','199120334480211968'),(1044199050150150144,NULL,'wrjxh062','PLANE_MODEL',NULL,15128,1,_binary '\0',_binary '\0','2022-11-21 02:34:14','1','2022-11-21 02:34:14','1'),(1044199248054190080,NULL,'wrjcd005','PLANE_SIZE',NULL,15129,1,_binary '\0',_binary '\0','2022-11-21 02:35:01','1','2022-11-21 02:35:01','1'),(1047077946424033280,NULL,'56','CUSTOMIZE_MISSION_REPORT_ADDRESS','http://218.75.255.91:61000/monitor-business/reportURLUpload',15130,1,_binary '\0',_binary '\0','2022-11-29 01:13:56','1','2023-03-15 09:25:25','1'),(1050724684611452928,NULL,'wrjxh063','PLANE_MODEL',NULL,15131,1,_binary '\0',_binary '\0','2022-12-09 02:44:46','1','2023-09-20 08:29:35','1'),(1050724744573222912,NULL,'wrjxh064','PLANE_MODEL',NULL,15132,1,_binary '\0',_binary '\0','2022-12-09 02:45:01','1','2022-12-09 02:45:01','1'),(1050725005643481088,NULL,'xh024','LOAD_CAM_MODEL',NULL,15133,1,_binary '\0',_binary '\0','2022-12-09 02:46:03','1','2022-12-09 02:46:03','1'),(1050725081040289792,NULL,'xh025','LOAD_CAM_MODEL',NULL,15134,1,_binary '\0',_binary '\0','2022-12-09 02:46:21','1','2022-12-09 02:46:21','1'),(1052707169662664704,NULL,'t2','POC_USER','0dXJlIjoiVW5yZXN0cmljdGVkU2hhcmVkQXJyYXlCdWZmZXIiLCJleHBpcnkiOjE2ODgwODMxOTksImlzU3ViZG9tYWluIjp0cnVlfQ==',15135,1,_binary '\0',_binary '\0','2022-12-14 14:02:28','188243415207510016','2022-12-14 14:48:37','188243415207510016'),(1052707265385070592,NULL,'t1','POC_USER','AtmHDTTPiUPEvVfJTI7KLwFcufVOW2iZeMHZjbLY7czUyx/T8whKyTVVoNaecyD6GAHITeDHvKuMoqiv1GOgFAkAAAB8eyJvcmlnaW4iOiJodHRwczovL2xvY2FsLnVhdmNtbGMuY29tOjMwMDAiLCJmZWF',15136,1,_binary '\0',_binary '\0','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:48:21','188243415207510016'),(1052707265385070593,NULL,'2','PILOT_STATE',NULL,10962,1,_binary '\0',_binary '\0','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123'),(1052707265385070594,NULL,'1','PILOT_STATE',NULL,10961,1,_binary '\0',_binary '\0','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123'),(1052707265385070595,NULL,'0','PILOT_STATE',NULL,10960,1,_binary '\0',_binary '\0','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123'),(1073014468411129856,NULL,'sccj028','MNF',NULL,15137,1,_binary '\0',_binary '\0','2023-02-08 14:56:25','175627050911006720','2023-02-08 14:56:25','175627050911006720'),(1073014468977360896,NULL,'sccj028','MNF',NULL,15138,1,_binary '\0',_binary '','2023-02-08 14:56:25','175627050911006720','2023-02-08 14:56:39','175627050911006720'),(1073014803762511872,NULL,'sccj029','MNF',NULL,15139,1,_binary '\0',_binary '\0','2023-02-08 14:57:45','175627050911006720','2023-02-08 14:57:45','175627050911006720'),(1073016129519091712,NULL,'wrjxh065','PLANE_MODEL',NULL,15140,1,_binary '\0',_binary '\0','2023-02-08 15:03:01','175627050911006720','2023-02-08 15:03:01','175627050911006720'),(1073016186637123584,NULL,'wrjxh066','PLANE_MODEL',NULL,15141,1,_binary '\0',_binary '\0','2023-02-08 15:03:15','175627050911006720','2023-02-08 15:03:15','175627050911006720'),(1073016265460678656,NULL,'wrjxh067','PLANE_MODEL',NULL,15142,1,_binary '\0',_binary '\0','2023-02-08 15:03:33','175627050911006720','2023-02-08 15:03:33','175627050911006720'),(1073016361422159872,NULL,'xh026','LOAD_CAM_MODEL',NULL,15143,1,_binary '\0',_binary '\0','2023-02-08 15:03:56','175627050911006720','2023-02-08 15:03:56','175627050911006720'),(1073016433081843712,NULL,'xh027','LOAD_CAM_MODEL',NULL,15144,1,_binary '\0',_binary '\0','2023-02-08 15:04:13','175627050911006720','2023-02-08 15:04:13','175627050911006720'),(1073016487578435584,NULL,'xh028','LOAD_CAM_MODEL',NULL,15145,1,_binary '\0',_binary '\0','2023-02-08 15:04:26','175627050911006720','2023-02-08 15:04:26','175627050911006720'),(1074623816304427008,NULL,'hhqxh004','LOAD_SPK_MODEL',NULL,15146,1,_binary '\0',_binary '\0','2023-02-13 01:31:23','1','2023-02-13 01:31:23','1'),(1080811018168303616,NULL,'XZ001','LOAD_CAM_MODEL',NULL,15147,1,_binary '\0',_binary '\0','2023-03-02 03:17:07','199120334480211968','2023-03-02 03:17:07','199120334480211968'),(1088099090681561088,NULL,'jkxh013','LOAD_HNG_MODEL',NULL,15148,1,_binary '\0',_binary '\0','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1'),(1088100047175811072,NULL,'wrjxh071','PLANE_MODEL',NULL,15149,1,_binary '\0',_binary '\0','2023-03-22 06:01:07','1','2023-03-22 06:01:07','1'),(1088100142701084672,NULL,'wrjxh072','PLANE_MODEL',NULL,15150,1,_binary '\0',_binary '\0','2023-03-22 06:01:30','1','2023-03-22 06:01:30','1'),(1088100249613893632,NULL,'wrjxh073','PLANE_MODEL',NULL,15151,1,_binary '\0',_binary '\0','2023-03-22 06:01:55','1','2023-03-22 06:01:55','1'),(1088101282461253632,NULL,'xh030','LOAD_CAM_MODEL',NULL,15152,1,_binary '\0',_binary '\0','2023-03-22 06:06:02','1','2023-03-22 06:06:02','1'),(1093491521899986944,NULL,'wrjxh063','DEV_MODEL_HUBBLE',NULL,15153,1,_binary '\0',_binary '\0','2023-04-06 03:04:55','1','2023-04-06 03:04:55','1'),(1093491876595499008,NULL,'xh024','DEV_MODEL_HUBBLE',NULL,15154,1,_binary '\0',_binary '\0','2023-04-06 03:06:19','1','2023-04-06 03:06:19','1'),(1094628709916213248,NULL,'jkxh014','LOAD_HNG_MODEL',NULL,15155,1,_binary '\0',_binary '\0','2023-04-09 06:23:42','173818970422378496','2023-04-09 06:23:42','173818970422378496'),(1094628915428720640,NULL,'M30_dual_camera','LOAD_CAM_MODEL',NULL,15156,1,_binary '',_binary '\0','2023-04-09 06:24:31','173818970422378496','2023-04-09 08:13:37','173818970422378496'),(1094628915428720641,NULL,'PARTNER_APP','APP_TYPE','合作应用',10968,1,_binary '\0',_binary '\0','2023-04-18 06:14:41','1','2023-04-18 06:14:41','1'),(1098287906105065472,NULL,'167','XF_COMPANY','西咸消防',15157,1,_binary '\0',_binary '\0','2023-04-19 08:44:02','188243415207510016','2023-04-19 08:44:02','188243415207510016'),(1100006650309246976,NULL,'qtjc002','LOAD_GAS_MODEL',NULL,15158,1,_binary '\0',_binary '\0','2023-04-24 02:33:43','1','2023-04-24 02:33:43','1'),(1100091495152615424,NULL,'HUS00000076','SCENARIOMAP','江苏省盐城市大丰荷兰花海景区',15159,1,_binary '\0',_binary '\0','2023-04-24 08:10:51','1','2023-06-20 12:03:25','89730635001757696'),(1100092511872876544,NULL,'HUS00000068','SCENARIOMAP','江苏省无锡市灵山景区',15160,1,_binary '\0',_binary '\0','2023-04-24 08:14:54','1','2023-06-20 12:10:57','89730635001757696'),(1100092708610899968,NULL,'HUS00000077','SCENARIOMAP','江苏省扬州市瘦西湖风景区',15161,1,_binary '\0',_binary '\0','2023-04-24 08:15:40','1','2023-06-20 12:11:26','89730635001757696'),(1100094879591038976,NULL,'HUS00000073','SCENARIOMAP',NULL,15162,1,_binary '\0',_binary '\0','2023-04-24 08:24:18','1','2023-04-24 08:24:18','1'),(1100094965117091840,NULL,'HUS00000066','SCENARIOMAP',NULL,15163,1,_binary '\0',_binary '\0','2023-04-24 08:24:38','1','2023-04-24 08:24:38','1'),(1100095053830815744,NULL,'HUS00000079','SCENARIOMAP',NULL,15164,1,_binary '\0',_binary '\0','2023-04-24 08:25:00','1','2023-04-24 08:25:00','1'),(1100095171296493568,NULL,'HUS00000075','SCENARIOMAP',NULL,15165,1,_binary '\0',_binary '\0','2023-04-24 08:25:28','1','2023-04-24 08:25:28','1'),(1100095266691743744,NULL,'HUS00000069','SCENARIOMAP','江苏省无锡市鼋头渚风景区',15166,1,_binary '\0',_binary '\0','2023-04-24 08:25:50','1','2023-06-20 12:11:37','89730635001757696'),(1100095600835166208,NULL,'HUS00000072','SCENARIOMAP','江苏省连云港市花果山景区',15167,1,_binary '\0',_binary '\0','2023-04-24 08:27:10','1','2023-06-20 12:13:11','89730635001757696'),(1100096505944997888,NULL,'HUS00000063','SCENARIOMAP','江苏省南京市牛首山文化旅游区',15168,1,_binary '\0',_binary '','2023-04-24 08:30:46','1','2023-09-30 06:01:26','188243415207510016'),(1100096599234707456,NULL,'HUS00000062','SCENARIOMAP',NULL,15169,1,_binary '\0',_binary '\0','2023-04-24 08:31:08','1','2023-04-24 08:31:08','1'),(1100096680331575296,NULL,'HUS00000061','SCENARIOMAP',NULL,15170,1,_binary '\0',_binary '','2023-04-24 08:31:27','1','2023-09-26 02:33:15','188243415207510016'),(1100096765777936384,NULL,'HUS00000064','SCENARIOMAP',NULL,15171,1,_binary '\0',_binary '\0','2023-04-24 08:31:48','1','2023-04-24 08:31:48','1'),(1100096860984442880,NULL,'HUS00000074','SCENARIOMAP','江苏省连云港市连岛景区',15172,1,_binary '\0',_binary '\0','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696'),(1100096931452944384,NULL,'HUS00000081','SCENARIOMAP',NULL,15173,1,_binary '\0',_binary '\0','2023-04-24 08:32:27','1','2023-04-24 08:32:27','1'),(1100097018291814400,NULL,'HUS00000083','SCENARIOMAP',NULL,15174,1,_binary '\0',_binary '\0','2023-04-24 08:32:48','1','2023-04-27 15:15:25','1'),(1100097096033239040,NULL,'HUS00000082','SCENARIOMAP',NULL,15175,1,_binary '\0',_binary '\0','2023-04-24 08:33:07','1','2023-04-24 08:33:07','1'),(1100097174290563072,NULL,'HUS00000080','SCENARIOMAP',NULL,15176,1,_binary '\0',_binary '\0','2023-04-24 08:33:25','1','2023-04-24 08:33:25','1'),(1100097298261606400,NULL,'HUS00000071','SCENARIOMAP',NULL,15177,1,_binary '\0',_binary '\0','2023-04-24 08:33:55','1','2023-04-24 08:33:55','1'),(1100097421955825664,NULL,'HUS00000078','SCENARIOMAP',NULL,15178,1,_binary '\0',_binary '\0','2023-04-24 08:34:24','1','2023-04-24 08:34:24','1'),(1100099037975019520,NULL,'HUS00000083','HOUSEAREA',NULL,15179,1,_binary '\0',_binary '\0','2023-04-24 08:40:50','1','2023-04-24 08:40:50','1'),(1100099089141334016,NULL,'HUS00000082','HOUSEAREA',NULL,15180,1,_binary '\0',_binary '\0','2023-04-24 08:41:02','1','2023-04-24 08:41:02','1'),(1100099142681624576,NULL,'HUS00000081','HOUSEAREA',NULL,15181,1,_binary '\0',_binary '\0','2023-04-24 08:41:14','1','2023-04-24 08:41:14','1'),(1100099232242597888,NULL,'HUS00000080','HOUSEAREA',NULL,15182,1,_binary '\0',_binary '\0','2023-04-24 08:41:36','1','2023-04-24 08:41:36','1'),(1100099346830983168,NULL,'HUS00000079','HOUSEAREA',NULL,15183,1,_binary '\0',_binary '\0','2023-04-24 08:42:03','1','2023-04-24 08:42:03','1'),(1100099431966965760,NULL,'HUS00000078','HOUSEAREA',NULL,15184,1,_binary '\0',_binary '\0','2023-04-24 08:42:23','1','2023-04-24 08:42:23','1'),(1100099489282129920,NULL,'HUS00000077','HOUSEAREA','江苏省扬州市瘦西湖风景区',15185,1,_binary '\0',_binary '\0','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696'),(1100099555233366016,NULL,'HUS00000076','HOUSEAREA','江苏省盐城市大丰荷兰花海景区',15186,1,_binary '\0',_binary '\0','2023-04-24 08:42:53','1','2023-06-15 10:05:06','89730635001757696'),(1100099625118859264,NULL,'HUS00000075','HOUSEAREA',NULL,15187,1,_binary '\0',_binary '\0','2023-04-24 08:43:09','1','2023-04-24 08:43:09','1'),(1100099703187439616,NULL,'HUS00000074','HOUSEAREA','江苏省连云港市连岛景区',15188,1,_binary '\0',_binary '\0','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696'),(1100099789934034944,NULL,'HUS00000073','HOUSEAREA',NULL,15189,1,_binary '\0',_binary '\0','2023-04-24 08:43:49','1','2023-04-24 08:43:49','1'),(1100099877217501184,NULL,'HUS00000072','HOUSEAREA','江苏省连云港市花果山景区',15190,1,_binary '\0',_binary '\0','2023-04-24 08:44:10','1','2023-09-27 02:00:26','89730635001757696'),(1100099973074124800,NULL,'HUS00000071','HOUSEAREA',NULL,15191,1,_binary '\0',_binary '\0','2023-04-24 08:44:32','1','2023-04-24 08:44:32','1'),(1100100033761509376,NULL,'HUS00000069','HOUSEAREA','江苏省无锡市鼋头渚风景区',15192,1,_binary '\0',_binary '\0','2023-04-24 08:44:47','1','2023-06-15 10:05:38','89730635001757696'),(1100100081979228160,NULL,'HUS00000068','HOUSEAREA','江苏省无锡市灵山景区',15193,1,_binary '\0',_binary '\0','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696'),(1100100149520105472,NULL,'HUS00000066','HOUSEAREA',NULL,15194,1,_binary '\0',_binary '\0','2023-04-24 08:45:15','1','2023-04-24 08:45:15','1'),(1100100395021107200,NULL,'HUS00000063','HOUSEAREA','江苏省南京市牛首山文化旅游区',15195,1,_binary '\0',_binary '\0','2023-04-24 08:46:13','1','2023-06-15 10:06:02','89730635001757696'),(1100100468903772160,NULL,'HUS00000062','HOUSEAREA','江苏省南京市玄武湖景区',15196,1,_binary '\0',_binary '\0','2023-04-24 08:46:31','1','2023-09-21 08:27:54','89730635001757696'),(1100100591222259712,NULL,'HUS00000061','HOUSEAREA',NULL,15197,1,_binary '\0',_binary '','2023-04-24 08:47:00','1','2023-09-21 08:30:34','89730635001757696'),(1100112751734292480,NULL,'HUS00000064','HOUSEAREA',NULL,15198,1,_binary '\0',_binary '\0','2023-04-24 09:35:19','1','2023-04-24 09:35:19','1'),(1100816337812324352,NULL,'AutoTest_gasData','LOAD_GAS_MODEL',NULL,24701,1,_binary '\0',_binary '\0','2024-09-18 02:05:49','173818970422378496','2024-09-18 02:05:49','173818970422378496'),(1100872484766351360,NULL,'HUS00000084','HOUSEAREA','江苏省常州市环球恐龙城休闲旅游区',15214,1,_binary '\0',_binary '\0','2023-04-26 11:54:14','1','2023-06-15 10:04:45','89730635001757696'),(1101090168116346880,NULL,'AutoTest_plane2','PLANE_MODEL','无人机管理自动化2',24612,1,_binary '\0',_binary '','2024-09-09 01:34:35','58582660930338816','2024-09-09 01:35:03','58582660930338816'),(1101129419994431488,NULL,'HUS00000086','HOUSEAREA','江苏省南通市森林野生动物园景区',15228,1,_binary '\0',_binary '\0','2023-04-27 04:55:12','1','2023-09-21 08:38:47','89730635001757696'),(1101129494577545216,NULL,'HUS00000085','HOUSEAREA','江苏省苏州市七里山塘景区',15229,1,_binary '\0',_binary '\0','2023-04-27 04:55:30','1','2023-06-15 10:04:18','89730635001757696'),(1101131532627607552,NULL,'HUS00000087','HOUSEAREA',NULL,15230,1,_binary '\0',_binary '\0','2023-04-27 05:03:35','1','2023-04-27 05:03:35','1'),(1101131678480334848,NULL,'HUS00000087','SCENARIOMAP',NULL,15231,1,_binary '\0',_binary '\0','2023-04-27 05:04:10','1','2023-04-27 05:04:10','1'),(1101131768985026560,NULL,'HUS00000086','SCENARIOMAP','江苏省南通市森林野生动物园',15574,1,_binary '\0',_binary '\0','2023-09-26 02:36:41','188243415207510016','2023-09-26 02:36:41','188243415207510016'),(1101131906772107264,NULL,'HUS00000085','SCENARIOMAP','江苏省苏州市七里山塘景区',15233,1,_binary '\0',_binary '\0','2023-04-27 05:05:05','1','2023-06-20 12:17:35','89730635001757696'),(1101283898291126272,NULL,'HUS00000084','SCENARIOMAP','江苏省常州市环球恐龙城休闲旅游区',15236,1,_binary '\0',_binary '\0','2023-04-27 15:09:02','1','2023-06-20 12:13:00','89730635001757696'),(1106217924911169536,NULL,'173','XF_COMPANY','海安公安',15318,1,_binary '\0',_binary '\0','2023-05-11 05:55:06','1','2023-05-11 05:55:06','1'),(1106217924911169537,NULL,'CipherInterface','CIPHER_OBJECT',NULL,10931,1,_binary '\0',_binary '\0','2023-05-18 10:54:44','1','2023-05-18 10:54:44','1'),(1106217924911169538,NULL,'CipherLicense','CIPHER_OBJECT',NULL,10930,1,_binary '\0',_binary '\0','2023-05-18 10:54:44','1','2023-05-18 10:54:44','1'),(1106217924911169539,NULL,'CipherMaterial','CIPHER_OBJECT',NULL,10929,1,_binary '\0',_binary '\0','2023-05-18 10:54:44','1','2023-05-18 10:54:44','1'),(1109067995369439232,NULL,'AutoTest_loadGas','LOAD_GAS_MODEL','气体检测仪自动化',24617,1,_binary '\0',_binary '','2024-09-09 01:36:26','58582660930338816','2024-09-09 01:36:43','58582660930338816'),(1118119999152586752,NULL,'112','XF_COMPANY',NULL,15451,1,_binary '\0',_binary '\0','2023-06-13 02:09:41','1','2023-06-13 02:09:41','1'),(1118953865425715200,NULL,'HUS00000110','HOUSEAREA','江苏省南京市栖霞山风景区',15452,1,_binary '\0',_binary '\0','2023-06-15 09:23:11','89730635001757696','2023-06-15 09:23:11','89730635001757696'),(1118953995713380352,NULL,'HUS00000109','HOUSEAREA','江苏省镇江市金山景区',15453,1,_binary '\0',_binary '\0','2023-06-15 09:23:42','89730635001757696','2023-06-15 09:23:42','89730635001757696'),(1118954159962324992,NULL,'HUS00000108','HOUSEAREA','江苏省镇江市西津渡历史文化街区',15454,1,_binary '\0',_binary '\0','2023-06-15 09:24:21','89730635001757696','2023-06-15 09:24:21','89730635001757696'),(1118954277453168640,NULL,'HUS00000107','HOUSEAREA','江苏省扬州市运河三湾风景区',15455,1,_binary '\0',_binary '\0','2023-06-15 09:24:49','89730635001757696','2023-09-27 01:59:47','89730635001757696'),(1118957034792812544,NULL,'HUS00000106','HOUSEAREA','江苏省扬州市东关历史文化旅游区',15456,1,_binary '\0',_binary '\0','2023-06-15 09:35:46','89730635001757696','2023-06-15 09:35:46','89730635001757696'),(1118957170071699456,NULL,'HUS00000105','HOUSEAREA','江苏省盐城市东台黄海森林公园景区',15457,1,_binary '\0',_binary '\0','2023-06-15 09:36:19','89730635001757696','2023-06-15 09:36:19','89730635001757696'),(1118957528613388288,NULL,'HUS00000104','HOUSEAREA','江苏省苏州市苏州乐园森林世界',15458,1,_binary '\0',_binary '\0','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:09','89730635001757696'),(1118957613665484800,NULL,'HUS00000103','HOUSEAREA','江苏省常州市天目湖景区',15459,1,_binary '\0',_binary '\0','2023-06-15 09:38:04','89730635001757696','2023-06-15 09:38:04','89730635001757696'),(1118957737602973696,NULL,'HUS00000102','HOUSEAREA','江苏省苏州市同里古镇景区',15460,1,_binary '\0',_binary '\0','2023-06-15 09:38:34','89730635001757696','2023-06-15 09:38:34','89730635001757696'),(1118957829961547776,NULL,'HUS00000101','HOUSEAREA','江苏省苏州市周庄古镇景区',15461,1,_binary '\0',_binary '\0','2023-06-15 09:38:56','89730635001757696','2023-06-15 09:38:56','89730635001757696'),(1118957932789104640,NULL,'HUS00000100','HOUSEAREA','江苏省苏州市木渎古镇',15462,1,_binary '\0',_binary '\0','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696'),(1118958031053258752,NULL,'HUS00000099','HOUSEAREA','江苏省徐州乐园景区',15463,1,_binary '\0',_binary '\0','2023-06-15 09:39:44','89730635001757696','2023-09-28 01:14:27','89730635001757696'),(1118958121809608704,NULL,'HUS00000098','HOUSEAREA','江苏省徐州市新沂窑湾古镇旅游区',15464,1,_binary '\0',_binary '\0','2023-06-15 09:40:05','89730635001757696','2023-06-15 09:40:05','89730635001757696'),(1118958229875851264,NULL,'HUS00000097','HOUSEAREA','江苏省无锡市清名桥古运河景区',15465,1,_binary '\0',_binary '\0','2023-06-15 09:40:31','89730635001757696','2023-06-15 09:40:31','89730635001757696'),(1118958351066071040,NULL,'HUS00000096','HOUSEAREA','江苏省无锡市惠山古镇景区',15466,1,_binary '\0',_binary '\0','2023-06-15 09:41:00','89730635001757696','2023-06-15 09:41:00','89730635001757696'),(1118964003847012352,NULL,'HUS00000094','HOUSEAREA','江苏省南京市天生桥景区',15467,1,_binary '\0',_binary '\0','2023-06-15 10:03:28','89730635001757696','2023-06-15 10:03:28','89730635001757696'),(1118964118787719168,NULL,'HUS00000093','HOUSEAREA','江苏省苏州市平江历史街区',15468,1,_binary '\0',_binary '\0','2023-06-15 10:03:55','89730635001757696','2023-06-15 10:03:55','89730635001757696'),(1120807072871481344,NULL,'HUS00000105','SCENARIOMAP','江苏省盐城市东台黄海森林公园景区',15469,1,_binary '\0',_binary '\0','2023-06-20 12:07:10','89730635001757696','2023-06-20 12:07:10','89730635001757696'),(1120807265947877376,NULL,'HUS00000098','SCENARIOMAP','江苏省徐州市新沂窑湾古镇旅游区',15470,1,_binary '\0',_binary '\0','2023-06-20 12:07:56','89730635001757696','2023-06-20 12:07:56','89730635001757696'),(1120807513348898816,NULL,'HUS00000099','SCENARIOMAP','江苏省徐州乐园景区',15471,1,_binary '\0',_binary '\0','2023-06-20 12:08:55','89730635001757696','2023-06-20 12:08:55','89730635001757696'),(1120807888839770112,NULL,'HUS00000108','SCENARIOMAP','江苏省镇江市西津渡历史文化街区',15472,1,_binary '\0',_binary '\0','2023-06-20 12:10:24','89730635001757696','2023-06-20 12:10:24','89730635001757696'),(1120808337512857600,NULL,'HUS00000101','SCENARIOMAP','江苏省苏州市周庄古镇景区',15473,1,_binary '\0',_binary '\0','2023-06-20 12:12:11','89730635001757696','2023-06-20 12:12:11','89730635001757696'),(1120808493977174016,NULL,'HUS00000102','SCENARIOMAP','江苏省苏州市同里古镇景区',15474,1,_binary '\0',_binary '\0','2023-06-20 12:12:49','89730635001757696','2023-06-20 12:12:49','89730635001757696'),(1120808718523432960,NULL,'HUS00000107','SCENARIOMAP','江苏省扬州市运河三湾风景区',15475,1,_binary '\0',_binary '\0','2023-06-20 12:13:42','89730635001757696','2023-06-20 12:13:42','89730635001757696'),(1120808878330609664,NULL,'HUS00000097','SCENARIOMAP','江苏省无锡市清名桥古运河景区',15476,1,_binary '\0',_binary '\0','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:27','89730635001757696'),(1120809119121408000,NULL,'HUS00000110','SCENARIOMAP','江苏省南京市栖霞山风景区',15477,1,_binary '\0',_binary '\0','2023-06-20 12:15:18','89730635001757696','2023-06-20 12:15:18','89730635001757696'),(1120809485716160512,NULL,'HUS00000106','SCENARIOMAP','江苏省扬州市东关历史文化旅游区',15478,1,_binary '\0',_binary '\0','2023-06-20 12:16:45','89730635001757696','2023-06-20 12:16:45','89730635001757696'),(1120809632294502400,NULL,'HUS00000100','SCENARIOMAP','江苏省苏州市木渎古镇',15479,1,_binary '\0',_binary '\0','2023-06-20 12:17:20','89730635001757696','2023-06-20 12:17:20','89730635001757696'),(1120809849177767936,NULL,'HUS00000093','SCENARIOMAP','江苏省苏州市平江历史街区',15480,1,_binary '\0',_binary '\0','2023-06-20 12:18:12','89730635001757696','2023-06-20 12:18:12','89730635001757696'),(1120810113389559808,NULL,'HUS00000109','SCENARIOMAP','江苏省镇江市金山景区',15481,1,_binary '\0',_binary '\0','2023-06-20 12:19:15','89730635001757696','2023-06-20 12:19:15','89730635001757696'),(1120810292964491264,NULL,'HUS00000103','SCENARIOMAP','江苏省常州市天目湖景区',15482,1,_binary '\0',_binary '\0','2023-06-20 12:19:57','89730635001757696','2023-06-20 12:19:57','89730635001757696'),(1120810533251973120,NULL,'HUS00000094','SCENARIOMAP','江苏省南京市天生桥景区',15483,1,_binary '\0',_binary '\0','2023-06-20 12:20:55','89730635001757696','2023-06-20 12:20:55','89730635001757696'),(1120810737191616512,NULL,'HUS00000104','SCENARIOMAP','江苏省苏州市苏州乐园森林世界',15484,1,_binary '\0',_binary '\0','2023-06-20 12:21:43','89730635001757696','2023-06-20 12:21:43','89730635001757696'),(1123273634392047616,NULL,'focus','DEV_ACTION_MODEL',NULL,15485,1,_binary '\0',_binary '\0','2023-06-27 07:28:24','1','2023-06-27 07:28:24','1'),(1126104157346856960,NULL,'AutoTest_uavHanger','PLANE_MODEL','机库管理自动化',24675,1,_binary '\0',_binary '','2024-09-11 02:14:26','58582660930338816','2024-09-19 03:03:09','58582660930338816'),(1146010901116092416,NULL,'185','XF_COMPANY',NULL,15562,1,_binary '\0',_binary '\0','2023-08-29 01:18:11','1','2023-08-29 01:18:11','1'),(1151927350603022336,NULL,'3','XF_COMPANY','深圳公安',15563,1,_binary '\0',_binary '\0','2023-09-14 09:08:02','1','2023-09-14 09:08:02','1'),(1154453707149017088,NULL,'HUS00000118','HOUSEAREA','江苏省南京市夫子庙',15564,1,_binary '\0',_binary '\0','2023-09-21 08:26:52','89730635001757696','2023-09-21 08:26:52','89730635001757696'),(1154454724133519360,NULL,'HUS00000119','HOUSEAREA','江苏省南京市红山动物园',15565,1,_binary '\0',_binary '\0','2023-09-21 08:30:55','89730635001757696','2023-09-21 08:30:55','89730635001757696'),(1154455042250506240,NULL,'HUS00000120','HOUSEAREA','江苏省南京市欢乐谷',15566,1,_binary '\0',_binary '\0','2023-09-21 08:32:11','89730635001757696','2023-09-21 08:32:11','89730635001757696'),(1154455906411347968,NULL,'HUS00000121','HOUSEAREA','江苏省常州市东方盐湖城',15567,1,_binary '\0',_binary '\0','2023-09-21 08:35:37','89730635001757696','2023-09-21 08:35:37','89730635001757696'),(1154456158853922816,NULL,'HUS00000122','HOUSEAREA','江苏省常州市南山竹海',15568,1,_binary '\0',_binary '\0','2023-09-21 08:36:37','89730635001757696','2023-09-21 08:36:37','89730635001757696'),(1156175790530887680,NULL,'HUS00000118','SCENARIOMAP','江苏省南京市夫子庙-秦淮风光带景区',15569,1,_binary '\0',_binary '\0','2023-09-26 02:29:49','188243415207510016','2023-09-26 02:29:49','188243415207510016'),(1156176746156916736,NULL,'HUS00000119','SCENARIOMAP','江苏省南京市红山森林动物园',15570,1,_binary '\0',_binary '\0','2023-09-26 02:33:37','188243415207510016','2023-09-26 02:33:37','188243415207510016'),(1156176855888297984,NULL,'HUS00000120','SCENARIOMAP','江苏省南京欢乐谷景区',15571,1,_binary '\0',_binary '\0','2023-09-26 02:34:03','188243415207510016','2023-09-26 02:34:03','188243415207510016'),(1156176964944396288,NULL,'HUS00000121','SCENARIOMAP','江苏省常州市东方盐湖城▪道天下景区',15572,1,_binary '\0',_binary '\0','2023-09-26 02:34:29','188243415207510016','2023-09-26 02:34:29','188243415207510016'),(1156177064538144768,NULL,'HUS00000122','SCENARIOMAP','江苏省常州市天目湖景区-南山竹海风景区',15573,1,_binary '\0',_binary '\0','2023-09-26 02:34:53','188243415207510016','2023-09-26 02:34:53','188243415207510016'),(1156236532336558080,NULL,'HUS00000096','SCENARIOMAP','江苏省无锡市惠山古镇景区',15575,1,_binary '\0',_binary '\0','2023-09-26 06:31:11','89730635001757696','2023-09-26 06:31:11','89730635001757696'),(1156888719345582080,NULL,'wrjxh074','PLANE_MODEL','001',15624,1,_binary '\0',_binary '\0','2023-09-28 01:42:45','173818970422378496','2024-09-06 02:36:04','89730635001757696'),(1160172476152414208,NULL,'AutoTest_attention','PLANE_MODEL','告警管理自动化',24743,1,_binary '\0',_binary '','2024-10-08 03:01:09','58582660930338816','2024-10-08 03:01:17','58582660930338816'),(1160226206096818176,NULL,'DATA_JT','DATA_CATEGORY',NULL,15684,1,_binary '\0',_binary '\0','2023-10-07 06:44:43','416525856201375744','2023-10-07 06:44:43','416525856201375744'),(1160226340700422144,NULL,'DATA_HB','DATA_CATEGORY',NULL,15685,1,_binary '\0',_binary '\0','2023-10-07 06:45:16','416525856201375744','2023-10-07 06:45:16','416525856201375744'),(1160226436129226752,NULL,'DATA_AF','DATA_CATEGORY',NULL,15686,1,_binary '\0',_binary '\0','2023-10-07 06:45:38','416525856201375744','2023-10-07 06:45:38','416525856201375744'),(1161235901267836929,NULL,'LOAD_BTS_MODEL','DEV_MODEL',NULL,10983,1,_binary '\0',_binary '\0','2023-10-11 06:10:59','123','2023-12-06 06:28:21','188243415207510016'),(1161235901267836930,NULL,'LOAD_AGR_MODEL','DEV_MODEL',NULL,10976,1,_binary '\0',_binary '\0','2023-10-11 06:11:00','123','2023-10-11 06:11:00','123'),(1161235901267836931,NULL,'bts1','LOAD_BTS_MODEL',NULL,10980,1,_binary '\0',_binary '\0','2023-10-11 06:11:38','123','2023-10-11 06:11:38','123'),(1161235901267836932,NULL,'cmiiYinglong1st','BTS_TYPE',NULL,10982,1,_binary '\0',_binary '\0','2023-10-11 06:12:07','123','2023-10-11 06:12:07','123'),(1161235901267836933,NULL,'4G','RADIO_TYPE',NULL,10981,1,_binary '\0',_binary '\0','2023-10-11 06:12:29','123','2023-10-11 06:12:29','123'),(1162073421182402560,NULL,'2','DETECTION_ORG',NULL,15741,1,_binary '\0',_binary '\0','2023-10-12 09:04:54','1','2023-10-12 09:04:54','1'),(1162073963665293312,NULL,'3','DETECTION_ORG',NULL,15742,1,_binary '\0',_binary '\0','2023-10-12 09:07:03','1','2023-10-12 09:07:03','1'),(1163402050306834432,NULL,'ELE_LABLE','STYLE_LABLE',NULL,15777,1,_binary '\0',_binary '\0','2023-10-16 01:04:24','416525856201375744','2023-10-16 01:04:24','416525856201375744'),(1163402152803041280,NULL,'CAT_LABLE','STYLE_LABLE',NULL,15778,1,_binary '\0',_binary '\0','2023-10-16 01:04:48','416525856201375744','2023-10-16 01:04:48','416525856201375744'),(1179443918379417600,NULL,'pensaqi1','LOAD_AGR_MODEL',NULL,10977,1,_binary '\0',_binary '\0','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1'),(1179708729038209025,NULL,'PL22','PICTURE_LABELS',NULL,20263,1,_binary '\0',_binary '\0','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1'),(1179708729038209026,NULL,'PL21','PICTURE_LABELS',NULL,20262,1,_binary '\0',_binary '\0','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1'),(1179708729038209027,NULL,'PL20','PICTURE_LABELS',NULL,20261,1,_binary '\0',_binary '\0','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1'),(1179708729038209028,NULL,'PL19','PICTURE_LABELS',NULL,20260,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209029,NULL,'PL18','PICTURE_LABELS',NULL,20259,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209030,NULL,'PL16','PICTURE_LABELS',NULL,20258,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209031,NULL,'PL17','PICTURE_LABELS',NULL,20257,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209032,NULL,'PL14','PICTURE_LABELS',NULL,20256,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209033,NULL,'PL15','PICTURE_LABELS',NULL,20255,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209034,NULL,'PL13','PICTURE_LABELS',NULL,20254,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:17','1'),(1188802878169415680,NULL,'AutoTest_logUav','PLANE_MODEL','日志管理自动化',24691,1,_binary '\0',_binary '','2024-09-12 01:18:18','58582660930338816','2024-09-12 01:18:47','58582660930338816'),(1188802882128838656,NULL,'AutoTest_logCAM','LOAD_CAM_MODEL','日志管理自动化',24692,1,_binary '\0',_binary '','2024-09-12 01:18:18','58582660930338816','2024-09-12 01:18:48','58582660930338816'),(1189955112299134976,NULL,'226','XF_COMPANY',NULL,20622,1,_binary '\0',_binary '\0','2023-12-28 07:36:47','1','2023-12-28 07:36:47','1'),(1204004045262422016,NULL,'video iso','LOAD_CAM_VIDEO_ISO',NULL,21089,1,_binary '\0',_binary '\0','2024-02-05 02:02:14','173818970422378496','2024-02-05 02:02:14','173818970422378496'),(1211625497557991424,NULL,'jkxh015','LOAD_HNG_MODEL',NULL,21090,1,_binary '\0',_binary '\0','2024-02-26 02:47:10','1','2024-02-26 02:47:10','1'),(1211625645906329600,NULL,'sccj030','MNF',NULL,21090,1,_binary '\0',_binary '\0','2024-02-26 02:47:45','1','2024-02-26 02:47:45','1'),(1212772239120793600,NULL,'true','MPROTECT_STAT',NULL,21091,1,_binary '\0',_binary '\0','2024-02-29 06:43:54','173818970422378496','2024-02-29 06:43:54','173818970422378496'),(1212772302861631488,NULL,'false','MPROTECT_STAT',NULL,21092,1,_binary '\0',_binary '\0','2024-02-29 06:44:09','173818970422378496','2024-02-29 06:44:09','173818970422378496'),(1215613136690741248,NULL,'wrjxh075','PLANE_MODEL',NULL,21093,1,_binary '\0',_binary '\0','2024-03-08 02:52:37','1','2024-08-01 01:05:32','1'),(1215615852234145792,NULL,'xh031','LOAD_CAM_MODEL',NULL,21094,1,_binary '\0',_binary '\0','2024-03-08 03:03:24','1','2024-03-08 03:03:24','1'),(1216776585185591296,NULL,'xh035','LOAD_CAM_MODEL',NULL,21095,1,_binary '\0',_binary '\0','2024-03-11 07:55:45','1','2024-03-11 07:55:45','1'),(1220029578848763904,776134564270702592,'1212222','AUTO_TEST',NULL,21132,2,_binary '\0',_binary '','2024-03-20 07:21:59','58582660930338816','2024-03-20 07:23:18','58582660930338816'),(1220030661734170624,NULL,'test1','autoTestPerformance','接口性能测试',21275,1,_binary '\0',_binary '','2024-03-20 07:44:05','58582660930338816','2024-03-20 07:44:07','58582660930338816'),(1220030663776796672,1220030661734170624,'test1.1','autoTestPerformance','接口性能更新',21276,2,_binary '',_binary '','2024-03-20 07:44:05','58582660930338816','2024-03-20 07:44:06','58582660930338816'),(1220047700867678208,NULL,'AutoTestBiaodan','PLANE_MODEL','数据表单性能测试',21430,1,_binary '\0',_binary '','2024-03-20 09:29:56','58582660930338816','2024-03-20 09:30:00','58582660930338816'),(1223581317854134272,NULL,'test-123','PLANE_MODEL',NULL,21560,1,_binary '\0',_binary '\0','2024-03-30 02:35:19','173818970422378496','2024-03-30 02:35:19','173818970422378496'),(1230634523859877888,NULL,'INTERFACE_GROUP_5GA','INTERFACE_GROUP',NULL,21986,1,_binary '\0',_binary '\0','2024-04-18 13:42:15','188243415207510016','2024-04-18 13:42:15','188243415207510016'),(1232712309592293376,NULL,'HUS00000154','HOUSEAREA','江苏省徐州市户部山古居民景区',22129,1,_binary '\0',_binary '\0','2024-04-24 07:18:37','89730635001757696','2024-04-24 07:18:37','89730635001757696'),(1232712472704581632,NULL,'HUS00000153','HOUSEAREA','江苏省南通市狼山景区',22130,1,_binary '\0',_binary '\0','2024-04-24 07:19:16','89730635001757696','2024-04-24 07:19:16','89730635001757696'),(1232987432362704896,NULL,'HUS00000154','SCENARIOMAP','江苏省徐州市户部山古居民景区',22131,1,_binary '\0',_binary '\0','2024-04-25 01:31:52','89730635001757696','2024-04-25 01:31:52','89730635001757696'),(1232987867098120192,NULL,'HUS00000153','SCENARIOMAP','江苏省南通市狼山景区',22132,1,_binary '\0',_binary '\0','2024-04-25 01:33:35','89730635001757696','2024-04-25 01:33:35','89730635001757696'),(1234147063663427584,NULL,'urgency','SOLUTION_TYPE',NULL,22223,1,_binary '\0',_binary '\0','2024-04-28 06:19:49','89730635001757696','2024-04-28 06:19:49','89730635001757696'),(1234147121670651904,NULL,'economy','SOLUTION_TYPE',NULL,22224,1,_binary '\0',_binary '\0','2024-04-28 06:20:03','89730635001757696','2024-04-28 06:20:03','89730635001757696'),(1234159812946690048,NULL,'EMERGENCY','FEEDBACK_TYPE',NULL,22225,1,_binary '\0',_binary '\0','2024-04-28 07:10:29','89730635001757696','2024-04-28 07:10:29','89730635001757696'),(1234159881754247168,NULL,'ECONOMY','FEEDBACK_TYPE',NULL,22226,1,_binary '\0',_binary '\0','2024-04-28 07:10:45','89730635001757696','2024-04-28 07:10:45','89730635001757696'),(1235519048788213760,NULL,'HUS00000155','HOUSEAREA',NULL,22279,1,_binary '\0',_binary '\0','2024-05-02 01:11:36','1','2024-05-02 01:11:36','1'),(1235520397672185856,NULL,'HUS00000155','SCENARIOMAP',NULL,22280,1,_binary '\0',_binary '\0','2024-05-02 01:16:58','1','2024-05-02 01:16:58','1'),(1238486817188085760,NULL,'INDUSTRY','INTERFACE_GROUP',NULL,22407,1,_binary '\0',_binary '\0','2024-05-10 05:44:27','188243415207510016','2024-05-10 05:44:27','188243415207510016'),(1239511686663110656,851404935592542216,'device.gps','INTERFACE_GROUP',NULL,22434,2,_binary '\0',_binary '','2024-05-13 01:36:55','1','2024-05-13 01:37:04','1'),(1242469290876076032,NULL,'xh036','LOAD_CAM_MODEL',NULL,22603,1,_binary '\0',_binary '\0','2024-05-21 05:29:23','1','2024-05-21 05:29:23','1'),(1248230603548000256,NULL,'sccj031','MNF',NULL,22867,1,_binary '\0',_binary '\0','2024-06-06 03:02:47','1','2024-06-06 03:02:47','1'),(1248230957245267968,NULL,'jkxh016','LOAD_HNG_MODEL',NULL,22872,1,_binary '\0',_binary '\0','2024-06-06 03:04:11','1','2024-06-06 03:04:11','1'),(1251203566970863616,785955655818280960,'video-ts','MWS',NULL,22970,2,_binary '\0',_binary '\0','2024-06-14 07:56:17','1','2024-06-14 07:56:17','1'),(1265966585252675584,NULL,'sccj033','MNF',NULL,23823,1,_binary '\0',_binary '\0','2024-07-25 01:39:14','1','2024-07-25 01:39:14','1'),(1265966785606189056,NULL,'wrjxh077','PLANE_MODEL',NULL,23824,1,_binary '\0',_binary '\0','2024-07-25 01:40:02','1','2024-07-25 01:40:02','1'),(1265967288041865216,NULL,'xh038','LOAD_CAM_MODEL',NULL,23826,1,_binary '\0',_binary '\0','2024-07-25 01:42:02','1','2024-07-25 01:42:02','1'),(1265968171249041408,NULL,'wrjxh078','PLANE_MODEL',NULL,23831,1,_binary '\0',_binary '\0','2024-07-25 01:45:33','1','2024-07-25 01:45:33','1'),(1266342460313829376,NULL,'INTERFACE_GROUP_REGULATION','INTERFACE_GROUP',NULL,23890,1,_binary '\0',_binary '\0','2024-07-26 02:32:50','188243415207510016','2024-07-26 02:32:50','188243415207510016'),(1268507981650067456,NULL,'94','DEV_COMPANY','af893e5d53c54096a905405fe3ace-wx;c3a7748dad6f49939deab52b0c1dd7lt',24011,1,_binary '\0',_binary '\0','2024-08-01 01:57:51','515544718477099008','2024-09-09 06:07:36','515544718477099008'),(1270745313396654080,NULL,'440395000000','POLICE_CASE_INFO',NULL,24038,1,_binary '\0',_binary '\0','2024-08-07 06:08:12','1','2024-08-07 06:08:12','1'),(1270745355255808000,NULL,'440396000000','POLICE_CASE_INFO',NULL,24039,1,_binary '\0',_binary '\0','2024-08-07 06:08:22','1','2024-08-07 06:08:22','1'),(1273674501522980864,NULL,'63.7','CAMERA_FOV','禅思Z30',24152,1,_binary '\0',_binary '\0','2024-08-15 08:07:45','89730635001757696','2024-08-15 08:07:56','89730635001757696'),(1273674662269681664,NULL,'40.6','CAMERA_FOV','禅思H20T',24153,1,_binary '\0',_binary '\0','2024-08-15 08:08:23','89730635001757696','2024-08-15 08:08:23','89730635001757696'),(1280919249023401984,NULL,'440396000001','POLICE_CASE_INFO',NULL,24530,1,_binary '\0',_binary '\0','2024-09-04 07:55:47','1','2024-09-04 07:55:47','1'),(1282703851299799040,NULL,'2','DEV_COMPANY','af893e5d53c54096a905405fe3ace-wx;c3a7748dad6f49939deab52b0c1dd7lt',24623,1,_binary '\0',_binary '\0','2024-09-09 06:07:10','515544718477099008','2024-09-09 06:07:10','515544718477099008'),(1294224926294671361,NULL,'FLIGHT_CMD','SEC_TYPE',NULL,11045,1,_binary '\0',_binary '\0','2024-10-11 01:09:45','123','2024-10-11 01:09:45','123'),(1294224926294671362,NULL,'DB_TAMPER','SEC_TYPE',NULL,11043,1,_binary '\0',_binary '\0','2024-10-11 01:09:45','123','2024-10-11 01:09:45','123'),(1294224926294671363,1294224926294671361,'CON_FLIGHT','SEC_TYPE',NULL,24756,2,_binary '\0',_binary '\0','2024-10-11 01:21:15','1','2024-10-11 01:21:15','1'),(1294224926294671364,1294224926294671362,'ELEC_FENCE','SEC_TYPE',NULL,24757,2,_binary '\0',_binary '\0','2024-10-11 01:22:11','1','2024-10-11 01:22:11','1'),(1294224926294671365,NULL,'1','ALARM_STATE',NULL,11048,1,_binary '\0',_binary '\0','2024-10-11 01:10:23','123','2024-10-11 01:10:23','123'),(1294224926294671366,NULL,'0','ALARM_STATE',NULL,11047,1,_binary '\0',_binary '\0','2024-10-11 01:10:24','123','2024-10-11 01:10:24','123'),(1294224926294671367,NULL,'1','CMD_STATE',NULL,11050,1,_binary '\0',_binary '\0','2024-10-11 01:10:53','123','2024-10-11 01:10:53','123'),(1294224926294671368,NULL,'0','CMD_STATE',NULL,11049,1,_binary '\0',_binary '\0','2024-10-11 01:10:53','123','2024-10-11 01:10:53','123'),(1294224926294671369,NULL,'-2','HANDLE_STATE',NULL,11055,1,_binary '\0',_binary '\0','2024-10-11 01:11:18','123','2024-10-11 01:11:18','123'),(1294224926294671370,NULL,'-1','HANDLE_STATE',NULL,11054,1,_binary '\0',_binary '\0','2024-10-11 01:11:18','123','2024-10-11 01:11:18','123'),(1294224926294671371,NULL,'2','HANDLE_STATE',NULL,11053,1,_binary '\0',_binary '\0','2024-10-11 01:11:19','123','2024-10-11 01:11:19','123'),(1294224926294671372,NULL,'1','HANDLE_STATE',NULL,11052,1,_binary '\0',_binary '\0','2024-10-11 01:11:19','123','2024-10-11 01:11:19','123'),(1294224926294671373,NULL,'0','HANDLE_STATE',NULL,11051,1,_binary '\0',_binary '\0','2024-10-11 01:11:19','123','2024-10-11 01:11:19','123'),(1294224926294671374,NULL,'elecFence','ALARM_OBJECT','ssss',11056,1,_binary '\0',_binary '\0','2024-10-11 01:11:45','123','2024-10-11 01:11:45','123'); +INSERT INTO `sys_dictionary` VALUES (1,NULL,'sccj001','MNF','2001',1,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2024-09-06 02:37:22','89730635001757696'),(2,NULL,'sccj002','MNF',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(3,NULL,'sccj003','MNF',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(4,NULL,'sccj004','MNF',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(5,NULL,'sccj005','MNF',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:27','admin','2022-11-11 05:49:04','1'),(6,NULL,'sccj006','MNF',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(7,NULL,'sccj007','MNF',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(8,NULL,'sccj008','MNF',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(9,NULL,'sccj009','MNF',NULL,9,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(10,NULL,'sccj010','MNF',NULL,10,1,_binary '\0',_binary '\0','2020-09-18 02:21:28','admin','2022-11-11 05:49:04','1'),(11,NULL,'sccj011','MNF',NULL,11,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:04','1'),(12,NULL,'sccj012','MNF',NULL,12,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:04','1'),(13,NULL,'sccj013','MNF',NULL,13,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(14,NULL,'sccj014','MNF',NULL,14,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(15,NULL,'sccj015','MNF',NULL,15,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(16,NULL,'sccj016','MNF',NULL,16,1,_binary '\0',_binary '\0','2020-09-18 02:21:29','admin','2022-11-11 05:49:03','1'),(17,NULL,'wrjxh001','PLANE_MODEL',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:18:45','70179580555558912','2022-09-20 08:29:36','1'),(18,NULL,'wrjxh002','PLANE_MODEL',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:18:30','70179580555558912','2022-09-20 08:29:35','1'),(19,NULL,'wrjxh003','PLANE_MODEL',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:18:06','70179580555558912','2022-09-20 08:29:35','1'),(20,NULL,'wrjxh004','PLANE_MODEL',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:17:57','70179580555558912','2022-09-20 08:29:35','1'),(21,NULL,'wrjxh005','PLANE_MODEL',NULL,5,1,_binary '\0',_binary '\0','2021-09-22 07:17:45','70179580555558912','2022-09-20 08:29:35','1'),(22,NULL,'wrjxh006','PLANE_MODEL','2108',6,1,_binary '\0',_binary '\0','2020-09-18 02:21:30','admin','2022-09-20 08:29:35','1'),(23,NULL,'wrjxh007','PLANE_MODEL',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:30','admin','2022-09-20 08:29:35','1'),(24,NULL,'wrjxh008','PLANE_MODEL',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:30','admin','2022-09-20 08:29:35','1'),(25,NULL,'wrjxh009','PLANE_MODEL',NULL,9,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(26,NULL,'wrjxh010','PLANE_MODEL',NULL,10,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(27,NULL,'wrjxh011','PLANE_MODEL',NULL,11,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(28,NULL,'wrjxh012','PLANE_MODEL',NULL,12,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(29,NULL,'wrjxh013','PLANE_MODEL',NULL,13,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(30,NULL,'wrjxh014','PLANE_MODEL',NULL,14,1,_binary '\0',_binary '\0','2020-09-18 02:21:31','admin','2022-09-20 08:29:35','1'),(31,NULL,'wrjxh015','PLANE_MODEL',NULL,15,1,_binary '\0',_binary '\0','2021-09-22 07:17:26','70179580555558912','2022-09-20 08:29:35','1'),(32,NULL,'wrjxh016','PLANE_MODEL',NULL,16,1,_binary '\0',_binary '\0','2021-09-22 07:16:55','70179580555558912','2022-09-20 08:29:35','1'),(33,NULL,'wrjxh017','PLANE_MODEL',NULL,17,1,_binary '\0',_binary '\0','2021-09-22 07:16:29','70179580555558912','2022-09-20 08:29:35','1'),(34,NULL,'wrjxh018','PLANE_MODEL',NULL,18,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(35,NULL,'wrjxh019','PLANE_MODEL',NULL,19,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(36,NULL,'wrjxh020','PLANE_MODEL',NULL,20,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(37,NULL,'wrjxh021','PLANE_MODEL',NULL,21,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:35','1'),(38,NULL,'wrjxh022','PLANE_MODEL',NULL,22,1,_binary '\0',_binary '\0','2021-09-22 07:16:01','70179580555558912','2022-09-20 08:29:34','1'),(39,NULL,'wrjxh023','PLANE_MODEL',NULL,23,1,_binary '\0',_binary '\0','2021-09-22 07:15:38','70179580555558912','2022-09-20 08:29:34','1'),(40,NULL,'wrjxh024','PLANE_MODEL',NULL,24,1,_binary '\0',_binary '\0','2021-09-22 07:09:42','70179580555558912','2022-09-20 08:29:34','1'),(41,NULL,'wrjxh025','PLANE_MODEL',NULL,25,1,_binary '\0',_binary '\0','2020-12-16 09:38:56','1','2022-09-20 08:29:34','1'),(42,NULL,'wrjxh026','PLANE_MODEL',NULL,26,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(43,NULL,'wrjxh027','PLANE_MODEL',NULL,27,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(44,NULL,'wrjxh028','PLANE_MODEL',NULL,28,1,_binary '\0',_binary '\0','2020-12-16 09:35:49','1','2022-09-20 08:29:34','1'),(45,NULL,'wrjxh029','PLANE_MODEL',NULL,29,1,_binary '\0',_binary '\0','2021-09-22 07:15:14','70179580555558912','2022-09-20 08:29:34','1'),(46,NULL,'wrjxh030','PLANE_MODEL',NULL,30,1,_binary '\0',_binary '\0','2021-09-22 07:14:27','70179580555558912','2022-09-20 08:29:34','1'),(47,NULL,'wrjxh031','PLANE_MODEL',NULL,31,1,_binary '\0',_binary '\0','2021-09-22 07:13:38','70179580555558912','2022-09-20 08:29:34','1'),(48,NULL,'wrjxh032','PLANE_MODEL',NULL,32,1,_binary '\0',_binary '\0','2021-09-22 07:11:56','70179580555558912','2022-09-20 08:29:34','1'),(49,NULL,'wrjxh033','PLANE_MODEL',NULL,33,1,_binary '\0',_binary '\0','2021-09-22 07:11:10','70179580555558912','2022-09-20 08:29:34','1'),(50,NULL,'wrjxh034','PLANE_MODEL',NULL,34,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(51,NULL,'wrjxh035','PLANE_MODEL',NULL,35,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(52,NULL,'wrjxh036','PLANE_MODEL',NULL,36,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(53,NULL,'wrjxh037','PLANE_MODEL',NULL,37,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(54,NULL,'wrjxh038','PLANE_MODEL',NULL,38,1,_binary '\0',_binary '\0','2021-09-22 07:10:12','70179580555558912','2022-09-20 08:29:34','1'),(55,NULL,'wrjxh039','PLANE_MODEL',NULL,39,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(56,NULL,'wrjxh040','PLANE_MODEL',NULL,40,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:34','1'),(57,NULL,'wrjxh041','PLANE_MODEL',NULL,41,1,_binary '\0',_binary '\0','2020-09-18 02:21:32','admin','2022-09-20 08:29:33','1'),(58,NULL,'wrjxh042','PLANE_MODEL',NULL,42,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(59,NULL,'wrjxh043','PLANE_MODEL',NULL,43,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(60,NULL,'wrjxh044','PLANE_MODEL',NULL,3249,1,_binary '\0',_binary '\0','2021-02-07 03:10:18','1','2022-09-20 08:29:33','1'),(61,NULL,'wrjxh045','PLANE_MODEL',NULL,3250,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(62,NULL,'wrjxh046','PLANE_MODEL',NULL,3251,1,_binary '\0',_binary '\0','2020-09-18 02:21:33','admin','2022-09-20 08:29:33','1'),(63,NULL,'xt001','PLANE_SHAPE','23',1,1,_binary '\0',_binary '\0','2020-09-18 02:21:34','admin','2024-09-06 02:38:04','89730635001757696'),(64,NULL,'xt002','PLANE_SHAPE','22',2,1,_binary '\0',_binary '\0','2020-09-18 02:21:34','admin','2022-01-20 01:16:07','123'),(65,NULL,'xt003','PLANE_SHAPE','22',3,1,_binary '\0',_binary '\0','2020-09-18 02:21:34','admin','2022-01-20 01:16:07','123'),(66,NULL,'wrjcd001','PLANE_SIZE',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:20:04','70179580555558912','2021-09-22 07:20:03','1'),(67,NULL,'wrjcd002','PLANE_SIZE',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:19:49','70179580555558912','2021-09-22 07:19:48','admin'),(68,NULL,'wrjcd003','PLANE_SIZE',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:19:30','70179580555558912','2021-09-22 07:19:29','admin'),(69,NULL,'wrjcd004','PLANE_SIZE',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:19:19','70179580555558912','2021-09-22 07:19:19','admin'),(70,NULL,'cl001','PLANE_MAT',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:35','admin','2020-11-27 01:25:10','1'),(71,NULL,'cl002','PLANE_MAT',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-11-26 08:00:16','1'),(72,NULL,'cl003','PLANE_MAT',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-11-27 01:26:06','1'),(73,NULL,'cl004','PLANE_MAT',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(74,NULL,'cl005','PLANE_MAT',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-11-27 01:26:05','1'),(75,NULL,'cl006','PLANE_MAT',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(76,NULL,'cl007','PLANE_MAT',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(77,NULL,'cl008','PLANE_MAT',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:36','admin','2020-09-18 02:21:36','admin'),(78,NULL,'cl009','PLANE_MAT',NULL,9,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(79,NULL,'cl010','PLANE_MAT',NULL,10,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-11-27 09:34:58','1'),(80,NULL,'wbjk001','PLANE_INF',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(81,NULL,'wbjk002','PLANE_INF',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(82,NULL,'wbjk003','PLANE_INF',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(83,NULL,'wbjk004','PLANE_INF',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(84,NULL,'wbjk005','PLANE_INF',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-11-27 09:35:01','1'),(85,NULL,'wbjk006','PLANE_INF',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(86,NULL,'xh001','LOAD_CAM_MODEL',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:37','admin','2020-09-18 02:21:37','admin'),(87,NULL,'xh002','LOAD_CAM_MODEL',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(88,NULL,'bg001','LOAD_CAM_EXP_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(89,NULL,'bg002','LOAD_CAM_EXP_MODE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(90,NULL,'bg003','LOAD_CAM_EXP_MODE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(91,NULL,'bg004','LOAD_CAM_EXP_MODE',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(92,NULL,'gz001','LOAD_CAM_WORK_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(93,NULL,'gz002','LOAD_CAM_WORK_MODE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(94,NULL,'gz003','LOAD_CAM_WORK_MODE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-11-26 08:06:13','1'),(95,NULL,'bp001','LOAD_CAM_BALANCE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(96,NULL,'bp002','LOAD_CAM_BALANCE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(97,NULL,'bp003','LOAD_CAM_BALANCE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(98,NULL,'bp004','LOAD_CAM_BALANCE',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(99,NULL,'bp005','LOAD_CAM_BALANCE',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(100,NULL,'cc001','LOAD_CAM_IMG_FMT',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(101,NULL,'cc002','LOAD_CAM_IMG_FMT',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(102,NULL,'cc003','LOAD_CAM_IMG_FMT',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(103,NULL,'tx001','LOAD_CAM_IMG_SIZE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(104,NULL,'tx002','LOAD_CAM_IMG_SIZE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(105,NULL,'pz001','LOAD_CAM_CAM_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(106,NULL,'pz002','LOAD_CAM_CAM_MODE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:38','admin','2020-09-18 02:21:38','admin'),(107,NULL,'pz003','LOAD_CAM_CAM_MODE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(108,NULL,'km001','LOAD_CAM_SHUT_SPEED',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(109,NULL,'km002','LOAD_CAM_SHUT_SPEED',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(110,NULL,'km003','LOAD_CAM_SHUT_SPEED',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(111,NULL,'km004','LOAD_CAM_SHUT_SPEED',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(112,NULL,'km005','LOAD_CAM_SHUT_SPEED',NULL,5,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(113,NULL,'km006','LOAD_CAM_SHUT_SPEED',NULL,6,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(114,NULL,'km007','LOAD_CAM_SHUT_SPEED',NULL,7,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(115,NULL,'km008','LOAD_CAM_SHUT_SPEED',NULL,8,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(116,NULL,'sp001','LOAD_CAM_VIDEO_FMT',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(117,NULL,'sp002','LOAD_CAM_VIDEO_FMT',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(118,NULL,'fb001','LOAD_CAM_VIDEO_DIS',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(119,NULL,'hhqxh001','LOAD_SPK_MODEL',NULL,1191,1,_binary '\0',_binary '\0','2020-12-15 07:08:01','1','2020-12-15 07:08:01','1'),(120,NULL,'hhqxh002','LOAD_SPK_MODEL',NULL,1192,1,_binary '\0',_binary '\0','2020-12-15 07:08:18','1','2020-12-15 07:08:18','1'),(121,NULL,'jkxh001','LOAD_HNG_MODEL',NULL,1188,1,_binary '\0',_binary '\0','2021-02-07 02:23:27','1','2021-02-07 02:23:26','1'),(122,NULL,'jkxh002','LOAD_HNG_MODEL',NULL,1189,1,_binary '\0',_binary '\0','2021-02-07 02:23:04','1','2021-02-07 02:23:04','1'),(123,NULL,'jkxh003','LOAD_HNG_MODEL',NULL,1190,1,_binary '\0',_binary '\0','2020-12-15 07:07:18','1','2020-12-15 07:07:18','1'),(124,NULL,'jklx001','HNG_TYPE',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(125,NULL,'jklx002','HNG_TYPE',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(126,NULL,'jklx003','HNG_TYPE',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(127,NULL,'dj001','PROT_LEVEL',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2020-09-18 02:21:39','admin'),(128,NULL,'PLANE_MODEL','DEV_MODEL',NULL,1,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:01','123'),(129,NULL,'LOAD_CAM_MODEL','DEV_MODEL',NULL,2,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:00','123'),(130,NULL,'LOAD_SPK_MODEL','DEV_MODEL',NULL,3,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:00','123'),(131,NULL,'LOAD_HNG_MODEL','DEV_MODEL',NULL,4,1,_binary '\0',_binary '\0','2020-09-18 02:21:39','admin','2023-10-11 06:11:00','123'),(132,NULL,'CAN_USE','USE_STAT',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:32:04','70179580555558912','2023-11-16 02:42:05','188243415207510016'),(133,NULL,'FORBIDDEN','USE_STAT',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:31:49','70179580555558912','2023-11-16 02:42:08','system'),(134,NULL,'MAINTAIN','USE_STAT',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:31:30','70179580555558912','2023-11-16 02:42:14','system'),(135,NULL,'ABANDONMENT','USE_STAT',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:30:20','70179580555558912','2023-11-16 02:42:14','188243415207510016'),(136,NULL,'ONLINE','ONLINE_STAT',NULL,1,1,_binary '\0',_binary '\0','2021-10-25 07:48:32','1','2021-10-25 07:48:32','system'),(137,NULL,'OFFLINE','ONLINE_STAT',NULL,2,1,_binary '\0',_binary '\0','2021-10-25 07:48:24','1','2021-10-25 07:48:23','system'),(138,NULL,'MUTIL_SELECT_COUNT','LEN',NULL,1,1,_binary '\0',_binary '\0','2021-10-25 07:50:44','1','2021-10-25 07:50:43','system'),(139,NULL,'0','VIDEO_LINE',NULL,1,1,_binary '\0',_binary '\0','2020-11-13 09:46:51','1','2020-11-13 09:41:02','system'),(140,NULL,'1','VIDEO_LINE',NULL,2,1,_binary '',_binary '\0','2021-09-22 07:08:26','70179580555558912','2021-09-22 07:08:25','1'),(141,NULL,'2','VIDEO_LINE',NULL,3,1,_binary '',_binary '\0','2021-09-22 07:08:34','70179580555558912','2021-09-22 07:08:34','1'),(756469121218117632,NULL,'action001','DEV_ACTION_MODEL',NULL,47,1,_binary '\0',_binary '','2020-09-18 02:58:13','1','2020-11-16 07:29:10','1'),(756469247374393344,NULL,'action002','DEV_ACTION_MODEL',NULL,48,1,_binary '\0',_binary '','2020-09-18 02:58:43','1','2020-11-16 07:29:08','1'),(756469325862404096,NULL,'action003','DEV_ACTION_MODEL',NULL,49,1,_binary '\0',_binary '','2020-09-18 02:59:01','1','2020-11-16 07:29:06','1'),(756469424944447488,NULL,'actio004','DEV_ACTION_MODEL',NULL,50,1,_binary '\0',_binary '','2020-09-18 02:59:25','1','2020-11-16 07:29:04','1'),(756469570579070976,NULL,'action005','DEV_ACTION_MODEL',NULL,51,1,_binary '\0',_binary '','2020-09-18 03:00:00','1','2020-11-16 07:29:02','1'),(756469673125609472,NULL,'action006','DEV_ACTION_MODEL',NULL,52,1,_binary '\0',_binary '','2020-09-18 03:00:24','1','2020-11-16 07:29:00','1'),(756469787839823872,756469570579070976,'action007','DEV_ACTION_MODEL',NULL,53,2,_binary '\0',_binary '','2020-09-18 03:00:51','1','2020-11-16 07:29:02','1'),(756469887177719808,756469673125609472,'action008','DEV_ACTION_MODEL',NULL,54,2,_binary '\0',_binary '','2020-09-18 03:01:15','1','2020-11-16 07:29:00','1'),(756470001799659520,756469121218117632,'action009','DEV_ACTION_MODEL',NULL,55,2,_binary '\0',_binary '','2020-09-18 03:01:42','1','2020-11-16 07:29:10','1'),(756470114232172544,756469247374393344,'action010','DEV_ACTION_MODEL',NULL,56,2,_binary '\0',_binary '','2020-09-18 03:02:09','1','2020-11-16 07:29:08','1'),(756470204460040192,756469247374393344,'action011','DEV_ACTION_MODEL',NULL,57,2,_binary '\0',_binary '','2020-09-18 03:02:31','1','2020-11-16 07:29:08','1'),(756470269341728768,756469424944447488,'action012','DEV_ACTION_MODEL',NULL,58,2,_binary '\0',_binary '','2020-09-18 03:02:46','1','2020-11-16 07:29:04','1'),(756470324027064320,756469424944447488,'action013','DEV_ACTION_MODEL',NULL,59,2,_binary '\0',_binary '','2020-09-18 03:02:59','1','2020-11-16 07:29:04','1'),(756470379022778368,756469424944447488,'action014','DEV_ACTION_MODEL',NULL,60,2,_binary '\0',_binary '','2020-09-18 03:03:12','1','2020-11-16 07:29:04','1'),(756470379022778369,NULL,'wait','APPR_STAT',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:02:11','70179580555558912','2021-09-22 07:02:10','1'),(756470379022778370,NULL,'pass','APPR_STAT',NULL,2,1,_binary '\0',_binary '\0','2021-09-22 07:02:00','70179580555558912','2021-09-22 07:02:00','1'),(756470379022778371,NULL,'expired','APPR_STAT',NULL,3,1,_binary '\0',_binary '\0','2021-09-22 07:01:49','70179580555558912','2021-09-22 07:01:49','1'),(756470379022778372,NULL,'ing','APPR_STAT',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:01:35','70179580555558912','2021-09-22 07:01:35','1'),(756470379022778373,NULL,'refuse','APPR_STAT',NULL,5,1,_binary '\0',_binary '\0','2021-09-22 07:01:14','70179580555558912','2021-09-22 07:01:13','1'),(756470379022778374,NULL,'reject','APPR_STAT',NULL,6,1,_binary '\0',_binary '\0','2021-09-22 07:01:02','70179580555558912','2021-09-22 07:01:01','1'),(756470379022778375,NULL,'limit','AREA_TYPE',NULL,1,1,_binary '\0',_binary '\0','2021-09-22 07:03:51','70179580555558912','2022-06-10 03:51:16','123'),(756470379022778376,NULL,'forbidden','AREA_TYPE',NULL,2,1,_binary '\0',_binary '\0','2022-04-01 01:17:38','173818970422378496','2022-06-10 03:51:15','123'),(756470379022778377,NULL,'clear','AREA_TYPE',NULL,3,1,_binary '\0',_binary '\0','2022-04-01 01:17:19','173818970422378496','2022-06-10 03:51:15','123'),(756470379022778378,NULL,'danger','AREA_TYPE',NULL,4,1,_binary '\0',_binary '\0','2021-09-22 07:02:45','70179580555558912','2022-06-10 03:51:15','123'),(756470379022778379,NULL,'temp','AREA_TYPE',NULL,5,1,_binary '\0',_binary '\0','2021-09-22 07:02:31','70179580555558912','2022-06-10 03:51:15','123'),(756470379022778380,NULL,'testfly','FLY_TASK','94',1,1,_binary '\0',_binary '\0','2021-09-22 07:07:49','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778381,NULL,'power','FLY_TASK','114',2,1,_binary '\0',_binary '\0','2021-09-22 07:07:12','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778382,NULL,'show','FLY_TASK','98',3,1,_binary '\0',_binary '\0','2021-09-22 07:07:28','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778383,NULL,'fire','FLY_TASK','111',4,1,_binary '\0',_binary '\0','2021-09-22 07:06:37','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778384,NULL,'protection','FLY_TASK','119',5,1,_binary '\0',_binary '\0','2021-09-22 07:06:00','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778385,NULL,'poppy','FLY_TASK',NULL,6,1,_binary '',_binary '\0','2021-09-22 07:06:26','70179580555558912','2022-01-20 01:15:09','123'),(756470379022778386,NULL,'other','FLY_TASK','121',7,1,_binary '\0',_binary '\0','2021-09-22 07:05:31','70179580555558912','2022-01-20 01:15:09','123'),(764551033476218880,NULL,'test','LOAD_CAM_MODEL',NULL,61,1,_binary '\0',_binary '','2020-10-10 10:12:51','1','2020-10-10 10:12:55','1'),(764551033476219013,NULL,'0','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219014,NULL,'1','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219015,NULL,'2','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219016,NULL,'3','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219017,NULL,'4','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219018,NULL,'5','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219019,NULL,'6','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219020,NULL,'7','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219021,NULL,'8','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219022,NULL,'9','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219023,NULL,'10','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219024,NULL,'11','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219025,NULL,'12','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219026,NULL,'13','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219027,NULL,'14','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219028,NULL,'15','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219029,NULL,'16','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219030,NULL,'17','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219031,NULL,'18','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(764551033476219032,NULL,'19','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219033,NULL,'20','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219034,NULL,'21','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219035,NULL,'22','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219036,NULL,'23','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219037,NULL,'24','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219038,NULL,'25','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219039,NULL,'26','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219040,NULL,'27','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219041,NULL,'28','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219042,NULL,'29','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219043,NULL,'30','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219044,NULL,'31','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219045,NULL,'32','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219046,NULL,'33','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219047,NULL,'34','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219048,NULL,'35','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219049,NULL,'36','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219050,NULL,'37','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219051,NULL,'38','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219052,NULL,'39','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219053,NULL,'40','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219054,NULL,'41','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219055,NULL,'42','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219056,NULL,'43','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219057,NULL,'44','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219058,NULL,'45','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219059,NULL,'46','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219060,NULL,'47','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219061,NULL,'48','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219062,NULL,'49','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219063,NULL,'50','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219064,NULL,'51','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219065,NULL,'52','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219066,NULL,'53','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219067,NULL,'54','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219068,NULL,'55','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219069,NULL,'56','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219070,NULL,'57','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219071,NULL,'58','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219072,NULL,'59','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219073,NULL,'60','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219074,NULL,'61','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219075,NULL,'62','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219076,NULL,'63','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219077,NULL,'64','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219078,NULL,'65','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219079,NULL,'66','CAMERA_SHUTTER',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system'),(764551033476219080,NULL,'160','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219081,NULL,'170','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219082,NULL,'180','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219083,NULL,'200','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219084,NULL,'220','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219085,NULL,'240','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219086,NULL,'250','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219087,NULL,'260','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219088,NULL,'280','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219089,NULL,'320','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219090,NULL,'340','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219091,NULL,'350','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219092,NULL,'400','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219093,NULL,'450','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219094,NULL,'480','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219095,NULL,'500','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219096,NULL,'560','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219097,NULL,'630','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219098,NULL,'680','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219099,NULL,'710','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219100,NULL,'800','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219101,NULL,'900','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219102,NULL,'960','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219103,NULL,'1000','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219104,NULL,'1100','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219105,NULL,'1300','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219106,NULL,'1400','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219107,NULL,'1600','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219108,NULL,'1800','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219109,NULL,'1900','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219110,NULL,'2000','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219111,NULL,'2200','CAMERA_APERTURE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219112,NULL,'1','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219113,NULL,'2','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219114,NULL,'3','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219115,NULL,'4','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219116,NULL,'5','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219117,NULL,'6','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219118,NULL,'7','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219119,NULL,'8','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219120,NULL,'9','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219121,NULL,'10','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219122,NULL,'11','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219123,NULL,'12','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219124,NULL,'13','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219125,NULL,'14','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219126,NULL,'15','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219127,NULL,'16','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219128,NULL,'17','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219129,NULL,'18','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219130,NULL,'19','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219131,NULL,'20','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219132,NULL,'21','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219133,NULL,'22','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219134,NULL,'23','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219135,NULL,'24','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219136,NULL,'25','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219137,NULL,'26','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219138,NULL,'27','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219139,NULL,'28','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219140,NULL,'29','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219141,NULL,'30','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219142,NULL,'31','CAMERA_EV',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(764551033476219143,NULL,'1','CAMERA_PHOTO_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system'),(764551033476219144,NULL,'0','CAMERA_PHOTO_MODE',NULL,1,1,_binary '\0',_binary '\0','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system'),(765151242212212736,NULL,'1','CAMERA_EXPOSURE_MODE',NULL,62,1,_binary '\0',_binary '\0','2020-10-12 01:57:52','1',NULL,NULL),(765151340098879488,NULL,'2','CAMERA_EXPOSURE_MODE',NULL,63,1,_binary '\0',_binary '\0','2020-10-12 01:58:15','1',NULL,NULL),(765151456495009792,NULL,'3','CAMERA_EXPOSURE_MODE',NULL,64,1,_binary '\0',_binary '\0','2020-10-12 01:58:43','1',NULL,NULL),(765151553257603072,NULL,'4','CAMERA_EXPOSURE_MODE',NULL,65,1,_binary '\0',_binary '\0','2020-10-12 01:59:06','1',NULL,NULL),(765152000827588608,NULL,'25600','CAMERA_ISO',NULL,67,1,_binary '\0',_binary '\0','2020-10-12 02:00:53','1','2020-10-12 02:03:24',NULL),(765152052467859456,NULL,'12800','CAMERA_ISO',NULL,68,1,_binary '\0',_binary '\0','2020-10-12 02:01:05','1','2020-10-12 02:03:22',NULL),(765152105051848704,NULL,'6400','CAMERA_ISO',NULL,69,1,_binary '\0',_binary '\0','2020-10-12 02:01:18','1','2020-10-12 02:03:21',NULL),(765152152472649728,NULL,'3200','CAMERA_ISO',NULL,70,1,_binary '\0',_binary '\0','2020-10-12 02:01:29','1','2020-10-12 02:03:19',NULL),(765152196605116416,NULL,'1600','CAMERA_ISO',NULL,71,1,_binary '\0',_binary '\0','2020-10-12 02:01:40','1','2020-10-12 02:03:17',NULL),(765152244952858624,NULL,'800','CAMERA_ISO',NULL,72,1,_binary '\0',_binary '\0','2020-10-12 02:01:51','1','2020-10-12 02:03:16',NULL),(765152289571864576,NULL,'400','CAMERA_ISO',NULL,73,1,_binary '\0',_binary '\0','2020-10-12 02:02:02','1','2020-10-12 02:03:15',NULL),(765152334576746496,NULL,'200','CAMERA_ISO',NULL,74,1,_binary '\0',_binary '\0','2020-10-12 02:02:13','1','2020-10-12 02:03:13',NULL),(765152388385472512,NULL,'100','CAMERA_ISO',NULL,75,1,_binary '\0',_binary '\0','2020-10-12 02:02:25','1','2020-10-12 02:03:09',NULL),(765152466487607296,NULL,'1','CAMERA_ISO',NULL,66,1,_binary '\0',_binary '\0','2021-01-22 03:18:46','1','2021-01-22 03:18:46',NULL),(765152560913973248,NULL,'0','CAMERA_ISO',NULL,76,1,_binary '\0',_binary '\0','2020-10-12 02:03:07','1',NULL,NULL),(771049672755249152,NULL,'AUTOTEST_hanger','PLANE_MODEL','接口自动化',801,1,_binary '\0',_binary '','2020-11-23 07:08:36','1','2020-11-23 07:10:16','1'),(771049677457063936,NULL,'AUTO_TESTHangar','LOAD_HNG_MODEL','自动化机库管理',1180,1,_binary '\0',_binary '','2020-12-01 01:14:58','1','2020-12-01 01:15:19','1'),(771793012190740480,NULL,'z5','LOAD_CAM_MODEL',NULL,95,1,_binary '\0',_binary '\0','2020-10-30 09:44:28','1','2020-11-23 07:00:15','1'),(773920694005268480,NULL,'xh003','LOAD_CAM_MODEL',NULL,96,1,_binary '\0',_binary '\0','2020-11-05 06:38:57','1',NULL,NULL),(773920849521672192,NULL,'sccj017','MNF','105',17,1,_binary '\0',_binary '\0','2020-11-05 06:39:34','1','2022-11-11 05:49:03','1'),(773920870648381440,NULL,'xh004','LOAD_CAM_MODEL',NULL,98,1,_binary '\0',_binary '\0','2020-11-05 06:39:39','1',NULL,NULL),(773921004236963840,NULL,'xh005','LOAD_CAM_MODEL',NULL,1196,1,_binary '\0',_binary '\0','2020-12-16 08:59:45','1','2020-12-16 08:59:45','1'),(773921117437034496,NULL,'wrjxh047','PLANE_MODEL','3010',332,1,_binary '\0',_binary '\0','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1'),(773921164937527296,NULL,'xh006','LOAD_CAM_MODEL',NULL,1195,1,_binary '\0',_binary '\0','2020-12-16 08:59:24','1','2020-12-16 08:59:24','1'),(773921267383402496,NULL,'xh007','LOAD_CAM_MODEL',NULL,1194,1,_binary '\0',_binary '\0','2020-12-16 08:59:01','1','2020-12-16 08:59:01','1'),(773924464843948032,NULL,'sccj018','MNF',NULL,103,1,_binary '\0',_binary '\0','2020-11-05 06:53:56','1','2022-11-11 05:49:03','1'),(773925087677120512,NULL,'wrjxh048','PLANE_MODEL',NULL,3253,1,_binary '\0',_binary '\0','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1'),(773925257512878080,NULL,'wrjxh049','PLANE_MODEL',NULL,3255,1,_binary '\0',_binary '\0','2020-12-16 09:39:30','1','2022-09-20 08:29:33','1'),(773952973972832256,NULL,'xh008','LOAD_CAM_MODEL',NULL,1213,1,_binary '\0',_binary '\0','2021-01-04 06:30:31','1','2021-01-04 06:30:31','1'),(774202421927870464,NULL,'sccj017','ADAPT_MNF',NULL,107,1,_binary '\0',_binary '\0','2021-09-22 07:00:27','70179580555558912','2021-09-22 07:00:27',NULL),(774227714327576576,NULL,'xh010','LOAD_CAM_MODEL',NULL,1220,1,_binary '\0',_binary '\0','2021-01-19 06:40:00','1','2021-01-19 06:40:00','1'),(774274052826202112,NULL,'sccj001','ADAPT_MNF',NULL,109,1,_binary '\0',_binary '\0','2020-11-06 06:03:03','1',NULL,NULL),(776134564270702592,NULL,'test1','AUTO_TEST','接口自动化',25376,1,_binary '\0',_binary '','2024-11-14 01:08:43','58582660930338816','2024-11-14 01:08:48','58582660930338816'),(776134564824350720,NULL,'test2','AUTO_TEST','接口2更新',25377,1,_binary '',_binary '','2024-11-14 01:08:43','58582660930338816','2024-11-14 01:08:48','58582660930338816'),(776134568511143936,776134564270702592,'test1.1','AUTO_TEST','接口1.1更新',25378,2,_binary '',_binary '','2024-11-14 01:08:44','58582660930338816','2024-11-14 01:08:48','58582660930338816'),(776134817556332544,NULL,'AUTOTEST_PlAN','PLANE_MODEL','接口自动化使用',1004,1,_binary '\0',_binary '','2020-11-26 05:04:15','1','2020-11-26 05:04:43','1'),(776134843300970496,NULL,'AUTOTEST_CAM','LOAD_CAM_MODEL','接口自动化使用',1005,1,_binary '\0',_binary '','2020-11-26 05:04:20','1','2020-11-26 05:04:42','1'),(776134883444654080,NULL,'AUTOTEST_SPK','LOAD_SPK_MODEL','接口自动化使用',1006,1,_binary '\0',_binary '','2020-11-26 05:04:26','1','2020-11-26 05:04:42','1'),(776134898841944064,NULL,'auto_TESTHangar','LOAD_HNG_MODEL','接口自动化使用',1007,1,_binary '\0',_binary '','2020-11-26 05:04:29','1','2020-11-26 05:04:43','1'),(776746302468915200,NULL,'wrjxh050','PLANE_MODEL',NULL,3256,1,_binary '\0',_binary '\0','2020-12-16 09:39:57','1','2022-09-20 08:29:33','1'),(776746779856207872,NULL,'xh011','LOAD_CAM_MODEL',NULL,1214,1,_binary '\0',_binary '\0','2021-01-06 03:00:10','1','2021-01-06 03:00:10','1'),(776752709599625216,NULL,'sccj007','ADAPT_MNF',NULL,129,1,_binary '\0',_binary '\0','2021-09-22 07:00:06','70179580555558912','2021-09-22 07:00:05',NULL),(777124043492032512,NULL,'自动化','PLANE_MODEL',NULL,130,1,_binary '\0',_binary '','2020-11-14 02:53:47','1','2020-11-14 02:55:07','1'),(777818223524577280,NULL,'AUTOTEST_load0','PLANE_MODEL','载荷管理自动化plan',1002,1,_binary '\0',_binary '','2020-11-26 03:30:49','1','2020-11-26 03:33:50','1'),(777818228410941440,NULL,'AUTOTEST_loadCAM','LOAD_CAM_MODEL','载荷管理自动化CAM',760,1,_binary '\0',_binary '','2020-11-20 09:21:49','1','2020-11-20 09:22:12','1'),(777818235348320256,NULL,'AUTOTEST_SPK01','LOAD_SPK_MODEL','载荷管理自动化spk',761,1,_binary '\0',_binary '','2020-11-20 09:21:50','1','2020-11-20 09:22:12','1'),(777831120556392448,NULL,'AutoTest_waypoint','PLANE_MODEL','接口自动化',1169,1,_binary '\0',_binary '','2020-12-01 01:10:56','1','2020-12-01 01:11:26','1'),(777831124461289472,NULL,'AutoTest_CAM','LOAD_CAM_MODEL','数据表单自动化',25370,1,_binary '\0',_binary '','2024-11-14 00:54:57','58582660930338816','2024-11-14 00:55:01','58582660930338816'),(777836439248437248,141,'pull','VIDEO_LINE',NULL,173,2,_binary '\0',_binary '','2020-11-16 02:04:36','1','2020-11-16 02:10:45','1'),(777839740312485888,NULL,'testcode','LOAD_CAM_MODEL',NULL,180,1,_binary '\0',_binary '','2020-11-16 02:17:43','1','2020-11-16 02:17:48','1'),(777840413032710144,NULL,'AUTOtest_CAM01','LOAD_CAM_MODEL','接口自动化使用',361,1,_binary '\0',_binary '','2020-11-17 00:57:30','1','2020-11-17 00:58:30','1'),(777840562794528768,NULL,'AUTOTEST_PlAN1','PLANE_MODEL','接口自动化使用',233,1,_binary '\0',_binary '','2020-11-16 03:22:25','1','2020-11-16 03:24:03','1'),(777845166110277632,NULL,'AUTOTEST_SPK1','LOAD_SPK_MODEL','接口自动化使用',235,1,_binary '\0',_binary '','2020-11-16 03:22:42','1','2020-11-16 03:24:02','1'),(777845188939874304,NULL,'auto_TESTHangar01','LOAD_HNG_MODEL','接口自动化使用',209,1,_binary '\0',_binary '','2020-11-16 02:39:22','1','2020-11-16 03:23:01','1'),(777918185893658624,NULL,'stopRecord','DEV_ACTION_MODEL',NULL,320,1,_binary '\0',_binary '\0','2020-11-16 07:29:26','1','2021-03-31 09:34:46',NULL),(777918299219558400,NULL,'uavYaw','DEV_ACTION_MODEL',NULL,313,1,_binary '\0',_binary '\0','2020-11-16 07:29:53','1','2021-03-31 09:34:41',NULL),(777918421470937088,777918299219558400,'yaw','DEV_ACTION_MODEL',NULL,315,2,_binary '\0',_binary '\0','2020-11-16 07:30:22','1',NULL,NULL),(777918633811771392,NULL,'cameraPanControl','DEV_ACTION_MODEL',NULL,314,1,_binary '\0',_binary '\0','2020-11-16 07:31:13','1','2021-03-31 09:34:43',NULL),(777918849227030528,777918633811771392,'cameraYaw','DEV_ACTION_MODEL',NULL,317,2,_binary '\0',_binary '\0','2020-11-16 07:32:04','1',NULL,NULL),(777918969448366080,777918633811771392,'cameraPitch','DEV_ACTION_MODEL',NULL,318,2,_binary '\0',_binary '\0','2020-11-16 07:32:33','1',NULL,NULL),(777919104240713728,777918633811771392,'cameraRoll','DEV_ACTION_MODEL',NULL,319,2,_binary '\0',_binary '\0','2020-11-16 07:33:05','1',NULL,NULL),(777919251796328448,NULL,'startRecord','DEV_ACTION_MODEL',NULL,323,1,_binary '\0',_binary '\0','2020-11-16 07:33:40','1','2021-03-31 09:34:39',NULL),(777919384520884224,777919251796328448,'videoFormat','DEV_ACTION_MODEL',NULL,15343,2,_binary '\0',_binary '\0','2023-05-19 03:26:11','173818970422378496','2023-05-19 03:26:11','173818970422378496'),(777919481077956608,777919251796328448,'videoResolution','DEV_ACTION_MODEL',NULL,15344,2,_binary '\0',_binary '\0','2023-05-19 03:26:52','173818970422378496','2023-05-19 03:26:52','173818970422378496'),(777919573763686400,NULL,'photo','DEV_ACTION_MODEL',NULL,4796,1,_binary '\0',_binary '\0','2021-03-10 07:02:43','1','2021-03-31 09:32:25','1'),(777919654315294720,777919573763686400,'picFormat','DEV_ACTION_MODEL',NULL,15316,2,_binary '\0',_binary '\0','2023-05-08 07:07:57','173818970422378496','2023-05-08 07:07:57','173818970422378496'),(777919787123736576,NULL,'hover','DEV_ACTION_MODEL',NULL,316,1,_binary '\0',_binary '\0','2020-11-16 07:35:48','1','2021-03-31 09:34:46','1'),(777919875149594624,777919787123736576,'hoverTime','DEV_ACTION_MODEL',NULL,326,2,_binary '\0',_binary '\0','2020-11-16 07:36:09','1','2020-11-27 09:14:14','1'),(777933867339350016,777831120556392448,'1122','PLANE_MODEL',NULL,327,2,_binary '\0',_binary '','2020-11-16 08:31:45','1','2020-11-16 08:32:39','1'),(777933946049658880,777831120556392448,'2233','PLANE_MODEL',NULL,328,2,_binary '\0',_binary '','2020-11-16 08:32:04','1','2020-11-16 08:32:35','1'),(777934035983925248,777831120556392448,'3344','PLANE_MODEL',NULL,329,2,_binary '\0',_binary '','2020-11-16 08:32:25','1','2020-11-16 08:32:32','1'),(778231894729949184,NULL,'test33','AUTO','接口自动化',394,1,_binary '\0',_binary '\0','2020-11-17 04:16:01','1',NULL,NULL),(778259155722043392,776134564270702592,'test1.2','AUTO_TEST','接口1.2更新',25379,2,_binary '\0',_binary '','2024-11-14 01:08:44','58582660930338816','2024-11-14 01:08:48','58582660930338816'),(778259969861615616,776134564270702592,'AUTO_TEST','AUTO_TEST','接口自动化',430,2,_binary '\0',_binary '','2020-11-17 06:07:34','1','2020-11-17 06:07:53','1'),(778263263229116416,776134564270702592,'test33','AUTO_TEST','接口自动化',432,2,_binary '\0',_binary '','2020-11-17 06:20:39','1','2020-11-17 06:21:18','1'),(778567110229098496,NULL,'test1','AUTO_TEST3','接口自动化0',514,1,_binary '\0',_binary '','2020-11-18 02:27:47','1','2020-11-18 02:28:08','1'),(778567110812106752,NULL,'test2','AUTO_TEST3','接口自动化',515,1,_binary '',_binary '','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1'),(778567114083663872,778567110229098496,'test1.1','AUTO_TEST3','接口自动化1',516,2,_binary '',_binary '','2020-11-18 02:27:47','1','2020-11-18 02:28:08','1'),(779000369471684608,NULL,'AutoTest_waypoint01','PLANE_MODEL','航线管理自动化01',665,1,_binary '\0',_binary '','2020-11-19 08:27:13','1','2020-11-26 01:05:28','1'),(779000684082233344,NULL,'AutoTest_CAM01','LOAD_CAM_MODEL','航线管理自动化CAM01',666,1,_binary '\0',_binary '','2020-11-19 08:47:35','1','2020-11-25 05:04:46','1'),(779314526335139840,NULL,'wurenji','PLANE_MODEL','wurenji',699,1,_binary '\0',_binary '','2020-11-20 03:58:02','1','2020-11-20 04:02:02','1'),(779315389761978368,NULL,'AUTOTEST_planet','PLANE_MODEL','无人机接口自动化',772,1,_binary '\0',_binary '','2020-11-23 01:13:44','1','2020-11-23 05:04:48','1'),(779338566957400064,NULL,'SPK_TEST','LOAD_SPK_MODEL',NULL,705,1,_binary '\0',_binary '','2020-11-20 05:33:33','1','2020-11-25 05:04:47','1'),(779367000391680000,NULL,'TESTPLAN','PLANE_MODEL',NULL,727,1,_binary '\0',_binary '','2020-11-20 07:26:33','1','2020-11-25 05:04:47','1'),(779368359245512704,NULL,'CAMcode','LOAD_CAM_MODEL',NULL,728,1,_binary '\0',_binary '','2020-11-20 07:31:57','1','2020-11-20 07:32:32','1'),(779368686254424064,NULL,'TESTCAM','LOAD_CAM_MODEL',NULL,729,1,_binary '\0',_binary '','2020-11-20 07:33:14','1','2020-11-23 05:04:47','1'),(779369076861566976,NULL,'SPKTEST','LOAD_SPK_MODEL',NULL,730,1,_binary '\0',_binary '','2020-11-20 07:34:48','1','2020-11-23 05:04:47','1'),(780374875998126080,NULL,'AutoTest_data','PLANE_MODEL','数据表单自动化',25375,1,_binary '\0',_binary '','2024-11-14 00:55:08','58582660930338816','2024-11-14 00:55:10','58582660930338816'),(780390381752811520,NULL,'AutoTest_SPK','LOAD_SPK_MODEL','数据表单自动化',25371,1,_binary '\0',_binary '','2024-11-14 00:54:58','58582660930338816','2024-11-14 00:55:01','58582660930338816'),(780390723521478656,NULL,'AutoTest_Hangar','LOAD_HNG_MODEL','自动化机库管理',25387,1,_binary '\0',_binary '','2024-11-14 01:11:01','58582660930338816','2024-11-14 01:11:10','58582660930338816'),(780434963555287040,NULL,'HGR23','LOAD_HNG_MODEL','机库23',800,1,_binary '\0',_binary '','2020-11-23 06:10:16','1','2020-11-24 05:04:47','1'),(780450072918884352,NULL,'AutoTest_hanger','PLANE_MODEL','机库管理自动化',1211,1,_binary '\0',_binary '','2020-12-28 08:00:10','1','2020-12-28 08:00:26','1'),(781451809423228928,NULL,'AUTOTEST_mission','PLANE_MODEL','作业管理自动化',1008,1,_binary '\0',_binary '','2020-11-26 05:35:08','1','2021-03-03 01:59:47','1'),(781453384174665728,NULL,'AUTOTEST_CAMmisson','LOAD_CAM_MODEL','作业管理自动化CAM',1009,1,_binary '\0',_binary '','2020-11-26 05:35:40','1','2020-11-27 06:53:18','1'),(781454583502340096,NULL,'AUTOTEST_SPKmisson','LOAD_SPK_MODEL','作业管理自动化spk',990,1,_binary '\0',_binary '','2020-11-26 01:45:42','1','2020-11-26 01:48:20','1'),(781455121476354048,NULL,'SPK_V1','LOAD_SPK_MODEL',NULL,989,1,_binary '\0',_binary '','2020-11-26 01:44:03','1','2020-11-26 01:49:57','1'),(781456085834924032,NULL,'AUTO_TESTmisson','LOAD_HNG_MODEL','作业管理自动化机库',992,1,_binary '\0',_binary '','2020-11-26 01:47:52','1','2020-11-26 01:49:57','1'),(781482762254286848,NULL,'AutoTest_load','PLANE_MODEL','载荷管理自动化',25382,1,_binary '\0',_binary '','2024-11-14 01:10:22','58582660930338816','2024-11-14 01:10:43','58582660930338816'),(781543824488005632,NULL,'jik001','LOAD_HNG_MODEL',NULL,1010,1,_binary '\0',_binary '','2020-11-26 07:36:31','1','2020-11-27 01:00:58','1'),(781552463076524032,NULL,'AutoTest_loadCAM','LOAD_CAM_MODEL','载荷管理自动化',25383,1,_binary '\0',_binary '','2024-11-14 01:10:23','58582660930338816','2024-11-14 01:10:43','58582660930338816'),(781809341882826752,NULL,'jiku001','LOAD_HNG_MODEL',NULL,1032,1,_binary '\0',_binary '\0','2020-11-27 01:11:36','1','2020-11-27 09:25:31','1'),(781814420455161856,NULL,'AutoTestLoad_SPK','LOAD_SPK_MODEL','载荷管理自动化',25384,1,_binary '\0',_binary '','2024-11-14 01:10:23','58582660930338816','2024-11-14 01:10:43','58582660930338816'),(781830189310148608,NULL,'54hhh','PLANE_MODEL',NULL,1072,1,_binary '\0',_binary '\0','2020-11-27 02:34:26','1',NULL,NULL),(781895685141299200,NULL,'AUTOTEST_missonCAM','LOAD_CAM_MODEL','作业管理自动化CAM1',1081,1,_binary '\0',_binary '','2020-11-27 06:54:42','1','2023-03-02 02:31:32','1'),(782930404536614912,NULL,'ttest','LOAD_HNG_MODEL',NULL,1125,1,_binary '\0',_binary '','2020-11-30 03:26:19','1','2020-11-30 07:07:33','1'),(785955076568121344,NULL,'mws-file','MWS',NULL,807,1,_binary '\0',_binary '\0','2021-09-22 06:57:17','70179580555558912','2021-09-22 06:57:17',NULL),(785955341773963264,785955076568121344,'file-zip','MWS',NULL,808,2,_binary '\0',_binary '\0','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL),(785955499165220864,NULL,'mws-image','MWS',NULL,809,1,_binary '\0',_binary '\0','2021-09-22 06:57:10','70179580555558912','2021-09-22 06:57:10','1'),(785955655818280960,NULL,'mws-video','MWS',NULL,811,1,_binary '\0',_binary '\0','2021-09-22 06:56:50','70179580555558912','2021-09-22 06:56:49',NULL),(785955738987134976,NULL,'mws-sound','MWS',NULL,810,1,_binary '\0',_binary '\0','2021-09-22 06:57:04','70179580555558912','2021-09-22 06:57:04',NULL),(785956045745946624,785955738987134976,'sound-wma','MWS',NULL,812,2,_binary '\0',_binary '\0','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL),(785956111290335232,785955738987134976,'sound-mp3','MWS',NULL,813,2,_binary '\0',_binary '\0','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL),(785956238235140096,785955655818280960,'video-flv','MWS',NULL,814,2,_binary '\0',_binary '\0','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL),(785956332518899712,785955499165220864,'image-png','MWS',NULL,815,2,_binary '\0',_binary '\0','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL),(785971030224142336,785955738987134976,'sound-wav','MWS',NULL,816,2,_binary '\0',_binary '\0','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL),(785971231127109632,785955655818280960,'video-AVI','MWS',NULL,819,2,_binary '\0',_binary '\0','2020-12-08 12:50:02','1','2021-03-05 08:15:59','1'),(785971315835273216,785955655818280960,'video-avi','MWS',NULL,818,2,_binary '\0',_binary '\0','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL),(785971581032726528,785955655818280960,'video-FLV','MWS',NULL,820,2,_binary '\0',_binary '\0','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL),(785971701841264640,785955655818280960,'video-MP4','MWS',NULL,821,2,_binary '\0',_binary '\0','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL),(785971768492949504,785955655818280960,'video-mp4','MWS',NULL,822,2,_binary '\0',_binary '\0','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL),(785971855805775872,785955499165220864,'image-JEPG','MWS',NULL,823,2,_binary '\0',_binary '','2020-12-08 12:51:33','1','2021-03-05 08:15:59','1'),(785971998630215680,785955499165220864,'image-jepg','MWS',NULL,824,2,_binary '\0',_binary '','2020-12-08 12:52:07','1','2021-03-05 08:15:59','1'),(785972305049288704,785955499165220864,'image-GIF','MWS',NULL,825,2,_binary '\0',_binary '\0','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL),(785972446586077184,785955499165220864,'image-jpg','MWS',NULL,826,2,_binary '\0',_binary '\0','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL),(785990953981837312,785955076568121344,'file-pdf','MWS',NULL,827,2,_binary '\0',_binary '\0','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL),(785991277043908608,785955076568121344,'file-txt','MWS',NULL,828,2,_binary '\0',_binary '\0','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL),(785991358312742912,785955076568121344,'file-doc','MWS',NULL,829,2,_binary '\0',_binary '\0','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL),(785991464269250560,785955076568121344,'file-docx','MWS',NULL,830,2,_binary '\0',_binary '\0','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL),(786166603552260096,785955499165220864,'image-gif','MWS',NULL,831,2,_binary '\0',_binary '\0','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL),(786166689434828800,785955499165220864,'image-BMP','MWS',NULL,832,2,_binary '\0',_binary '\0','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL),(786166814857101312,785955499165220864,'image-bmp','MWS',NULL,833,2,_binary '\0',_binary '\0','2020-12-09 01:46:14','1','2021-03-05 08:15:59',NULL),(786166913309999104,785955499165220864,'image-PNG','MWS',NULL,834,2,_binary '\0',_binary '\0','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL),(786167073310113792,785955499165220864,'image-JPG','MWS',NULL,835,2,_binary '\0',_binary '\0','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL),(786167269846810624,785955076568121344,'file-rar','MWS',NULL,836,2,_binary '\0',_binary '\0','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL),(786167334803996672,785955076568121344,'file-gzip','MWS',NULL,837,2,_binary '\0',_binary '\0','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL),(786167391397740544,785955076568121344,'file-tar','MWS',NULL,838,2,_binary '\0',_binary '\0','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL),(786167461652332544,785955076568121344,'file-7z','MWS',NULL,839,2,_binary '\0',_binary '\0','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL),(786168266883203072,785955076568121344,'file-TXT','MWS',NULL,840,2,_binary '\0',_binary '\0','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL),(786250802737053696,NULL,'INDUSTRY_APP','APP_TYPE','行业应用',171,1,_binary '\0',_binary '\0','2020-12-28 02:47:38','1','2023-04-18 06:14:41','1'),(786250985008922624,NULL,'DATA_APP','APP_TYPE','数据应用',170,1,_binary '\0',_binary '\0','2020-12-09 07:20:42','1','2023-04-18 06:14:41','1'),(786251083168219136,NULL,'VALUE_ADDED_APP','APP_TYPE','增值服务',169,1,_binary '\0',_binary '\0','2020-12-09 07:21:06','1','2023-04-18 06:14:41','1'),(788052283698053120,785955499165220864,'image-jpeg','MWS',NULL,872,2,_binary '\0',_binary '\0','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL),(788052580864491520,785955499165220864,'image-JPEG','MWS',NULL,873,2,_binary '\0',_binary '\0','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL),(788424128922255360,NULL,'wrjxh051','PLANE_MODEL',NULL,3254,1,_binary '\0',_binary '\0','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1'),(793143916168871936,NULL,'AutoTest_plane','PLANE_MODEL','无人机管理自动化',25381,1,_binary '\0',_binary '','2024-11-14 01:09:15','58582660930338816','2024-11-14 01:09:46','58582660930338816'),(799714390139076608,NULL,'wrjxh052','PLANE_MODEL','3010',6121,1,_binary '\0',_binary '\0','2021-01-15 10:59:28','1','2022-09-20 08:29:33','1'),(801097991447511040,NULL,'sccj019','MNF',NULL,2221,1,_binary '\0',_binary '\0','2021-01-19 06:37:24','1','2022-11-11 05:49:03','1'),(801098271467634688,NULL,'xt004','PLANE_SHAPE',NULL,3259,1,_binary '\0',_binary '\0','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123'),(801098394583040000,NULL,'wrj053','PLANE_MODEL',NULL,1218,1,_binary '\0',_binary '','2021-01-19 06:39:00','1','2021-01-19 06:39:08','1'),(801098473846996992,NULL,'wrjxh053','PLANE_MODEL','测试使用',9576,1,_binary '\0',_binary '\0','2021-01-19 06:39:19','1','2022-09-20 08:29:33','1'),(802483084174950400,NULL,'sccj019','ADAPT_MNF',NULL,1221,1,_binary '\0',_binary '\0','2021-09-22 06:59:39','70179580555558912','2021-09-22 06:59:39',NULL),(805843904883720192,NULL,'jkxh010','LOAD_HNG_MODEL',NULL,1222,1,_binary '\0',_binary '\0','2021-02-07 02:06:04','1','2021-02-07 02:06:03',NULL),(805844343272374272,NULL,'jkxh011','LOAD_HNG_MODEL',NULL,1223,1,_binary '\0',_binary '\0','2021-02-07 02:05:38','1','2021-02-07 02:05:38',NULL),(805844587976458240,NULL,'jkxh012','LOAD_HNG_MODEL',NULL,1224,1,_binary '\0',_binary '\0','2021-02-07 02:05:15','1','2021-02-07 02:05:15',NULL),(806488785524228096,NULL,'xh013','LOAD_CAM_MODEL',NULL,1225,1,_binary '\0',_binary '\0','2021-02-03 03:38:30','1',NULL,NULL),(806548289536262144,NULL,'HEAD','AI_VIDEO',NULL,1226,1,_binary '\0',_binary '\0','2021-03-15 05:42:35','1','2021-03-15 05:42:34',NULL),(806548356229890048,NULL,'CAR','AI_VIDEO',NULL,1227,1,_binary '\0',_binary '\0','2021-03-15 05:42:07','1','2021-03-15 05:42:06',NULL),(816612738498428928,NULL,'wrjxh054','PLANE_MODEL',NULL,1228,1,_binary '\0',_binary '\0','2021-09-22 07:09:14','70179580555558912','2021-09-22 07:09:13',NULL),(816616912250339328,NULL,'xh014','LOAD_CAM_MODEL',NULL,1229,1,_binary '\0',_binary '\0','2021-03-03 02:24:03','1',NULL,NULL),(816664677282086912,NULL,'xh099','LOAD_CAM_MODEL',NULL,1230,1,_binary '\0',_binary '\0','2021-03-03 05:33:51','1','2021-03-12 03:16:11',NULL),(819226411490476032,963755719004389376,'zoom','DEV_ACTION_MODEL','变焦数值',10891,2,_binary '\0',_binary '\0','2022-04-13 03:02:12','175627050911006720','2022-11-16 06:28:48','188243415207510016'),(819891377478434816,NULL,'xh100','LOAD_CAM_MODEL','tiantu12',1232,1,_binary '\0',_binary '','2021-03-12 03:15:59','70213995537104896','2021-03-12 07:55:21','70213995537104896'),(819891377478434817,NULL,'PLATFORM_CLOUD','PLATFORM_TYPE',NULL,1612,1,_binary '\0',_binary '\0','2021-03-12 05:46:26','1','2021-03-19 06:06:49','1'),(819891377478434818,NULL,'PLATFORM_OPEN','PLATFORM_TYPE',NULL,1614,1,_binary '\0',_binary '\0','2021-03-12 05:46:26','1','2021-03-19 06:06:47','1'),(819891377478434819,NULL,'PLATFORM_ADMIN','PLATFORM_TYPE',NULL,1613,1,_binary '\0',_binary '\0','2021-03-12 05:46:26','1','2021-03-19 06:06:49','1'),(819891377478434820,NULL,'OPTIMIZATION_SUGGESTIONS','FEEDBACK_TYPE',NULL,1617,1,_binary '\0',_binary '\0','2021-03-12 05:46:56','1','2021-03-12 07:40:10','1'),(819891377478434821,NULL,'ABNORMAL_FUNCTION','FEEDBACK_TYPE',NULL,1616,1,_binary '\0',_binary '\0','2021-03-12 05:46:56','1','2021-03-12 07:40:10','1'),(819891377478434822,NULL,'OTHER_FEEDBACK','FEEDBACK_TYPE',NULL,1615,1,_binary '\0',_binary '\0','2021-03-12 05:46:56','1','2021-03-12 05:46:56','1'),(819951653787664384,NULL,'123213','213','123',1618,1,_binary '\0',_binary '','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11','70213995537104896'),(822471083549655040,NULL,'test4','test','testtesttesttest1',1619,1,_binary '\0',_binary '','2021-03-19 06:06:37','1','2021-03-19 06:06:41','1'),(822471083549655041,NULL,'LOAD_NUMBER','QUOTA_TYPE','公司可创建的载荷数量',9233,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655042,NULL,'SUB_ACCOUNT_NUMBER','QUOTA_TYPE','公司可创建的子账号数量',3679,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655043,NULL,'AIR_LINE_NUMBER','QUOTA_TYPE','公司可创建的航线数量',3344,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655044,NULL,'UAV_NUMBER','QUOTA_TYPE','公司可创建的无人机数量',3342,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655045,NULL,'HANGAR_NUMBER','QUOTA_TYPE','公司可创建的机库数量',3341,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655046,NULL,'JOB_NUMBER','QUOTA_TYPE','公司可创建的作业数量',3340,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655047,NULL,'UAV_ONLINE_NUMBER','QUOTA_TYPE','公司可创建的无人机在线数量',3339,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655048,NULL,'TEMP_AIRSPACE_NUMBER','QUOTA_TYPE','公司可创建的临时空域数量',3338,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655049,NULL,'HANGAR_ONLINE_NUMBER','QUOTA_TYPE','公司可创建的机库在线数量',3336,1,_binary '\0',_binary '\0','2021-03-19 07:05:53','1','2022-04-27 03:39:58','1'),(822471083549655050,NULL,'CHONGQINGNK','NJ_COMPANY',NULL,4752,1,_binary '\0',_binary '\0','2021-03-19 07:06:16','1','2021-03-19 07:06:16','1'),(822471083549655051,NULL,'LINE_INSPECTION','SCENCE_TYPE',NULL,4789,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655052,NULL,'RIVER_DETECTION','SCENCE_TYPE',NULL,4788,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655053,NULL,'ROAD_DETECTION','SCENCE_TYPE',NULL,4787,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655054,NULL,'FARMLAND_SCENCE','SCENCE_TYPE',NULL,4786,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655055,NULL,'ROUTE_PLANNING','SCENCE_TYPE',NULL,4785,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822471083549655056,NULL,'OTHER_SCENCE','SCENCE_TYPE',NULL,4783,1,_binary '\0',_binary '\0','2021-03-19 07:06:37','1','2021-03-19 07:06:37','1'),(822489529737936896,NULL,'视频1','NJ_VIDEO',NULL,4790,1,_binary '\0',_binary '','2021-03-19 07:25:49','1','2021-03-23 01:38:28','1'),(822489529737936897,NULL,'视频一','NJ_VIDEO',NULL,4779,1,_binary '\0',_binary '\0','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1'),(826868962842247168,NULL,'FLIGHT_DETAIL_PAGE_URL','MISSION_MANAGEMENT','https://www.demo.uavcmlc.com:18000/#/flightDetail?uavCode=${uavId}&hangarCode=${hangarId}&deviceType=plane',4791,1,_binary '\0',_binary '\0','2021-04-01 00:48:57','89730635001757696','2021-04-01 00:48:57',NULL),(826869187430449152,NULL,'TIMING_MISSION_DETAIL_URL','MISSION_MANAGEMENT','https://www.demo.uavcmlc.com:18000/#/mission/timing-detail/${missionId}/SubTask',4792,1,_binary '\0',_binary '\0','2021-04-15 02:33:16','89730635001757696','2021-04-15 02:33:16',NULL),(826869467588984832,NULL,'temperPhoto','DEV_ACTION_MODEL','测温拍照',4797,1,_binary '\0',_binary '\0','2021-03-31 09:24:03','89730635001757696','2021-03-31 09:32:22',NULL),(826869611470389248,826869467588984832,'temperPhotoDesc','DEV_ACTION_MODEL','测温描述',4794,2,_binary '\0',_binary '\0','2021-03-31 09:24:37','89730635001757696',NULL,NULL),(826869831411302400,777919573763686400,'picDesc','DEV_ACTION_MODEL',NULL,15317,2,_binary '\0',_binary '\0','2023-05-08 07:08:35','173818970422378496','2023-05-08 07:08:35','173818970422378496'),(826871114474061824,NULL,'startMeasurement','DEV_ACTION_MODEL','開始測溫',4793,1,_binary '\0',_binary '\0','2021-03-31 09:30:36','89730635001757696','2021-03-31 09:32:28',NULL),(826871339846598656,NULL,'stopMeasurement','DEV_ACTION_MODEL','停止测温',1231,1,_binary '\0',_binary '\0','2021-03-31 09:31:29','89730635001757696','2021-03-31 09:32:30',NULL),(826871536899194880,NULL,'temperatureDetect','DEV_ACTION_MODEL','溫度監測',325,1,_binary '\0',_binary '\0','2021-03-31 09:32:16','89730635001757696','2021-03-31 09:32:30',NULL),(826871747943989248,826871536899194880,'maxWarning','DEV_ACTION_MODEL','最高告警',4801,2,_binary '\0',_binary '\0','2021-03-31 09:33:07','89730635001757696','2021-03-31 09:34:26',NULL),(826871897378652160,826871536899194880,'minWarning','DEV_ACTION_MODEL','最低告警',4800,2,_binary '\0',_binary '\0','2021-03-31 09:33:42','89730635001757696','2021-03-31 09:34:28',NULL),(826872067679977472,826871536899194880,'temperatureDetectDesc','DEV_ACTION_MODEL','温度监测描述',4799,2,_binary '\0',_binary '\0','2021-03-31 09:34:23','89730635001757696','2021-03-31 09:34:28',NULL),(827111579068792832,NULL,'r','ss',NULL,4803,1,_binary '\0',_binary '','2021-04-01 01:26:07','1','2021-04-01 01:26:34','1'),(827111604377223168,NULL,'y','ss',NULL,4804,1,_binary '\0',_binary '','2021-04-01 01:26:13','1','2021-04-01 01:26:36','1'),(827111631480815616,NULL,'u','ss',NULL,4802,1,_binary '\0',_binary '','2021-04-01 01:26:19','1','2021-04-01 01:26:38','1'),(829036758112010240,NULL,'CAR_UAS00010353','AI_VIDEO',NULL,4805,1,_binary '\0',_binary '\0','2021-04-06 08:56:05','1',NULL,NULL),(829036883894992896,NULL,'HEAD_UAS00010353','AI_VIDEO',NULL,4806,1,_binary '\0',_binary '\0','2021-04-06 08:56:35','1',NULL,NULL),(829036883894992897,NULL,'1','DEMO_STATUS',NULL,257,1,_binary '\0',_binary '\0','2021-04-07 08:14:58','123','2021-04-07 08:14:58','123'),(829715458394554368,NULL,'xh009','LOAD_CAM_MODEL','禅思H20T',4807,1,_binary '\0',_binary '\0','2021-04-08 05:53:00','89730635001757696',NULL,NULL),(832254044922839040,NULL,'wrjxh055','PLANE_MODEL',NULL,4808,1,_binary '\0',_binary '\0','2021-04-15 06:00:26','1',NULL,NULL),(834388291288694784,NULL,'test','test',NULL,4809,1,_binary '\0',_binary '','2021-04-21 03:21:10','1','2021-04-21 03:21:35','1'),(834388327653310464,NULL,'test1','test',NULL,4810,1,_binary '\0',_binary '','2021-04-21 03:21:19','1','2021-04-21 03:21:35','1'),(841607657893789696,NULL,'HEAD_UAS00010467','AI_VIDEO',NULL,4811,1,_binary '\0',_binary '\0','2021-05-11 01:28:21','1',NULL,NULL),(841607873808171008,NULL,'CAR_UAS00010467','AI_VIDEO',NULL,4812,1,_binary '\0',_binary '\0','2021-05-11 01:29:13','1',NULL,NULL),(844284482126217216,NULL,'CAR_UAS00010402','AI_VIDEO',NULL,4813,1,_binary '\0',_binary '\0','2021-05-18 10:45:06','1',NULL,NULL),(844284639202902016,NULL,'HEAD_UAS00010402','AI_VIDEO',NULL,4814,1,_binary '\0',_binary '\0','2021-05-18 10:45:44','1',NULL,NULL),(844889172232765440,NULL,'sccj020','MNF',NULL,4815,1,_binary '\0',_binary '\0','2021-05-20 02:47:55','1',NULL,NULL),(844889487510208512,NULL,'wrjxh056','PLANE_MODEL',NULL,4816,1,_binary '\0',_binary '\0','2021-05-20 02:49:11','1',NULL,NULL),(844889615340011520,NULL,'sccj020','ADAPT_MNF',NULL,4817,1,_binary '\0',_binary '\0','2021-09-22 06:58:29','70179580555558912','2021-09-22 06:58:28',NULL),(844889798345883648,NULL,'xj015','LOAD_CAM_MODEL',NULL,4818,1,_binary '\0',_binary '\0','2021-05-20 02:50:25','1',NULL,NULL),(846404383016091648,NULL,'electricInspection','DEV_ACTION_MODEL',NULL,4859,1,_binary '\0',_binary '\0','2021-05-24 07:08:50','89730635001757696','2022-04-13 03:01:15',NULL),(846404535558733824,846404383016091648,'relativePosition','DEV_ACTION_MODEL',NULL,4820,2,_binary '\0',_binary '\0','2021-05-24 07:09:26','89730635001757696',NULL,NULL),(846404675241639936,846404383016091648,'partLabel','DEV_ACTION_MODEL',NULL,4821,2,_binary '\0',_binary '\0','2021-05-24 07:10:00','89730635001757696',NULL,NULL),(846404843819106304,846404383016091648,'towerSide','DEV_ACTION_MODEL',NULL,4822,2,_binary '\0',_binary '\0','2021-05-24 07:10:40','89730635001757696',NULL,NULL),(846405008059662336,846404383016091648,'phase','DEV_ACTION_MODEL',NULL,4823,2,_binary '\0',_binary '\0','2021-05-24 07:11:19','89730635001757696',NULL,NULL),(846405112871124992,846404383016091648,'sequenceNum','DEV_ACTION_MODEL',NULL,4824,2,_binary '\0',_binary '\0','2021-05-24 07:11:44','89730635001757696',NULL,NULL),(846405330748440576,846404383016091648,'towerCode','DEV_ACTION_MODEL',NULL,4825,2,_binary '\0',_binary '\0','2021-05-24 07:12:36','89730635001757696',NULL,NULL),(846405428517666816,846404383016091648,'voltage','DEV_ACTION_MODEL',NULL,4826,2,_binary '\0',_binary '\0','2021-05-24 07:12:59','89730635001757696',NULL,NULL),(846405531689156608,846404383016091648,'lineName','DEV_ACTION_MODEL',NULL,4827,2,_binary '\0',_binary '\0','2021-05-24 07:13:24','89730635001757696',NULL,NULL),(846793656714264576,NULL,'HEAD_UAS00010511','AI_VIDEO',NULL,4828,1,_binary '\0',_binary '\0','2021-05-25 08:55:40','1',NULL,NULL),(846793890471215104,NULL,'CAR_UAS00010511','AI_VIDEO',NULL,4829,1,_binary '\0',_binary '\0','2021-05-25 08:56:36','1',NULL,NULL),(847109628566306816,NULL,'aa','testt',NULL,4831,1,_binary '\0',_binary '','2021-05-26 05:51:13','292','2021-05-26 05:51:49','292'),(847109670467403776,NULL,'bb','testt',NULL,4830,1,_binary '\0',_binary '','2021-05-26 05:51:23','292','2021-05-26 05:51:47','292'),(847109715451314176,847109670467403776,'aaaa','testt',NULL,4832,2,_binary '\0',_binary '','2021-05-26 05:51:34','292','2021-05-26 05:51:47','292'),(847109715451314177,NULL,'otherLoad','DEV_MODEL_HUBBLE',NULL,4843,1,_binary '\0',_binary '','2021-06-16 09:22:16','1','2023-04-06 03:05:42','1'),(847109715451314178,NULL,'commonLoad','DEV_MODEL_HUBBLE',NULL,4842,1,_binary '\0',_binary '\0','2021-06-16 09:22:05','1','2021-06-16 09:22:05','1'),(847109715451314179,NULL,'xh003','DEV_MODEL_HUBBLE',NULL,303,1,_binary '\0',_binary '\0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123'),(847109715451314180,NULL,'xh005','DEV_MODEL_HUBBLE',NULL,302,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314181,NULL,'xh006','DEV_MODEL_HUBBLE',NULL,301,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314182,NULL,'xh001','DEV_MODEL_HUBBLE',NULL,300,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314183,NULL,'otherUav2','DEV_MODEL_HUBBLE',NULL,299,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314184,NULL,'otherUav1','DEV_MODEL_HUBBLE',NULL,298,1,_binary '\0',_binary '','2021-06-02 07:11:43','123','2023-04-06 03:04:39','1'),(847109715451314185,NULL,'commonUav','DEV_MODEL_HUBBLE',NULL,297,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(847109715451314186,NULL,'wrjxh059','DEV_MODEL_HUBBLE',NULL,295,1,_binary '\0',_binary '','2021-06-02 07:11:43','123','2021-06-16 09:08:42','1'),(847109715451314187,NULL,'wrjxh047','DEV_MODEL_HUBBLE',NULL,293,1,_binary '\0',_binary '','2021-06-02 07:11:43','123','2021-06-16 09:08:39','1'),(847109715451314188,NULL,'wrjxh006','DEV_MODEL_HUBBLE',NULL,292,1,_binary '\0',_binary '\0','2021-06-02 07:11:43','123','2021-06-16 08:14:17','123'),(849667997298720768,NULL,'sccj002','ADAPT_MNF',NULL,4833,1,_binary '\0',_binary '\0','2021-09-22 06:57:38','70179580555558912','2021-09-22 06:57:38',NULL),(850074196724809728,NULL,'CAR_UAS00010487','AI_VIDEO',NULL,4834,1,_binary '\0',_binary '\0','2021-06-03 10:11:22','123',NULL,NULL),(850074301641129984,NULL,'HEAD_UAS00010487','AI_VIDEO',NULL,4835,1,_binary '\0',_binary '\0','2021-06-03 10:11:47','123',NULL,NULL),(851404291041263616,NULL,'hhqxh003','LOAD_SPK_MODEL','喊话器型号:MP130,厂家:成至',4836,1,_binary '\0',_binary '\0','2021-06-07 02:16:41','1',NULL,NULL),(851404935592542208,NULL,'sccj021','MNF','生产厂家:成至',4837,1,_binary '\0',_binary '\0','2021-06-07 02:19:14','1',NULL,NULL),(851404935592542209,NULL,'INTERFACE_WITHOUT_BINDING_COMPANY','INTERFACE_TYPE','不要绑定公司的接口',281,1,_binary '\0',_binary '\0','2021-09-22 06:54:37','70179580555558912','2021-09-22 06:54:36','1'),(851404935592542210,NULL,'INTERFACE_BINDING_COMPANY','INTERFACE_TYPE','需要绑定公司的接口',280,1,_binary '\0',_binary '\0','2021-09-22 06:55:25','70179580555558912','2021-09-22 06:55:25','1'),(851404935592542211,NULL,'OPEN_LIMIT_TYPE_TIEMS','OPEN_LIMIT_TYPE',NULL,271,1,_binary '\0',_binary '\0','2021-09-22 06:53:44','70179580555558912','2021-09-22 06:53:44','1'),(851404935592542212,NULL,'OPEN_LIMIT_TYPE_FLOW','OPEN_LIMIT_TYPE',NULL,270,1,_binary '',_binary '\0','2021-09-22 06:54:02','70179580555558912','2021-09-22 06:54:02','1'),(851404935592542213,NULL,'OPEN_LIMIT_TYPE_SPACE','OPEN_LIMIT_TYPE',NULL,269,1,_binary '',_binary '\0','2021-09-22 06:54:15','70179580555558912','2021-09-22 06:54:15','1'),(851404935592542214,NULL,'INTERFACE_GROUP_WAYPOINT','INTERFACE_GROUP',NULL,268,1,_binary '\0',_binary '\0','2021-09-22 06:53:02','70179580555558912','2022-03-30 10:16:48','1'),(851404935592542215,NULL,'INTERFACE_GROUP_AIRSPACE','INTERFACE_GROUP',NULL,267,1,_binary '\0',_binary '\0','2021-09-22 06:53:17','70179580555558912','2022-03-30 10:16:48','1'),(851404935592542216,NULL,'INTERFACE_GROUP_SURVEILLANCE','INTERFACE_GROUP',NULL,266,1,_binary '\0',_binary '\0','2021-09-22 06:52:24','70179580555558912','2022-03-30 10:16:48','1'),(854653485289963520,NULL,'auto','VIDEO_LINE',NULL,4838,1,_binary '\0',_binary '\0','2021-06-16 01:27:49','1',NULL,NULL),(854769552981098496,NULL,'wrjxh052','DEV_MODEL_HUBBLE',NULL,4839,1,_binary '\0',_binary '\0','2021-06-16 09:09:02','1',NULL,NULL),(854769607901315072,NULL,'wrjxh055','DEV_MODEL_HUBBLE',NULL,4840,1,_binary '\0',_binary '\0','2021-06-16 09:09:15','1',NULL,NULL),(854772784155459584,NULL,'xh009','DEV_MODEL_HUBBLE',NULL,4841,1,_binary '\0',_binary '\0','2021-06-16 09:21:52','1',NULL,NULL),(862625578661052416,NULL,'xh016','LOAD_CAM_MODEL',NULL,4844,1,_binary '\0',_binary '\0','2021-07-08 01:26:04','1',NULL,NULL),(862625710068596736,NULL,'sccj022','MNF',NULL,4845,1,_binary '\0',_binary '\0','2021-07-08 01:26:36','1',NULL,NULL),(869881973760458752,NULL,'videoFlowing','VIDEO_FLOWING]',NULL,4846,1,_binary '\0',_binary '\0','2021-07-28 02:00:24','1',NULL,NULL),(869977610707402752,819226411490476032,'ZOOMVALUE','DEV_ACTION_MODEL',NULL,4847,2,_binary '',_binary '','2021-07-28 08:20:25','1','2022-04-13 03:01:46','175627050911006720'),(877924523268243456,NULL,'INTERFACE_GROUP_WAREHOUSE','INTERFACE_GROUP',NULL,9790,1,_binary '\0',_binary '\0','2021-09-22 06:52:48','70179580555558912','2022-03-30 10:16:48','1'),(888060587236524032,NULL,'chengyanyuan','DETECTION_COMPANY',NULL,4849,1,_binary '\0',_binary '\0','2021-09-16 05:55:43','1',NULL,NULL),(890542739517734912,NULL,'sccj023','MNF',NULL,4850,1,_binary '\0',_binary '\0','2021-09-23 02:18:54','1',NULL,NULL),(890543036805808128,NULL,'sccj024','MNF',NULL,4851,1,_binary '\0',_binary '\0','2021-09-23 02:20:05','1',NULL,NULL),(890543737313296384,NULL,'wrjxh057','PLANE_MODEL',NULL,4852,1,_binary '\0',_binary '\0','2021-09-23 02:22:52','1',NULL,NULL),(890544103899660288,NULL,'wrjxh058','PLANE_MODEL',NULL,4853,1,_binary '\0',_binary '\0','2021-09-23 02:24:19','1',NULL,NULL),(890544198930006016,NULL,'wrjxh059','PLANE_MODEL',NULL,4854,1,_binary '\0',_binary '\0','2021-09-23 02:24:42','1',NULL,NULL),(890544439741775872,NULL,'xh017','LOAD_CAM_MODEL',NULL,4855,1,_binary '\0',_binary '\0','2021-09-23 02:25:39','1',NULL,NULL),(890544616858845184,NULL,'xh018','LOAD_CAM_MODEL',NULL,4856,1,_binary '\0',_binary '\0','2021-09-23 02:26:22','1',NULL,NULL),(890544706298183680,NULL,'xh020','LOAD_CAM_MODEL',NULL,4857,1,_binary '\0',_binary '\0','2021-09-23 02:26:43','1',NULL,NULL),(890544706298183681,NULL,'JAVA_OKHTTP','OPEN_API_SAMPLE_LANGUAGE',NULL,330,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183682,NULL,'PHP_HTTP_REQUEST2','OPEN_API_SAMPLE_LANGUAGE',NULL,328,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183683,NULL,'PYTHON_REQUESTS','OPEN_API_SAMPLE_LANGUAGE',NULL,328,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183684,NULL,'NODEJS_AXIOS','OPEN_API_SAMPLE_LANGUAGE',NULL,328,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(890544706298183685,NULL,'C#_RESTSHARP','OPEN_API_SAMPLE_LANGUAGE',NULL,326,1,_binary '\0',_binary '\0','2021-10-18 08:30:26','1','2022-03-30 06:06:30','1'),(910187933183639552,NULL,'358','POC_USER','{\"loginApi\":\"https://112.33.0.176:4010\",\"serverApi\":\"https://112.33.0.176:4482\",\"customId\":\"POC-1284\",\"customPd\":\"MzQwY04zYiE=\",\"dispatcherId\":\"8586510001\",\"dispatcherPd\":\"WXhjQDE5OTE=\"}',4858,1,_binary '',_binary '\0','2021-11-18 09:14:24','175627050911006720','2024-07-04 01:21:34','188243415207510016'),(910564884515782656,NULL,'towerInspectionQJ','DEV_ACTION_MODEL',NULL,10890,1,_binary '\0',_binary '\0','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016'),(910572131199352832,NULL,'358','CHEWUTONG_COMPANY',NULL,4860,1,_binary '\0',_binary '\0','2021-11-17 08:48:33','175627050911006720',NULL,NULL),(910572387282583552,NULL,'71','CHEWUTONG_COMPANY',NULL,4861,1,_binary '\0',_binary '\0','2021-11-17 08:49:34','175627050911006720',NULL,NULL),(911207437468565504,NULL,'gddc','LOAD_CAM_MODEL',NULL,4862,1,_binary '\0',_binary '\0','2021-11-19 02:53:02','175627050911006720',NULL,NULL),(917722458432339968,NULL,'INTERFACE_GROUP_FIRE','INTERFACE_GROUP',NULL,9789,1,_binary '\0',_binary '\0','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1'),(917809101881344000,NULL,'2','XF_COMPANY',NULL,4864,1,_binary '\0',_binary '\0','2021-12-07 08:05:41','175627050911006720',NULL,NULL),(920367578843578368,NULL,'UAS00011009 ','UASID_ZIGONG',NULL,4875,1,_binary '\0',_binary '','2021-12-15 05:38:12','175627050911006720','2021-12-15 05:41:59','175627050911006720'),(920367751128809472,NULL,'IP','IP_ZIGONG',NULL,4868,1,_binary '\0',_binary '\0','2021-12-15 05:43:22','175627050911006720','2021-12-15 05:43:21','175627050911006720'),(920367823522496512,NULL,'PORT','IP_ZIGONG',NULL,4869,1,_binary '\0',_binary '\0','2021-12-14 09:46:32','175627050911006720','2021-12-14 09:46:32','175627050911006720'),(920670911965822976,NULL,'UAS00011007','UASID_ZIGONG',NULL,4874,1,_binary '\0',_binary '','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23','175627050911006720'),(920672098844803072,NULL,'UAS00011010','UASID_ZIGONG',NULL,4876,1,_binary '\0',_binary '\0','2021-12-15 05:42:13','175627050911006720',NULL,NULL),(922428546452946944,NULL,'test','DEV_MODEL_HUBBLE',NULL,4877,1,_binary '\0',_binary '','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08','173818970422378496'),(922428546452946945,NULL,'cover','TOWER_DEFECT_CATEGORY',NULL,4856,1,_binary '\0',_binary '\0','2022-01-18 11:27:41','1','2022-01-18 11:27:41','1'),(922428546452946946,NULL,'disaster','TOWER_DEFECT_CATEGORY',NULL,4855,1,_binary '\0',_binary '\0','2022-01-18 11:27:41','1','2022-01-18 11:27:41','1'),(922428546452946947,NULL,'construction','TOWER_DEFECT_CATEGORY',NULL,4854,1,_binary '\0',_binary '\0','2022-01-18 11:27:42','1','2022-01-18 11:27:42','1'),(922428546452946948,NULL,'fall','TOWER_DEFECT_CATEGORY',NULL,4853,1,_binary '\0',_binary '\0','2022-01-18 11:27:42','1','2022-01-18 11:27:42','1'),(922428546452946949,NULL,'tilted','TOWER_DEFECT_CATEGORY',NULL,4852,1,_binary '\0',_binary '\0','2022-01-18 11:27:42','1','2022-01-18 11:27:42','1'),(922428546452946950,NULL,'area','ALARM_INDEX',NULL,365,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946951,NULL,'signal','ALARM_INDEX',NULL,341,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946952,NULL,'gps','ALARM_INDEX',NULL,340,1,_binary '\0',_binary '\0','2022-03-14 05:50:28','173818970422378496','2022-03-14 05:50:27','1'),(922428546452946953,NULL,'elec','ALARM_INDEX',NULL,339,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946954,NULL,'height','ALARM_INDEX',NULL,338,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946955,NULL,'speed','ALARM_INDEX',NULL,337,1,_binary '\0',_binary '\0','2022-01-19 01:13:53','1','2022-01-19 01:13:53','1'),(922428546452946956,NULL,'web','NOTICE_WAY',NULL,9781,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946957,NULL,'sms','NOTICE_WAY',NULL,9780,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946958,NULL,'email','NOTICE_WAY',NULL,345,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946959,NULL,'message','NOTICE_WAY',NULL,344,1,_binary '\0',_binary '\0','2022-01-19 01:14:22','1','2022-01-19 01:14:22','1'),(922428546452946960,NULL,'instation','NOTICE_WAY',NULL,343,1,_binary '\0',_binary '\0','2022-01-19 01:14:23','1','2022-01-19 01:14:23','1'),(922428546452946961,NULL,'warn','ALARM_LEVEL',NULL,348,1,_binary '\0',_binary '\0','2022-01-19 01:14:50','1','2022-01-19 01:14:50','1'),(922428546452946962,NULL,'careful','ALARM_LEVEL',NULL,347,1,_binary '\0',_binary '\0','2022-01-19 01:14:50','1','2022-01-19 01:14:50','1'),(922428546452946963,NULL,'attention','ALARM_LEVEL',NULL,346,1,_binary '\0',_binary '\0','2022-01-19 01:14:50','1','2022-01-19 01:14:50','1'),(922428546452946964,NULL,'rushInto','ALARM_TRIGGER',NULL,364,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946965,NULL,'rushOut','ALARM_TRIGGER',NULL,363,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946966,NULL,'smallOrEqual','ALARM_TRIGGER',NULL,352,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946967,NULL,'bigOrEqual','ALARM_TRIGGER',NULL,351,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946968,NULL,'small','ALARM_TRIGGER',NULL,350,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946969,NULL,'big','ALARM_TRIGGER',NULL,349,1,_binary '\0',_binary '\0','2022-01-19 01:15:17','1','2022-01-19 01:15:17','1'),(922428546452946970,NULL,'0','DEAL_RESULT',NULL,369,1,_binary '\0',_binary '\0','2022-01-19 01:15:48','1','2022-01-19 01:15:48','1'),(922428546452946971,NULL,'1','DEAL_RESULT',NULL,368,1,_binary '\0',_binary '\0','2022-01-19 01:15:48','1','2022-01-19 01:15:48','1'),(922428546452946972,NULL,'rushOut','AREA_ALARM_TRIGGER',NULL,362,1,_binary '\0',_binary '\0','2022-01-19 01:16:12','1','2022-01-19 01:16:12','1'),(922428546452946973,NULL,'rushInto','AREA_ALARM_TRIGGER',NULL,361,1,_binary '\0',_binary '\0','2022-01-19 01:16:12','1','2022-01-19 01:16:12','1'),(922428546452946974,NULL,'level','TRIGGER_UNIT',NULL,371,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946975,NULL,'meter','TRIGGER_UNIT',NULL,357,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946976,NULL,'percent','TRIGGER_UNIT',NULL,356,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946977,NULL,'ge','TRIGGER_UNIT',NULL,355,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946978,NULL,'mPerSec','TRIGGER_UNIT',NULL,353,1,_binary '\0',_binary '\0','2022-01-19 01:16:35','1','2022-01-19 01:16:35','1'),(922428546452946979,NULL,'DA','PLANE_MODEL',NULL,7144,1,_binary '\0',_binary '\0','2022-01-20 01:15:40','123','2022-09-20 08:29:33','1'),(922428546452946980,NULL,'FFFF','PLANE_MODEL',NULL,6226,1,_binary '',_binary '\0','2022-01-20 01:15:40','123','2022-09-20 08:29:33','1'),(922428546452946981,NULL,'five','PLANE_LEVEL','5',391,1,_binary '\0',_binary '\0','2022-01-20 01:16:26','123','2022-01-20 01:16:26','123'),(922428546452946982,NULL,'four','PLANE_LEVEL','4',390,1,_binary '\0',_binary '\0','2022-01-20 01:16:26','123','2022-01-20 01:16:26','123'),(922428546452946983,NULL,'three','PLANE_LEVEL','3',389,1,_binary '\0',_binary '\0','2022-01-20 01:16:27','123','2022-01-20 01:16:27','123'),(922428546452946984,NULL,'two','PLANE_LEVEL','2',388,1,_binary '\0',_binary '\0','2022-01-20 01:16:27','123','2022-01-20 01:16:27','123'),(922428546452946985,NULL,'one','PLANE_LEVEL','1',387,1,_binary '\0',_binary '\0','2022-01-20 01:16:27','123','2022-01-20 01:16:27','123'),(922428546452946986,NULL,'idcard','IDENTITY_TYPE',NULL,392,1,_binary '\0',_binary '\0','2022-01-20 01:16:46','123','2022-01-20 01:16:46','123'),(922428546452946987,NULL,'westarea','AIRSPACE_UNIT',NULL,393,1,_binary '\0',_binary '\0','2022-01-20 01:17:03','123','2022-01-20 01:17:03','123'),(922428546452946988,NULL,'qualification','FLIGHT_TYPE','4',400,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946989,NULL,'medium ','FLIGHT_TYPE','3',399,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946990,NULL,'micro','FLIGHT_TYPE','2',398,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946991,NULL,'light','FLIGHT_TYPE','1',397,1,_binary '\0',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946992,NULL,'perair','FLIGHT_TYPE',NULL,395,1,_binary '',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946993,NULL,'airtrans','FLIGHT_TYPE',NULL,394,1,_binary '',_binary '\0','2022-01-20 01:17:28','123','2022-01-20 01:17:28','123'),(922428546452946994,NULL,'PROCEDURE_TYPE','PROCEDURE_TYPE','0:无终审\n1:自动终审\n2:手动终审',4850,1,_binary '\0',_binary '\0','2022-01-20 01:17:46','123','2023-07-17 08:43:35','199120334480211968'),(922428546452946995,NULL,'0','REAL_STAT',NULL,9788,1,_binary '\0',_binary '\0','2022-03-11 06:08:54','123','2022-03-11 06:08:54','123'),(922428546452946996,NULL,'1','REAL_STAT',NULL,9787,1,_binary '\0',_binary '\0','2022-03-11 06:08:54','123','2022-03-11 06:08:54','123'),(922428546452946997,NULL,'LOAD_GAS_MODEL','DEV_MODEL',NULL,4857,1,_binary '\0',_binary '\0','2022-03-11 06:09:18','123','2023-10-11 06:11:00','123'),(922428546452946998,NULL,'test-ltt-3','LOAD_GAS_MODEL',NULL,4862,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452946999,NULL,'test-ltt-2','LOAD_GAS_MODEL',NULL,4861,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452947000,NULL,'test-ltt-1','LOAD_GAS_MODEL',NULL,4860,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452947001,NULL,'qtjc001','LOAD_GAS_MODEL',NULL,4858,1,_binary '\0',_binary '\0','2022-03-11 06:09:43','123','2022-03-11 06:09:43','123'),(922428546452947002,NULL,'123232','QUOTA_TYPE',NULL,10826,1,_binary '\0',_binary '','2022-03-11 06:13:07','123','2022-04-27 05:58:20','1'),(922428546452947003,NULL,'STORAGE_CAPACITY','QUOTA_TYPE','公司可使用的存储空间',10825,1,_binary '\0',_binary '\0','2022-03-11 06:13:07','123','2022-04-27 03:39:58','1'),(922428546452947004,NULL,'KML_IMPORT_ROUTE_NUMBER','QUOTA_TYPE','kmz航线管理里面,【导入航线】的配额',3343,1,_binary '\0',_binary '\0','2022-03-11 06:13:07','123','2024-03-04 03:49:34','89730635001757696'),(922428546452947005,NULL,'0','SAVE_STAT',NULL,10884,1,_binary '\0',_binary '\0','2022-03-11 06:13:43','123','2022-03-11 06:13:43','123'),(922428546452947006,NULL,'1','SAVE_STAT',NULL,10883,1,_binary '\0',_binary '\0','2022-03-11 06:13:43','123','2022-03-11 06:13:43','123'),(956152932712185856,NULL,'UAS00011175','UASID_ZIGONG',NULL,10885,1,_binary '\0',_binary '\0','2022-03-23 03:30:23','175627050911006720',NULL,NULL),(956152932712185857,NULL,'ACCOUNT_RULE','BLUR_RULE',NULL,381,1,_binary '\0',_binary '\0','2022-03-30 06:05:45','1','2022-03-30 06:05:45','1'),(956152932712185858,NULL,'EMAIL_RULE','BLUR_RULE',NULL,380,1,_binary '\0',_binary '\0','2022-03-30 06:05:45','1','2022-03-30 06:05:45','1'),(956152932712185859,NULL,'TELEPHONE','BLUR_RULE',NULL,379,1,_binary '\0',_binary '\0','2022-03-30 06:05:45','1','2022-03-30 06:05:45','1'),(958731191543005184,NULL,'wrjxh060','PLANE_MODEL',NULL,10886,1,_binary '\0',_binary '\0','2022-03-30 06:15:28','175627050911006720',NULL,NULL),(958731452466462720,NULL,'sccj025','MNF',NULL,10887,1,_binary '\0',_binary '\0','2022-03-30 06:16:30','175627050911006720',NULL,NULL),(958731486968807424,NULL,'sccj025','ADAPT_MNF',NULL,10888,1,_binary '\0',_binary '\0','2022-03-30 06:16:38','175627050911006720',NULL,NULL),(958731765491564544,NULL,'xh021','LOAD_CAM_MODEL',NULL,10889,1,_binary '\0',_binary '\0','2022-03-30 06:17:45','175627050911006720',NULL,NULL),(963755719004389376,NULL,'ZOOM','DEV_ACTION_MODEL','摄像头变焦',4819,1,_binary '\0',_binary '\0','2022-04-13 03:01:31','175627050911006720','2022-04-13 03:01:31',NULL),(968802322463457280,NULL,'sccj026','MNF',NULL,10892,1,_binary '\0',_binary '\0','2022-04-27 01:14:33','175627050911006720','2022-04-27 01:14:33','175627050911006720'),(968802441632022528,NULL,'wrjxh061','PLANE_MODEL',NULL,10893,1,_binary '\0',_binary '\0','2022-04-27 01:15:02','175627050911006720','2022-04-27 01:15:02','175627050911006720'),(968803243973017600,NULL,'xh022','LOAD_CAM_MODEL',NULL,10894,1,_binary '\0',_binary '\0','2022-04-27 01:18:13','175627050911006720','2022-04-27 01:18:13','175627050911006720'),(968803243973017601,NULL,'HOUSE_MODEL','DEV_MODEL',NULL,12255,1,_binary '\0',_binary '\0','2022-04-27 03:38:53','1','2022-04-27 03:38:53','1'),(968803243973017602,NULL,'AutoTest_load','DEV_MODEL',NULL,10876,1,_binary '\0',_binary '\0','2022-04-27 03:38:53','1','2022-04-27 03:38:53','1'),(968803243973017603,NULL,'SUB_COMPANY_NUMBER','QUOTA_TYPE','可创建子组织数量',10891,1,_binary '\0',_binary '\0','2022-04-27 03:39:57','1','2024-02-19 06:15:35','89730635001757696'),(968880084515684352,NULL,'xiliuuav','PLANE_MODEL',NULL,12256,1,_binary '\0',_binary '\0','2022-04-27 06:23:33','199120334480211968','2022-04-27 06:23:33','199120334480211968'),(972179860631977984,NULL,'SPARY','DEV_MODEL',NULL,12257,1,_binary '\0',_binary '\0','2022-05-06 08:55:41','188243415207510016','2022-05-06 08:55:41','188243415207510016'),(972180183790518272,NULL,'sxh001','SPARY',NULL,12258,1,_binary '\0',_binary '\0','2022-05-06 08:56:58','188243415207510016','2022-05-06 08:56:58','188243415207510016'),(972180183790518273,NULL,'PL1','PICTURE_LABELS','',10899,1,_binary '\0',_binary '\0','2022-06-08 06:24:53','123','2023-12-18 08:30:17','1'),(972180183790518274,NULL,'PL2','PICTURE_LABELS',NULL,10900,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518275,NULL,'PL3','PICTURE_LABELS',NULL,10904,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518276,NULL,'PL7','PICTURE_LABELS',NULL,10903,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:20','188243415207510016'),(972180183790518277,NULL,'PL8','PICTURE_LABELS',NULL,10902,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:24','188243415207510016'),(972180183790518278,NULL,'PL9','PICTURE_LABELS',NULL,10901,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:13','188243415207510016'),(972180183790518279,NULL,'PL4','PICTURE_LABELS',NULL,10905,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2024-11-05 02:16:27','1'),(972180183790518280,NULL,'PL5','PICTURE_LABELS',NULL,10906,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2024-11-05 02:16:27','1'),(972180183790518281,NULL,'PL6','PICTURE_LABELS',NULL,10898,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:33','188243415207510016'),(972180183790518282,NULL,'PL10','PICTURE_LABELS',NULL,10897,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:37','188243415207510016'),(972180183790518283,NULL,'PL11','PICTURE_LABELS',NULL,10896,1,_binary '',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 09:13:42','188243415207510016'),(972180183790518284,NULL,'PL12','PICTURE_LABELS',NULL,10895,1,_binary '\0',_binary '\0','2022-06-08 06:24:54','123','2023-12-18 08:30:17','1'),(972180183790518285,NULL,'yrd','TASK_TYPE',NULL,10894,1,_binary '\0',_binary '\0','2022-06-08 06:25:24','123','2022-06-08 06:25:24','123'),(972180183790518286,NULL,'other','TASK_TYPE',NULL,10893,1,_binary '\0',_binary '\0','2022-06-08 06:25:24','123','2022-06-08 06:25:24','123'),(972180183790518287,NULL,'danger-fence','AREA_TYPE',NULL,371,1,_binary '\0',_binary '\0','2022-06-10 03:51:15','123','2022-06-10 03:51:15','123'),(972180183790518288,NULL,'security-fence','AREA_TYPE',NULL,370,1,_binary '\0',_binary '\0','2022-06-10 03:51:15','123','2022-06-10 03:51:15','123'),(972180183790518289,NULL,'GL1','GAS_LABELS',NULL,13417,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518290,NULL,'GL2','GAS_LABELS',NULL,13416,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518291,NULL,'GL3','GAS_LABELS',NULL,13415,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518292,NULL,'GL4','GAS_LABELS',NULL,13414,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518293,NULL,'GL5','GAS_LABELS',NULL,13413,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518294,NULL,'GL6','GAS_LABELS',NULL,13412,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518295,NULL,'GL7','GAS_LABELS',NULL,13411,1,_binary '\0',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(972180183790518296,NULL,'LICENSE_SUSPENSION','PILOT_VIOLATION_PENALTY',NULL,10915,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518297,NULL,'DEDUCTION','PILOT_VIOLATION_PENALTY',NULL,10914,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518298,NULL,'FINE','PILOT_VIOLATION_PENALTY',NULL,10913,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518299,NULL,'WARN','PILOT_VIOLATION_PENALTY',NULL,10912,1,_binary '\0',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(972180183790518300,NULL,'ANONYMOUS_FLY','PILOT_VIOLATION_TYPE',NULL,10911,1,_binary '\0',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(972180183790518301,NULL,'NO_FLY_AREA','PILOT_VIOLATION_TYPE',NULL,10910,1,_binary '\0',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(972180183790518302,NULL,'WORK_DISTURBANCE','PILOT_VIOLATION_TYPE',NULL,10909,1,_binary '\0',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(972180183790518303,NULL,'VTOLFIXED_WING_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10908,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518304,NULL,'VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10907,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518305,NULL,'VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10906,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518306,NULL,'AIRSHIP_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10905,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518307,NULL,'AIRSHIP_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10904,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518308,NULL,'AIRSHIP_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10903,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518309,NULL,'MULTI_ROTOR_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10902,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518310,NULL,'MULTI_ROTOR_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10901,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518311,NULL,'MULTI_ROTOR_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10900,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518312,NULL,'HELICOPTER_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10899,1,_binary '\0',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(972180183790518313,NULL,'HELICOPTER_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10898,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518314,NULL,'HELICOPTER_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10897,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518315,NULL,'FIXED_WING_INSTRUCTOR','PILOT_CERTIFICATE_LEVEL',NULL,10896,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518316,NULL,'FIXED_WING_OVER_THE_HORIZON_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10895,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518317,NULL,'FIXED_WING_LINE_OF_SIGHT_PILOT','PILOT_CERTIFICATE_LEVEL',NULL,10894,1,_binary '\0',_binary '\0','2022-07-08 06:49:32','1','2022-07-08 06:49:32','1'),(972180183790518318,NULL,'GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','GROUP_TEMPLATE_SCOPE',NULL,10927,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518319,NULL,'GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','GROUP_TEMPLATE_SCOPE',NULL,10926,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518320,NULL,'GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','GROUP_TEMPLATE_SCOPE',NULL,10925,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518321,NULL,'GROUP_TEMPLATE_SCOPE_ALL','GROUP_TEMPLATE_SCOPE',NULL,10923,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518322,NULL,'GROUP_TEMPLATE_SCOPE_ROLE','GROUP_TEMPLATE_SCOPE',NULL,10921,1,_binary '\0',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(972180183790518323,NULL,'EMERGENCY_COMMUNICATION','MNF',NULL,14943,1,_binary '\0',_binary '\0','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1'),(972180183790518324,NULL,'CERTIFIED','SUAV_USER_CERTIFICATION_STATUS',NULL,10920,1,_binary '\0',_binary '\0','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1'),(972180183790518325,NULL,'UNDER_CERTIFICATION','SUAV_USER_CERTIFICATION_STATUS',NULL,10919,1,_binary '\0',_binary '\0','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1'),(972180183790518326,NULL,'UNCERTIFIED','SUAV_USER_CERTIFICATION_STATUS',NULL,10918,1,_binary '\0',_binary '\0','2022-09-20 08:29:18','1','2023-08-24 02:17:46','1'),(972180183790518327,NULL,'DISABLED','SUAV_USER_STATUS',NULL,10917,1,_binary '\0',_binary '\0','2022-09-20 08:29:21','1','2022-09-20 08:29:21','1'),(972180183790518328,NULL,'ENABLED','SUAV_USER_STATUS',NULL,10916,1,_binary '\0',_binary '\0','2022-09-20 08:29:21','1','2022-09-20 08:29:21','1'),(972180183790518329,NULL,'Tethered_Drone','PLANE_MODEL',NULL,14942,1,_binary '\0',_binary '\0','2022-09-20 08:29:32','1','2022-09-20 08:29:32','1'),(972180183790518330,NULL,'Medium_Drone','PLANE_MODEL',NULL,14941,1,_binary '\0',_binary '\0','2022-09-20 08:29:32','1','2022-09-20 08:29:32','1'),(972180183790518331,NULL,'Large_Drone','PLANE_MODEL',NULL,14940,1,_binary '\0',_binary '\0','2022-09-20 08:29:32','1','2022-09-20 08:29:32','1'),(972180183790518332,NULL,'test','PLANE_MODEL',NULL,14758,1,_binary '\0',_binary '\0','2022-09-20 08:29:33','1','2022-09-20 08:29:33','1'),(972180183790518333,NULL,'mt1','MAINTENANCE_TEAM',NULL,8822,1,_binary '\0',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(972180183790518334,NULL,'mt2','MAINTENANCE_TEAM',NULL,8821,1,_binary '\0',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(972180183790518335,NULL,'mt3','MAINTENANCE_TEAM',NULL,8820,1,_binary '\0',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(972180183790518336,NULL,'tc1','TOWER_CATEGORY',NULL,8819,1,_binary '\0',_binary '\0','2022-09-22 06:47:14','1','2022-09-22 06:47:14','1'),(972180183790518337,NULL,'tc2','TOWER_CATEGORY',NULL,8818,1,_binary '\0',_binary '\0','2022-09-22 06:47:14','1','2022-09-22 06:47:14','1'),(972180183790518338,NULL,'1323096648758464513','scrName',NULL,15120,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:06','1'),(972180183790518339,NULL,'1323096648758464512','scrName',NULL,15119,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:17','1'),(972180183790518340,NULL,'1323096648758464516','scrName',NULL,15118,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:28','1'),(972180183790518341,NULL,'1323096648758464517','scrName',NULL,15117,1,_binary '\0',_binary '\0','2022-10-12 02:17:12','1','2022-10-13 08:24:35','1'),(1031857258025189376,NULL,'INTERFACE_GROUP_AI','INTERFACE_GROUP',NULL,15121,1,_binary '\0',_binary '\0','2022-10-18 01:12:21','188243415207510016','2022-10-18 01:12:21','188243415207510016'),(1031863474717720576,NULL,'INTERFACE_GROUP_MODELV2','INTERFACE_GROUP',NULL,15122,1,_binary '\0',_binary '\0','2022-10-18 01:37:03','188243415207510016','2022-10-18 01:37:03','188243415207510016'),(1037685983618793472,NULL,'INTERFACE_FLIGHTCONTROL','INTERFACE_GROUP',NULL,15123,1,_binary '\0',_binary '','2022-11-03 03:13:38','1','2022-11-03 03:13:47','1'),(1037686130448793600,NULL,'INTERFACE_GROUP_FLIGHTCONTROL','INTERFACE_GROUP',NULL,15124,1,_binary '\0',_binary '\0','2022-11-03 03:14:13','1','2022-12-06 03:51:21','188243415207510016'),(1039174194060853248,NULL,'INTERFACE_GROUP_PAYLOADCONTROL','INTERFACE_GROUP',NULL,15125,1,_binary '\0',_binary '\0','2022-11-07 05:47:15','1','2022-11-07 05:47:15','1'),(1044181943391879168,NULL,'xh023','LOAD_CAM_MODEL',NULL,15126,1,_binary '\0',_binary '\0','2022-11-21 01:26:15','1','2022-11-21 01:26:15','1'),(1044198875373502464,NULL,'sccj027','MNF',NULL,15127,1,_binary '\0',_binary '\0','2022-11-21 02:33:32','1','2023-03-02 02:14:50','199120334480211968'),(1044199050150150144,NULL,'wrjxh062','PLANE_MODEL',NULL,15128,1,_binary '\0',_binary '\0','2022-11-21 02:34:14','1','2022-11-21 02:34:14','1'),(1044199248054190080,NULL,'wrjcd005','PLANE_SIZE',NULL,15129,1,_binary '\0',_binary '\0','2022-11-21 02:35:01','1','2022-11-21 02:35:01','1'),(1047077946424033280,NULL,'56','CUSTOMIZE_MISSION_REPORT_ADDRESS','http://218.75.255.91:61000/monitor-business/reportURLUpload',15130,1,_binary '\0',_binary '\0','2022-11-29 01:13:56','1','2023-03-15 09:25:25','1'),(1050724684611452928,NULL,'wrjxh063','PLANE_MODEL',NULL,15131,1,_binary '\0',_binary '\0','2022-12-09 02:44:46','1','2023-09-20 08:29:35','1'),(1050724744573222912,NULL,'wrjxh064','PLANE_MODEL',NULL,15132,1,_binary '\0',_binary '\0','2022-12-09 02:45:01','1','2022-12-09 02:45:01','1'),(1050725005643481088,NULL,'xh024','LOAD_CAM_MODEL',NULL,15133,1,_binary '\0',_binary '\0','2022-12-09 02:46:03','1','2022-12-09 02:46:03','1'),(1050725081040289792,NULL,'xh025','LOAD_CAM_MODEL',NULL,15134,1,_binary '\0',_binary '\0','2022-12-09 02:46:21','1','2022-12-09 02:46:21','1'),(1052707169662664704,NULL,'t2','POC_USER','0dXJlIjoiVW5yZXN0cmljdGVkU2hhcmVkQXJyYXlCdWZmZXIiLCJleHBpcnkiOjE2ODgwODMxOTksImlzU3ViZG9tYWluIjp0cnVlfQ==',15135,1,_binary '\0',_binary '\0','2022-12-14 14:02:28','188243415207510016','2022-12-14 14:48:37','188243415207510016'),(1052707265385070592,NULL,'t1','POC_USER','AtmHDTTPiUPEvVfJTI7KLwFcufVOW2iZeMHZjbLY7czUyx/T8whKyTVVoNaecyD6GAHITeDHvKuMoqiv1GOgFAkAAAB8eyJvcmlnaW4iOiJodHRwczovL2xvY2FsLnVhdmNtbGMuY29tOjMwMDAiLCJmZWF',15136,1,_binary '\0',_binary '\0','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:48:21','188243415207510016'),(1052707265385070593,NULL,'2','PILOT_STATE',NULL,10962,1,_binary '\0',_binary '\0','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123'),(1052707265385070594,NULL,'1','PILOT_STATE',NULL,10961,1,_binary '\0',_binary '\0','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123'),(1052707265385070595,NULL,'0','PILOT_STATE',NULL,10960,1,_binary '\0',_binary '\0','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123'),(1073014468411129856,NULL,'sccj028','MNF',NULL,15137,1,_binary '\0',_binary '\0','2023-02-08 14:56:25','175627050911006720','2023-02-08 14:56:25','175627050911006720'),(1073014468977360896,NULL,'sccj028','MNF',NULL,15138,1,_binary '\0',_binary '','2023-02-08 14:56:25','175627050911006720','2023-02-08 14:56:39','175627050911006720'),(1073014803762511872,NULL,'sccj029','MNF',NULL,15139,1,_binary '\0',_binary '\0','2023-02-08 14:57:45','175627050911006720','2023-02-08 14:57:45','175627050911006720'),(1073016129519091712,NULL,'wrjxh065','PLANE_MODEL',NULL,15140,1,_binary '\0',_binary '\0','2023-02-08 15:03:01','175627050911006720','2023-02-08 15:03:01','175627050911006720'),(1073016186637123584,NULL,'wrjxh066','PLANE_MODEL',NULL,15141,1,_binary '\0',_binary '\0','2023-02-08 15:03:15','175627050911006720','2023-02-08 15:03:15','175627050911006720'),(1073016265460678656,NULL,'wrjxh067','PLANE_MODEL',NULL,15142,1,_binary '\0',_binary '\0','2023-02-08 15:03:33','175627050911006720','2023-02-08 15:03:33','175627050911006720'),(1073016361422159872,NULL,'xh026','LOAD_CAM_MODEL',NULL,15143,1,_binary '\0',_binary '\0','2023-02-08 15:03:56','175627050911006720','2023-02-08 15:03:56','175627050911006720'),(1073016433081843712,NULL,'xh027','LOAD_CAM_MODEL',NULL,15144,1,_binary '\0',_binary '\0','2023-02-08 15:04:13','175627050911006720','2023-02-08 15:04:13','175627050911006720'),(1073016487578435584,NULL,'xh028','LOAD_CAM_MODEL',NULL,15145,1,_binary '\0',_binary '\0','2023-02-08 15:04:26','175627050911006720','2023-02-08 15:04:26','175627050911006720'),(1074623816304427008,NULL,'hhqxh004','LOAD_SPK_MODEL',NULL,15146,1,_binary '\0',_binary '\0','2023-02-13 01:31:23','1','2023-02-13 01:31:23','1'),(1080811018168303616,NULL,'XZ001','LOAD_CAM_MODEL',NULL,15147,1,_binary '\0',_binary '\0','2023-03-02 03:17:07','199120334480211968','2023-03-02 03:17:07','199120334480211968'),(1088099090681561088,NULL,'jkxh013','LOAD_HNG_MODEL',NULL,15148,1,_binary '\0',_binary '\0','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1'),(1088100047175811072,NULL,'wrjxh071','PLANE_MODEL',NULL,15149,1,_binary '\0',_binary '\0','2023-03-22 06:01:07','1','2023-03-22 06:01:07','1'),(1088100142701084672,NULL,'wrjxh072','PLANE_MODEL',NULL,15150,1,_binary '\0',_binary '\0','2023-03-22 06:01:30','1','2023-03-22 06:01:30','1'),(1088100249613893632,NULL,'wrjxh073','PLANE_MODEL',NULL,15151,1,_binary '\0',_binary '\0','2023-03-22 06:01:55','1','2023-03-22 06:01:55','1'),(1088101282461253632,NULL,'xh030','LOAD_CAM_MODEL',NULL,15152,1,_binary '\0',_binary '\0','2023-03-22 06:06:02','1','2023-03-22 06:06:02','1'),(1093491521899986944,NULL,'wrjxh063','DEV_MODEL_HUBBLE',NULL,15153,1,_binary '\0',_binary '\0','2023-04-06 03:04:55','1','2023-04-06 03:04:55','1'),(1093491876595499008,NULL,'xh024','DEV_MODEL_HUBBLE',NULL,15154,1,_binary '\0',_binary '\0','2023-04-06 03:06:19','1','2023-04-06 03:06:19','1'),(1094628709916213248,NULL,'jkxh014','LOAD_HNG_MODEL',NULL,15155,1,_binary '\0',_binary '\0','2023-04-09 06:23:42','173818970422378496','2023-04-09 06:23:42','173818970422378496'),(1094628915428720640,NULL,'M30_dual_camera','LOAD_CAM_MODEL',NULL,15156,1,_binary '',_binary '\0','2023-04-09 06:24:31','173818970422378496','2023-04-09 08:13:37','173818970422378496'),(1094628915428720641,NULL,'PARTNER_APP','APP_TYPE','合作应用',10968,1,_binary '\0',_binary '\0','2023-04-18 06:14:41','1','2023-04-18 06:14:41','1'),(1098287906105065472,NULL,'167','XF_COMPANY','西咸消防',15157,1,_binary '\0',_binary '\0','2023-04-19 08:44:02','188243415207510016','2023-04-19 08:44:02','188243415207510016'),(1100006650309246976,NULL,'qtjc002','LOAD_GAS_MODEL',NULL,15158,1,_binary '\0',_binary '\0','2023-04-24 02:33:43','1','2023-04-24 02:33:43','1'),(1100091495152615424,NULL,'HUS00000076','SCENARIOMAP','江苏省盐城市大丰荷兰花海景区',15159,1,_binary '\0',_binary '\0','2023-04-24 08:10:51','1','2023-06-20 12:03:25','89730635001757696'),(1100092511872876544,NULL,'HUS00000068','SCENARIOMAP','江苏省无锡市灵山景区',15160,1,_binary '\0',_binary '\0','2023-04-24 08:14:54','1','2023-06-20 12:10:57','89730635001757696'),(1100092708610899968,NULL,'HUS00000077','SCENARIOMAP','江苏省扬州市瘦西湖风景区',15161,1,_binary '\0',_binary '\0','2023-04-24 08:15:40','1','2023-06-20 12:11:26','89730635001757696'),(1100094879591038976,NULL,'HUS00000073','SCENARIOMAP',NULL,15162,1,_binary '\0',_binary '\0','2023-04-24 08:24:18','1','2023-04-24 08:24:18','1'),(1100094965117091840,NULL,'HUS00000066','SCENARIOMAP',NULL,15163,1,_binary '\0',_binary '\0','2023-04-24 08:24:38','1','2023-04-24 08:24:38','1'),(1100095053830815744,NULL,'HUS00000079','SCENARIOMAP',NULL,15164,1,_binary '\0',_binary '\0','2023-04-24 08:25:00','1','2023-04-24 08:25:00','1'),(1100095171296493568,NULL,'HUS00000075','SCENARIOMAP',NULL,15165,1,_binary '\0',_binary '\0','2023-04-24 08:25:28','1','2023-04-24 08:25:28','1'),(1100095266691743744,NULL,'HUS00000069','SCENARIOMAP','江苏省无锡市鼋头渚风景区',15166,1,_binary '\0',_binary '\0','2023-04-24 08:25:50','1','2023-06-20 12:11:37','89730635001757696'),(1100095600835166208,NULL,'HUS00000072','SCENARIOMAP','江苏省连云港市花果山景区',15167,1,_binary '\0',_binary '\0','2023-04-24 08:27:10','1','2023-06-20 12:13:11','89730635001757696'),(1100096505944997888,NULL,'HUS00000063','SCENARIOMAP','江苏省南京市牛首山文化旅游区',15168,1,_binary '\0',_binary '','2023-04-24 08:30:46','1','2023-09-30 06:01:26','188243415207510016'),(1100096599234707456,NULL,'HUS00000062','SCENARIOMAP',NULL,15169,1,_binary '\0',_binary '\0','2023-04-24 08:31:08','1','2023-04-24 08:31:08','1'),(1100096680331575296,NULL,'HUS00000061','SCENARIOMAP',NULL,15170,1,_binary '\0',_binary '','2023-04-24 08:31:27','1','2023-09-26 02:33:15','188243415207510016'),(1100096765777936384,NULL,'HUS00000064','SCENARIOMAP',NULL,15171,1,_binary '\0',_binary '\0','2023-04-24 08:31:48','1','2023-04-24 08:31:48','1'),(1100096860984442880,NULL,'HUS00000074','SCENARIOMAP','江苏省连云港市连岛景区',15172,1,_binary '\0',_binary '\0','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696'),(1100096931452944384,NULL,'HUS00000081','SCENARIOMAP',NULL,15173,1,_binary '\0',_binary '\0','2023-04-24 08:32:27','1','2023-04-24 08:32:27','1'),(1100097018291814400,NULL,'HUS00000083','SCENARIOMAP',NULL,15174,1,_binary '\0',_binary '\0','2023-04-24 08:32:48','1','2023-04-27 15:15:25','1'),(1100097096033239040,NULL,'HUS00000082','SCENARIOMAP',NULL,15175,1,_binary '\0',_binary '\0','2023-04-24 08:33:07','1','2023-04-24 08:33:07','1'),(1100097174290563072,NULL,'HUS00000080','SCENARIOMAP',NULL,15176,1,_binary '\0',_binary '\0','2023-04-24 08:33:25','1','2023-04-24 08:33:25','1'),(1100097298261606400,NULL,'HUS00000071','SCENARIOMAP',NULL,15177,1,_binary '\0',_binary '\0','2023-04-24 08:33:55','1','2023-04-24 08:33:55','1'),(1100097421955825664,NULL,'HUS00000078','SCENARIOMAP',NULL,15178,1,_binary '\0',_binary '\0','2023-04-24 08:34:24','1','2023-04-24 08:34:24','1'),(1100099037975019520,NULL,'HUS00000083','HOUSEAREA',NULL,15179,1,_binary '\0',_binary '\0','2023-04-24 08:40:50','1','2023-04-24 08:40:50','1'),(1100099089141334016,NULL,'HUS00000082','HOUSEAREA',NULL,15180,1,_binary '\0',_binary '\0','2023-04-24 08:41:02','1','2023-04-24 08:41:02','1'),(1100099142681624576,NULL,'HUS00000081','HOUSEAREA',NULL,15181,1,_binary '\0',_binary '\0','2023-04-24 08:41:14','1','2023-04-24 08:41:14','1'),(1100099232242597888,NULL,'HUS00000080','HOUSEAREA',NULL,15182,1,_binary '\0',_binary '\0','2023-04-24 08:41:36','1','2023-04-24 08:41:36','1'),(1100099346830983168,NULL,'HUS00000079','HOUSEAREA',NULL,15183,1,_binary '\0',_binary '\0','2023-04-24 08:42:03','1','2023-04-24 08:42:03','1'),(1100099431966965760,NULL,'HUS00000078','HOUSEAREA',NULL,15184,1,_binary '\0',_binary '\0','2023-04-24 08:42:23','1','2023-04-24 08:42:23','1'),(1100099489282129920,NULL,'HUS00000077','HOUSEAREA','江苏省扬州市瘦西湖风景区',15185,1,_binary '\0',_binary '\0','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696'),(1100099555233366016,NULL,'HUS00000076','HOUSEAREA','江苏省盐城市大丰荷兰花海景区',15186,1,_binary '\0',_binary '\0','2023-04-24 08:42:53','1','2023-06-15 10:05:06','89730635001757696'),(1100099625118859264,NULL,'HUS00000075','HOUSEAREA',NULL,15187,1,_binary '\0',_binary '\0','2023-04-24 08:43:09','1','2023-04-24 08:43:09','1'),(1100099703187439616,NULL,'HUS00000074','HOUSEAREA','江苏省连云港市连岛景区',15188,1,_binary '\0',_binary '\0','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696'),(1100099789934034944,NULL,'HUS00000073','HOUSEAREA',NULL,15189,1,_binary '\0',_binary '\0','2023-04-24 08:43:49','1','2023-04-24 08:43:49','1'),(1100099877217501184,NULL,'HUS00000072','HOUSEAREA','江苏省连云港市花果山景区',15190,1,_binary '\0',_binary '\0','2023-04-24 08:44:10','1','2023-09-27 02:00:26','89730635001757696'),(1100099973074124800,NULL,'HUS00000071','HOUSEAREA',NULL,15191,1,_binary '\0',_binary '\0','2023-04-24 08:44:32','1','2023-04-24 08:44:32','1'),(1100100033761509376,NULL,'HUS00000069','HOUSEAREA','江苏省无锡市鼋头渚风景区',15192,1,_binary '\0',_binary '\0','2023-04-24 08:44:47','1','2023-06-15 10:05:38','89730635001757696'),(1100100081979228160,NULL,'HUS00000068','HOUSEAREA','江苏省无锡市灵山景区',15193,1,_binary '\0',_binary '\0','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696'),(1100100149520105472,NULL,'HUS00000066','HOUSEAREA',NULL,15194,1,_binary '\0',_binary '\0','2023-04-24 08:45:15','1','2023-04-24 08:45:15','1'),(1100100395021107200,NULL,'HUS00000063','HOUSEAREA','江苏省南京市牛首山文化旅游区',15195,1,_binary '\0',_binary '\0','2023-04-24 08:46:13','1','2023-06-15 10:06:02','89730635001757696'),(1100100468903772160,NULL,'HUS00000062','HOUSEAREA','江苏省南京市玄武湖景区',15196,1,_binary '\0',_binary '\0','2023-04-24 08:46:31','1','2023-09-21 08:27:54','89730635001757696'),(1100100591222259712,NULL,'HUS00000061','HOUSEAREA',NULL,15197,1,_binary '\0',_binary '','2023-04-24 08:47:00','1','2023-09-21 08:30:34','89730635001757696'),(1100112751734292480,NULL,'HUS00000064','HOUSEAREA',NULL,15198,1,_binary '\0',_binary '\0','2023-04-24 09:35:19','1','2023-04-24 09:35:19','1'),(1100816337812324352,NULL,'AutoTest_gasData','LOAD_GAS_MODEL','气体检测仪自动化',25374,1,_binary '\0',_binary '','2024-11-14 00:55:06','58582660930338816','2024-11-14 00:55:08','58582660930338816'),(1100872484766351360,NULL,'HUS00000084','HOUSEAREA','江苏省常州市环球恐龙城休闲旅游区',15214,1,_binary '\0',_binary '\0','2023-04-26 11:54:14','1','2023-06-15 10:04:45','89730635001757696'),(1101090168116346880,NULL,'AutoTest_plane2','PLANE_MODEL','无人机管理自动化2',25380,1,_binary '\0',_binary '','2024-11-14 01:09:15','58582660930338816','2024-11-14 01:09:46','58582660930338816'),(1101129419994431488,NULL,'HUS00000086','HOUSEAREA','江苏省南通市森林野生动物园景区',15228,1,_binary '\0',_binary '\0','2023-04-27 04:55:12','1','2023-09-21 08:38:47','89730635001757696'),(1101129494577545216,NULL,'HUS00000085','HOUSEAREA','江苏省苏州市七里山塘景区',15229,1,_binary '\0',_binary '\0','2023-04-27 04:55:30','1','2023-06-15 10:04:18','89730635001757696'),(1101131532627607552,NULL,'HUS00000087','HOUSEAREA',NULL,15230,1,_binary '\0',_binary '\0','2023-04-27 05:03:35','1','2023-04-27 05:03:35','1'),(1101131678480334848,NULL,'HUS00000087','SCENARIOMAP',NULL,15231,1,_binary '\0',_binary '\0','2023-04-27 05:04:10','1','2023-04-27 05:04:10','1'),(1101131768985026560,NULL,'HUS00000086','SCENARIOMAP','江苏省南通市森林野生动物园',15574,1,_binary '\0',_binary '\0','2023-09-26 02:36:41','188243415207510016','2023-09-26 02:36:41','188243415207510016'),(1101131906772107264,NULL,'HUS00000085','SCENARIOMAP','江苏省苏州市七里山塘景区',15233,1,_binary '\0',_binary '\0','2023-04-27 05:05:05','1','2023-06-20 12:17:35','89730635001757696'),(1101283898291126272,NULL,'HUS00000084','SCENARIOMAP','江苏省常州市环球恐龙城休闲旅游区',15236,1,_binary '\0',_binary '\0','2023-04-27 15:09:02','1','2023-06-20 12:13:00','89730635001757696'),(1106217924911169536,NULL,'173','XF_COMPANY','海安公安',15318,1,_binary '\0',_binary '\0','2023-05-11 05:55:06','1','2023-05-11 05:55:06','1'),(1106217924911169537,NULL,'CipherInterface','CIPHER_OBJECT',NULL,10931,1,_binary '\0',_binary '\0','2023-05-18 10:54:44','1','2023-05-18 10:54:44','1'),(1106217924911169538,NULL,'CipherLicense','CIPHER_OBJECT',NULL,10930,1,_binary '\0',_binary '\0','2023-05-18 10:54:44','1','2023-05-18 10:54:44','1'),(1106217924911169539,NULL,'CipherMaterial','CIPHER_OBJECT',NULL,10929,1,_binary '\0',_binary '\0','2023-05-18 10:54:44','1','2023-05-18 10:54:44','1'),(1109067995369439232,NULL,'AutoTest_loadGas','LOAD_GAS_MODEL','气体检测仪自动化',25385,1,_binary '\0',_binary '','2024-11-14 01:10:23','58582660930338816','2024-11-14 01:10:42','58582660930338816'),(1118119999152586752,NULL,'112','XF_COMPANY',NULL,15451,1,_binary '\0',_binary '\0','2023-06-13 02:09:41','1','2023-06-13 02:09:41','1'),(1118953865425715200,NULL,'HUS00000110','HOUSEAREA','江苏省南京市栖霞山风景区',15452,1,_binary '\0',_binary '\0','2023-06-15 09:23:11','89730635001757696','2023-06-15 09:23:11','89730635001757696'),(1118953995713380352,NULL,'HUS00000109','HOUSEAREA','江苏省镇江市金山景区',15453,1,_binary '\0',_binary '\0','2023-06-15 09:23:42','89730635001757696','2023-06-15 09:23:42','89730635001757696'),(1118954159962324992,NULL,'HUS00000108','HOUSEAREA','江苏省镇江市西津渡历史文化街区',15454,1,_binary '\0',_binary '\0','2023-06-15 09:24:21','89730635001757696','2023-06-15 09:24:21','89730635001757696'),(1118954277453168640,NULL,'HUS00000107','HOUSEAREA','江苏省扬州市运河三湾风景区',15455,1,_binary '\0',_binary '\0','2023-06-15 09:24:49','89730635001757696','2023-09-27 01:59:47','89730635001757696'),(1118957034792812544,NULL,'HUS00000106','HOUSEAREA','江苏省扬州市东关历史文化旅游区',15456,1,_binary '\0',_binary '\0','2023-06-15 09:35:46','89730635001757696','2023-06-15 09:35:46','89730635001757696'),(1118957170071699456,NULL,'HUS00000105','HOUSEAREA','江苏省盐城市东台黄海森林公园景区',15457,1,_binary '\0',_binary '\0','2023-06-15 09:36:19','89730635001757696','2023-06-15 09:36:19','89730635001757696'),(1118957528613388288,NULL,'HUS00000104','HOUSEAREA','江苏省苏州市苏州乐园森林世界',15458,1,_binary '\0',_binary '\0','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:09','89730635001757696'),(1118957613665484800,NULL,'HUS00000103','HOUSEAREA','江苏省常州市天目湖景区',15459,1,_binary '\0',_binary '\0','2023-06-15 09:38:04','89730635001757696','2023-06-15 09:38:04','89730635001757696'),(1118957737602973696,NULL,'HUS00000102','HOUSEAREA','江苏省苏州市同里古镇景区',15460,1,_binary '\0',_binary '\0','2023-06-15 09:38:34','89730635001757696','2023-06-15 09:38:34','89730635001757696'),(1118957829961547776,NULL,'HUS00000101','HOUSEAREA','江苏省苏州市周庄古镇景区',15461,1,_binary '\0',_binary '\0','2023-06-15 09:38:56','89730635001757696','2023-06-15 09:38:56','89730635001757696'),(1118957932789104640,NULL,'HUS00000100','HOUSEAREA','江苏省苏州市木渎古镇',15462,1,_binary '\0',_binary '\0','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696'),(1118958031053258752,NULL,'HUS00000099','HOUSEAREA','江苏省徐州乐园景区',15463,1,_binary '\0',_binary '\0','2023-06-15 09:39:44','89730635001757696','2023-09-28 01:14:27','89730635001757696'),(1118958121809608704,NULL,'HUS00000098','HOUSEAREA','江苏省徐州市新沂窑湾古镇旅游区',15464,1,_binary '\0',_binary '\0','2023-06-15 09:40:05','89730635001757696','2023-06-15 09:40:05','89730635001757696'),(1118958229875851264,NULL,'HUS00000097','HOUSEAREA','江苏省无锡市清名桥古运河景区',15465,1,_binary '\0',_binary '\0','2023-06-15 09:40:31','89730635001757696','2023-06-15 09:40:31','89730635001757696'),(1118958351066071040,NULL,'HUS00000096','HOUSEAREA','江苏省无锡市惠山古镇景区',15466,1,_binary '\0',_binary '\0','2023-06-15 09:41:00','89730635001757696','2023-06-15 09:41:00','89730635001757696'),(1118964003847012352,NULL,'HUS00000094','HOUSEAREA','江苏省南京市天生桥景区',15467,1,_binary '\0',_binary '\0','2023-06-15 10:03:28','89730635001757696','2023-06-15 10:03:28','89730635001757696'),(1118964118787719168,NULL,'HUS00000093','HOUSEAREA','江苏省苏州市平江历史街区',15468,1,_binary '\0',_binary '\0','2023-06-15 10:03:55','89730635001757696','2023-06-15 10:03:55','89730635001757696'),(1120807072871481344,NULL,'HUS00000105','SCENARIOMAP','江苏省盐城市东台黄海森林公园景区',15469,1,_binary '\0',_binary '\0','2023-06-20 12:07:10','89730635001757696','2023-06-20 12:07:10','89730635001757696'),(1120807265947877376,NULL,'HUS00000098','SCENARIOMAP','江苏省徐州市新沂窑湾古镇旅游区',15470,1,_binary '\0',_binary '\0','2023-06-20 12:07:56','89730635001757696','2023-06-20 12:07:56','89730635001757696'),(1120807513348898816,NULL,'HUS00000099','SCENARIOMAP','江苏省徐州乐园景区',15471,1,_binary '\0',_binary '\0','2023-06-20 12:08:55','89730635001757696','2023-06-20 12:08:55','89730635001757696'),(1120807888839770112,NULL,'HUS00000108','SCENARIOMAP','江苏省镇江市西津渡历史文化街区',15472,1,_binary '\0',_binary '\0','2023-06-20 12:10:24','89730635001757696','2023-06-20 12:10:24','89730635001757696'),(1120808337512857600,NULL,'HUS00000101','SCENARIOMAP','江苏省苏州市周庄古镇景区',15473,1,_binary '\0',_binary '\0','2023-06-20 12:12:11','89730635001757696','2023-06-20 12:12:11','89730635001757696'),(1120808493977174016,NULL,'HUS00000102','SCENARIOMAP','江苏省苏州市同里古镇景区',15474,1,_binary '\0',_binary '\0','2023-06-20 12:12:49','89730635001757696','2023-06-20 12:12:49','89730635001757696'),(1120808718523432960,NULL,'HUS00000107','SCENARIOMAP','江苏省扬州市运河三湾风景区',15475,1,_binary '\0',_binary '\0','2023-06-20 12:13:42','89730635001757696','2023-06-20 12:13:42','89730635001757696'),(1120808878330609664,NULL,'HUS00000097','SCENARIOMAP','江苏省无锡市清名桥古运河景区',15476,1,_binary '\0',_binary '\0','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:27','89730635001757696'),(1120809119121408000,NULL,'HUS00000110','SCENARIOMAP','江苏省南京市栖霞山风景区',15477,1,_binary '\0',_binary '\0','2023-06-20 12:15:18','89730635001757696','2023-06-20 12:15:18','89730635001757696'),(1120809485716160512,NULL,'HUS00000106','SCENARIOMAP','江苏省扬州市东关历史文化旅游区',15478,1,_binary '\0',_binary '\0','2023-06-20 12:16:45','89730635001757696','2023-06-20 12:16:45','89730635001757696'),(1120809632294502400,NULL,'HUS00000100','SCENARIOMAP','江苏省苏州市木渎古镇',15479,1,_binary '\0',_binary '\0','2023-06-20 12:17:20','89730635001757696','2023-06-20 12:17:20','89730635001757696'),(1120809849177767936,NULL,'HUS00000093','SCENARIOMAP','江苏省苏州市平江历史街区',15480,1,_binary '\0',_binary '\0','2023-06-20 12:18:12','89730635001757696','2023-06-20 12:18:12','89730635001757696'),(1120810113389559808,NULL,'HUS00000109','SCENARIOMAP','江苏省镇江市金山景区',15481,1,_binary '\0',_binary '\0','2023-06-20 12:19:15','89730635001757696','2023-06-20 12:19:15','89730635001757696'),(1120810292964491264,NULL,'HUS00000103','SCENARIOMAP','江苏省常州市天目湖景区',15482,1,_binary '\0',_binary '\0','2023-06-20 12:19:57','89730635001757696','2023-06-20 12:19:57','89730635001757696'),(1120810533251973120,NULL,'HUS00000094','SCENARIOMAP','江苏省南京市天生桥景区',15483,1,_binary '\0',_binary '\0','2023-06-20 12:20:55','89730635001757696','2023-06-20 12:20:55','89730635001757696'),(1120810737191616512,NULL,'HUS00000104','SCENARIOMAP','江苏省苏州市苏州乐园森林世界',15484,1,_binary '\0',_binary '\0','2023-06-20 12:21:43','89730635001757696','2023-06-20 12:21:43','89730635001757696'),(1123273634392047616,NULL,'focus','DEV_ACTION_MODEL',NULL,15485,1,_binary '\0',_binary '\0','2023-06-27 07:28:24','1','2023-06-27 07:28:24','1'),(1126104157346856960,NULL,'AutoTest_uavHanger','PLANE_MODEL','机库管理自动化',25386,1,_binary '\0',_binary '','2024-11-14 01:11:00','58582660930338816','2024-11-14 01:11:10','58582660930338816'),(1146010901116092416,NULL,'185','XF_COMPANY',NULL,15562,1,_binary '\0',_binary '\0','2023-08-29 01:18:11','1','2023-08-29 01:18:11','1'),(1151927350603022336,NULL,'3','XF_COMPANY','深圳公安',15563,1,_binary '\0',_binary '\0','2023-09-14 09:08:02','1','2023-09-14 09:08:02','1'),(1154453707149017088,NULL,'HUS00000118','HOUSEAREA','江苏省南京市夫子庙',15564,1,_binary '\0',_binary '\0','2023-09-21 08:26:52','89730635001757696','2023-09-21 08:26:52','89730635001757696'),(1154454724133519360,NULL,'HUS00000119','HOUSEAREA','江苏省南京市红山动物园',15565,1,_binary '\0',_binary '\0','2023-09-21 08:30:55','89730635001757696','2023-09-21 08:30:55','89730635001757696'),(1154455042250506240,NULL,'HUS00000120','HOUSEAREA','江苏省南京市欢乐谷',15566,1,_binary '\0',_binary '\0','2023-09-21 08:32:11','89730635001757696','2023-09-21 08:32:11','89730635001757696'),(1154455906411347968,NULL,'HUS00000121','HOUSEAREA','江苏省常州市东方盐湖城',15567,1,_binary '\0',_binary '\0','2023-09-21 08:35:37','89730635001757696','2023-09-21 08:35:37','89730635001757696'),(1154456158853922816,NULL,'HUS00000122','HOUSEAREA','江苏省常州市南山竹海',15568,1,_binary '\0',_binary '\0','2023-09-21 08:36:37','89730635001757696','2023-09-21 08:36:37','89730635001757696'),(1156175790530887680,NULL,'HUS00000118','SCENARIOMAP','江苏省南京市夫子庙-秦淮风光带景区',15569,1,_binary '\0',_binary '\0','2023-09-26 02:29:49','188243415207510016','2023-09-26 02:29:49','188243415207510016'),(1156176746156916736,NULL,'HUS00000119','SCENARIOMAP','江苏省南京市红山森林动物园',15570,1,_binary '\0',_binary '\0','2023-09-26 02:33:37','188243415207510016','2023-09-26 02:33:37','188243415207510016'),(1156176855888297984,NULL,'HUS00000120','SCENARIOMAP','江苏省南京欢乐谷景区',15571,1,_binary '\0',_binary '\0','2023-09-26 02:34:03','188243415207510016','2023-09-26 02:34:03','188243415207510016'),(1156176964944396288,NULL,'HUS00000121','SCENARIOMAP','江苏省常州市东方盐湖城▪道天下景区',15572,1,_binary '\0',_binary '\0','2023-09-26 02:34:29','188243415207510016','2023-09-26 02:34:29','188243415207510016'),(1156177064538144768,NULL,'HUS00000122','SCENARIOMAP','江苏省常州市天目湖景区-南山竹海风景区',15573,1,_binary '\0',_binary '\0','2023-09-26 02:34:53','188243415207510016','2023-09-26 02:34:53','188243415207510016'),(1156236532336558080,NULL,'HUS00000096','SCENARIOMAP','江苏省无锡市惠山古镇景区',15575,1,_binary '\0',_binary '\0','2023-09-26 06:31:11','89730635001757696','2023-09-26 06:31:11','89730635001757696'),(1156888719345582080,NULL,'wrjxh074','PLANE_MODEL','001',15624,1,_binary '\0',_binary '\0','2023-09-28 01:42:45','173818970422378496','2024-09-06 02:36:04','89730635001757696'),(1160172476152414208,NULL,'AutoTest_attention','PLANE_MODEL','告警管理自动化',25388,1,_binary '\0',_binary '','2024-11-14 01:19:23','58582660930338816','2024-11-14 01:19:34','58582660930338816'),(1160226206096818176,NULL,'DATA_JT','DATA_CATEGORY',NULL,15684,1,_binary '\0',_binary '\0','2023-10-07 06:44:43','416525856201375744','2023-10-07 06:44:43','416525856201375744'),(1160226340700422144,NULL,'DATA_HB','DATA_CATEGORY',NULL,15685,1,_binary '\0',_binary '\0','2023-10-07 06:45:16','416525856201375744','2023-10-07 06:45:16','416525856201375744'),(1160226436129226752,NULL,'DATA_AF','DATA_CATEGORY',NULL,15686,1,_binary '\0',_binary '\0','2023-10-07 06:45:38','416525856201375744','2023-10-07 06:45:38','416525856201375744'),(1161235901267836929,NULL,'LOAD_BTS_MODEL','DEV_MODEL',NULL,10983,1,_binary '\0',_binary '\0','2023-10-11 06:10:59','123','2023-12-06 06:28:21','188243415207510016'),(1161235901267836930,NULL,'LOAD_AGR_MODEL','DEV_MODEL',NULL,10976,1,_binary '\0',_binary '\0','2023-10-11 06:11:00','123','2023-10-11 06:11:00','123'),(1161235901267836931,NULL,'bts1','LOAD_BTS_MODEL',NULL,10980,1,_binary '\0',_binary '\0','2023-10-11 06:11:38','123','2023-10-11 06:11:38','123'),(1161235901267836932,NULL,'cmiiYinglong1st','BTS_TYPE',NULL,10982,1,_binary '\0',_binary '\0','2023-10-11 06:12:07','123','2023-10-11 06:12:07','123'),(1161235901267836933,NULL,'4G','RADIO_TYPE',NULL,10981,1,_binary '\0',_binary '\0','2023-10-11 06:12:29','123','2023-10-11 06:12:29','123'),(1162073421182402560,NULL,'2','DETECTION_ORG',NULL,15741,1,_binary '\0',_binary '\0','2023-10-12 09:04:54','1','2023-10-12 09:04:54','1'),(1162073963665293312,NULL,'3','DETECTION_ORG',NULL,15742,1,_binary '\0',_binary '\0','2023-10-12 09:07:03','1','2023-10-12 09:07:03','1'),(1163402050306834432,NULL,'ELE_LABLE','STYLE_LABLE',NULL,15777,1,_binary '\0',_binary '\0','2023-10-16 01:04:24','416525856201375744','2023-10-16 01:04:24','416525856201375744'),(1163402152803041280,NULL,'CAT_LABLE','STYLE_LABLE',NULL,15778,1,_binary '\0',_binary '\0','2023-10-16 01:04:48','416525856201375744','2023-10-16 01:04:48','416525856201375744'),(1179443918379417600,NULL,'pensaqi1','LOAD_AGR_MODEL',NULL,10977,1,_binary '\0',_binary '\0','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1'),(1179708729038209025,NULL,'PL22','PICTURE_LABELS',NULL,20263,1,_binary '\0',_binary '\0','2023-11-30 03:52:33','1','2024-11-05 02:16:13','1'),(1179708729038209026,NULL,'PL21','PICTURE_LABELS',NULL,20262,1,_binary '\0',_binary '\0','2023-11-30 03:52:33','1','2024-11-05 02:16:13','1'),(1179708729038209027,NULL,'PL20','PICTURE_LABELS',NULL,20261,1,_binary '\0',_binary '\0','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1'),(1179708729038209028,NULL,'PL19','PICTURE_LABELS',NULL,20260,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209029,NULL,'PL18','PICTURE_LABELS',NULL,20259,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209030,NULL,'PL16','PICTURE_LABELS',NULL,20258,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209031,NULL,'PL17','PICTURE_LABELS',NULL,20257,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209032,NULL,'PL14','PICTURE_LABELS',NULL,20256,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209033,NULL,'PL15','PICTURE_LABELS',NULL,20255,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1'),(1179708729038209034,NULL,'PL13','PICTURE_LABELS',NULL,20254,1,_binary '\0',_binary '\0','2023-11-30 03:52:34','1','2023-12-18 08:30:17','1'),(1188802878169415680,NULL,'AutoTest_logUav','PLANE_MODEL','日志管理自动化',25389,1,_binary '\0',_binary '','2024-11-14 01:19:51','58582660930338816','2024-11-14 01:20:16','58582660930338816'),(1188802882128838656,NULL,'AutoTest_logCAM','LOAD_CAM_MODEL','日志管理自动化',25390,1,_binary '\0',_binary '','2024-11-14 01:19:51','58582660930338816','2024-11-14 01:20:16','58582660930338816'),(1189955112299134976,NULL,'226','XF_COMPANY',NULL,20622,1,_binary '\0',_binary '\0','2023-12-28 07:36:47','1','2023-12-28 07:36:47','1'),(1204004045262422016,NULL,'video iso','LOAD_CAM_VIDEO_ISO',NULL,21089,1,_binary '\0',_binary '\0','2024-02-05 02:02:14','173818970422378496','2024-02-05 02:02:14','173818970422378496'),(1211625497557991424,NULL,'jkxh015','LOAD_HNG_MODEL',NULL,21090,1,_binary '\0',_binary '\0','2024-02-26 02:47:10','1','2024-02-26 02:47:10','1'),(1211625645906329600,NULL,'sccj030','MNF',NULL,21090,1,_binary '\0',_binary '\0','2024-02-26 02:47:45','1','2024-02-26 02:47:45','1'),(1212772239120793600,NULL,'true','MPROTECT_STAT',NULL,21091,1,_binary '\0',_binary '\0','2024-02-29 06:43:54','173818970422378496','2024-02-29 06:43:54','173818970422378496'),(1212772302861631488,NULL,'false','MPROTECT_STAT',NULL,21092,1,_binary '\0',_binary '\0','2024-02-29 06:44:09','173818970422378496','2024-02-29 06:44:09','173818970422378496'),(1215613136690741248,NULL,'wrjxh075','PLANE_MODEL',NULL,21093,1,_binary '\0',_binary '\0','2024-03-08 02:52:37','1','2024-08-01 01:05:32','1'),(1215615852234145792,NULL,'xh031','LOAD_CAM_MODEL',NULL,21094,1,_binary '\0',_binary '\0','2024-03-08 03:03:24','1','2024-03-08 03:03:24','1'),(1216776585185591296,NULL,'xh035','LOAD_CAM_MODEL',NULL,21095,1,_binary '\0',_binary '\0','2024-03-11 07:55:45','1','2024-03-11 07:55:45','1'),(1220029578848763904,776134564270702592,'1212222','AUTO_TEST',NULL,21132,2,_binary '\0',_binary '','2024-03-20 07:21:59','58582660930338816','2024-03-20 07:23:18','58582660930338816'),(1220030661734170624,NULL,'test1','autoTestPerformance','接口性能测试',21275,1,_binary '\0',_binary '','2024-03-20 07:44:05','58582660930338816','2024-03-20 07:44:07','58582660930338816'),(1220030663776796672,1220030661734170624,'test1.1','autoTestPerformance','接口性能更新',21276,2,_binary '',_binary '','2024-03-20 07:44:05','58582660930338816','2024-03-20 07:44:06','58582660930338816'),(1220047700867678208,NULL,'AutoTestBiaodan','PLANE_MODEL','数据表单性能测试',21430,1,_binary '\0',_binary '','2024-03-20 09:29:56','58582660930338816','2024-03-20 09:30:00','58582660930338816'),(1223581317854134272,NULL,'test-123','PLANE_MODEL',NULL,21560,1,_binary '\0',_binary '\0','2024-03-30 02:35:19','173818970422378496','2024-03-30 02:35:19','173818970422378496'),(1230634523859877888,NULL,'INTERFACE_GROUP_5GA','INTERFACE_GROUP',NULL,21986,1,_binary '\0',_binary '\0','2024-04-18 13:42:15','188243415207510016','2024-04-18 13:42:15','188243415207510016'),(1232712309592293376,NULL,'HUS00000154','HOUSEAREA','江苏省徐州市户部山古居民景区',22129,1,_binary '\0',_binary '\0','2024-04-24 07:18:37','89730635001757696','2024-04-24 07:18:37','89730635001757696'),(1232712472704581632,NULL,'HUS00000153','HOUSEAREA','江苏省南通市狼山景区',22130,1,_binary '\0',_binary '\0','2024-04-24 07:19:16','89730635001757696','2024-04-24 07:19:16','89730635001757696'),(1232987432362704896,NULL,'HUS00000154','SCENARIOMAP','江苏省徐州市户部山古居民景区',22131,1,_binary '\0',_binary '\0','2024-04-25 01:31:52','89730635001757696','2024-04-25 01:31:52','89730635001757696'),(1232987867098120192,NULL,'HUS00000153','SCENARIOMAP','江苏省南通市狼山景区',22132,1,_binary '\0',_binary '\0','2024-04-25 01:33:35','89730635001757696','2024-04-25 01:33:35','89730635001757696'),(1234147063663427584,NULL,'urgency','SOLUTION_TYPE',NULL,22223,1,_binary '\0',_binary '\0','2024-04-28 06:19:49','89730635001757696','2024-04-28 06:19:49','89730635001757696'),(1234147121670651904,NULL,'economy','SOLUTION_TYPE',NULL,22224,1,_binary '\0',_binary '\0','2024-04-28 06:20:03','89730635001757696','2024-04-28 06:20:03','89730635001757696'),(1234159812946690048,NULL,'EMERGENCY','FEEDBACK_TYPE',NULL,22225,1,_binary '\0',_binary '\0','2024-04-28 07:10:29','89730635001757696','2024-04-28 07:10:29','89730635001757696'),(1234159881754247168,NULL,'ECONOMY','FEEDBACK_TYPE',NULL,22226,1,_binary '\0',_binary '\0','2024-04-28 07:10:45','89730635001757696','2024-04-28 07:10:45','89730635001757696'),(1235519048788213760,NULL,'HUS00000155','HOUSEAREA',NULL,22279,1,_binary '\0',_binary '\0','2024-05-02 01:11:36','1','2024-05-02 01:11:36','1'),(1235520397672185856,NULL,'HUS00000155','SCENARIOMAP',NULL,22280,1,_binary '\0',_binary '\0','2024-05-02 01:16:58','1','2024-05-02 01:16:58','1'),(1238486817188085760,NULL,'INDUSTRY','INTERFACE_GROUP',NULL,22407,1,_binary '\0',_binary '\0','2024-05-10 05:44:27','188243415207510016','2024-05-10 05:44:27','188243415207510016'),(1239511686663110656,851404935592542216,'device.gps','INTERFACE_GROUP',NULL,22434,2,_binary '\0',_binary '','2024-05-13 01:36:55','1','2024-05-13 01:37:04','1'),(1242469290876076032,NULL,'xh036','LOAD_CAM_MODEL',NULL,22603,1,_binary '\0',_binary '\0','2024-05-21 05:29:23','1','2024-05-21 05:29:23','1'),(1248230603548000256,NULL,'sccj031','MNF',NULL,22867,1,_binary '\0',_binary '\0','2024-06-06 03:02:47','1','2024-06-06 03:02:47','1'),(1248230957245267968,NULL,'jkxh016','LOAD_HNG_MODEL',NULL,22872,1,_binary '\0',_binary '\0','2024-06-06 03:04:11','1','2024-06-06 03:04:11','1'),(1251203566970863616,785955655818280960,'video-ts','MWS',NULL,22970,2,_binary '\0',_binary '\0','2024-06-14 07:56:17','1','2024-06-14 07:56:17','1'),(1265966585252675584,NULL,'sccj033','MNF',NULL,23823,1,_binary '\0',_binary '\0','2024-07-25 01:39:14','1','2024-07-25 01:39:14','1'),(1265966785606189056,NULL,'wrjxh077','PLANE_MODEL',NULL,23824,1,_binary '\0',_binary '\0','2024-07-25 01:40:02','1','2024-07-25 01:40:02','1'),(1265967288041865216,NULL,'xh038','LOAD_CAM_MODEL',NULL,23826,1,_binary '\0',_binary '\0','2024-07-25 01:42:02','1','2024-07-25 01:42:02','1'),(1265968171249041408,NULL,'wrjxh078','PLANE_MODEL',NULL,23831,1,_binary '\0',_binary '\0','2024-07-25 01:45:33','1','2024-07-25 01:45:33','1'),(1266342460313829376,NULL,'INTERFACE_GROUP_REGULATION','INTERFACE_GROUP',NULL,23890,1,_binary '\0',_binary '\0','2024-07-26 02:32:50','188243415207510016','2024-07-26 02:32:50','188243415207510016'),(1268507981650067456,NULL,'94','DEV_COMPANY','af893e5d53c54096a905405fe3ace-wx;c3a7748dad6f49939deab52b0c1dd7lt',24011,1,_binary '\0',_binary '\0','2024-08-01 01:57:51','515544718477099008','2024-09-09 06:07:36','515544718477099008'),(1270745313396654080,NULL,'440395000000','POLICE_CASE_INFO',NULL,24038,1,_binary '\0',_binary '\0','2024-08-07 06:08:12','1','2024-08-07 06:08:12','1'),(1270745355255808000,NULL,'440396000000','POLICE_CASE_INFO',NULL,24039,1,_binary '\0',_binary '\0','2024-08-07 06:08:22','1','2024-08-07 06:08:22','1'),(1273674501522980864,NULL,'63.7','CAMERA_FOV','禅思Z30',24152,1,_binary '\0',_binary '\0','2024-08-15 08:07:45','89730635001757696','2024-08-15 08:07:56','89730635001757696'),(1273674662269681664,NULL,'40.6','CAMERA_FOV','禅思H20T',24153,1,_binary '\0',_binary '\0','2024-08-15 08:08:23','89730635001757696','2024-08-15 08:08:23','89730635001757696'),(1280919249023401984,NULL,'440396000001','POLICE_CASE_INFO',NULL,24530,1,_binary '\0',_binary '\0','2024-09-04 07:55:47','1','2024-09-04 07:55:47','1'),(1282703851299799040,NULL,'2','DEV_COMPANY','af893e5d53c54096a905405fe3ace-wx;c3a7748dad6f49939deab52b0c1dd7lt',24623,1,_binary '\0',_binary '\0','2024-09-09 06:07:10','515544718477099008','2024-09-09 06:07:10','515544718477099008'),(1294224926294671361,NULL,'FLIGHT_CMD','SEC_TYPE',NULL,11045,1,_binary '\0',_binary '\0','2024-10-11 01:09:45','123','2024-10-11 01:09:45','123'),(1294224926294671362,NULL,'DB_TAMPER','SEC_TYPE',NULL,11043,1,_binary '\0',_binary '\0','2024-10-11 01:09:45','123','2024-10-11 01:09:45','123'),(1294224926294671363,1294224926294671361,'CON_FLIGHT','SEC_TYPE',NULL,24756,2,_binary '\0',_binary '\0','2024-10-11 01:21:15','1','2024-10-11 01:21:15','1'),(1294224926294671364,1294224926294671362,'ELEC_FENCE','SEC_TYPE',NULL,24757,2,_binary '\0',_binary '\0','2024-10-11 01:22:11','1','2024-10-11 01:22:11','1'),(1294224926294671365,NULL,'1','ALARM_STATE',NULL,11048,1,_binary '\0',_binary '\0','2024-10-11 01:10:23','123','2024-10-11 01:10:23','123'),(1294224926294671366,NULL,'0','ALARM_STATE',NULL,11047,1,_binary '\0',_binary '\0','2024-10-11 01:10:24','123','2024-10-11 01:10:24','123'),(1294224926294671367,NULL,'1','CMD_STATE',NULL,11050,1,_binary '\0',_binary '\0','2024-10-11 01:10:53','123','2024-11-05 06:18:08','567350297367937024'),(1294224926294671368,NULL,'0','CMD_STATE',NULL,11049,1,_binary '\0',_binary '\0','2024-10-11 01:10:53','123','2024-10-11 01:10:53','123'),(1294224926294671369,NULL,'-2','HANDLE_STATE',NULL,11055,1,_binary '\0',_binary '\0','2024-10-11 01:11:18','123','2024-10-11 01:11:18','123'),(1294224926294671370,NULL,'-1','HANDLE_STATE',NULL,11054,1,_binary '\0',_binary '\0','2024-10-11 01:11:18','123','2024-10-11 01:11:18','123'),(1294224926294671371,NULL,'2','HANDLE_STATE',NULL,11053,1,_binary '\0',_binary '\0','2024-10-11 01:11:19','123','2024-10-11 01:11:19','123'),(1294224926294671372,NULL,'1','HANDLE_STATE',NULL,11052,1,_binary '\0',_binary '\0','2024-10-11 01:11:19','123','2024-10-11 01:11:19','123'),(1294224926294671373,NULL,'0','HANDLE_STATE',NULL,11051,1,_binary '\0',_binary '\0','2024-10-11 01:11:19','123','2024-10-11 01:11:19','123'),(1294224926294671374,NULL,'elecFence','ALARM_OBJECT','ssss',11056,1,_binary '\0',_binary '\0','2024-10-11 01:11:45','123','2024-11-05 01:21:05','123'),(1296157838992736256,NULL,'wrjxh085','PLANE_MODEL',NULL,24774,1,_binary '\0',_binary '\0','2024-10-16 09:08:30','1','2024-10-16 09:08:30','1'),(1296157973793472512,NULL,'xh045','LOAD_CAM_MODEL',NULL,24775,1,_binary '\0',_binary '\0','2024-10-16 09:09:02','1','2024-10-16 09:09:02','1'),(1303002021560844288,NULL,'007','PLANE_MODEL',NULL,25055,1,_binary '\0',_binary '','2024-11-05 03:04:02','567350297367937024','2024-11-05 03:04:38','567350297367937024'),(1303032237528186880,NULL,'NIHAO','HANDLE_STATE',NULL,24964,1,_binary '\0',_binary '','2024-11-04 08:24:55','567350297367937024','2024-11-04 08:25:22','567350297367937024'),(1303032887091658752,NULL,'12345678901234567890123456789012345678901234567890','HANDLE_STATE','啊U盾会啊说对啊还是对海三打哈UI说等会啊手打UI送达回啊隧道哈UI是对哈隧道哈UI哦的阿萨德还哦山啊U盾会啊说对啊还是对海三打哈UI说等会啊手打UI送达回啊隧道哈UI是对哈隧道哈UI哦的阿萨德还哦山啊U盾会啊说对啊还是对海三打哈UI说等会啊手打\nUI送达回啊隧道哈UI是对哈隧道哈UI哦的阿萨德还哦山啊U盾会啊说对啊\n还是对海三打哈UI说等会啊手打UI送达回啊隧道哈UI是对哈隧道哈UI哦的阿萨德还',24965,1,_binary '\0',_binary '','2024-11-04 08:27:29','567350297367937024','2024-11-04 09:35:08','567350297367937024'),(1303051457833992192,NULL,'123','ALARM_OBJECT',NULL,24966,1,_binary '\0',_binary '','2024-11-04 09:41:17','567350297367937024','2024-11-05 02:48:14','567350297367937024'),(1303310049564688384,NULL,'001','abc',NULL,25050,1,_binary '\0',_binary '','2024-11-05 02:59:56','567350297367937024','2024-11-05 03:00:13','567350297367937024'),(1303310411365351424,NULL,'123','abc',NULL,25049,1,_binary '\0',_binary '','2024-11-05 02:59:22','567350297367937024','2024-11-05 03:00:41','567350297367937024'),(1303310722968584192,NULL,'电子围栏','abc',NULL,25040,1,_binary '\0',_binary '','2024-11-05 02:51:31','567350297367937024','2024-11-05 02:51:34','567350297367937024'),(1303311009393410048,NULL,'123','abd','123',25041,1,_binary '\0',_binary '','2024-11-05 02:52:39','567350297367937024','2024-11-05 02:53:03','567350297367937024'),(1303311064250712064,NULL,'电子围栏','abd',NULL,25042,1,_binary '\0',_binary '','2024-11-05 02:52:52','567350297367937024','2024-11-05 02:52:57','567350297367937024'),(1303311710546821120,NULL,'不着调','abc',NULL,25054,1,_binary '\0',_binary '','2024-11-05 03:01:03','567350297367937024','2024-11-05 03:03:22','567350297367937024'),(1303312954313146368,NULL,'nihao','abc',NULL,25051,1,_binary '\0',_binary '','2024-11-05 03:00:23','567350297367937024','2024-11-05 03:00:26','567350297367937024'),(1303313007144599552,NULL,'你好','abc',NULL,25053,1,_binary '\0',_binary '','2024-11-05 03:00:56','567350297367937024','2024-11-05 03:03:22','567350297367937024'),(1303314494876811264,NULL,'你好','123',NULL,25057,1,_binary '\0',_binary '','2024-11-05 03:06:30','567350297367937024','2024-11-05 03:08:49','567350297367937024'),(1303314592952221696,NULL,'nihao','123',NULL,25056,1,_binary '\0',_binary '','2024-11-05 03:06:53','567350297367937024','2024-11-05 03:08:49','567350297367937024'),(1303315027855409152,NULL,'nihao2','123',NULL,25059,1,_binary '\0',_binary '','2024-11-05 03:09:42','567350297367937024','2024-11-05 03:11:26','567350297367937024'),(1303315485328146432,NULL,'123','123',NULL,25111,1,_binary '\0',_binary '\0','2024-11-05 08:10:04','173818970422378496','2024-11-05 08:10:04','173818970422378496'),(1303315509957099520,NULL,'234','123',NULL,25108,1,_binary '\0',_binary '','2024-11-05 08:03:29','173818970422378496','2024-11-05 08:05:10','173818970422378496'),(1303315870453334016,NULL,'buzhidao','123',NULL,25065,1,_binary '\0',_binary '','2024-11-05 03:12:31','567350297367937024','2024-11-05 08:05:10','173818970422378496'),(1303316818902908928,NULL,'buxiaode','linshichuangjian',NULL,25071,1,_binary '\0',_binary '','2024-11-05 03:17:46','567350297367937024','2024-11-05 03:20:23','567350297367937024'),(1303316850976751616,NULL,'123','linshichuangjian',NULL,25104,1,_binary '\0',_binary '','2024-11-05 08:01:39','173818970422378496','2024-11-05 08:02:11','173818970422378496'),(1303317069781008384,NULL,'nihao','linshichuangjian',NULL,25110,1,_binary '\0',_binary '','2024-11-05 08:09:28','173818970422378496','2024-11-05 08:09:33','173818970422378496'),(1303317895098400768,NULL,'buzhidao','linshichuangjian',NULL,25073,1,_binary '\0',_binary '','2024-11-05 03:20:01','567350297367937024','2024-11-05 03:20:23','567350297367937024'),(1303317965579485184,1303317069781008384,'nihao1','linshichuangjian',NULL,25074,2,_binary '\0',_binary '','2024-11-05 03:20:17','567350297367937024','2024-11-05 03:20:23','567350297367937024'),(1303318698269868032,NULL,'nihao','234',NULL,25078,1,_binary '\0',_binary '','2024-11-05 03:26:37','567350297367937024','2024-11-05 06:20:48','567350297367937024'),(1303362842656768000,1303318698269868032,'123','234',NULL,25079,2,_binary '\0',_binary '','2024-11-05 06:18:37','567350297367937024','2024-11-05 06:20:48','567350297367937024'),(1303362913276264448,1303362842656768000,'321','234',NULL,25081,3,_binary '\0',_binary '','2024-11-05 06:18:54','567350297367937024','2024-11-05 06:20:48','567350297367937024'),(1303362999485988864,1303362842656768000,'221','234',NULL,25080,3,_binary '\0',_binary '','2024-11-05 06:19:14','567350297367937024','2024-11-05 06:20:48','567350297367937024'),(1303363485018619904,NULL,'nihao','PLANE_MODEL',NULL,25082,1,_binary '',_binary '','2024-11-05 06:21:10','567350297367937024','2024-11-05 06:22:47','567350297367937024'),(1303367599500820480,NULL,'linshichuangjian','PLANE_MODEL',NULL,25083,1,_binary '\0',_binary '\0','2024-11-05 06:37:31','567350297367937024','2024-11-05 06:37:31','567350297367937024'),(1303388535889330176,NULL,'DB_TAMPER','123',NULL,25102,1,_binary '\0',_binary '','2024-11-05 08:00:43','173818970422378496','2024-11-05 08:01:11','173818970422378496'),(1303388695704895488,NULL,'dd','123',NULL,25103,1,_binary '\0',_binary '','2024-11-05 08:01:21','173818970422378496','2024-11-05 08:01:24','173818970422378496'),(1303389195133255680,NULL,'234','linshichuangjian',NULL,25107,1,_binary '\0',_binary '\0','2024-11-05 08:03:20','173818970422378496','2024-11-05 08:03:20','173818970422378496'),(1303390059143102464,NULL,'nihao','ALARM_STATE',NULL,25109,1,_binary '\0',_binary '','2024-11-05 08:06:46','173818970422378496','2024-11-05 08:06:49','173818970422378496'),(1306180821450752000,NULL,'sccj036','MNF',NULL,25291,1,_binary '\0',_binary '\0','2024-11-13 00:56:16','1','2024-11-13 00:56:16','1'),(1306180880930177024,NULL,'sccj038','MNF',NULL,25292,1,_binary '\0',_binary '\0','2024-11-13 00:56:30','1','2024-11-13 00:56:30','1'),(1306183382916399104,NULL,'wrjxh088','PLANE_MODEL',NULL,25310,1,_binary '\0',_binary '\0','2024-11-13 01:06:26','1','2024-11-13 01:06:26','1'),(1306183431738097664,NULL,'wrjxh089','PLANE_MODEL',NULL,25311,1,_binary '\0',_binary '\0','2024-11-13 01:06:38','1','2024-11-13 01:06:38','1'),(1306183646499045376,NULL,'xh048','LOAD_CAM_MODEL',NULL,25312,1,_binary '\0',_binary '\0','2024-11-13 01:07:29','1','2024-11-13 01:07:29','1'),(1306183922538774528,NULL,'xh049','LOAD_CAM_MODEL',NULL,25313,1,_binary '\0',_binary '\0','2024-11-13 01:08:35','1','2024-11-13 01:08:35','1'),(1306568125482795008,NULL,'572','DEV_COMPANY','af893e5d53c54096a905405fe3ace-wx;c3a7748dad6f49939deab52b0c1dd7lt',25391,1,_binary '\0',_binary '\0','2024-11-14 02:35:16','515544718477099008','2024-11-14 02:35:42','515544718477099008'); /*!40000 ALTER TABLE `sys_dictionary` ENABLE KEYS */; UNLOCK TABLES; @@ -52,7 +52,7 @@ UNLOCK TABLES; LOCK TABLES `sys_dictionary_attr` WRITE; /*!40000 ALTER TABLE `sys_dictionary_attr` DISABLE KEYS */; -INSERT INTO `sys_dictionary_attr` VALUES (1,'MNF','sccj001','zh_CN','DJI大疆','2020-09-18 02:21:39','admin','2024-09-06 02:37:21','89730635001757696',_binary '\0'),(2,'MNF','sccj002','zh_CN','纵横','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(3,'MNF','sccj003','zh_CN','亿航智能','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(4,'MNF','sccj004','zh_CN','科比特航空','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(5,'MNF','sccj005','zh_CN','中测新图','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(6,'MNF','sccj006','zh_CN','国飞航空','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(7,'MNF','sccj007','zh_CN','北方天途','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(8,'MNF','sccj008','zh_CN','一飞智控','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(9,'MNF','sccj009','zh_CN','腾盾','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(10,'MNF','sccj010','zh_CN','合纵智联','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(11,'MNF','sccj011','zh_CN','卫通','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(12,'MNF','sccj012','zh_CN','时代星光','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(13,'MNF','sccj013','zh_CN','锋飞','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(14,'MNF','sccj014','zh_CN','大工','2020-09-18 02:21:39','admin','2022-09-20 08:29:05','1',_binary '\0'),(15,'MNF','sccj015','zh_CN','极飞','2020-09-18 02:21:39','admin','2022-09-20 08:29:05','1',_binary '\0'),(16,'MNF','sccj016','zh_CN','复亚','2020-09-18 02:21:39','admin','2022-09-20 08:29:05','1',_binary '\0'),(17,'PLANE_MODEL','wrjxh001','zh_CN','精灵4 Adv','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(18,'PLANE_MODEL','wrjxh002','zh_CN','精灵 4 Pro','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(19,'PLANE_MODEL','wrjxh003','zh_CN','御2 Pro','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(20,'PLANE_MODEL','wrjxh004','zh_CN','御2 Zoom','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(21,'PLANE_MODEL','wrjxh005','zh_CN','御 Pro','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(22,'PLANE_MODEL','wrjxh006','zh_CN','M210','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(23,'PLANE_MODEL','wrjxh007','zh_CN','CW-100','2020-09-18 02:21:40','admin','2022-09-20 08:29:35','1',_binary '\0'),(24,'PLANE_MODEL','wrjxh008','zh_CN','CW-007','2020-09-18 02:21:43','admin','2022-09-20 08:29:35','1',_binary '\0'),(25,'PLANE_MODEL','wrjxh009','zh_CN','CW-30','2020-09-18 02:21:44','admin','2022-09-20 08:29:35','1',_binary '\0'),(26,'PLANE_MODEL','wrjxh010','zh_CN','CW-15','2020-09-18 02:21:44','admin','2022-09-20 08:29:35','1',_binary '\0'),(27,'PLANE_MODEL','wrjxh011','zh_CN','CW-20','2020-09-18 02:21:45','admin','2022-09-20 08:29:35','1',_binary '\0'),(28,'PLANE_MODEL','wrjxh012','zh_CN','CW-10','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(29,'PLANE_MODEL','wrjxh013','zh_CN','CW-25','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(30,'PLANE_MODEL','wrjxh014','zh_CN','GD2.0X','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(31,'PLANE_MODEL','wrjxh015','zh_CN','插翅虎M8','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(32,'PLANE_MODEL','wrjxh016','zh_CN','入云龙M6','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(33,'PLANE_MODEL','wrjxh017','zh_CN','小旋风M5','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(34,'PLANE_MODEL','wrjxh018','zh_CN','ZC-3C','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(35,'PLANE_MODEL','wrjxh019','zh_CN','ZC-5','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(36,'PLANE_MODEL','wrjxh020','zh_CN','ZC-10','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(37,'PLANE_MODEL','wrjxh021','zh_CN','ZC-20','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(38,'PLANE_MODEL','wrjxh022','zh_CN','救援无人机','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(39,'PLANE_MODEL','wrjxh023','zh_CN','干粉无人机','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(40,'PLANE_MODEL','wrjxh024','zh_CN','抛投无人机','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(41,'PLANE_MODEL','wrjxh025','zh_CN','M8Apro','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(42,'PLANE_MODEL','wrjxh026','zh_CN','M4H','2020-09-18 02:21:47','admin','2022-09-20 08:29:34','1',_binary '\0'),(43,'PLANE_MODEL','wrjxh027','zh_CN','M8FA','2020-09-18 02:21:47','admin','2022-09-20 08:29:34','1',_binary '\0'),(44,'PLANE_MODEL','wrjxh028','zh_CN','M6E','2020-09-18 02:21:51','admin','2022-09-20 08:29:34','1',_binary '\0'),(45,'PLANE_MODEL','wrjxh029','zh_CN','承鹰80E','2020-09-18 02:21:55','admin','2022-09-20 08:29:34','1',_binary '\0'),(46,'PLANE_MODEL','wrjxh030','zh_CN','览雀','2020-09-18 02:21:58','admin','2022-09-20 08:29:34','1',_binary '\0'),(47,'PLANE_MODEL','wrjxh031','zh_CN','鸾凤','2020-09-18 02:21:59','admin','2022-09-20 08:29:33','1',_binary '\0'),(48,'PLANE_MODEL','wrjxh032','zh_CN','双尾蝎','2020-09-18 02:22:01','admin','2022-09-20 08:29:33','1',_binary '\0'),(49,'PLANE_MODEL','wrjxh033','zh_CN','扑天雕','2020-09-18 02:22:03','admin','2022-09-20 08:29:33','1',_binary '\0'),(50,'PLANE_MODEL','wrjxh034','zh_CN','X120','2020-09-18 02:22:08','admin','2022-09-20 08:29:33','1',_binary '\0'),(51,'PLANE_MODEL','wrjxh035','zh_CN','X150','2020-09-18 02:22:14','admin','2022-09-20 08:29:33','1',_binary '\0'),(52,'PLANE_MODEL','wrjxh036','zh_CN','X80','2020-09-18 02:22:16','admin','2022-09-20 08:29:33','1',_binary '\0'),(53,'PLANE_MODEL','wrjxh037','zh_CN','X100','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(54,'PLANE_MODEL','wrjxh038','zh_CN','大白鲨系列','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(55,'PLANE_MODEL','wrjxh039','zh_CN','DG-M20','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(56,'PLANE_MODEL','wrjxh040','zh_CN','DG-X03','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(57,'PLANE_MODEL','wrjxh041','zh_CN','X410','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(58,'PLANE_MODEL','wrjxh042','zh_CN','X402','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(59,'PLANE_MODEL','wrjxh043','zh_CN','DG-M15','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(60,'PLANE_MODEL','wrjxh044','zh_CN','DG-30','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(61,'PLANE_MODEL','wrjxh045','zh_CN','P30','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(62,'PLANE_MODEL','wrjxh046','zh_CN',' P20','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(63,'PLANE_SHAPE','xt001','zh_CN','旋翼','2020-09-18 02:22:17','admin','2024-09-06 02:38:03','89730635001757696',_binary '\0'),(64,'PLANE_SHAPE','xt002','zh_CN','固定翼','2020-09-18 02:22:17','admin','2022-01-20 01:16:07','123',_binary '\0'),(65,'PLANE_SHAPE','xt003','zh_CN','混合','2020-09-18 02:22:17','admin','2022-01-20 01:16:07','123',_binary '\0'),(66,'PLANE_SIZE','wrjcd001','zh_CN','微型','2020-09-18 02:22:17','admin','2021-09-22 07:20:03','70179580555558912',_binary '\0'),(67,'PLANE_SIZE','wrjcd002','zh_CN','轻型','2020-09-18 02:22:17','admin','2021-09-22 07:19:48','70179580555558912',_binary '\0'),(68,'PLANE_SIZE','wrjcd003','zh_CN','小型','2020-09-18 02:22:17','admin','2021-09-22 07:19:29','70179580555558912',_binary '\0'),(69,'PLANE_SIZE','wrjcd004','zh_CN','大型','2020-09-18 02:22:17','admin','2021-09-22 07:19:19','70179580555558912',_binary '\0'),(70,'PLANE_MAT','cl001','zh_CN','碳纤维','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(71,'PLANE_MAT','cl002','zh_CN','复合材料','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(72,'PLANE_MAT','cl003','zh_CN','凯夫拉','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(73,'PLANE_MAT','cl004','zh_CN','碳钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(74,'PLANE_MAT','cl005','zh_CN','航空铝','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(75,'PLANE_MAT','cl006','zh_CN','铝合金','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(76,'PLANE_MAT','cl007','zh_CN','不锈钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(77,'PLANE_MAT','cl008','zh_CN','普通钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(78,'PLANE_MAT','cl009','zh_CN','钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(79,'PLANE_MAT','cl010','zh_CN','铝','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(80,'PLANE_INF','wbjk001','zh_CN','USB','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(81,'PLANE_INF','wbjk002','zh_CN','HDMI','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(82,'PLANE_INF','wbjk003','zh_CN','串口','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(83,'PLANE_INF','wbjk004','zh_CN','电源','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(84,'PLANE_INF','wbjk005','zh_CN','光纤','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(85,'PLANE_INF','wbjk006','zh_CN','DC供电','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(86,'LOAD_CAM_MODEL','xh001','zh_CN','禅思 ZENMUSE Z30','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(87,'LOAD_CAM_MODEL','xh002','zh_CN','禅思 ZENMUSE XT','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(88,'LOAD_CAM_EXP_MODE','bg001','zh_CN','自动曝光','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(89,'LOAD_CAM_EXP_MODE','bg002','zh_CN','手动曝光','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(90,'LOAD_CAM_EXP_MODE','bg003','zh_CN','快门优先','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(91,'LOAD_CAM_EXP_MODE','bg004','zh_CN','光圈优先','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(92,'LOAD_CAM_WORK_MODE','gz001','zh_CN','拍照模式','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(93,'LOAD_CAM_WORK_MODE','gz002','zh_CN','录像模式','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(94,'LOAD_CAM_WORK_MODE','gz003','zh_CN','回放模式','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(95,'LOAD_CAM_BALANCE','bp001','zh_CN','自动','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(96,'LOAD_CAM_BALANCE','bp002','zh_CN','晴天','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(97,'LOAD_CAM_BALANCE','bp003','zh_CN','阴天','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(98,'LOAD_CAM_BALANCE','bp004','zh_CN','白炽灯','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(99,'LOAD_CAM_BALANCE','bp005','zh_CN','手动','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(100,'LOAD_CAM_IMG_FMT','cc001','zh_CN','JPEG','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(101,'LOAD_CAM_IMG_FMT','cc002','zh_CN','R-JPEG','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(102,'LOAD_CAM_IMG_FMT','cc003','zh_CN','TIFF','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(103,'LOAD_CAM_IMG_SIZE','tx001','zh_CN','640×512','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(104,'LOAD_CAM_IMG_SIZE','tx002','zh_CN','336×256','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(105,'LOAD_CAM_CAM_MODE','pz001','zh_CN','单拍','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(106,'LOAD_CAM_CAM_MODE','pz002','zh_CN','连拍','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(107,'LOAD_CAM_CAM_MODE','pz003','zh_CN','定时拍','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(108,'LOAD_CAM_SHUT_SPEED','km001','zh_CN','1/30','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(109,'LOAD_CAM_SHUT_SPEED','km002','zh_CN','1/60','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(110,'LOAD_CAM_SHUT_SPEED','km003','zh_CN','1/125','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(111,'LOAD_CAM_SHUT_SPEED','km004','zh_CN','1/250','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(112,'LOAD_CAM_SHUT_SPEED','km005','zh_CN','1/500','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(113,'LOAD_CAM_SHUT_SPEED','km006','zh_CN','1/1000','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(114,'LOAD_CAM_SHUT_SPEED','km007','zh_CN','1/4000','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(115,'LOAD_CAM_SHUT_SPEED','km008','zh_CN','1/6000','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(116,'LOAD_CAM_VIDEO_FMT','sp001','zh_CN','MOV','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(117,'LOAD_CAM_VIDEO_FMT','sp002','zh_CN','MP4','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(118,'LOAD_CAM_VIDEO_DIS','fb001','zh_CN','720 x 480','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(119,'LOAD_SPK_MODEL','hhqxh001','zh_CN','悟1','2020-09-18 02:22:17','admin','2020-12-15 07:08:01','1',_binary '\0'),(120,'LOAD_SPK_MODEL','hhqxh002','zh_CN','M600 PRO','2020-09-18 02:22:17','admin','2020-12-15 07:08:18','1',_binary '\0'),(121,'LOAD_HNG_MODEL','jkxh001','zh_CN','A30','2020-09-18 02:22:17','admin','2020-12-15 07:06:37','1',_binary '\0'),(122,'LOAD_HNG_MODEL','jkxh002','zh_CN','G10','2020-09-18 02:22:17','admin','2020-12-15 07:06:51','1',_binary '\0'),(123,'LOAD_HNG_MODEL','jkxh003','zh_CN','V10','2020-09-18 02:22:17','admin','2020-12-15 07:07:18','1',_binary '\0'),(124,'HNG_TYPE','jklx001','zh_CN','固定式旋翼自动机场','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(125,'HNG_TYPE','jklx002','zh_CN','复合翼自动机场','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(126,'HNG_TYPE','jklx003','zh_CN','移动式自动机场','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(127,'PROT_LEVEL','dj001','zh_CN','IP54','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(128,'DEV_MODEL','PLANE_MODEL','zh_CN','无人机','2020-09-18 02:22:17','admin','2023-10-11 06:11:00','123',_binary '\0'),(129,'DEV_MODEL','LOAD_CAM_MODEL','zh_CN','摄像头','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(130,'DEV_MODEL','LOAD_SPK_MODEL','zh_CN','喊话器','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(131,'DEV_MODEL','LOAD_HNG_MODEL','zh_CN','机库','2020-09-18 02:22:18','admin','2023-10-11 06:10:59','123',_binary '\0'),(132,'MNF','sccj001','en_US','DJI Da Jiang','2020-09-18 02:22:18','admin','2024-09-06 02:37:21','89730635001757696',_binary '\0'),(133,'MNF','sccj002','en_US','Zong Heng','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(134,'MNF','sccj003','en_US','Yi Hang Zhi Neng','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(135,'MNF','sccj004','en_US','Ke Bi Te Hang Kong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(136,'MNF','sccj005','en_US','Zhong Ce Xin Tu','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(137,'MNF','sccj006','en_US','Guo Fei Hang Kong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(138,'MNF','sccj007','en_US','Bei Fang Tian Tu','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(139,'MNF','sccj008','en_US','Yi Fei Zhi Kong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(140,'MNF','sccj009','en_US','Teng Dun','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(141,'MNF','sccj010','en_US','He Zong Zhi Lian','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(142,'MNF','sccj011','en_US','Wei Tong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(143,'MNF','sccj012','en_US','Shi Dai Xing Guang','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(144,'MNF','sccj013','en_US','Feng Fei','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(145,'MNF','sccj014','en_US','Da Gong','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(146,'MNF','sccj015','en_US','Ji Fei','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(147,'MNF','sccj016','en_US','Fu Ya','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(148,'PLANE_MODEL','wrjxh001','en_US','Jing Ling 4 Adv','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(149,'PLANE_MODEL','wrjxh002','en_US','Jing Ling 4 Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(150,'PLANE_MODEL','wrjxh003','en_US','Yu2 Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(151,'PLANE_MODEL','wrjxh004','en_US','Yu2 Zoom','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(152,'PLANE_MODEL','wrjxh005','en_US','Yu Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(153,'PLANE_MODEL','wrjxh006','en_US','M210','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(154,'PLANE_MODEL','wrjxh007','en_US','CW-100','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(155,'PLANE_MODEL','wrjxh008','en_US','CW-007','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(156,'PLANE_MODEL','wrjxh009','en_US','CW-30','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(157,'PLANE_MODEL','wrjxh010','en_US','CW-15','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(158,'PLANE_MODEL','wrjxh011','en_US','CW-20','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(159,'PLANE_MODEL','wrjxh012','en_US','CW-10','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(160,'PLANE_MODEL','wrjxh013','en_US','CW-25','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(161,'PLANE_MODEL','wrjxh014','en_US','GD2.0X','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(162,'PLANE_MODEL','wrjxh015','en_US','Cha Chi Hu M8','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(163,'PLANE_MODEL','wrjxh016','en_US','Ru Yun Long M6','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(164,'PLANE_MODEL','wrjxh017','en_US','Xiao Xuan Feng M5','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(165,'PLANE_MODEL','wrjxh018','en_US','ZC-3C','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(166,'PLANE_MODEL','wrjxh019','en_US','ZC-5','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(167,'PLANE_MODEL','wrjxh020','en_US','ZC-10','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(168,'PLANE_MODEL','wrjxh021','en_US','ZC-20','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(169,'PLANE_MODEL','wrjxh022','en_US','Rescue Drone','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(170,'PLANE_MODEL','wrjxh023','en_US','Dry Powder Drone','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(171,'PLANE_MODEL','wrjxh024','en_US','Throwing Drone','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(172,'PLANE_MODEL','wrjxh025','en_US','M8Apro','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(173,'PLANE_MODEL','wrjxh026','en_US','M4H','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(174,'PLANE_MODEL','wrjxh027','en_US','M8FA','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(175,'PLANE_MODEL','wrjxh028','en_US','M6E','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(176,'PLANE_MODEL','wrjxh029','en_US','Cheng Ying 80E','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(177,'PLANE_MODEL','wrjxh030','en_US','Lan Yue','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(178,'PLANE_MODEL','wrjxh031','en_US','Luan Feng','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(179,'PLANE_MODEL','wrjxh032','en_US','Shuang Wei Xie','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(180,'PLANE_MODEL','wrjxh033','en_US','Pu Tian Diao','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(181,'PLANE_MODEL','wrjxh034','en_US','X120','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(182,'PLANE_MODEL','wrjxh035','en_US','X150','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(183,'PLANE_MODEL','wrjxh036','en_US','X80','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(184,'PLANE_MODEL','wrjxh037','en_US','X100','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(185,'PLANE_MODEL','wrjxh038','en_US','Great White Shark Series','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(186,'PLANE_MODEL','wrjxh039','en_US','DG-M20','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(187,'PLANE_MODEL','wrjxh040','en_US','DG-X03','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(188,'PLANE_MODEL','wrjxh041','en_US','X410','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(189,'PLANE_MODEL','wrjxh042','en_US','X402','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(190,'PLANE_MODEL','wrjxh043','en_US','DG-M15','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(191,'PLANE_MODEL','wrjxh044','en_US','DG-30','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(192,'PLANE_MODEL','wrjxh045','en_US','P30','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(193,'PLANE_MODEL','wrjxh046','en_US',' P20','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(194,'PLANE_SHAPE','xt001','en_US','Rotor','2020-09-18 02:22:18','admin','2024-09-06 02:38:03','89730635001757696',_binary '\0'),(195,'PLANE_SHAPE','xt002','en_US','Fixed-wing','2020-09-18 02:22:18','admin','2022-01-20 01:16:07','123',_binary '\0'),(196,'PLANE_SHAPE','xt003','en_US','Mixing','2020-09-18 02:22:18','admin','2022-01-20 01:16:07','123',_binary '\0'),(197,'PLANE_SIZE','wrjcd001','en_US','miniature','2020-09-18 02:22:18','admin','2021-09-22 07:20:03','70179580555558912',_binary '\0'),(198,'PLANE_SIZE','wrjcd002','en_US','light','2020-09-18 02:22:18','admin','2021-09-22 07:19:48','70179580555558912',_binary '\0'),(199,'PLANE_SIZE','wrjcd003','en_US','small','2020-09-18 02:22:18','admin','2021-09-22 07:19:29','70179580555558912',_binary '\0'),(200,'PLANE_SIZE','wrjcd004','en_US','big','2020-09-18 02:22:18','admin','2021-09-22 07:19:19','70179580555558912',_binary '\0'),(201,'PLANE_MAT','cl001','en_US','碳纤维','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(202,'PLANE_MAT','cl002','en_US','复合材料','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(203,'PLANE_MAT','cl003','en_US','凯夫拉','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(204,'PLANE_MAT','cl004','en_US','碳钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(205,'PLANE_MAT','cl005','en_US','航空铝','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(206,'PLANE_MAT','cl006','en_US','铝合金','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(207,'PLANE_MAT','cl007','en_US','不锈钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(208,'PLANE_MAT','cl008','en_US','普通钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(209,'PLANE_MAT','cl009','en_US','钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(210,'PLANE_MAT','cl010','en_US','铝','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(211,'PLANE_INF','wbjk001','en_US','USB','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(212,'PLANE_INF','wbjk002','en_US','HDMI','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(213,'PLANE_INF','wbjk003','en_US','串口','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(214,'PLANE_INF','wbjk004','en_US','电源','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(215,'PLANE_INF','wbjk005','en_US','光纤','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(216,'PLANE_INF','wbjk006','en_US','DC供电','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(217,'LOAD_CAM_MODEL','xh001','en_US','ZENMUSE Z30','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(218,'LOAD_CAM_MODEL','xh002','en_US','ZENMUSE XT','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(219,'LOAD_CAM_EXP_MODE','bg001','en_US','Programmed auto','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(220,'LOAD_CAM_EXP_MODE','bg002','en_US','Manual exposure','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(221,'LOAD_CAM_EXP_MODE','bg003','en_US','Shutter Priority Auto','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(222,'LOAD_CAM_EXP_MODE','bg004','en_US','Aperture Priority Auto','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(223,'LOAD_CAM_WORK_MODE','gz001','en_US','Photo mode','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(224,'LOAD_CAM_WORK_MODE','gz002','en_US','Video recording mode','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(225,'LOAD_CAM_WORK_MODE','gz003','en_US','Playback mode','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(226,'LOAD_CAM_BALANCE','bp001','en_US','AWB','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(227,'LOAD_CAM_BALANCE','bp002','en_US','Sunny','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(228,'LOAD_CAM_BALANCE','bp003','en_US','Overcast','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(229,'LOAD_CAM_BALANCE','bp004','en_US','Incandescent lamp','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(230,'LOAD_CAM_BALANCE','bp005','en_US','Manual','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(231,'LOAD_CAM_IMG_FMT','cc001','en_US','JPEG','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(232,'LOAD_CAM_IMG_FMT','cc002','en_US','R-JPEG','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(233,'LOAD_CAM_IMG_FMT','cc003','en_US','TIFF','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(234,'LOAD_CAM_IMG_SIZE','tx001','en_US','640×512','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(235,'LOAD_CAM_IMG_SIZE','tx002','en_US','336×256','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(236,'LOAD_CAM_CAM_MODE','pz001','en_US','Single shot','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(237,'LOAD_CAM_CAM_MODE','pz002','en_US','Burst','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(238,'LOAD_CAM_CAM_MODE','pz003','en_US','Time lapse','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(239,'LOAD_CAM_SHUT_SPEED','km001','en_US','1/30','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(240,'LOAD_CAM_SHUT_SPEED','km002','en_US','1/60','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(241,'LOAD_CAM_SHUT_SPEED','km003','en_US','1/125','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(242,'LOAD_CAM_SHUT_SPEED','km004','en_US','1/250','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(243,'LOAD_CAM_SHUT_SPEED','km005','en_US','1/500','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(244,'LOAD_CAM_SHUT_SPEED','km006','en_US','1/1000','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(245,'LOAD_CAM_SHUT_SPEED','km007','en_US','1/4000','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(246,'LOAD_CAM_SHUT_SPEED','km008','en_US','1/6000','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(247,'LOAD_CAM_VIDEO_FMT','sp001','en_US','MOV','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(248,'LOAD_CAM_VIDEO_FMT','sp002','en_US','MP4','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(249,'LOAD_CAM_VIDEO_DIS','fb001','en_US','720 x 480','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(250,'LOAD_SPK_MODEL','hhqxh001','en_US','悟1','2020-09-18 02:22:18','admin','2020-12-15 07:08:01','1',_binary '\0'),(251,'LOAD_SPK_MODEL','hhqxh002','en_US','M600 PRO','2020-09-18 02:22:18','admin','2020-12-15 07:08:18','1',_binary '\0'),(252,'LOAD_HNG_MODEL','jkxh001','en_US','A30','2020-09-18 02:22:18','admin','2020-12-15 07:06:37','1',_binary '\0'),(253,'LOAD_HNG_MODEL','jkxh002','en_US','G10','2020-09-18 02:22:18','admin','2020-12-15 07:06:51','1',_binary '\0'),(254,'LOAD_HNG_MODEL','jkxh003','en_US','V10','2020-09-18 02:22:18','admin','2020-12-15 07:07:18','1',_binary '\0'),(255,'HNG_TYPE','jklx001','en_US','固定式旋翼自动机场','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(256,'HNG_TYPE','jklx002','en_US','复合翼自动机场','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(257,'HNG_TYPE','jklx003','en_US','移动式自动机场','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(258,'PROT_LEVEL','dj001','en_US','IP54','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(259,'DEV_MODEL','PLANE_MODEL','en_US','Uav','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(260,'DEV_MODEL','LOAD_CAM_MODEL','en_US','Camera','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(261,'DEV_MODEL','LOAD_SPK_MODEL','en_US','Megaphone','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(262,'DEV_MODEL','LOAD_HNG_MODEL','en_US','Uav box','2020-09-18 02:22:18','admin','2023-10-11 06:10:59','123',_binary '\0'),(263,'MNF','sccj001','zh_TW','DJI大疆','2020-09-18 02:22:18','admin','2024-09-06 02:37:21','89730635001757696',_binary '\0'),(264,'MNF','sccj002','zh_TW','縱橫','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(265,'MNF','sccj003','zh_TW','億航智能','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(266,'MNF','sccj004','zh_TW','科比特航空','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(267,'MNF','sccj005','zh_TW','中測新圖','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(268,'MNF','sccj006','zh_TW','國飛航空','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(269,'MNF','sccj007','zh_TW','北方天途','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(270,'MNF','sccj008','zh_TW','一飛智控','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(271,'MNF','sccj009','zh_TW','騰盾','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(272,'MNF','sccj010','zh_TW','合縱智聯','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(273,'MNF','sccj011','zh_TW','衛通','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(274,'MNF','sccj012','zh_TW','時代星光','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(275,'MNF','sccj013','zh_TW','鋒飛','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(276,'MNF','sccj014','zh_TW','大工','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(277,'MNF','sccj015','zh_TW','極飛','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(278,'MNF','sccj016','zh_TW','復亞','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(279,'PLANE_MODEL','wrjxh001','zh_TW','精靈4 Adv','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(280,'PLANE_MODEL','wrjxh002','zh_TW','精靈 4 Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(281,'PLANE_MODEL','wrjxh003','zh_TW','禦2 Pro','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(282,'PLANE_MODEL','wrjxh004','zh_TW','禦2 Zoom','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(283,'PLANE_MODEL','wrjxh005','zh_TW','禦 Pro','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(284,'PLANE_MODEL','wrjxh006','zh_TW','M210','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(285,'PLANE_MODEL','wrjxh007','zh_TW','CW-100','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(286,'PLANE_MODEL','wrjxh008','zh_TW','CW-007','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(287,'PLANE_MODEL','wrjxh009','zh_TW','CW-30','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(288,'PLANE_MODEL','wrjxh010','zh_TW','CW-15','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(289,'PLANE_MODEL','wrjxh011','zh_TW','CW-20','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(290,'PLANE_MODEL','wrjxh012','zh_TW','CW-10','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(291,'PLANE_MODEL','wrjxh013','zh_TW','CW-25','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(292,'PLANE_MODEL','wrjxh014','zh_TW','GD2.0X','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(293,'PLANE_MODEL','wrjxh015','zh_TW','插翅虎M8','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(294,'PLANE_MODEL','wrjxh016','zh_TW','入雲龍M6','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(295,'PLANE_MODEL','wrjxh017','zh_TW','小旋風M5','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(296,'PLANE_MODEL','wrjxh018','zh_TW','ZC-3C','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(297,'PLANE_MODEL','wrjxh019','zh_TW','ZC-5','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(298,'PLANE_MODEL','wrjxh020','zh_TW','ZC-10','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(299,'PLANE_MODEL','wrjxh021','zh_TW','ZC-20','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(300,'PLANE_MODEL','wrjxh022','zh_TW','救援無人機','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(301,'PLANE_MODEL','wrjxh023','zh_TW','乾粉無人機','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(302,'PLANE_MODEL','wrjxh024','zh_TW','拋投無人機','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(303,'PLANE_MODEL','wrjxh025','zh_TW','M8Apro','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(304,'PLANE_MODEL','wrjxh026','zh_TW','M4H','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(305,'PLANE_MODEL','wrjxh027','zh_TW','M8FA','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(306,'PLANE_MODEL','wrjxh028','zh_TW','M6E','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(307,'PLANE_MODEL','wrjxh029','zh_TW','承鷹80E','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(308,'PLANE_MODEL','wrjxh030','zh_TW','覽雀','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(309,'PLANE_MODEL','wrjxh031','zh_TW','鸞鳳','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(310,'PLANE_MODEL','wrjxh032','zh_TW','雙尾蠍','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(311,'PLANE_MODEL','wrjxh033','zh_TW','撲天雕','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(312,'PLANE_MODEL','wrjxh034','zh_TW','X120','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(313,'PLANE_MODEL','wrjxh035','zh_TW','X150','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(314,'PLANE_MODEL','wrjxh036','zh_TW','X80','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(315,'PLANE_MODEL','wrjxh037','zh_TW','X100','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(316,'PLANE_MODEL','wrjxh038','zh_TW','大白鯊系列','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(317,'PLANE_MODEL','wrjxh039','zh_TW','DG-M20','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(318,'PLANE_MODEL','wrjxh040','zh_TW','DG-X03','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(319,'PLANE_MODEL','wrjxh041','zh_TW','X410','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(320,'PLANE_MODEL','wrjxh042','zh_TW','X402','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(321,'PLANE_MODEL','wrjxh043','zh_TW','DG-M15','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(322,'PLANE_MODEL','wrjxh044','zh_TW','DG-30','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(323,'PLANE_MODEL','wrjxh045','zh_TW','P30','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(324,'PLANE_MODEL','wrjxh046','zh_TW',' P20','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(325,'PLANE_SHAPE','xt001','zh_TW','旋翼','2020-09-18 02:22:19','admin','2024-09-06 02:38:03','89730635001757696',_binary '\0'),(326,'PLANE_SHAPE','xt002','zh_TW','固定翼','2020-09-18 02:22:19','admin','2022-01-20 01:16:07','123',_binary '\0'),(327,'PLANE_SHAPE','xt003','zh_TW','混合','2020-09-18 02:22:19','admin','2022-01-20 01:16:07','123',_binary '\0'),(328,'PLANE_SIZE','wrjcd001','zh_TW','微型','2020-09-18 02:22:19','admin','2021-09-22 07:20:03','70179580555558912',_binary '\0'),(329,'PLANE_SIZE','wrjcd002','zh_TW','輕型','2020-09-18 02:22:19','admin','2021-09-22 07:19:48','70179580555558912',_binary '\0'),(330,'PLANE_SIZE','wrjcd003','zh_TW','小型','2020-09-18 02:22:19','admin','2021-09-22 07:19:29','70179580555558912',_binary '\0'),(331,'PLANE_SIZE','wrjcd004','zh_TW','大型','2020-09-18 02:22:19','admin','2021-09-22 07:19:19','70179580555558912',_binary '\0'),(332,'PLANE_MAT','cl001','zh_TW','碳纤维','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(333,'PLANE_MAT','cl002','zh_TW','复合材料','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(334,'PLANE_MAT','cl003','zh_TW','凯夫拉','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(335,'PLANE_MAT','cl004','zh_TW','碳钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(336,'PLANE_MAT','cl005','zh_TW','航空铝','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(337,'PLANE_MAT','cl006','zh_TW','铝合金','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(338,'PLANE_MAT','cl007','zh_TW','不锈钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(339,'PLANE_MAT','cl008','zh_TW','普通钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(340,'PLANE_MAT','cl009','zh_TW','钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(341,'PLANE_MAT','cl010','zh_TW','铝','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(342,'PLANE_INF','wbjk001','zh_TW','USB','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(343,'PLANE_INF','wbjk002','zh_TW','HDMI','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(344,'PLANE_INF','wbjk003','zh_TW','串口','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(345,'PLANE_INF','wbjk004','zh_TW','电源','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(346,'PLANE_INF','wbjk005','zh_TW','光纤','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(347,'PLANE_INF','wbjk006','zh_TW','DC供电','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(348,'LOAD_CAM_MODEL','xh001','zh_TW','禅思 ZENMUSE Z30','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(349,'LOAD_CAM_MODEL','xh002','zh_TW','禅思 ZENMUSE XT','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(350,'LOAD_CAM_EXP_MODE','bg001','zh_TW','自動曝光','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(351,'LOAD_CAM_EXP_MODE','bg002','zh_TW','手動曝光','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(352,'LOAD_CAM_EXP_MODE','bg003','zh_TW','快門優先','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(353,'LOAD_CAM_EXP_MODE','bg004','zh_TW','光圈優先','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(354,'LOAD_CAM_WORK_MODE','gz001','zh_TW','拍照模式','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(355,'LOAD_CAM_WORK_MODE','gz002','zh_TW','錄像模式','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(356,'LOAD_CAM_WORK_MODE','gz003','zh_TW','回放模式','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(357,'LOAD_CAM_BALANCE','bp001','zh_TW','自動','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(358,'LOAD_CAM_BALANCE','bp002','zh_TW','晴天','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(359,'LOAD_CAM_BALANCE','bp003','zh_TW','陰天','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(360,'LOAD_CAM_BALANCE','bp004','zh_TW','白熾燈','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(361,'LOAD_CAM_BALANCE','bp005','zh_TW','手動','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(362,'LOAD_CAM_IMG_FMT','cc001','zh_TW','JPEG','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(363,'LOAD_CAM_IMG_FMT','cc002','zh_TW','R-JPEG','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(364,'LOAD_CAM_IMG_FMT','cc003','zh_TW','TIFF','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(365,'LOAD_CAM_IMG_SIZE','tx001','zh_TW','640×512','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(366,'LOAD_CAM_IMG_SIZE','tx002','zh_TW','336×256','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(367,'LOAD_CAM_CAM_MODE','pz001','zh_TW','單拍','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(368,'LOAD_CAM_CAM_MODE','pz002','zh_TW','連拍','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(369,'LOAD_CAM_CAM_MODE','pz003','zh_TW','定時拍','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(370,'LOAD_CAM_SHUT_SPEED','km001','zh_TW','1/30','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(371,'LOAD_CAM_SHUT_SPEED','km002','zh_TW','1/60','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(372,'LOAD_CAM_SHUT_SPEED','km003','zh_TW','1/125','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(373,'LOAD_CAM_SHUT_SPEED','km004','zh_TW','1/250','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(374,'LOAD_CAM_SHUT_SPEED','km005','zh_TW','1/500','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(375,'LOAD_CAM_SHUT_SPEED','km006','zh_TW','1/1000','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(376,'LOAD_CAM_SHUT_SPEED','km007','zh_TW','1/4000','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(377,'LOAD_CAM_SHUT_SPEED','km008','zh_TW','1/6000','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(378,'LOAD_CAM_VIDEO_FMT','sp001','zh_TW','MOV','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(379,'LOAD_CAM_VIDEO_FMT','sp002','zh_TW','MP4','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(380,'LOAD_CAM_VIDEO_DIS','fb001','zh_TW','720 x 480','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(381,'LOAD_SPK_MODEL','hhqxh001','zh_TW','悟1','2020-09-18 02:22:19','admin','2020-12-15 07:08:01','1',_binary '\0'),(382,'LOAD_SPK_MODEL','hhqxh002','zh_TW','M600 PRO','2020-09-18 02:22:19','admin','2020-12-15 07:08:18','1',_binary '\0'),(383,'LOAD_HNG_MODEL','jkxh001','zh_TW','A30','2020-09-18 02:22:19','admin','2020-12-15 07:06:37','1',_binary '\0'),(384,'LOAD_HNG_MODEL','jkxh002','zh_TW','G10','2020-09-18 02:22:19','admin','2020-12-15 07:06:51','1',_binary '\0'),(385,'LOAD_HNG_MODEL','jkxh003','zh_TW','V10','2020-09-18 02:22:19','admin','2020-12-15 07:07:18','1',_binary '\0'),(386,'HNG_TYPE','jklx001','zh_TW','固定式旋翼自动机场','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(387,'HNG_TYPE','jklx002','zh_TW','复合翼自动机场','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(388,'HNG_TYPE','jklx003','zh_TW','移动式自动机场','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(389,'PROT_LEVEL','dj001','zh_TW','IP54','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(390,'DEV_MODEL','PLANE_MODEL','zh_TW','無人機','2020-09-18 02:22:19','admin','2023-10-11 06:11:00','123',_binary '\0'),(391,'DEV_MODEL','LOAD_CAM_MODEL','zh_TW','攝像頭','2020-09-18 02:22:19','admin','2023-10-11 06:11:00','123',_binary '\0'),(392,'DEV_MODEL','LOAD_SPK_MODEL','zh_TW','喊話器','2020-09-18 02:22:19','admin','2023-10-11 06:11:00','123',_binary '\0'),(393,'DEV_MODEL','LOAD_HNG_MODEL','zh_TW','機庫','2020-09-18 02:22:19','admin','2023-10-11 06:10:59','123',_binary '\0'),(394,'USE_STAT','CAN_USE','zh_CN','可用','2020-09-18 02:22:33','system','2023-06-27 07:36:21','188243415207510016',_binary '\0'),(395,'USE_STAT','FORBIDDEN','zh_CN','禁用','2020-09-18 02:22:33','system','2021-09-22 07:31:49','70179580555558912',_binary '\0'),(396,'USE_STAT','MAINTAIN','zh_CN','保养','2020-09-18 02:22:33','system','2021-09-22 07:31:29','70179580555558912',_binary '\0'),(397,'USE_STAT','ABANDONMENT','zh_CN','报废','2020-09-18 02:22:33','system','2023-07-07 07:50:53','188243415207510016',_binary '\0'),(398,'ONLINE_STAT','ONLINE','zh_CN','在线','2020-09-18 02:22:34','system','2021-10-25 07:48:32','1',_binary '\0'),(399,'ONLINE_STAT','OFFLINE','zh_CN','离线','2020-09-18 02:22:34','system','2021-10-25 07:48:23','1',_binary '\0'),(400,'LEN','MUTIL_SELECT_COUNT','zh_CN','20','2020-09-18 02:22:35','system','2021-10-25 07:50:43','1',_binary '\0'),(401,'VIDEO_LINE','0','zh_CN','自定义','2020-09-18 02:22:35','system','2020-11-13 09:41:03','1',_binary '\0'),(402,'VIDEO_LINE','1','zh_CN','线路1','2020-09-18 02:22:35','system','2021-09-22 07:08:25','70179580555558912',_binary '\0'),(403,'VIDEO_LINE','2','zh_CN','线路2','2020-09-18 02:22:35','system','2021-09-22 07:08:14','70179580555558912',_binary '\0'),(404,'DEV_ACTION_MODEL','action001','zh_CN','拍照','2020-09-18 02:58:13','1','2020-11-16 07:29:10',NULL,_binary ''),(405,'DEV_ACTION_MODEL','action001','zh_TW','拍照','2020-09-18 02:58:13','1','2020-11-16 07:29:10',NULL,_binary ''),(406,'DEV_ACTION_MODEL','action001','en_US','photograph','2020-09-18 02:58:13','1','2020-11-16 07:29:10',NULL,_binary ''),(407,'DEV_ACTION_MODEL','action002','zh_CN','开始录像','2020-09-18 02:58:43','1','2020-11-16 07:29:08',NULL,_binary ''),(408,'DEV_ACTION_MODEL','action002','zh_TW','开始录像','2020-09-18 02:58:43','1','2020-11-16 07:29:08',NULL,_binary ''),(409,'DEV_ACTION_MODEL','action002','en_US','start record','2020-09-18 02:58:43','1','2020-11-16 07:29:08',NULL,_binary ''),(410,'DEV_ACTION_MODEL','action003','zh_CN','停止录像','2020-09-18 02:59:01','1','2020-11-16 07:29:06',NULL,_binary ''),(411,'DEV_ACTION_MODEL','action003','zh_TW','停止录像','2020-09-18 02:59:01','1','2020-11-16 07:29:06',NULL,_binary ''),(412,'DEV_ACTION_MODEL','action003','en_US','stop record','2020-09-18 02:59:01','1','2020-11-16 07:29:06',NULL,_binary ''),(413,'DEV_ACTION_MODEL','actio004','zh_CN','云台转向','2020-09-18 02:59:25','1','2020-11-16 07:29:04',NULL,_binary ''),(414,'DEV_ACTION_MODEL','actio004','zh_TW','云台转向','2020-09-18 02:59:25','1','2020-11-16 07:29:04',NULL,_binary ''),(415,'DEV_ACTION_MODEL','actio004','en_US','turn','2020-09-18 02:59:25','1','2020-11-16 07:29:04',NULL,_binary ''),(416,'DEV_ACTION_MODEL','action005','zh_CN','悬停','2020-09-18 03:00:00','1','2020-11-16 07:29:02',NULL,_binary ''),(417,'DEV_ACTION_MODEL','action005','zh_TW','悬停','2020-09-18 03:00:00','1','2020-11-16 07:29:02',NULL,_binary ''),(418,'DEV_ACTION_MODEL','action005','en_US','stop','2020-09-18 03:00:00','1','2020-11-16 07:29:02',NULL,_binary ''),(419,'DEV_ACTION_MODEL','action006','zh_CN','偏航角','2020-09-18 03:00:24','1','2020-11-16 07:29:00',NULL,_binary ''),(420,'DEV_ACTION_MODEL','action006','zh_TW','偏航角','2020-09-18 03:00:24','1','2020-11-16 07:29:00',NULL,_binary ''),(421,'DEV_ACTION_MODEL','action006','en_US','偏航角','2020-09-18 03:00:24','1','2020-11-16 07:29:00',NULL,_binary ''),(422,'DEV_ACTION_MODEL','action007','zh_CN','时长','2020-09-18 03:00:51','1','2020-11-16 07:29:02',NULL,_binary ''),(423,'DEV_ACTION_MODEL','action007','zh_TW','时长','2020-09-18 03:00:51','1','2020-11-16 07:29:02',NULL,_binary ''),(424,'DEV_ACTION_MODEL','action007','en_US','time','2020-09-18 03:00:51','1','2020-11-16 07:29:02',NULL,_binary ''),(425,'DEV_ACTION_MODEL','action008','zh_CN','角度','2020-09-18 03:01:15','1','2020-11-16 07:29:00',NULL,_binary ''),(426,'DEV_ACTION_MODEL','action008','zh_TW','角度','2020-09-18 03:01:15','1','2020-11-16 07:29:00',NULL,_binary ''),(427,'DEV_ACTION_MODEL','action008','en_US','角度','2020-09-18 03:01:15','1','2020-11-16 07:29:00',NULL,_binary ''),(428,'DEV_ACTION_MODEL','action009','zh_CN','照片格式','2020-09-18 03:01:42','1','2020-11-16 07:29:10',NULL,_binary ''),(429,'DEV_ACTION_MODEL','action009','zh_TW','照片格式','2020-09-18 03:01:42','1','2020-11-16 07:29:10',NULL,_binary ''),(430,'DEV_ACTION_MODEL','action009','en_US','img format','2020-09-18 03:01:42','1','2020-11-16 07:29:10',NULL,_binary ''),(431,'DEV_ACTION_MODEL','action010','zh_CN','视频格式','2020-09-18 03:02:09','1','2020-11-16 07:29:08',NULL,_binary ''),(432,'DEV_ACTION_MODEL','action010','zh_TW','视频格式','2020-09-18 03:02:09','1','2020-11-16 07:29:08',NULL,_binary ''),(433,'DEV_ACTION_MODEL','action010','en_US','video format','2020-09-18 03:02:09','1','2020-11-16 07:29:08',NULL,_binary ''),(434,'DEV_ACTION_MODEL','action011','zh_CN','分辨率','2020-09-18 03:02:31','1','2020-11-16 07:29:08',NULL,_binary ''),(435,'DEV_ACTION_MODEL','action011','zh_TW','分辨率','2020-09-18 03:02:31','1','2020-11-16 07:29:08',NULL,_binary ''),(436,'DEV_ACTION_MODEL','action011','en_US','display','2020-09-18 03:02:31','1','2020-11-16 07:29:08',NULL,_binary ''),(437,'DEV_ACTION_MODEL','action012','zh_CN','俯仰','2020-09-18 03:02:46','1','2020-11-16 07:29:04',NULL,_binary ''),(438,'DEV_ACTION_MODEL','action012','zh_TW','俯仰','2020-09-18 03:02:46','1','2020-11-16 07:29:04',NULL,_binary ''),(439,'DEV_ACTION_MODEL','action012','en_US','俯仰','2020-09-18 03:02:46','1','2020-11-16 07:29:04',NULL,_binary ''),(440,'DEV_ACTION_MODEL','action013','zh_CN','平移','2020-09-18 03:02:59','1','2020-11-16 07:29:04',NULL,_binary ''),(441,'DEV_ACTION_MODEL','action013','zh_TW','平移','2020-09-18 03:02:59','1','2020-11-16 07:29:04',NULL,_binary ''),(442,'DEV_ACTION_MODEL','action013','en_US','平移','2020-09-18 03:02:59','1','2020-11-16 07:29:04',NULL,_binary ''),(443,'DEV_ACTION_MODEL','action014','zh_CN','横滚','2020-09-18 03:03:12','1','2020-11-16 07:29:04',NULL,_binary ''),(444,'DEV_ACTION_MODEL','action014','zh_TW','横滚','2020-09-18 03:03:12','1','2020-11-16 07:29:04',NULL,_binary ''),(445,'DEV_ACTION_MODEL','action014','en_US','横滚','2020-09-18 03:03:12','1','2020-11-16 07:29:04',NULL,_binary ''),(446,'APPR_STAT','wait','zh_CN','待审批','2020-10-10 09:26:42','system','2021-09-22 07:02:10','70179580555558912',_binary '\0'),(447,'APPR_STAT','pass','zh_CN','已通过','2020-10-10 09:26:42','system','2021-09-22 07:02:00','70179580555558912',_binary '\0'),(448,'APPR_STAT','expired','zh_CN','失效','2020-10-10 09:26:42','system','2021-09-22 07:01:49','70179580555558912',_binary '\0'),(449,'APPR_STAT','ing','zh_CN','审批中','2020-10-10 09:26:42','system','2021-09-22 07:01:35','70179580555558912',_binary '\0'),(450,'APPR_STAT','refuse','zh_CN','已拒绝','2020-10-10 09:26:42','system','2021-09-22 07:01:13','70179580555558912',_binary '\0'),(451,'APPR_STAT','reject','zh_CN','被驳回','2020-10-10 09:26:42','system','2021-09-22 07:01:01','70179580555558912',_binary '\0'),(452,'AREA_TYPE','temp','zh_CN','临时飞行区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(453,'AREA_TYPE','limit','zh_CN','限制区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(454,'AREA_TYPE','forbidden','zh_CN','禁飞区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(455,'AREA_TYPE','clear','zh_CN','净空区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(456,'AREA_TYPE','danger','zh_CN','危险区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(457,'FLY_TASK','testfly','zh_CN','适航试飞','2020-10-10 09:26:42','system','2022-01-20 01:15:09','123',_binary '\0'),(458,'FLY_TASK','power','zh_CN','电力巡检','2020-10-10 09:26:42','system','2022-01-20 01:15:09','123',_binary '\0'),(459,'FLY_TASK','show','zh_CN','飞行表演','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(460,'FLY_TASK','fire','zh_CN','高层消防','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(461,'FLY_TASK','protection','zh_CN','农林植保','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(462,'FLY_TASK','poppy','zh_CN','罂粟巡查','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(463,'FLY_TASK','other','zh_CN','其它','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(464,'LOAD_CAM_MODEL','test','zh_CN','test','2020-10-10 10:12:51','1','2020-10-10 10:12:55',NULL,_binary ''),(465,'LOAD_CAM_MODEL','test','zh_TW','test','2020-10-10 10:12:51','1','2020-10-10 10:12:55',NULL,_binary ''),(466,'LOAD_CAM_MODEL','test','en_US','test','2020-10-10 10:12:51','1','2020-10-10 10:12:55',NULL,_binary ''),(863,'CAMERA_SHUTTER','0','zh_CN','1/8000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(864,'CAMERA_SHUTTER','1','zh_CN','1/6400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(865,'CAMERA_SHUTTER','2','zh_CN','1/6000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(866,'CAMERA_SHUTTER','3','zh_CN','1/5000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(867,'CAMERA_SHUTTER','4','zh_CN','1/4000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(868,'CAMERA_SHUTTER','5','zh_CN','1/3200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(869,'CAMERA_SHUTTER','6','zh_CN','1/3000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(870,'CAMERA_SHUTTER','7','zh_CN','1/2500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(871,'CAMERA_SHUTTER','8','zh_CN','1/2000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(872,'CAMERA_SHUTTER','9','zh_CN','1/1600','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(873,'CAMERA_SHUTTER','10','zh_CN','1/1500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(874,'CAMERA_SHUTTER','11','zh_CN','1/1250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(875,'CAMERA_SHUTTER','12','zh_CN','1/1000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(876,'CAMERA_SHUTTER','13','zh_CN','1/800','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(877,'CAMERA_SHUTTER','14','zh_CN','1/725','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(878,'CAMERA_SHUTTER','15','zh_CN','1/640','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(879,'CAMERA_SHUTTER','16','zh_CN','1/500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(880,'CAMERA_SHUTTER','17','zh_CN','1/400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(881,'CAMERA_SHUTTER','18','zh_CN','1/350','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(882,'CAMERA_SHUTTER','19','zh_CN','1/320','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(883,'CAMERA_SHUTTER','20','zh_CN','1/250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(884,'CAMERA_SHUTTER','21','zh_CN','1/240','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(885,'CAMERA_SHUTTER','22','zh_CN','1/200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(886,'CAMERA_SHUTTER','23','zh_CN','1/180','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(887,'CAMERA_SHUTTER','24','zh_CN','1/160','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(888,'CAMERA_SHUTTER','25','zh_CN','1/125','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(889,'CAMERA_SHUTTER','26','zh_CN','1/120','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(890,'CAMERA_SHUTTER','27','zh_CN','1/100','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(891,'CAMERA_SHUTTER','28','zh_CN','1/90 ','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(892,'CAMERA_SHUTTER','29','zh_CN','1/80','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(893,'CAMERA_SHUTTER','30','zh_CN','1/60','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(894,'CAMERA_SHUTTER','31','zh_CN','1/50','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(895,'CAMERA_SHUTTER','32','zh_CN','1/40','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(896,'CAMERA_SHUTTER','33','zh_CN','1/30','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(897,'CAMERA_SHUTTER','34','zh_CN','1/25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(898,'CAMERA_SHUTTER','35','zh_CN','1/20','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(899,'CAMERA_SHUTTER','36','zh_CN','1/15','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(900,'CAMERA_SHUTTER','37','zh_CN','1/12.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(901,'CAMERA_SHUTTER','38','zh_CN','1/10','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(902,'CAMERA_SHUTTER','39','zh_CN','1/8','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(903,'CAMERA_SHUTTER','40','zh_CN','1/6.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(904,'CAMERA_SHUTTER','41','zh_CN','1/5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(905,'CAMERA_SHUTTER','42','zh_CN','1/4','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(906,'CAMERA_SHUTTER','43','zh_CN','1/3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(907,'CAMERA_SHUTTER','44','zh_CN','1/2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(908,'CAMERA_SHUTTER','45','zh_CN','1/2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(909,'CAMERA_SHUTTER','46','zh_CN','1/1.67','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(910,'CAMERA_SHUTTER','47','zh_CN','1/1.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(911,'CAMERA_SHUTTER','48','zh_CN','1.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(912,'CAMERA_SHUTTER','49','zh_CN','1.3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(913,'CAMERA_SHUTTER','50','zh_CN','1.6','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(914,'CAMERA_SHUTTER','51','zh_CN','2.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(915,'CAMERA_SHUTTER','52','zh_CN','2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(916,'CAMERA_SHUTTER','53','zh_CN','3.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(917,'CAMERA_SHUTTER','54','zh_CN','3.2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(918,'CAMERA_SHUTTER','55','zh_CN','4.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(919,'CAMERA_SHUTTER','56','zh_CN','5.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(920,'CAMERA_SHUTTER','57','zh_CN','6.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(921,'CAMERA_SHUTTER','58','zh_CN','7.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(922,'CAMERA_SHUTTER','59','zh_CN','8.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(923,'CAMERA_SHUTTER','60','zh_CN','9.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(924,'CAMERA_SHUTTER','61','zh_CN','10.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(925,'CAMERA_SHUTTER','62','zh_CN','13.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(926,'CAMERA_SHUTTER','63','zh_CN','15.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(927,'CAMERA_SHUTTER','64','zh_CN','20.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(928,'CAMERA_SHUTTER','65','zh_CN','25.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(929,'CAMERA_SHUTTER','66','zh_CN','30.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(930,'CAMERA_SHUTTER','0','en_US','1/8000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(931,'CAMERA_SHUTTER','1','en_US','1/6400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(932,'CAMERA_SHUTTER','2','en_US','1/6000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(933,'CAMERA_SHUTTER','3','en_US','1/5000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(934,'CAMERA_SHUTTER','4','en_US','1/4000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(935,'CAMERA_SHUTTER','5','en_US','1/3200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(936,'CAMERA_SHUTTER','6','en_US','1/3000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(937,'CAMERA_SHUTTER','7','en_US','1/2500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(938,'CAMERA_SHUTTER','8','en_US','1/2000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(939,'CAMERA_SHUTTER','9','en_US','1/1600','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(940,'CAMERA_SHUTTER','10','en_US','1/1500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(941,'CAMERA_SHUTTER','11','en_US','1/1250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(942,'CAMERA_SHUTTER','12','en_US','1/1000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(943,'CAMERA_SHUTTER','13','en_US','1/800','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(944,'CAMERA_SHUTTER','14','en_US','1/725','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(945,'CAMERA_SHUTTER','15','en_US','1/640','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(946,'CAMERA_SHUTTER','16','en_US','1/500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(947,'CAMERA_SHUTTER','17','en_US','1/400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(948,'CAMERA_SHUTTER','18','en_US','1/350','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(949,'CAMERA_SHUTTER','19','en_US','1/320','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(950,'CAMERA_SHUTTER','20','en_US','1/250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(951,'CAMERA_SHUTTER','21','en_US','1/240','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(952,'CAMERA_SHUTTER','22','en_US','1/200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(953,'CAMERA_SHUTTER','23','en_US','1/180','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(954,'CAMERA_SHUTTER','24','en_US','1/160','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(955,'CAMERA_SHUTTER','25','en_US','1/125','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(956,'CAMERA_SHUTTER','26','en_US','1/120','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(957,'CAMERA_SHUTTER','27','en_US','1/100','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(958,'CAMERA_SHUTTER','28','en_US','1/90 ','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(959,'CAMERA_SHUTTER','29','en_US','1/80','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(960,'CAMERA_SHUTTER','30','en_US','1/60','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(961,'CAMERA_SHUTTER','31','en_US','1/50','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(962,'CAMERA_SHUTTER','32','en_US','1/40','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(963,'CAMERA_SHUTTER','33','en_US','1/30','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(964,'CAMERA_SHUTTER','34','en_US','1/25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(965,'CAMERA_SHUTTER','35','en_US','1/20','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(966,'CAMERA_SHUTTER','36','en_US','1/15','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(967,'CAMERA_SHUTTER','37','en_US','1/12.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(968,'CAMERA_SHUTTER','38','en_US','1/10','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(969,'CAMERA_SHUTTER','39','en_US','1/8','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(970,'CAMERA_SHUTTER','40','en_US','1/6.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(971,'CAMERA_SHUTTER','41','en_US','1/5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(972,'CAMERA_SHUTTER','42','en_US','1/4','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(973,'CAMERA_SHUTTER','43','en_US','1/3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(974,'CAMERA_SHUTTER','44','en_US','1/2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(975,'CAMERA_SHUTTER','45','en_US','1/2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(976,'CAMERA_SHUTTER','46','en_US','1/1.67','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(977,'CAMERA_SHUTTER','47','en_US','1/1.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(978,'CAMERA_SHUTTER','48','en_US','1.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(979,'CAMERA_SHUTTER','49','en_US','1.3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(980,'CAMERA_SHUTTER','50','en_US','1.6','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(981,'CAMERA_SHUTTER','51','en_US','2.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(982,'CAMERA_SHUTTER','52','en_US','2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(983,'CAMERA_SHUTTER','53','en_US','3.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(984,'CAMERA_SHUTTER','54','en_US','3.2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(985,'CAMERA_SHUTTER','55','en_US','4.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(986,'CAMERA_SHUTTER','56','en_US','5.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(987,'CAMERA_SHUTTER','57','en_US','6.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(988,'CAMERA_SHUTTER','58','en_US','7.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(989,'CAMERA_SHUTTER','59','en_US','8.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(990,'CAMERA_SHUTTER','60','en_US','9.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(991,'CAMERA_SHUTTER','61','en_US','10.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(992,'CAMERA_SHUTTER','62','en_US','13.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(993,'CAMERA_SHUTTER','63','en_US','15.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(994,'CAMERA_SHUTTER','64','en_US','20.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(995,'CAMERA_SHUTTER','65','en_US','25.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(996,'CAMERA_SHUTTER','66','en_US','30.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(997,'CAMERA_SHUTTER','0','zh_TW','1/8000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(998,'CAMERA_SHUTTER','1','zh_TW','1/6400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(999,'CAMERA_SHUTTER','2','zh_TW','1/6000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1000,'CAMERA_SHUTTER','3','zh_TW','1/5000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1001,'CAMERA_SHUTTER','4','zh_TW','1/4000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1002,'CAMERA_SHUTTER','5','zh_TW','1/3200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1003,'CAMERA_SHUTTER','6','zh_TW','1/3000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1004,'CAMERA_SHUTTER','7','zh_TW','1/2500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1005,'CAMERA_SHUTTER','8','zh_TW','1/2000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1006,'CAMERA_SHUTTER','9','zh_TW','1/1600','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1007,'CAMERA_SHUTTER','10','zh_TW','1/1500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1008,'CAMERA_SHUTTER','11','zh_TW','1/1250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1009,'CAMERA_SHUTTER','12','zh_TW','1/1000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1010,'CAMERA_SHUTTER','13','zh_TW','1/800','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1011,'CAMERA_SHUTTER','14','zh_TW','1/725','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1012,'CAMERA_SHUTTER','15','zh_TW','1/640','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1013,'CAMERA_SHUTTER','16','zh_TW','1/500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1014,'CAMERA_SHUTTER','17','zh_TW','1/400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1015,'CAMERA_SHUTTER','18','zh_TW','1/350','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1016,'CAMERA_SHUTTER','19','zh_TW','1/320','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1017,'CAMERA_SHUTTER','20','zh_TW','1/250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1018,'CAMERA_SHUTTER','21','zh_TW','1/240','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1019,'CAMERA_SHUTTER','22','zh_TW','1/200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1020,'CAMERA_SHUTTER','23','zh_TW','1/180','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1021,'CAMERA_SHUTTER','24','zh_TW','1/160','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1022,'CAMERA_SHUTTER','25','zh_TW','1/125','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1023,'CAMERA_SHUTTER','26','zh_TW','1/120','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1024,'CAMERA_SHUTTER','27','zh_TW','1/100','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1025,'CAMERA_SHUTTER','28','zh_TW','1/90 ','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1026,'CAMERA_SHUTTER','29','zh_TW','1/80','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1027,'CAMERA_SHUTTER','30','zh_TW','1/60','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1028,'CAMERA_SHUTTER','31','zh_TW','1/50','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1029,'CAMERA_SHUTTER','32','zh_TW','1/40','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1030,'CAMERA_SHUTTER','33','zh_TW','1/30','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1031,'CAMERA_SHUTTER','34','zh_TW','1/25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1032,'CAMERA_SHUTTER','35','zh_TW','1/20','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1033,'CAMERA_SHUTTER','36','zh_TW','1/15','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1034,'CAMERA_SHUTTER','37','zh_TW','1/12.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1035,'CAMERA_SHUTTER','38','zh_TW','1/10','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1036,'CAMERA_SHUTTER','39','zh_TW','1/8','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1037,'CAMERA_SHUTTER','40','zh_TW','1/6.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1038,'CAMERA_SHUTTER','41','zh_TW','1/5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1039,'CAMERA_SHUTTER','42','zh_TW','1/4','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1040,'CAMERA_SHUTTER','43','zh_TW','1/3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1041,'CAMERA_SHUTTER','44','zh_TW','1/2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1042,'CAMERA_SHUTTER','45','zh_TW','1/2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1043,'CAMERA_SHUTTER','46','zh_TW','1/1.67','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1044,'CAMERA_SHUTTER','47','zh_TW','1/1.25','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1045,'CAMERA_SHUTTER','48','zh_TW','1.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1046,'CAMERA_SHUTTER','49','zh_TW','1.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1047,'CAMERA_SHUTTER','50','zh_TW','1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1048,'CAMERA_SHUTTER','51','zh_TW','2.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1049,'CAMERA_SHUTTER','52','zh_TW','2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1050,'CAMERA_SHUTTER','53','zh_TW','3.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1051,'CAMERA_SHUTTER','54','zh_TW','3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1052,'CAMERA_SHUTTER','55','zh_TW','4.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1053,'CAMERA_SHUTTER','56','zh_TW','5.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1054,'CAMERA_SHUTTER','57','zh_TW','6.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1055,'CAMERA_SHUTTER','58','zh_TW','7.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1056,'CAMERA_SHUTTER','59','zh_TW','8.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1057,'CAMERA_SHUTTER','60','zh_TW','9.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1058,'CAMERA_SHUTTER','61','zh_TW','10.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1059,'CAMERA_SHUTTER','62','zh_TW','13.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1060,'CAMERA_SHUTTER','63','zh_TW','15.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1061,'CAMERA_SHUTTER','64','zh_TW','20.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1062,'CAMERA_SHUTTER','65','zh_TW','25.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1063,'CAMERA_SHUTTER','66','zh_TW','30.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1064,'CAMERA_APERTURE','160','zh_CN','f/1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1065,'CAMERA_APERTURE','170','zh_CN','f/1.7','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1066,'CAMERA_APERTURE','180','zh_CN','f/1.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1067,'CAMERA_APERTURE','200','zh_CN','f/2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1068,'CAMERA_APERTURE','220','zh_CN','f/2.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1069,'CAMERA_APERTURE','240','zh_CN','f/2.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1070,'CAMERA_APERTURE','250','zh_CN','f/2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1071,'CAMERA_APERTURE','260','zh_CN','f/2.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1072,'CAMERA_APERTURE','280','zh_CN','f/2.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1073,'CAMERA_APERTURE','320','zh_CN','f/3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1074,'CAMERA_APERTURE','340','zh_CN','f/3.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1075,'CAMERA_APERTURE','350','zh_CN','f/3.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1076,'CAMERA_APERTURE','400','zh_CN','f/4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1077,'CAMERA_APERTURE','450','zh_CN','f/4.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1078,'CAMERA_APERTURE','480','zh_CN','f/4.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1079,'CAMERA_APERTURE','500','zh_CN','f/5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1080,'CAMERA_APERTURE','560','zh_CN','f/5.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1081,'CAMERA_APERTURE','630','zh_CN','f/6.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1082,'CAMERA_APERTURE','680','zh_CN','f/6.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1083,'CAMERA_APERTURE','710','zh_CN','f/7.1','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1084,'CAMERA_APERTURE','800','zh_CN','f/8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1085,'CAMERA_APERTURE','900','zh_CN','f/9','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1086,'CAMERA_APERTURE','960','zh_CN','f/9.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1087,'CAMERA_APERTURE','1000','zh_CN','f/10','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1088,'CAMERA_APERTURE','1100','zh_CN','f/11','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1089,'CAMERA_APERTURE','1300','zh_CN','f/13','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1090,'CAMERA_APERTURE','1400','zh_CN','f/14','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1091,'CAMERA_APERTURE','1600','zh_CN','f/16','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1092,'CAMERA_APERTURE','1800','zh_CN','f/18','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1093,'CAMERA_APERTURE','1900','zh_CN','f/19','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1094,'CAMERA_APERTURE','2000','zh_CN','f/20','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1095,'CAMERA_APERTURE','2200','zh_CN','f/22','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1096,'CAMERA_APERTURE','160','en_US','f/1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1097,'CAMERA_APERTURE','170','en_US','f/1.7','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1098,'CAMERA_APERTURE','180','en_US','f/1.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1099,'CAMERA_APERTURE','200','en_US','f/2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1100,'CAMERA_APERTURE','220','en_US','f/2.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1101,'CAMERA_APERTURE','240','en_US','f/2.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1102,'CAMERA_APERTURE','250','en_US','f/2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1103,'CAMERA_APERTURE','260','en_US','f/2.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1104,'CAMERA_APERTURE','280','en_US','f/2.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1105,'CAMERA_APERTURE','320','en_US','f/3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1106,'CAMERA_APERTURE','340','en_US','f/3.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1107,'CAMERA_APERTURE','350','en_US','f/3.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1108,'CAMERA_APERTURE','400','en_US','f/4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1109,'CAMERA_APERTURE','450','en_US','f/4.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1110,'CAMERA_APERTURE','480','en_US','f/4.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1111,'CAMERA_APERTURE','500','en_US','f/5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1112,'CAMERA_APERTURE','560','en_US','f/5.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1113,'CAMERA_APERTURE','630','en_US','f/6.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1114,'CAMERA_APERTURE','680','en_US','f/6.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1115,'CAMERA_APERTURE','710','en_US','f/7.1','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1116,'CAMERA_APERTURE','800','en_US','f/8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1117,'CAMERA_APERTURE','900','en_US','f/9','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1118,'CAMERA_APERTURE','960','en_US','f/9.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1119,'CAMERA_APERTURE','1000','en_US','f/10','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1120,'CAMERA_APERTURE','1100','en_US','f/11','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1121,'CAMERA_APERTURE','1300','en_US','f/13','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1122,'CAMERA_APERTURE','1400','en_US','f/14','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1123,'CAMERA_APERTURE','1600','en_US','f/16','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1124,'CAMERA_APERTURE','1800','en_US','f/18','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1125,'CAMERA_APERTURE','1900','en_US','f/19','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1126,'CAMERA_APERTURE','2000','en_US','f/20','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1127,'CAMERA_APERTURE','2200','en_US','f/22','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1128,'CAMERA_APERTURE','160','zh_TW','f/1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1129,'CAMERA_APERTURE','170','zh_TW','f/1.7','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1130,'CAMERA_APERTURE','180','zh_TW','f/1.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1131,'CAMERA_APERTURE','200','zh_TW','f/2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1132,'CAMERA_APERTURE','220','zh_TW','f/2.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1133,'CAMERA_APERTURE','240','zh_TW','f/2.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1134,'CAMERA_APERTURE','250','zh_TW','f/2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1135,'CAMERA_APERTURE','260','zh_TW','f/2.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1136,'CAMERA_APERTURE','280','zh_TW','f/2.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1137,'CAMERA_APERTURE','320','zh_TW','f/3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1138,'CAMERA_APERTURE','340','zh_TW','f/3.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1139,'CAMERA_APERTURE','350','zh_TW','f/3.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1140,'CAMERA_APERTURE','400','zh_TW','f/4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1141,'CAMERA_APERTURE','450','zh_TW','f/4.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1142,'CAMERA_APERTURE','480','zh_TW','f/4.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1143,'CAMERA_APERTURE','500','zh_TW','f/5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1144,'CAMERA_APERTURE','560','zh_TW','f/5.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1145,'CAMERA_APERTURE','630','zh_TW','f/6.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1146,'CAMERA_APERTURE','680','zh_TW','f/6.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1147,'CAMERA_APERTURE','710','zh_TW','f/7.1','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1148,'CAMERA_APERTURE','800','zh_TW','f/8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1149,'CAMERA_APERTURE','900','zh_TW','f/9','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1150,'CAMERA_APERTURE','960','zh_TW','f/9.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1151,'CAMERA_APERTURE','1000','zh_TW','f/10','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1152,'CAMERA_APERTURE','1100','zh_TW','f/11','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1153,'CAMERA_APERTURE','1300','zh_TW','f/13','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1154,'CAMERA_APERTURE','1400','zh_TW','f/14','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1155,'CAMERA_APERTURE','1600','zh_TW','f/16','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1156,'CAMERA_APERTURE','1800','zh_TW','f/18','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1157,'CAMERA_APERTURE','1900','zh_TW','f/19','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1158,'CAMERA_APERTURE','2000','zh_TW','f/20','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1159,'CAMERA_APERTURE','2200','zh_TW','f/22','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1160,'CAMERA_EV','1','en_US','-5.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1161,'CAMERA_EV','2','en_US','-4.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1162,'CAMERA_EV','3','en_US','-4.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1163,'CAMERA_EV','4','en_US','-4.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1164,'CAMERA_EV','5','en_US','-3.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1165,'CAMERA_EV','6','en_US','-3.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1166,'CAMERA_EV','7','en_US','-3.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1167,'CAMERA_EV','8','en_US','-2.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1168,'CAMERA_EV','9','en_US','-2.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1169,'CAMERA_EV','10','en_US','-2.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1170,'CAMERA_EV','11','en_US','-1.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1171,'CAMERA_EV','12','en_US','-1.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1172,'CAMERA_EV','13','en_US','-1.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1173,'CAMERA_EV','14','en_US','-0.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1174,'CAMERA_EV','15','en_US','-0.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1175,'CAMERA_EV','16','en_US','0.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1176,'CAMERA_EV','17','en_US','0.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1177,'CAMERA_EV','18','en_US','0.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1178,'CAMERA_EV','19','en_US','1.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1179,'CAMERA_EV','20','en_US','1.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1180,'CAMERA_EV','21','en_US','1.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1181,'CAMERA_EV','22','en_US','2.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1182,'CAMERA_EV','23','en_US','2.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1183,'CAMERA_EV','24','en_US','2.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1184,'CAMERA_EV','25','en_US','3.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1185,'CAMERA_EV','26','en_US','3.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1186,'CAMERA_EV','27','en_US','3.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1187,'CAMERA_EV','28','en_US','4.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1188,'CAMERA_EV','29','en_US','4.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1189,'CAMERA_EV','30','en_US','4.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1190,'CAMERA_EV','31','en_US','5.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1191,'CAMERA_EV','1','zh_CN','-5.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1192,'CAMERA_EV','2','zh_CN','-4.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1193,'CAMERA_EV','3','zh_CN','-4.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1194,'CAMERA_EV','4','zh_CN','-4.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1195,'CAMERA_EV','5','zh_CN','-3.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1196,'CAMERA_EV','6','zh_CN','-3.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1197,'CAMERA_EV','7','zh_CN','-3.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1198,'CAMERA_EV','8','zh_CN','-2.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1199,'CAMERA_EV','9','zh_CN','-2.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1200,'CAMERA_EV','10','zh_CN','-2.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1201,'CAMERA_EV','11','zh_CN','-1.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1202,'CAMERA_EV','12','zh_CN','-1.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1203,'CAMERA_EV','13','zh_CN','-1.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1204,'CAMERA_EV','14','zh_CN','-0.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1205,'CAMERA_EV','15','zh_CN','-0.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1206,'CAMERA_EV','16','zh_CN','0.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1207,'CAMERA_EV','17','zh_CN','0.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1208,'CAMERA_EV','18','zh_CN','0.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1209,'CAMERA_EV','19','zh_CN','1.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1210,'CAMERA_EV','20','zh_CN','1.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1211,'CAMERA_EV','21','zh_CN','1.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1212,'CAMERA_EV','22','zh_CN','2.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1213,'CAMERA_EV','23','zh_CN','2.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1214,'CAMERA_EV','24','zh_CN','2.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1215,'CAMERA_EV','25','zh_CN','3.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1216,'CAMERA_EV','26','zh_CN','3.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1217,'CAMERA_EV','27','zh_CN','3.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1218,'CAMERA_EV','28','zh_CN','4.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1219,'CAMERA_EV','29','zh_CN','4.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1220,'CAMERA_EV','30','zh_CN','4.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1221,'CAMERA_EV','31','zh_CN','5.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1222,'CAMERA_EV','1','zh_TW','-5.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1223,'CAMERA_EV','2','zh_TW','-4.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1224,'CAMERA_EV','3','zh_TW','-4.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1225,'CAMERA_EV','4','zh_TW','-4.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1226,'CAMERA_EV','5','zh_TW','-3.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1227,'CAMERA_EV','6','zh_TW','-3.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1228,'CAMERA_EV','7','zh_TW','-3.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1229,'CAMERA_EV','8','zh_TW','-2.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1230,'CAMERA_EV','9','zh_TW','-2.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1231,'CAMERA_EV','10','zh_TW','-2.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1232,'CAMERA_EV','11','zh_TW','-1.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1233,'CAMERA_EV','12','zh_TW','-1.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1234,'CAMERA_EV','13','zh_TW','-1.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1235,'CAMERA_EV','14','zh_TW','-0.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1236,'CAMERA_EV','15','zh_TW','-0.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1237,'CAMERA_EV','16','zh_TW','0.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1238,'CAMERA_EV','17','zh_TW','0.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1239,'CAMERA_EV','18','zh_TW','0.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1240,'CAMERA_EV','19','zh_TW','1.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1241,'CAMERA_EV','20','zh_TW','1.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1242,'CAMERA_EV','21','zh_TW','1.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1243,'CAMERA_EV','22','zh_TW','2.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1244,'CAMERA_EV','23','zh_TW','2.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1245,'CAMERA_EV','24','zh_TW','2.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1246,'CAMERA_EV','25','zh_TW','3.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1247,'CAMERA_EV','26','zh_TW','3.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1248,'CAMERA_EV','27','zh_TW','3.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1249,'CAMERA_EV','28','zh_TW','4.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1250,'CAMERA_EV','29','zh_TW','4.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1251,'CAMERA_EV','30','zh_TW','4.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1252,'CAMERA_EV','31','zh_TW','5.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1253,'CAMERA_PHOTO_MODE','1','zh_CN','单拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1254,'CAMERA_PHOTO_MODE','0','zh_CN','连拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1255,'CAMERA_PHOTO_MODE','1','en_US','Single shoot','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1256,'CAMERA_PHOTO_MODE','0','en_US','Continue shoot','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1257,'CAMERA_PHOTO_MODE','1','zh_TW','單拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1258,'CAMERA_PHOTO_MODE','0','zh_TW','連拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1259,'CAMERA_EXPOSURE_MODE','1','en_US','auto mode','2020-10-12 01:57:52','1',NULL,NULL,_binary '\0'),(1260,'CAMERA_EXPOSURE_MODE','1','zh_TW','自動模式','2020-10-12 01:57:52','1',NULL,NULL,_binary '\0'),(1261,'CAMERA_EXPOSURE_MODE','1','zh_CN','自动模式','2020-10-12 01:57:52','1',NULL,NULL,_binary '\0'),(1262,'CAMERA_EXPOSURE_MODE','2','en_US','shutter priority','2020-10-12 01:58:15','1',NULL,NULL,_binary '\0'),(1263,'CAMERA_EXPOSURE_MODE','2','zh_TW','快門優先','2020-10-12 01:58:15','1',NULL,NULL,_binary '\0'),(1264,'CAMERA_EXPOSURE_MODE','2','zh_CN','快门优先','2020-10-12 01:58:15','1',NULL,NULL,_binary '\0'),(1265,'CAMERA_EXPOSURE_MODE','3','en_US','aperture priority','2020-10-12 01:58:43','1',NULL,NULL,_binary '\0'),(1266,'CAMERA_EXPOSURE_MODE','3','zh_TW','光圈優先','2020-10-12 01:58:43','1',NULL,NULL,_binary '\0'),(1267,'CAMERA_EXPOSURE_MODE','3','zh_CN','感光优先','2020-10-12 01:58:43','1',NULL,NULL,_binary '\0'),(1268,'CAMERA_EXPOSURE_MODE','4','en_US','manual mode','2020-10-12 01:59:06','1',NULL,NULL,_binary '\0'),(1269,'CAMERA_EXPOSURE_MODE','4','zh_TW','手動曝光','2020-10-12 01:59:06','1',NULL,NULL,_binary '\0'),(1270,'CAMERA_EXPOSURE_MODE','4','zh_CN','手动曝光','2020-10-12 01:59:06','1',NULL,NULL,_binary '\0'),(1271,'CAMERA_ISO','25600','zh_CN','25600','2020-10-12 02:00:53','1',NULL,NULL,_binary '\0'),(1272,'CAMERA_ISO','25600','zh_TW','25600','2020-10-12 02:00:53','1',NULL,NULL,_binary '\0'),(1273,'CAMERA_ISO','25600','en_US','25600','2020-10-12 02:00:53','1',NULL,NULL,_binary '\0'),(1274,'CAMERA_ISO','12800','zh_CN','12800','2020-10-12 02:01:05','1',NULL,NULL,_binary '\0'),(1275,'CAMERA_ISO','12800','zh_TW','12800','2020-10-12 02:01:05','1',NULL,NULL,_binary '\0'),(1276,'CAMERA_ISO','12800','en_US','12800','2020-10-12 02:01:05','1',NULL,NULL,_binary '\0'),(1277,'CAMERA_ISO','6400','zh_CN','6400','2020-10-12 02:01:18','1',NULL,NULL,_binary '\0'),(1278,'CAMERA_ISO','6400','zh_TW','6400','2020-10-12 02:01:18','1',NULL,NULL,_binary '\0'),(1279,'CAMERA_ISO','6400','en_US','6400','2020-10-12 02:01:18','1',NULL,NULL,_binary '\0'),(1280,'CAMERA_ISO','3200','zh_CN','3200','2020-10-12 02:01:29','1',NULL,NULL,_binary '\0'),(1281,'CAMERA_ISO','3200','zh_TW','3200','2020-10-12 02:01:29','1',NULL,NULL,_binary '\0'),(1282,'CAMERA_ISO','3200','en_US','3200','2020-10-12 02:01:29','1',NULL,NULL,_binary '\0'),(1283,'CAMERA_ISO','1600','zh_CN','1600','2020-10-12 02:01:40','1',NULL,NULL,_binary '\0'),(1284,'CAMERA_ISO','1600','zh_TW','1600','2020-10-12 02:01:40','1',NULL,NULL,_binary '\0'),(1285,'CAMERA_ISO','1600','en_US','1600','2020-10-12 02:01:40','1',NULL,NULL,_binary '\0'),(1286,'CAMERA_ISO','800','zh_CN','800','2020-10-12 02:01:51','1',NULL,NULL,_binary '\0'),(1287,'CAMERA_ISO','800','zh_TW','800','2020-10-12 02:01:51','1',NULL,NULL,_binary '\0'),(1288,'CAMERA_ISO','800','en_US','800','2020-10-12 02:01:51','1',NULL,NULL,_binary '\0'),(1289,'CAMERA_ISO','400','zh_CN','400','2020-10-12 02:02:02','1',NULL,NULL,_binary '\0'),(1290,'CAMERA_ISO','400','zh_TW','400','2020-10-12 02:02:02','1',NULL,NULL,_binary '\0'),(1291,'CAMERA_ISO','400','en_US','400','2020-10-12 02:02:02','1',NULL,NULL,_binary '\0'),(1292,'CAMERA_ISO','200','zh_CN','200','2020-10-12 02:02:13','1',NULL,NULL,_binary '\0'),(1293,'CAMERA_ISO','200','zh_TW','200','2020-10-12 02:02:13','1',NULL,NULL,_binary '\0'),(1294,'CAMERA_ISO','200','en_US','200','2020-10-12 02:02:13','1',NULL,NULL,_binary '\0'),(1295,'CAMERA_ISO','100','zh_CN','100','2020-10-12 02:02:25','1',NULL,NULL,_binary '\0'),(1296,'CAMERA_ISO','100','zh_TW','100','2020-10-12 02:02:25','1',NULL,NULL,_binary '\0'),(1297,'CAMERA_ISO','100','en_US','100','2020-10-12 02:02:25','1',NULL,NULL,_binary '\0'),(1298,'CAMERA_ISO','1','zh_CN','FIXED','2020-10-12 02:02:44','1','2021-01-22 03:18:46','1',_binary '\0'),(1299,'CAMERA_ISO','1','zh_TW','FIXED','2020-10-12 02:02:44','1','2021-01-22 03:18:46','1',_binary '\0'),(1300,'CAMERA_ISO','1','en_US','FIXED','2020-10-12 02:02:44','1','2021-01-22 03:18:46','1',_binary '\0'),(1301,'CAMERA_ISO','0','zh_CN','AUTO','2020-10-12 02:03:07','1',NULL,NULL,_binary '\0'),(1302,'CAMERA_ISO','0','zh_TW','AUTO','2020-10-12 02:03:07','1',NULL,NULL,_binary '\0'),(1303,'CAMERA_ISO','0','en_US','AUTO','2020-10-12 02:03:07','1',NULL,NULL,_binary '\0'),(1304,'PLANE_MODEL','AUTOTEST_hanger','en_US','机库管理自动化','2020-10-28 08:30:46','1','2020-11-23 07:10:16','1',_binary ''),(1305,'PLANE_MODEL','AUTOTEST_hanger','zh_CN','机库管理自动化','2020-10-28 08:30:46','1','2020-11-23 07:10:16','1',_binary ''),(1306,'PLANE_MODEL','AUTOTEST_hanger','zh_TW','机库管理自动化','2020-10-28 08:30:46','1','2020-11-23 07:10:16','1',_binary ''),(1307,'LOAD_HNG_MODEL','AUTO_TESTHangar','en_US','自动化机库管理','2020-10-28 08:30:47','1','2020-12-01 01:15:19','1',_binary ''),(1308,'LOAD_HNG_MODEL','AUTO_TESTHangar','zh_CN','自动化机库管理','2020-10-28 08:30:47','1','2020-12-01 01:15:19','1',_binary ''),(1309,'LOAD_HNG_MODEL','AUTO_TESTHangar','zh_TW','自动化机库管理','2020-10-28 08:30:47','1','2020-12-01 01:15:19','1',_binary ''),(1310,'LOAD_CAM_MODEL','z5','zh_CN','禅思 ZENMUSE Z5','2020-10-30 09:44:28','1',NULL,NULL,_binary '\0'),(1311,'LOAD_CAM_MODEL','z5','zh_TW','z5','2020-10-30 09:44:28','1',NULL,NULL,_binary '\0'),(1312,'LOAD_CAM_MODEL','z5','en_US','z5','2020-10-30 09:44:28','1',NULL,NULL,_binary '\0'),(1313,'LOAD_CAM_MODEL','xh003','zh_CN','禅思H20','2020-11-05 06:38:57','1',NULL,NULL,_binary '\0'),(1314,'LOAD_CAM_MODEL','xh003','en_US','H20','2020-11-05 06:38:57','1',NULL,NULL,_binary '\0'),(1315,'LOAD_CAM_MODEL','xh003','zh_TW','禪思H20','2020-11-05 06:38:57','1',NULL,NULL,_binary '\0'),(1316,'MNF','sccj017','zh_CN','四川一电航空技术有限公司','2020-11-05 06:39:34','1','2022-09-20 08:29:05','1',_binary '\0'),(1317,'MNF','sccj017','zh_TW','四川一电航空技术有限公司','2020-11-05 06:39:34','1','2022-09-20 08:29:05','1',_binary '\0'),(1318,'MNF','sccj017','en_US','AEE','2020-11-05 06:39:34','1','2022-09-20 08:29:05','1',_binary '\0'),(1319,'LOAD_CAM_MODEL','xh004','zh_CN','禅思XTS','2020-11-05 06:39:39','1',NULL,NULL,_binary '\0'),(1320,'LOAD_CAM_MODEL','xh004','en_US','XTS','2020-11-05 06:39:39','1',NULL,NULL,_binary '\0'),(1321,'LOAD_CAM_MODEL','xh004','zh_TW','禪思XTS','2020-11-05 06:39:39','1',NULL,NULL,_binary '\0'),(1322,'LOAD_CAM_MODEL','xh005','zh_CN','禅思XT2','2020-11-05 06:40:11','1','2020-12-16 08:59:45','1',_binary '\0'),(1323,'LOAD_CAM_MODEL','xh005','en_US','禅思XT2','2020-11-05 06:40:11','1','2020-12-16 08:59:45','1',_binary '\0'),(1324,'LOAD_CAM_MODEL','xh005','zh_TW','禅思XT2','2020-11-05 06:40:11','1','2020-12-16 08:59:45','1',_binary '\0'),(1325,'PLANE_MODEL','wrjxh047','en_US','X70','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1',_binary '\0'),(1326,'PLANE_MODEL','wrjxh047','zh_TW','X70','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1',_binary '\0'),(1327,'PLANE_MODEL','wrjxh047','zh_CN','X70','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1',_binary '\0'),(1328,'LOAD_CAM_MODEL','xh006','zh_CN','禅思XS5','2020-11-05 06:40:50','1','2020-12-16 08:59:24','1',_binary '\0'),(1329,'LOAD_CAM_MODEL','xh006','en_US','禅思XS5','2020-11-05 06:40:50','1','2020-12-16 08:59:24','1',_binary '\0'),(1330,'LOAD_CAM_MODEL','xh006','zh_TW','禅思XS5','2020-11-05 06:40:50','1','2020-12-16 08:59:24','1',_binary '\0'),(1331,'LOAD_CAM_MODEL','xh007','zh_CN','禅思X7','2020-11-05 06:41:14','1','2020-12-16 08:59:01','1',_binary '\0'),(1332,'LOAD_CAM_MODEL','xh007','zh_TW','禅思X7','2020-11-05 06:41:14','1','2020-12-16 08:59:01','1',_binary '\0'),(1333,'LOAD_CAM_MODEL','xh007','en_US','禅思X7','2020-11-05 06:41:14','1','2020-12-16 08:59:01','1',_binary '\0'),(1334,'MNF','sccj018','en_US','Aviation Industry Corporation of China','2020-11-05 06:53:56','1','2022-09-20 08:29:05','1',_binary '\0'),(1335,'MNF','sccj018','zh_TW','中航工業','2020-11-05 06:53:56','1','2022-09-20 08:29:05','1',_binary '\0'),(1336,'MNF','sccj018','zh_CN','中航工业','2020-11-05 06:53:56','1','2022-09-20 08:29:05','1',_binary '\0'),(1337,'PLANE_MODEL','wrjxh048','zh_CN','翼龙 1D','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1',_binary '\0'),(1338,'PLANE_MODEL','wrjxh048','zh_TW','翼龍 1D','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1',_binary '\0'),(1339,'PLANE_MODEL','wrjxh048','en_US','yi long 1D','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1',_binary '\0'),(1340,'PLANE_MODEL','wrjxh049','zh_CN','G200','2020-11-05 06:57:05','1','2022-09-20 08:29:32','1',_binary '\0'),(1341,'PLANE_MODEL','wrjxh049','zh_TW','G200','2020-11-05 06:57:05','1','2022-09-20 08:29:32','1',_binary '\0'),(1342,'PLANE_MODEL','wrjxh049','en_US','G200','2020-11-05 06:57:05','1','2022-09-20 08:29:32','1',_binary '\0'),(1343,'LOAD_CAM_MODEL','xh008','zh_CN','DATG5','2020-11-05 08:47:13','1','2021-01-04 06:30:31','1',_binary '\0'),(1344,'LOAD_CAM_MODEL','xh008','zh_TW','DATG5','2020-11-05 08:47:13','1','2021-01-04 06:30:31','1',_binary '\0'),(1345,'LOAD_CAM_MODEL','xh008','en_US','DATG5','2020-11-05 08:47:13','1','2021-01-04 06:30:31','1',_binary '\0'),(1346,'ADAPT_MNF','sccj017','en_US','AEE','2020-11-06 01:18:25','1','2021-09-22 07:00:27','70179580555558912',_binary '\0'),(1347,'ADAPT_MNF','sccj017','zh_TW','四川一點航空技術有限公司','2020-11-06 01:18:25','1','2021-09-22 07:00:27','70179580555558912',_binary '\0'),(1348,'ADAPT_MNF','sccj017','zh_CN','四川一电航空技术有限公司','2020-11-06 01:18:25','1','2021-09-22 07:00:27','70179580555558912',_binary '\0'),(1349,'LOAD_CAM_MODEL','xh010','zh_CN','品灵10倍双光吊舱','2020-11-06 02:58:55','1','2021-01-19 06:40:00','1',_binary '\0'),(1350,'LOAD_CAM_MODEL','xh010','zh_TW','品灵10倍双光吊舱','2020-11-06 02:58:55','1','2021-01-19 06:40:00','1',_binary '\0'),(1351,'LOAD_CAM_MODEL','xh010','en_US','pinling10','2020-11-06 02:58:55','1','2021-01-19 06:40:00','1',_binary '\0'),(1352,'ADAPT_MNF','sccj001','zh_CN','DJI','2020-11-06 06:03:03','1',NULL,NULL,_binary '\0'),(1353,'ADAPT_MNF','sccj001','zh_TW','DJI','2020-11-06 06:03:03','1',NULL,NULL,_binary '\0'),(1354,'ADAPT_MNF','sccj001','en_US','DJI','2020-11-06 06:03:03','1',NULL,NULL,_binary '\0'),(1355,'AUTO_TEST','test1','en_US','字典自动化','2020-11-11 09:15:55','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1356,'AUTO_TEST','test1','zh_CN','字典自动化','2020-11-11 09:15:55','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1357,'AUTO_TEST','test1','zh_TW','字典自动化','2020-11-11 09:15:55','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1358,'AUTO_TEST','test2','en_US','接口2','2020-11-11 09:15:55','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1359,'AUTO_TEST','test2','zh_CN','接口2','2020-11-11 09:15:55','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1360,'AUTO_TEST','test2','zh_TW','接口2','2020-11-11 09:15:55','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1361,'AUTO_TEST','test1.1','en_US','接口1.1','2020-11-11 09:15:56','1','2024-10-15 00:55:55','58582660930338816',_binary ''),(1362,'AUTO_TEST','test1.1','zh_CN','接口1.1','2020-11-11 09:15:56','1','2024-10-15 00:55:55','58582660930338816',_binary ''),(1363,'AUTO_TEST','test1.1','zh_TW','接口1.1','2020-11-11 09:15:56','1','2024-10-15 00:55:55','58582660930338816',_binary ''),(1364,'PLANE_MODEL','AUTOTEST_PlAN','en_US','接口自动化','2020-11-11 09:16:56','1','2020-11-26 05:04:43','1',_binary ''),(1365,'PLANE_MODEL','AUTOTEST_PlAN','zh_CN','接口自动化','2020-11-11 09:16:56','1','2020-11-26 05:04:43','1',_binary ''),(1366,'PLANE_MODEL','AUTOTEST_PlAN','zh_TW','接口自动化','2020-11-11 09:16:56','1','2020-11-26 05:04:43','1',_binary ''),(1367,'LOAD_CAM_MODEL','AUTOTEST_CAM','en_US','自动化测试01','2020-11-11 09:17:02','1','2020-11-26 05:04:42','1',_binary ''),(1368,'LOAD_CAM_MODEL','AUTOTEST_CAM','zh_CN','自动化测试01','2020-11-11 09:17:02','1','2020-11-26 05:04:42','1',_binary ''),(1369,'LOAD_CAM_MODEL','AUTOTEST_CAM','zh_TW','自动化测试01','2020-11-11 09:17:02','1','2020-11-26 05:04:42','1',_binary ''),(1370,'LOAD_SPK_MODEL','AUTOTEST_SPK','en_US','自动化数据01','2020-11-11 09:17:11','1','2020-11-26 05:04:42','1',_binary ''),(1371,'LOAD_SPK_MODEL','AUTOTEST_SPK','zh_CN','自动化数据01','2020-11-11 09:17:11','1','2020-11-26 05:04:42','1',_binary ''),(1372,'LOAD_SPK_MODEL','AUTOTEST_SPK','zh_TW','自动化数据01','2020-11-11 09:17:11','1','2020-11-26 05:04:42','1',_binary ''),(1373,'LOAD_HNG_MODEL','auto_TESTHangar','en_US','接口自动化','2020-11-11 09:17:15','1','2020-11-26 05:04:43','1',_binary ''),(1374,'LOAD_HNG_MODEL','auto_TESTHangar','zh_CN','接口自动化','2020-11-11 09:17:15','1','2020-11-26 05:04:43','1',_binary ''),(1375,'LOAD_HNG_MODEL','auto_TESTHangar','zh_TW','接口自动化','2020-11-11 09:17:15','1','2020-11-26 05:04:43','1',_binary ''),(1376,'VIDEO_LINE','0','zh_TW','自定义','2020-11-12 02:26:51','1','2020-11-13 09:41:03','1',_binary '\0'),(1377,'VIDEO_LINE','0','en_US','define','2020-11-12 02:26:51','1','2020-11-13 09:41:03','1',_binary '\0'),(1378,'PLANE_MODEL','wrjxh050','zh_CN','M6FA','2020-11-13 01:46:42','1','2022-09-20 08:29:32','1',_binary '\0'),(1379,'PLANE_MODEL','wrjxh050','zh_TW','M6FA','2020-11-13 01:46:42','1','2022-09-20 08:29:32','1',_binary '\0'),(1380,'PLANE_MODEL','wrjxh050','en_US','M6FA','2020-11-13 01:46:42','1','2022-09-20 08:29:32','1',_binary '\0'),(1381,'LOAD_CAM_MODEL','xh011','zh_CN','天途摄像头','2020-11-13 01:48:36','1','2021-01-06 03:00:10','1',_binary '\0'),(1382,'LOAD_CAM_MODEL','xh011','zh_TW','天途摄像头','2020-11-13 01:48:36','1','2021-01-06 03:00:10','1',_binary '\0'),(1383,'LOAD_CAM_MODEL','xh011','en_US','tian tu camera','2020-11-13 01:48:36','1','2021-01-06 03:00:10','1',_binary '\0'),(1384,'ADAPT_MNF','sccj007','zh_CN','天途','2020-11-13 02:12:10','1','2021-09-22 07:00:05','70179580555558912',_binary '\0'),(1385,'ADAPT_MNF','sccj007','zh_TW','天圖','2020-11-13 02:12:10','1','2021-09-22 07:00:05','70179580555558912',_binary '\0'),(1386,'ADAPT_MNF','sccj007','en_US','tian tu','2020-11-13 02:12:10','1','2021-09-22 07:00:05','70179580555558912',_binary '\0'),(1387,'PLANE_MODEL','自动化','zh_CN','自动化','2020-11-14 02:53:47','1','2020-11-14 02:55:07',NULL,_binary ''),(1388,'PLANE_MODEL','自动化','zh_TW','自动化','2020-11-14 02:53:47','1','2020-11-14 02:55:07',NULL,_binary ''),(1389,'PLANE_MODEL','自动化','en_US','自动化','2020-11-14 02:53:47','1','2020-11-14 02:55:07',NULL,_binary ''),(1390,'PLANE_MODEL','AUTOTEST_load0','en_US','载荷管理自动化plan','2020-11-16 00:52:13','1','2020-11-26 03:33:50','1',_binary ''),(1391,'PLANE_MODEL','AUTOTEST_load0','zh_CN','载荷管理自动化plan','2020-11-16 00:52:13','1','2020-11-26 03:33:50','1',_binary ''),(1392,'PLANE_MODEL','AUTOTEST_load0','zh_TW','载荷管理自动化plan','2020-11-16 00:52:13','1','2020-11-26 03:33:50','1',_binary ''),(1393,'LOAD_CAM_MODEL','AUTOTEST_loadCAM','en_US','载荷管理自动化CAM','2020-11-16 00:52:14','1','2020-11-20 09:22:12','1',_binary ''),(1394,'LOAD_CAM_MODEL','AUTOTEST_loadCAM','zh_CN','载荷管理自动化CAM','2020-11-16 00:52:14','1','2020-11-20 09:22:12','1',_binary ''),(1395,'LOAD_CAM_MODEL','AUTOTEST_loadCAM','zh_TW','载荷管理自动化CAM','2020-11-16 00:52:14','1','2020-11-20 09:22:12','1',_binary ''),(1396,'LOAD_SPK_MODEL','AUTOTEST_SPK01','en_US','载荷管理自动化spk','2020-11-16 00:52:16','1','2020-11-20 09:22:12','1',_binary ''),(1397,'LOAD_SPK_MODEL','AUTOTEST_SPK01','zh_CN','载荷管理自动化spk','2020-11-16 00:52:16','1','2020-11-20 09:22:12','1',_binary ''),(1398,'LOAD_SPK_MODEL','AUTOTEST_SPK01','zh_TW','载荷管理自动化spk','2020-11-16 00:52:16','1','2020-11-20 09:22:12','1',_binary ''),(1399,'PLANE_MODEL','AutoTest_waypoint','en_US','航线管理自动化','2020-11-16 01:43:28','1','2020-12-01 01:11:26','1',_binary ''),(1400,'PLANE_MODEL','AutoTest_waypoint','zh_CN','航线管理自动化','2020-11-16 01:43:28','1','2020-12-01 01:11:26','1',_binary ''),(1401,'PLANE_MODEL','AutoTest_waypoint','zh_TW','航线管理自动化','2020-11-16 01:43:28','1','2020-12-01 01:11:26','1',_binary ''),(1402,'LOAD_CAM_MODEL','AutoTest_CAM','en_US','摄像头表单自动化','2020-11-16 01:43:29','1','2024-09-11 01:45:01','58582660930338816',_binary ''),(1403,'LOAD_CAM_MODEL','AutoTest_CAM','zh_CN','摄像头表单自动化','2020-11-16 01:43:29','1','2024-09-11 01:45:01','58582660930338816',_binary ''),(1404,'LOAD_CAM_MODEL','AutoTest_CAM','zh_TW','摄像头表单自动化','2020-11-16 01:43:29','1','2024-09-11 01:45:01','58582660930338816',_binary ''),(1405,'VIDEO_LINE','pull','zh_CN','http://wwww.....cccc','2020-11-16 02:04:36','1','2020-11-16 02:10:45',NULL,_binary ''),(1406,'VIDEO_LINE','pull','zh_TW','pull','2020-11-16 02:04:36','1','2020-11-16 02:10:45',NULL,_binary ''),(1407,'VIDEO_LINE','pull','en_US','pull','2020-11-16 02:04:36','1','2020-11-16 02:10:45',NULL,_binary ''),(1408,'LOAD_CAM_MODEL','testcode','zh_CN','123','2020-11-16 02:17:43','1','2020-11-16 02:17:48',NULL,_binary ''),(1409,'LOAD_CAM_MODEL','testcode','zh_TW','123','2020-11-16 02:17:43','1','2020-11-16 02:17:48',NULL,_binary ''),(1410,'LOAD_CAM_MODEL','testcode','en_US','123','2020-11-16 02:17:43','1','2020-11-16 02:17:48',NULL,_binary ''),(1411,'LOAD_CAM_MODEL','AUTOtest_CAM01','en_US','自动化测试01','2020-11-16 02:20:23','1','2020-11-17 00:58:30','1',_binary ''),(1412,'LOAD_CAM_MODEL','AUTOtest_CAM01','zh_CN','自动化测试01','2020-11-16 02:20:23','1','2020-11-17 00:58:30','1',_binary ''),(1413,'LOAD_CAM_MODEL','AUTOtest_CAM01','zh_TW','自动化测试01','2020-11-16 02:20:23','1','2020-11-17 00:58:30','1',_binary ''),(1414,'PLANE_MODEL','AUTOTEST_PlAN1','en_US','自动化数据01','2020-11-16 02:20:59','1','2020-11-16 03:24:03','1',_binary ''),(1415,'PLANE_MODEL','AUTOTEST_PlAN1','zh_CN','自动化数据01','2020-11-16 02:20:59','1','2020-11-16 03:24:03','1',_binary ''),(1416,'PLANE_MODEL','AUTOTEST_PlAN1','zh_TW','自动化数据01','2020-11-16 02:20:59','1','2020-11-16 03:24:03','1',_binary ''),(1417,'LOAD_SPK_MODEL','AUTOTEST_SPK1','en_US','自动化数据01','2020-11-16 02:39:17','1','2020-11-16 03:24:02','1',_binary ''),(1418,'LOAD_SPK_MODEL','AUTOTEST_SPK1','zh_CN','自动化数据01','2020-11-16 02:39:17','1','2020-11-16 03:24:02','1',_binary ''),(1419,'LOAD_SPK_MODEL','AUTOTEST_SPK1','zh_TW','自动化数据01','2020-11-16 02:39:17','1','2020-11-16 03:24:02','1',_binary ''),(1420,'LOAD_HNG_MODEL','auto_TESTHangar01','en_US','自动化01','2020-11-16 02:39:22','1','2020-11-16 03:23:01',NULL,_binary ''),(1421,'LOAD_HNG_MODEL','auto_TESTHangar01','zh_CN','自动化01','2020-11-16 02:39:22','1','2020-11-16 03:23:01',NULL,_binary ''),(1422,'LOAD_HNG_MODEL','auto_TESTHangar01','zh_TW','自动化01','2020-11-16 02:39:22','1','2020-11-16 03:23:01',NULL,_binary ''),(1423,'DEV_ACTION_MODEL','stopRecord','zh_CN','停止录像','2020-11-16 07:29:26','1',NULL,NULL,_binary '\0'),(1424,'DEV_ACTION_MODEL','stopRecord','zh_TW','停止录像','2020-11-16 07:29:26','1',NULL,NULL,_binary '\0'),(1425,'DEV_ACTION_MODEL','stopRecord','en_US','stop record','2020-11-16 07:29:26','1',NULL,NULL,_binary '\0'),(1426,'DEV_ACTION_MODEL','uavYaw','en_US','uav yaw','2020-11-16 07:29:53','1',NULL,NULL,_binary '\0'),(1427,'DEV_ACTION_MODEL','uavYaw','zh_CN','偏航角','2020-11-16 07:29:53','1',NULL,NULL,_binary '\0'),(1428,'DEV_ACTION_MODEL','uavYaw','zh_TW','偏航角','2020-11-16 07:29:53','1',NULL,NULL,_binary '\0'),(1429,'DEV_ACTION_MODEL','yaw','zh_CN','角度','2020-11-16 07:30:22','1',NULL,NULL,_binary '\0'),(1430,'DEV_ACTION_MODEL','yaw','zh_TW','角度','2020-11-16 07:30:22','1',NULL,NULL,_binary '\0'),(1431,'DEV_ACTION_MODEL','yaw','en_US','yaw','2020-11-16 07:30:22','1',NULL,NULL,_binary '\0'),(1432,'DEV_ACTION_MODEL','cameraPanControl','zh_CN','云台转向','2020-11-16 07:31:13','1',NULL,NULL,_binary '\0'),(1433,'DEV_ACTION_MODEL','cameraPanControl','zh_TW','云台转向','2020-11-16 07:31:13','1',NULL,NULL,_binary '\0'),(1434,'DEV_ACTION_MODEL','cameraPanControl','en_US','camera pan control','2020-11-16 07:31:13','1',NULL,NULL,_binary '\0'),(1435,'DEV_ACTION_MODEL','cameraYaw','en_US','cameraYaw','2020-11-16 07:32:04','1',NULL,NULL,_binary '\0'),(1436,'DEV_ACTION_MODEL','cameraYaw','zh_CN','平移角','2020-11-16 07:32:04','1',NULL,NULL,_binary '\0'),(1437,'DEV_ACTION_MODEL','cameraYaw','zh_TW','平移角','2020-11-16 07:32:04','1',NULL,NULL,_binary '\0'),(1438,'DEV_ACTION_MODEL','cameraPitch','en_US','cameraPitch','2020-11-16 07:32:33','1',NULL,NULL,_binary '\0'),(1439,'DEV_ACTION_MODEL','cameraPitch','zh_CN','俯仰角','2020-11-16 07:32:33','1',NULL,NULL,_binary '\0'),(1440,'DEV_ACTION_MODEL','cameraPitch','zh_TW','俯仰角','2020-11-16 07:32:33','1',NULL,NULL,_binary '\0'),(1441,'DEV_ACTION_MODEL','cameraRoll','en_US','cameraRoll','2020-11-16 07:33:05','1',NULL,NULL,_binary '\0'),(1442,'DEV_ACTION_MODEL','cameraRoll','zh_CN','横滚角','2020-11-16 07:33:05','1',NULL,NULL,_binary '\0'),(1443,'DEV_ACTION_MODEL','cameraRoll','zh_TW','横滚角','2020-11-16 07:33:05','1',NULL,NULL,_binary '\0'),(1444,'DEV_ACTION_MODEL','startRecord','en_US','start record','2020-11-16 07:33:40','1',NULL,NULL,_binary '\0'),(1445,'DEV_ACTION_MODEL','startRecord','zh_CN','开始录像','2020-11-16 07:33:40','1',NULL,NULL,_binary '\0'),(1446,'DEV_ACTION_MODEL','startRecord','zh_TW','开始录像','2020-11-16 07:33:40','1',NULL,NULL,_binary '\0'),(1447,'DEV_ACTION_MODEL','videoFormat','en_US','video format','2020-11-16 07:34:12','1','2023-05-19 03:26:11','173818970422378496',_binary '\0'),(1448,'DEV_ACTION_MODEL','videoFormat','zh_CN','视频格式','2020-11-16 07:34:12','1','2023-05-19 03:26:11','173818970422378496',_binary '\0'),(1449,'DEV_ACTION_MODEL','videoFormat','zh_TW','視頻格式','2020-11-16 07:34:12','1','2023-05-19 03:26:11','173818970422378496',_binary '\0'),(1450,'DEV_ACTION_MODEL','videoResolution','en_US','video resolution','2020-11-16 07:34:35','1','2023-05-19 03:26:52','173818970422378496',_binary '\0'),(1451,'DEV_ACTION_MODEL','videoResolution','zh_CN','分辨率','2020-11-16 07:34:35','1','2023-05-19 03:26:52','173818970422378496',_binary '\0'),(1452,'DEV_ACTION_MODEL','videoResolution','zh_TW','分辨率','2020-11-16 07:34:35','1','2023-05-19 03:26:52','173818970422378496',_binary '\0'),(1453,'DEV_ACTION_MODEL','photo','en_US','Take Photo','2020-11-16 07:34:57','1','2021-03-10 07:02:43','1',_binary '\0'),(1454,'DEV_ACTION_MODEL','photo','zh_CN','拍照','2020-11-16 07:34:57','1','2021-03-10 07:02:43','1',_binary '\0'),(1455,'DEV_ACTION_MODEL','photo','zh_TW','拍照','2020-11-16 07:34:57','1','2021-03-10 07:02:43','1',_binary '\0'),(1456,'DEV_ACTION_MODEL','picFormat','en_US','picture format','2020-11-16 07:35:16','1','2023-05-08 07:07:57','173818970422378496',_binary '\0'),(1457,'DEV_ACTION_MODEL','picFormat','zh_CN','照片格式','2020-11-16 07:35:16','1','2023-05-08 07:07:57','173818970422378496',_binary '\0'),(1458,'DEV_ACTION_MODEL','picFormat','zh_TW','照片格式','2020-11-16 07:35:16','1','2023-05-08 07:07:57','173818970422378496',_binary '\0'),(1459,'DEV_ACTION_MODEL','hover','en_US','hover','2020-11-16 07:35:48','1',NULL,NULL,_binary '\0'),(1460,'DEV_ACTION_MODEL','hover','zh_CN','悬停','2020-11-16 07:35:48','1',NULL,NULL,_binary '\0'),(1461,'DEV_ACTION_MODEL','hover','zh_TW','悬停','2020-11-16 07:35:48','1',NULL,NULL,_binary '\0'),(1462,'DEV_ACTION_MODEL','hoverTime','en_US','hoverTime','2020-11-16 07:36:09','1',NULL,NULL,_binary '\0'),(1463,'DEV_ACTION_MODEL','hoverTime','zh_CN','时长','2020-11-16 07:36:09','1',NULL,NULL,_binary '\0'),(1464,'DEV_ACTION_MODEL','hoverTime','zh_TW','时长','2020-11-16 07:36:09','1',NULL,NULL,_binary '\0'),(1465,'PLANE_MODEL','1122','zh_CN','1122','2020-11-16 08:31:45','1','2020-11-16 08:32:39',NULL,_binary ''),(1466,'PLANE_MODEL','1122','zh_TW','1122','2020-11-16 08:31:45','1','2020-11-16 08:32:39',NULL,_binary ''),(1467,'PLANE_MODEL','1122','en_US','1122','2020-11-16 08:31:45','1','2020-11-16 08:32:39',NULL,_binary ''),(1468,'PLANE_MODEL','2233','zh_CN','2233','2020-11-16 08:32:04','1','2020-11-16 08:32:35',NULL,_binary ''),(1469,'PLANE_MODEL','2233','zh_TW','2233','2020-11-16 08:32:04','1','2020-11-16 08:32:35',NULL,_binary ''),(1470,'PLANE_MODEL','2233','en_US','2233','2020-11-16 08:32:04','1','2020-11-16 08:32:35',NULL,_binary ''),(1471,'PLANE_MODEL','3344','zh_CN','3344','2020-11-16 08:32:25','1','2020-11-16 08:32:32',NULL,_binary ''),(1472,'PLANE_MODEL','3344','zh_TW','3344','2020-11-16 08:32:25','1','2020-11-16 08:32:32',NULL,_binary ''),(1473,'PLANE_MODEL','3344','en_US','3344','2020-11-16 08:32:25','1','2020-11-16 08:32:32',NULL,_binary ''),(1474,'AUTO','test33','en_US','接口33','2020-11-17 04:16:01','1',NULL,NULL,_binary '\0'),(1475,'AUTO','test33','zh_CN','接口33','2020-11-17 04:16:01','1',NULL,NULL,_binary '\0'),(1476,'AUTO','test33','zh_TW','接口33','2020-11-17 04:16:01','1',NULL,NULL,_binary '\0'),(1477,'AUTO_TEST','test1.2','en_US','接口1.2','2020-11-17 06:04:20','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1478,'AUTO_TEST','test1.2','zh_CN','接口1.2','2020-11-17 06:04:20','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1479,'AUTO_TEST','test1.2','zh_TW','接口1.2','2020-11-17 06:04:20','1','2024-10-15 00:55:56','58582660930338816',_binary ''),(1480,'AUTO_TEST','AUTO_TEST','en_US','接口1.21','2020-11-17 06:07:34','1','2020-11-17 06:07:53',NULL,_binary ''),(1481,'AUTO_TEST','AUTO_TEST','zh_CN','接口1.21','2020-11-17 06:07:34','1','2020-11-17 06:07:53',NULL,_binary ''),(1482,'AUTO_TEST','AUTO_TEST','zh_TW','接口1.21','2020-11-17 06:07:34','1','2020-11-17 06:07:53',NULL,_binary ''),(1483,'AUTO_TEST','test33','en_US','接口1','2020-11-17 06:20:39','1','2020-11-17 06:21:18',NULL,_binary ''),(1484,'AUTO_TEST','test33','zh_CN','接口1','2020-11-17 06:20:39','1','2020-11-17 06:21:18',NULL,_binary ''),(1485,'AUTO_TEST','test33','zh_TW','接口1','2020-11-17 06:20:39','1','2020-11-17 06:21:18',NULL,_binary ''),(1486,'AUTO_TEST3','test1','en_US','接口0','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1',_binary ''),(1487,'AUTO_TEST3','test1','zh_CN','接口0','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1',_binary ''),(1488,'AUTO_TEST3','test1','zh_TW','接口0','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1',_binary ''),(1489,'AUTO_TEST3','test2','en_US','接口2','2020-11-18 02:28:03','1','2020-11-18 02:28:08',NULL,_binary ''),(1490,'AUTO_TEST3','test2','zh_CN','接口2','2020-11-18 02:28:03','1','2020-11-18 02:28:08',NULL,_binary ''),(1491,'AUTO_TEST3','test2','zh_TW','接口2','2020-11-18 02:28:03','1','2020-11-18 02:28:08',NULL,_binary ''),(1492,'AUTO_TEST3','test1.1','en_US','接口1.2','2020-11-18 02:28:04','1','2020-11-18 02:28:08','1',_binary ''),(1493,'AUTO_TEST3','test1.1','zh_CN','接口1.2','2020-11-18 02:28:04','1','2020-11-18 02:28:08','1',_binary ''),(1494,'AUTO_TEST3','test1.1','zh_TW','接口1.1','2020-11-18 02:28:04','1','2020-11-18 02:28:08',NULL,_binary ''),(1495,'PLANE_MODEL','AutoTest_waypoint01','en_US','航线管理自动化01','2020-11-19 07:09:40','1','2020-11-26 01:05:28','1',_binary ''),(1496,'PLANE_MODEL','AutoTest_waypoint01','zh_CN','航线管理自动化01','2020-11-19 07:09:40','1','2020-11-26 01:05:28','1',_binary ''),(1497,'PLANE_MODEL','AutoTest_waypoint01','zh_TW','航线管理自动化01','2020-11-19 07:09:40','1','2020-11-26 01:05:28','1',_binary ''),(1498,'LOAD_CAM_MODEL','AutoTest_CAM01','en_US','航线管理自动化CAM01','2020-11-19 07:10:55','1','2020-11-25 05:04:46','1',_binary ''),(1499,'LOAD_CAM_MODEL','AutoTest_CAM01','zh_CN','航线管理自动化CAM01','2020-11-19 07:10:55','1','2020-11-25 05:04:46','1',_binary ''),(1500,'LOAD_CAM_MODEL','AutoTest_CAM01','zh_TW','航线管理自动化CAM01','2020-11-19 07:10:55','1','2020-11-25 05:04:46','1',_binary ''),(1501,'PLANE_MODEL','wurenji','zh_CN','wurenji','2020-11-20 03:58:02','1','2020-11-20 04:02:02',NULL,_binary ''),(1502,'PLANE_MODEL','wurenji','zh_TW','wurenji','2020-11-20 03:58:02','1','2020-11-20 04:02:02',NULL,_binary ''),(1503,'PLANE_MODEL','wurenji','en_US','wurenji','2020-11-20 03:58:02','1','2020-11-20 04:02:02',NULL,_binary ''),(1504,'PLANE_MODEL','AUTOTEST_planet','en_US','无人机管理自动化','2020-11-20 04:01:28','1','2020-11-23 05:04:48','1',_binary ''),(1505,'PLANE_MODEL','AUTOTEST_planet','zh_CN','无人机管理自动化','2020-11-20 04:01:28','1','2020-11-23 05:04:48','1',_binary ''),(1506,'PLANE_MODEL','AUTOTEST_planet','zh_TW','无人机管理自动化','2020-11-20 04:01:28','1','2020-11-23 05:04:48','1',_binary ''),(1507,'LOAD_SPK_MODEL','SPK_TEST','zh_CN','喊话器01','2020-11-20 05:33:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1508,'LOAD_SPK_MODEL','SPK_TEST','zh_TW','喊话器01','2020-11-20 05:33:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1509,'LOAD_SPK_MODEL','SPK_TEST','en_US','喊话器01','2020-11-20 05:33:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1510,'PLANE_MODEL','TESTPLAN','zh_CN','无人机TEST','2020-11-20 07:26:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1511,'PLANE_MODEL','TESTPLAN','zh_TW','无人机TEST','2020-11-20 07:26:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1512,'PLANE_MODEL','TESTPLAN','en_US','无人机TEST','2020-11-20 07:26:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1513,'LOAD_CAM_MODEL','CAMcode','zh_CN','摄像头CAM','2020-11-20 07:31:57','1','2020-11-20 07:32:32',NULL,_binary ''),(1514,'LOAD_CAM_MODEL','CAMcode','zh_TW','摄像头CAM','2020-11-20 07:31:57','1','2020-11-20 07:32:32',NULL,_binary ''),(1515,'LOAD_CAM_MODEL','CAMcode','en_US','摄像头CAM','2020-11-20 07:31:57','1','2020-11-20 07:32:32',NULL,_binary ''),(1516,'LOAD_CAM_MODEL','TESTCAM','zh_CN','测试摄像头','2020-11-20 07:33:15','1','2020-11-23 05:04:47',NULL,_binary ''),(1517,'LOAD_CAM_MODEL','TESTCAM','zh_TW','测试摄像头','2020-11-20 07:33:15','1','2020-11-23 05:04:47',NULL,_binary ''),(1518,'LOAD_CAM_MODEL','TESTCAM','en_US','测试摄像头','2020-11-20 07:33:15','1','2020-11-23 05:04:47',NULL,_binary ''),(1519,'LOAD_SPK_MODEL','SPKTEST','zh_CN','测试喊话器','2020-11-20 07:34:48','1','2020-11-23 05:04:47',NULL,_binary ''),(1520,'LOAD_SPK_MODEL','SPKTEST','zh_TW','测试喊话器','2020-11-20 07:34:48','1','2020-11-23 05:04:47',NULL,_binary ''),(1521,'LOAD_SPK_MODEL','SPKTEST','en_US','测试喊话器','2020-11-20 07:34:48','1','2020-11-23 05:04:47',NULL,_binary ''),(1522,'PLANE_MODEL','AutoTest_data','en_US','表单自动化','2020-11-23 02:11:30','1','2024-09-11 01:45:05','58582660930338816',_binary ''),(1523,'PLANE_MODEL','AutoTest_data','zh_CN','表单自动化','2020-11-23 02:11:30','1','2024-09-11 01:45:05','58582660930338816',_binary ''),(1524,'PLANE_MODEL','AutoTest_data','zh_TW','表单自动化','2020-11-23 02:11:30','1','2024-09-11 01:45:05','58582660930338816',_binary ''),(1525,'LOAD_SPK_MODEL','AutoTest_SPK','en_US','喊话器表单自动化','2020-11-23 03:13:07','1','2024-09-11 01:45:01','58582660930338816',_binary ''),(1526,'LOAD_SPK_MODEL','AutoTest_SPK','zh_CN','喊话器表单自动化','2020-11-23 03:13:07','1','2024-09-11 01:45:01','58582660930338816',_binary ''),(1527,'LOAD_SPK_MODEL','AutoTest_SPK','zh_TW','喊话器表单自动化','2020-11-23 03:13:07','1','2024-09-11 01:45:01','58582660930338816',_binary ''),(1528,'LOAD_HNG_MODEL','AutoTest_Hangar','en_US','自动化机库管理','2020-11-23 03:14:29','1','2024-09-11 02:14:27','58582660930338816',_binary '\0'),(1529,'LOAD_HNG_MODEL','AutoTest_Hangar','zh_CN','自动化机库管理','2020-11-23 03:14:29','1','2024-09-11 02:14:27','58582660930338816',_binary '\0'),(1530,'LOAD_HNG_MODEL','AutoTest_Hangar','zh_TW','自动化机库管理','2020-11-23 03:14:29','1','2024-09-11 02:14:27','58582660930338816',_binary '\0'),(1531,'LOAD_HNG_MODEL','HGR23','zh_CN','机库23','2020-11-23 06:10:16','1','2020-11-24 05:04:47',NULL,_binary ''),(1532,'LOAD_HNG_MODEL','HGR23','zh_TW','机库23','2020-11-23 06:10:16','1','2020-11-24 05:04:47',NULL,_binary ''),(1533,'LOAD_HNG_MODEL','HGR23','en_US','机库23','2020-11-23 06:10:16','1','2020-11-24 05:04:47',NULL,_binary ''),(1534,'PLANE_MODEL','AutoTest_hanger','en_US','机库管理自动化','2020-11-23 07:10:19','1','2020-12-28 08:00:26','1',_binary ''),(1535,'PLANE_MODEL','AutoTest_hanger','zh_CN','机库管理自动化','2020-11-23 07:10:19','1','2020-12-28 08:00:26','1',_binary ''),(1536,'PLANE_MODEL','AutoTest_hanger','zh_TW','机库管理自动化','2020-11-23 07:10:19','1','2020-12-28 08:00:26','1',_binary ''),(1537,'PLANE_MODEL','AUTOTEST_mission','en_US','作业管理自动化','2020-11-26 01:30:53','1','2021-03-03 01:59:47','1',_binary ''),(1538,'PLANE_MODEL','AUTOTEST_mission','zh_CN','作业管理自动化','2020-11-26 01:30:53','1','2021-03-03 01:59:47','1',_binary ''),(1539,'PLANE_MODEL','AUTOTEST_mission','zh_TW','作业管理自动化','2020-11-26 01:30:53','1','2021-03-03 01:59:47','1',_binary ''),(1540,'LOAD_CAM_MODEL','AUTOTEST_CAMmisson','en_US','作业管理自动化CAM','2020-11-26 01:37:08','1','2020-11-27 06:53:18','1',_binary ''),(1541,'LOAD_CAM_MODEL','AUTOTEST_CAMmisson','zh_CN','作业管理自动化CAM','2020-11-26 01:37:08','1','2020-11-27 06:53:18','1',_binary ''),(1542,'LOAD_CAM_MODEL','AUTOTEST_CAMmisson','zh_TW','作业管理自动化CAM','2020-11-26 01:37:08','1','2020-11-27 06:53:18','1',_binary ''),(1543,'LOAD_SPK_MODEL','AUTOTEST_SPKmisson','en_US','作业管理自动化spk','2020-11-26 01:41:54','1','2020-11-26 01:48:20','1',_binary ''),(1544,'LOAD_SPK_MODEL','AUTOTEST_SPKmisson','zh_CN','作业管理自动化spk','2020-11-26 01:41:54','1','2020-11-26 01:48:20','1',_binary ''),(1545,'LOAD_SPK_MODEL','AUTOTEST_SPKmisson','zh_TW','作业管理自动化spk','2020-11-26 01:41:54','1','2020-11-26 01:48:20','1',_binary ''),(1546,'LOAD_SPK_MODEL','SPK_V1','zh_CN','喊话器V1','2020-11-26 01:44:03','1','2020-11-26 01:49:57',NULL,_binary ''),(1547,'LOAD_SPK_MODEL','SPK_V1','zh_TW','喊话器V1','2020-11-26 01:44:03','1','2020-11-26 01:49:57',NULL,_binary ''),(1548,'LOAD_SPK_MODEL','SPK_V1','en_US','喊话器V1','2020-11-26 01:44:03','1','2020-11-26 01:49:57',NULL,_binary ''),(1549,'LOAD_HNG_MODEL','AUTO_TESTmisson','en_US','作业管理自动化机库','2020-11-26 01:47:52','1','2020-11-26 01:49:57',NULL,_binary ''),(1550,'LOAD_HNG_MODEL','AUTO_TESTmisson','zh_CN','作业管理自动化机库','2020-11-26 01:47:52','1','2020-11-26 01:49:57',NULL,_binary ''),(1551,'LOAD_HNG_MODEL','AUTO_TESTmisson','zh_TW','作业管理自动化机库','2020-11-26 01:47:52','1','2020-11-26 01:49:57',NULL,_binary ''),(1552,'PLANE_MODEL','AutoTest_load','en_US','载荷管理自动化','2020-11-26 03:33:53','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1553,'PLANE_MODEL','AutoTest_load','zh_CN','载荷管理自动化','2020-11-26 03:33:53','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1554,'PLANE_MODEL','AutoTest_load','zh_TW','载荷管理自动化','2020-11-26 03:33:53','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1555,'LOAD_HNG_MODEL','jik001','zh_CN','机库1','2020-11-26 07:36:31','1','2020-11-27 01:00:58',NULL,_binary ''),(1556,'LOAD_HNG_MODEL','jik001','zh_TW','机库1','2020-11-26 07:36:31','1','2020-11-27 01:00:58',NULL,_binary ''),(1557,'LOAD_HNG_MODEL','jik001','en_US','jik001','2020-11-26 07:36:31','1','2020-11-27 01:00:58',NULL,_binary ''),(1558,'LOAD_CAM_MODEL','AutoTest_loadCAM','en_US','载荷管理自动化','2020-11-26 08:10:51','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1559,'LOAD_CAM_MODEL','AutoTest_loadCAM','zh_CN','载荷管理自动化','2020-11-26 08:10:51','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1560,'LOAD_CAM_MODEL','AutoTest_loadCAM','zh_TW','载荷管理自动化','2020-11-26 08:10:51','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1561,'LOAD_HNG_MODEL','jiku001','zh_CN','机库1','2020-11-27 01:11:36','1',NULL,NULL,_binary '\0'),(1562,'LOAD_HNG_MODEL','jiku001','zh_TW','机库1','2020-11-27 01:11:36','1',NULL,NULL,_binary '\0'),(1563,'LOAD_HNG_MODEL','jiku001','en_US','jiku001','2020-11-27 01:11:36','1',NULL,NULL,_binary '\0'),(1564,'LOAD_SPK_MODEL','AutoTestLoad_SPK','en_US','载荷管理自动化','2020-11-27 01:31:47','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1565,'LOAD_SPK_MODEL','AutoTestLoad_SPK','zh_CN','载荷管理自动化','2020-11-27 01:31:47','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1566,'LOAD_SPK_MODEL','AutoTestLoad_SPK','zh_TW','载荷管理自动化','2020-11-27 01:31:47','1','2024-09-09 01:36:44','58582660930338816',_binary ''),(1567,'PLANE_MODEL','54hhh','zh_CN','X77','2020-11-27 02:34:26','1',NULL,NULL,_binary '\0'),(1568,'PLANE_MODEL','54hhh','zh_TW','x77','2020-11-27 02:34:26','1',NULL,NULL,_binary '\0'),(1569,'PLANE_MODEL','54hhh','en_US','eee','2020-11-27 02:34:26','1',NULL,NULL,_binary '\0'),(1570,'LOAD_CAM_MODEL','AUTOTEST_missonCAM','en_US','作业管理自动化CAM1','2020-11-27 06:54:42','1','2023-03-02 02:31:32',NULL,_binary ''),(1571,'LOAD_CAM_MODEL','AUTOTEST_missonCAM','zh_CN','作业管理自动化CAM1','2020-11-27 06:54:42','1','2023-03-02 02:31:32',NULL,_binary ''),(1572,'LOAD_CAM_MODEL','AUTOTEST_missonCAM','zh_TW','作业管理自动化CAM1','2020-11-27 06:54:42','1','2023-03-02 02:31:32',NULL,_binary ''),(1573,'LOAD_HNG_MODEL','ttest','zh_CN','ttest','2020-11-30 03:26:19','1','2020-11-30 07:07:33',NULL,_binary ''),(1574,'LOAD_HNG_MODEL','ttest','zh_TW','ttest','2020-11-30 03:26:19','1','2020-11-30 07:07:33',NULL,_binary ''),(1575,'LOAD_HNG_MODEL','ttest','en_US','ttest','2020-11-30 03:26:19','1','2020-11-30 07:07:33',NULL,_binary ''),(1576,'PLANE_MODEL','wrjxh051','en_US','inspire2','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1',_binary '\0'),(1577,'PLANE_MODEL','wrjxh051','zh_TW','悟2','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1',_binary '\0'),(1578,'PLANE_MODEL','wrjxh051','zh_CN','悟2','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1',_binary '\0'),(1579,'MWS','mws-file','zh_CN','文件','2020-12-08 11:44:52','1','2021-09-22 06:57:17','70179580555558912',_binary '\0'),(1580,'MWS','mws-file','zh_TW','文件','2020-12-08 11:44:52','1','2021-09-22 06:57:17','70179580555558912',_binary '\0'),(1581,'MWS','mws-file','en_US','file','2020-12-08 11:44:52','1','2021-09-22 06:57:17','70179580555558912',_binary '\0'),(1582,'MWS','file-zip','zh_CN','zip','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1583,'MWS','file-zip','zh_TW','zip','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1584,'MWS','file-zip','en_US','zip','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1585,'MWS','mws-image','zh_CN','图片','2020-12-08 11:46:33','1','2021-09-22 06:57:10','70179580555558912',_binary '\0'),(1586,'MWS','mws-image','zh_TW','圖片','2020-12-08 11:46:33','1','2021-09-22 06:57:10','70179580555558912',_binary '\0'),(1587,'MWS','mws-image','en_US','image','2020-12-08 11:46:33','1','2021-09-22 06:57:10','70179580555558912',_binary '\0'),(1588,'MWS','mws-video','zh_CN','视频','2020-12-08 11:47:10','1','2021-09-22 06:56:49','70179580555558912',_binary '\0'),(1589,'MWS','mws-video','zh_TW','視頻','2020-12-08 11:47:10','1','2021-09-22 06:56:49','70179580555558912',_binary '\0'),(1590,'MWS','mws-video','en_US','video','2020-12-08 11:47:10','1','2021-09-22 06:56:49','70179580555558912',_binary '\0'),(1591,'MWS','mws-sound','zh_CN','音频','2020-12-08 11:47:30','1','2021-09-22 06:57:04','70179580555558912',_binary '\0'),(1592,'MWS','mws-sound','zh_TW','音頻','2020-12-08 11:47:30','1','2021-09-22 06:57:04','70179580555558912',_binary '\0'),(1593,'MWS','mws-sound','en_US','sound','2020-12-08 11:47:30','1','2021-09-22 06:57:04','70179580555558912',_binary '\0'),(1594,'MWS','sound-wma','zh_CN','wma','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1595,'MWS','sound-wma','zh_TW','wma','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1596,'MWS','sound-wma','en_US','wma','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1597,'MWS','sound-mp3','zh_CN','mp3','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1598,'MWS','sound-mp3','zh_TW','mp3','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1599,'MWS','sound-mp3','en_US','mp3','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1600,'MWS','video-flv','zh_CN','flv','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1601,'MWS','video-flv','zh_TW','flv','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1602,'MWS','video-flv','en_US','flv','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1603,'MWS','image-png','zh_CN','png','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1604,'MWS','image-png','zh_TW','png','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1605,'MWS','image-png','en_US','png','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1606,'MWS','sound-wav','zh_CN','wav','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1607,'MWS','sound-wav','zh_TW','wav','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1608,'MWS','sound-wav','en_US','wav','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1609,'MWS','video-AVI','zh_CN','AVI','2020-12-08 12:49:04','1','2021-03-05 08:15:59','1',_binary '\0'),(1610,'MWS','video-AVI','zh_TW','AVI','2020-12-08 12:49:04','1','2021-03-05 08:15:59','1',_binary '\0'),(1611,'MWS','video-AVI','en_US','AVI','2020-12-08 12:49:04','1','2021-03-05 08:15:59','1',_binary '\0'),(1612,'MWS','video-avi','zh_CN','avi','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1613,'MWS','video-avi','zh_TW','avi','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1614,'MWS','video-avi','en_US','avi','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1615,'MWS','video-FLV','zh_CN','FLV','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1616,'MWS','video-FLV','zh_TW','FLV','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1617,'MWS','video-FLV','en_US','FLV','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1618,'MWS','video-MP4','zh_CN','MP4','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1619,'MWS','video-MP4','zh_TW','MP4','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1620,'MWS','video-MP4','en_US','MP4','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1621,'MWS','video-mp4','zh_CN','mp4','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1622,'MWS','video-mp4','zh_TW','mp4','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1623,'MWS','video-mp4','en_US','mp4','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1624,'MWS','image-JEPG','zh_CN','JEPG','2020-12-08 12:51:33','1','2021-03-05 08:15:59',NULL,_binary ''),(1625,'MWS','image-JEPG','zh_TW','JEPG','2020-12-08 12:51:33','1','2021-03-05 08:15:59',NULL,_binary ''),(1626,'MWS','image-JEPG','en_US','JEPG','2020-12-08 12:51:33','1','2021-03-05 08:15:59',NULL,_binary ''),(1627,'MWS','image-jepg','zh_CN','jpeg','2020-12-08 12:52:07','1','2021-03-05 08:15:59',NULL,_binary ''),(1628,'MWS','image-jepg','zh_TW','jpeg','2020-12-08 12:52:07','1','2021-03-05 08:15:59',NULL,_binary ''),(1629,'MWS','image-jepg','en_US','jpeg','2020-12-08 12:52:07','1','2021-03-05 08:15:59',NULL,_binary ''),(1630,'MWS','image-GIF','zh_CN','GIF','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1631,'MWS','image-GIF','zh_TW','GIF','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1632,'MWS','image-GIF','en_US','GIF','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1633,'MWS','image-jpg','zh_CN','jpg','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1634,'MWS','image-jpg','zh_TW','jpg','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1635,'MWS','image-jpg','en_US','jpg','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1636,'MWS','file-pdf','zh_CN','pdf','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1637,'MWS','file-pdf','zh_TW','pdf','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1638,'MWS','file-pdf','en_US','pdf','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1639,'MWS','file-txt','zh_CN','txt','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1640,'MWS','file-txt','zh_TW','txt','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1641,'MWS','file-txt','en_US','txt','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1642,'MWS','file-doc','zh_CN','doc','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1643,'MWS','file-doc','zh_TW','doc','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1644,'MWS','file-doc','en_US','doc','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1645,'MWS','file-docx','zh_CN','docx','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1646,'MWS','file-docx','zh_TW','docx','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1647,'MWS','file-docx','en_US','docx','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1648,'MWS','image-gif','zh_CN','gif','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1649,'MWS','image-gif','zh_TW','gif','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1650,'MWS','image-gif','en_US','gif','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1651,'MWS','image-BMP','zh_CN','BMP','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1652,'MWS','image-BMP','zh_TW','BMP','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1653,'MWS','image-BMP','en_US','BMP','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1654,'MWS','image-bmp','zh_CN','bmp','2020-12-09 01:46:15','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1655,'MWS','image-bmp','zh_TW','bmp','2020-12-09 01:46:15','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1656,'MWS','image-bmp','en_US','bmp','2020-12-09 01:46:15','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1657,'MWS','image-PNG','zh_CN','PNG','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1658,'MWS','image-PNG','zh_TW','PNG','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1659,'MWS','image-PNG','en_US','PNG','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1660,'MWS','image-JPG','zh_CN','JPG','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1661,'MWS','image-JPG','zh_TW','JPG','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1662,'MWS','image-JPG','en_US','JPG','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1663,'MWS','file-rar','zh_CN','rar','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1664,'MWS','file-rar','zh_TW','rar','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1665,'MWS','file-rar','en_US','rar','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1666,'MWS','file-gzip','zh_CN','gzip','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1667,'MWS','file-gzip','zh_TW','gzip','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1668,'MWS','file-gzip','en_US','gzip','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1669,'MWS','file-tar','zh_CN','tar','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1670,'MWS','file-tar','zh_TW','tar','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1671,'MWS','file-tar','en_US','tar','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1672,'MWS','file-7z','zh_CN','7z','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1673,'MWS','file-7z','zh_TW','7z','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1674,'MWS','file-7z','en_US','7z','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1675,'MWS','file-TXT','zh_CN','TXT','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1676,'MWS','file-TXT','zh_TW','TXT','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1677,'MWS','file-TXT','en_US','TXT','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1678,'MWS','image-jpeg','zh_CN','jpeg','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1679,'MWS','image-jpeg','zh_TW','jpeg','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1680,'MWS','image-jpeg','en_US','jpeg','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1681,'MWS','image-JPEG','zh_CN','JPEG','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1682,'MWS','image-JPEG','zh_TW','JPEG','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1683,'MWS','image-JPEG','en_US','JPEG','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1684,'PLANE_MODEL','AutoTest_plane','en_US','无人机管理自动化','2020-12-28 07:50:45','1','2024-09-09 01:35:02','58582660930338816',_binary ''),(1685,'PLANE_MODEL','AutoTest_plane','zh_CN','无人机管理自动化','2020-12-28 07:50:45','1','2024-09-09 01:35:02','58582660930338816',_binary ''),(1686,'PLANE_MODEL','AutoTest_plane','zh_TW','无人机管理自动化','2020-12-28 07:50:45','1','2024-09-09 01:35:02','58582660930338816',_binary ''),(1687,'APP_TYPE','INDUSTRY_APP','zh_CN','场景应用','2020-12-09 07:19:59','1','2020-12-28 02:47:38','1',_binary '\0'),(1688,'APP_TYPE','INDUSTRY_APP','zh_TW','場景應用','2020-12-09 07:19:59','1','2020-12-28 02:47:38','1',_binary '\0'),(1689,'APP_TYPE','INDUSTRY_APP','en_US','Scene application','2020-12-09 07:19:59','1','2020-12-28 02:47:38','1',_binary '\0'),(1690,'APP_TYPE','DATA_APP','zh_CN','数据应用','2020-12-09 07:20:42','1','2023-04-18 06:14:40','1',_binary '\0'),(1691,'APP_TYPE','DATA_APP','zh_TW','數據應用','2020-12-09 07:20:42','1','2023-04-18 06:14:40','1',_binary '\0'),(1692,'APP_TYPE','DATA_APP','en_US','data application','2020-12-09 07:20:42','1','2023-04-18 06:14:40','1',_binary '\0'),(1693,'APP_TYPE','VALUE_ADDED_APP','zh_CN','增值服务','2020-12-09 07:21:06','1','2023-04-18 06:14:40','1',_binary '\0'),(1694,'APP_TYPE','VALUE_ADDED_APP','zh_TW','增值服務','2020-12-09 07:21:06','1','2023-04-18 06:14:40','1',_binary '\0'),(1695,'APP_TYPE','VALUE_ADDED_APP','en_US','value-added services','2020-12-09 07:21:06','1','2023-04-18 06:14:40','1',_binary '\0'),(1696,'PLANE_MODEL','wrjxh052','zh_CN','M300','2021-01-15 10:59:28','1','2022-09-20 08:29:32','1',_binary '\0'),(1697,'PLANE_MODEL','wrjxh052','zh_TW','M300','2021-01-15 10:59:28','1','2022-09-20 08:29:32','1',_binary '\0'),(1698,'PLANE_MODEL','wrjxh052','en_US','M300','2021-01-15 10:59:28','1','2022-09-20 08:29:32','1',_binary '\0'),(1699,'MNF','sccj019','zh_CN','珠海紫燕无人飞行器有限公司','2021-01-19 06:37:24','1','2022-09-20 08:29:05','1',_binary '\0'),(1700,'MNF','sccj019','zh_TW','珠海紫燕无人飞行器有限公司','2021-01-19 06:37:24','1','2022-09-20 08:29:05','1',_binary '\0'),(1701,'MNF','sccj019','en_US','ziyan','2021-01-19 06:37:24','1','2022-09-20 08:29:05','1',_binary '\0'),(1702,'PLANE_SHAPE','xt004','zh_CN','无人直升机','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123',_binary '\0'),(1703,'PLANE_SHAPE','xt004','zh_TW','无人直升机','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123',_binary '\0'),(1704,'PLANE_SHAPE','xt004','en_US','helicopter','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123',_binary '\0'),(1705,'PLANE_MODEL','wrj053','zh_CN','河豚A1','2021-01-19 06:39:00','1','2021-01-19 06:39:08',NULL,_binary ''),(1706,'PLANE_MODEL','wrj053','zh_TW','河豚A1','2021-01-19 06:39:00','1','2021-01-19 06:39:08',NULL,_binary ''),(1707,'PLANE_MODEL','wrj053','en_US','A1','2021-01-19 06:39:00','1','2021-01-19 06:39:08',NULL,_binary ''),(1708,'PLANE_MODEL','wrjxh053','zh_CN','M2101','2021-01-19 06:39:19','1','2022-09-20 08:29:32','1',_binary '\0'),(1709,'PLANE_MODEL','wrjxh053','zh_TW','M2101','2021-01-19 06:39:19','1','2022-09-20 08:29:32','1',_binary '\0'),(1710,'PLANE_MODEL','wrjxh053','en_US','M2101','2021-01-19 06:39:19','1','2022-09-20 08:29:32','1',_binary '\0'),(1711,'ADAPT_MNF','sccj019','zh_CN','珠海紫燕无人飞行器有限公司','2021-01-23 02:21:16','1','2021-09-22 06:59:39','70179580555558912',_binary '\0'),(1712,'ADAPT_MNF','sccj019','zh_TW','珠海紫燕無人飛行器有限公司','2021-01-23 02:21:16','1','2021-09-22 06:59:39','70179580555558912',_binary '\0'),(1713,'ADAPT_MNF','sccj019','en_US','ziyan','2021-01-23 02:21:16','1','2021-09-22 06:59:39','70179580555558912',_binary '\0'),(1714,'LOAD_HNG_MODEL','jkxh010','zh_CN','S10','2021-02-01 08:55:58','291','2021-02-07 02:06:03','1',_binary '\0'),(1715,'LOAD_HNG_MODEL','jkxh010','zh_TW','S10','2021-02-01 08:55:58','291','2021-02-07 02:06:03','1',_binary '\0'),(1716,'LOAD_HNG_MODEL','jkxh010','en_US','S10','2021-02-01 08:55:58','291','2021-02-07 02:06:03','1',_binary '\0'),(1717,'LOAD_HNG_MODEL','jkxh011','zh_CN','复亚A30','2021-02-01 08:57:43','291','2021-02-07 02:05:38','1',_binary '\0'),(1718,'LOAD_HNG_MODEL','jkxh011','zh_TW','復亞A30','2021-02-01 08:57:43','291','2021-02-07 02:05:38','1',_binary '\0'),(1719,'LOAD_HNG_MODEL','jkxh011','en_US','foriaA30','2021-02-01 08:57:43','291','2021-02-07 02:05:38','1',_binary '\0'),(1720,'LOAD_HNG_MODEL','jkxh012','zh_CN','复亚A20','2021-02-01 08:58:41','291','2021-02-07 02:05:15','1',_binary '\0'),(1721,'LOAD_HNG_MODEL','jkxh012','zh_TW','復亞A20','2021-02-01 08:58:41','291','2021-02-07 02:05:15','1',_binary '\0'),(1722,'LOAD_HNG_MODEL','jkxh012','en_US','foriaA20','2021-02-01 08:58:41','291','2021-02-07 02:05:15','1',_binary '\0'),(1723,'LOAD_CAM_MODEL','xh013','zh_CN','Q30','2021-02-03 03:38:30','1',NULL,NULL,_binary '\0'),(1724,'LOAD_CAM_MODEL','xh013','zh_TW','Q30','2021-02-03 03:38:30','1',NULL,NULL,_binary '\0'),(1725,'LOAD_CAM_MODEL','xh013','en_US','Q30','2021-02-03 03:38:30','1',NULL,NULL,_binary '\0'),(1726,'AI_VIDEO','HEAD','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head','2021-02-03 07:34:57','1','2021-03-15 05:42:34','1',_binary '\0'),(1727,'AI_VIDEO','HEAD','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head','2021-02-03 07:34:57','1','2021-03-15 05:42:34','1',_binary '\0'),(1728,'AI_VIDEO','HEAD','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head','2021-02-03 07:34:57','1','2021-03-15 05:42:34','1',_binary '\0'),(1729,'AI_VIDEO','CAR','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car','2021-02-03 07:35:13','1','2021-03-15 05:42:06','1',_binary '\0'),(1730,'AI_VIDEO','CAR','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car','2021-02-03 07:35:13','1','2021-03-15 05:42:06','1',_binary '\0'),(1731,'AI_VIDEO','CAR','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car','2021-02-03 07:35:13','1','2021-03-15 05:42:06','1',_binary '\0'),(1732,'PLANE_MODEL','wrjxh054','zh_CN','翼龙2','2021-03-03 02:07:28','1','2021-09-22 07:09:13','70179580555558912',_binary '\0'),(1733,'PLANE_MODEL','wrjxh054','zh_TW','翼龍2','2021-03-03 02:07:28','1','2021-09-22 07:09:13','70179580555558912',_binary '\0'),(1734,'PLANE_MODEL','wrjxh054','en_US','yi long 2','2021-03-03 02:07:28','1','2021-09-22 07:09:13','70179580555558912',_binary '\0'),(1735,'LOAD_CAM_MODEL','xh014','zh_CN','光电吊舱','2021-03-03 02:24:03','1',NULL,NULL,_binary '\0'),(1736,'LOAD_CAM_MODEL','xh014','zh_TW','光电吊舱','2021-03-03 02:24:03','1',NULL,NULL,_binary '\0'),(1737,'LOAD_CAM_MODEL','xh014','en_US','光电吊舱','2021-03-03 02:24:03','1',NULL,NULL,_binary '\0'),(1738,'LOAD_CAM_MODEL','xh099','zh_CN','纵横光电吊舱','2021-03-03 05:33:51','1',NULL,NULL,_binary '\0'),(1739,'LOAD_CAM_MODEL','xh099','zh_TW','纵横光电吊舱','2021-03-03 05:33:51','1',NULL,NULL,_binary '\0'),(1740,'LOAD_CAM_MODEL','xh099','en_US','CAMERA JOUAV','2021-03-03 05:33:51','1',NULL,NULL,_binary '\0'),(1741,'DEV_ACTION_MODEL','zoom','zh_CN','变焦值','2021-03-10 07:13:17','1','2022-11-16 06:28:48','188243415207510016',_binary '\0'),(1742,'DEV_ACTION_MODEL','zoom','zh_TW','變焦值','2021-03-10 07:13:17','1','2022-11-16 06:28:48','188243415207510016',_binary '\0'),(1743,'DEV_ACTION_MODEL','zoom','en_US','Zoom value','2021-03-10 07:13:17','1','2022-11-16 06:28:48','188243415207510016',_binary '\0'),(1744,'LOAD_CAM_MODEL','xh100','zh_CN','tiantu1','2021-03-12 03:15:37','70213995537104896','2021-03-12 07:55:21','70213995537104896',_binary ''),(1745,'LOAD_CAM_MODEL','xh100','zh_TW','tiantu1','2021-03-12 03:15:37','70213995537104896','2021-03-12 07:55:21','70213995537104896',_binary ''),(1746,'LOAD_CAM_MODEL','xh100','en_US','tiantu1','2021-03-12 03:15:37','70213995537104896','2021-03-12 07:55:21','70213995537104896',_binary ''),(1747,'PLATFORM_TYPE','PLATFORM_CLOUD','en_US','China Mobile Link-Cloud','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1748,'PLATFORM_TYPE','PLATFORM_CLOUD','zh_CN','中移凌云平台','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1749,'PLATFORM_TYPE','PLATFORM_CLOUD','zh_TW','中移淩雲','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1750,'PLATFORM_TYPE','PLATFORM_OPEN','en_US','Open platform','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1751,'PLATFORM_TYPE','PLATFORM_OPEN','zh_CN','开放平台','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1752,'PLATFORM_TYPE','PLATFORM_OPEN','zh_TW','開放平臺','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1753,'PLATFORM_TYPE','PLATFORM_ADMIN','en_US','Operation platform','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1754,'PLATFORM_TYPE','PLATFORM_ADMIN','zh_CN','运营平台','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1755,'PLATFORM_TYPE','PLATFORM_ADMIN','zh_TW','運營平臺','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1756,'FEEDBACK_TYPE','OPTIMIZATION_SUGGESTIONS','en_US','Optimization suggestions','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1757,'FEEDBACK_TYPE','OPTIMIZATION_SUGGESTIONS','zh_CN','优化建议','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1758,'FEEDBACK_TYPE','OPTIMIZATION_SUGGESTIONS','zh_TW','優化建議','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1759,'FEEDBACK_TYPE','ABNORMAL_FUNCTION','en_US','Abnormal function','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1760,'FEEDBACK_TYPE','ABNORMAL_FUNCTION','zh_CN','功能异常','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1761,'FEEDBACK_TYPE','ABNORMAL_FUNCTION','zh_TW','功能異常','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1762,'FEEDBACK_TYPE','OTHER_FEEDBACK','en_US','Other feedback','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1763,'FEEDBACK_TYPE','OTHER_FEEDBACK','zh_CN','其他反馈','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1764,'FEEDBACK_TYPE','OTHER_FEEDBACK','zh_TW','其他反饋','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1765,'213','123213','zh_CN','213','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11',NULL,_binary ''),(1766,'213','123213','zh_TW','123','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11',NULL,_binary ''),(1767,'213','123213','en_US','213','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11',NULL,_binary ''),(1768,'test','test4','zh_CN','test1','2021-03-19 06:06:27','1','2021-03-19 06:06:41','1',_binary ''),(1769,'test','test4','zh_TW','test21','2021-03-19 06:06:27','1','2021-03-19 06:06:41','1',_binary ''),(1770,'test','test4','en_US','test31','2021-03-19 06:06:27','1','2021-03-19 06:06:41','1',_binary ''),(1771,'QUOTA_TYPE','LOAD_NUMBER','en_US','Loads of number','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1772,'QUOTA_TYPE','LOAD_NUMBER','zh_CN','载荷数量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1773,'QUOTA_TYPE','LOAD_NUMBER','zh_TW','載荷數量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1774,'QUOTA_TYPE','SUB_ACCOUNT_NUMBER','en_US','Sub account number','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1775,'QUOTA_TYPE','SUB_ACCOUNT_NUMBER','zh_CN','子账号数量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1776,'QUOTA_TYPE','SUB_ACCOUNT_NUMBER','zh_TW','子賬號數量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1777,'QUOTA_TYPE','AIR_LINE_NUMBER','en_US','Number of routes','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1778,'QUOTA_TYPE','AIR_LINE_NUMBER','zh_CN','航线数量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1779,'QUOTA_TYPE','AIR_LINE_NUMBER','zh_TW','航線數量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1780,'QUOTA_TYPE','UAV_NUMBER','en_US','Number of UAVs','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1781,'QUOTA_TYPE','UAV_NUMBER','zh_CN','无人机数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1782,'QUOTA_TYPE','UAV_NUMBER','zh_TW','無人機數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1783,'QUOTA_TYPE','HANGAR_NUMBER','en_US','Number of Hangars','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1784,'QUOTA_TYPE','HANGAR_NUMBER','zh_CN','机库数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1785,'QUOTA_TYPE','HANGAR_NUMBER','zh_TW','機庫數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1786,'QUOTA_TYPE','JOB_NUMBER','en_US','Number of jobs','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1787,'QUOTA_TYPE','JOB_NUMBER','zh_CN','作业数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1788,'QUOTA_TYPE','JOB_NUMBER','zh_TW','作業數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1789,'QUOTA_TYPE','UAV_ONLINE_NUMBER','en_US','Number of UAVs Online','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1790,'QUOTA_TYPE','UAV_ONLINE_NUMBER','zh_CN','无人机在线数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1791,'QUOTA_TYPE','UAV_ONLINE_NUMBER','zh_TW','無人機在線數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1792,'QUOTA_TYPE','TEMP_AIRSPACE_NUMBER','en_US','Number of temporary airspace','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1793,'QUOTA_TYPE','TEMP_AIRSPACE_NUMBER','zh_CN','临时空域数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1794,'QUOTA_TYPE','TEMP_AIRSPACE_NUMBER','zh_TW','臨時空域數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1795,'QUOTA_TYPE','HANGAR_ONLINE_NUMBER','en_US','Number of hangars Online','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1796,'QUOTA_TYPE','HANGAR_ONLINE_NUMBER','zh_CN','机库在线数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1797,'QUOTA_TYPE','HANGAR_ONLINE_NUMBER','zh_TW','機庫在線數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1798,'NJ_COMPANY','CHONGQINGNK','en_US','10','2021-03-19 07:06:15','1',NULL,NULL,_binary '\0'),(1799,'NJ_COMPANY','CHONGQINGNK','zh_CN','10','2021-03-19 07:06:15','1',NULL,NULL,_binary '\0'),(1800,'NJ_COMPANY','CHONGQINGNK','zh_TW','10','2021-03-19 07:06:15','1',NULL,NULL,_binary '\0'),(1801,'SCENCE_TYPE','LINE_INSPECTION','en_US','Line inspection','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1802,'SCENCE_TYPE','LINE_INSPECTION','zh_CN','线路巡检','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1803,'SCENCE_TYPE','LINE_INSPECTION','zh_TW','線路巡檢','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1804,'SCENCE_TYPE','RIVER_DETECTION','en_US','River detection','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1805,'SCENCE_TYPE','RIVER_DETECTION','zh_CN','河道检测','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1806,'SCENCE_TYPE','RIVER_DETECTION','zh_TW','河道檢測','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1807,'SCENCE_TYPE','ROAD_DETECTION','en_US','Road detection','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1808,'SCENCE_TYPE','ROAD_DETECTION','zh_CN','道路检测','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1809,'SCENCE_TYPE','ROAD_DETECTION','zh_TW','道路檢測','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1810,'SCENCE_TYPE','FARMLAND_SCENCE','en_US','Farmland scene','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1811,'SCENCE_TYPE','FARMLAND_SCENCE','zh_CN','农田场景','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1812,'SCENCE_TYPE','FARMLAND_SCENCE','zh_TW','農田場景','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1813,'SCENCE_TYPE','ROUTE_PLANNING','en_US','3D route planning','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1814,'SCENCE_TYPE','ROUTE_PLANNING','zh_CN','三维航线规划','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1815,'SCENCE_TYPE','ROUTE_PLANNING','zh_TW','三維航線規劃','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1816,'SCENCE_TYPE','OTHER_SCENCE','en_US','other','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1817,'SCENCE_TYPE','OTHER_SCENCE','zh_CN','其他','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1818,'SCENCE_TYPE','OTHER_SCENCE','zh_TW','其他','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1819,'NJ_VIDEO','视频1','zh_CN','https://live.demo.uavcmlc.com:18000/live/dq.flv','2021-03-19 07:19:45','1','2021-03-23 01:38:28','1',_binary ''),(1820,'NJ_VIDEO','视频1','zh_TW','https://live.demo.uavcmlc.com:18000/live/dq.flv','2021-03-19 07:19:45','1','2021-03-23 01:38:28','1',_binary ''),(1821,'NJ_VIDEO','视频1','en_US','https://live.demo.uavcmlc.com:18000/live/dq.flv','2021-03-19 07:19:45','1','2021-03-23 01:38:28','1',_binary ''),(1822,'NJ_VIDEO','视频一','en_US','webrtc://live.demo.uavcmlc.com:18000/live/nky002','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1',_binary '\0'),(1823,'NJ_VIDEO','视频一','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/nky002','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1',_binary '\0'),(1824,'NJ_VIDEO','视频一','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/nky002','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1',_binary '\0'),(1825,'MISSION_MANAGEMENT','FLIGHT_DETAIL_PAGE_URL','zh_CN','飞行监视详情','2021-03-31 09:22:03','89730635001757696','2021-04-01 00:48:57','89730635001757696',_binary '\0'),(1826,'MISSION_MANAGEMENT','FLIGHT_DETAIL_PAGE_URL','zh_TW','飛行監視詳情','2021-03-31 09:22:03','89730635001757696','2021-04-01 00:48:57','89730635001757696',_binary '\0'),(1827,'MISSION_MANAGEMENT','FLIGHT_DETAIL_PAGE_URL','en_US','Flight detail','2021-03-31 09:22:03','89730635001757696','2021-04-01 00:48:57','89730635001757696',_binary '\0'),(1828,'MISSION_MANAGEMENT','TIMING_MISSION_DETAIL_URL','zh_CN','定时作业详情','2021-03-31 09:22:56','89730635001757696','2021-04-01 00:49:25','89730635001757696',_binary '\0'),(1829,'MISSION_MANAGEMENT','TIMING_MISSION_DETAIL_URL','zh_TW','定時作業詳情','2021-03-31 09:22:56','89730635001757696','2021-04-01 00:49:25','89730635001757696',_binary '\0'),(1830,'MISSION_MANAGEMENT','TIMING_MISSION_DETAIL_URL','en_US','Timing missin detail','2021-03-31 09:22:56','89730635001757696','2021-04-01 00:49:25','89730635001757696',_binary '\0'),(1831,'DEV_ACTION_MODEL','temperPhoto','zh_CN','测温拍照','2021-03-31 09:24:03','89730635001757696',NULL,NULL,_binary '\0'),(1832,'DEV_ACTION_MODEL','temperPhoto','zh_TW','测温拍照','2021-03-31 09:24:03','89730635001757696',NULL,NULL,_binary '\0'),(1833,'DEV_ACTION_MODEL','temperPhoto','en_US','Temperature photo','2021-03-31 09:24:03','89730635001757696',NULL,NULL,_binary '\0'),(1834,'DEV_ACTION_MODEL','temperPhotoDesc','zh_CN','测温描述','2021-03-31 09:24:37','89730635001757696',NULL,NULL,_binary '\0'),(1835,'DEV_ACTION_MODEL','temperPhotoDesc','zh_TW','測溫描述','2021-03-31 09:24:37','89730635001757696',NULL,NULL,_binary '\0'),(1836,'DEV_ACTION_MODEL','temperPhotoDesc','en_US','Temper photo desc','2021-03-31 09:24:37','89730635001757696',NULL,NULL,_binary '\0'),(1837,'DEV_ACTION_MODEL','picDesc','zh_CN','拍照描述','2021-03-31 09:25:30','89730635001757696','2023-05-08 07:08:36','173818970422378496',_binary '\0'),(1838,'DEV_ACTION_MODEL','picDesc','zh_TW','拍照描述','2021-03-31 09:25:30','89730635001757696','2023-05-08 07:08:36','173818970422378496',_binary '\0'),(1839,'DEV_ACTION_MODEL','picDesc','en_US','Pic desc','2021-03-31 09:25:30','89730635001757696','2023-05-08 07:08:35','173818970422378496',_binary '\0'),(1840,'DEV_ACTION_MODEL','startMeasurement','zh_CN','开始测温','2021-03-31 09:30:36','89730635001757696',NULL,NULL,_binary '\0'),(1841,'DEV_ACTION_MODEL','startMeasurement','zh_TW','開始測溫','2021-03-31 09:30:36','89730635001757696',NULL,NULL,_binary '\0'),(1842,'DEV_ACTION_MODEL','startMeasurement','en_US','Start temperature measurement','2021-03-31 09:30:36','89730635001757696',NULL,NULL,_binary '\0'),(1843,'DEV_ACTION_MODEL','stopMeasurement','zh_CN','停止测温','2021-03-31 09:31:29','89730635001757696',NULL,NULL,_binary '\0'),(1844,'DEV_ACTION_MODEL','stopMeasurement','zh_TW','停止測溫','2021-03-31 09:31:29','89730635001757696',NULL,NULL,_binary '\0'),(1845,'DEV_ACTION_MODEL','stopMeasurement','en_US','Stop temperature measurement','2021-03-31 09:31:29','89730635001757696',NULL,NULL,_binary '\0'),(1846,'DEV_ACTION_MODEL','temperatureDetect','zh_CN','温度监测','2021-03-31 09:32:16','89730635001757696',NULL,NULL,_binary '\0'),(1847,'DEV_ACTION_MODEL','temperatureDetect','zh_TW','溫度監測','2021-03-31 09:32:16','89730635001757696',NULL,NULL,_binary '\0'),(1848,'DEV_ACTION_MODEL','temperatureDetect','en_US','Temperature detect','2021-03-31 09:32:16','89730635001757696',NULL,NULL,_binary '\0'),(1849,'DEV_ACTION_MODEL','maxWarning','zh_CN','最高告警','2021-03-31 09:33:07','89730635001757696',NULL,NULL,_binary '\0'),(1850,'DEV_ACTION_MODEL','maxWarning','zh_TW','最高告警','2021-03-31 09:33:07','89730635001757696',NULL,NULL,_binary '\0'),(1851,'DEV_ACTION_MODEL','maxWarning','en_US','Max warning','2021-03-31 09:33:07','89730635001757696',NULL,NULL,_binary '\0'),(1852,'DEV_ACTION_MODEL','minWarning','zh_CN','最低告警','2021-03-31 09:33:42','89730635001757696',NULL,NULL,_binary '\0'),(1853,'DEV_ACTION_MODEL','minWarning','zh_TW','最低告警','2021-03-31 09:33:42','89730635001757696',NULL,NULL,_binary '\0'),(1854,'DEV_ACTION_MODEL','minWarning','en_US','Min warning','2021-03-31 09:33:42','89730635001757696',NULL,NULL,_binary '\0'),(1855,'DEV_ACTION_MODEL','temperatureDetectDesc','zh_CN','温度监测描述','2021-03-31 09:34:23','89730635001757696',NULL,NULL,_binary '\0'),(1856,'DEV_ACTION_MODEL','temperatureDetectDesc','zh_TW','溫度監測描述','2021-03-31 09:34:23','89730635001757696',NULL,NULL,_binary '\0'),(1857,'DEV_ACTION_MODEL','temperatureDetectDesc','en_US','Temperature detect desc','2021-03-31 09:34:23','89730635001757696',NULL,NULL,_binary '\0'),(1858,'ss','r','zh_CN','r','2021-04-01 01:26:07','1','2021-04-01 01:26:34',NULL,_binary ''),(1859,'ss','r','zh_TW','r','2021-04-01 01:26:07','1','2021-04-01 01:26:34',NULL,_binary ''),(1860,'ss','r','en_US','r','2021-04-01 01:26:07','1','2021-04-01 01:26:34',NULL,_binary ''),(1861,'ss','y','zh_CN','t','2021-04-01 01:26:13','1','2021-04-01 01:26:36',NULL,_binary ''),(1862,'ss','y','zh_TW','y','2021-04-01 01:26:13','1','2021-04-01 01:26:36',NULL,_binary ''),(1863,'ss','y','en_US','y','2021-04-01 01:26:13','1','2021-04-01 01:26:36',NULL,_binary ''),(1864,'ss','u','zh_CN','u','2021-04-01 01:26:19','1','2021-04-01 01:26:38',NULL,_binary ''),(1865,'ss','u','zh_TW','u','2021-04-01 01:26:19','1','2021-04-01 01:26:38',NULL,_binary ''),(1866,'ss','u','en_US','u','2021-04-01 01:26:19','1','2021-04-01 01:26:38',NULL,_binary ''),(1867,'AI_VIDEO','CAR_UAS00010353','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car1','2021-04-06 08:56:05','1',NULL,NULL,_binary '\0'),(1868,'AI_VIDEO','CAR_UAS00010353','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car1','2021-04-06 08:56:05','1',NULL,NULL,_binary '\0'),(1869,'AI_VIDEO','CAR_UAS00010353','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car1','2021-04-06 08:56:05','1',NULL,NULL,_binary '\0'),(1870,'AI_VIDEO','HEAD_UAS00010353','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head1','2021-04-06 08:56:35','1',NULL,NULL,_binary '\0'),(1871,'AI_VIDEO','HEAD_UAS00010353','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head1','2021-04-06 08:56:35','1',NULL,NULL,_binary '\0'),(1872,'AI_VIDEO','HEAD_UAS00010353','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head1','2021-04-06 08:56:35','1',NULL,NULL,_binary '\0'),(1873,'DEMO_STATUS','1','en_US','{\"netWorkMode\":\"5G\",\"netWorkLevel\":\"4\"}','2021-04-07 08:14:58','123',NULL,NULL,_binary '\0'),(1874,'DEMO_STATUS','1','zh_CN','{\"netWorkMode\":\"5G\",\"netWorkLevel\":\"4\"}','2021-04-07 08:14:58','123',NULL,NULL,_binary '\0'),(1875,'DEMO_STATUS','1','zh_TW','{\"netWorkMode\":\"5G\",\"netWorkLevel\":\"4\"}','2021-04-07 08:14:58','123',NULL,NULL,_binary '\0'),(1876,'LOAD_CAM_MODEL','xh009','zh_CN','禅思H20T','2021-04-08 05:53:00','89730635001757696',NULL,NULL,_binary '\0'),(1877,'LOAD_CAM_MODEL','xh009','zh_TW','禅思H20T','2021-04-08 05:53:00','89730635001757696',NULL,NULL,_binary '\0'),(1878,'LOAD_CAM_MODEL','xh009','en_US','禅思H20T','2021-04-08 05:53:00','89730635001757696',NULL,NULL,_binary '\0'),(1879,'PLANE_MODEL','wrjxh055','zh_CN','M600','2021-04-15 06:00:26','1',NULL,NULL,_binary '\0'),(1880,'PLANE_MODEL','wrjxh055','zh_TW','M600','2021-04-15 06:00:26','1',NULL,NULL,_binary '\0'),(1881,'PLANE_MODEL','wrjxh055','en_US','M600','2021-04-15 06:00:26','1',NULL,NULL,_binary '\0'),(1882,'test','test','zh_CN','test','2021-04-21 03:21:10','1',NULL,NULL,_binary '\0'),(1883,'test','test','zh_TW','test','2021-04-21 03:21:10','1',NULL,NULL,_binary '\0'),(1884,'test','test','en_US','test','2021-04-21 03:21:10','1',NULL,NULL,_binary '\0'),(1885,'test','test1','zh_CN','test1','2021-04-21 03:21:19','1',NULL,NULL,_binary '\0'),(1886,'test','test1','zh_TW','test1','2021-04-21 03:21:19','1',NULL,NULL,_binary '\0'),(1887,'test','test1','en_US','test1','2021-04-21 03:21:19','1',NULL,NULL,_binary '\0'),(1888,'AI_VIDEO','HEAD_UAS00010467','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head3','2021-05-11 01:28:21','1',NULL,NULL,_binary '\0'),(1889,'AI_VIDEO','HEAD_UAS00010467','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head3','2021-05-11 01:28:21','1',NULL,NULL,_binary '\0'),(1890,'AI_VIDEO','HEAD_UAS00010467','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head3','2021-05-11 01:28:21','1',NULL,NULL,_binary '\0'),(1891,'AI_VIDEO','CAR_UAS00010467','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car3','2021-05-11 01:29:13','1',NULL,NULL,_binary '\0'),(1892,'AI_VIDEO','CAR_UAS00010467','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car3','2021-05-11 01:29:13','1',NULL,NULL,_binary '\0'),(1893,'AI_VIDEO','CAR_UAS00010467','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car3','2021-05-11 01:29:13','1',NULL,NULL,_binary '\0'),(1894,'AI_VIDEO','CAR_UAS00010402','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car4','2021-05-18 10:45:06','1',NULL,NULL,_binary '\0'),(1895,'AI_VIDEO','CAR_UAS00010402','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car4','2021-05-18 10:45:06','1',NULL,NULL,_binary '\0'),(1896,'AI_VIDEO','CAR_UAS00010402','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car4','2021-05-18 10:45:06','1',NULL,NULL,_binary '\0'),(1897,'AI_VIDEO','HEAD_UAS00010402','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head4','2021-05-18 10:45:44','1',NULL,NULL,_binary '\0'),(1898,'AI_VIDEO','HEAD_UAS00010402','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head4','2021-05-18 10:45:44','1',NULL,NULL,_binary '\0'),(1899,'AI_VIDEO','HEAD_UAS00010402','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head4','2021-05-18 10:45:44','1',NULL,NULL,_binary '\0'),(1900,'MNF','sccj020','zh_CN','北京佰才邦技术股份有限公司','2021-05-20 02:47:55','1',NULL,NULL,_binary '\0'),(1901,'MNF','sccj020','zh_TW','北京佰才邦技术股份有限公司','2021-05-20 02:47:55','1',NULL,NULL,_binary '\0'),(1902,'MNF','sccj020','en_US','BayCell','2021-05-20 02:47:55','1',NULL,NULL,_binary '\0'),(1903,'PLANE_MODEL','wrjxh056','zh_CN','SkyCells-T3kg100m','2021-05-20 02:49:11','1',NULL,NULL,_binary '\0'),(1904,'PLANE_MODEL','wrjxh056','zh_TW','SkyCells-T3kg100m','2021-05-20 02:49:11','1',NULL,NULL,_binary '\0'),(1905,'PLANE_MODEL','wrjxh056','en_US','SkyCells-T3kg100m','2021-05-20 02:49:11','1',NULL,NULL,_binary '\0'),(1906,'ADAPT_MNF','sccj020','zh_CN','佰才邦','2021-05-20 02:49:41','1','2021-09-22 06:58:28','70179580555558912',_binary '\0'),(1907,'ADAPT_MNF','sccj020','zh_TW','佰才邦','2021-05-20 02:49:41','1','2021-09-22 06:58:28','70179580555558912',_binary '\0'),(1908,'ADAPT_MNF','sccj020','en_US','bai cai bang','2021-05-20 02:49:41','1','2021-09-22 06:58:28','70179580555558912',_binary '\0'),(1909,'LOAD_CAM_MODEL','xj015','zh_CN','Z10N','2021-05-20 02:50:25','1',NULL,NULL,_binary '\0'),(1910,'LOAD_CAM_MODEL','xj015','zh_TW','Z10N','2021-05-20 02:50:25','1',NULL,NULL,_binary '\0'),(1911,'LOAD_CAM_MODEL','xj015','en_US','Z10N','2021-05-20 02:50:25','1',NULL,NULL,_binary '\0'),(1912,'DEV_ACTION_MODEL','electricInspection','zh_CN','电力巡检','2021-05-24 07:08:50','89730635001757696',NULL,NULL,_binary '\0'),(1913,'DEV_ACTION_MODEL','electricInspection','zh_TW','電力巡檢','2021-05-24 07:08:50','89730635001757696',NULL,NULL,_binary '\0'),(1914,'DEV_ACTION_MODEL','electricInspection','en_US','Electric inspection','2021-05-24 07:08:50','89730635001757696',NULL,NULL,_binary '\0'),(1915,'DEV_ACTION_MODEL','relativePosition','zh_CN','相对位置','2021-05-24 07:09:26','89730635001757696',NULL,NULL,_binary '\0'),(1916,'DEV_ACTION_MODEL','relativePosition','zh_TW','相對位置','2021-05-24 07:09:26','89730635001757696',NULL,NULL,_binary '\0'),(1917,'DEV_ACTION_MODEL','relativePosition','en_US','Relative position','2021-05-24 07:09:26','89730635001757696',NULL,NULL,_binary '\0'),(1918,'DEV_ACTION_MODEL','partLabel','zh_CN','部件标签','2021-05-24 07:10:00','89730635001757696',NULL,NULL,_binary '\0'),(1919,'DEV_ACTION_MODEL','partLabel','zh_TW','部件标签','2021-05-24 07:10:00','89730635001757696',NULL,NULL,_binary '\0'),(1920,'DEV_ACTION_MODEL','partLabel','en_US','Part label','2021-05-24 07:10:00','89730635001757696',NULL,NULL,_binary '\0'),(1921,'DEV_ACTION_MODEL','towerSide','zh_CN','塔侧','2021-05-24 07:10:40','89730635001757696',NULL,NULL,_binary '\0'),(1922,'DEV_ACTION_MODEL','towerSide','zh_TW','塔側','2021-05-24 07:10:40','89730635001757696',NULL,NULL,_binary '\0'),(1923,'DEV_ACTION_MODEL','towerSide','en_US','Tower side','2021-05-24 07:10:40','89730635001757696',NULL,NULL,_binary '\0'),(1924,'DEV_ACTION_MODEL','phase','zh_CN','相位','2021-05-24 07:11:19','89730635001757696',NULL,NULL,_binary '\0'),(1925,'DEV_ACTION_MODEL','phase','zh_TW','相位','2021-05-24 07:11:19','89730635001757696',NULL,NULL,_binary '\0'),(1926,'DEV_ACTION_MODEL','phase','en_US','Phase','2021-05-24 07:11:19','89730635001757696',NULL,NULL,_binary '\0'),(1927,'DEV_ACTION_MODEL','sequenceNum','zh_CN','序号','2021-05-24 07:11:44','89730635001757696',NULL,NULL,_binary '\0'),(1928,'DEV_ACTION_MODEL','sequenceNum','zh_TW','序號','2021-05-24 07:11:44','89730635001757696',NULL,NULL,_binary '\0'),(1929,'DEV_ACTION_MODEL','sequenceNum','en_US','Sequence num','2021-05-24 07:11:44','89730635001757696',NULL,NULL,_binary '\0'),(1930,'DEV_ACTION_MODEL','towerCode','zh_CN','杆塔编号','2021-05-24 07:12:36','89730635001757696',NULL,NULL,_binary '\0'),(1931,'DEV_ACTION_MODEL','towerCode','zh_TW','塔幹編號','2021-05-24 07:12:36','89730635001757696',NULL,NULL,_binary '\0'),(1932,'DEV_ACTION_MODEL','towerCode','en_US','Tower code','2021-05-24 07:12:36','89730635001757696',NULL,NULL,_binary '\0'),(1933,'DEV_ACTION_MODEL','voltage','zh_CN','线路电压','2021-05-24 07:12:59','89730635001757696',NULL,NULL,_binary '\0'),(1934,'DEV_ACTION_MODEL','voltage','zh_TW','線路電壓','2021-05-24 07:12:59','89730635001757696',NULL,NULL,_binary '\0'),(1935,'DEV_ACTION_MODEL','voltage','en_US','Voltage','2021-05-24 07:12:59','89730635001757696',NULL,NULL,_binary '\0'),(1936,'DEV_ACTION_MODEL','lineName','zh_CN','线路名称','2021-05-24 07:13:24','89730635001757696',NULL,NULL,_binary '\0'),(1937,'DEV_ACTION_MODEL','lineName','zh_TW','線路名稱','2021-05-24 07:13:24','89730635001757696',NULL,NULL,_binary '\0'),(1938,'DEV_ACTION_MODEL','lineName','en_US','Line name','2021-05-24 07:13:24','89730635001757696',NULL,NULL,_binary '\0'),(1939,'AI_VIDEO','HEAD_UAS00010511','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head5','2021-05-25 08:55:40','1',NULL,NULL,_binary '\0'),(1940,'AI_VIDEO','HEAD_UAS00010511','zh_TW',' webrtc://live.demo.uavcmlc.com:18000/live/head5','2021-05-25 08:55:40','1',NULL,NULL,_binary '\0'),(1941,'AI_VIDEO','HEAD_UAS00010511','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head5','2021-05-25 08:55:40','1',NULL,NULL,_binary '\0'),(1942,'AI_VIDEO','CAR_UAS00010511','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car5','2021-05-25 08:56:36','1',NULL,NULL,_binary '\0'),(1943,'AI_VIDEO','CAR_UAS00010511','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car5','2021-05-25 08:56:36','1',NULL,NULL,_binary '\0'),(1944,'AI_VIDEO','CAR_UAS00010511','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car5','2021-05-25 08:56:36','1',NULL,NULL,_binary '\0'),(1945,'testt','aa','zh_CN','a','2021-05-26 05:51:14','292','2021-05-26 05:51:49',NULL,_binary ''),(1946,'testt','aa','zh_TW','a','2021-05-26 05:51:14','292','2021-05-26 05:51:49',NULL,_binary ''),(1947,'testt','aa','en_US','a','2021-05-26 05:51:14','292','2021-05-26 05:51:49',NULL,_binary ''),(1948,'testt','bb','zh_CN','b','2021-05-26 05:51:23','292','2021-05-26 05:51:47',NULL,_binary ''),(1949,'testt','bb','en_US','b','2021-05-26 05:51:23','292','2021-05-26 05:51:47',NULL,_binary ''),(1950,'testt','bb','zh_TW','b','2021-05-26 05:51:23','292','2021-05-26 05:51:47',NULL,_binary ''),(1951,'testt','aaaa','zh_CN','aa','2021-05-26 05:51:34','292','2021-05-26 05:51:47',NULL,_binary ''),(1952,'testt','aaaa','zh_TW','aa','2021-05-26 05:51:34','292','2021-05-26 05:51:47',NULL,_binary ''),(1953,'testt','aaaa','en_US','aaa','2021-05-26 05:51:34','292','2021-05-26 05:51:47',NULL,_binary ''),(1954,'DEV_MODEL_HUBBLE','otherLoad','en_US','17','2021-06-02 07:11:42','123','2023-04-06 03:05:42','1',_binary ''),(1955,'DEV_MODEL_HUBBLE','otherLoad','zh_CN','17','2021-06-02 07:11:42','123','2023-04-06 03:05:42','1',_binary ''),(1956,'DEV_MODEL_HUBBLE','otherLoad','zh_TW','17','2021-06-02 07:11:42','123','2023-04-06 03:05:42','1',_binary ''),(1957,'DEV_MODEL_HUBBLE','commonLoad','en_US','16','2021-06-02 07:11:42','123','2021-06-16 09:22:05','1',_binary '\0'),(1958,'DEV_MODEL_HUBBLE','commonLoad','zh_CN','16','2021-06-02 07:11:42','123','2021-06-16 09:22:05','1',_binary '\0'),(1959,'DEV_MODEL_HUBBLE','commonLoad','zh_TW','16','2021-06-02 07:11:42','123','2021-06-16 09:22:05','1',_binary '\0'),(1960,'DEV_MODEL_HUBBLE','xh003','en_US','14','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1961,'DEV_MODEL_HUBBLE','xh003','zh_CN','14','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1962,'DEV_MODEL_HUBBLE','xh003','zh_TW','14','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1963,'DEV_MODEL_HUBBLE','xh005','en_US','13','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1964,'DEV_MODEL_HUBBLE','xh005','zh_CN','13','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1965,'DEV_MODEL_HUBBLE','xh005','zh_TW','13','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1966,'DEV_MODEL_HUBBLE','xh006','en_US','11','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1967,'DEV_MODEL_HUBBLE','xh006','zh_CN','11','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1968,'DEV_MODEL_HUBBLE','xh006','zh_TW','11','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1969,'DEV_MODEL_HUBBLE','xh001','en_US','10','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1970,'DEV_MODEL_HUBBLE','xh001','zh_CN','10','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1971,'DEV_MODEL_HUBBLE','xh001','zh_TW','10','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1972,'DEV_MODEL_HUBBLE','otherUav2','en_US','5','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1973,'DEV_MODEL_HUBBLE','otherUav2','zh_CN','5','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1974,'DEV_MODEL_HUBBLE','otherUav2','zh_TW','5','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1975,'DEV_MODEL_HUBBLE','otherUav1','en_US','4','2021-06-02 07:11:42','123','2023-04-06 03:04:39','123',_binary ''),(1976,'DEV_MODEL_HUBBLE','otherUav1','zh_CN','4','2021-06-02 07:11:42','123','2023-04-06 03:04:39','123',_binary ''),(1977,'DEV_MODEL_HUBBLE','otherUav1','zh_TW','4','2021-06-02 07:11:42','123','2023-04-06 03:04:39','123',_binary ''),(1978,'DEV_MODEL_HUBBLE','commonUav','en_US','3','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1979,'DEV_MODEL_HUBBLE','commonUav','zh_CN','3','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1980,'DEV_MODEL_HUBBLE','commonUav','zh_TW','3','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1981,'DEV_MODEL_HUBBLE','wrjxh059','en_US','2','2021-06-02 07:11:42','123','2021-06-16 09:08:42','123',_binary ''),(1982,'DEV_MODEL_HUBBLE','wrjxh059','zh_CN','2','2021-06-02 07:11:42','123','2021-06-16 09:08:42','123',_binary ''),(1983,'DEV_MODEL_HUBBLE','wrjxh059','zh_TW','2','2021-06-02 07:11:42','123','2021-06-16 09:08:42','123',_binary ''),(1984,'DEV_MODEL_HUBBLE','wrjxh047','en_US','1','2021-06-02 07:11:42','123','2021-06-16 09:08:39','123',_binary ''),(1985,'DEV_MODEL_HUBBLE','wrjxh047','zh_CN','1','2021-06-02 07:11:42','123','2021-06-16 09:08:39','123',_binary ''),(1986,'DEV_MODEL_HUBBLE','wrjxh047','zh_TW','1','2021-06-02 07:11:42','123','2021-06-16 09:08:39','123',_binary ''),(1987,'DEV_MODEL_HUBBLE','wrjxh006','en_US','0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1988,'DEV_MODEL_HUBBLE','wrjxh006','zh_CN','0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1989,'DEV_MODEL_HUBBLE','wrjxh006','zh_TW','0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1990,'ADAPT_MNF','sccj002','zh_CN','纵横','2021-06-02 07:17:16','1','2021-09-22 06:57:38','70179580555558912',_binary '\0'),(1991,'ADAPT_MNF','sccj002','zh_TW','縂橫','2021-06-02 07:17:16','1','2021-09-22 06:57:38','70179580555558912',_binary '\0'),(1992,'ADAPT_MNF','sccj002','en_US','zongheng','2021-06-02 07:17:16','1','2021-09-22 06:57:38','70179580555558912',_binary '\0'),(1993,'AI_VIDEO','CAR_UAS00010487','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car6','2021-06-03 10:11:22','123',NULL,NULL,_binary '\0'),(1994,'AI_VIDEO','CAR_UAS00010487','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car6','2021-06-03 10:11:22','123',NULL,NULL,_binary '\0'),(1995,'AI_VIDEO','CAR_UAS00010487','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car6','2021-06-03 10:11:22','123',NULL,NULL,_binary '\0'),(1996,'AI_VIDEO','HEAD_UAS00010487','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head6','2021-06-03 10:11:47','123',NULL,NULL,_binary '\0'),(1997,'AI_VIDEO','HEAD_UAS00010487','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head6','2021-06-03 10:11:47','123',NULL,NULL,_binary '\0'),(1998,'AI_VIDEO','HEAD_UAS00010487','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head6','2021-06-03 10:11:47','123',NULL,NULL,_binary '\0'),(1999,'LOAD_SPK_MODEL','hhqxh003','zh_CN',' MP130','2021-06-07 02:16:41','1',NULL,NULL,_binary '\0'),(2000,'LOAD_SPK_MODEL','hhqxh003','zh_TW',' MP130','2021-06-07 02:16:41','1',NULL,NULL,_binary '\0'),(2001,'LOAD_SPK_MODEL','hhqxh003','en_US',' MP130','2021-06-07 02:16:41','1',NULL,NULL,_binary '\0'),(2002,'MNF','sccj021','zh_CN','成至','2021-06-07 02:19:14','1',NULL,NULL,_binary '\0'),(2003,'MNF','sccj021','zh_TW','成至','2021-06-07 02:19:14','1',NULL,NULL,_binary '\0'),(2004,'MNF','sccj021','en_US','成至','2021-06-07 02:19:14','1',NULL,NULL,_binary '\0'),(2005,'INTERFACE_TYPE','INTERFACE_WITHOUT_BINDING_COMPANY','en_US','com interface','2021-06-11 06:26:12','1','2021-09-22 06:54:36','70179580555558912',_binary '\0'),(2006,'INTERFACE_TYPE','INTERFACE_WITHOUT_BINDING_COMPANY','zh_CN','普通接口','2021-06-11 06:26:12','1','2021-09-22 06:54:36','70179580555558912',_binary '\0'),(2007,'INTERFACE_TYPE','INTERFACE_WITHOUT_BINDING_COMPANY','zh_TW','普通接口','2021-06-11 06:26:12','1','2021-09-22 06:54:36','70179580555558912',_binary '\0'),(2008,'INTERFACE_TYPE','INTERFACE_BINDING_COMPANY','en_US','senior interface','2021-06-11 06:26:12','1','2021-09-22 06:55:25','70179580555558912',_binary '\0'),(2009,'INTERFACE_TYPE','INTERFACE_BINDING_COMPANY','zh_CN','高级接口','2021-06-11 06:26:12','1','2021-09-22 06:55:25','70179580555558912',_binary '\0'),(2010,'INTERFACE_TYPE','INTERFACE_BINDING_COMPANY','zh_TW','高級接口','2021-06-11 06:26:12','1','2021-09-22 06:55:25','70179580555558912',_binary '\0'),(2011,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_TIEMS','en_US','count limit','2021-06-11 06:26:40','1','2021-09-22 06:53:44','70179580555558912',_binary '\0'),(2012,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_TIEMS','zh_CN','数量限制','2021-06-11 06:26:40','1','2021-09-22 06:53:44','70179580555558912',_binary '\0'),(2013,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_TIEMS','zh_TW','數量限制','2021-06-11 06:26:40','1','2021-09-22 06:53:44','70179580555558912',_binary '\0'),(2014,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_FLOW','en_US','flow limit','2021-06-11 06:26:40','1','2021-09-22 06:54:02','70179580555558912',_binary '\0'),(2015,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_FLOW','zh_CN','流量限制','2021-06-11 06:26:40','1','2021-09-22 06:54:02','70179580555558912',_binary '\0'),(2016,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_FLOW','zh_TW','流量限制','2021-06-11 06:26:40','1','2021-09-22 06:54:02','70179580555558912',_binary '\0'),(2017,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_SPACE','en_US','space limit','2021-06-11 06:26:40','1','2021-09-22 06:54:15','70179580555558912',_binary '\0'),(2018,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_SPACE','zh_CN','空间限制','2021-06-11 06:26:40','1','2021-09-22 06:54:15','70179580555558912',_binary '\0'),(2019,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_SPACE','zh_TW','空間限制','2021-06-11 06:26:40','1','2021-09-22 06:54:15','70179580555558912',_binary '\0'),(2020,'INTERFACE_GROUP','INTERFACE_GROUP_WAYPOINT','en_US','Airline Services','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2021,'INTERFACE_GROUP','INTERFACE_GROUP_WAYPOINT','zh_CN','航线服务','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2022,'INTERFACE_GROUP','INTERFACE_GROUP_WAYPOINT','zh_TW','航線服務','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2023,'INTERFACE_GROUP','INTERFACE_GROUP_AIRSPACE','en_US','Airspace Services','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2024,'INTERFACE_GROUP','INTERFACE_GROUP_AIRSPACE','zh_CN','空域服务','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2025,'INTERFACE_GROUP','INTERFACE_GROUP_AIRSPACE','zh_TW','空域服務','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2026,'INTERFACE_GROUP','INTERFACE_GROUP_SURVEILLANCE','en_US','Flight Posture','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2027,'INTERFACE_GROUP','INTERFACE_GROUP_SURVEILLANCE','zh_CN','飞行态势','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2028,'INTERFACE_GROUP','INTERFACE_GROUP_SURVEILLANCE','zh_TW','飛行態勢','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2029,'VIDEO_LINE','auto','zh_CN','自动','2021-06-16 01:27:49','1',NULL,NULL,_binary '\0'),(2030,'VIDEO_LINE','auto','en_US','AUTO','2021-06-16 01:27:49','1',NULL,NULL,_binary '\0'),(2031,'VIDEO_LINE','auto','zh_TW','自動','2021-06-16 01:27:49','1',NULL,NULL,_binary '\0'),(2032,'DEV_MODEL_HUBBLE','wrjxh052','zh_CN','1','2021-06-16 09:09:02','1',NULL,NULL,_binary '\0'),(2033,'DEV_MODEL_HUBBLE','wrjxh052','zh_TW','1','2021-06-16 09:09:02','1',NULL,NULL,_binary '\0'),(2034,'DEV_MODEL_HUBBLE','wrjxh052','en_US','1','2021-06-16 09:09:02','1',NULL,NULL,_binary '\0'),(2035,'DEV_MODEL_HUBBLE','wrjxh055','zh_CN','2','2021-06-16 09:09:15','1',NULL,NULL,_binary '\0'),(2036,'DEV_MODEL_HUBBLE','wrjxh055','zh_TW','2','2021-06-16 09:09:15','1',NULL,NULL,_binary '\0'),(2037,'DEV_MODEL_HUBBLE','wrjxh055','en_US','2','2021-06-16 09:09:15','1',NULL,NULL,_binary '\0'),(2038,'DEV_MODEL_HUBBLE','xh009','zh_CN','15','2021-06-16 09:21:52','1',NULL,NULL,_binary '\0'),(2039,'DEV_MODEL_HUBBLE','xh009','zh_TW','15','2021-06-16 09:21:52','1',NULL,NULL,_binary '\0'),(2040,'DEV_MODEL_HUBBLE','xh009','en_US','15','2021-06-16 09:21:52','1',NULL,NULL,_binary '\0'),(2041,'LOAD_CAM_MODEL','xh016','zh_CN','Insta360 Pro2','2021-07-08 01:26:04','1',NULL,NULL,_binary '\0'),(2042,'LOAD_CAM_MODEL','xh016','zh_TW','Insta360 Pro2','2021-07-08 01:26:04','1',NULL,NULL,_binary '\0'),(2043,'LOAD_CAM_MODEL','xh016','en_US','Insta360 Pro2','2021-07-08 01:26:04','1',NULL,NULL,_binary '\0'),(2044,'MNF','sccj022','zh_CN','Insta 360','2021-07-08 01:26:36','1',NULL,NULL,_binary '\0'),(2045,'MNF','sccj022','zh_TW','Insta 360','2021-07-08 01:26:36','1',NULL,NULL,_binary '\0'),(2046,'MNF','sccj022','en_US','Insta 360','2021-07-08 01:26:36','1',NULL,NULL,_binary '\0'),(2047,'VIDEO_FLOWING]','videoFlowing','en_US','video flowing','2021-07-28 02:00:24','1',NULL,NULL,_binary '\0'),(2048,'VIDEO_FLOWING]','videoFlowing','zh_CN','视频流','2021-07-28 02:00:24','1',NULL,NULL,_binary '\0'),(2049,'VIDEO_FLOWING]','videoFlowing','zh_TW','視頻流','2021-07-28 02:00:24','1',NULL,NULL,_binary '\0'),(2050,'DEV_ACTION_MODEL','ZOOMVALUE','zh_CN','缩放倍数','2021-07-28 08:20:25','1','2022-04-13 03:01:46',NULL,_binary ''),(2051,'DEV_ACTION_MODEL','ZOOMVALUE','zh_TW','缩放倍数','2021-07-28 08:20:25','1','2022-04-13 03:01:46',NULL,_binary ''),(2052,'DEV_ACTION_MODEL','ZOOMVALUE','en_US','缩放倍数','2021-07-28 08:20:25','1','2022-04-13 03:01:46',NULL,_binary ''),(2053,'INTERFACE_GROUP','INTERFACE_GROUP_WAREHOUSE','zh_CN','素材仓库','2021-08-19 06:38:37','1','2022-03-30 10:16:48','1',_binary '\0'),(2054,'INTERFACE_GROUP','INTERFACE_GROUP_WAREHOUSE','zh_TW','素材仓库','2021-08-19 06:38:37','1','2022-03-30 10:16:48','1',_binary '\0'),(2055,'INTERFACE_GROUP','INTERFACE_GROUP_WAREHOUSE','en_US','WAREHOUSE','2021-08-19 06:38:37','1','2022-03-30 10:16:48','1',_binary '\0'),(2056,'DETECTION_COMPANY','chengyanyuan','zh_CN','2','2021-09-16 05:55:43','1',NULL,NULL,_binary '\0'),(2057,'DETECTION_COMPANY','chengyanyuan','zh_TW','2','2021-09-16 05:55:43','1',NULL,NULL,_binary '\0'),(2058,'DETECTION_COMPANY','chengyanyuan','en_US','2','2021-09-16 05:55:43','1',NULL,NULL,_binary '\0'),(2059,'APPR_STAT','reject','zh_TW','被駁回','2021-09-22 07:01:01','70179580555558912',NULL,NULL,_binary '\0'),(2060,'APPR_STAT','reject','en_US','reject','2021-09-22 07:01:01','70179580555558912',NULL,NULL,_binary '\0'),(2061,'APPR_STAT','refuse','zh_TW','已拒絕','2021-09-22 07:01:13','70179580555558912',NULL,NULL,_binary '\0'),(2062,'APPR_STAT','refuse','en_US','refuse','2021-09-22 07:01:13','70179580555558912',NULL,NULL,_binary '\0'),(2063,'APPR_STAT','ing','zh_TW','審批中','2021-09-22 07:01:35','70179580555558912',NULL,NULL,_binary '\0'),(2064,'APPR_STAT','ing','en_US','approving','2021-09-22 07:01:35','70179580555558912',NULL,NULL,_binary '\0'),(2065,'APPR_STAT','expired','zh_TW','失效','2021-09-22 07:01:49','70179580555558912',NULL,NULL,_binary '\0'),(2066,'APPR_STAT','expired','en_US','expired','2021-09-22 07:01:49','70179580555558912',NULL,NULL,_binary '\0'),(2067,'APPR_STAT','pass','zh_TW','已通過','2021-09-22 07:02:00','70179580555558912',NULL,NULL,_binary '\0'),(2068,'APPR_STAT','pass','en_US','pass','2021-09-22 07:02:00','70179580555558912',NULL,NULL,_binary '\0'),(2069,'APPR_STAT','wait','zh_TW','待審批','2021-09-22 07:02:10','70179580555558912',NULL,NULL,_binary '\0'),(2070,'APPR_STAT','wait','en_US','wait','2021-09-22 07:02:10','70179580555558912',NULL,NULL,_binary '\0'),(2071,'AREA_TYPE','temp','zh_TW','臨時飛行區','2021-09-22 07:02:30','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2072,'AREA_TYPE','temp','en_US','temp zone','2021-09-22 07:02:30','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2073,'AREA_TYPE','danger','zh_TW','危險區','2021-09-22 07:02:45','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2074,'AREA_TYPE','danger','en_US','danger zone','2021-09-22 07:02:45','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2075,'AREA_TYPE','clear','zh_TW','净空區','2021-09-22 07:02:56','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2076,'AREA_TYPE','clear','en_US','clear zone','2021-09-22 07:02:56','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2077,'AREA_TYPE','forbidden','zh_TW','禁飞區','2021-09-22 07:03:38','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2078,'AREA_TYPE','forbidden','en_US','forbidden zone','2021-09-22 07:03:38','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2079,'AREA_TYPE','limit','zh_TW','限制區','2021-09-22 07:03:51','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2080,'AREA_TYPE','limit','en_US','limit zone','2021-09-22 07:03:51','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2081,'FLY_TASK','other','zh_TW','其他','2021-09-22 07:05:30','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2082,'FLY_TASK','other','en_US','other','2021-09-22 07:05:30','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2083,'FLY_TASK','protection','zh_TW','農林植保','2021-09-22 07:05:59','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2084,'FLY_TASK','protection','en_US','protection','2021-09-22 07:05:59','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2085,'FLY_TASK','poppy','zh_TW','罌粟巡查','2021-09-22 07:06:25','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2086,'FLY_TASK','poppy','en_US','poppy','2021-09-22 07:06:25','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2087,'FLY_TASK','fire','zh_TW','高層消防','2021-09-22 07:06:36','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2088,'FLY_TASK','fire','en_US','fire','2021-09-22 07:06:36','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2089,'FLY_TASK','power','zh_TW','電力循環','2021-09-22 07:07:12','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2090,'FLY_TASK','power','en_US','power','2021-09-22 07:07:12','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2091,'FLY_TASK','show','zh_TW','飛行表演','2021-09-22 07:07:28','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2092,'FLY_TASK','show','en_US','show','2021-09-22 07:07:28','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2093,'FLY_TASK','testfly','zh_TW','適航試飛','2021-09-22 07:07:49','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2094,'FLY_TASK','testfly','en_US','test fly','2021-09-22 07:07:49','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2095,'VIDEO_LINE','2','zh_TW','綫路2','2021-09-22 07:08:14','70179580555558912','2021-09-22 07:08:34','70179580555558912',_binary '\0'),(2096,'VIDEO_LINE','2','en_US','line 2','2021-09-22 07:08:14','70179580555558912','2021-09-22 07:08:34','70179580555558912',_binary '\0'),(2097,'VIDEO_LINE','1','zh_TW','綫路1','2021-09-22 07:08:25','70179580555558912',NULL,NULL,_binary '\0'),(2098,'VIDEO_LINE','1','en_US','line 1','2021-09-22 07:08:25','70179580555558912',NULL,NULL,_binary '\0'),(2099,'USE_STAT','ABANDONMENT','zh_TW','報廢','2021-09-22 07:30:19','70179580555558912','2023-07-07 07:50:53','188243415207510016',_binary '\0'),(2100,'USE_STAT','ABANDONMENT','en_US','scrapped','2021-09-22 07:30:19','70179580555558912','2023-07-07 07:50:53','188243415207510016',_binary '\0'),(2101,'USE_STAT','MAINTAIN','zh_TW','保養','2021-09-22 07:31:29','70179580555558912',NULL,NULL,_binary '\0'),(2102,'USE_STAT','MAINTAIN','en_US','maintain','2021-09-22 07:31:29','70179580555558912',NULL,NULL,_binary '\0'),(2103,'USE_STAT','FORBIDDEN','zh_TW','禁用','2021-09-22 07:31:49','70179580555558912',NULL,NULL,_binary '\0'),(2104,'USE_STAT','FORBIDDEN','en_US','forbidden','2021-09-22 07:31:49','70179580555558912',NULL,NULL,_binary '\0'),(2105,'USE_STAT','CAN_USE','zh_TW','可用','2021-09-22 07:32:04','70179580555558912','2023-06-27 07:36:21','188243415207510016',_binary '\0'),(2106,'USE_STAT','CAN_USE','en_US','available','2021-09-22 07:32:04','70179580555558912','2023-06-27 07:36:21','188243415207510016',_binary '\0'),(2107,'MNF','sccj023','zh_CN','浙江大华技术股份有限公司','2021-09-23 02:18:54','1',NULL,NULL,_binary '\0'),(2108,'MNF','sccj023','zh_TW','浙江大华技术股份有限公司','2021-09-23 02:18:54','1',NULL,NULL,_binary '\0'),(2109,'MNF','sccj023','en_US','dahuatech','2021-09-23 02:18:54','1',NULL,NULL,_binary '\0'),(2110,'MNF','sccj024','zh_CN','深圳市科卫泰实业发展有限公司','2021-09-23 02:20:05','1',NULL,NULL,_binary '\0'),(2111,'MNF','sccj024','zh_TW','深圳市科卫泰实业发展有限公司','2021-09-23 02:20:05','1',NULL,NULL,_binary '\0'),(2112,'MNF','sccj024','en_US','keweitai','2021-09-23 02:20:05','1',NULL,NULL,_binary '\0'),(2113,'PLANE_MODEL','wrjxh057','zh_CN','KWT-X6L','2021-09-23 02:22:52','1',NULL,NULL,_binary '\0'),(2114,'PLANE_MODEL','wrjxh057','zh_TW','KWT-X6L','2021-09-23 02:22:52','1',NULL,NULL,_binary '\0'),(2115,'PLANE_MODEL','wrjxh057','en_US','KWT-X6L','2021-09-23 02:22:52','1',NULL,NULL,_binary '\0'),(2116,'PLANE_MODEL','wrjxh058','zh_CN','GAWRJDD0023HF03','2021-09-23 02:24:19','1',NULL,NULL,_binary '\0'),(2117,'PLANE_MODEL','wrjxh058','zh_TW','GAWRJDD0023HF03','2021-09-23 02:24:19','1',NULL,NULL,_binary '\0'),(2118,'PLANE_MODEL','wrjxh058','en_US','GAWRJDD0023HF03','2021-09-23 02:24:19','1',NULL,NULL,_binary '\0'),(2119,'PLANE_MODEL','wrjxh059','zh_CN','GAWRJDD0023HF02','2021-09-23 02:24:42','1',NULL,NULL,_binary '\0'),(2120,'PLANE_MODEL','wrjxh059','zh_TW','GAWRJDD0023HF02','2021-09-23 02:24:42','1',NULL,NULL,_binary '\0'),(2121,'PLANE_MODEL','wrjxh059','en_US','GAWRJDD0023HF02','2021-09-23 02:24:42','1',NULL,NULL,_binary '\0'),(2122,'LOAD_CAM_MODEL','xh017','zh_CN','KWT-3G-30X','2021-09-23 02:25:39','1',NULL,NULL,_binary '\0'),(2123,'LOAD_CAM_MODEL','xh017','zh_TW','KWT-3G-30X','2021-09-23 02:25:39','1',NULL,NULL,_binary '\0'),(2124,'LOAD_CAM_MODEL','xh017','en_US','KWT-3G-30X','2021-09-23 02:25:39','1',NULL,NULL,_binary '\0'),(2125,'LOAD_CAM_MODEL','xh018','zh_CN','DH-UAV-GA-TV-4640U-F25','2021-09-23 02:26:22','1',NULL,NULL,_binary '\0'),(2126,'LOAD_CAM_MODEL','xh018','zh_TW','DH-UAV-GA-TV-4640U-F25','2021-09-23 02:26:22','1',NULL,NULL,_binary '\0'),(2127,'LOAD_CAM_MODEL','xh018','en_US','DH-UAV-GA-TV-4640U-F25','2021-09-23 02:26:22','1',NULL,NULL,_binary '\0'),(2128,'LOAD_CAM_MODEL','xh020','zh_CN','MG120','2021-09-23 02:26:43','1',NULL,NULL,_binary '\0'),(2129,'LOAD_CAM_MODEL','xh020','zh_TW','MG120','2021-09-23 02:26:43','1',NULL,NULL,_binary '\0'),(2130,'LOAD_CAM_MODEL','xh020','en_US','MG120','2021-09-23 02:26:43','1',NULL,NULL,_binary '\0'),(2131,'OPEN_API_SAMPLE_LANGUAGE','JAVA_OKHTTP','en_US','Java-OkHttp','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2132,'OPEN_API_SAMPLE_LANGUAGE','JAVA_OKHTTP','zh_CN','Java-OkHttp','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2133,'OPEN_API_SAMPLE_LANGUAGE','JAVA_OKHTTP','zh_TW','Java-OkHttp','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2134,'OPEN_API_SAMPLE_LANGUAGE','PHP_HTTP_REQUEST2','en_US','Php-Http_Request2','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2135,'OPEN_API_SAMPLE_LANGUAGE','PHP_HTTP_REQUEST2','zh_CN','Php-Http_Request2','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2136,'OPEN_API_SAMPLE_LANGUAGE','PHP_HTTP_REQUEST2','zh_TW','Php-Http_Request2','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2137,'OPEN_API_SAMPLE_LANGUAGE','PYTHON_REQUESTS','en_US','Python-Requests','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2138,'OPEN_API_SAMPLE_LANGUAGE','PYTHON_REQUESTS','zh_CN','Python-Requests','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2139,'OPEN_API_SAMPLE_LANGUAGE','PYTHON_REQUESTS','zh_TW','Python-Requests','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2140,'OPEN_API_SAMPLE_LANGUAGE','NODEJS_AXIOS','en_US','NodeJs-Axios','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2141,'OPEN_API_SAMPLE_LANGUAGE','NODEJS_AXIOS','zh_CN','NodeJs-Axios','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2142,'OPEN_API_SAMPLE_LANGUAGE','NODEJS_AXIOS','zh_TW','NodeJs-Axios','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2143,'OPEN_API_SAMPLE_LANGUAGE','C#_RESTSHARP','en_US','C#-RestSharp','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2144,'OPEN_API_SAMPLE_LANGUAGE','C#_RESTSHARP','zh_CN','C#-RestSharp','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2145,'OPEN_API_SAMPLE_LANGUAGE','C#_RESTSHARP','zh_TW','C#-RestSharp','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2146,'ONLINE_STAT','OFFLINE','zh_TW','離綫','2021-10-25 07:48:23','1',NULL,NULL,_binary '\0'),(2147,'ONLINE_STAT','OFFLINE','en_US','offline','2021-10-25 07:48:23','1',NULL,NULL,_binary '\0'),(2148,'ONLINE_STAT','ONLINE','zh_TW','在綫','2021-10-25 07:48:32','1',NULL,NULL,_binary '\0'),(2149,'ONLINE_STAT','ONLINE','en_US','online','2021-10-25 07:48:32','1',NULL,NULL,_binary '\0'),(2150,'LEN','MUTIL_SELECT_COUNT','zh_TW','20','2021-10-25 07:50:43','1',NULL,NULL,_binary '\0'),(2151,'LEN','MUTIL_SELECT_COUNT','en_US','20','2021-10-25 07:50:43','1',NULL,NULL,_binary '\0'),(2152,'POC_USER','358','zh_CN','358','2021-11-16 07:21:53','175627050911006720','2022-12-14 14:08:32','188243415207510016',_binary '\0'),(2153,'POC_USER','358','zh_TW','358','2021-11-16 07:21:53','175627050911006720','2022-12-14 14:08:32','188243415207510016',_binary '\0'),(2154,'POC_USER','358','en_US','358','2021-11-16 07:21:53','175627050911006720','2022-12-14 14:08:32','188243415207510016',_binary '\0'),(2155,'DEV_ACTION_MODEL','towerInspectionQJ','zh_CN','杆塔巡检(曲靖)','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016',_binary '\0'),(2156,'DEV_ACTION_MODEL','towerInspectionQJ','zh_TW','杆塔巡檢(曲靖)','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016',_binary '\0'),(2157,'DEV_ACTION_MODEL','towerInspectionQJ','en_US','Tower patrol inspection (Qujing)','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016',_binary '\0'),(2158,'CHEWUTONG_COMPANY','358','zh_CN','358','2021-11-17 08:48:33','175627050911006720',NULL,NULL,_binary '\0'),(2159,'CHEWUTONG_COMPANY','358','zh_TW','358','2021-11-17 08:48:33','175627050911006720',NULL,NULL,_binary '\0'),(2160,'CHEWUTONG_COMPANY','358','en_US','358','2021-11-17 08:48:33','175627050911006720',NULL,NULL,_binary '\0'),(2161,'CHEWUTONG_COMPANY','71','zh_CN','71','2021-11-17 08:49:34','175627050911006720',NULL,NULL,_binary '\0'),(2162,'CHEWUTONG_COMPANY','71','zh_TW','71','2021-11-17 08:49:34','175627050911006720',NULL,NULL,_binary '\0'),(2163,'CHEWUTONG_COMPANY','71','en_US','71','2021-11-17 08:49:34','175627050911006720',NULL,NULL,_binary '\0'),(2164,'LOAD_CAM_MODEL','gddc','zh_CN','光电吊舱-纵横','2021-11-19 02:53:02','175627050911006720',NULL,NULL,_binary '\0'),(2165,'LOAD_CAM_MODEL','gddc','zh_TW','光电吊舱-纵横','2021-11-19 02:53:02','175627050911006720',NULL,NULL,_binary '\0'),(2166,'LOAD_CAM_MODEL','gddc','en_US','光电吊舱-纵横','2021-11-19 02:53:02','175627050911006720',NULL,NULL,_binary '\0'),(2167,'INTERFACE_GROUP','INTERFACE_GROUP_FIRE','zh_CN','消防火情','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1',_binary '\0'),(2168,'INTERFACE_GROUP','INTERFACE_GROUP_FIRE','en_US','Fire','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1',_binary '\0'),(2169,'INTERFACE_GROUP','INTERFACE_GROUP_FIRE','zh_TW','消防火情','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1',_binary '\0'),(2170,'XF_COMPANY','2','zh_CN','2','2021-12-07 08:05:41','175627050911006720',NULL,NULL,_binary '\0'),(2171,'XF_COMPANY','2','zh_TW','2','2021-12-07 08:05:41','175627050911006720',NULL,NULL,_binary '\0'),(2172,'XF_COMPANY','2','en_US','2','2021-12-07 08:05:41','175627050911006720',NULL,NULL,_binary '\0'),(2173,'UASID_ZIGONG','UAS00011009 ','zh_CN','UAS01667274','2021-12-14 09:32:10','175627050911006720','2021-12-15 05:41:59','175627050911006720',_binary ''),(2174,'UASID_ZIGONG','UAS00011009 ','zh_TW','UAS01667274','2021-12-14 09:32:10','175627050911006720','2021-12-15 05:41:59','175627050911006720',_binary ''),(2175,'UASID_ZIGONG','UAS00011009 ','en_US','UAS01667274','2021-12-14 09:32:10','175627050911006720','2021-12-15 05:41:59','175627050911006720',_binary ''),(2176,'IP_ZIGONG','IP','zh_CN','110.189.153.152','2021-12-14 09:32:51','175627050911006720','2021-12-15 05:43:21','175627050911006720',_binary '\0'),(2177,'IP_ZIGONG','IP','zh_TW','110.189.153.152','2021-12-14 09:32:51','175627050911006720','2021-12-15 05:43:21','175627050911006720',_binary '\0'),(2178,'IP_ZIGONG','IP','en_US','110.189.153.152','2021-12-14 09:32:51','175627050911006720','2021-12-15 05:43:21','175627050911006720',_binary '\0'),(2179,'IP_ZIGONG','PORT','en_US','9001','2021-12-14 09:33:08','175627050911006720','2021-12-14 09:46:32','175627050911006720',_binary '\0'),(2180,'IP_ZIGONG','PORT','zh_TW','9001','2021-12-14 09:33:08','175627050911006720','2021-12-14 09:46:32','175627050911006720',_binary '\0'),(2181,'IP_ZIGONG','PORT','zh_CN','9001','2021-12-14 09:33:08','175627050911006720','2021-12-14 09:46:32','175627050911006720',_binary '\0'),(2182,'UASID_ZIGONG','UAS00011007','zh_TW','UAS01667273','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23',NULL,_binary ''),(2183,'UASID_ZIGONG','UAS00011007','zh_CN','UAS01667273','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23',NULL,_binary ''),(2184,'UASID_ZIGONG','UAS00011007','en_US','UAS01667273','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23',NULL,_binary ''),(2185,'UASID_ZIGONG','UAS00011010','zh_CN','UAS01667274','2021-12-15 05:42:13','175627050911006720',NULL,NULL,_binary '\0'),(2186,'UASID_ZIGONG','UAS00011010','zh_TW','UAS01667274','2021-12-15 05:42:13','175627050911006720',NULL,NULL,_binary '\0'),(2187,'UASID_ZIGONG','UAS00011010','en_US','UAS01667274','2021-12-15 05:42:13','175627050911006720',NULL,NULL,_binary '\0'),(2188,'DEV_MODEL_HUBBLE','test','zh_CN','test','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08',NULL,_binary ''),(2189,'DEV_MODEL_HUBBLE','test','zh_TW','test','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08',NULL,_binary ''),(2190,'DEV_MODEL_HUBBLE','test','en_US','test','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08',NULL,_binary ''),(2191,'TOWER_DEFECT_CATEGORY','cover','en_US','cover','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2192,'TOWER_DEFECT_CATEGORY','cover','zh_CN','覆盖','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2193,'TOWER_DEFECT_CATEGORY','cover','zh_TW','覆蓋','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2194,'TOWER_DEFECT_CATEGORY','disaster','en_US','disaster','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2195,'TOWER_DEFECT_CATEGORY','disaster','zh_CN','灾害','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2196,'TOWER_DEFECT_CATEGORY','disaster','zh_TW','災害','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2197,'TOWER_DEFECT_CATEGORY','construction','en_US','construction','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2198,'TOWER_DEFECT_CATEGORY','construction','zh_CN','施工','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2199,'TOWER_DEFECT_CATEGORY','construction','zh_TW','施工','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2200,'TOWER_DEFECT_CATEGORY','fall','en_US','Fall','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2201,'TOWER_DEFECT_CATEGORY','fall','zh_CN','倒地','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2202,'TOWER_DEFECT_CATEGORY','fall','zh_TW','倒地','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2203,'TOWER_DEFECT_CATEGORY','tilted','en_US','Tilted','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2204,'TOWER_DEFECT_CATEGORY','tilted','zh_CN','倾斜','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2205,'TOWER_DEFECT_CATEGORY','tilted','zh_TW','傾斜','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2206,'ALARM_INDEX','area','en_US','area','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2207,'ALARM_INDEX','area','zh_CN','空域','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2208,'ALARM_INDEX','area','zh_TW','空域','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2209,'ALARM_INDEX','signal','en_US','signal','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2210,'ALARM_INDEX','signal','zh_CN','信号','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2211,'ALARM_INDEX','signal','zh_TW','信號','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2212,'ALARM_INDEX','gps','en_US','GPS','2022-01-19 01:13:53','1','2022-03-14 05:50:27','173818970422378496',_binary '\0'),(2213,'ALARM_INDEX','gps','zh_CN','GPS搜星','2022-01-19 01:13:53','1','2022-03-14 05:50:27','173818970422378496',_binary '\0'),(2214,'ALARM_INDEX','gps','zh_TW','GPS搜星','2022-01-19 01:13:53','1','2022-03-14 05:50:27','173818970422378496',_binary '\0'),(2215,'ALARM_INDEX','elec','en_US','electricity','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2216,'ALARM_INDEX','elec','zh_CN','电量','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2217,'ALARM_INDEX','elec','zh_TW','電量','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2218,'ALARM_INDEX','height','en_US','height','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2219,'ALARM_INDEX','height','zh_CN','高度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2220,'ALARM_INDEX','height','zh_TW','高度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2221,'ALARM_INDEX','speed','en_US','speed','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2222,'ALARM_INDEX','speed','zh_CN','速度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2223,'ALARM_INDEX','speed','zh_TW','速度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2224,'NOTICE_WAY','web','en_US','instation','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2225,'NOTICE_WAY','web','zh_CN','站内','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2226,'NOTICE_WAY','web','zh_TW','站内','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2227,'NOTICE_WAY','sms','en_US','message','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2228,'NOTICE_WAY','sms','zh_CN','短信','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2229,'NOTICE_WAY','sms','zh_TW','短信','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2230,'NOTICE_WAY','email','en_US','email','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2231,'NOTICE_WAY','email','zh_CN','邮件','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2232,'NOTICE_WAY','email','zh_TW','郵件','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2233,'NOTICE_WAY','message','en_US','message1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2234,'NOTICE_WAY','message','zh_CN','短信1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2235,'NOTICE_WAY','message','zh_TW','短信1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2236,'NOTICE_WAY','instation','en_US','instation1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2237,'NOTICE_WAY','instation','zh_CN','站内1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2238,'NOTICE_WAY','instation','zh_TW','站内1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2239,'ALARM_LEVEL','warn','en_US','warn','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2240,'ALARM_LEVEL','warn','zh_CN','警告','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2241,'ALARM_LEVEL','warn','zh_TW','警告','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2242,'ALARM_LEVEL','careful','en_US','careful','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2243,'ALARM_LEVEL','careful','zh_CN','小心','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2244,'ALARM_LEVEL','careful','zh_TW','小心','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2245,'ALARM_LEVEL','attention','en_US','attention','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2246,'ALARM_LEVEL','attention','zh_CN','注意','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2247,'ALARM_LEVEL','attention','zh_TW','注意','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2248,'ALARM_TRIGGER','rushInto','en_US','rush into','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2249,'ALARM_TRIGGER','rushInto','zh_CN','闯入','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2250,'ALARM_TRIGGER','rushInto','zh_TW','闯入','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2251,'ALARM_TRIGGER','rushOut','en_US','rush out','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2252,'ALARM_TRIGGER','rushOut','zh_CN','闯出','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2253,'ALARM_TRIGGER','rushOut','zh_TW','闯出','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2254,'ALARM_TRIGGER','smallOrEqual','en_US','small or equal','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2255,'ALARM_TRIGGER','smallOrEqual','zh_CN','小于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2256,'ALARM_TRIGGER','smallOrEqual','zh_TW','小于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2257,'ALARM_TRIGGER','bigOrEqual','en_US','big or equal','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2258,'ALARM_TRIGGER','bigOrEqual','zh_CN','大于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2259,'ALARM_TRIGGER','bigOrEqual','zh_TW','大于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2260,'ALARM_TRIGGER','small','en_US','small than','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2261,'ALARM_TRIGGER','small','zh_CN','小于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2262,'ALARM_TRIGGER','small','zh_TW','小于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2263,'ALARM_TRIGGER','big','en_US','big than','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2264,'ALARM_TRIGGER','big','zh_CN','大于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2265,'ALARM_TRIGGER','big','zh_TW','大于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2266,'DEAL_RESULT','0','en_US','undisposed','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2267,'DEAL_RESULT','0','zh_CN','未处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2268,'DEAL_RESULT','0','zh_TW','未处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2269,'DEAL_RESULT','1','en_US','processed','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2270,'DEAL_RESULT','1','zh_CN','已处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2271,'DEAL_RESULT','1','zh_TW','已处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2272,'AREA_ALARM_TRIGGER','rushOut','en_US','rush out','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2273,'AREA_ALARM_TRIGGER','rushOut','zh_CN','闯出','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2274,'AREA_ALARM_TRIGGER','rushOut','zh_TW','闖出','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2275,'AREA_ALARM_TRIGGER','rushInto','en_US','rush into','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2276,'AREA_ALARM_TRIGGER','rushInto','zh_CN','闯入','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2277,'AREA_ALARM_TRIGGER','rushInto','zh_TW','闖入','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2278,'TRIGGER_UNIT','level','en_US','level','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2279,'TRIGGER_UNIT','level','zh_CN','格','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2280,'TRIGGER_UNIT','level','zh_TW','格','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2281,'TRIGGER_UNIT','meter','en_US','m','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2282,'TRIGGER_UNIT','meter','zh_CN','m','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2283,'TRIGGER_UNIT','meter','zh_TW','m','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2284,'TRIGGER_UNIT','percent','en_US','%','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2285,'TRIGGER_UNIT','percent','zh_CN','%','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2286,'TRIGGER_UNIT','percent','zh_TW','%','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2287,'TRIGGER_UNIT','ge','en_US','.','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2288,'TRIGGER_UNIT','ge','zh_CN','个','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2289,'TRIGGER_UNIT','ge','zh_TW','个','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2290,'TRIGGER_UNIT','mPerSec','en_US','m/s','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2291,'TRIGGER_UNIT','mPerSec','zh_CN','m/s','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2292,'TRIGGER_UNIT','mPerSec','zh_TW','m/s','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2293,'PLANE_MODEL','DA','en_US','DA','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2294,'PLANE_MODEL','DA','zh_CN','DA','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2295,'PLANE_MODEL','DA','zh_TW','DA','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2296,'PLANE_MODEL','FFFF','en_US','FFFF','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2297,'PLANE_MODEL','FFFF','zh_CN','FFFF','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2298,'PLANE_MODEL','FFFF','zh_TW','FFFF','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2299,'PLANE_LEVEL','five','en_US','five','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2300,'PLANE_LEVEL','five','zh_CN','五','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2301,'PLANE_LEVEL','five','zh_TW','五','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2302,'PLANE_LEVEL','four','en_US','four','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2303,'PLANE_LEVEL','four','zh_CN','四','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2304,'PLANE_LEVEL','four','zh_TW','四','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2305,'PLANE_LEVEL','three','en_US','three','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2306,'PLANE_LEVEL','three','zh_CN','三','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2307,'PLANE_LEVEL','three','zh_TW','三','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2308,'PLANE_LEVEL','two','en_US','two','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2309,'PLANE_LEVEL','two','zh_CN','二','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2310,'PLANE_LEVEL','two','zh_TW','二','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2311,'PLANE_LEVEL','one','en_US','one','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2312,'PLANE_LEVEL','one','zh_CN','一','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2313,'PLANE_LEVEL','one','zh_TW','一','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2314,'IDENTITY_TYPE','idcard','en_US','identity card','2022-01-20 01:16:46','123',NULL,NULL,_binary '\0'),(2315,'IDENTITY_TYPE','idcard','zh_CN','身份证','2022-01-20 01:16:46','123',NULL,NULL,_binary '\0'),(2316,'IDENTITY_TYPE','idcard','zh_TW','身份证','2022-01-20 01:16:46','123',NULL,NULL,_binary '\0'),(2317,'AIRSPACE_UNIT','westarea','en_US','area','2022-01-20 01:17:03','123',NULL,NULL,_binary '\0'),(2318,'AIRSPACE_UNIT','westarea','zh_CN','西部战区空军航管中心','2022-01-20 01:17:03','123',NULL,NULL,_binary '\0'),(2319,'AIRSPACE_UNIT','westarea','zh_TW','西部战区空军航管中心','2022-01-20 01:17:03','123',NULL,NULL,_binary '\0'),(2320,'FLIGHT_TYPE','qualification','en_US','UAV operation qualification certificate of Aerial ','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2321,'FLIGHT_TYPE','qualification','zh_CN','航拍协会无人机操作资格证书','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2322,'FLIGHT_TYPE','qualification','zh_TW','航拍协会无人机操作资格证书','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2323,'FLIGHT_TYPE','medium ','en_US','Civil medium UAV driver\'s license','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2324,'FLIGHT_TYPE','medium ','zh_CN','民用中型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2325,'FLIGHT_TYPE','medium ','zh_TW','民用中型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2326,'FLIGHT_TYPE','micro','en_US','Civil micro UAV driver\'s license','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2327,'FLIGHT_TYPE','micro','zh_CN','民用微型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2328,'FLIGHT_TYPE','micro','zh_TW','民用微型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2329,'FLIGHT_TYPE','light','en_US','Civil light UAV driver\'s license','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2330,'FLIGHT_TYPE','light','zh_CN','民用轻型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2331,'FLIGHT_TYPE','light','zh_TW','民用轻型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2332,'FLIGHT_TYPE','perair','en_US','personal air','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2333,'FLIGHT_TYPE','perair','zh_CN','私用飞机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2334,'FLIGHT_TYPE','perair','zh_TW','私用飞机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2335,'FLIGHT_TYPE','airtrans','en_US','airline transport','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2336,'FLIGHT_TYPE','airtrans','zh_CN','航线运输驾驶执照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2337,'FLIGHT_TYPE','airtrans','zh_TW','航线运输驾驶执照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2338,'PROCEDURE_TYPE','PROCEDURE_TYPE','en_US','0','2022-01-20 01:17:45','123','2023-07-17 08:43:34','199120334480211968',_binary '\0'),(2339,'PROCEDURE_TYPE','PROCEDURE_TYPE','zh_CN','0','2022-01-20 01:17:45','123','2023-07-17 08:43:34','199120334480211968',_binary '\0'),(2340,'PROCEDURE_TYPE','PROCEDURE_TYPE','zh_TW','0','2022-01-20 01:17:45','123','2023-07-17 08:43:34','199120334480211968',_binary '\0'),(2341,'REAL_STAT','0','en_US','simulate','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2342,'REAL_STAT','0','zh_CN','模拟机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2343,'REAL_STAT','0','zh_TW','模拟机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2344,'REAL_STAT','1','en_US','real uav','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2345,'REAL_STAT','1','zh_CN','真机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2346,'REAL_STAT','1','zh_TW','真机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2347,'DEV_MODEL','LOAD_GAS_MODEL','en_US','Gas detector','2022-03-11 06:09:18','123','2023-10-11 06:10:59','123',_binary '\0'),(2348,'DEV_MODEL','LOAD_GAS_MODEL','zh_CN','气体检测仪','2022-03-11 06:09:18','123','2023-10-11 06:10:59','123',_binary '\0'),(2349,'DEV_MODEL','LOAD_GAS_MODEL','zh_TW','氣體檢測儀','2022-03-11 06:09:18','123','2023-10-11 06:10:59','123',_binary '\0'),(2350,'LOAD_GAS_MODEL','test-ltt-3','en_US','测试型号ltt-3','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2351,'LOAD_GAS_MODEL','test-ltt-3','zh_CN','测试型号ltt-3','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2352,'LOAD_GAS_MODEL','test-ltt-3','zh_TW','测试型号ltt-3','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2353,'LOAD_GAS_MODEL','test-ltt-2','en_US','测试型号ltt-2','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2354,'LOAD_GAS_MODEL','test-ltt-2','zh_CN','测试型号ltt-2','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2355,'LOAD_GAS_MODEL','test-ltt-2','zh_TW','测试型号ltt-2','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2356,'LOAD_GAS_MODEL','test-ltt-1','en_US','测试型号ltt-1','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2357,'LOAD_GAS_MODEL','test-ltt-1','zh_CN','测试型号ltt-1','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2358,'LOAD_GAS_MODEL','test-ltt-1','zh_TW','测试型号ltt-1','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2359,'LOAD_GAS_MODEL','qtjc001','en_US','KWT-TC-8-AB','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2360,'LOAD_GAS_MODEL','qtjc001','zh_CN','KWT-TC-8-AB','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2361,'LOAD_GAS_MODEL','qtjc001','zh_TW','KWT-TC-8-AB','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2362,'QUOTA_TYPE','123232','en_US','验证配额管理数量','2022-03-11 06:13:06','123','2022-04-27 05:58:20',NULL,_binary ''),(2363,'QUOTA_TYPE','123232','zh_CN','验证配额管理数量','2022-03-11 06:13:06','123','2022-04-27 05:58:20',NULL,_binary ''),(2364,'QUOTA_TYPE','123232','zh_TW','验证配额管理数量','2022-03-11 06:13:06','123','2022-04-27 05:58:20',NULL,_binary ''),(2365,'QUOTA_TYPE','STORAGE_CAPACITY','en_US','storage capacity','2022-03-11 06:13:06','123','2022-04-27 03:39:57','1',_binary '\0'),(2366,'QUOTA_TYPE','STORAGE_CAPACITY','zh_CN','存储空间容量','2022-03-11 06:13:06','123','2022-04-27 03:39:57','1',_binary '\0'),(2367,'QUOTA_TYPE','STORAGE_CAPACITY','zh_TW','存儲空間容量','2022-03-11 06:13:06','123','2022-04-27 03:39:57','1',_binary '\0'),(2368,'QUOTA_TYPE','KML_IMPORT_ROUTE_NUMBER','en_US','KMZ manage import route','2022-03-11 06:13:07','123','2024-03-04 03:49:33','89730635001757696',_binary '\0'),(2369,'QUOTA_TYPE','KML_IMPORT_ROUTE_NUMBER','zh_CN','KMZ管理导入航线','2022-03-11 06:13:07','123','2024-03-04 03:49:33','89730635001757696',_binary '\0'),(2370,'QUOTA_TYPE','KML_IMPORT_ROUTE_NUMBER','zh_TW','KMZ管理導入航線','2022-03-11 06:13:07','123','2024-03-04 03:49:33','89730635001757696',_binary '\0'),(2371,'SAVE_STAT','0','en_US','no','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2372,'SAVE_STAT','0','zh_CN','否','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2373,'SAVE_STAT','0','zh_TW','否','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2374,'SAVE_STAT','1','en_US','yes','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2375,'SAVE_STAT','1','zh_CN','是','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2376,'SAVE_STAT','1','zh_TW','是','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2377,'UASID_ZIGONG','UAS00011175','zh_CN','UAS00030008','2022-03-23 03:30:23','175627050911006720',NULL,NULL,_binary '\0'),(2378,'UASID_ZIGONG','UAS00011175','zh_TW','UAS00030008','2022-03-23 03:30:23','175627050911006720',NULL,NULL,_binary '\0'),(2379,'UASID_ZIGONG','UAS00011175','en_US','UAS00030008','2022-03-23 03:30:23','175627050911006720',NULL,NULL,_binary '\0'),(2380,'BLUR_RULE','ACCOUNT_RULE','en_US','account','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2381,'BLUR_RULE','ACCOUNT_RULE','zh_CN','账号','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2382,'BLUR_RULE','ACCOUNT_RULE','zh_TW','賬號','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2383,'BLUR_RULE','EMAIL_RULE','en_US','email','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2384,'BLUR_RULE','EMAIL_RULE','zh_CN','邮箱','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2385,'BLUR_RULE','EMAIL_RULE','zh_TW','郵箱','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2386,'BLUR_RULE','TELEPHONE','en_US','telephone','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2387,'BLUR_RULE','TELEPHONE','zh_CN','手机号','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2388,'BLUR_RULE','TELEPHONE','zh_TW','手機號','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2389,'PLANE_MODEL','wrjxh060','zh_CN','R1000','2022-03-30 06:15:28','175627050911006720',NULL,NULL,_binary '\0'),(2390,'PLANE_MODEL','wrjxh060','en_US','R1000','2022-03-30 06:15:28','175627050911006720',NULL,NULL,_binary '\0'),(2391,'PLANE_MODEL','wrjxh060','zh_TW','R1000','2022-03-30 06:15:28','175627050911006720',NULL,NULL,_binary '\0'),(2392,'MNF','sccj025','zh_CN','广州市华科尔科技股份有限公司','2022-03-30 06:16:30','175627050911006720',NULL,NULL,_binary '\0'),(2393,'MNF','sccj025','zh_TW','廣州市華科爾科技股份有限公司','2022-03-30 06:16:30','175627050911006720',NULL,NULL,_binary '\0'),(2394,'MNF','sccj025','en_US','WALKERA','2022-03-30 06:16:30','175627050911006720',NULL,NULL,_binary '\0'),(2395,'ADAPT_MNF','sccj025','zh_CN','WALKERA','2022-03-30 06:16:38','175627050911006720',NULL,NULL,_binary '\0'),(2396,'ADAPT_MNF','sccj025','zh_TW','WALKERA','2022-03-30 06:16:38','175627050911006720',NULL,NULL,_binary '\0'),(2397,'ADAPT_MNF','sccj025','en_US','WALKERA','2022-03-30 06:16:38','175627050911006720',NULL,NULL,_binary '\0'),(2398,'LOAD_CAM_MODEL','xh021','zh_CN','WK30','2022-03-30 06:17:45','175627050911006720',NULL,NULL,_binary '\0'),(2399,'LOAD_CAM_MODEL','xh021','zh_TW','WK30','2022-03-30 06:17:45','175627050911006720',NULL,NULL,_binary '\0'),(2400,'LOAD_CAM_MODEL','xh021','en_US','WK30','2022-03-30 06:17:45','175627050911006720',NULL,NULL,_binary '\0'),(2401,'DEV_ACTION_MODEL','ZOOM','zh_CN','变焦动作','2022-04-13 03:01:09','175627050911006720','2022-04-13 03:01:31','175627050911006720',_binary '\0'),(2402,'DEV_ACTION_MODEL','ZOOM','zh_TW','變焦动作','2022-04-13 03:01:09','175627050911006720','2022-04-13 03:01:31','175627050911006720',_binary '\0'),(2403,'DEV_ACTION_MODEL','ZOOM','en_US','ZOOM','2022-04-13 03:01:09','175627050911006720','2022-04-13 03:01:31','175627050911006720',_binary '\0'),(2404,'MNF','sccj026','zh_CN','华力创通','2022-04-27 01:14:33','175627050911006720',NULL,NULL,_binary '\0'),(2405,'MNF','sccj026','zh_TW','华力创通','2022-04-27 01:14:33','175627050911006720',NULL,NULL,_binary '\0'),(2406,'MNF','sccj026','en_US','华力创通','2022-04-27 01:14:33','175627050911006720',NULL,NULL,_binary '\0'),(2407,'PLANE_MODEL','wrjxh061','zh_CN','HWA-ZC','2022-04-27 01:15:01','175627050911006720',NULL,NULL,_binary '\0'),(2408,'PLANE_MODEL','wrjxh061','zh_TW','HWA-ZC','2022-04-27 01:15:01','175627050911006720',NULL,NULL,_binary '\0'),(2409,'PLANE_MODEL','wrjxh061','en_US','HWA-ZC','2022-04-27 01:15:01','175627050911006720',NULL,NULL,_binary '\0'),(2410,'LOAD_CAM_MODEL','xh022','zh_CN','华力创通通用载荷','2022-04-27 01:18:12','175627050911006720',NULL,NULL,_binary '\0'),(2411,'LOAD_CAM_MODEL','xh022','zh_TW','华力创通通用载荷','2022-04-27 01:18:12','175627050911006720',NULL,NULL,_binary '\0'),(2412,'LOAD_CAM_MODEL','xh022','en_US','华力创通通用载荷','2022-04-27 01:18:12','175627050911006720',NULL,NULL,_binary '\0'),(2413,'DEV_MODEL','HOUSE_MODEL','en_US','storage house ','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2414,'DEV_MODEL','HOUSE_MODEL','zh_CN','仓库','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2415,'DEV_MODEL','HOUSE_MODEL','zh_TW','倉庫','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2416,'DEV_MODEL','AutoTest_load','en_US','auto test load','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2417,'DEV_MODEL','AutoTest_load','zh_CN','载荷管理自动化','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2418,'DEV_MODEL','AutoTest_load','zh_TW','载荷管理自动化','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2419,'QUOTA_TYPE','SUB_COMPANY_NUMBER','en_US','Sub organization number','2022-04-27 03:39:57','1','2024-02-19 06:15:34','89730635001757696',_binary '\0'),(2420,'QUOTA_TYPE','SUB_COMPANY_NUMBER','zh_CN','子组织数量','2022-04-27 03:39:57','1','2024-02-19 06:15:34','89730635001757696',_binary '\0'),(2421,'QUOTA_TYPE','SUB_COMPANY_NUMBER','zh_TW','子組織數量','2022-04-27 03:39:57','1','2024-02-19 06:15:34','89730635001757696',_binary '\0'),(2422,'PLANE_MODEL','xiliuuav','zh_CN','SkyCells-T15kg200m','2022-04-27 06:23:33','199120334480211968',NULL,NULL,_binary '\0'),(2423,'PLANE_MODEL','xiliuuav','zh_TW','SkyCells-T15kg200m','2022-04-27 06:23:33','199120334480211968',NULL,NULL,_binary '\0'),(2424,'PLANE_MODEL','xiliuuav','en_US','SkyCells-T15kg200m','2022-04-27 06:23:33','199120334480211968',NULL,NULL,_binary '\0'),(2425,'DEV_MODEL','SPARY','zh_CN','喷洒水泵','2022-05-06 08:55:41','188243415207510016',NULL,NULL,_binary '\0'),(2426,'DEV_MODEL','SPARY','zh_TW','喷洒水泵','2022-05-06 08:55:41','188243415207510016',NULL,NULL,_binary '\0'),(2427,'DEV_MODEL','SPARY','en_US','喷洒水泵','2022-05-06 08:55:41','188243415207510016',NULL,NULL,_binary '\0'),(2428,'SPARY','sxh001','zh_CN','天途水泵','2022-05-06 08:56:58','188243415207510016',NULL,NULL,_binary '\0'),(2429,'SPARY','sxh001','zh_TW','天途水泵','2022-05-06 08:56:58','188243415207510016',NULL,NULL,_binary '\0'),(2430,'SPARY','sxh001','en_US','天途水泵','2022-05-06 08:56:58','188243415207510016',NULL,NULL,_binary '\0'),(2431,'PICTURE_LABELS','PL1','en_US','农业面源污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2432,'PICTURE_LABELS','PL1','zh_CN','农业面源污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2433,'PICTURE_LABELS','PL1','zh_TW','农业面源污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2434,'PICTURE_LABELS','PL2','en_US','固废堆存','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2435,'PICTURE_LABELS','PL2','zh_CN','固废堆存','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2436,'PICTURE_LABELS','PL2','zh_TW','固废堆存','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2437,'PICTURE_LABELS','PL3','en_US','水体污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2438,'PICTURE_LABELS','PL3','zh_CN','水体污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2439,'PICTURE_LABELS','PL3','zh_TW','水体污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2440,'PICTURE_LABELS','PL7','en_US','城镇排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2441,'PICTURE_LABELS','PL7','zh_CN','城镇排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2442,'PICTURE_LABELS','PL7','zh_TW','城镇排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2443,'PICTURE_LABELS','PL8','en_US','农业排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2444,'PICTURE_LABELS','PL8','zh_CN','农业排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2445,'PICTURE_LABELS','PL8','zh_TW','农业排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2446,'PICTURE_LABELS','PL9','en_US','灌区排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2447,'PICTURE_LABELS','PL9','zh_CN','灌区排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2448,'PICTURE_LABELS','PL9','zh_TW','灌区排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2449,'PICTURE_LABELS','PL4','en_US','扬尘污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2450,'PICTURE_LABELS','PL4','zh_CN','扬尘污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2451,'PICTURE_LABELS','PL4','zh_TW','扬尘污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2452,'PICTURE_LABELS','PL5','en_US','散乱污','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2453,'PICTURE_LABELS','PL5','zh_CN','散乱污','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2454,'PICTURE_LABELS','PL5','zh_TW','散乱污','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2455,'PICTURE_LABELS','PL6','en_US','工业排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2456,'PICTURE_LABELS','PL6','zh_CN','工业排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2457,'PICTURE_LABELS','PL6','zh_TW','工业排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2458,'PICTURE_LABELS','PL10','en_US','农设施排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2459,'PICTURE_LABELS','PL10','zh_CN','农设施排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2460,'PICTURE_LABELS','PL10','zh_TW','农设施排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2461,'PICTURE_LABELS','PL11','en_US','农污水散排口','2022-06-08 06:24:54','123',NULL,NULL,_binary '\0'),(2462,'PICTURE_LABELS','PL11','zh_CN','农污水散排口','2022-06-08 06:24:54','123',NULL,NULL,_binary '\0'),(2463,'PICTURE_LABELS','PL11','zh_TW','农污水散排口','2022-06-08 06:24:54','123',NULL,NULL,_binary '\0'),(2464,'PICTURE_LABELS','PL12','en_US','其他','2022-06-08 06:24:54','123','2023-11-30 03:52:34','1',_binary '\0'),(2465,'PICTURE_LABELS','PL12','zh_CN','其他','2022-06-08 06:24:54','123','2023-11-30 03:52:34','1',_binary '\0'),(2466,'PICTURE_LABELS','PL12','zh_TW','其他','2022-06-08 06:24:54','123','2023-11-30 03:52:34','1',_binary '\0'),(2467,'TASK_TYPE','yrd','en_US','Yellow River defense','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2468,'TASK_TYPE','yrd','zh_CN','黄河保卫战专项','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2469,'TASK_TYPE','yrd','zh_TW','黃河保衛戰專項','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2470,'TASK_TYPE','other','en_US','other','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2471,'TASK_TYPE','other','zh_CN','其他','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2472,'TASK_TYPE','other','zh_TW','其他','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2473,'AREA_TYPE','danger-fence','en_US','danger fence','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2474,'AREA_TYPE','danger-fence','zh_CN','危险围栏','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2475,'AREA_TYPE','danger-fence','zh_TW','危險圍欄','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2476,'AREA_TYPE','security-fence','en_US','security fence','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2477,'AREA_TYPE','security-fence','zh_CN','安全围栏','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2478,'AREA_TYPE','security-fence','zh_TW','安全圍欄','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2479,'GAS_LABELS','GL1','en_US','PM2.5异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2480,'GAS_LABELS','GL1','zh_CN','PM2.5异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2481,'GAS_LABELS','GL1','zh_TW','PM2.5异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2482,'GAS_LABELS','GL2','en_US','PM10异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2483,'GAS_LABELS','GL2','zh_CN','PM10异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2484,'GAS_LABELS','GL2','zh_TW','PM10异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2485,'GAS_LABELS','GL3','en_US','SO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2486,'GAS_LABELS','GL3','zh_CN','SO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2487,'GAS_LABELS','GL3','zh_TW','SO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2488,'GAS_LABELS','GL4','en_US','CO异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2489,'GAS_LABELS','GL4','zh_CN','CO异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2490,'GAS_LABELS','GL4','zh_TW','CO异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2491,'GAS_LABELS','GL5','en_US','NO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2492,'GAS_LABELS','GL5','zh_CN','NO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2493,'GAS_LABELS','GL5','zh_TW','NO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2494,'GAS_LABELS','GL6','en_US','O3异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2495,'GAS_LABELS','GL6','zh_CN','O3异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2496,'GAS_LABELS','GL6','zh_TW','O3异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2497,'GAS_LABELS','GL7','en_US','其他','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2498,'GAS_LABELS','GL7','zh_CN','其他','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2499,'GAS_LABELS','GL7','zh_TW','其他','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2500,'PILOT_VIOLATION_PENALTY','LICENSE_SUSPENSION','en_US','License Suspension','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2501,'PILOT_VIOLATION_PENALTY','LICENSE_SUSPENSION','zh_CN','吊销执照','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2502,'PILOT_VIOLATION_PENALTY','LICENSE_SUSPENSION','zh_TW','吊销执照','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2503,'PILOT_VIOLATION_PENALTY','DEDUCTION','en_US','Deduction','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2504,'PILOT_VIOLATION_PENALTY','DEDUCTION','zh_CN','扣分','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2505,'PILOT_VIOLATION_PENALTY','DEDUCTION','zh_TW','扣分','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2506,'PILOT_VIOLATION_PENALTY','FINE','en_US','Fine','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2507,'PILOT_VIOLATION_PENALTY','FINE','zh_CN','罚款','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2508,'PILOT_VIOLATION_PENALTY','FINE','zh_TW','罚款','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2509,'PILOT_VIOLATION_PENALTY','WARN','en_US','Warn','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2510,'PILOT_VIOLATION_PENALTY','WARN','zh_CN','警告','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2511,'PILOT_VIOLATION_PENALTY','WARN','zh_TW','警告','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2512,'PILOT_VIOLATION_TYPE','ANONYMOUS_FLY','en_US','Anonymous Fly','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2513,'PILOT_VIOLATION_TYPE','ANONYMOUS_FLY','zh_CN','黑飞','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2514,'PILOT_VIOLATION_TYPE','ANONYMOUS_FLY','zh_TW','黑飞','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2515,'PILOT_VIOLATION_TYPE','NO_FLY_AREA','en_US','No-Fly Area','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2516,'PILOT_VIOLATION_TYPE','NO_FLY_AREA','zh_CN','禁飞区域','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2517,'PILOT_VIOLATION_TYPE','NO_FLY_AREA','zh_TW','禁飞区域','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2518,'PILOT_VIOLATION_TYPE','WORK_DISTURBANCE','en_US','Work Disturbance','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2519,'PILOT_VIOLATION_TYPE','WORK_DISTURBANCE','zh_CN','低空区域作业干扰','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2520,'PILOT_VIOLATION_TYPE','WORK_DISTURBANCE','zh_TW','低空区域作业干扰','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2521,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_INSTRUCTOR','en_US','VTOLfixed-wing Instructor','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2522,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_INSTRUCTOR','zh_CN','垂直起降固定翼-教员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2523,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_INSTRUCTOR','zh_TW','垂直起降固定翼-教员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2524,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','en_US','VTOLfixed-wing over-the-horizon pilot','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2525,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','zh_CN','垂直起降固定翼-超视距驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2526,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','zh_TW','垂直起降固定翼-超视距驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2527,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','en_US','VTOLfixed-wing line-of-sight pilot','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2528,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','zh_CN','垂直起降固定翼-视距内驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2529,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','zh_TW','垂直起降固定翼-视距内驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2530,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_INSTRUCTOR','en_US','Airship Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2531,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_INSTRUCTOR','zh_CN','飞艇-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2532,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_INSTRUCTOR','zh_TW','飞艇-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2533,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_OVER_THE_HORIZON_PILOT','en_US','Airship over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2534,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_OVER_THE_HORIZON_PILOT','zh_CN','飞艇-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2535,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_OVER_THE_HORIZON_PILOT','zh_TW','飞艇-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2536,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_LINE_OF_SIGHT_PILOT','en_US','Airship line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2537,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_LINE_OF_SIGHT_PILOT','zh_CN','飞艇-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2538,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_LINE_OF_SIGHT_PILOT','zh_TW','飞艇-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2539,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_INSTRUCTOR','en_US','Multi-rotor Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2540,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_INSTRUCTOR','zh_CN','多旋翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2541,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_INSTRUCTOR','zh_TW','多旋翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2542,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_OVER_THE_HORIZON_PILOT','en_US','Multi-rotor over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2543,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_OVER_THE_HORIZON_PILOT','zh_CN','多旋翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2544,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_OVER_THE_HORIZON_PILOT','zh_TW','多旋翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2545,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_LINE_OF_SIGHT_PILOT','en_US','Multi-rotor line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2546,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_LINE_OF_SIGHT_PILOT','zh_CN','多旋翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2547,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_LINE_OF_SIGHT_PILOT','zh_TW','多旋翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2548,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_INSTRUCTOR','en_US','Helicopter Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2549,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_INSTRUCTOR','zh_CN','直升机-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2550,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_INSTRUCTOR','zh_TW','直升机-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2551,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_OVER_THE_HORIZON_PILOT','en_US','Helicopter over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2552,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_OVER_THE_HORIZON_PILOT','zh_CN','直升机-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2553,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_OVER_THE_HORIZON_PILOT','zh_TW','直升机-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2554,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_LINE_OF_SIGHT_PILOT','en_US','Helicopter line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2555,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_LINE_OF_SIGHT_PILOT','zh_CN','直升机-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2556,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_LINE_OF_SIGHT_PILOT','zh_TW','直升机-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2557,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_INSTRUCTOR','en_US','Fixed-wing Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2558,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_INSTRUCTOR','zh_CN','固定翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2559,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_INSTRUCTOR','zh_TW','固定翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2560,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_OVER_THE_HORIZON_PILOT','en_US','Fixed-wing over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2561,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_OVER_THE_HORIZON_PILOT','zh_CN','固定翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2562,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_OVER_THE_HORIZON_PILOT','zh_TW','固定翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2563,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_LINE_OF_SIGHT_PILOT','en_US','Fixed-wing line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2564,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_LINE_OF_SIGHT_PILOT','zh_CN','固定翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2565,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_LINE_OF_SIGHT_PILOT','zh_TW','固定翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2566,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','en_US','Demo Company','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2567,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','zh_CN','演示组织','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2568,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','zh_TW','演示組織','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2569,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','en_US','Industry Company','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2570,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','zh_CN','行业组织','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2571,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','zh_TW','行业組織','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2572,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','en_US','Normal Company','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2573,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','zh_CN','普通组织','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2574,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','zh_TW','普通組織','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2575,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ALL','en_US','All','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2576,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ALL','zh_CN','通用模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2577,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ALL','zh_TW','通用模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2578,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ROLE','en_US','Role','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2579,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ROLE','zh_CN','角色模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2580,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ROLE','zh_TW','角色模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2581,'MNF','EMERGENCY_COMMUNICATION','en_US','Emergency Communication','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1',_binary '\0'),(2582,'MNF','EMERGENCY_COMMUNICATION','zh_CN','应急通信','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1',_binary '\0'),(2583,'MNF','EMERGENCY_COMMUNICATION','zh_TW','應急通信','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1',_binary '\0'),(2584,'SUAV_USER_CERTIFICATION_STATUS','CERTIFIED','en_US','verified','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2585,'SUAV_USER_CERTIFICATION_STATUS','CERTIFIED','zh_CN','已认证','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2586,'SUAV_USER_CERTIFICATION_STATUS','CERTIFIED','zh_TW','已認證','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2587,'SUAV_USER_CERTIFICATION_STATUS','UNDER_CERTIFICATION','en_US','Under Review','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2588,'SUAV_USER_CERTIFICATION_STATUS','UNDER_CERTIFICATION','zh_CN','认证中','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2589,'SUAV_USER_CERTIFICATION_STATUS','UNDER_CERTIFICATION','zh_TW','認證中','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2590,'SUAV_USER_CERTIFICATION_STATUS','UNCERTIFIED','en_US','Not certified','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2591,'SUAV_USER_CERTIFICATION_STATUS','UNCERTIFIED','zh_CN','未认证','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2592,'SUAV_USER_CERTIFICATION_STATUS','UNCERTIFIED','zh_TW','未認證','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2593,'SUAV_USER_STATUS','DISABLED','en_US','disabled','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2594,'SUAV_USER_STATUS','DISABLED','zh_CN','禁用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2595,'SUAV_USER_STATUS','DISABLED','zh_TW','禁用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2596,'SUAV_USER_STATUS','ENABLED','en_US','available','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2597,'SUAV_USER_STATUS','ENABLED','zh_CN','可用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2598,'SUAV_USER_STATUS','ENABLED','zh_TW','可用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2599,'PLANE_MODEL','Tethered_Drone','en_US','系留无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2600,'PLANE_MODEL','Tethered_Drone','zh_CN','系留无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2601,'PLANE_MODEL','Tethered_Drone','zh_TW','系留无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2602,'PLANE_MODEL','Medium_Drone','en_US','中型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2603,'PLANE_MODEL','Medium_Drone','zh_CN','中型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2604,'PLANE_MODEL','Medium_Drone','zh_TW','中型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2605,'PLANE_MODEL','Large_Drone','en_US','大型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2606,'PLANE_MODEL','Large_Drone','zh_CN','大型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2607,'PLANE_MODEL','Large_Drone','zh_TW','大型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2608,'PLANE_MODEL','test','en_US','testtest','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2609,'PLANE_MODEL','test','zh_CN','testtest','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2610,'PLANE_MODEL','test','zh_TW','testtest','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2611,'MAINTENANCE_TEAM','mt1','en_US','运维班组1','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2612,'MAINTENANCE_TEAM','mt1','zh_CN','运维班组1','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2613,'MAINTENANCE_TEAM','mt1','zh_TW','运维班组1','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2614,'MAINTENANCE_TEAM','mt2','en_US','运维班组2','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2615,'MAINTENANCE_TEAM','mt2','zh_CN','运维班组2','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2616,'MAINTENANCE_TEAM','mt2','zh_TW','运维班组2','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2617,'MAINTENANCE_TEAM','mt3','en_US','运维班组3','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2618,'MAINTENANCE_TEAM','mt3','zh_CN','运维班组3','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2619,'MAINTENANCE_TEAM','mt3','zh_TW','运维班组3','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2620,'TOWER_CATEGORY','tc1','en_US','杆塔类别1','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2621,'TOWER_CATEGORY','tc1','zh_CN','杆塔类别1','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2622,'TOWER_CATEGORY','tc1','zh_TW','杆塔类别1','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2623,'TOWER_CATEGORY','tc2','en_US','杆塔类别2','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2624,'TOWER_CATEGORY','tc2','zh_CN','杆塔类别2','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2625,'TOWER_CATEGORY','tc2','zh_TW','杆塔类别2','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2626,'scrName','1323096648758464513','en_US','Mission','2022-10-12 02:17:11','1','2022-10-13 08:24:06','1',_binary '\0'),(2627,'scrName','1323096648758464513','zh_CN','飞行作业','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2628,'scrName','1323096648758464513','zh_TW','飛行作業','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2629,'scrName','1323096648758464512','en_US','Tower','2022-10-12 02:17:11','1','2022-10-13 08:24:16','1',_binary '\0'),(2630,'scrName','1323096648758464512','zh_CN','杆塔巡检','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2631,'scrName','1323096648758464512','zh_TW','桿塔巡檢','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2632,'scrName','1323096648758464516','en_US','Model Process','2022-10-12 02:17:11','1','2022-10-13 08:24:27','1',_binary '\0'),(2633,'scrName','1323096648758464516','zh_CN','二维建图与三维建模','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2634,'scrName','1323096648758464516','zh_TW','二維建圖與三維建模','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2635,'scrName','1323096648758464517','en_US','Surveillance','2022-10-12 02:17:11','1','2022-10-13 08:24:35','1',_binary '\0'),(2636,'scrName','1323096648758464517','zh_CN','飞行监视','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2637,'scrName','1323096648758464517','zh_TW','飛行監視','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2638,'INTERFACE_GROUP','INTERFACE_GROUP_AI','zh_CN','AI能力','2022-10-18 01:12:21','188243415207510016',NULL,NULL,_binary '\0'),(2639,'INTERFACE_GROUP','INTERFACE_GROUP_AI','zh_TW','AI能力','2022-10-18 01:12:21','188243415207510016',NULL,NULL,_binary '\0'),(2640,'INTERFACE_GROUP','INTERFACE_GROUP_AI','en_US','AI能力','2022-10-18 01:12:21','188243415207510016',NULL,NULL,_binary '\0'),(2641,'INTERFACE_GROUP','INTERFACE_GROUP_MODELV2','zh_CN','二三维','2022-10-18 01:37:03','188243415207510016',NULL,NULL,_binary '\0'),(2642,'INTERFACE_GROUP','INTERFACE_GROUP_MODELV2','zh_TW','二三維','2022-10-18 01:37:03','188243415207510016',NULL,NULL,_binary '\0'),(2643,'INTERFACE_GROUP','INTERFACE_GROUP_MODELV2','en_US','2D & 3D','2022-10-18 01:37:03','188243415207510016',NULL,NULL,_binary '\0'),(2644,'INTERFACE_GROUP','INTERFACE_FLIGHTCONTROL','zh_CN','飞行控制','2022-11-03 03:13:37','1','2022-11-03 03:13:47',NULL,_binary ''),(2645,'INTERFACE_GROUP','INTERFACE_FLIGHTCONTROL','zh_TW','飞行控制','2022-11-03 03:13:37','1','2022-11-03 03:13:47',NULL,_binary ''),(2646,'INTERFACE_GROUP','INTERFACE_FLIGHTCONTROL','en_US','flightControl','2022-11-03 03:13:37','1','2022-11-03 03:13:47',NULL,_binary ''),(2647,'INTERFACE_GROUP','INTERFACE_GROUP_FLIGHTCONTROL','zh_CN','飞行控制','2022-11-03 03:14:12','1',NULL,NULL,_binary '\0'),(2648,'INTERFACE_GROUP','INTERFACE_GROUP_FLIGHTCONTROL','zh_TW','飞行控制','2022-11-03 03:14:12','1',NULL,NULL,_binary '\0'),(2649,'INTERFACE_GROUP','INTERFACE_GROUP_FLIGHTCONTROL','en_US','flightControl','2022-11-03 03:14:12','1',NULL,NULL,_binary '\0'),(2650,'INTERFACE_GROUP','INTERFACE_GROUP_PAYLOADCONTROL','zh_CN','载荷控制','2022-11-07 05:47:14','1',NULL,NULL,_binary '\0'),(2651,'INTERFACE_GROUP','INTERFACE_GROUP_PAYLOADCONTROL','zh_TW','载荷控制','2022-11-07 05:47:14','1',NULL,NULL,_binary '\0'),(2652,'INTERFACE_GROUP','INTERFACE_GROUP_PAYLOADCONTROL','en_US','PayloadControl','2022-11-07 05:47:14','1',NULL,NULL,_binary '\0'),(2653,'LOAD_CAM_MODEL','xh023','zh_CN','翼龙2光电吊舱','2022-11-21 01:26:15','1',NULL,NULL,_binary '\0'),(2654,'LOAD_CAM_MODEL','xh023','zh_TW','翼龙2光电吊舱','2022-11-21 01:26:15','1',NULL,NULL,_binary '\0'),(2655,'LOAD_CAM_MODEL','xh023','en_US','翼龙2光电吊舱','2022-11-21 01:26:15','1',NULL,NULL,_binary '\0'),(2656,'MNF','sccj027','zh_CN','星展测控科技股份有限公司','2022-11-21 02:33:32','1','2023-03-02 02:14:49','199120334480211968',_binary '\0'),(2657,'MNF','sccj027','zh_TW','星展测控科技股份有限公司','2022-11-21 02:33:32','1','2023-03-02 02:14:49','199120334480211968',_binary '\0'),(2658,'MNF','sccj027','en_US','星展测控科技股份有限公司','2022-11-21 02:33:32','1','2023-03-02 02:14:49','199120334480211968',_binary '\0'),(2659,'PLANE_MODEL','wrjxh062','zh_CN','FS100','2022-11-21 02:34:13','1',NULL,NULL,_binary '\0'),(2660,'PLANE_MODEL','wrjxh062','zh_TW','FS100','2022-11-21 02:34:13','1',NULL,NULL,_binary '\0'),(2661,'PLANE_MODEL','wrjxh062','en_US','FS100','2022-11-21 02:34:13','1',NULL,NULL,_binary '\0'),(2662,'PLANE_SIZE','wrjcd005','zh_CN','中型','2022-11-21 02:35:01','1',NULL,NULL,_binary '\0'),(2663,'PLANE_SIZE','wrjcd005','zh_TW','中型','2022-11-21 02:35:01','1',NULL,NULL,_binary '\0'),(2664,'PLANE_SIZE','wrjcd005','en_US','Medium','2022-11-21 02:35:01','1',NULL,NULL,_binary '\0'),(2665,'CUSTOMIZE_MISSION_REPORT_ADDRESS','56','zh_CN','http://218.75.255.91:61000/monitor-business/report','2022-11-29 01:13:56','1','2022-12-06 06:51:43','1',_binary '\0'),(2666,'CUSTOMIZE_MISSION_REPORT_ADDRESS','56','zh_TW','http://218.75.255.91:61000/monitor-business/report','2022-11-29 01:13:56','1','2022-12-06 06:51:43','1',_binary '\0'),(2667,'CUSTOMIZE_MISSION_REPORT_ADDRESS','56','en_US','http://218.75.255.91:61000/monitor-business/report','2022-11-29 01:13:56','1','2022-12-06 06:51:43','1',_binary '\0'),(2668,'PLANE_MODEL','wrjxh063','zh_CN','大疆M30系列','2022-12-09 02:44:46','1','2023-09-20 08:29:34','1',_binary '\0'),(2669,'PLANE_MODEL','wrjxh063','zh_TW','大疆M30系列','2022-12-09 02:44:46','1','2023-09-20 08:29:34','1',_binary '\0'),(2670,'PLANE_MODEL','wrjxh063','en_US','M30 series','2022-12-09 02:44:46','1','2023-09-20 08:29:34','1',_binary '\0'),(2671,'PLANE_MODEL','wrjxh064','zh_CN','M30T','2022-12-09 02:45:00','1',NULL,NULL,_binary '\0'),(2672,'PLANE_MODEL','wrjxh064','zh_TW','M30T','2022-12-09 02:45:00','1',NULL,NULL,_binary '\0'),(2673,'PLANE_MODEL','wrjxh064','en_US','M30T','2022-12-09 02:45:00','1',NULL,NULL,_binary '\0'),(2674,'LOAD_CAM_MODEL','xh024','zh_CN','M30相机','2022-12-09 02:46:02','1',NULL,NULL,_binary '\0'),(2675,'LOAD_CAM_MODEL','xh024','zh_TW','M30相机','2022-12-09 02:46:02','1',NULL,NULL,_binary '\0'),(2676,'LOAD_CAM_MODEL','xh024','en_US','M30 Camera','2022-12-09 02:46:02','1',NULL,NULL,_binary '\0'),(2677,'LOAD_CAM_MODEL','xh025','zh_CN','M30T相机','2022-12-09 02:46:20','1',NULL,NULL,_binary '\0'),(2678,'LOAD_CAM_MODEL','xh025','zh_TW','M30T相机','2022-12-09 02:46:20','1',NULL,NULL,_binary '\0'),(2679,'LOAD_CAM_MODEL','xh025','en_US','M30T Camera','2022-12-09 02:46:20','1',NULL,NULL,_binary '\0'),(2680,'POC_USER','t2','zh_CN','t2','2022-12-14 14:02:27','188243415207510016','2022-12-14 14:33:47','188243415207510016',_binary '\0'),(2681,'POC_USER','t2','zh_TW','t2','2022-12-14 14:02:27','188243415207510016','2022-12-14 14:33:47','188243415207510016',_binary '\0'),(2682,'POC_USER','t2','en_US','t2','2022-12-14 14:02:27','188243415207510016','2022-12-14 14:33:47','188243415207510016',_binary '\0'),(2683,'POC_USER','t1','zh_CN','t1','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:32:42','188243415207510016',_binary '\0'),(2684,'POC_USER','t1','zh_TW','t1','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:32:42','188243415207510016',_binary '\0'),(2685,'POC_USER','t1','en_US','t1','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:32:42','188243415207510016',_binary '\0'),(2686,'PILOT_STATE','2','en_US','not pass','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2687,'PILOT_STATE','2','zh_CN','未通过','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2688,'PILOT_STATE','2','zh_TW','未通過','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2689,'PILOT_STATE','1','en_US','passed','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2690,'PILOT_STATE','1','zh_CN','已通过','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2691,'PILOT_STATE','1','zh_TW','已通過','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2692,'PILOT_STATE','0','en_US','verification','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2693,'PILOT_STATE','0','zh_CN','待验证','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123',_binary '\0'),(2694,'PILOT_STATE','0','zh_TW','待驗證','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123',_binary '\0'),(2695,'MNF','sccj028','zh_CN','沃飞长空科技(成都)有限公司','2023-02-08 14:56:24','175627050911006720','2023-02-08 14:56:40','175627050911006720',_binary ''),(2696,'MNF','sccj028','zh_TW','沃飞长空科技(成都)有限公司','2023-02-08 14:56:24','175627050911006720','2023-02-08 14:56:40','175627050911006720',_binary ''),(2697,'MNF','sccj028','en_US','沃飞长空科技(成都)有限公司','2023-02-08 14:56:24','175627050911006720','2023-02-08 14:56:40','175627050911006720',_binary ''),(2698,'MNF','sccj029','zh_CN','伊娃云智(成都)科技有限公司','2023-02-08 14:57:44','175627050911006720',NULL,NULL,_binary '\0'),(2699,'MNF','sccj029','zh_TW','伊娃云智(成都)科技有限公司','2023-02-08 14:57:44','175627050911006720',NULL,NULL,_binary '\0'),(2700,'MNF','sccj029','en_US','伊娃云智(成都)科技有限公司','2023-02-08 14:57:44','175627050911006720',NULL,NULL,_binary '\0'),(2701,'PLANE_MODEL','wrjxh065','zh_CN','Aee-x100','2023-02-08 15:03:00','175627050911006720',NULL,NULL,_binary '\0'),(2702,'PLANE_MODEL','wrjxh065','zh_TW','Aee-x100','2023-02-08 15:03:00','175627050911006720',NULL,NULL,_binary '\0'),(2703,'PLANE_MODEL','wrjxh065','en_US','Aee-x100','2023-02-08 15:03:00','175627050911006720',NULL,NULL,_binary '\0'),(2704,'PLANE_MODEL','wrjxh066','zh_CN','xc25','2023-02-08 15:03:14','175627050911006720',NULL,NULL,_binary '\0'),(2705,'PLANE_MODEL','wrjxh066','zh_TW','xc25','2023-02-08 15:03:14','175627050911006720',NULL,NULL,_binary '\0'),(2706,'PLANE_MODEL','wrjxh066','en_US','xc25','2023-02-08 15:03:14','175627050911006720',NULL,NULL,_binary '\0'),(2707,'PLANE_MODEL','wrjxh067','zh_CN','ER-T700','2023-02-08 15:03:33','175627050911006720',NULL,NULL,_binary '\0'),(2708,'PLANE_MODEL','wrjxh067','zh_TW','ER-T700','2023-02-08 15:03:33','175627050911006720',NULL,NULL,_binary '\0'),(2709,'PLANE_MODEL','wrjxh067','en_US','ER-T700','2023-02-08 15:03:33','175627050911006720',NULL,NULL,_binary '\0'),(2710,'LOAD_CAM_MODEL','xh026','zh_CN','一电通用摄像头','2023-02-08 15:03:56','175627050911006720',NULL,NULL,_binary '\0'),(2711,'LOAD_CAM_MODEL','xh026','zh_TW','一电通用摄像头','2023-02-08 15:03:56','175627050911006720',NULL,NULL,_binary '\0'),(2712,'LOAD_CAM_MODEL','xh026','en_US','一电通用摄像头','2023-02-08 15:03:56','175627050911006720',NULL,NULL,_binary '\0'),(2713,'LOAD_CAM_MODEL','xh027','zh_CN','伊娃通用摄像头','2023-02-08 15:04:13','175627050911006720',NULL,NULL,_binary '\0'),(2714,'LOAD_CAM_MODEL','xh027','zh_TW','伊娃通用摄像头','2023-02-08 15:04:13','175627050911006720',NULL,NULL,_binary '\0'),(2715,'LOAD_CAM_MODEL','xh027','en_US','伊娃通用摄像头','2023-02-08 15:04:13','175627050911006720',NULL,NULL,_binary '\0'),(2716,'LOAD_CAM_MODEL','xh028','zh_CN','沃飞通用摄像头','2023-02-08 15:04:26','175627050911006720',NULL,NULL,_binary '\0'),(2717,'LOAD_CAM_MODEL','xh028','zh_TW','沃飞通用摄像头','2023-02-08 15:04:26','175627050911006720',NULL,NULL,_binary '\0'),(2718,'LOAD_CAM_MODEL','xh028','en_US','沃飞通用摄像头','2023-02-08 15:04:26','175627050911006720',NULL,NULL,_binary '\0'),(2719,'LOAD_SPK_MODEL','hhqxh004','zh_CN','LP12','2023-02-13 01:31:23','1',NULL,NULL,_binary '\0'),(2720,'LOAD_SPK_MODEL','hhqxh004','zh_TW','LP12','2023-02-13 01:31:23','1',NULL,NULL,_binary '\0'),(2721,'LOAD_SPK_MODEL','hhqxh004','en_US','LP12','2023-02-13 01:31:23','1',NULL,NULL,_binary '\0'),(2722,'LOAD_CAM_MODEL','XZ001','zh_CN','光电吊舱-星展','2023-03-02 03:17:07','199120334480211968',NULL,NULL,_binary '\0'),(2723,'LOAD_CAM_MODEL','XZ001','zh_TW','光电吊舱-星展','2023-03-02 03:17:07','199120334480211968',NULL,NULL,_binary '\0'),(2724,'LOAD_CAM_MODEL','XZ001','en_US','光电吊舱-星展','2023-03-02 03:17:07','199120334480211968',NULL,NULL,_binary '\0'),(2725,'LOAD_HNG_MODEL','jkxh013','zh_CN','DJI DOCK','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1',_binary '\0'),(2726,'LOAD_HNG_MODEL','jkxh013','zh_TW','DJI DOCK','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1',_binary '\0'),(2727,'LOAD_HNG_MODEL','jkxh013','en_US','DJI DOCK','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1',_binary '\0'),(2728,'PLANE_MODEL','wrjxh071','zh_CN','御3行业版','2023-03-22 06:01:07','1',NULL,NULL,_binary '\0'),(2729,'PLANE_MODEL','wrjxh071','zh_TW','M3E','2023-03-22 06:01:07','1',NULL,NULL,_binary '\0'),(2730,'PLANE_MODEL','wrjxh071','en_US','M3E','2023-03-22 06:01:07','1',NULL,NULL,_binary '\0'),(2731,'PLANE_MODEL','wrjxh072','zh_CN','御3双光版','2023-03-22 06:01:30','1',NULL,NULL,_binary '\0'),(2732,'PLANE_MODEL','wrjxh072','zh_TW','M3T','2023-03-22 06:01:30','1',NULL,NULL,_binary '\0'),(2733,'PLANE_MODEL','wrjxh072','en_US','M3T','2023-03-22 06:01:30','1',NULL,NULL,_binary '\0'),(2734,'PLANE_MODEL','wrjxh073','zh_CN','御3多光谱版','2023-03-22 06:01:55','1',NULL,NULL,_binary '\0'),(2735,'PLANE_MODEL','wrjxh073','zh_TW','M3M','2023-03-22 06:01:55','1',NULL,NULL,_binary '\0'),(2736,'PLANE_MODEL','wrjxh073','en_US','M3M','2023-03-22 06:01:55','1',NULL,NULL,_binary '\0'),(2737,'LOAD_CAM_MODEL','xh030','en_US','DJI COMMON GIMMBAL','2023-03-22 06:06:01','1',NULL,NULL,_binary '\0'),(2738,'LOAD_CAM_MODEL','xh030','zh_CN','大疆通用云台相机','2023-03-22 06:06:01','1',NULL,NULL,_binary '\0'),(2739,'LOAD_CAM_MODEL','xh030','zh_TW','大疆通用云台相机','2023-03-22 06:06:01','1',NULL,NULL,_binary '\0'),(2740,'DEV_MODEL_HUBBLE','wrjxh063','zh_CN','4','2023-04-06 03:04:54','1',NULL,NULL,_binary '\0'),(2741,'DEV_MODEL_HUBBLE','wrjxh063','zh_TW','4','2023-04-06 03:04:54','1',NULL,NULL,_binary '\0'),(2742,'DEV_MODEL_HUBBLE','wrjxh063','en_US','4','2023-04-06 03:04:54','1',NULL,NULL,_binary '\0'),(2743,'DEV_MODEL_HUBBLE','xh024','en_US','17','2023-04-06 03:06:19','1',NULL,NULL,_binary '\0'),(2744,'DEV_MODEL_HUBBLE','xh024','zh_TW','17','2023-04-06 03:06:19','1',NULL,NULL,_binary '\0'),(2745,'DEV_MODEL_HUBBLE','xh024','zh_CN','17','2023-04-06 03:06:19','1',NULL,NULL,_binary '\0'),(2746,'LOAD_HNG_MODEL','jkxh014','en_US','M30','2023-04-09 06:23:41','173818970422378496',NULL,NULL,_binary '\0'),(2747,'LOAD_HNG_MODEL','jkxh014','zh_TW','M30','2023-04-09 06:23:41','173818970422378496',NULL,NULL,_binary '\0'),(2748,'LOAD_HNG_MODEL','jkxh014','zh_CN','M30','2023-04-09 06:23:41','173818970422378496',NULL,NULL,_binary '\0'),(2749,'LOAD_CAM_MODEL','M30_dual_camera','zh_CN','大疆M30摄像头','2023-04-09 06:24:30','173818970422378496',NULL,NULL,_binary '\0'),(2750,'LOAD_CAM_MODEL','M30_dual_camera','zh_TW','大疆M30摄像头','2023-04-09 06:24:30','173818970422378496',NULL,NULL,_binary '\0'),(2751,'LOAD_CAM_MODEL','M30_dual_camera','en_US','M30 camera','2023-04-09 06:24:30','173818970422378496',NULL,NULL,_binary '\0'),(2752,'APP_TYPE','PARTNER_APP','en_US','Collaborative applications','2023-04-18 06:14:40','1',NULL,NULL,_binary '\0'),(2753,'APP_TYPE','PARTNER_APP','zh_CN','合作应用','2023-04-18 06:14:40','1',NULL,NULL,_binary '\0'),(2754,'APP_TYPE','PARTNER_APP','zh_TW','合作应用','2023-04-18 06:14:40','1',NULL,NULL,_binary '\0'),(2755,'XF_COMPANY','167','zh_CN','167','2023-04-19 08:44:02','188243415207510016',NULL,NULL,_binary '\0'),(2756,'XF_COMPANY','167','zh_TW','167','2023-04-19 08:44:02','188243415207510016',NULL,NULL,_binary '\0'),(2757,'XF_COMPANY','167','en_US','167','2023-04-19 08:44:02','188243415207510016',NULL,NULL,_binary '\0'),(2758,'LOAD_GAS_MODEL','qtjc002','zh_CN','HF-G6SP','2023-04-24 02:33:42','1',NULL,NULL,_binary '\0'),(2759,'LOAD_GAS_MODEL','qtjc002','zh_TW','HF-G6SP','2023-04-24 02:33:42','1',NULL,NULL,_binary '\0'),(2760,'LOAD_GAS_MODEL','qtjc002','en_US','HF-G6SP','2023-04-24 02:33:42','1',NULL,NULL,_binary '\0'),(2761,'SCENARIOMAP','HUS00000076','zh_CN','320904-0-LAA-02-0001','2023-04-24 08:10:51','1','2023-06-20 12:03:24','89730635001757696',_binary '\0'),(2762,'SCENARIOMAP','HUS00000076','zh_TW','320904-0-LAA-02-0001','2023-04-24 08:10:51','1','2023-06-20 12:03:24','89730635001757696',_binary '\0'),(2763,'SCENARIOMAP','HUS00000076','en_US','320904-0-LAA-02-0001','2023-04-24 08:10:51','1','2023-06-20 12:03:24','89730635001757696',_binary '\0'),(2764,'SCENARIOMAP','HUS00000068','zh_CN','320211-0-LAA-02-0004','2023-04-24 08:14:53','1','2023-06-20 12:10:56','89730635001757696',_binary '\0'),(2765,'SCENARIOMAP','HUS00000068','zh_TW','320211-0-LAA-02-0004','2023-04-24 08:14:53','1','2023-06-20 12:10:56','89730635001757696',_binary '\0'),(2766,'SCENARIOMAP','HUS00000068','en_US','320211-0-LAA-02-0004','2023-04-24 08:14:53','1','2023-06-20 12:10:56','89730635001757696',_binary '\0'),(2767,'SCENARIOMAP','HUS00000077','zh_CN','321003-0-LAA-02-0001','2023-04-24 08:15:40','1','2023-06-20 12:11:25','89730635001757696',_binary '\0'),(2768,'SCENARIOMAP','HUS00000077','zh_TW','321003-0-LAA-02-0001','2023-04-24 08:15:40','1','2023-06-20 12:11:25','89730635001757696',_binary '\0'),(2769,'SCENARIOMAP','HUS00000077','en_US','321003-0-LAA-02-0001','2023-04-24 08:15:40','1','2023-06-20 12:11:25','89730635001757696',_binary '\0'),(2770,'SCENARIOMAP','HUS00000073','zh_CN','320703-0-LAA-02-0001','2023-04-24 08:24:18','1',NULL,NULL,_binary '\0'),(2771,'SCENARIOMAP','HUS00000073','zh_TW','320703-0-LAA-02-0001','2023-04-24 08:24:18','1',NULL,NULL,_binary '\0'),(2772,'SCENARIOMAP','HUS00000073','en_US','320703-0-LAA-02-0001','2023-04-24 08:24:18','1',NULL,NULL,_binary '\0'),(2773,'SCENARIOMAP','HUS00000066','zh_CN','320506-0-LAA-02-0001','2023-04-24 08:24:38','1',NULL,NULL,_binary '\0'),(2774,'SCENARIOMAP','HUS00000066','zh_TW','320506-0-LAA-02-0001','2023-04-24 08:24:38','1',NULL,NULL,_binary '\0'),(2775,'SCENARIOMAP','HUS00000066','en_US','320506-0-LAA-02-0001','2023-04-24 08:24:38','1',NULL,NULL,_binary '\0'),(2776,'SCENARIOMAP','HUS00000079','zh_CN','321204-0-LAA-02-0001','2023-04-24 08:24:59','1',NULL,NULL,_binary '\0'),(2777,'SCENARIOMAP','HUS00000079','zh_TW','321204-0-LAA-02-0001','2023-04-24 08:24:59','1',NULL,NULL,_binary '\0'),(2778,'SCENARIOMAP','HUS00000079','en_US','321204-0-LAA-02-0001','2023-04-24 08:24:59','1',NULL,NULL,_binary '\0'),(2779,'SCENARIOMAP','HUS00000075','zh_CN','320904-0-LAA-02-0005','2023-04-24 08:25:27','1',NULL,NULL,_binary '\0'),(2780,'SCENARIOMAP','HUS00000075','zh_TW','320904-0-LAA-02-0005','2023-04-24 08:25:27','1',NULL,NULL,_binary '\0'),(2781,'SCENARIOMAP','HUS00000075','en_US','320904-0-LAA-02-0005','2023-04-24 08:25:27','1',NULL,NULL,_binary '\0'),(2782,'SCENARIOMAP','HUS00000069','zh_CN','320211-0-LAA-02-0005','2023-04-24 08:25:50','1','2023-06-20 12:11:36','89730635001757696',_binary '\0'),(2783,'SCENARIOMAP','HUS00000069','zh_TW','320211-0-LAA-02-0005','2023-04-24 08:25:50','1','2023-06-20 12:11:36','89730635001757696',_binary '\0'),(2784,'SCENARIOMAP','HUS00000069','en_US','320211-0-LAA-02-0005','2023-04-24 08:25:50','1','2023-06-20 12:11:36','89730635001757696',_binary '\0'),(2785,'SCENARIOMAP','HUS00000072','zh_CN','320706-0-LAA-02-0001','2023-04-24 08:27:10','1','2023-06-20 12:13:10','89730635001757696',_binary '\0'),(2786,'SCENARIOMAP','HUS00000072','zh_TW','320706-0-LAA-02-0001','2023-04-24 08:27:10','1','2023-06-20 12:13:10','89730635001757696',_binary '\0'),(2787,'SCENARIOMAP','HUS00000072','en_US','320706-0-LAA-02-0001','2023-04-24 08:27:10','1','2023-06-20 12:13:10','89730635001757696',_binary '\0'),(2788,'SCENARIOMAP','HUS00000063','zh_CN','320115-0-LAA-02-0003','2023-04-24 08:30:45','1','2023-09-30 06:01:27','89730635001757696',_binary ''),(2789,'SCENARIOMAP','HUS00000063','zh_TW','320115-0-LAA-02-0003','2023-04-24 08:30:45','1','2023-09-30 06:01:27','89730635001757696',_binary ''),(2790,'SCENARIOMAP','HUS00000063','en_US','320115-0-LAA-02-0003','2023-04-24 08:30:45','1','2023-09-30 06:01:27','89730635001757696',_binary ''),(2791,'SCENARIOMAP','HUS00000062','zh_CN','320102-0-LAA-02-0002','2023-04-24 08:31:08','1',NULL,NULL,_binary '\0'),(2792,'SCENARIOMAP','HUS00000062','zh_TW','320102-0-LAA-02-0002','2023-04-24 08:31:08','1',NULL,NULL,_binary '\0'),(2793,'SCENARIOMAP','HUS00000062','en_US','320102-0-LAA-02-0002','2023-04-24 08:31:08','1',NULL,NULL,_binary '\0'),(2794,'SCENARIOMAP','HUS00000061','zh_CN','320102-0-LAA-02-0005','2023-04-24 08:31:27','1','2023-09-26 02:33:15',NULL,_binary ''),(2795,'SCENARIOMAP','HUS00000061','zh_TW','320102-0-LAA-02-0005','2023-04-24 08:31:27','1','2023-09-26 02:33:15',NULL,_binary ''),(2796,'SCENARIOMAP','HUS00000061','en_US','320102-0-LAA-02-0005','2023-04-24 08:31:27','1','2023-09-26 02:33:15',NULL,_binary ''),(2797,'SCENARIOMAP','HUS00000064','zh_CN','320111-0-LAA-02-0002','2023-04-24 08:31:47','1',NULL,NULL,_binary '\0'),(2798,'SCENARIOMAP','HUS00000064','zh_TW','320111-0-LAA-02-0002','2023-04-24 08:31:47','1',NULL,NULL,_binary '\0'),(2799,'SCENARIOMAP','HUS00000064','en_US','320111-0-LAA-02-0002','2023-04-24 08:31:47','1',NULL,NULL,_binary '\0'),(2800,'SCENARIOMAP','HUS00000074','zh_CN','320703-0-LAA-02-0002','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696',_binary '\0'),(2801,'SCENARIOMAP','HUS00000074','zh_TW','320703-0-LAA-02-0002','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696',_binary '\0'),(2802,'SCENARIOMAP','HUS00000074','en_US','320703-0-LAA-02-0002','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696',_binary '\0'),(2803,'SCENARIOMAP','HUS00000081','zh_CN','321302-0-LAA-02-0002','2023-04-24 08:32:27','1',NULL,NULL,_binary '\0'),(2804,'SCENARIOMAP','HUS00000081','zh_TW','321302-0-LAA-02-0002','2023-04-24 08:32:27','1',NULL,NULL,_binary '\0'),(2805,'SCENARIOMAP','HUS00000081','en_US','321302-0-LAA-02-0002','2023-04-24 08:32:27','1',NULL,NULL,_binary '\0'),(2806,'SCENARIOMAP','HUS00000083','zh_CN','321324-0-LAA-02-0002','2023-04-24 08:32:47','1','2023-04-27 15:15:24','1',_binary '\0'),(2807,'SCENARIOMAP','HUS00000083','zh_TW','321324-0-LAA-02-0002','2023-04-24 08:32:47','1','2023-04-27 15:15:24','1',_binary '\0'),(2808,'SCENARIOMAP','HUS00000083','en_US','321324-0-LAA-02-0002','2023-04-24 08:32:48','1','2023-04-27 15:15:24','1',_binary '\0'),(2809,'SCENARIOMAP','HUS00000082','zh_CN','321311-0-LAA-02-0005','2023-04-24 08:33:06','1',NULL,NULL,_binary '\0'),(2810,'SCENARIOMAP','HUS00000082','zh_TW','321311-0-LAA-02-0005','2023-04-24 08:33:06','1',NULL,NULL,_binary '\0'),(2811,'SCENARIOMAP','HUS00000082','en_US','321311-0-LAA-02-0005','2023-04-24 08:33:06','1',NULL,NULL,_binary '\0'),(2812,'SCENARIOMAP','HUS00000080','zh_CN','321202-0-LAA-02-0003','2023-04-24 08:33:25','1',NULL,NULL,_binary '\0'),(2813,'SCENARIOMAP','HUS00000080','zh_TW','321202-0-LAA-02-0003','2023-04-24 08:33:25','1',NULL,NULL,_binary '\0'),(2814,'SCENARIOMAP','HUS00000080','en_US','321202-0-LAA-02-0003','2023-04-24 08:33:25','1',NULL,NULL,_binary '\0'),(2815,'SCENARIOMAP','HUS00000071','en_US','320303-0-LAA-02-0003','2023-04-24 08:33:54','1',NULL,NULL,_binary '\0'),(2816,'SCENARIOMAP','HUS00000071','zh_TW','320303-0-LAA-02-0003','2023-04-24 08:33:54','1',NULL,NULL,_binary '\0'),(2817,'SCENARIOMAP','HUS00000071','zh_CN','320303-0-LAA-02-0003','2023-04-24 08:33:54','1',NULL,NULL,_binary '\0'),(2818,'SCENARIOMAP','HUS00000078','zh_CN','321183-0-LAA-02-0001','2023-04-24 08:34:24','1',NULL,NULL,_binary '\0'),(2819,'SCENARIOMAP','HUS00000078','zh_TW','321183-0-LAA-02-0001','2023-04-24 08:34:24','1',NULL,NULL,_binary '\0'),(2820,'SCENARIOMAP','HUS00000078','en_US','321183-0-LAA-02-0001','2023-04-24 08:34:24','1',NULL,NULL,_binary '\0'),(2821,'HOUSEAREA','HUS00000083','zh_CN','527181078','2023-04-24 08:40:49','1',NULL,NULL,_binary '\0'),(2822,'HOUSEAREA','HUS00000083','zh_TW','527181078','2023-04-24 08:40:49','1',NULL,NULL,_binary '\0'),(2823,'HOUSEAREA','HUS00000083','en_US','527181078','2023-04-24 08:40:49','1',NULL,NULL,_binary '\0'),(2824,'HOUSEAREA','HUS00000082','zh_CN','527181084','2023-04-24 08:41:01','1',NULL,NULL,_binary '\0'),(2825,'HOUSEAREA','HUS00000082','zh_TW','527181084','2023-04-24 08:41:01','1',NULL,NULL,_binary '\0'),(2826,'HOUSEAREA','HUS00000082','en_US','527181084','2023-04-24 08:41:01','1',NULL,NULL,_binary '\0'),(2827,'HOUSEAREA','HUS00000081','zh_CN','527181089','2023-04-24 08:41:14','1',NULL,NULL,_binary '\0'),(2828,'HOUSEAREA','HUS00000081','zh_TW','527181089','2023-04-24 08:41:14','1',NULL,NULL,_binary '\0'),(2829,'HOUSEAREA','HUS00000081','en_US','527181089','2023-04-24 08:41:14','1',NULL,NULL,_binary '\0'),(2830,'HOUSEAREA','HUS00000080','zh_CN','523101165','2023-04-24 08:41:35','1',NULL,NULL,_binary '\0'),(2831,'HOUSEAREA','HUS00000080','zh_TW','523101165','2023-04-24 08:41:35','1',NULL,NULL,_binary '\0'),(2832,'HOUSEAREA','HUS00000080','en_US','523101165','2023-04-24 08:41:35','1',NULL,NULL,_binary '\0'),(2833,'HOUSEAREA','HUS00000079','zh_CN','523101164','2023-04-24 08:42:03','1',NULL,NULL,_binary '\0'),(2834,'HOUSEAREA','HUS00000079','zh_TW','523101164','2023-04-24 08:42:03','1',NULL,NULL,_binary '\0'),(2835,'HOUSEAREA','HUS00000079','en_US','523101164','2023-04-24 08:42:03','1',NULL,NULL,_binary '\0'),(2836,'HOUSEAREA','HUS00000078','zh_CN','511520','2023-04-24 08:42:23','1',NULL,NULL,_binary '\0'),(2837,'HOUSEAREA','HUS00000078','zh_TW','511520','2023-04-24 08:42:23','1',NULL,NULL,_binary '\0'),(2838,'HOUSEAREA','HUS00000078','en_US','511520','2023-04-24 08:42:23','1',NULL,NULL,_binary '\0'),(2839,'HOUSEAREA','HUS00000077','zh_CN','514101196','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696',_binary '\0'),(2840,'HOUSEAREA','HUS00000077','zh_TW','514101196','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696',_binary '\0'),(2841,'HOUSEAREA','HUS00000077','en_US','514101196','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696',_binary '\0'),(2842,'HOUSEAREA','HUS00000076','zh_CN','527101185','2023-04-24 08:42:52','1','2023-06-15 10:05:05','89730635001757696',_binary '\0'),(2843,'HOUSEAREA','HUS00000076','zh_TW','527101185','2023-04-24 08:42:52','1','2023-06-15 10:05:05','89730635001757696',_binary '\0'),(2844,'HOUSEAREA','HUS00000076','en_US','527101185','2023-04-24 08:42:52','1','2023-06-15 10:05:05','89730635001757696',_binary '\0'),(2845,'HOUSEAREA','HUS00000075','zh_CN','515101197','2023-04-24 08:43:09','1',NULL,NULL,_binary '\0'),(2846,'HOUSEAREA','HUS00000075','zh_TW','515101197','2023-04-24 08:43:09','1',NULL,NULL,_binary '\0'),(2847,'HOUSEAREA','HUS00000075','en_US','515101197','2023-04-24 08:43:09','1',NULL,NULL,_binary '\0'),(2848,'HOUSEAREA','HUS00000074','zh_CN','251375','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696',_binary '\0'),(2849,'HOUSEAREA','HUS00000074','zh_TW','251375','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696',_binary '\0'),(2850,'HOUSEAREA','HUS00000074','en_US','251375','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696',_binary '\0'),(2851,'HOUSEAREA','HUS00000073','zh_CN','251373','2023-04-24 08:43:48','1',NULL,NULL,_binary '\0'),(2852,'HOUSEAREA','HUS00000073','zh_TW','251373','2023-04-24 08:43:48','1',NULL,NULL,_binary '\0'),(2853,'HOUSEAREA','HUS00000073','en_US','251373','2023-04-24 08:43:48','1',NULL,NULL,_binary '\0'),(2854,'HOUSEAREA','HUS00000072','zh_CN','518101608','2023-04-24 08:44:09','1','2023-09-27 02:00:26','89730635001757696',_binary '\0'),(2855,'HOUSEAREA','HUS00000072','zh_TW','518101608','2023-04-24 08:44:09','1','2023-09-27 02:00:26','89730635001757696',_binary '\0'),(2856,'HOUSEAREA','HUS00000072','en_US','518101608','2023-04-24 08:44:09','1','2023-09-27 02:00:26','89730635001757696',_binary '\0'),(2857,'HOUSEAREA','HUS00000071','zh_CN','516101224','2023-04-24 08:44:32','1',NULL,NULL,_binary '\0'),(2858,'HOUSEAREA','HUS00000071','zh_TW','516101224','2023-04-24 08:44:32','1',NULL,NULL,_binary '\0'),(2859,'HOUSEAREA','HUS00000071','en_US','516101224','2023-04-24 08:44:32','1',NULL,NULL,_binary '\0'),(2860,'HOUSEAREA','HUS00000069','zh_CN','510201705','2023-04-24 08:44:46','1','2023-06-15 10:05:38','89730635001757696',_binary '\0'),(2861,'HOUSEAREA','HUS00000069','zh_TW','510201705','2023-04-24 08:44:46','1','2023-06-15 10:05:38','89730635001757696',_binary '\0'),(2862,'HOUSEAREA','HUS00000069','en_US','510201705','2023-04-24 08:44:46','1','2023-06-15 10:05:38','89730635001757696',_binary '\0'),(2863,'HOUSEAREA','HUS00000068','zh_CN','510201703','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696',_binary '\0'),(2864,'HOUSEAREA','HUS00000068','zh_TW','510201703','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696',_binary '\0'),(2865,'HOUSEAREA','HUS00000068','en_US','510201703','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696',_binary '\0'),(2866,'HOUSEAREA','HUS00000066','zh_CN','512101170','2023-04-24 08:45:14','1',NULL,NULL,_binary '\0'),(2867,'HOUSEAREA','HUS00000066','zh_TW','512101170','2023-04-24 08:45:14','1',NULL,NULL,_binary '\0'),(2868,'HOUSEAREA','HUS00000066','en_US','512101170','2023-04-24 08:45:14','1',NULL,NULL,_binary '\0'),(2869,'HOUSEAREA','HUS00000063','zh_CN','251292','2023-04-24 08:46:13','1','2023-06-15 10:06:01','89730635001757696',_binary '\0'),(2870,'HOUSEAREA','HUS00000063','zh_TW','251292','2023-04-24 08:46:13','1','2023-06-15 10:06:01','89730635001757696',_binary '\0'),(2871,'HOUSEAREA','HUS00000063','en_US','251292','2023-04-24 08:46:13','1','2023-06-15 10:06:01','89730635001757696',_binary '\0'),(2872,'HOUSEAREA','HUS00000062','zh_CN','123','2023-04-24 08:46:30','1','2023-09-21 08:27:54','89730635001757696',_binary '\0'),(2873,'HOUSEAREA','HUS00000062','zh_TW','123','2023-04-24 08:46:30','1','2023-09-21 08:27:54','89730635001757696',_binary '\0'),(2874,'HOUSEAREA','HUS00000062','en_US','123','2023-04-24 08:46:30','1','2023-09-21 08:27:54','89730635001757696',_binary '\0'),(2875,'HOUSEAREA','HUS00000061','zh_CN','2501100050209','2023-04-24 08:46:59','1','2023-09-21 08:30:34',NULL,_binary ''),(2876,'HOUSEAREA','HUS00000061','zh_TW','2501100050209','2023-04-24 08:46:59','1','2023-09-21 08:30:34',NULL,_binary ''),(2877,'HOUSEAREA','HUS00000061','en_US','2501100050209','2023-04-24 08:46:59','1','2023-09-21 08:30:34',NULL,_binary ''),(2878,'HOUSEAREA','HUS00000064','zh_CN','250990','2023-04-24 09:35:19','1',NULL,NULL,_binary '\0'),(2879,'HOUSEAREA','HUS00000064','zh_TW','250990','2023-04-24 09:35:19','1',NULL,NULL,_binary '\0'),(2880,'HOUSEAREA','HUS00000064','en_US','250990','2023-04-24 09:35:19','1',NULL,NULL,_binary '\0'),(2881,'LOAD_GAS_MODEL','AutoTest_gasData','zh_CN','dd','2023-04-26 08:11:07','58582660930338816','2024-09-18 02:05:49','173818970422378496',_binary '\0'),(2882,'LOAD_GAS_MODEL','AutoTest_gasData','zh_TW','dd','2023-04-26 08:11:07','58582660930338816','2024-09-18 02:05:49','173818970422378496',_binary '\0'),(2883,'LOAD_GAS_MODEL','AutoTest_gasData','en_US','dd','2023-04-26 08:11:07','58582660930338816','2024-09-18 02:05:49','173818970422378496',_binary '\0'),(2884,'HOUSEAREA','HUS00000084','zh_CN','5191013192','2023-04-26 11:54:13','1','2023-06-15 10:04:34','89730635001757696',_binary '\0'),(2885,'HOUSEAREA','HUS00000084','zh_TW','5191013192','2023-04-26 11:54:13','1','2023-06-15 10:04:34','89730635001757696',_binary '\0'),(2886,'HOUSEAREA','HUS00000084','en_US','5191013192','2023-04-26 11:54:13','1','2023-06-15 10:04:34','89730635001757696',_binary '\0'),(2887,'PLANE_MODEL','AutoTest_plane2','zh_CN','无人机管理自动化2','2023-04-27 02:19:13','58582660930338816','2024-09-09 01:35:03','58582660930338816',_binary ''),(2888,'PLANE_MODEL','AutoTest_plane2','zh_TW','无人机管理自动化2','2023-04-27 02:19:13','58582660930338816','2024-09-09 01:35:03','58582660930338816',_binary ''),(2889,'PLANE_MODEL','AutoTest_plane2','en_US','无人机管理自动化2','2023-04-27 02:19:13','58582660930338816','2024-09-09 01:35:03','58582660930338816',_binary ''),(2890,'HOUSEAREA','HUS00000086','zh_CN','5131100041020','2023-04-27 04:55:11','1','2023-09-21 08:38:46','89730635001757696',_binary '\0'),(2891,'HOUSEAREA','HUS00000086','zh_TW','5131100041020','2023-04-27 04:55:11','1','2023-09-21 08:38:46','89730635001757696',_binary '\0'),(2892,'HOUSEAREA','HUS00000086','en_US','5131100041020','2023-04-27 04:55:11','1','2023-09-21 08:38:46','89730635001757696',_binary '\0'),(2893,'HOUSEAREA','HUS00000085','zh_CN','5121100050157','2023-04-27 04:55:29','1','2023-06-15 10:04:18','89730635001757696',_binary '\0'),(2894,'HOUSEAREA','HUS00000085','zh_TW','5121100050157','2023-04-27 04:55:29','1','2023-06-15 10:04:18','89730635001757696',_binary '\0'),(2895,'HOUSEAREA','HUS00000085','en_US','5121100050157','2023-04-27 04:55:29','1','2023-06-15 10:04:18','89730635001757696',_binary '\0'),(2896,'HOUSEAREA','HUS00000087','zh_CN','251353','2023-04-27 05:03:35','1',NULL,NULL,_binary '\0'),(2897,'HOUSEAREA','HUS00000087','zh_TW','251353','2023-04-27 05:03:35','1',NULL,NULL,_binary '\0'),(2898,'HOUSEAREA','HUS00000087','en_US','251353','2023-04-27 05:03:35','1',NULL,NULL,_binary '\0'),(2899,'SCENARIOMAP','HUS00000087','zh_CN','320803-0-LAA-03-0001-01','2023-04-27 05:04:10','1',NULL,NULL,_binary '\0'),(2900,'SCENARIOMAP','HUS00000087','zh_TW','320803-0-LAA-03-0001-01','2023-04-27 05:04:10','1',NULL,NULL,_binary '\0'),(2901,'SCENARIOMAP','HUS00000087','en_US','320803-0-LAA-03-0001-01','2023-04-27 05:04:10','1',NULL,NULL,_binary '\0'),(2902,'SCENARIOMAP','HUS00000086','en_US','320602-0-LAA-02-0006','2023-04-27 05:04:31','1','2023-09-26 02:36:41','188243415207510016',_binary '\0'),(2903,'SCENARIOMAP','HUS00000086','zh_TW','320602-0-LAA-02-0006','2023-04-27 05:04:31','1','2023-09-26 02:36:41','188243415207510016',_binary '\0'),(2904,'SCENARIOMAP','HUS00000086','zh_CN','320602-0-LAA-02-0006','2023-04-27 05:04:31','1','2023-09-26 02:36:41','188243415207510016',_binary '\0'),(2905,'SCENARIOMAP','HUS00000085','zh_CN','320508-0-LAA-02-0005','2023-04-27 05:05:04','1','2023-06-20 12:17:34','89730635001757696',_binary '\0'),(2906,'SCENARIOMAP','HUS00000085','zh_TW','320508-0-LAA-02-0005','2023-04-27 05:05:04','1','2023-06-20 12:17:34','89730635001757696',_binary '\0'),(2907,'SCENARIOMAP','HUS00000085','en_US','320508-0-LAA-02-0005','2023-04-27 05:05:04','1','2023-06-20 12:17:34','89730635001757696',_binary '\0'),(2908,'SCENARIOMAP','HUS00000084','zh_CN','320411-0-LAA-02-0001','2023-04-27 15:09:02','1','2023-06-20 12:12:59','89730635001757696',_binary '\0'),(2909,'SCENARIOMAP','HUS00000084','zh_TW','320411-0-LAA-02-0001','2023-04-27 15:09:02','1','2023-06-20 12:12:59','89730635001757696',_binary '\0'),(2910,'SCENARIOMAP','HUS00000084','en_US','320411-0-LAA-02-0001','2023-04-27 15:09:02','1','2023-06-20 12:12:59','89730635001757696',_binary '\0'),(2911,'XF_COMPANY','173','en_US','173','2023-05-11 05:55:05','1',NULL,NULL,_binary '\0'),(2912,'XF_COMPANY','173','zh_TW','173','2023-05-11 05:55:05','1',NULL,NULL,_binary '\0'),(2913,'XF_COMPANY','173','zh_CN','173','2023-05-11 05:55:05','1',NULL,NULL,_binary '\0'),(2914,'CIPHER_OBJECT','CipherInterface','en_US','Interface','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2915,'CIPHER_OBJECT','CipherInterface','zh_CN','接口','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2916,'CIPHER_OBJECT','CipherInterface','zh_TW','接口','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2917,'CIPHER_OBJECT','CipherLicense','en_US','License','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2918,'CIPHER_OBJECT','CipherLicense','zh_CN','License','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2919,'CIPHER_OBJECT','CipherLicense','zh_TW','License','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2920,'CIPHER_OBJECT','CipherMaterial','en_US','Material Warehouse','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2921,'CIPHER_OBJECT','CipherMaterial','zh_CN','素材仓库','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2922,'CIPHER_OBJECT','CipherMaterial','zh_TW','素材倉庫','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2923,'LOAD_GAS_MODEL','AutoTest_loadGas','zh_CN','气体自动化','2023-05-19 02:40:15','58582660930338816','2024-09-09 01:36:43','58582660930338816',_binary ''),(2924,'LOAD_GAS_MODEL','AutoTest_loadGas','zh_TW','气体自动化','2023-05-19 02:40:15','58582660930338816','2024-09-09 01:36:43','58582660930338816',_binary ''),(2925,'LOAD_GAS_MODEL','AutoTest_loadGas','en_US','气体自动化','2023-05-19 02:40:15','58582660930338816','2024-09-09 01:36:43','58582660930338816',_binary ''),(2926,'XF_COMPANY','112','zh_CN','112','2023-06-13 02:09:41','1',NULL,NULL,_binary '\0'),(2927,'XF_COMPANY','112','zh_TW','112','2023-06-13 02:09:41','1',NULL,NULL,_binary '\0'),(2928,'XF_COMPANY','112','en_US','112','2023-06-13 02:09:41','1',NULL,NULL,_binary '\0'),(2929,'HOUSEAREA','HUS00000110','zh_CN','127','2023-06-15 09:23:10','89730635001757696',NULL,NULL,_binary '\0'),(2930,'HOUSEAREA','HUS00000110','zh_TW','127','2023-06-15 09:23:10','89730635001757696',NULL,NULL,_binary '\0'),(2931,'HOUSEAREA','HUS00000110','en_US','127','2023-06-15 09:23:10','89730635001757696',NULL,NULL,_binary '\0'),(2932,'HOUSEAREA','HUS00000109','zh_CN','511498','2023-06-15 09:23:41','89730635001757696',NULL,NULL,_binary '\0'),(2933,'HOUSEAREA','HUS00000109','zh_TW','511498','2023-06-15 09:23:41','89730635001757696',NULL,NULL,_binary '\0'),(2934,'HOUSEAREA','HUS00000109','en_US','511498','2023-06-15 09:23:41','89730635001757696',NULL,NULL,_binary '\0'),(2935,'HOUSEAREA','HUS00000108','zh_CN','5111100041090','2023-06-15 09:24:20','89730635001757696',NULL,NULL,_binary '\0'),(2936,'HOUSEAREA','HUS00000108','zh_TW','5111100041090','2023-06-15 09:24:20','89730635001757696',NULL,NULL,_binary '\0'),(2937,'HOUSEAREA','HUS00000108','en_US','5111100041090','2023-06-15 09:24:20','89730635001757696',NULL,NULL,_binary '\0'),(2938,'HOUSEAREA','HUS00000107','zh_CN','514101446','2023-06-15 09:24:48','89730635001757696','2023-09-27 01:59:46','89730635001757696',_binary '\0'),(2939,'HOUSEAREA','HUS00000107','zh_TW','514101446','2023-06-15 09:24:48','89730635001757696','2023-09-27 01:59:46','89730635001757696',_binary '\0'),(2940,'HOUSEAREA','HUS00000107','en_US','514101446','2023-06-15 09:24:48','89730635001757696','2023-09-27 01:59:46','89730635001757696',_binary '\0'),(2941,'HOUSEAREA','HUS00000106','zh_CN','514101410','2023-06-15 09:35:46','89730635001757696',NULL,NULL,_binary '\0'),(2942,'HOUSEAREA','HUS00000106','zh_TW','514101410','2023-06-15 09:35:46','89730635001757696',NULL,NULL,_binary '\0'),(2943,'HOUSEAREA','HUS00000106','en_US','514101410','2023-06-15 09:35:46','89730635001757696',NULL,NULL,_binary '\0'),(2944,'HOUSEAREA','HUS00000105','zh_CN','515101221','2023-06-15 09:36:18','89730635001757696',NULL,NULL,_binary '\0'),(2945,'HOUSEAREA','HUS00000105','zh_TW','515101221','2023-06-15 09:36:18','89730635001757696',NULL,NULL,_binary '\0'),(2946,'HOUSEAREA','HUS00000105','en_US','515101221','2023-06-15 09:36:18','89730635001757696',NULL,NULL,_binary '\0'),(2947,'HOUSEAREA','HUS00000104','zh_CN','5121100050187','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:08','89730635001757696',_binary '\0'),(2948,'HOUSEAREA','HUS00000104','zh_TW','5121100050187','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:08','89730635001757696',_binary '\0'),(2949,'HOUSEAREA','HUS00000104','en_US','5121100050187','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:08','89730635001757696',_binary '\0'),(2950,'HOUSEAREA','HUS00000103','zh_CN','519101286','2023-06-15 09:38:04','89730635001757696',NULL,NULL,_binary '\0'),(2951,'HOUSEAREA','HUS00000103','zh_TW','519101286','2023-06-15 09:38:04','89730635001757696',NULL,NULL,_binary '\0'),(2952,'HOUSEAREA','HUS00000103','en_US','519101286','2023-06-15 09:38:04','89730635001757696',NULL,NULL,_binary '\0'),(2953,'HOUSEAREA','HUS00000102','zh_CN','5121100040961','2023-06-15 09:38:33','89730635001757696',NULL,NULL,_binary '\0'),(2954,'HOUSEAREA','HUS00000102','zh_TW','5121100040961','2023-06-15 09:38:33','89730635001757696',NULL,NULL,_binary '\0'),(2955,'HOUSEAREA','HUS00000102','en_US','5121100040961','2023-06-15 09:38:33','89730635001757696',NULL,NULL,_binary '\0'),(2956,'HOUSEAREA','HUS00000101','zh_CN','5121100050049','2023-06-15 09:38:55','89730635001757696',NULL,NULL,_binary '\0'),(2957,'HOUSEAREA','HUS00000101','zh_TW','5121100050049','2023-06-15 09:38:55','89730635001757696',NULL,NULL,_binary '\0'),(2958,'HOUSEAREA','HUS00000101','en_US','5121100050049','2023-06-15 09:38:55','89730635001757696',NULL,NULL,_binary '\0'),(2959,'HOUSEAREA','HUS00000100','zh_CN','5121100050168','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696',_binary '\0'),(2960,'HOUSEAREA','HUS00000100','zh_TW','5121100050168','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696',_binary '\0'),(2961,'HOUSEAREA','HUS00000100','en_US','5121100050168','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696',_binary '\0'),(2962,'HOUSEAREA','HUS00000099','zh_CN','516220437','2023-06-15 09:39:43','89730635001757696','2023-09-28 01:14:27','89730635001757696',_binary '\0'),(2963,'HOUSEAREA','HUS00000099','zh_TW','516220437','2023-06-15 09:39:43','89730635001757696','2023-09-28 01:14:27','89730635001757696',_binary '\0'),(2964,'HOUSEAREA','HUS00000099','en_US','516220437','2023-06-15 09:39:43','89730635001757696','2023-09-28 01:14:27','89730635001757696',_binary '\0'),(2965,'HOUSEAREA','HUS00000098','zh_CN','516220417','2023-06-15 09:40:05','89730635001757696',NULL,NULL,_binary '\0'),(2966,'HOUSEAREA','HUS00000098','zh_TW','516220417','2023-06-15 09:40:05','89730635001757696',NULL,NULL,_binary '\0'),(2967,'HOUSEAREA','HUS00000098','en_US','516220417','2023-06-15 09:40:05','89730635001757696',NULL,NULL,_binary '\0'),(2968,'HOUSEAREA','HUS00000097','zh_CN','5101100040927','2023-06-15 09:40:31','89730635001757696',NULL,NULL,_binary '\0'),(2969,'HOUSEAREA','HUS00000097','zh_TW','5101100040927','2023-06-15 09:40:31','89730635001757696',NULL,NULL,_binary '\0'),(2970,'HOUSEAREA','HUS00000097','en_US','5101100040927','2023-06-15 09:40:31','89730635001757696',NULL,NULL,_binary '\0'),(2971,'HOUSEAREA','HUS00000096','zh_CN','5101100040900','2023-06-15 09:41:00','89730635001757696',NULL,NULL,_binary '\0'),(2972,'HOUSEAREA','HUS00000096','zh_TW','5101100040900','2023-06-15 09:41:00','89730635001757696',NULL,NULL,_binary '\0'),(2973,'HOUSEAREA','HUS00000096','en_US','5101100040900','2023-06-15 09:41:00','89730635001757696',NULL,NULL,_binary '\0'),(2974,'HOUSEAREA','HUS00000094','zh_CN','2501100050225','2023-06-15 10:03:27','89730635001757696',NULL,NULL,_binary '\0'),(2975,'HOUSEAREA','HUS00000094','zh_TW','2501100050225','2023-06-15 10:03:27','89730635001757696',NULL,NULL,_binary '\0'),(2976,'HOUSEAREA','HUS00000094','en_US','2501100050225','2023-06-15 10:03:27','89730635001757696',NULL,NULL,_binary '\0'),(2977,'HOUSEAREA','HUS00000093','zh_CN','5121100040905','2023-06-15 10:03:55','89730635001757696',NULL,NULL,_binary '\0'),(2978,'HOUSEAREA','HUS00000093','zh_TW','5121100040905','2023-06-15 10:03:55','89730635001757696',NULL,NULL,_binary '\0'),(2979,'HOUSEAREA','HUS00000093','en_US','5121100040905','2023-06-15 10:03:55','89730635001757696',NULL,NULL,_binary '\0'),(2980,'SCENARIOMAP','HUS00000105','zh_CN','320981-0-LAA-02-0001','2023-06-20 12:07:09','89730635001757696',NULL,NULL,_binary '\0'),(2981,'SCENARIOMAP','HUS00000105','zh_TW','320981-0-LAA-02-0001','2023-06-20 12:07:09','89730635001757696',NULL,NULL,_binary '\0'),(2982,'SCENARIOMAP','HUS00000105','en_US','320981-0-LAA-02-0001','2023-06-20 12:07:09','89730635001757696',NULL,NULL,_binary '\0'),(2983,'SCENARIOMAP','HUS00000098','zh_CN','320381-0-LAA-02-0001','2023-06-20 12:07:55','89730635001757696',NULL,NULL,_binary '\0'),(2984,'SCENARIOMAP','HUS00000098','zh_TW','320381-0-LAA-02-0001','2023-06-20 12:07:55','89730635001757696',NULL,NULL,_binary '\0'),(2985,'SCENARIOMAP','HUS00000098','en_US','320381-0-LAA-02-0001','2023-06-20 12:07:55','89730635001757696',NULL,NULL,_binary '\0'),(2986,'SCENARIOMAP','HUS00000099','zh_CN','320311-0-LAA-02-0002','2023-06-20 12:08:54','89730635001757696',NULL,NULL,_binary '\0'),(2987,'SCENARIOMAP','HUS00000099','zh_TW','320311-0-LAA-02-0002','2023-06-20 12:08:54','89730635001757696',NULL,NULL,_binary '\0'),(2988,'SCENARIOMAP','HUS00000099','en_US','320311-0-LAA-02-0002','2023-06-20 12:08:54','89730635001757696',NULL,NULL,_binary '\0'),(2989,'SCENARIOMAP','HUS00000108','zh_CN','321111-0-LAA-02-0001','2023-06-20 12:10:24','89730635001757696',NULL,NULL,_binary '\0'),(2990,'SCENARIOMAP','HUS00000108','zh_TW','321111-0-LAA-02-0001','2023-06-20 12:10:24','89730635001757696',NULL,NULL,_binary '\0'),(2991,'SCENARIOMAP','HUS00000108','en_US','321111-0-LAA-02-0001','2023-06-20 12:10:24','89730635001757696',NULL,NULL,_binary '\0'),(2992,'SCENARIOMAP','HUS00000101','zh_CN','320583-0-LAA-02-0001','2023-06-20 12:12:11','89730635001757696',NULL,NULL,_binary '\0'),(2993,'SCENARIOMAP','HUS00000101','zh_TW','320583-0-LAA-02-0001','2023-06-20 12:12:11','89730635001757696',NULL,NULL,_binary '\0'),(2994,'SCENARIOMAP','HUS00000101','en_US','320583-0-LAA-02-0001','2023-06-20 12:12:11','89730635001757696',NULL,NULL,_binary '\0'),(2995,'SCENARIOMAP','HUS00000102','zh_CN','320509-0-LAA-02-0001','2023-06-20 12:12:48','89730635001757696',NULL,NULL,_binary '\0'),(2996,'SCENARIOMAP','HUS00000102','zh_TW','320509-0-LAA-02-0001','2023-06-20 12:12:48','89730635001757696',NULL,NULL,_binary '\0'),(2997,'SCENARIOMAP','HUS00000102','en_US','320509-0-LAA-02-0001','2023-06-20 12:12:48','89730635001757696',NULL,NULL,_binary '\0'),(2998,'SCENARIOMAP','HUS00000107','zh_CN','321002-0-LAA-02-0002','2023-06-20 12:13:42','89730635001757696',NULL,NULL,_binary '\0'),(2999,'SCENARIOMAP','HUS00000107','zh_TW','321002-0-LAA-02-0002','2023-06-20 12:13:42','89730635001757696',NULL,NULL,_binary '\0'),(3000,'SCENARIOMAP','HUS00000107','en_US','321002-0-LAA-02-0002','2023-06-20 12:13:42','89730635001757696',NULL,NULL,_binary '\0'),(3001,'SCENARIOMAP','HUS00000097','zh_CN','320213-0-LAA-02-0003','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:26','89730635001757696',_binary '\0'),(3002,'SCENARIOMAP','HUS00000097','zh_TW','320213-0-LAA-02-0003','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:26','89730635001757696',_binary '\0'),(3003,'SCENARIOMAP','HUS00000097','en_US','320213-0-LAA-02-0003','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:26','89730635001757696',_binary '\0'),(3004,'SCENARIOMAP','HUS00000110','zh_CN','320113-0-LAA-02-0001','2023-06-20 12:15:17','89730635001757696',NULL,NULL,_binary '\0'),(3005,'SCENARIOMAP','HUS00000110','zh_TW','320113-0-LAA-02-0001','2023-06-20 12:15:17','89730635001757696',NULL,NULL,_binary '\0'),(3006,'SCENARIOMAP','HUS00000110','en_US','320113-0-LAA-02-0001','2023-06-20 12:15:17','89730635001757696',NULL,NULL,_binary '\0'),(3007,'SCENARIOMAP','HUS00000106','zh_CN','321002-0-LAA-02-0006','2023-06-20 12:16:45','89730635001757696',NULL,NULL,_binary '\0'),(3008,'SCENARIOMAP','HUS00000106','zh_TW','321002-0-LAA-02-0006','2023-06-20 12:16:45','89730635001757696',NULL,NULL,_binary '\0'),(3009,'SCENARIOMAP','HUS00000106','en_US','321002-0-LAA-02-0006','2023-06-20 12:16:45','89730635001757696',NULL,NULL,_binary '\0'),(3010,'SCENARIOMAP','HUS00000100','zh_CN','320506-0-LAA-02-0004','2023-06-20 12:17:19','89730635001757696',NULL,NULL,_binary '\0'),(3011,'SCENARIOMAP','HUS00000100','zh_TW','320506-0-LAA-02-0004','2023-06-20 12:17:19','89730635001757696',NULL,NULL,_binary '\0'),(3012,'SCENARIOMAP','HUS00000100','en_US','320506-0-LAA-02-0004','2023-06-20 12:17:19','89730635001757696',NULL,NULL,_binary '\0'),(3013,'SCENARIOMAP','HUS00000093','zh_CN','320508-0-LAA-02-0006','2023-06-20 12:18:11','89730635001757696',NULL,NULL,_binary '\0'),(3014,'SCENARIOMAP','HUS00000093','zh_TW','320508-0-LAA-02-0006','2023-06-20 12:18:11','89730635001757696',NULL,NULL,_binary '\0'),(3015,'SCENARIOMAP','HUS00000093','en_US','320508-0-LAA-02-0006','2023-06-20 12:18:11','89730635001757696',NULL,NULL,_binary '\0'),(3016,'SCENARIOMAP','HUS00000109','zh_CN','321102-0-LAA-02-0001','2023-06-20 12:19:14','89730635001757696',NULL,NULL,_binary '\0'),(3017,'SCENARIOMAP','HUS00000109','zh_TW','321102-0-LAA-02-0001','2023-06-20 12:19:14','89730635001757696',NULL,NULL,_binary '\0'),(3018,'SCENARIOMAP','HUS00000109','en_US','321102-0-LAA-02-0001','2023-06-20 12:19:14','89730635001757696',NULL,NULL,_binary '\0'),(3019,'SCENARIOMAP','HUS00000103','zh_CN','320481-0-LAA-03-0001','2023-06-20 12:19:57','89730635001757696',NULL,NULL,_binary '\0'),(3020,'SCENARIOMAP','HUS00000103','zh_TW','320481-0-LAA-03-0001','2023-06-20 12:19:57','89730635001757696',NULL,NULL,_binary '\0'),(3021,'SCENARIOMAP','HUS00000103','en_US','320481-0-LAA-03-0001','2023-06-20 12:19:57','89730635001757696',NULL,NULL,_binary '\0'),(3022,'SCENARIOMAP','HUS00000094','zh_CN','320117-0-LAA-02-0007','2023-06-20 12:20:54','89730635001757696',NULL,NULL,_binary '\0'),(3023,'SCENARIOMAP','HUS00000094','zh_TW','320117-0-LAA-02-0007','2023-06-20 12:20:54','89730635001757696',NULL,NULL,_binary '\0'),(3024,'SCENARIOMAP','HUS00000094','en_US','320117-0-LAA-02-0007','2023-06-20 12:20:54','89730635001757696',NULL,NULL,_binary '\0'),(3025,'SCENARIOMAP','HUS00000104','zh_CN','320505-0-LAA-02-0006','2023-06-20 12:21:43','89730635001757696',NULL,NULL,_binary '\0'),(3026,'SCENARIOMAP','HUS00000104','zh_TW','320505-0-LAA-02-0006','2023-06-20 12:21:43','89730635001757696',NULL,NULL,_binary '\0'),(3027,'SCENARIOMAP','HUS00000104','en_US','320505-0-LAA-02-0006','2023-06-20 12:21:43','89730635001757696',NULL,NULL,_binary '\0'),(3028,'DEV_ACTION_MODEL','focus','en_US','focus','2023-06-27 07:28:23','1',NULL,NULL,_binary '\0'),(3029,'DEV_ACTION_MODEL','focus','zh_CN','自动对焦','2023-06-27 07:28:23','1',NULL,NULL,_binary '\0'),(3030,'DEV_ACTION_MODEL','focus','zh_TW','自动对焦','2023-06-27 07:28:23','1',NULL,NULL,_binary '\0'),(3031,'PLANE_MODEL','AutoTest_uavHanger','zh_CN','机库管理自动化','2023-07-05 02:55:53','58582660930338816','2024-09-19 03:03:09','58582660930338816',_binary ''),(3032,'PLANE_MODEL','AutoTest_uavHanger','zh_TW','机库管理自动化','2023-07-05 02:55:53','58582660930338816','2024-09-19 03:03:09','58582660930338816',_binary ''),(3033,'PLANE_MODEL','AutoTest_uavHanger','en_US','机库管理自动化','2023-07-05 02:55:53','58582660930338816','2024-09-19 03:03:09','58582660930338816',_binary ''),(3034,'XF_COMPANY','185','zh_CN','185','2023-08-29 01:18:10','1',NULL,NULL,_binary '\0'),(3035,'XF_COMPANY','185','zh_TW','185','2023-08-29 01:18:10','1',NULL,NULL,_binary '\0'),(3036,'XF_COMPANY','185','en_US','185','2023-08-29 01:18:10','1',NULL,NULL,_binary '\0'),(3037,'XF_COMPANY','3','zh_CN','3','2023-09-14 09:08:02','1',NULL,NULL,_binary '\0'),(3038,'XF_COMPANY','3','zh_TW','3','2023-09-14 09:08:02','1',NULL,NULL,_binary '\0'),(3039,'XF_COMPANY','3','en_US','3','2023-09-14 09:08:02','1',NULL,NULL,_binary '\0'),(3040,'HOUSEAREA','HUS00000118','zh_CN','100','2023-09-21 08:26:52','89730635001757696',NULL,NULL,_binary '\0'),(3041,'HOUSEAREA','HUS00000118','zh_TW','100','2023-09-21 08:26:52','89730635001757696',NULL,NULL,_binary '\0'),(3042,'HOUSEAREA','HUS00000118','en_US','100','2023-09-21 08:26:52','89730635001757696',NULL,NULL,_binary '\0'),(3043,'HOUSEAREA','HUS00000119','zh_CN','2501100050209','2023-09-21 08:30:55','89730635001757696',NULL,NULL,_binary '\0'),(3044,'HOUSEAREA','HUS00000119','zh_TW','2501100050209','2023-09-21 08:30:55','89730635001757696',NULL,NULL,_binary '\0'),(3045,'HOUSEAREA','HUS00000119','en_US','2501100050209','2023-09-21 08:30:55','89730635001757696',NULL,NULL,_binary '\0'),(3046,'HOUSEAREA','HUS00000120','zh_CN','2501100050203','2023-09-21 08:32:10','89730635001757696',NULL,NULL,_binary '\0'),(3047,'HOUSEAREA','HUS00000120','zh_TW','2501100050203','2023-09-21 08:32:10','89730635001757696',NULL,NULL,_binary '\0'),(3048,'HOUSEAREA','HUS00000120','en_US','2501100050203','2023-09-21 08:32:10','89730635001757696',NULL,NULL,_binary '\0'),(3049,'HOUSEAREA','HUS00000121','zh_CN','519001','2023-09-21 08:35:36','89730635001757696',NULL,NULL,_binary '\0'),(3050,'HOUSEAREA','HUS00000121','zh_TW','519001','2023-09-21 08:35:36','89730635001757696',NULL,NULL,_binary '\0'),(3051,'HOUSEAREA','HUS00000121','en_US','519001','2023-09-21 08:35:36','89730635001757696',NULL,NULL,_binary '\0'),(3052,'HOUSEAREA','HUS00000122','zh_CN','519101193','2023-09-21 08:36:37','89730635001757696',NULL,NULL,_binary '\0'),(3053,'HOUSEAREA','HUS00000122','zh_TW','519101193','2023-09-21 08:36:37','89730635001757696',NULL,NULL,_binary '\0'),(3054,'HOUSEAREA','HUS00000122','en_US','519101193','2023-09-21 08:36:37','89730635001757696',NULL,NULL,_binary '\0'),(3055,'SCENARIOMAP','HUS00000118','zh_CN','320104-0-LAA-02-0001','2023-09-26 02:29:49','188243415207510016',NULL,NULL,_binary '\0'),(3056,'SCENARIOMAP','HUS00000118','zh_TW','320104-0-LAA-02-0001','2023-09-26 02:29:49','188243415207510016',NULL,NULL,_binary '\0'),(3057,'SCENARIOMAP','HUS00000118','en_US','320104-0-LAA-02-0001','2023-09-26 02:29:49','188243415207510016',NULL,NULL,_binary '\0'),(3058,'SCENARIOMAP','HUS00000119','zh_CN','320102-0-LAA-02-0005','2023-09-26 02:33:37','188243415207510016',NULL,NULL,_binary '\0'),(3059,'SCENARIOMAP','HUS00000119','zh_TW','320102-0-LAA-02-0005','2023-09-26 02:33:37','188243415207510016',NULL,NULL,_binary '\0'),(3060,'SCENARIOMAP','HUS00000119','en_US','320102-0-LAA-02-0005','2023-09-26 02:33:37','188243415207510016',NULL,NULL,_binary '\0'),(3061,'SCENARIOMAP','HUS00000120','zh_CN','320113-0-LAA-02-0003','2023-09-26 02:34:03','188243415207510016',NULL,NULL,_binary '\0'),(3062,'SCENARIOMAP','HUS00000120','zh_TW','320113-0-LAA-02-0003','2023-09-26 02:34:03','188243415207510016',NULL,NULL,_binary '\0'),(3063,'SCENARIOMAP','HUS00000120','en_US','320113-0-LAA-02-0003','2023-09-26 02:34:03','188243415207510016',NULL,NULL,_binary '\0'),(3064,'SCENARIOMAP','HUS00000121','zh_CN','320413-0-LAA-02-0001','2023-09-26 02:34:29','188243415207510016',NULL,NULL,_binary '\0'),(3065,'SCENARIOMAP','HUS00000121','zh_TW','320413-0-LAA-02-0001','2023-09-26 02:34:29','188243415207510016',NULL,NULL,_binary '\0'),(3066,'SCENARIOMAP','HUS00000121','en_US','320413-0-LAA-02-0001','2023-09-26 02:34:29','188243415207510016',NULL,NULL,_binary '\0'),(3067,'SCENARIOMAP','HUS00000122','zh_CN','320481-0-LAA-03-0001-01','2023-09-26 02:34:52','188243415207510016',NULL,NULL,_binary '\0'),(3068,'SCENARIOMAP','HUS00000122','zh_TW','320481-0-LAA-03-0001-01','2023-09-26 02:34:52','188243415207510016',NULL,NULL,_binary '\0'),(3069,'SCENARIOMAP','HUS00000122','en_US','320481-0-LAA-03-0001-01','2023-09-26 02:34:52','188243415207510016',NULL,NULL,_binary '\0'),(3070,'SCENARIOMAP','HUS00000096','zh_CN','320213-0-LAA-02-0002','2023-09-26 06:31:11','89730635001757696',NULL,NULL,_binary '\0'),(3071,'SCENARIOMAP','HUS00000096','zh_TW','320213-0-LAA-02-0002','2023-09-26 06:31:11','89730635001757696',NULL,NULL,_binary '\0'),(3072,'SCENARIOMAP','HUS00000096','en_US','320213-0-LAA-02-0002','2023-09-26 06:31:11','89730635001757696',NULL,NULL,_binary '\0'),(3073,'PLANE_MODEL','wrjxh074','zh_CN','M30','2023-09-28 01:42:44','173818970422378496','2024-09-06 02:36:04','89730635001757696',_binary '\0'),(3074,'PLANE_MODEL','wrjxh074','zh_TW','M30','2023-09-28 01:42:44','173818970422378496','2024-09-06 02:36:04','89730635001757696',_binary '\0'),(3075,'PLANE_MODEL','wrjxh074','en_US','M30','2023-09-28 01:42:44','173818970422378496','2024-09-06 02:36:04','89730635001757696',_binary '\0'),(3076,'PLANE_MODEL','AutoTest_attention','zh_CN','告警管理自动化','2023-10-07 03:11:13','58582660930338816','2024-10-08 03:01:17','58582660930338816',_binary ''),(3077,'PLANE_MODEL','AutoTest_attention','zh_TW','告警管理自动化','2023-10-07 03:11:13','58582660930338816','2024-10-08 03:01:17','58582660930338816',_binary ''),(3078,'PLANE_MODEL','AutoTest_attention','en_US','告警管理自动化','2023-10-07 03:11:13','58582660930338816','2024-10-08 03:01:17','58582660930338816',_binary ''),(3079,'DATA_CATEGORY','DATA_JT','zh_CN','交通','2023-10-07 06:44:43','416525856201375744',NULL,NULL,_binary '\0'),(3080,'DATA_CATEGORY','DATA_JT','zh_TW','交通','2023-10-07 06:44:43','416525856201375744',NULL,NULL,_binary '\0'),(3081,'DATA_CATEGORY','DATA_JT','en_US','交通','2023-10-07 06:44:43','416525856201375744',NULL,NULL,_binary '\0'),(3082,'DATA_CATEGORY','DATA_HB','zh_CN','环保','2023-10-07 06:45:15','416525856201375744',NULL,NULL,_binary '\0'),(3083,'DATA_CATEGORY','DATA_HB','zh_TW','环保','2023-10-07 06:45:15','416525856201375744',NULL,NULL,_binary '\0'),(3084,'DATA_CATEGORY','DATA_HB','en_US','环保','2023-10-07 06:45:15','416525856201375744',NULL,NULL,_binary '\0'),(3085,'DATA_CATEGORY','DATA_AF','zh_CN','安防','2023-10-07 06:45:38','416525856201375744',NULL,NULL,_binary '\0'),(3086,'DATA_CATEGORY','DATA_AF','zh_TW','安防','2023-10-07 06:45:38','416525856201375744',NULL,NULL,_binary '\0'),(3087,'DATA_CATEGORY','DATA_AF','en_US','安防','2023-10-07 06:45:38','416525856201375744',NULL,NULL,_binary '\0'),(3088,'DEV_MODEL','LOAD_BTS_MODEL','en_US','base station','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3089,'DEV_MODEL','LOAD_BTS_MODEL','zh_CN','基站','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3090,'DEV_MODEL','LOAD_BTS_MODEL','zh_TW','基站','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3091,'DEV_MODEL','LOAD_AGR_MODEL','en_US','agricultural equipment','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3092,'DEV_MODEL','LOAD_AGR_MODEL','zh_CN','农业器具','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3093,'DEV_MODEL','LOAD_AGR_MODEL','zh_TW','農業器具','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3094,'LOAD_BTS_MODEL','bts1','en_US','emergency base station','2023-10-11 06:11:38','123',NULL,NULL,_binary '\0'),(3095,'LOAD_BTS_MODEL','bts1','zh_CN','应急基站','2023-10-11 06:11:38','123',NULL,NULL,_binary '\0'),(3096,'LOAD_BTS_MODEL','bts1','zh_TW','应急基站','2023-10-11 06:11:38','123',NULL,NULL,_binary '\0'),(3097,'BTS_TYPE','cmiiYinglong1st','en_US','cmii yin long 1st','2023-10-11 06:12:06','123',NULL,NULL,_binary '\0'),(3098,'BTS_TYPE','cmiiYinglong1st','zh_CN','中移应龙I型','2023-10-11 06:12:06','123',NULL,NULL,_binary '\0'),(3099,'BTS_TYPE','cmiiYinglong1st','zh_TW','中移应龙I型','2023-10-11 06:12:06','123',NULL,NULL,_binary '\0'),(3100,'RADIO_TYPE','4G','en_US','4G','2023-10-11 06:12:29','123',NULL,NULL,_binary '\0'),(3101,'RADIO_TYPE','4G','zh_CN','4G','2023-10-11 06:12:29','123',NULL,NULL,_binary '\0'),(3102,'RADIO_TYPE','4G','zh_TW','4G','2023-10-11 06:12:29','123',NULL,NULL,_binary '\0'),(3103,'DETECTION_ORG','2','zh_CN','2','2023-10-12 09:04:53','1',NULL,NULL,_binary '\0'),(3104,'DETECTION_ORG','2','zh_TW','2','2023-10-12 09:04:53','1',NULL,NULL,_binary '\0'),(3105,'DETECTION_ORG','2','en_US','2','2023-10-12 09:04:53','1',NULL,NULL,_binary '\0'),(3106,'DETECTION_ORG','3','zh_CN','3','2023-10-12 09:07:03','1',NULL,NULL,_binary '\0'),(3107,'DETECTION_ORG','3','zh_TW','3','2023-10-12 09:07:03','1',NULL,NULL,_binary '\0'),(3108,'DETECTION_ORG','3','en_US','3','2023-10-12 09:07:03','1',NULL,NULL,_binary '\0'),(3109,'STYLE_LABLE','ELE_LABLE','zh_CN','输电识别','2023-10-16 01:04:23','416525856201375744',NULL,NULL,_binary '\0'),(3110,'STYLE_LABLE','ELE_LABLE','zh_TW','输电识别','2023-10-16 01:04:23','416525856201375744',NULL,NULL,_binary '\0'),(3111,'STYLE_LABLE','ELE_LABLE','en_US','输电识别','2023-10-16 01:04:23','416525856201375744',NULL,NULL,_binary '\0'),(3112,'STYLE_LABLE','CAT_LABLE','zh_CN','车辆跟踪','2023-10-16 01:04:48','416525856201375744',NULL,NULL,_binary '\0'),(3113,'STYLE_LABLE','CAT_LABLE','zh_TW','车辆跟踪','2023-10-16 01:04:48','416525856201375744',NULL,NULL,_binary '\0'),(3114,'STYLE_LABLE','CAT_LABLE','en_US','车辆跟踪','2023-10-16 01:04:48','416525856201375744',NULL,NULL,_binary '\0'),(3115,'LOAD_AGR_MODEL','pensaqi1','zh_CN','喷洒器1','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1',_binary '\0'),(3116,'LOAD_AGR_MODEL','pensaqi1','zh_TW','喷洒器1','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1',_binary '\0'),(3117,'LOAD_AGR_MODEL','pensaqi1','en_US','喷洒器1','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1',_binary '\0'),(3118,'PICTURE_LABELS','PL22','en_US','生态破坏','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3119,'PICTURE_LABELS','PL22','zh_CN','生态破坏','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3120,'PICTURE_LABELS','PL22','zh_TW','生态破坏','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3121,'PICTURE_LABELS','PL21','en_US','空气监测数据异常','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3122,'PICTURE_LABELS','PL21','zh_CN','空气监测数据异常','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3123,'PICTURE_LABELS','PL21','zh_TW','空气监测数据异常','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3124,'PICTURE_LABELS','PL20','en_US','未落实移动源管控措施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3125,'PICTURE_LABELS','PL20','zh_CN','未落实移动源管控措施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3126,'PICTURE_LABELS','PL20','zh_TW','未落实移动源管控措施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3127,'PICTURE_LABELS','PL19','en_US','违反重污染天气管控','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3128,'PICTURE_LABELS','PL19','zh_CN','违反重污染天气管控','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3129,'PICTURE_LABELS','PL19','zh_TW','违反重污染天气管控','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3130,'PICTURE_LABELS','PL18','en_US','未安装治污设施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3131,'PICTURE_LABELS','PL18','zh_CN','未安装治污设施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3132,'PICTURE_LABELS','PL18','zh_TW','未安装治污设施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3133,'PICTURE_LABELS','PL16','en_US','工业粉尘无组织排放','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3134,'PICTURE_LABELS','PL16','zh_CN','工业粉尘无组织排放','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3135,'PICTURE_LABELS','PL16','zh_TW','工业粉尘无组织排放','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3136,'PICTURE_LABELS','PL17','en_US','治污设施不正常运行','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3137,'PICTURE_LABELS','PL17','zh_CN','治污设施不正常运行','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3138,'PICTURE_LABELS','PL17','zh_TW','治污设施不正常运行','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3139,'PICTURE_LABELS','PL14','en_US','露天焚烧','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3140,'PICTURE_LABELS','PL14','zh_CN','露天焚烧','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3141,'PICTURE_LABELS','PL14','zh_TW','露天焚烧','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3142,'PICTURE_LABELS','PL15','en_US','旁路、暗管偷排污染物','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3143,'PICTURE_LABELS','PL15','zh_CN','旁路、暗管偷排污染物','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3144,'PICTURE_LABELS','PL15','zh_TW','旁路、暗管偷排污染物','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3145,'PICTURE_LABELS','PL13','en_US','黄土裸露','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3146,'PICTURE_LABELS','PL13','zh_CN','黄土裸露','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3147,'PICTURE_LABELS','PL13','zh_TW','黄土裸露','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3148,'PLANE_MODEL','AutoTest_logUav','zh_CN','日志管理自动化','2023-12-25 03:18:13','58582660930338816','2024-09-12 01:18:47','58582660930338816',_binary ''),(3149,'PLANE_MODEL','AutoTest_logUav','zh_TW','日志管理自动化','2023-12-25 03:18:13','58582660930338816','2024-09-12 01:18:47','58582660930338816',_binary ''),(3150,'PLANE_MODEL','AutoTest_logUav','en_US','日志管理自动化','2023-12-25 03:18:13','58582660930338816','2024-09-12 01:18:47','58582660930338816',_binary ''),(3151,'LOAD_CAM_MODEL','AutoTest_logCAM','zh_CN','日志管理自动化','2023-12-25 03:18:14','58582660930338816','2024-09-12 01:18:48','58582660930338816',_binary ''),(3152,'LOAD_CAM_MODEL','AutoTest_logCAM','zh_TW','日志管理自动化','2023-12-25 03:18:14','58582660930338816','2024-09-12 01:18:48','58582660930338816',_binary ''),(3153,'LOAD_CAM_MODEL','AutoTest_logCAM','en_US','日志管理自动化','2023-12-25 03:18:14','58582660930338816','2024-09-12 01:18:48','58582660930338816',_binary ''),(3154,'XF_COMPANY','226','zh_CN','226','2023-12-28 07:36:47','1',NULL,NULL,_binary '\0'),(3155,'XF_COMPANY','226','zh_TW','226','2023-12-28 07:36:47','1',NULL,NULL,_binary '\0'),(3156,'XF_COMPANY','226','en_US','226','2023-12-28 07:36:47','1',NULL,NULL,_binary '\0'),(3157,'LOAD_CAM_VIDEO_ISO','video iso','zh_CN','video iso','2024-02-05 02:02:13','173818970422378496',NULL,NULL,_binary '\0'),(3158,'LOAD_CAM_VIDEO_ISO','video iso','zh_TW','video iso','2024-02-05 02:02:13','173818970422378496',NULL,NULL,_binary '\0'),(3159,'LOAD_CAM_VIDEO_ISO','video iso','en_US','video iso','2024-02-05 02:02:13','173818970422378496',NULL,NULL,_binary '\0'),(3160,'LOAD_HNG_MODEL','jkxh015','zh_CN','草莓创新机库','2024-02-26 02:47:09','1',NULL,NULL,_binary '\0'),(3161,'LOAD_HNG_MODEL','jkxh015','zh_TW','草莓创新机库','2024-02-26 02:47:09','1',NULL,NULL,_binary '\0'),(3162,'LOAD_HNG_MODEL','jkxh015','en_US','草莓创新机库','2024-02-26 02:47:09','1',NULL,NULL,_binary '\0'),(3163,'MNF','sccj030','zh_CN','草莓创新','2024-02-26 02:47:44','1',NULL,NULL,_binary '\0'),(3164,'MNF','sccj030','zh_TW','草莓创新','2024-02-26 02:47:44','1',NULL,NULL,_binary '\0'),(3165,'MNF','sccj030','en_US','草莓创新','2024-02-26 02:47:44','1',NULL,NULL,_binary '\0'),(3166,'MPROTECT_STAT','true','zh_CN','开启','2024-02-29 06:43:54','173818970422378496',NULL,NULL,_binary '\0'),(3167,'MPROTECT_STAT','true','zh_TW','开启','2024-02-29 06:43:54','173818970422378496',NULL,NULL,_binary '\0'),(3168,'MPROTECT_STAT','true','en_US','open','2024-02-29 06:43:54','173818970422378496',NULL,NULL,_binary '\0'),(3169,'MPROTECT_STAT','false','zh_CN','关闭','2024-02-29 06:44:09','173818970422378496',NULL,NULL,_binary '\0'),(3170,'MPROTECT_STAT','false','zh_TW','关闭','2024-02-29 06:44:09','173818970422378496',NULL,NULL,_binary '\0'),(3171,'MPROTECT_STAT','false','en_US','close','2024-02-29 06:44:09','173818970422378496',NULL,NULL,_binary '\0'),(3172,'PLANE_MODEL','wrjxh075','zh_CN','M3D 系列','2024-03-08 02:52:36','1','2024-08-01 01:05:32','1',_binary '\0'),(3173,'PLANE_MODEL','wrjxh075','zh_TW','M3D 系列','2024-03-08 02:52:36','1','2024-08-01 01:05:32','1',_binary '\0'),(3174,'PLANE_MODEL','wrjxh075','en_US','M3D 系列','2024-03-08 02:52:36','1','2024-08-01 01:05:32','1',_binary '\0'),(3175,'LOAD_CAM_MODEL','xh031','zh_CN','M3D相机','2024-03-08 03:03:24','1',NULL,NULL,_binary '\0'),(3176,'LOAD_CAM_MODEL','xh031','zh_TW','M3D相机','2024-03-08 03:03:24','1',NULL,NULL,_binary '\0'),(3177,'LOAD_CAM_MODEL','xh031','en_US','M3D相机','2024-03-08 03:03:24','1',NULL,NULL,_binary '\0'),(3178,'LOAD_CAM_MODEL','xh035','zh_CN','时代星光载荷','2024-03-11 07:55:44','1',NULL,NULL,_binary '\0'),(3179,'LOAD_CAM_MODEL','xh035','zh_TW','时代星光载荷','2024-03-11 07:55:44','1',NULL,NULL,_binary '\0'),(3180,'LOAD_CAM_MODEL','xh035','en_US','时代星光载荷','2024-03-11 07:55:44','1',NULL,NULL,_binary '\0'),(3181,'AUTO_TEST','1212222','zh_CN','1212','2024-03-20 07:21:58','58582660930338816',NULL,NULL,_binary '\0'),(3182,'AUTO_TEST','1212222','zh_TW','12121','2024-03-20 07:21:58','58582660930338816',NULL,NULL,_binary '\0'),(3183,'AUTO_TEST','1212222','en_US','12121','2024-03-20 07:21:58','58582660930338816',NULL,NULL,_binary '\0'),(3184,'autoTestPerformance','test1','zh_CN','字典自动化','2024-03-20 07:26:16','58582660930338816','2024-03-20 07:44:07','58582660930338816',_binary ''),(3185,'autoTestPerformance','test1','zh_TW','字典自动化','2024-03-20 07:26:16','58582660930338816','2024-03-20 07:44:07','58582660930338816',_binary ''),(3186,'autoTestPerformance','test1','en_US','字典自动化','2024-03-20 07:26:16','58582660930338816','2024-03-20 07:44:07','58582660930338816',_binary ''),(3187,'autoTestPerformance','test1.1','zh_CN','接口性能','2024-03-20 07:26:17','58582660930338816','2024-03-20 07:44:06','58582660930338816',_binary ''),(3188,'autoTestPerformance','test1.1','zh_TW','接口性能','2024-03-20 07:26:17','58582660930338816','2024-03-20 07:44:06','58582660930338816',_binary ''),(3189,'autoTestPerformance','test1.1','en_US','接口性能','2024-03-20 07:26:17','58582660930338816','2024-03-20 07:44:06','58582660930338816',_binary ''),(3190,'PLANE_MODEL','AutoTestBiaodan','zh_CN','数据表单性能测试','2024-03-20 08:33:59','58582660930338816','2024-03-20 09:30:00','58582660930338816',_binary ''),(3191,'PLANE_MODEL','AutoTestBiaodan','zh_TW','数据表单性能测试','2024-03-20 08:33:59','58582660930338816','2024-03-20 09:30:00','58582660930338816',_binary ''),(3192,'PLANE_MODEL','AutoTestBiaodan','en_US','数据表单性能测试','2024-03-20 08:33:59','58582660930338816','2024-03-20 09:30:00','58582660930338816',_binary ''),(3193,'PLANE_MODEL','test-123','zh_CN','test-123','2024-03-30 02:35:19','173818970422378496',NULL,NULL,_binary '\0'),(3194,'PLANE_MODEL','test-123','zh_TW','test-123','2024-03-30 02:35:19','173818970422378496',NULL,NULL,_binary '\0'),(3195,'PLANE_MODEL','test-123','en_US','test-123','2024-03-30 02:35:19','173818970422378496',NULL,NULL,_binary '\0'),(3196,'INTERFACE_GROUP','INTERFACE_GROUP_5GA','zh_CN','通感数据','2024-04-18 13:42:14','188243415207510016',NULL,NULL,_binary '\0'),(3197,'INTERFACE_GROUP','INTERFACE_GROUP_5GA','zh_TW','通感数据','2024-04-18 13:42:14','188243415207510016',NULL,NULL,_binary '\0'),(3198,'INTERFACE_GROUP','INTERFACE_GROUP_5GA','en_US','通感数据','2024-04-18 13:42:14','188243415207510016',NULL,NULL,_binary '\0'),(3199,'HOUSEAREA','HUS00000154','zh_CN','516220419','2024-04-24 07:18:37','89730635001757696',NULL,NULL,_binary '\0'),(3200,'HOUSEAREA','HUS00000154','zh_TW','516220419','2024-04-24 07:18:37','89730635001757696',NULL,NULL,_binary '\0'),(3201,'HOUSEAREA','HUS00000154','en_US','516220419','2024-04-24 07:18:37','89730635001757696',NULL,NULL,_binary '\0'),(3202,'HOUSEAREA','HUS00000153','zh_CN','251322','2024-04-24 07:19:16','89730635001757696',NULL,NULL,_binary '\0'),(3203,'HOUSEAREA','HUS00000153','zh_TW','251322','2024-04-24 07:19:16','89730635001757696',NULL,NULL,_binary '\0'),(3204,'HOUSEAREA','HUS00000153','en_US','251322','2024-04-24 07:19:16','89730635001757696',NULL,NULL,_binary '\0'),(3205,'SCENARIOMAP','HUS00000154','zh_CN','320303-0-LAA-02-0001','2024-04-25 01:31:51','89730635001757696',NULL,NULL,_binary '\0'),(3206,'SCENARIOMAP','HUS00000154','zh_TW','320303-0-LAA-02-0001','2024-04-25 01:31:51','89730635001757696',NULL,NULL,_binary '\0'),(3207,'SCENARIOMAP','HUS00000154','en_US','320303-0-LAA-02-0001','2024-04-25 01:31:51','89730635001757696',NULL,NULL,_binary '\0'),(3208,'SCENARIOMAP','HUS00000153','zh_CN','320602-0-LAA-02-0002','2024-04-25 01:33:35','89730635001757696',NULL,NULL,_binary '\0'),(3209,'SCENARIOMAP','HUS00000153','zh_TW','320602-0-LAA-02-0002','2024-04-25 01:33:35','89730635001757696',NULL,NULL,_binary '\0'),(3210,'SCENARIOMAP','HUS00000153','en_US','320602-0-LAA-02-0002','2024-04-25 01:33:35','89730635001757696',NULL,NULL,_binary '\0'),(3211,'SOLUTION_TYPE','urgency','zh_CN','大应急行业','2024-04-28 06:19:49','89730635001757696',NULL,NULL,_binary '\0'),(3212,'SOLUTION_TYPE','urgency','zh_TW','大應急行業','2024-04-28 06:19:49','89730635001757696',NULL,NULL,_binary '\0'),(3213,'SOLUTION_TYPE','urgency','en_US','Urgency','2024-04-28 06:19:49','89730635001757696',NULL,NULL,_binary '\0'),(3214,'SOLUTION_TYPE','economy','zh_CN','低空经济','2024-04-28 06:20:03','89730635001757696',NULL,NULL,_binary '\0'),(3215,'SOLUTION_TYPE','economy','zh_TW','低空經濟','2024-04-28 06:20:03','89730635001757696',NULL,NULL,_binary '\0'),(3216,'SOLUTION_TYPE','economy','en_US','Low-altitude economy','2024-04-28 06:20:03','89730635001757696',NULL,NULL,_binary '\0'),(3217,'FEEDBACK_TYPE','EMERGENCY','zh_CN','大应急行业','2024-04-28 07:10:28','89730635001757696',NULL,NULL,_binary '\0'),(3218,'FEEDBACK_TYPE','EMERGENCY','zh_TW','大應急行業','2024-04-28 07:10:28','89730635001757696',NULL,NULL,_binary '\0'),(3219,'FEEDBACK_TYPE','EMERGENCY','en_US','Emergency','2024-04-28 07:10:28','89730635001757696',NULL,NULL,_binary '\0'),(3220,'FEEDBACK_TYPE','ECONOMY','zh_CN','低空经济','2024-04-28 07:10:45','89730635001757696',NULL,NULL,_binary '\0'),(3221,'FEEDBACK_TYPE','ECONOMY','zh_TW','低空經濟','2024-04-28 07:10:45','89730635001757696',NULL,NULL,_binary '\0'),(3222,'FEEDBACK_TYPE','ECONOMY','en_US','Low altitude economy','2024-04-28 07:10:45','89730635001757696',NULL,NULL,_binary '\0'),(3223,'HOUSEAREA','HUS00000155','zh_CN','519101209','2024-05-02 01:11:36','1',NULL,NULL,_binary '\0'),(3224,'HOUSEAREA','HUS00000155','zh_TW','519101209','2024-05-02 01:11:36','1',NULL,NULL,_binary '\0'),(3225,'HOUSEAREA','HUS00000155','en_US','519101209','2024-05-02 01:11:36','1',NULL,NULL,_binary '\0'),(3226,'SCENARIOMAP','HUS00000155','zh_CN','320412-0-LAA-02-0002','2024-05-02 01:16:57','1',NULL,NULL,_binary '\0'),(3227,'SCENARIOMAP','HUS00000155','zh_TW','320412-0-LAA-02-0002','2024-05-02 01:16:57','1',NULL,NULL,_binary '\0'),(3228,'SCENARIOMAP','HUS00000155','en_US','320412-0-LAA-02-0002','2024-05-02 01:16:57','1',NULL,NULL,_binary '\0'),(3229,'INTERFACE_GROUP','INDUSTRY','zh_CN','行业应用','2024-05-10 05:44:27','188243415207510016',NULL,NULL,_binary '\0'),(3230,'INTERFACE_GROUP','INDUSTRY','zh_TW','行业应用','2024-05-10 05:44:27','188243415207510016',NULL,NULL,_binary '\0'),(3231,'INTERFACE_GROUP','INDUSTRY','en_US','行业应用','2024-05-10 05:44:27','188243415207510016',NULL,NULL,_binary '\0'),(3232,'INTERFACE_GROUP','device.gps','zh_CN','在线无人机位置信息','2024-05-13 01:36:55','1','2024-05-13 01:37:04',NULL,_binary ''),(3233,'INTERFACE_GROUP','device.gps','zh_TW','在线无人机位置信息','2024-05-13 01:36:55','1','2024-05-13 01:37:04',NULL,_binary ''),(3234,'INTERFACE_GROUP','device.gps','en_US','device.gps','2024-05-13 01:36:55','1','2024-05-13 01:37:04',NULL,_binary ''),(3235,'LOAD_CAM_MODEL','xh036','zh_CN','科比特通用相机','2024-05-21 05:29:22','1',NULL,NULL,_binary '\0'),(3236,'LOAD_CAM_MODEL','xh036','zh_TW','科比特通用相机','2024-05-21 05:29:22','1',NULL,NULL,_binary '\0'),(3237,'LOAD_CAM_MODEL','xh036','en_US','科比特通用相机','2024-05-21 05:29:22','1',NULL,NULL,_binary '\0'),(3238,'MNF','sccj031','zh_CN','数字鹰','2024-06-06 03:02:46','1',NULL,NULL,_binary '\0'),(3239,'MNF','sccj031','zh_TW','数字鹰','2024-06-06 03:02:46','1',NULL,NULL,_binary '\0'),(3240,'MNF','sccj031','en_US','shuziying','2024-06-06 03:02:46','1',NULL,NULL,_binary '\0'),(3241,'LOAD_HNG_MODEL','jkxh016','zh_CN','数字鹰机库','2024-06-06 03:04:11','1',NULL,NULL,_binary '\0'),(3242,'LOAD_HNG_MODEL','jkxh016','zh_TW','数字鹰机库','2024-06-06 03:04:11','1',NULL,NULL,_binary '\0'),(3243,'LOAD_HNG_MODEL','jkxh016','en_US','shuziying dock','2024-06-06 03:04:11','1',NULL,NULL,_binary '\0'),(3244,'MWS','video-ts','zh_CN','ts','2024-06-14 07:56:16','1',NULL,NULL,_binary '\0'),(3245,'MWS','video-ts','zh_TW','ts','2024-06-14 07:56:16','1',NULL,NULL,_binary '\0'),(3246,'MWS','video-ts','en_US','ts','2024-06-14 07:56:16','1',NULL,NULL,_binary '\0'),(3247,'MNF','sccj033','zh_CN','航天国器','2024-07-25 01:39:14','1',NULL,NULL,_binary '\0'),(3248,'MNF','sccj033','zh_TW','航天国器','2024-07-25 01:39:14','1',NULL,NULL,_binary '\0'),(3249,'MNF','sccj033','en_US','航天国器','2024-07-25 01:39:14','1',NULL,NULL,_binary '\0'),(3250,'PLANE_MODEL','wrjxh077','zh_CN','GQ-40','2024-07-25 01:40:02','1',NULL,NULL,_binary '\0'),(3251,'PLANE_MODEL','wrjxh077','zh_TW','GQ-40','2024-07-25 01:40:02','1',NULL,NULL,_binary '\0'),(3252,'PLANE_MODEL','wrjxh077','en_US','GQ-40','2024-07-25 01:40:02','1',NULL,NULL,_binary '\0'),(3253,'LOAD_CAM_MODEL','xh038','zh_CN','航天国器通用载荷','2024-07-25 01:42:02','1',NULL,NULL,_binary '\0'),(3254,'LOAD_CAM_MODEL','xh038','zh_TW','航天国器通用载荷','2024-07-25 01:42:02','1',NULL,NULL,_binary '\0'),(3255,'LOAD_CAM_MODEL','xh038','en_US','航天国器通用载荷','2024-07-25 01:42:02','1',NULL,NULL,_binary '\0'),(3256,'PLANE_MODEL','wrjxh078','zh_CN','GQ-580','2024-07-25 01:45:32','1',NULL,NULL,_binary '\0'),(3257,'PLANE_MODEL','wrjxh078','zh_TW','GQ-580','2024-07-25 01:45:32','1',NULL,NULL,_binary '\0'),(3258,'PLANE_MODEL','wrjxh078','en_US','GQ-580','2024-07-25 01:45:32','1',NULL,NULL,_binary '\0'),(3259,'INTERFACE_GROUP','INTERFACE_GROUP_REGULATION','zh_CN','监管','2024-07-26 02:32:50','188243415207510016',NULL,NULL,_binary '\0'),(3260,'INTERFACE_GROUP','INTERFACE_GROUP_REGULATION','zh_TW','监管','2024-07-26 02:32:50','188243415207510016',NULL,NULL,_binary '\0'),(3261,'INTERFACE_GROUP','INTERFACE_GROUP_REGULATION','en_US','监管','2024-07-26 02:32:50','188243415207510016',NULL,NULL,_binary '\0'),(3262,'DEV_COMPANY','94','zh_CN','公安探测设备配置数据94','2024-08-01 01:57:50','515544718477099008','2024-09-09 06:07:36','515544718477099008',_binary '\0'),(3263,'DEV_COMPANY','94','zh_TW','公安探测设备配置数据94','2024-08-01 01:57:50','515544718477099008','2024-09-09 06:07:36','515544718477099008',_binary '\0'),(3264,'DEV_COMPANY','94','en_US','公安探测设备配置数据94','2024-08-01 01:57:50','515544718477099008','2024-09-09 06:07:36','515544718477099008',_binary '\0'),(3265,'POLICE_CASE_INFO','440395000000','zh_CN','2','2024-08-07 06:08:12','1',NULL,NULL,_binary '\0'),(3266,'POLICE_CASE_INFO','440395000000','zh_TW','2','2024-08-07 06:08:12','1',NULL,NULL,_binary '\0'),(3267,'POLICE_CASE_INFO','440395000000','en_US','2','2024-08-07 06:08:12','1',NULL,NULL,_binary '\0'),(3268,'POLICE_CASE_INFO','440396000000','zh_CN','3','2024-08-07 06:08:22','1',NULL,NULL,_binary '\0'),(3269,'POLICE_CASE_INFO','440396000000','zh_TW','3','2024-08-07 06:08:22','1',NULL,NULL,_binary '\0'),(3270,'POLICE_CASE_INFO','440396000000','en_US','3','2024-08-07 06:08:22','1',NULL,NULL,_binary '\0'),(3271,'CAMERA_FOV','63.7','zh_CN','xh001','2024-08-15 08:07:44','89730635001757696','2024-08-15 08:07:56','89730635001757696',_binary '\0'),(3272,'CAMERA_FOV','63.7','zh_TW','xh001','2024-08-15 08:07:44','89730635001757696','2024-08-15 08:07:56','89730635001757696',_binary '\0'),(3273,'CAMERA_FOV','63.7','en_US','xh001','2024-08-15 08:07:44','89730635001757696','2024-08-15 08:07:56','89730635001757696',_binary '\0'),(3274,'CAMERA_FOV','40.6','zh_CN','xh003','2024-08-15 08:08:23','89730635001757696',NULL,NULL,_binary '\0'),(3275,'CAMERA_FOV','40.6','zh_TW','xh003','2024-08-15 08:08:23','89730635001757696',NULL,NULL,_binary '\0'),(3276,'CAMERA_FOV','40.6','en_US','xh003','2024-08-15 08:08:23','89730635001757696',NULL,NULL,_binary '\0'),(3277,'POLICE_CASE_INFO','440396000001','zh_CN','4','2024-09-04 07:55:47','1',NULL,NULL,_binary '\0'),(3278,'POLICE_CASE_INFO','440396000001','zh_TW','4','2024-09-04 07:55:47','1',NULL,NULL,_binary '\0'),(3279,'POLICE_CASE_INFO','440396000001','en_US','4','2024-09-04 07:55:47','1',NULL,NULL,_binary '\0'),(3280,'DEV_COMPANY','2','zh_CN','公安探测设备配置数据2','2024-09-09 06:07:09','515544718477099008',NULL,NULL,_binary '\0'),(3281,'DEV_COMPANY','2','zh_TW','公安探测设备配置数据2','2024-09-09 06:07:09','515544718477099008',NULL,NULL,_binary '\0'),(3282,'DEV_COMPANY','2','en_US','公安探测设备配置数据2','2024-09-09 06:07:09','515544718477099008',NULL,NULL,_binary '\0'),(3283,'SEC_TYPE','FLIGHT_CMD','en_US','Illegal flight control command','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3284,'SEC_TYPE','FLIGHT_CMD','zh_CN','非法飞控指令','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3285,'SEC_TYPE','FLIGHT_CMD','zh_TW','非法飛控指令','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3286,'SEC_TYPE','DB_TAMPER','en_US','Illegal database tampering','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3287,'SEC_TYPE','DB_TAMPER','zh_CN','数据库非法篡改','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3288,'SEC_TYPE','DB_TAMPER','zh_TW','數據庫非法篡改','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3289,'SEC_TYPE','CON_FLIGHT','en_US','程控飞行','2024-10-11 01:09:45','123','2024-10-11 01:21:15','1',_binary '\0'),(3290,'SEC_TYPE','CON_FLIGHT','zh_CN','程控飞行','2024-10-11 01:09:45','123','2024-10-11 01:21:15','1',_binary '\0'),(3291,'SEC_TYPE','CON_FLIGHT','zh_TW','程控飞行','2024-10-11 01:09:45','123','2024-10-11 01:21:15','1',_binary '\0'),(3292,'SEC_TYPE','ELEC_FENCE','en_US','电子围栏','2024-10-11 01:09:45','123','2024-10-11 01:22:11','1',_binary '\0'),(3293,'SEC_TYPE','ELEC_FENCE','zh_CN','电子围栏','2024-10-11 01:09:45','123','2024-10-11 01:22:11','1',_binary '\0'),(3294,'SEC_TYPE','ELEC_FENCE','zh_TW','电子围栏','2024-10-11 01:09:45','123','2024-10-11 01:22:11','1',_binary '\0'),(3295,'ALARM_STATE','1','en_US','cancel','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3296,'ALARM_STATE','1','zh_CN','已解除','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3297,'ALARM_STATE','1','zh_TW','已解除','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3298,'ALARM_STATE','0','en_US','ongoing','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3299,'ALARM_STATE','0','zh_CN','进行中','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3300,'ALARM_STATE','0','zh_TW','進行中','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3301,'CMD_STATE','1','en_US','done','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3302,'CMD_STATE','1','zh_CN','已处置','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3303,'CMD_STATE','1','zh_TW','已处置','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3304,'CMD_STATE','0','en_US','ongoing','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3305,'CMD_STATE','0','zh_CN','处置中','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3306,'CMD_STATE','0','zh_TW','处置中','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3307,'HANDLE_STATE','-2','en_US','deal','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3308,'HANDLE_STATE','-2','zh_CN','处置','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3309,'HANDLE_STATE','-2','zh_TW','处置','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3310,'HANDLE_STATE','-1','en_US','ignore','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3311,'HANDLE_STATE','-1','zh_CN','忽略','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3312,'HANDLE_STATE','-1','zh_TW','忽略','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3313,'HANDLE_STATE','2','en_US','report wrong','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3314,'HANDLE_STATE','2','zh_CN','误报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3315,'HANDLE_STATE','2','zh_TW','误报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3316,'HANDLE_STATE','1','en_US','report','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3317,'HANDLE_STATE','1','zh_CN','上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3318,'HANDLE_STATE','1','zh_TW','上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3319,'HANDLE_STATE','0','en_US','not report','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3320,'HANDLE_STATE','0','zh_CN','未上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3321,'HANDLE_STATE','0','zh_TW','未上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3322,'ALARM_OBJECT','elecFence','en_US','electronic fence','2024-10-11 01:11:44','123',NULL,NULL,_binary '\0'),(3323,'ALARM_OBJECT','elecFence','zh_CN','电子围栏','2024-10-11 01:11:44','123',NULL,NULL,_binary '\0'),(3324,'ALARM_OBJECT','elecFence','zh_TW','电子围栏','2024-10-11 01:11:44','123',NULL,NULL,_binary '\0'); +INSERT INTO `sys_dictionary_attr` VALUES (1,'MNF','sccj001','zh_CN','DJI大疆','2020-09-18 02:21:39','admin','2024-09-06 02:37:21','89730635001757696',_binary '\0'),(2,'MNF','sccj002','zh_CN','纵横','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(3,'MNF','sccj003','zh_CN','亿航智能','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(4,'MNF','sccj004','zh_CN','科比特航空','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(5,'MNF','sccj005','zh_CN','中测新图','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(6,'MNF','sccj006','zh_CN','国飞航空','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(7,'MNF','sccj007','zh_CN','北方天途','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(8,'MNF','sccj008','zh_CN','一飞智控','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(9,'MNF','sccj009','zh_CN','腾盾','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(10,'MNF','sccj010','zh_CN','合纵智联','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(11,'MNF','sccj011','zh_CN','卫通','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(12,'MNF','sccj012','zh_CN','时代星光','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(13,'MNF','sccj013','zh_CN','锋飞','2020-09-18 02:21:39','admin','2022-09-20 08:29:06','1',_binary '\0'),(14,'MNF','sccj014','zh_CN','大工','2020-09-18 02:21:39','admin','2022-09-20 08:29:05','1',_binary '\0'),(15,'MNF','sccj015','zh_CN','极飞','2020-09-18 02:21:39','admin','2022-09-20 08:29:05','1',_binary '\0'),(16,'MNF','sccj016','zh_CN','复亚','2020-09-18 02:21:39','admin','2022-09-20 08:29:05','1',_binary '\0'),(17,'PLANE_MODEL','wrjxh001','zh_CN','精灵4 Adv','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(18,'PLANE_MODEL','wrjxh002','zh_CN','精灵 4 Pro','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(19,'PLANE_MODEL','wrjxh003','zh_CN','御2 Pro','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(20,'PLANE_MODEL','wrjxh004','zh_CN','御2 Zoom','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(21,'PLANE_MODEL','wrjxh005','zh_CN','御 Pro','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(22,'PLANE_MODEL','wrjxh006','zh_CN','M210','2020-09-18 02:21:39','admin','2022-09-20 08:29:35','1',_binary '\0'),(23,'PLANE_MODEL','wrjxh007','zh_CN','CW-100','2020-09-18 02:21:40','admin','2022-09-20 08:29:35','1',_binary '\0'),(24,'PLANE_MODEL','wrjxh008','zh_CN','CW-007','2020-09-18 02:21:43','admin','2022-09-20 08:29:35','1',_binary '\0'),(25,'PLANE_MODEL','wrjxh009','zh_CN','CW-30','2020-09-18 02:21:44','admin','2022-09-20 08:29:35','1',_binary '\0'),(26,'PLANE_MODEL','wrjxh010','zh_CN','CW-15','2020-09-18 02:21:44','admin','2022-09-20 08:29:35','1',_binary '\0'),(27,'PLANE_MODEL','wrjxh011','zh_CN','CW-20','2020-09-18 02:21:45','admin','2022-09-20 08:29:35','1',_binary '\0'),(28,'PLANE_MODEL','wrjxh012','zh_CN','CW-10','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(29,'PLANE_MODEL','wrjxh013','zh_CN','CW-25','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(30,'PLANE_MODEL','wrjxh014','zh_CN','GD2.0X','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(31,'PLANE_MODEL','wrjxh015','zh_CN','插翅虎M8','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(32,'PLANE_MODEL','wrjxh016','zh_CN','入云龙M6','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(33,'PLANE_MODEL','wrjxh017','zh_CN','小旋风M5','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(34,'PLANE_MODEL','wrjxh018','zh_CN','ZC-3C','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(35,'PLANE_MODEL','wrjxh019','zh_CN','ZC-5','2020-09-18 02:21:45','admin','2022-09-20 08:29:34','1',_binary '\0'),(36,'PLANE_MODEL','wrjxh020','zh_CN','ZC-10','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(37,'PLANE_MODEL','wrjxh021','zh_CN','ZC-20','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(38,'PLANE_MODEL','wrjxh022','zh_CN','救援无人机','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(39,'PLANE_MODEL','wrjxh023','zh_CN','干粉无人机','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(40,'PLANE_MODEL','wrjxh024','zh_CN','抛投无人机','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(41,'PLANE_MODEL','wrjxh025','zh_CN','M8Apro','2020-09-18 02:21:46','admin','2022-09-20 08:29:34','1',_binary '\0'),(42,'PLANE_MODEL','wrjxh026','zh_CN','M4H','2020-09-18 02:21:47','admin','2022-09-20 08:29:34','1',_binary '\0'),(43,'PLANE_MODEL','wrjxh027','zh_CN','M8FA','2020-09-18 02:21:47','admin','2022-09-20 08:29:34','1',_binary '\0'),(44,'PLANE_MODEL','wrjxh028','zh_CN','M6E','2020-09-18 02:21:51','admin','2022-09-20 08:29:34','1',_binary '\0'),(45,'PLANE_MODEL','wrjxh029','zh_CN','承鹰80E','2020-09-18 02:21:55','admin','2022-09-20 08:29:34','1',_binary '\0'),(46,'PLANE_MODEL','wrjxh030','zh_CN','览雀','2020-09-18 02:21:58','admin','2022-09-20 08:29:34','1',_binary '\0'),(47,'PLANE_MODEL','wrjxh031','zh_CN','鸾凤','2020-09-18 02:21:59','admin','2022-09-20 08:29:33','1',_binary '\0'),(48,'PLANE_MODEL','wrjxh032','zh_CN','双尾蝎','2020-09-18 02:22:01','admin','2022-09-20 08:29:33','1',_binary '\0'),(49,'PLANE_MODEL','wrjxh033','zh_CN','扑天雕','2020-09-18 02:22:03','admin','2022-09-20 08:29:33','1',_binary '\0'),(50,'PLANE_MODEL','wrjxh034','zh_CN','X120','2020-09-18 02:22:08','admin','2022-09-20 08:29:33','1',_binary '\0'),(51,'PLANE_MODEL','wrjxh035','zh_CN','X150','2020-09-18 02:22:14','admin','2022-09-20 08:29:33','1',_binary '\0'),(52,'PLANE_MODEL','wrjxh036','zh_CN','X80','2020-09-18 02:22:16','admin','2022-09-20 08:29:33','1',_binary '\0'),(53,'PLANE_MODEL','wrjxh037','zh_CN','X100','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(54,'PLANE_MODEL','wrjxh038','zh_CN','大白鲨系列','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(55,'PLANE_MODEL','wrjxh039','zh_CN','DG-M20','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(56,'PLANE_MODEL','wrjxh040','zh_CN','DG-X03','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(57,'PLANE_MODEL','wrjxh041','zh_CN','X410','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(58,'PLANE_MODEL','wrjxh042','zh_CN','X402','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(59,'PLANE_MODEL','wrjxh043','zh_CN','DG-M15','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(60,'PLANE_MODEL','wrjxh044','zh_CN','DG-30','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(61,'PLANE_MODEL','wrjxh045','zh_CN','P30','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(62,'PLANE_MODEL','wrjxh046','zh_CN',' P20','2020-09-18 02:22:17','admin','2022-09-20 08:29:33','1',_binary '\0'),(63,'PLANE_SHAPE','xt001','zh_CN','旋翼','2020-09-18 02:22:17','admin','2024-09-06 02:38:03','89730635001757696',_binary '\0'),(64,'PLANE_SHAPE','xt002','zh_CN','固定翼','2020-09-18 02:22:17','admin','2022-01-20 01:16:07','123',_binary '\0'),(65,'PLANE_SHAPE','xt003','zh_CN','混合','2020-09-18 02:22:17','admin','2022-01-20 01:16:07','123',_binary '\0'),(66,'PLANE_SIZE','wrjcd001','zh_CN','微型','2020-09-18 02:22:17','admin','2021-09-22 07:20:03','70179580555558912',_binary '\0'),(67,'PLANE_SIZE','wrjcd002','zh_CN','轻型','2020-09-18 02:22:17','admin','2021-09-22 07:19:48','70179580555558912',_binary '\0'),(68,'PLANE_SIZE','wrjcd003','zh_CN','小型','2020-09-18 02:22:17','admin','2021-09-22 07:19:29','70179580555558912',_binary '\0'),(69,'PLANE_SIZE','wrjcd004','zh_CN','大型','2020-09-18 02:22:17','admin','2021-09-22 07:19:19','70179580555558912',_binary '\0'),(70,'PLANE_MAT','cl001','zh_CN','碳纤维','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(71,'PLANE_MAT','cl002','zh_CN','复合材料','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(72,'PLANE_MAT','cl003','zh_CN','凯夫拉','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(73,'PLANE_MAT','cl004','zh_CN','碳钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(74,'PLANE_MAT','cl005','zh_CN','航空铝','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(75,'PLANE_MAT','cl006','zh_CN','铝合金','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(76,'PLANE_MAT','cl007','zh_CN','不锈钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(77,'PLANE_MAT','cl008','zh_CN','普通钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(78,'PLANE_MAT','cl009','zh_CN','钢','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(79,'PLANE_MAT','cl010','zh_CN','铝','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(80,'PLANE_INF','wbjk001','zh_CN','USB','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(81,'PLANE_INF','wbjk002','zh_CN','HDMI','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(82,'PLANE_INF','wbjk003','zh_CN','串口','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(83,'PLANE_INF','wbjk004','zh_CN','电源','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(84,'PLANE_INF','wbjk005','zh_CN','光纤','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(85,'PLANE_INF','wbjk006','zh_CN','DC供电','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(86,'LOAD_CAM_MODEL','xh001','zh_CN','禅思 ZENMUSE Z30','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(87,'LOAD_CAM_MODEL','xh002','zh_CN','禅思 ZENMUSE XT','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(88,'LOAD_CAM_EXP_MODE','bg001','zh_CN','自动曝光','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(89,'LOAD_CAM_EXP_MODE','bg002','zh_CN','手动曝光','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(90,'LOAD_CAM_EXP_MODE','bg003','zh_CN','快门优先','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(91,'LOAD_CAM_EXP_MODE','bg004','zh_CN','光圈优先','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(92,'LOAD_CAM_WORK_MODE','gz001','zh_CN','拍照模式','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(93,'LOAD_CAM_WORK_MODE','gz002','zh_CN','录像模式','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(94,'LOAD_CAM_WORK_MODE','gz003','zh_CN','回放模式','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(95,'LOAD_CAM_BALANCE','bp001','zh_CN','自动','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(96,'LOAD_CAM_BALANCE','bp002','zh_CN','晴天','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(97,'LOAD_CAM_BALANCE','bp003','zh_CN','阴天','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(98,'LOAD_CAM_BALANCE','bp004','zh_CN','白炽灯','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(99,'LOAD_CAM_BALANCE','bp005','zh_CN','手动','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(100,'LOAD_CAM_IMG_FMT','cc001','zh_CN','JPEG','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(101,'LOAD_CAM_IMG_FMT','cc002','zh_CN','R-JPEG','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(102,'LOAD_CAM_IMG_FMT','cc003','zh_CN','TIFF','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(103,'LOAD_CAM_IMG_SIZE','tx001','zh_CN','640×512','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(104,'LOAD_CAM_IMG_SIZE','tx002','zh_CN','336×256','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(105,'LOAD_CAM_CAM_MODE','pz001','zh_CN','单拍','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(106,'LOAD_CAM_CAM_MODE','pz002','zh_CN','连拍','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(107,'LOAD_CAM_CAM_MODE','pz003','zh_CN','定时拍','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(108,'LOAD_CAM_SHUT_SPEED','km001','zh_CN','1/30','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(109,'LOAD_CAM_SHUT_SPEED','km002','zh_CN','1/60','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(110,'LOAD_CAM_SHUT_SPEED','km003','zh_CN','1/125','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(111,'LOAD_CAM_SHUT_SPEED','km004','zh_CN','1/250','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(112,'LOAD_CAM_SHUT_SPEED','km005','zh_CN','1/500','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(113,'LOAD_CAM_SHUT_SPEED','km006','zh_CN','1/1000','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(114,'LOAD_CAM_SHUT_SPEED','km007','zh_CN','1/4000','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(115,'LOAD_CAM_SHUT_SPEED','km008','zh_CN','1/6000','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(116,'LOAD_CAM_VIDEO_FMT','sp001','zh_CN','MOV','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(117,'LOAD_CAM_VIDEO_FMT','sp002','zh_CN','MP4','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(118,'LOAD_CAM_VIDEO_DIS','fb001','zh_CN','720 x 480','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(119,'LOAD_SPK_MODEL','hhqxh001','zh_CN','悟1','2020-09-18 02:22:17','admin','2020-12-15 07:08:01','1',_binary '\0'),(120,'LOAD_SPK_MODEL','hhqxh002','zh_CN','M600 PRO','2020-09-18 02:22:17','admin','2020-12-15 07:08:18','1',_binary '\0'),(121,'LOAD_HNG_MODEL','jkxh001','zh_CN','A30','2020-09-18 02:22:17','admin','2020-12-15 07:06:37','1',_binary '\0'),(122,'LOAD_HNG_MODEL','jkxh002','zh_CN','G10','2020-09-18 02:22:17','admin','2020-12-15 07:06:51','1',_binary '\0'),(123,'LOAD_HNG_MODEL','jkxh003','zh_CN','V10','2020-09-18 02:22:17','admin','2020-12-15 07:07:18','1',_binary '\0'),(124,'HNG_TYPE','jklx001','zh_CN','固定式旋翼自动机场','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(125,'HNG_TYPE','jklx002','zh_CN','复合翼自动机场','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(126,'HNG_TYPE','jklx003','zh_CN','移动式自动机场','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(127,'PROT_LEVEL','dj001','zh_CN','IP54','2020-09-18 02:22:17','admin','2020-09-18 02:22:17','admin',_binary '\0'),(128,'DEV_MODEL','PLANE_MODEL','zh_CN','无人机','2020-09-18 02:22:17','admin','2023-10-11 06:11:00','123',_binary '\0'),(129,'DEV_MODEL','LOAD_CAM_MODEL','zh_CN','摄像头','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(130,'DEV_MODEL','LOAD_SPK_MODEL','zh_CN','喊话器','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(131,'DEV_MODEL','LOAD_HNG_MODEL','zh_CN','机库','2020-09-18 02:22:18','admin','2023-10-11 06:10:59','123',_binary '\0'),(132,'MNF','sccj001','en_US','DJI Da Jiang','2020-09-18 02:22:18','admin','2024-09-06 02:37:21','89730635001757696',_binary '\0'),(133,'MNF','sccj002','en_US','Zong Heng','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(134,'MNF','sccj003','en_US','Yi Hang Zhi Neng','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(135,'MNF','sccj004','en_US','Ke Bi Te Hang Kong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(136,'MNF','sccj005','en_US','Zhong Ce Xin Tu','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(137,'MNF','sccj006','en_US','Guo Fei Hang Kong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(138,'MNF','sccj007','en_US','Bei Fang Tian Tu','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(139,'MNF','sccj008','en_US','Yi Fei Zhi Kong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(140,'MNF','sccj009','en_US','Teng Dun','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(141,'MNF','sccj010','en_US','He Zong Zhi Lian','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(142,'MNF','sccj011','en_US','Wei Tong','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(143,'MNF','sccj012','en_US','Shi Dai Xing Guang','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(144,'MNF','sccj013','en_US','Feng Fei','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(145,'MNF','sccj014','en_US','Da Gong','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(146,'MNF','sccj015','en_US','Ji Fei','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(147,'MNF','sccj016','en_US','Fu Ya','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(148,'PLANE_MODEL','wrjxh001','en_US','Jing Ling 4 Adv','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(149,'PLANE_MODEL','wrjxh002','en_US','Jing Ling 4 Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(150,'PLANE_MODEL','wrjxh003','en_US','Yu2 Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(151,'PLANE_MODEL','wrjxh004','en_US','Yu2 Zoom','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(152,'PLANE_MODEL','wrjxh005','en_US','Yu Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(153,'PLANE_MODEL','wrjxh006','en_US','M210','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(154,'PLANE_MODEL','wrjxh007','en_US','CW-100','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(155,'PLANE_MODEL','wrjxh008','en_US','CW-007','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(156,'PLANE_MODEL','wrjxh009','en_US','CW-30','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(157,'PLANE_MODEL','wrjxh010','en_US','CW-15','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(158,'PLANE_MODEL','wrjxh011','en_US','CW-20','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(159,'PLANE_MODEL','wrjxh012','en_US','CW-10','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(160,'PLANE_MODEL','wrjxh013','en_US','CW-25','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(161,'PLANE_MODEL','wrjxh014','en_US','GD2.0X','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(162,'PLANE_MODEL','wrjxh015','en_US','Cha Chi Hu M8','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(163,'PLANE_MODEL','wrjxh016','en_US','Ru Yun Long M6','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(164,'PLANE_MODEL','wrjxh017','en_US','Xiao Xuan Feng M5','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(165,'PLANE_MODEL','wrjxh018','en_US','ZC-3C','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(166,'PLANE_MODEL','wrjxh019','en_US','ZC-5','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(167,'PLANE_MODEL','wrjxh020','en_US','ZC-10','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(168,'PLANE_MODEL','wrjxh021','en_US','ZC-20','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(169,'PLANE_MODEL','wrjxh022','en_US','Rescue Drone','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(170,'PLANE_MODEL','wrjxh023','en_US','Dry Powder Drone','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(171,'PLANE_MODEL','wrjxh024','en_US','Throwing Drone','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(172,'PLANE_MODEL','wrjxh025','en_US','M8Apro','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(173,'PLANE_MODEL','wrjxh026','en_US','M4H','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(174,'PLANE_MODEL','wrjxh027','en_US','M8FA','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(175,'PLANE_MODEL','wrjxh028','en_US','M6E','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(176,'PLANE_MODEL','wrjxh029','en_US','Cheng Ying 80E','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(177,'PLANE_MODEL','wrjxh030','en_US','Lan Yue','2020-09-18 02:22:18','admin','2022-09-20 08:29:34','1',_binary '\0'),(178,'PLANE_MODEL','wrjxh031','en_US','Luan Feng','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(179,'PLANE_MODEL','wrjxh032','en_US','Shuang Wei Xie','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(180,'PLANE_MODEL','wrjxh033','en_US','Pu Tian Diao','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(181,'PLANE_MODEL','wrjxh034','en_US','X120','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(182,'PLANE_MODEL','wrjxh035','en_US','X150','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(183,'PLANE_MODEL','wrjxh036','en_US','X80','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(184,'PLANE_MODEL','wrjxh037','en_US','X100','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(185,'PLANE_MODEL','wrjxh038','en_US','Great White Shark Series','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(186,'PLANE_MODEL','wrjxh039','en_US','DG-M20','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(187,'PLANE_MODEL','wrjxh040','en_US','DG-X03','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(188,'PLANE_MODEL','wrjxh041','en_US','X410','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(189,'PLANE_MODEL','wrjxh042','en_US','X402','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(190,'PLANE_MODEL','wrjxh043','en_US','DG-M15','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(191,'PLANE_MODEL','wrjxh044','en_US','DG-30','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(192,'PLANE_MODEL','wrjxh045','en_US','P30','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(193,'PLANE_MODEL','wrjxh046','en_US',' P20','2020-09-18 02:22:18','admin','2022-09-20 08:29:33','1',_binary '\0'),(194,'PLANE_SHAPE','xt001','en_US','Rotor','2020-09-18 02:22:18','admin','2024-09-06 02:38:03','89730635001757696',_binary '\0'),(195,'PLANE_SHAPE','xt002','en_US','Fixed-wing','2020-09-18 02:22:18','admin','2022-01-20 01:16:07','123',_binary '\0'),(196,'PLANE_SHAPE','xt003','en_US','Mixing','2020-09-18 02:22:18','admin','2022-01-20 01:16:07','123',_binary '\0'),(197,'PLANE_SIZE','wrjcd001','en_US','miniature','2020-09-18 02:22:18','admin','2021-09-22 07:20:03','70179580555558912',_binary '\0'),(198,'PLANE_SIZE','wrjcd002','en_US','light','2020-09-18 02:22:18','admin','2021-09-22 07:19:48','70179580555558912',_binary '\0'),(199,'PLANE_SIZE','wrjcd003','en_US','small','2020-09-18 02:22:18','admin','2021-09-22 07:19:29','70179580555558912',_binary '\0'),(200,'PLANE_SIZE','wrjcd004','en_US','big','2020-09-18 02:22:18','admin','2021-09-22 07:19:19','70179580555558912',_binary '\0'),(201,'PLANE_MAT','cl001','en_US','碳纤维','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(202,'PLANE_MAT','cl002','en_US','复合材料','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(203,'PLANE_MAT','cl003','en_US','凯夫拉','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(204,'PLANE_MAT','cl004','en_US','碳钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(205,'PLANE_MAT','cl005','en_US','航空铝','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(206,'PLANE_MAT','cl006','en_US','铝合金','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(207,'PLANE_MAT','cl007','en_US','不锈钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(208,'PLANE_MAT','cl008','en_US','普通钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(209,'PLANE_MAT','cl009','en_US','钢','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(210,'PLANE_MAT','cl010','en_US','铝','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(211,'PLANE_INF','wbjk001','en_US','USB','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(212,'PLANE_INF','wbjk002','en_US','HDMI','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(213,'PLANE_INF','wbjk003','en_US','串口','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(214,'PLANE_INF','wbjk004','en_US','电源','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(215,'PLANE_INF','wbjk005','en_US','光纤','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(216,'PLANE_INF','wbjk006','en_US','DC供电','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(217,'LOAD_CAM_MODEL','xh001','en_US','ZENMUSE Z30','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(218,'LOAD_CAM_MODEL','xh002','en_US','ZENMUSE XT','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(219,'LOAD_CAM_EXP_MODE','bg001','en_US','Programmed auto','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(220,'LOAD_CAM_EXP_MODE','bg002','en_US','Manual exposure','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(221,'LOAD_CAM_EXP_MODE','bg003','en_US','Shutter Priority Auto','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(222,'LOAD_CAM_EXP_MODE','bg004','en_US','Aperture Priority Auto','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(223,'LOAD_CAM_WORK_MODE','gz001','en_US','Photo mode','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(224,'LOAD_CAM_WORK_MODE','gz002','en_US','Video recording mode','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(225,'LOAD_CAM_WORK_MODE','gz003','en_US','Playback mode','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(226,'LOAD_CAM_BALANCE','bp001','en_US','AWB','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(227,'LOAD_CAM_BALANCE','bp002','en_US','Sunny','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(228,'LOAD_CAM_BALANCE','bp003','en_US','Overcast','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(229,'LOAD_CAM_BALANCE','bp004','en_US','Incandescent lamp','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(230,'LOAD_CAM_BALANCE','bp005','en_US','Manual','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(231,'LOAD_CAM_IMG_FMT','cc001','en_US','JPEG','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(232,'LOAD_CAM_IMG_FMT','cc002','en_US','R-JPEG','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(233,'LOAD_CAM_IMG_FMT','cc003','en_US','TIFF','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(234,'LOAD_CAM_IMG_SIZE','tx001','en_US','640×512','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(235,'LOAD_CAM_IMG_SIZE','tx002','en_US','336×256','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(236,'LOAD_CAM_CAM_MODE','pz001','en_US','Single shot','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(237,'LOAD_CAM_CAM_MODE','pz002','en_US','Burst','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(238,'LOAD_CAM_CAM_MODE','pz003','en_US','Time lapse','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(239,'LOAD_CAM_SHUT_SPEED','km001','en_US','1/30','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(240,'LOAD_CAM_SHUT_SPEED','km002','en_US','1/60','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(241,'LOAD_CAM_SHUT_SPEED','km003','en_US','1/125','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(242,'LOAD_CAM_SHUT_SPEED','km004','en_US','1/250','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(243,'LOAD_CAM_SHUT_SPEED','km005','en_US','1/500','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(244,'LOAD_CAM_SHUT_SPEED','km006','en_US','1/1000','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(245,'LOAD_CAM_SHUT_SPEED','km007','en_US','1/4000','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(246,'LOAD_CAM_SHUT_SPEED','km008','en_US','1/6000','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(247,'LOAD_CAM_VIDEO_FMT','sp001','en_US','MOV','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(248,'LOAD_CAM_VIDEO_FMT','sp002','en_US','MP4','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(249,'LOAD_CAM_VIDEO_DIS','fb001','en_US','720 x 480','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(250,'LOAD_SPK_MODEL','hhqxh001','en_US','悟1','2020-09-18 02:22:18','admin','2020-12-15 07:08:01','1',_binary '\0'),(251,'LOAD_SPK_MODEL','hhqxh002','en_US','M600 PRO','2020-09-18 02:22:18','admin','2020-12-15 07:08:18','1',_binary '\0'),(252,'LOAD_HNG_MODEL','jkxh001','en_US','A30','2020-09-18 02:22:18','admin','2020-12-15 07:06:37','1',_binary '\0'),(253,'LOAD_HNG_MODEL','jkxh002','en_US','G10','2020-09-18 02:22:18','admin','2020-12-15 07:06:51','1',_binary '\0'),(254,'LOAD_HNG_MODEL','jkxh003','en_US','V10','2020-09-18 02:22:18','admin','2020-12-15 07:07:18','1',_binary '\0'),(255,'HNG_TYPE','jklx001','en_US','固定式旋翼自动机场','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(256,'HNG_TYPE','jklx002','en_US','复合翼自动机场','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(257,'HNG_TYPE','jklx003','en_US','移动式自动机场','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(258,'PROT_LEVEL','dj001','en_US','IP54','2020-09-18 02:22:18','admin','2020-09-18 02:22:18','admin',_binary '\0'),(259,'DEV_MODEL','PLANE_MODEL','en_US','Uav','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(260,'DEV_MODEL','LOAD_CAM_MODEL','en_US','Camera','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(261,'DEV_MODEL','LOAD_SPK_MODEL','en_US','Megaphone','2020-09-18 02:22:18','admin','2023-10-11 06:11:00','123',_binary '\0'),(262,'DEV_MODEL','LOAD_HNG_MODEL','en_US','Uav box','2020-09-18 02:22:18','admin','2023-10-11 06:10:59','123',_binary '\0'),(263,'MNF','sccj001','zh_TW','DJI大疆','2020-09-18 02:22:18','admin','2024-09-06 02:37:21','89730635001757696',_binary '\0'),(264,'MNF','sccj002','zh_TW','縱橫','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(265,'MNF','sccj003','zh_TW','億航智能','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(266,'MNF','sccj004','zh_TW','科比特航空','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(267,'MNF','sccj005','zh_TW','中測新圖','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(268,'MNF','sccj006','zh_TW','國飛航空','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(269,'MNF','sccj007','zh_TW','北方天途','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(270,'MNF','sccj008','zh_TW','一飛智控','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(271,'MNF','sccj009','zh_TW','騰盾','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(272,'MNF','sccj010','zh_TW','合縱智聯','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(273,'MNF','sccj011','zh_TW','衛通','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(274,'MNF','sccj012','zh_TW','時代星光','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(275,'MNF','sccj013','zh_TW','鋒飛','2020-09-18 02:22:18','admin','2022-09-20 08:29:06','1',_binary '\0'),(276,'MNF','sccj014','zh_TW','大工','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(277,'MNF','sccj015','zh_TW','極飛','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(278,'MNF','sccj016','zh_TW','復亞','2020-09-18 02:22:18','admin','2022-09-20 08:29:05','1',_binary '\0'),(279,'PLANE_MODEL','wrjxh001','zh_TW','精靈4 Adv','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(280,'PLANE_MODEL','wrjxh002','zh_TW','精靈 4 Pro','2020-09-18 02:22:18','admin','2022-09-20 08:29:35','1',_binary '\0'),(281,'PLANE_MODEL','wrjxh003','zh_TW','禦2 Pro','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(282,'PLANE_MODEL','wrjxh004','zh_TW','禦2 Zoom','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(283,'PLANE_MODEL','wrjxh005','zh_TW','禦 Pro','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(284,'PLANE_MODEL','wrjxh006','zh_TW','M210','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(285,'PLANE_MODEL','wrjxh007','zh_TW','CW-100','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(286,'PLANE_MODEL','wrjxh008','zh_TW','CW-007','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(287,'PLANE_MODEL','wrjxh009','zh_TW','CW-30','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(288,'PLANE_MODEL','wrjxh010','zh_TW','CW-15','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(289,'PLANE_MODEL','wrjxh011','zh_TW','CW-20','2020-09-18 02:22:19','admin','2022-09-20 08:29:35','1',_binary '\0'),(290,'PLANE_MODEL','wrjxh012','zh_TW','CW-10','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(291,'PLANE_MODEL','wrjxh013','zh_TW','CW-25','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(292,'PLANE_MODEL','wrjxh014','zh_TW','GD2.0X','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(293,'PLANE_MODEL','wrjxh015','zh_TW','插翅虎M8','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(294,'PLANE_MODEL','wrjxh016','zh_TW','入雲龍M6','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(295,'PLANE_MODEL','wrjxh017','zh_TW','小旋風M5','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(296,'PLANE_MODEL','wrjxh018','zh_TW','ZC-3C','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(297,'PLANE_MODEL','wrjxh019','zh_TW','ZC-5','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(298,'PLANE_MODEL','wrjxh020','zh_TW','ZC-10','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(299,'PLANE_MODEL','wrjxh021','zh_TW','ZC-20','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(300,'PLANE_MODEL','wrjxh022','zh_TW','救援無人機','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(301,'PLANE_MODEL','wrjxh023','zh_TW','乾粉無人機','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(302,'PLANE_MODEL','wrjxh024','zh_TW','拋投無人機','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(303,'PLANE_MODEL','wrjxh025','zh_TW','M8Apro','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(304,'PLANE_MODEL','wrjxh026','zh_TW','M4H','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(305,'PLANE_MODEL','wrjxh027','zh_TW','M8FA','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(306,'PLANE_MODEL','wrjxh028','zh_TW','M6E','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(307,'PLANE_MODEL','wrjxh029','zh_TW','承鷹80E','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(308,'PLANE_MODEL','wrjxh030','zh_TW','覽雀','2020-09-18 02:22:19','admin','2022-09-20 08:29:34','1',_binary '\0'),(309,'PLANE_MODEL','wrjxh031','zh_TW','鸞鳳','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(310,'PLANE_MODEL','wrjxh032','zh_TW','雙尾蠍','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(311,'PLANE_MODEL','wrjxh033','zh_TW','撲天雕','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(312,'PLANE_MODEL','wrjxh034','zh_TW','X120','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(313,'PLANE_MODEL','wrjxh035','zh_TW','X150','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(314,'PLANE_MODEL','wrjxh036','zh_TW','X80','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(315,'PLANE_MODEL','wrjxh037','zh_TW','X100','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(316,'PLANE_MODEL','wrjxh038','zh_TW','大白鯊系列','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(317,'PLANE_MODEL','wrjxh039','zh_TW','DG-M20','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(318,'PLANE_MODEL','wrjxh040','zh_TW','DG-X03','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(319,'PLANE_MODEL','wrjxh041','zh_TW','X410','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(320,'PLANE_MODEL','wrjxh042','zh_TW','X402','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(321,'PLANE_MODEL','wrjxh043','zh_TW','DG-M15','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(322,'PLANE_MODEL','wrjxh044','zh_TW','DG-30','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(323,'PLANE_MODEL','wrjxh045','zh_TW','P30','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(324,'PLANE_MODEL','wrjxh046','zh_TW',' P20','2020-09-18 02:22:19','admin','2022-09-20 08:29:33','1',_binary '\0'),(325,'PLANE_SHAPE','xt001','zh_TW','旋翼','2020-09-18 02:22:19','admin','2024-09-06 02:38:03','89730635001757696',_binary '\0'),(326,'PLANE_SHAPE','xt002','zh_TW','固定翼','2020-09-18 02:22:19','admin','2022-01-20 01:16:07','123',_binary '\0'),(327,'PLANE_SHAPE','xt003','zh_TW','混合','2020-09-18 02:22:19','admin','2022-01-20 01:16:07','123',_binary '\0'),(328,'PLANE_SIZE','wrjcd001','zh_TW','微型','2020-09-18 02:22:19','admin','2021-09-22 07:20:03','70179580555558912',_binary '\0'),(329,'PLANE_SIZE','wrjcd002','zh_TW','輕型','2020-09-18 02:22:19','admin','2021-09-22 07:19:48','70179580555558912',_binary '\0'),(330,'PLANE_SIZE','wrjcd003','zh_TW','小型','2020-09-18 02:22:19','admin','2021-09-22 07:19:29','70179580555558912',_binary '\0'),(331,'PLANE_SIZE','wrjcd004','zh_TW','大型','2020-09-18 02:22:19','admin','2021-09-22 07:19:19','70179580555558912',_binary '\0'),(332,'PLANE_MAT','cl001','zh_TW','碳纤维','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(333,'PLANE_MAT','cl002','zh_TW','复合材料','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(334,'PLANE_MAT','cl003','zh_TW','凯夫拉','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(335,'PLANE_MAT','cl004','zh_TW','碳钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(336,'PLANE_MAT','cl005','zh_TW','航空铝','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(337,'PLANE_MAT','cl006','zh_TW','铝合金','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(338,'PLANE_MAT','cl007','zh_TW','不锈钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(339,'PLANE_MAT','cl008','zh_TW','普通钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(340,'PLANE_MAT','cl009','zh_TW','钢','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(341,'PLANE_MAT','cl010','zh_TW','铝','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(342,'PLANE_INF','wbjk001','zh_TW','USB','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(343,'PLANE_INF','wbjk002','zh_TW','HDMI','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(344,'PLANE_INF','wbjk003','zh_TW','串口','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(345,'PLANE_INF','wbjk004','zh_TW','电源','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(346,'PLANE_INF','wbjk005','zh_TW','光纤','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(347,'PLANE_INF','wbjk006','zh_TW','DC供电','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(348,'LOAD_CAM_MODEL','xh001','zh_TW','禅思 ZENMUSE Z30','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(349,'LOAD_CAM_MODEL','xh002','zh_TW','禅思 ZENMUSE XT','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(350,'LOAD_CAM_EXP_MODE','bg001','zh_TW','自動曝光','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(351,'LOAD_CAM_EXP_MODE','bg002','zh_TW','手動曝光','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(352,'LOAD_CAM_EXP_MODE','bg003','zh_TW','快門優先','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(353,'LOAD_CAM_EXP_MODE','bg004','zh_TW','光圈優先','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(354,'LOAD_CAM_WORK_MODE','gz001','zh_TW','拍照模式','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(355,'LOAD_CAM_WORK_MODE','gz002','zh_TW','錄像模式','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(356,'LOAD_CAM_WORK_MODE','gz003','zh_TW','回放模式','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(357,'LOAD_CAM_BALANCE','bp001','zh_TW','自動','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(358,'LOAD_CAM_BALANCE','bp002','zh_TW','晴天','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(359,'LOAD_CAM_BALANCE','bp003','zh_TW','陰天','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(360,'LOAD_CAM_BALANCE','bp004','zh_TW','白熾燈','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(361,'LOAD_CAM_BALANCE','bp005','zh_TW','手動','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(362,'LOAD_CAM_IMG_FMT','cc001','zh_TW','JPEG','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(363,'LOAD_CAM_IMG_FMT','cc002','zh_TW','R-JPEG','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(364,'LOAD_CAM_IMG_FMT','cc003','zh_TW','TIFF','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(365,'LOAD_CAM_IMG_SIZE','tx001','zh_TW','640×512','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(366,'LOAD_CAM_IMG_SIZE','tx002','zh_TW','336×256','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(367,'LOAD_CAM_CAM_MODE','pz001','zh_TW','單拍','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(368,'LOAD_CAM_CAM_MODE','pz002','zh_TW','連拍','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(369,'LOAD_CAM_CAM_MODE','pz003','zh_TW','定時拍','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(370,'LOAD_CAM_SHUT_SPEED','km001','zh_TW','1/30','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(371,'LOAD_CAM_SHUT_SPEED','km002','zh_TW','1/60','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(372,'LOAD_CAM_SHUT_SPEED','km003','zh_TW','1/125','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(373,'LOAD_CAM_SHUT_SPEED','km004','zh_TW','1/250','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(374,'LOAD_CAM_SHUT_SPEED','km005','zh_TW','1/500','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(375,'LOAD_CAM_SHUT_SPEED','km006','zh_TW','1/1000','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(376,'LOAD_CAM_SHUT_SPEED','km007','zh_TW','1/4000','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(377,'LOAD_CAM_SHUT_SPEED','km008','zh_TW','1/6000','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(378,'LOAD_CAM_VIDEO_FMT','sp001','zh_TW','MOV','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(379,'LOAD_CAM_VIDEO_FMT','sp002','zh_TW','MP4','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(380,'LOAD_CAM_VIDEO_DIS','fb001','zh_TW','720 x 480','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(381,'LOAD_SPK_MODEL','hhqxh001','zh_TW','悟1','2020-09-18 02:22:19','admin','2020-12-15 07:08:01','1',_binary '\0'),(382,'LOAD_SPK_MODEL','hhqxh002','zh_TW','M600 PRO','2020-09-18 02:22:19','admin','2020-12-15 07:08:18','1',_binary '\0'),(383,'LOAD_HNG_MODEL','jkxh001','zh_TW','A30','2020-09-18 02:22:19','admin','2020-12-15 07:06:37','1',_binary '\0'),(384,'LOAD_HNG_MODEL','jkxh002','zh_TW','G10','2020-09-18 02:22:19','admin','2020-12-15 07:06:51','1',_binary '\0'),(385,'LOAD_HNG_MODEL','jkxh003','zh_TW','V10','2020-09-18 02:22:19','admin','2020-12-15 07:07:18','1',_binary '\0'),(386,'HNG_TYPE','jklx001','zh_TW','固定式旋翼自动机场','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(387,'HNG_TYPE','jklx002','zh_TW','复合翼自动机场','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(388,'HNG_TYPE','jklx003','zh_TW','移动式自动机场','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(389,'PROT_LEVEL','dj001','zh_TW','IP54','2020-09-18 02:22:19','admin','2020-09-18 02:22:19','admin',_binary '\0'),(390,'DEV_MODEL','PLANE_MODEL','zh_TW','無人機','2020-09-18 02:22:19','admin','2023-10-11 06:11:00','123',_binary '\0'),(391,'DEV_MODEL','LOAD_CAM_MODEL','zh_TW','攝像頭','2020-09-18 02:22:19','admin','2023-10-11 06:11:00','123',_binary '\0'),(392,'DEV_MODEL','LOAD_SPK_MODEL','zh_TW','喊話器','2020-09-18 02:22:19','admin','2023-10-11 06:11:00','123',_binary '\0'),(393,'DEV_MODEL','LOAD_HNG_MODEL','zh_TW','機庫','2020-09-18 02:22:19','admin','2023-10-11 06:10:59','123',_binary '\0'),(394,'USE_STAT','CAN_USE','zh_CN','可用','2020-09-18 02:22:33','system','2023-06-27 07:36:21','188243415207510016',_binary '\0'),(395,'USE_STAT','FORBIDDEN','zh_CN','禁用','2020-09-18 02:22:33','system','2021-09-22 07:31:49','70179580555558912',_binary '\0'),(396,'USE_STAT','MAINTAIN','zh_CN','保养','2020-09-18 02:22:33','system','2021-09-22 07:31:29','70179580555558912',_binary '\0'),(397,'USE_STAT','ABANDONMENT','zh_CN','报废','2020-09-18 02:22:33','system','2023-07-07 07:50:53','188243415207510016',_binary '\0'),(398,'ONLINE_STAT','ONLINE','zh_CN','在线','2020-09-18 02:22:34','system','2021-10-25 07:48:32','1',_binary '\0'),(399,'ONLINE_STAT','OFFLINE','zh_CN','离线','2020-09-18 02:22:34','system','2021-10-25 07:48:23','1',_binary '\0'),(400,'LEN','MUTIL_SELECT_COUNT','zh_CN','20','2020-09-18 02:22:35','system','2021-10-25 07:50:43','1',_binary '\0'),(401,'VIDEO_LINE','0','zh_CN','自定义','2020-09-18 02:22:35','system','2020-11-13 09:41:03','1',_binary '\0'),(402,'VIDEO_LINE','1','zh_CN','线路1','2020-09-18 02:22:35','system','2021-09-22 07:08:25','70179580555558912',_binary '\0'),(403,'VIDEO_LINE','2','zh_CN','线路2','2020-09-18 02:22:35','system','2021-09-22 07:08:14','70179580555558912',_binary '\0'),(404,'DEV_ACTION_MODEL','action001','zh_CN','拍照','2020-09-18 02:58:13','1','2020-11-16 07:29:10',NULL,_binary ''),(405,'DEV_ACTION_MODEL','action001','zh_TW','拍照','2020-09-18 02:58:13','1','2020-11-16 07:29:10',NULL,_binary ''),(406,'DEV_ACTION_MODEL','action001','en_US','photograph','2020-09-18 02:58:13','1','2020-11-16 07:29:10',NULL,_binary ''),(407,'DEV_ACTION_MODEL','action002','zh_CN','开始录像','2020-09-18 02:58:43','1','2020-11-16 07:29:08',NULL,_binary ''),(408,'DEV_ACTION_MODEL','action002','zh_TW','开始录像','2020-09-18 02:58:43','1','2020-11-16 07:29:08',NULL,_binary ''),(409,'DEV_ACTION_MODEL','action002','en_US','start record','2020-09-18 02:58:43','1','2020-11-16 07:29:08',NULL,_binary ''),(410,'DEV_ACTION_MODEL','action003','zh_CN','停止录像','2020-09-18 02:59:01','1','2020-11-16 07:29:06',NULL,_binary ''),(411,'DEV_ACTION_MODEL','action003','zh_TW','停止录像','2020-09-18 02:59:01','1','2020-11-16 07:29:06',NULL,_binary ''),(412,'DEV_ACTION_MODEL','action003','en_US','stop record','2020-09-18 02:59:01','1','2020-11-16 07:29:06',NULL,_binary ''),(413,'DEV_ACTION_MODEL','actio004','zh_CN','云台转向','2020-09-18 02:59:25','1','2020-11-16 07:29:04',NULL,_binary ''),(414,'DEV_ACTION_MODEL','actio004','zh_TW','云台转向','2020-09-18 02:59:25','1','2020-11-16 07:29:04',NULL,_binary ''),(415,'DEV_ACTION_MODEL','actio004','en_US','turn','2020-09-18 02:59:25','1','2020-11-16 07:29:04',NULL,_binary ''),(416,'DEV_ACTION_MODEL','action005','zh_CN','悬停','2020-09-18 03:00:00','1','2020-11-16 07:29:02',NULL,_binary ''),(417,'DEV_ACTION_MODEL','action005','zh_TW','悬停','2020-09-18 03:00:00','1','2020-11-16 07:29:02',NULL,_binary ''),(418,'DEV_ACTION_MODEL','action005','en_US','stop','2020-09-18 03:00:00','1','2020-11-16 07:29:02',NULL,_binary ''),(419,'DEV_ACTION_MODEL','action006','zh_CN','偏航角','2020-09-18 03:00:24','1','2020-11-16 07:29:00',NULL,_binary ''),(420,'DEV_ACTION_MODEL','action006','zh_TW','偏航角','2020-09-18 03:00:24','1','2020-11-16 07:29:00',NULL,_binary ''),(421,'DEV_ACTION_MODEL','action006','en_US','偏航角','2020-09-18 03:00:24','1','2020-11-16 07:29:00',NULL,_binary ''),(422,'DEV_ACTION_MODEL','action007','zh_CN','时长','2020-09-18 03:00:51','1','2020-11-16 07:29:02',NULL,_binary ''),(423,'DEV_ACTION_MODEL','action007','zh_TW','时长','2020-09-18 03:00:51','1','2020-11-16 07:29:02',NULL,_binary ''),(424,'DEV_ACTION_MODEL','action007','en_US','time','2020-09-18 03:00:51','1','2020-11-16 07:29:02',NULL,_binary ''),(425,'DEV_ACTION_MODEL','action008','zh_CN','角度','2020-09-18 03:01:15','1','2020-11-16 07:29:00',NULL,_binary ''),(426,'DEV_ACTION_MODEL','action008','zh_TW','角度','2020-09-18 03:01:15','1','2020-11-16 07:29:00',NULL,_binary ''),(427,'DEV_ACTION_MODEL','action008','en_US','角度','2020-09-18 03:01:15','1','2020-11-16 07:29:00',NULL,_binary ''),(428,'DEV_ACTION_MODEL','action009','zh_CN','照片格式','2020-09-18 03:01:42','1','2020-11-16 07:29:10',NULL,_binary ''),(429,'DEV_ACTION_MODEL','action009','zh_TW','照片格式','2020-09-18 03:01:42','1','2020-11-16 07:29:10',NULL,_binary ''),(430,'DEV_ACTION_MODEL','action009','en_US','img format','2020-09-18 03:01:42','1','2020-11-16 07:29:10',NULL,_binary ''),(431,'DEV_ACTION_MODEL','action010','zh_CN','视频格式','2020-09-18 03:02:09','1','2020-11-16 07:29:08',NULL,_binary ''),(432,'DEV_ACTION_MODEL','action010','zh_TW','视频格式','2020-09-18 03:02:09','1','2020-11-16 07:29:08',NULL,_binary ''),(433,'DEV_ACTION_MODEL','action010','en_US','video format','2020-09-18 03:02:09','1','2020-11-16 07:29:08',NULL,_binary ''),(434,'DEV_ACTION_MODEL','action011','zh_CN','分辨率','2020-09-18 03:02:31','1','2020-11-16 07:29:08',NULL,_binary ''),(435,'DEV_ACTION_MODEL','action011','zh_TW','分辨率','2020-09-18 03:02:31','1','2020-11-16 07:29:08',NULL,_binary ''),(436,'DEV_ACTION_MODEL','action011','en_US','display','2020-09-18 03:02:31','1','2020-11-16 07:29:08',NULL,_binary ''),(437,'DEV_ACTION_MODEL','action012','zh_CN','俯仰','2020-09-18 03:02:46','1','2020-11-16 07:29:04',NULL,_binary ''),(438,'DEV_ACTION_MODEL','action012','zh_TW','俯仰','2020-09-18 03:02:46','1','2020-11-16 07:29:04',NULL,_binary ''),(439,'DEV_ACTION_MODEL','action012','en_US','俯仰','2020-09-18 03:02:46','1','2020-11-16 07:29:04',NULL,_binary ''),(440,'DEV_ACTION_MODEL','action013','zh_CN','平移','2020-09-18 03:02:59','1','2020-11-16 07:29:04',NULL,_binary ''),(441,'DEV_ACTION_MODEL','action013','zh_TW','平移','2020-09-18 03:02:59','1','2020-11-16 07:29:04',NULL,_binary ''),(442,'DEV_ACTION_MODEL','action013','en_US','平移','2020-09-18 03:02:59','1','2020-11-16 07:29:04',NULL,_binary ''),(443,'DEV_ACTION_MODEL','action014','zh_CN','横滚','2020-09-18 03:03:12','1','2020-11-16 07:29:04',NULL,_binary ''),(444,'DEV_ACTION_MODEL','action014','zh_TW','横滚','2020-09-18 03:03:12','1','2020-11-16 07:29:04',NULL,_binary ''),(445,'DEV_ACTION_MODEL','action014','en_US','横滚','2020-09-18 03:03:12','1','2020-11-16 07:29:04',NULL,_binary ''),(446,'APPR_STAT','wait','zh_CN','待审批','2020-10-10 09:26:42','system','2021-09-22 07:02:10','70179580555558912',_binary '\0'),(447,'APPR_STAT','pass','zh_CN','已通过','2020-10-10 09:26:42','system','2021-09-22 07:02:00','70179580555558912',_binary '\0'),(448,'APPR_STAT','expired','zh_CN','失效','2020-10-10 09:26:42','system','2021-09-22 07:01:49','70179580555558912',_binary '\0'),(449,'APPR_STAT','ing','zh_CN','审批中','2020-10-10 09:26:42','system','2021-09-22 07:01:35','70179580555558912',_binary '\0'),(450,'APPR_STAT','refuse','zh_CN','已拒绝','2020-10-10 09:26:42','system','2021-09-22 07:01:13','70179580555558912',_binary '\0'),(451,'APPR_STAT','reject','zh_CN','被驳回','2020-10-10 09:26:42','system','2021-09-22 07:01:01','70179580555558912',_binary '\0'),(452,'AREA_TYPE','temp','zh_CN','临时飞行区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(453,'AREA_TYPE','limit','zh_CN','限制区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(454,'AREA_TYPE','forbidden','zh_CN','禁飞区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(455,'AREA_TYPE','clear','zh_CN','净空区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(456,'AREA_TYPE','danger','zh_CN','危险区','2020-10-10 09:26:42','system','2022-06-10 03:51:15','123',_binary '\0'),(457,'FLY_TASK','testfly','zh_CN','适航试飞','2020-10-10 09:26:42','system','2022-01-20 01:15:09','123',_binary '\0'),(458,'FLY_TASK','power','zh_CN','电力巡检','2020-10-10 09:26:42','system','2022-01-20 01:15:09','123',_binary '\0'),(459,'FLY_TASK','show','zh_CN','飞行表演','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(460,'FLY_TASK','fire','zh_CN','高层消防','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(461,'FLY_TASK','protection','zh_CN','农林植保','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(462,'FLY_TASK','poppy','zh_CN','罂粟巡查','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(463,'FLY_TASK','other','zh_CN','其它','2020-10-10 09:26:42','system','2022-01-20 01:15:08','123',_binary '\0'),(464,'LOAD_CAM_MODEL','test','zh_CN','test','2020-10-10 10:12:51','1','2020-10-10 10:12:55',NULL,_binary ''),(465,'LOAD_CAM_MODEL','test','zh_TW','test','2020-10-10 10:12:51','1','2020-10-10 10:12:55',NULL,_binary ''),(466,'LOAD_CAM_MODEL','test','en_US','test','2020-10-10 10:12:51','1','2020-10-10 10:12:55',NULL,_binary ''),(863,'CAMERA_SHUTTER','0','zh_CN','1/8000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(864,'CAMERA_SHUTTER','1','zh_CN','1/6400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(865,'CAMERA_SHUTTER','2','zh_CN','1/6000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(866,'CAMERA_SHUTTER','3','zh_CN','1/5000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(867,'CAMERA_SHUTTER','4','zh_CN','1/4000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(868,'CAMERA_SHUTTER','5','zh_CN','1/3200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(869,'CAMERA_SHUTTER','6','zh_CN','1/3000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(870,'CAMERA_SHUTTER','7','zh_CN','1/2500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(871,'CAMERA_SHUTTER','8','zh_CN','1/2000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(872,'CAMERA_SHUTTER','9','zh_CN','1/1600','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(873,'CAMERA_SHUTTER','10','zh_CN','1/1500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(874,'CAMERA_SHUTTER','11','zh_CN','1/1250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(875,'CAMERA_SHUTTER','12','zh_CN','1/1000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(876,'CAMERA_SHUTTER','13','zh_CN','1/800','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(877,'CAMERA_SHUTTER','14','zh_CN','1/725','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(878,'CAMERA_SHUTTER','15','zh_CN','1/640','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(879,'CAMERA_SHUTTER','16','zh_CN','1/500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(880,'CAMERA_SHUTTER','17','zh_CN','1/400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(881,'CAMERA_SHUTTER','18','zh_CN','1/350','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(882,'CAMERA_SHUTTER','19','zh_CN','1/320','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(883,'CAMERA_SHUTTER','20','zh_CN','1/250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(884,'CAMERA_SHUTTER','21','zh_CN','1/240','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(885,'CAMERA_SHUTTER','22','zh_CN','1/200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(886,'CAMERA_SHUTTER','23','zh_CN','1/180','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(887,'CAMERA_SHUTTER','24','zh_CN','1/160','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(888,'CAMERA_SHUTTER','25','zh_CN','1/125','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(889,'CAMERA_SHUTTER','26','zh_CN','1/120','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(890,'CAMERA_SHUTTER','27','zh_CN','1/100','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(891,'CAMERA_SHUTTER','28','zh_CN','1/90 ','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(892,'CAMERA_SHUTTER','29','zh_CN','1/80','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(893,'CAMERA_SHUTTER','30','zh_CN','1/60','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(894,'CAMERA_SHUTTER','31','zh_CN','1/50','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(895,'CAMERA_SHUTTER','32','zh_CN','1/40','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(896,'CAMERA_SHUTTER','33','zh_CN','1/30','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(897,'CAMERA_SHUTTER','34','zh_CN','1/25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(898,'CAMERA_SHUTTER','35','zh_CN','1/20','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(899,'CAMERA_SHUTTER','36','zh_CN','1/15','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(900,'CAMERA_SHUTTER','37','zh_CN','1/12.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(901,'CAMERA_SHUTTER','38','zh_CN','1/10','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(902,'CAMERA_SHUTTER','39','zh_CN','1/8','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(903,'CAMERA_SHUTTER','40','zh_CN','1/6.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(904,'CAMERA_SHUTTER','41','zh_CN','1/5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(905,'CAMERA_SHUTTER','42','zh_CN','1/4','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(906,'CAMERA_SHUTTER','43','zh_CN','1/3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(907,'CAMERA_SHUTTER','44','zh_CN','1/2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(908,'CAMERA_SHUTTER','45','zh_CN','1/2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(909,'CAMERA_SHUTTER','46','zh_CN','1/1.67','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(910,'CAMERA_SHUTTER','47','zh_CN','1/1.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(911,'CAMERA_SHUTTER','48','zh_CN','1.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(912,'CAMERA_SHUTTER','49','zh_CN','1.3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(913,'CAMERA_SHUTTER','50','zh_CN','1.6','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(914,'CAMERA_SHUTTER','51','zh_CN','2.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(915,'CAMERA_SHUTTER','52','zh_CN','2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(916,'CAMERA_SHUTTER','53','zh_CN','3.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(917,'CAMERA_SHUTTER','54','zh_CN','3.2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(918,'CAMERA_SHUTTER','55','zh_CN','4.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(919,'CAMERA_SHUTTER','56','zh_CN','5.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(920,'CAMERA_SHUTTER','57','zh_CN','6.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(921,'CAMERA_SHUTTER','58','zh_CN','7.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(922,'CAMERA_SHUTTER','59','zh_CN','8.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(923,'CAMERA_SHUTTER','60','zh_CN','9.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(924,'CAMERA_SHUTTER','61','zh_CN','10.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(925,'CAMERA_SHUTTER','62','zh_CN','13.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(926,'CAMERA_SHUTTER','63','zh_CN','15.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(927,'CAMERA_SHUTTER','64','zh_CN','20.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(928,'CAMERA_SHUTTER','65','zh_CN','25.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(929,'CAMERA_SHUTTER','66','zh_CN','30.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(930,'CAMERA_SHUTTER','0','en_US','1/8000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(931,'CAMERA_SHUTTER','1','en_US','1/6400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(932,'CAMERA_SHUTTER','2','en_US','1/6000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(933,'CAMERA_SHUTTER','3','en_US','1/5000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(934,'CAMERA_SHUTTER','4','en_US','1/4000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(935,'CAMERA_SHUTTER','5','en_US','1/3200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(936,'CAMERA_SHUTTER','6','en_US','1/3000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(937,'CAMERA_SHUTTER','7','en_US','1/2500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(938,'CAMERA_SHUTTER','8','en_US','1/2000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(939,'CAMERA_SHUTTER','9','en_US','1/1600','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(940,'CAMERA_SHUTTER','10','en_US','1/1500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(941,'CAMERA_SHUTTER','11','en_US','1/1250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(942,'CAMERA_SHUTTER','12','en_US','1/1000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(943,'CAMERA_SHUTTER','13','en_US','1/800','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(944,'CAMERA_SHUTTER','14','en_US','1/725','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(945,'CAMERA_SHUTTER','15','en_US','1/640','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(946,'CAMERA_SHUTTER','16','en_US','1/500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(947,'CAMERA_SHUTTER','17','en_US','1/400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(948,'CAMERA_SHUTTER','18','en_US','1/350','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(949,'CAMERA_SHUTTER','19','en_US','1/320','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(950,'CAMERA_SHUTTER','20','en_US','1/250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(951,'CAMERA_SHUTTER','21','en_US','1/240','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(952,'CAMERA_SHUTTER','22','en_US','1/200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(953,'CAMERA_SHUTTER','23','en_US','1/180','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(954,'CAMERA_SHUTTER','24','en_US','1/160','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(955,'CAMERA_SHUTTER','25','en_US','1/125','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(956,'CAMERA_SHUTTER','26','en_US','1/120','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(957,'CAMERA_SHUTTER','27','en_US','1/100','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(958,'CAMERA_SHUTTER','28','en_US','1/90 ','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(959,'CAMERA_SHUTTER','29','en_US','1/80','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(960,'CAMERA_SHUTTER','30','en_US','1/60','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(961,'CAMERA_SHUTTER','31','en_US','1/50','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(962,'CAMERA_SHUTTER','32','en_US','1/40','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(963,'CAMERA_SHUTTER','33','en_US','1/30','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(964,'CAMERA_SHUTTER','34','en_US','1/25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(965,'CAMERA_SHUTTER','35','en_US','1/20','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(966,'CAMERA_SHUTTER','36','en_US','1/15','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(967,'CAMERA_SHUTTER','37','en_US','1/12.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(968,'CAMERA_SHUTTER','38','en_US','1/10','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(969,'CAMERA_SHUTTER','39','en_US','1/8','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(970,'CAMERA_SHUTTER','40','en_US','1/6.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(971,'CAMERA_SHUTTER','41','en_US','1/5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(972,'CAMERA_SHUTTER','42','en_US','1/4','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(973,'CAMERA_SHUTTER','43','en_US','1/3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(974,'CAMERA_SHUTTER','44','en_US','1/2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(975,'CAMERA_SHUTTER','45','en_US','1/2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(976,'CAMERA_SHUTTER','46','en_US','1/1.67','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(977,'CAMERA_SHUTTER','47','en_US','1/1.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(978,'CAMERA_SHUTTER','48','en_US','1.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(979,'CAMERA_SHUTTER','49','en_US','1.3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(980,'CAMERA_SHUTTER','50','en_US','1.6','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(981,'CAMERA_SHUTTER','51','en_US','2.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(982,'CAMERA_SHUTTER','52','en_US','2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(983,'CAMERA_SHUTTER','53','en_US','3.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(984,'CAMERA_SHUTTER','54','en_US','3.2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(985,'CAMERA_SHUTTER','55','en_US','4.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(986,'CAMERA_SHUTTER','56','en_US','5.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(987,'CAMERA_SHUTTER','57','en_US','6.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(988,'CAMERA_SHUTTER','58','en_US','7.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(989,'CAMERA_SHUTTER','59','en_US','8.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(990,'CAMERA_SHUTTER','60','en_US','9.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(991,'CAMERA_SHUTTER','61','en_US','10.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(992,'CAMERA_SHUTTER','62','en_US','13.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(993,'CAMERA_SHUTTER','63','en_US','15.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(994,'CAMERA_SHUTTER','64','en_US','20.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(995,'CAMERA_SHUTTER','65','en_US','25.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(996,'CAMERA_SHUTTER','66','en_US','30.0','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(997,'CAMERA_SHUTTER','0','zh_TW','1/8000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(998,'CAMERA_SHUTTER','1','zh_TW','1/6400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(999,'CAMERA_SHUTTER','2','zh_TW','1/6000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1000,'CAMERA_SHUTTER','3','zh_TW','1/5000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1001,'CAMERA_SHUTTER','4','zh_TW','1/4000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1002,'CAMERA_SHUTTER','5','zh_TW','1/3200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1003,'CAMERA_SHUTTER','6','zh_TW','1/3000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1004,'CAMERA_SHUTTER','7','zh_TW','1/2500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1005,'CAMERA_SHUTTER','8','zh_TW','1/2000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1006,'CAMERA_SHUTTER','9','zh_TW','1/1600','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1007,'CAMERA_SHUTTER','10','zh_TW','1/1500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1008,'CAMERA_SHUTTER','11','zh_TW','1/1250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1009,'CAMERA_SHUTTER','12','zh_TW','1/1000','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1010,'CAMERA_SHUTTER','13','zh_TW','1/800','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1011,'CAMERA_SHUTTER','14','zh_TW','1/725','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1012,'CAMERA_SHUTTER','15','zh_TW','1/640','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1013,'CAMERA_SHUTTER','16','zh_TW','1/500','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1014,'CAMERA_SHUTTER','17','zh_TW','1/400','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1015,'CAMERA_SHUTTER','18','zh_TW','1/350','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1016,'CAMERA_SHUTTER','19','zh_TW','1/320','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1017,'CAMERA_SHUTTER','20','zh_TW','1/250','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1018,'CAMERA_SHUTTER','21','zh_TW','1/240','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1019,'CAMERA_SHUTTER','22','zh_TW','1/200','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1020,'CAMERA_SHUTTER','23','zh_TW','1/180','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1021,'CAMERA_SHUTTER','24','zh_TW','1/160','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1022,'CAMERA_SHUTTER','25','zh_TW','1/125','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1023,'CAMERA_SHUTTER','26','zh_TW','1/120','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1024,'CAMERA_SHUTTER','27','zh_TW','1/100','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1025,'CAMERA_SHUTTER','28','zh_TW','1/90 ','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1026,'CAMERA_SHUTTER','29','zh_TW','1/80','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1027,'CAMERA_SHUTTER','30','zh_TW','1/60','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1028,'CAMERA_SHUTTER','31','zh_TW','1/50','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1029,'CAMERA_SHUTTER','32','zh_TW','1/40','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1030,'CAMERA_SHUTTER','33','zh_TW','1/30','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1031,'CAMERA_SHUTTER','34','zh_TW','1/25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1032,'CAMERA_SHUTTER','35','zh_TW','1/20','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1033,'CAMERA_SHUTTER','36','zh_TW','1/15','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1034,'CAMERA_SHUTTER','37','zh_TW','1/12.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1035,'CAMERA_SHUTTER','38','zh_TW','1/10','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1036,'CAMERA_SHUTTER','39','zh_TW','1/8','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1037,'CAMERA_SHUTTER','40','zh_TW','1/6.25','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1038,'CAMERA_SHUTTER','41','zh_TW','1/5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1039,'CAMERA_SHUTTER','42','zh_TW','1/4','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1040,'CAMERA_SHUTTER','43','zh_TW','1/3','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1041,'CAMERA_SHUTTER','44','zh_TW','1/2.5','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1042,'CAMERA_SHUTTER','45','zh_TW','1/2','2020-10-12 01:29:12','system','2020-10-12 01:29:12','system',_binary '\0'),(1043,'CAMERA_SHUTTER','46','zh_TW','1/1.67','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1044,'CAMERA_SHUTTER','47','zh_TW','1/1.25','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1045,'CAMERA_SHUTTER','48','zh_TW','1.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1046,'CAMERA_SHUTTER','49','zh_TW','1.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1047,'CAMERA_SHUTTER','50','zh_TW','1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1048,'CAMERA_SHUTTER','51','zh_TW','2.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1049,'CAMERA_SHUTTER','52','zh_TW','2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1050,'CAMERA_SHUTTER','53','zh_TW','3.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1051,'CAMERA_SHUTTER','54','zh_TW','3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1052,'CAMERA_SHUTTER','55','zh_TW','4.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1053,'CAMERA_SHUTTER','56','zh_TW','5.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1054,'CAMERA_SHUTTER','57','zh_TW','6.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1055,'CAMERA_SHUTTER','58','zh_TW','7.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1056,'CAMERA_SHUTTER','59','zh_TW','8.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1057,'CAMERA_SHUTTER','60','zh_TW','9.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1058,'CAMERA_SHUTTER','61','zh_TW','10.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1059,'CAMERA_SHUTTER','62','zh_TW','13.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1060,'CAMERA_SHUTTER','63','zh_TW','15.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1061,'CAMERA_SHUTTER','64','zh_TW','20.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1062,'CAMERA_SHUTTER','65','zh_TW','25.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1063,'CAMERA_SHUTTER','66','zh_TW','30.0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1064,'CAMERA_APERTURE','160','zh_CN','f/1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1065,'CAMERA_APERTURE','170','zh_CN','f/1.7','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1066,'CAMERA_APERTURE','180','zh_CN','f/1.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1067,'CAMERA_APERTURE','200','zh_CN','f/2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1068,'CAMERA_APERTURE','220','zh_CN','f/2.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1069,'CAMERA_APERTURE','240','zh_CN','f/2.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1070,'CAMERA_APERTURE','250','zh_CN','f/2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1071,'CAMERA_APERTURE','260','zh_CN','f/2.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1072,'CAMERA_APERTURE','280','zh_CN','f/2.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1073,'CAMERA_APERTURE','320','zh_CN','f/3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1074,'CAMERA_APERTURE','340','zh_CN','f/3.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1075,'CAMERA_APERTURE','350','zh_CN','f/3.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1076,'CAMERA_APERTURE','400','zh_CN','f/4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1077,'CAMERA_APERTURE','450','zh_CN','f/4.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1078,'CAMERA_APERTURE','480','zh_CN','f/4.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1079,'CAMERA_APERTURE','500','zh_CN','f/5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1080,'CAMERA_APERTURE','560','zh_CN','f/5.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1081,'CAMERA_APERTURE','630','zh_CN','f/6.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1082,'CAMERA_APERTURE','680','zh_CN','f/6.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1083,'CAMERA_APERTURE','710','zh_CN','f/7.1','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1084,'CAMERA_APERTURE','800','zh_CN','f/8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1085,'CAMERA_APERTURE','900','zh_CN','f/9','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1086,'CAMERA_APERTURE','960','zh_CN','f/9.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1087,'CAMERA_APERTURE','1000','zh_CN','f/10','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1088,'CAMERA_APERTURE','1100','zh_CN','f/11','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1089,'CAMERA_APERTURE','1300','zh_CN','f/13','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1090,'CAMERA_APERTURE','1400','zh_CN','f/14','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1091,'CAMERA_APERTURE','1600','zh_CN','f/16','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1092,'CAMERA_APERTURE','1800','zh_CN','f/18','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1093,'CAMERA_APERTURE','1900','zh_CN','f/19','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1094,'CAMERA_APERTURE','2000','zh_CN','f/20','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1095,'CAMERA_APERTURE','2200','zh_CN','f/22','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1096,'CAMERA_APERTURE','160','en_US','f/1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1097,'CAMERA_APERTURE','170','en_US','f/1.7','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1098,'CAMERA_APERTURE','180','en_US','f/1.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1099,'CAMERA_APERTURE','200','en_US','f/2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1100,'CAMERA_APERTURE','220','en_US','f/2.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1101,'CAMERA_APERTURE','240','en_US','f/2.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1102,'CAMERA_APERTURE','250','en_US','f/2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1103,'CAMERA_APERTURE','260','en_US','f/2.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1104,'CAMERA_APERTURE','280','en_US','f/2.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1105,'CAMERA_APERTURE','320','en_US','f/3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1106,'CAMERA_APERTURE','340','en_US','f/3.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1107,'CAMERA_APERTURE','350','en_US','f/3.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1108,'CAMERA_APERTURE','400','en_US','f/4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1109,'CAMERA_APERTURE','450','en_US','f/4.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1110,'CAMERA_APERTURE','480','en_US','f/4.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1111,'CAMERA_APERTURE','500','en_US','f/5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1112,'CAMERA_APERTURE','560','en_US','f/5.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1113,'CAMERA_APERTURE','630','en_US','f/6.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1114,'CAMERA_APERTURE','680','en_US','f/6.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1115,'CAMERA_APERTURE','710','en_US','f/7.1','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1116,'CAMERA_APERTURE','800','en_US','f/8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1117,'CAMERA_APERTURE','900','en_US','f/9','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1118,'CAMERA_APERTURE','960','en_US','f/9.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1119,'CAMERA_APERTURE','1000','en_US','f/10','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1120,'CAMERA_APERTURE','1100','en_US','f/11','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1121,'CAMERA_APERTURE','1300','en_US','f/13','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1122,'CAMERA_APERTURE','1400','en_US','f/14','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1123,'CAMERA_APERTURE','1600','en_US','f/16','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1124,'CAMERA_APERTURE','1800','en_US','f/18','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1125,'CAMERA_APERTURE','1900','en_US','f/19','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1126,'CAMERA_APERTURE','2000','en_US','f/20','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1127,'CAMERA_APERTURE','2200','en_US','f/22','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1128,'CAMERA_APERTURE','160','zh_TW','f/1.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1129,'CAMERA_APERTURE','170','zh_TW','f/1.7','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1130,'CAMERA_APERTURE','180','zh_TW','f/1.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1131,'CAMERA_APERTURE','200','zh_TW','f/2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1132,'CAMERA_APERTURE','220','zh_TW','f/2.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1133,'CAMERA_APERTURE','240','zh_TW','f/2.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1134,'CAMERA_APERTURE','250','zh_TW','f/2.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1135,'CAMERA_APERTURE','260','zh_TW','f/2.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1136,'CAMERA_APERTURE','280','zh_TW','f/2.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1137,'CAMERA_APERTURE','320','zh_TW','f/3.2','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1138,'CAMERA_APERTURE','340','zh_TW','f/3.4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1139,'CAMERA_APERTURE','350','zh_TW','f/3.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1140,'CAMERA_APERTURE','400','zh_TW','f/4','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1141,'CAMERA_APERTURE','450','zh_TW','f/4.5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1142,'CAMERA_APERTURE','480','zh_TW','f/4.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1143,'CAMERA_APERTURE','500','zh_TW','f/5','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1144,'CAMERA_APERTURE','560','zh_TW','f/5.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1145,'CAMERA_APERTURE','630','zh_TW','f/6.3','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1146,'CAMERA_APERTURE','680','zh_TW','f/6.8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1147,'CAMERA_APERTURE','710','zh_TW','f/7.1','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1148,'CAMERA_APERTURE','800','zh_TW','f/8','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1149,'CAMERA_APERTURE','900','zh_TW','f/9','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1150,'CAMERA_APERTURE','960','zh_TW','f/9.6','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1151,'CAMERA_APERTURE','1000','zh_TW','f/10','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1152,'CAMERA_APERTURE','1100','zh_TW','f/11','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1153,'CAMERA_APERTURE','1300','zh_TW','f/13','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1154,'CAMERA_APERTURE','1400','zh_TW','f/14','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1155,'CAMERA_APERTURE','1600','zh_TW','f/16','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1156,'CAMERA_APERTURE','1800','zh_TW','f/18','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1157,'CAMERA_APERTURE','1900','zh_TW','f/19','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1158,'CAMERA_APERTURE','2000','zh_TW','f/20','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1159,'CAMERA_APERTURE','2200','zh_TW','f/22','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1160,'CAMERA_EV','1','en_US','-5.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1161,'CAMERA_EV','2','en_US','-4.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1162,'CAMERA_EV','3','en_US','-4.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1163,'CAMERA_EV','4','en_US','-4.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1164,'CAMERA_EV','5','en_US','-3.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1165,'CAMERA_EV','6','en_US','-3.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1166,'CAMERA_EV','7','en_US','-3.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1167,'CAMERA_EV','8','en_US','-2.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1168,'CAMERA_EV','9','en_US','-2.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1169,'CAMERA_EV','10','en_US','-2.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1170,'CAMERA_EV','11','en_US','-1.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1171,'CAMERA_EV','12','en_US','-1.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1172,'CAMERA_EV','13','en_US','-1.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1173,'CAMERA_EV','14','en_US','-0.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1174,'CAMERA_EV','15','en_US','-0.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1175,'CAMERA_EV','16','en_US','0.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1176,'CAMERA_EV','17','en_US','0.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1177,'CAMERA_EV','18','en_US','0.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1178,'CAMERA_EV','19','en_US','1.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1179,'CAMERA_EV','20','en_US','1.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1180,'CAMERA_EV','21','en_US','1.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1181,'CAMERA_EV','22','en_US','2.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1182,'CAMERA_EV','23','en_US','2.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1183,'CAMERA_EV','24','en_US','2.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1184,'CAMERA_EV','25','en_US','3.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1185,'CAMERA_EV','26','en_US','3.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1186,'CAMERA_EV','27','en_US','3.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1187,'CAMERA_EV','28','en_US','4.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1188,'CAMERA_EV','29','en_US','4.3ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1189,'CAMERA_EV','30','en_US','4.7ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1190,'CAMERA_EV','31','en_US','5.0ev ','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1191,'CAMERA_EV','1','zh_CN','-5.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1192,'CAMERA_EV','2','zh_CN','-4.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1193,'CAMERA_EV','3','zh_CN','-4.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1194,'CAMERA_EV','4','zh_CN','-4.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1195,'CAMERA_EV','5','zh_CN','-3.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1196,'CAMERA_EV','6','zh_CN','-3.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1197,'CAMERA_EV','7','zh_CN','-3.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1198,'CAMERA_EV','8','zh_CN','-2.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1199,'CAMERA_EV','9','zh_CN','-2.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1200,'CAMERA_EV','10','zh_CN','-2.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1201,'CAMERA_EV','11','zh_CN','-1.7ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1202,'CAMERA_EV','12','zh_CN','-1.3ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1203,'CAMERA_EV','13','zh_CN','-1.0ev','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system',_binary '\0'),(1204,'CAMERA_EV','14','zh_CN','-0.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1205,'CAMERA_EV','15','zh_CN','-0.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1206,'CAMERA_EV','16','zh_CN','0.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1207,'CAMERA_EV','17','zh_CN','0.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1208,'CAMERA_EV','18','zh_CN','0.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1209,'CAMERA_EV','19','zh_CN','1.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1210,'CAMERA_EV','20','zh_CN','1.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1211,'CAMERA_EV','21','zh_CN','1.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1212,'CAMERA_EV','22','zh_CN','2.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1213,'CAMERA_EV','23','zh_CN','2.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1214,'CAMERA_EV','24','zh_CN','2.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1215,'CAMERA_EV','25','zh_CN','3.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1216,'CAMERA_EV','26','zh_CN','3.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1217,'CAMERA_EV','27','zh_CN','3.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1218,'CAMERA_EV','28','zh_CN','4.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1219,'CAMERA_EV','29','zh_CN','4.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1220,'CAMERA_EV','30','zh_CN','4.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1221,'CAMERA_EV','31','zh_CN','5.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1222,'CAMERA_EV','1','zh_TW','-5.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1223,'CAMERA_EV','2','zh_TW','-4.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1224,'CAMERA_EV','3','zh_TW','-4.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1225,'CAMERA_EV','4','zh_TW','-4.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1226,'CAMERA_EV','5','zh_TW','-3.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1227,'CAMERA_EV','6','zh_TW','-3.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1228,'CAMERA_EV','7','zh_TW','-3.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1229,'CAMERA_EV','8','zh_TW','-2.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1230,'CAMERA_EV','9','zh_TW','-2.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1231,'CAMERA_EV','10','zh_TW','-2.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1232,'CAMERA_EV','11','zh_TW','-1.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1233,'CAMERA_EV','12','zh_TW','-1.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1234,'CAMERA_EV','13','zh_TW','-1.0ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1235,'CAMERA_EV','14','zh_TW','-0.7ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1236,'CAMERA_EV','15','zh_TW','-0.3ev','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1237,'CAMERA_EV','16','zh_TW','0.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1238,'CAMERA_EV','17','zh_TW','0.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1239,'CAMERA_EV','18','zh_TW','0.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1240,'CAMERA_EV','19','zh_TW','1.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1241,'CAMERA_EV','20','zh_TW','1.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1242,'CAMERA_EV','21','zh_TW','1.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1243,'CAMERA_EV','22','zh_TW','2.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1244,'CAMERA_EV','23','zh_TW','2.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1245,'CAMERA_EV','24','zh_TW','2.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1246,'CAMERA_EV','25','zh_TW','3.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1247,'CAMERA_EV','26','zh_TW','3.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1248,'CAMERA_EV','27','zh_TW','3.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1249,'CAMERA_EV','28','zh_TW','4.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1250,'CAMERA_EV','29','zh_TW','4.3ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1251,'CAMERA_EV','30','zh_TW','4.7ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1252,'CAMERA_EV','31','zh_TW','5.0ev ','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1253,'CAMERA_PHOTO_MODE','1','zh_CN','单拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1254,'CAMERA_PHOTO_MODE','0','zh_CN','连拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1255,'CAMERA_PHOTO_MODE','1','en_US','Single shoot','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1256,'CAMERA_PHOTO_MODE','0','en_US','Continue shoot','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1257,'CAMERA_PHOTO_MODE','1','zh_TW','單拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1258,'CAMERA_PHOTO_MODE','0','zh_TW','連拍','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system',_binary '\0'),(1259,'CAMERA_EXPOSURE_MODE','1','en_US','auto mode','2020-10-12 01:57:52','1',NULL,NULL,_binary '\0'),(1260,'CAMERA_EXPOSURE_MODE','1','zh_TW','自動模式','2020-10-12 01:57:52','1',NULL,NULL,_binary '\0'),(1261,'CAMERA_EXPOSURE_MODE','1','zh_CN','自动模式','2020-10-12 01:57:52','1',NULL,NULL,_binary '\0'),(1262,'CAMERA_EXPOSURE_MODE','2','en_US','shutter priority','2020-10-12 01:58:15','1',NULL,NULL,_binary '\0'),(1263,'CAMERA_EXPOSURE_MODE','2','zh_TW','快門優先','2020-10-12 01:58:15','1',NULL,NULL,_binary '\0'),(1264,'CAMERA_EXPOSURE_MODE','2','zh_CN','快门优先','2020-10-12 01:58:15','1',NULL,NULL,_binary '\0'),(1265,'CAMERA_EXPOSURE_MODE','3','en_US','aperture priority','2020-10-12 01:58:43','1',NULL,NULL,_binary '\0'),(1266,'CAMERA_EXPOSURE_MODE','3','zh_TW','光圈優先','2020-10-12 01:58:43','1',NULL,NULL,_binary '\0'),(1267,'CAMERA_EXPOSURE_MODE','3','zh_CN','感光优先','2020-10-12 01:58:43','1',NULL,NULL,_binary '\0'),(1268,'CAMERA_EXPOSURE_MODE','4','en_US','manual mode','2020-10-12 01:59:06','1',NULL,NULL,_binary '\0'),(1269,'CAMERA_EXPOSURE_MODE','4','zh_TW','手動曝光','2020-10-12 01:59:06','1',NULL,NULL,_binary '\0'),(1270,'CAMERA_EXPOSURE_MODE','4','zh_CN','手动曝光','2020-10-12 01:59:06','1',NULL,NULL,_binary '\0'),(1271,'CAMERA_ISO','25600','zh_CN','25600','2020-10-12 02:00:53','1',NULL,NULL,_binary '\0'),(1272,'CAMERA_ISO','25600','zh_TW','25600','2020-10-12 02:00:53','1',NULL,NULL,_binary '\0'),(1273,'CAMERA_ISO','25600','en_US','25600','2020-10-12 02:00:53','1',NULL,NULL,_binary '\0'),(1274,'CAMERA_ISO','12800','zh_CN','12800','2020-10-12 02:01:05','1',NULL,NULL,_binary '\0'),(1275,'CAMERA_ISO','12800','zh_TW','12800','2020-10-12 02:01:05','1',NULL,NULL,_binary '\0'),(1276,'CAMERA_ISO','12800','en_US','12800','2020-10-12 02:01:05','1',NULL,NULL,_binary '\0'),(1277,'CAMERA_ISO','6400','zh_CN','6400','2020-10-12 02:01:18','1',NULL,NULL,_binary '\0'),(1278,'CAMERA_ISO','6400','zh_TW','6400','2020-10-12 02:01:18','1',NULL,NULL,_binary '\0'),(1279,'CAMERA_ISO','6400','en_US','6400','2020-10-12 02:01:18','1',NULL,NULL,_binary '\0'),(1280,'CAMERA_ISO','3200','zh_CN','3200','2020-10-12 02:01:29','1',NULL,NULL,_binary '\0'),(1281,'CAMERA_ISO','3200','zh_TW','3200','2020-10-12 02:01:29','1',NULL,NULL,_binary '\0'),(1282,'CAMERA_ISO','3200','en_US','3200','2020-10-12 02:01:29','1',NULL,NULL,_binary '\0'),(1283,'CAMERA_ISO','1600','zh_CN','1600','2020-10-12 02:01:40','1',NULL,NULL,_binary '\0'),(1284,'CAMERA_ISO','1600','zh_TW','1600','2020-10-12 02:01:40','1',NULL,NULL,_binary '\0'),(1285,'CAMERA_ISO','1600','en_US','1600','2020-10-12 02:01:40','1',NULL,NULL,_binary '\0'),(1286,'CAMERA_ISO','800','zh_CN','800','2020-10-12 02:01:51','1',NULL,NULL,_binary '\0'),(1287,'CAMERA_ISO','800','zh_TW','800','2020-10-12 02:01:51','1',NULL,NULL,_binary '\0'),(1288,'CAMERA_ISO','800','en_US','800','2020-10-12 02:01:51','1',NULL,NULL,_binary '\0'),(1289,'CAMERA_ISO','400','zh_CN','400','2020-10-12 02:02:02','1',NULL,NULL,_binary '\0'),(1290,'CAMERA_ISO','400','zh_TW','400','2020-10-12 02:02:02','1',NULL,NULL,_binary '\0'),(1291,'CAMERA_ISO','400','en_US','400','2020-10-12 02:02:02','1',NULL,NULL,_binary '\0'),(1292,'CAMERA_ISO','200','zh_CN','200','2020-10-12 02:02:13','1',NULL,NULL,_binary '\0'),(1293,'CAMERA_ISO','200','zh_TW','200','2020-10-12 02:02:13','1',NULL,NULL,_binary '\0'),(1294,'CAMERA_ISO','200','en_US','200','2020-10-12 02:02:13','1',NULL,NULL,_binary '\0'),(1295,'CAMERA_ISO','100','zh_CN','100','2020-10-12 02:02:25','1',NULL,NULL,_binary '\0'),(1296,'CAMERA_ISO','100','zh_TW','100','2020-10-12 02:02:25','1',NULL,NULL,_binary '\0'),(1297,'CAMERA_ISO','100','en_US','100','2020-10-12 02:02:25','1',NULL,NULL,_binary '\0'),(1298,'CAMERA_ISO','1','zh_CN','FIXED','2020-10-12 02:02:44','1','2021-01-22 03:18:46','1',_binary '\0'),(1299,'CAMERA_ISO','1','zh_TW','FIXED','2020-10-12 02:02:44','1','2021-01-22 03:18:46','1',_binary '\0'),(1300,'CAMERA_ISO','1','en_US','FIXED','2020-10-12 02:02:44','1','2021-01-22 03:18:46','1',_binary '\0'),(1301,'CAMERA_ISO','0','zh_CN','AUTO','2020-10-12 02:03:07','1',NULL,NULL,_binary '\0'),(1302,'CAMERA_ISO','0','zh_TW','AUTO','2020-10-12 02:03:07','1',NULL,NULL,_binary '\0'),(1303,'CAMERA_ISO','0','en_US','AUTO','2020-10-12 02:03:07','1',NULL,NULL,_binary '\0'),(1304,'PLANE_MODEL','AUTOTEST_hanger','en_US','机库管理自动化','2020-10-28 08:30:46','1','2020-11-23 07:10:16','1',_binary ''),(1305,'PLANE_MODEL','AUTOTEST_hanger','zh_CN','机库管理自动化','2020-10-28 08:30:46','1','2020-11-23 07:10:16','1',_binary ''),(1306,'PLANE_MODEL','AUTOTEST_hanger','zh_TW','机库管理自动化','2020-10-28 08:30:46','1','2020-11-23 07:10:16','1',_binary ''),(1307,'LOAD_HNG_MODEL','AUTO_TESTHangar','en_US','自动化机库管理','2020-10-28 08:30:47','1','2020-12-01 01:15:19','1',_binary ''),(1308,'LOAD_HNG_MODEL','AUTO_TESTHangar','zh_CN','自动化机库管理','2020-10-28 08:30:47','1','2020-12-01 01:15:19','1',_binary ''),(1309,'LOAD_HNG_MODEL','AUTO_TESTHangar','zh_TW','自动化机库管理','2020-10-28 08:30:47','1','2020-12-01 01:15:19','1',_binary ''),(1310,'LOAD_CAM_MODEL','z5','zh_CN','禅思 ZENMUSE Z5','2020-10-30 09:44:28','1',NULL,NULL,_binary '\0'),(1311,'LOAD_CAM_MODEL','z5','zh_TW','z5','2020-10-30 09:44:28','1',NULL,NULL,_binary '\0'),(1312,'LOAD_CAM_MODEL','z5','en_US','z5','2020-10-30 09:44:28','1',NULL,NULL,_binary '\0'),(1313,'LOAD_CAM_MODEL','xh003','zh_CN','禅思H20','2020-11-05 06:38:57','1',NULL,NULL,_binary '\0'),(1314,'LOAD_CAM_MODEL','xh003','en_US','H20','2020-11-05 06:38:57','1',NULL,NULL,_binary '\0'),(1315,'LOAD_CAM_MODEL','xh003','zh_TW','禪思H20','2020-11-05 06:38:57','1',NULL,NULL,_binary '\0'),(1316,'MNF','sccj017','zh_CN','四川一电航空技术有限公司','2020-11-05 06:39:34','1','2022-09-20 08:29:05','1',_binary '\0'),(1317,'MNF','sccj017','zh_TW','四川一电航空技术有限公司','2020-11-05 06:39:34','1','2022-09-20 08:29:05','1',_binary '\0'),(1318,'MNF','sccj017','en_US','AEE','2020-11-05 06:39:34','1','2022-09-20 08:29:05','1',_binary '\0'),(1319,'LOAD_CAM_MODEL','xh004','zh_CN','禅思XTS','2020-11-05 06:39:39','1',NULL,NULL,_binary '\0'),(1320,'LOAD_CAM_MODEL','xh004','en_US','XTS','2020-11-05 06:39:39','1',NULL,NULL,_binary '\0'),(1321,'LOAD_CAM_MODEL','xh004','zh_TW','禪思XTS','2020-11-05 06:39:39','1',NULL,NULL,_binary '\0'),(1322,'LOAD_CAM_MODEL','xh005','zh_CN','禅思XT2','2020-11-05 06:40:11','1','2020-12-16 08:59:45','1',_binary '\0'),(1323,'LOAD_CAM_MODEL','xh005','en_US','禅思XT2','2020-11-05 06:40:11','1','2020-12-16 08:59:45','1',_binary '\0'),(1324,'LOAD_CAM_MODEL','xh005','zh_TW','禅思XT2','2020-11-05 06:40:11','1','2020-12-16 08:59:45','1',_binary '\0'),(1325,'PLANE_MODEL','wrjxh047','en_US','X70','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1',_binary '\0'),(1326,'PLANE_MODEL','wrjxh047','zh_TW','X70','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1',_binary '\0'),(1327,'PLANE_MODEL','wrjxh047','zh_CN','X70','2020-11-05 06:40:38','1','2022-09-20 08:29:33','1',_binary '\0'),(1328,'LOAD_CAM_MODEL','xh006','zh_CN','禅思XS5','2020-11-05 06:40:50','1','2020-12-16 08:59:24','1',_binary '\0'),(1329,'LOAD_CAM_MODEL','xh006','en_US','禅思XS5','2020-11-05 06:40:50','1','2020-12-16 08:59:24','1',_binary '\0'),(1330,'LOAD_CAM_MODEL','xh006','zh_TW','禅思XS5','2020-11-05 06:40:50','1','2020-12-16 08:59:24','1',_binary '\0'),(1331,'LOAD_CAM_MODEL','xh007','zh_CN','禅思X7','2020-11-05 06:41:14','1','2020-12-16 08:59:01','1',_binary '\0'),(1332,'LOAD_CAM_MODEL','xh007','zh_TW','禅思X7','2020-11-05 06:41:14','1','2020-12-16 08:59:01','1',_binary '\0'),(1333,'LOAD_CAM_MODEL','xh007','en_US','禅思X7','2020-11-05 06:41:14','1','2020-12-16 08:59:01','1',_binary '\0'),(1334,'MNF','sccj018','en_US','Aviation Industry Corporation of China','2020-11-05 06:53:56','1','2022-09-20 08:29:05','1',_binary '\0'),(1335,'MNF','sccj018','zh_TW','中航工業','2020-11-05 06:53:56','1','2022-09-20 08:29:05','1',_binary '\0'),(1336,'MNF','sccj018','zh_CN','中航工业','2020-11-05 06:53:56','1','2022-09-20 08:29:05','1',_binary '\0'),(1337,'PLANE_MODEL','wrjxh048','zh_CN','翼龙 1D','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1',_binary '\0'),(1338,'PLANE_MODEL','wrjxh048','zh_TW','翼龍 1D','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1',_binary '\0'),(1339,'PLANE_MODEL','wrjxh048','en_US','yi long 1D','2020-11-05 06:56:25','1','2022-09-20 08:29:33','1',_binary '\0'),(1340,'PLANE_MODEL','wrjxh049','zh_CN','G200','2020-11-05 06:57:05','1','2022-09-20 08:29:32','1',_binary '\0'),(1341,'PLANE_MODEL','wrjxh049','zh_TW','G200','2020-11-05 06:57:05','1','2022-09-20 08:29:32','1',_binary '\0'),(1342,'PLANE_MODEL','wrjxh049','en_US','G200','2020-11-05 06:57:05','1','2022-09-20 08:29:32','1',_binary '\0'),(1343,'LOAD_CAM_MODEL','xh008','zh_CN','DATG5','2020-11-05 08:47:13','1','2021-01-04 06:30:31','1',_binary '\0'),(1344,'LOAD_CAM_MODEL','xh008','zh_TW','DATG5','2020-11-05 08:47:13','1','2021-01-04 06:30:31','1',_binary '\0'),(1345,'LOAD_CAM_MODEL','xh008','en_US','DATG5','2020-11-05 08:47:13','1','2021-01-04 06:30:31','1',_binary '\0'),(1346,'ADAPT_MNF','sccj017','en_US','AEE','2020-11-06 01:18:25','1','2021-09-22 07:00:27','70179580555558912',_binary '\0'),(1347,'ADAPT_MNF','sccj017','zh_TW','四川一點航空技術有限公司','2020-11-06 01:18:25','1','2021-09-22 07:00:27','70179580555558912',_binary '\0'),(1348,'ADAPT_MNF','sccj017','zh_CN','四川一电航空技术有限公司','2020-11-06 01:18:25','1','2021-09-22 07:00:27','70179580555558912',_binary '\0'),(1349,'LOAD_CAM_MODEL','xh010','zh_CN','品灵10倍双光吊舱','2020-11-06 02:58:55','1','2021-01-19 06:40:00','1',_binary '\0'),(1350,'LOAD_CAM_MODEL','xh010','zh_TW','品灵10倍双光吊舱','2020-11-06 02:58:55','1','2021-01-19 06:40:00','1',_binary '\0'),(1351,'LOAD_CAM_MODEL','xh010','en_US','pinling10','2020-11-06 02:58:55','1','2021-01-19 06:40:00','1',_binary '\0'),(1352,'ADAPT_MNF','sccj001','zh_CN','DJI','2020-11-06 06:03:03','1',NULL,NULL,_binary '\0'),(1353,'ADAPT_MNF','sccj001','zh_TW','DJI','2020-11-06 06:03:03','1',NULL,NULL,_binary '\0'),(1354,'ADAPT_MNF','sccj001','en_US','DJI','2020-11-06 06:03:03','1',NULL,NULL,_binary '\0'),(1355,'AUTO_TEST','test1','en_US','字典自动化','2020-11-11 09:15:55','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1356,'AUTO_TEST','test1','zh_CN','字典自动化','2020-11-11 09:15:55','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1357,'AUTO_TEST','test1','zh_TW','字典自动化','2020-11-11 09:15:55','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1358,'AUTO_TEST','test2','en_US','接口2','2020-11-11 09:15:55','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1359,'AUTO_TEST','test2','zh_CN','接口2','2020-11-11 09:15:55','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1360,'AUTO_TEST','test2','zh_TW','接口2','2020-11-11 09:15:55','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1361,'AUTO_TEST','test1.1','en_US','接口1.1','2020-11-11 09:15:56','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1362,'AUTO_TEST','test1.1','zh_CN','接口1.1','2020-11-11 09:15:56','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1363,'AUTO_TEST','test1.1','zh_TW','接口1.1','2020-11-11 09:15:56','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1364,'PLANE_MODEL','AUTOTEST_PlAN','en_US','接口自动化','2020-11-11 09:16:56','1','2020-11-26 05:04:43','1',_binary ''),(1365,'PLANE_MODEL','AUTOTEST_PlAN','zh_CN','接口自动化','2020-11-11 09:16:56','1','2020-11-26 05:04:43','1',_binary ''),(1366,'PLANE_MODEL','AUTOTEST_PlAN','zh_TW','接口自动化','2020-11-11 09:16:56','1','2020-11-26 05:04:43','1',_binary ''),(1367,'LOAD_CAM_MODEL','AUTOTEST_CAM','en_US','自动化测试01','2020-11-11 09:17:02','1','2020-11-26 05:04:42','1',_binary ''),(1368,'LOAD_CAM_MODEL','AUTOTEST_CAM','zh_CN','自动化测试01','2020-11-11 09:17:02','1','2020-11-26 05:04:42','1',_binary ''),(1369,'LOAD_CAM_MODEL','AUTOTEST_CAM','zh_TW','自动化测试01','2020-11-11 09:17:02','1','2020-11-26 05:04:42','1',_binary ''),(1370,'LOAD_SPK_MODEL','AUTOTEST_SPK','en_US','自动化数据01','2020-11-11 09:17:11','1','2020-11-26 05:04:42','1',_binary ''),(1371,'LOAD_SPK_MODEL','AUTOTEST_SPK','zh_CN','自动化数据01','2020-11-11 09:17:11','1','2020-11-26 05:04:42','1',_binary ''),(1372,'LOAD_SPK_MODEL','AUTOTEST_SPK','zh_TW','自动化数据01','2020-11-11 09:17:11','1','2020-11-26 05:04:42','1',_binary ''),(1373,'LOAD_HNG_MODEL','auto_TESTHangar','en_US','接口自动化','2020-11-11 09:17:15','1','2020-11-26 05:04:43','1',_binary ''),(1374,'LOAD_HNG_MODEL','auto_TESTHangar','zh_CN','接口自动化','2020-11-11 09:17:15','1','2020-11-26 05:04:43','1',_binary ''),(1375,'LOAD_HNG_MODEL','auto_TESTHangar','zh_TW','接口自动化','2020-11-11 09:17:15','1','2020-11-26 05:04:43','1',_binary ''),(1376,'VIDEO_LINE','0','zh_TW','自定义','2020-11-12 02:26:51','1','2020-11-13 09:41:03','1',_binary '\0'),(1377,'VIDEO_LINE','0','en_US','define','2020-11-12 02:26:51','1','2020-11-13 09:41:03','1',_binary '\0'),(1378,'PLANE_MODEL','wrjxh050','zh_CN','M6FA','2020-11-13 01:46:42','1','2022-09-20 08:29:32','1',_binary '\0'),(1379,'PLANE_MODEL','wrjxh050','zh_TW','M6FA','2020-11-13 01:46:42','1','2022-09-20 08:29:32','1',_binary '\0'),(1380,'PLANE_MODEL','wrjxh050','en_US','M6FA','2020-11-13 01:46:42','1','2022-09-20 08:29:32','1',_binary '\0'),(1381,'LOAD_CAM_MODEL','xh011','zh_CN','天途摄像头','2020-11-13 01:48:36','1','2021-01-06 03:00:10','1',_binary '\0'),(1382,'LOAD_CAM_MODEL','xh011','zh_TW','天途摄像头','2020-11-13 01:48:36','1','2021-01-06 03:00:10','1',_binary '\0'),(1383,'LOAD_CAM_MODEL','xh011','en_US','tian tu camera','2020-11-13 01:48:36','1','2021-01-06 03:00:10','1',_binary '\0'),(1384,'ADAPT_MNF','sccj007','zh_CN','天途','2020-11-13 02:12:10','1','2021-09-22 07:00:05','70179580555558912',_binary '\0'),(1385,'ADAPT_MNF','sccj007','zh_TW','天圖','2020-11-13 02:12:10','1','2021-09-22 07:00:05','70179580555558912',_binary '\0'),(1386,'ADAPT_MNF','sccj007','en_US','tian tu','2020-11-13 02:12:10','1','2021-09-22 07:00:05','70179580555558912',_binary '\0'),(1387,'PLANE_MODEL','自动化','zh_CN','自动化','2020-11-14 02:53:47','1','2020-11-14 02:55:07',NULL,_binary ''),(1388,'PLANE_MODEL','自动化','zh_TW','自动化','2020-11-14 02:53:47','1','2020-11-14 02:55:07',NULL,_binary ''),(1389,'PLANE_MODEL','自动化','en_US','自动化','2020-11-14 02:53:47','1','2020-11-14 02:55:07',NULL,_binary ''),(1390,'PLANE_MODEL','AUTOTEST_load0','en_US','载荷管理自动化plan','2020-11-16 00:52:13','1','2020-11-26 03:33:50','1',_binary ''),(1391,'PLANE_MODEL','AUTOTEST_load0','zh_CN','载荷管理自动化plan','2020-11-16 00:52:13','1','2020-11-26 03:33:50','1',_binary ''),(1392,'PLANE_MODEL','AUTOTEST_load0','zh_TW','载荷管理自动化plan','2020-11-16 00:52:13','1','2020-11-26 03:33:50','1',_binary ''),(1393,'LOAD_CAM_MODEL','AUTOTEST_loadCAM','en_US','载荷管理自动化CAM','2020-11-16 00:52:14','1','2020-11-20 09:22:12','1',_binary ''),(1394,'LOAD_CAM_MODEL','AUTOTEST_loadCAM','zh_CN','载荷管理自动化CAM','2020-11-16 00:52:14','1','2020-11-20 09:22:12','1',_binary ''),(1395,'LOAD_CAM_MODEL','AUTOTEST_loadCAM','zh_TW','载荷管理自动化CAM','2020-11-16 00:52:14','1','2020-11-20 09:22:12','1',_binary ''),(1396,'LOAD_SPK_MODEL','AUTOTEST_SPK01','en_US','载荷管理自动化spk','2020-11-16 00:52:16','1','2020-11-20 09:22:12','1',_binary ''),(1397,'LOAD_SPK_MODEL','AUTOTEST_SPK01','zh_CN','载荷管理自动化spk','2020-11-16 00:52:16','1','2020-11-20 09:22:12','1',_binary ''),(1398,'LOAD_SPK_MODEL','AUTOTEST_SPK01','zh_TW','载荷管理自动化spk','2020-11-16 00:52:16','1','2020-11-20 09:22:12','1',_binary ''),(1399,'PLANE_MODEL','AutoTest_waypoint','en_US','航线管理自动化','2020-11-16 01:43:28','1','2020-12-01 01:11:26','1',_binary ''),(1400,'PLANE_MODEL','AutoTest_waypoint','zh_CN','航线管理自动化','2020-11-16 01:43:28','1','2020-12-01 01:11:26','1',_binary ''),(1401,'PLANE_MODEL','AutoTest_waypoint','zh_TW','航线管理自动化','2020-11-16 01:43:28','1','2020-12-01 01:11:26','1',_binary ''),(1402,'LOAD_CAM_MODEL','AutoTest_CAM','en_US','摄像头表单自动化','2020-11-16 01:43:29','1','2024-11-14 00:55:01','58582660930338816',_binary ''),(1403,'LOAD_CAM_MODEL','AutoTest_CAM','zh_CN','摄像头表单自动化','2020-11-16 01:43:29','1','2024-11-14 00:55:01','58582660930338816',_binary ''),(1404,'LOAD_CAM_MODEL','AutoTest_CAM','zh_TW','摄像头表单自动化','2020-11-16 01:43:29','1','2024-11-14 00:55:01','58582660930338816',_binary ''),(1405,'VIDEO_LINE','pull','zh_CN','http://wwww.....cccc','2020-11-16 02:04:36','1','2020-11-16 02:10:45',NULL,_binary ''),(1406,'VIDEO_LINE','pull','zh_TW','pull','2020-11-16 02:04:36','1','2020-11-16 02:10:45',NULL,_binary ''),(1407,'VIDEO_LINE','pull','en_US','pull','2020-11-16 02:04:36','1','2020-11-16 02:10:45',NULL,_binary ''),(1408,'LOAD_CAM_MODEL','testcode','zh_CN','123','2020-11-16 02:17:43','1','2020-11-16 02:17:48',NULL,_binary ''),(1409,'LOAD_CAM_MODEL','testcode','zh_TW','123','2020-11-16 02:17:43','1','2020-11-16 02:17:48',NULL,_binary ''),(1410,'LOAD_CAM_MODEL','testcode','en_US','123','2020-11-16 02:17:43','1','2020-11-16 02:17:48',NULL,_binary ''),(1411,'LOAD_CAM_MODEL','AUTOtest_CAM01','en_US','自动化测试01','2020-11-16 02:20:23','1','2020-11-17 00:58:30','1',_binary ''),(1412,'LOAD_CAM_MODEL','AUTOtest_CAM01','zh_CN','自动化测试01','2020-11-16 02:20:23','1','2020-11-17 00:58:30','1',_binary ''),(1413,'LOAD_CAM_MODEL','AUTOtest_CAM01','zh_TW','自动化测试01','2020-11-16 02:20:23','1','2020-11-17 00:58:30','1',_binary ''),(1414,'PLANE_MODEL','AUTOTEST_PlAN1','en_US','自动化数据01','2020-11-16 02:20:59','1','2020-11-16 03:24:03','1',_binary ''),(1415,'PLANE_MODEL','AUTOTEST_PlAN1','zh_CN','自动化数据01','2020-11-16 02:20:59','1','2020-11-16 03:24:03','1',_binary ''),(1416,'PLANE_MODEL','AUTOTEST_PlAN1','zh_TW','自动化数据01','2020-11-16 02:20:59','1','2020-11-16 03:24:03','1',_binary ''),(1417,'LOAD_SPK_MODEL','AUTOTEST_SPK1','en_US','自动化数据01','2020-11-16 02:39:17','1','2020-11-16 03:24:02','1',_binary ''),(1418,'LOAD_SPK_MODEL','AUTOTEST_SPK1','zh_CN','自动化数据01','2020-11-16 02:39:17','1','2020-11-16 03:24:02','1',_binary ''),(1419,'LOAD_SPK_MODEL','AUTOTEST_SPK1','zh_TW','自动化数据01','2020-11-16 02:39:17','1','2020-11-16 03:24:02','1',_binary ''),(1420,'LOAD_HNG_MODEL','auto_TESTHangar01','en_US','自动化01','2020-11-16 02:39:22','1','2020-11-16 03:23:01',NULL,_binary ''),(1421,'LOAD_HNG_MODEL','auto_TESTHangar01','zh_CN','自动化01','2020-11-16 02:39:22','1','2020-11-16 03:23:01',NULL,_binary ''),(1422,'LOAD_HNG_MODEL','auto_TESTHangar01','zh_TW','自动化01','2020-11-16 02:39:22','1','2020-11-16 03:23:01',NULL,_binary ''),(1423,'DEV_ACTION_MODEL','stopRecord','zh_CN','停止录像','2020-11-16 07:29:26','1',NULL,NULL,_binary '\0'),(1424,'DEV_ACTION_MODEL','stopRecord','zh_TW','停止录像','2020-11-16 07:29:26','1',NULL,NULL,_binary '\0'),(1425,'DEV_ACTION_MODEL','stopRecord','en_US','stop record','2020-11-16 07:29:26','1',NULL,NULL,_binary '\0'),(1426,'DEV_ACTION_MODEL','uavYaw','en_US','uav yaw','2020-11-16 07:29:53','1',NULL,NULL,_binary '\0'),(1427,'DEV_ACTION_MODEL','uavYaw','zh_CN','偏航角','2020-11-16 07:29:53','1',NULL,NULL,_binary '\0'),(1428,'DEV_ACTION_MODEL','uavYaw','zh_TW','偏航角','2020-11-16 07:29:53','1',NULL,NULL,_binary '\0'),(1429,'DEV_ACTION_MODEL','yaw','zh_CN','角度','2020-11-16 07:30:22','1',NULL,NULL,_binary '\0'),(1430,'DEV_ACTION_MODEL','yaw','zh_TW','角度','2020-11-16 07:30:22','1',NULL,NULL,_binary '\0'),(1431,'DEV_ACTION_MODEL','yaw','en_US','yaw','2020-11-16 07:30:22','1',NULL,NULL,_binary '\0'),(1432,'DEV_ACTION_MODEL','cameraPanControl','zh_CN','云台转向','2020-11-16 07:31:13','1',NULL,NULL,_binary '\0'),(1433,'DEV_ACTION_MODEL','cameraPanControl','zh_TW','云台转向','2020-11-16 07:31:13','1',NULL,NULL,_binary '\0'),(1434,'DEV_ACTION_MODEL','cameraPanControl','en_US','camera pan control','2020-11-16 07:31:13','1',NULL,NULL,_binary '\0'),(1435,'DEV_ACTION_MODEL','cameraYaw','en_US','cameraYaw','2020-11-16 07:32:04','1',NULL,NULL,_binary '\0'),(1436,'DEV_ACTION_MODEL','cameraYaw','zh_CN','平移角','2020-11-16 07:32:04','1',NULL,NULL,_binary '\0'),(1437,'DEV_ACTION_MODEL','cameraYaw','zh_TW','平移角','2020-11-16 07:32:04','1',NULL,NULL,_binary '\0'),(1438,'DEV_ACTION_MODEL','cameraPitch','en_US','cameraPitch','2020-11-16 07:32:33','1',NULL,NULL,_binary '\0'),(1439,'DEV_ACTION_MODEL','cameraPitch','zh_CN','俯仰角','2020-11-16 07:32:33','1',NULL,NULL,_binary '\0'),(1440,'DEV_ACTION_MODEL','cameraPitch','zh_TW','俯仰角','2020-11-16 07:32:33','1',NULL,NULL,_binary '\0'),(1441,'DEV_ACTION_MODEL','cameraRoll','en_US','cameraRoll','2020-11-16 07:33:05','1',NULL,NULL,_binary '\0'),(1442,'DEV_ACTION_MODEL','cameraRoll','zh_CN','横滚角','2020-11-16 07:33:05','1',NULL,NULL,_binary '\0'),(1443,'DEV_ACTION_MODEL','cameraRoll','zh_TW','横滚角','2020-11-16 07:33:05','1',NULL,NULL,_binary '\0'),(1444,'DEV_ACTION_MODEL','startRecord','en_US','start record','2020-11-16 07:33:40','1',NULL,NULL,_binary '\0'),(1445,'DEV_ACTION_MODEL','startRecord','zh_CN','开始录像','2020-11-16 07:33:40','1',NULL,NULL,_binary '\0'),(1446,'DEV_ACTION_MODEL','startRecord','zh_TW','开始录像','2020-11-16 07:33:40','1',NULL,NULL,_binary '\0'),(1447,'DEV_ACTION_MODEL','videoFormat','en_US','video format','2020-11-16 07:34:12','1','2023-05-19 03:26:11','173818970422378496',_binary '\0'),(1448,'DEV_ACTION_MODEL','videoFormat','zh_CN','视频格式','2020-11-16 07:34:12','1','2023-05-19 03:26:11','173818970422378496',_binary '\0'),(1449,'DEV_ACTION_MODEL','videoFormat','zh_TW','視頻格式','2020-11-16 07:34:12','1','2023-05-19 03:26:11','173818970422378496',_binary '\0'),(1450,'DEV_ACTION_MODEL','videoResolution','en_US','video resolution','2020-11-16 07:34:35','1','2023-05-19 03:26:52','173818970422378496',_binary '\0'),(1451,'DEV_ACTION_MODEL','videoResolution','zh_CN','分辨率','2020-11-16 07:34:35','1','2023-05-19 03:26:52','173818970422378496',_binary '\0'),(1452,'DEV_ACTION_MODEL','videoResolution','zh_TW','分辨率','2020-11-16 07:34:35','1','2023-05-19 03:26:52','173818970422378496',_binary '\0'),(1453,'DEV_ACTION_MODEL','photo','en_US','Take Photo','2020-11-16 07:34:57','1','2021-03-10 07:02:43','1',_binary '\0'),(1454,'DEV_ACTION_MODEL','photo','zh_CN','拍照','2020-11-16 07:34:57','1','2021-03-10 07:02:43','1',_binary '\0'),(1455,'DEV_ACTION_MODEL','photo','zh_TW','拍照','2020-11-16 07:34:57','1','2021-03-10 07:02:43','1',_binary '\0'),(1456,'DEV_ACTION_MODEL','picFormat','en_US','picture format','2020-11-16 07:35:16','1','2023-05-08 07:07:57','173818970422378496',_binary '\0'),(1457,'DEV_ACTION_MODEL','picFormat','zh_CN','照片格式','2020-11-16 07:35:16','1','2023-05-08 07:07:57','173818970422378496',_binary '\0'),(1458,'DEV_ACTION_MODEL','picFormat','zh_TW','照片格式','2020-11-16 07:35:16','1','2023-05-08 07:07:57','173818970422378496',_binary '\0'),(1459,'DEV_ACTION_MODEL','hover','en_US','hover','2020-11-16 07:35:48','1',NULL,NULL,_binary '\0'),(1460,'DEV_ACTION_MODEL','hover','zh_CN','悬停','2020-11-16 07:35:48','1',NULL,NULL,_binary '\0'),(1461,'DEV_ACTION_MODEL','hover','zh_TW','悬停','2020-11-16 07:35:48','1',NULL,NULL,_binary '\0'),(1462,'DEV_ACTION_MODEL','hoverTime','en_US','hoverTime','2020-11-16 07:36:09','1',NULL,NULL,_binary '\0'),(1463,'DEV_ACTION_MODEL','hoverTime','zh_CN','时长','2020-11-16 07:36:09','1',NULL,NULL,_binary '\0'),(1464,'DEV_ACTION_MODEL','hoverTime','zh_TW','时长','2020-11-16 07:36:09','1',NULL,NULL,_binary '\0'),(1465,'PLANE_MODEL','1122','zh_CN','1122','2020-11-16 08:31:45','1','2020-11-16 08:32:39',NULL,_binary ''),(1466,'PLANE_MODEL','1122','zh_TW','1122','2020-11-16 08:31:45','1','2020-11-16 08:32:39',NULL,_binary ''),(1467,'PLANE_MODEL','1122','en_US','1122','2020-11-16 08:31:45','1','2020-11-16 08:32:39',NULL,_binary ''),(1468,'PLANE_MODEL','2233','zh_CN','2233','2020-11-16 08:32:04','1','2020-11-16 08:32:35',NULL,_binary ''),(1469,'PLANE_MODEL','2233','zh_TW','2233','2020-11-16 08:32:04','1','2020-11-16 08:32:35',NULL,_binary ''),(1470,'PLANE_MODEL','2233','en_US','2233','2020-11-16 08:32:04','1','2020-11-16 08:32:35',NULL,_binary ''),(1471,'PLANE_MODEL','3344','zh_CN','3344','2020-11-16 08:32:25','1','2020-11-16 08:32:32',NULL,_binary ''),(1472,'PLANE_MODEL','3344','zh_TW','3344','2020-11-16 08:32:25','1','2020-11-16 08:32:32',NULL,_binary ''),(1473,'PLANE_MODEL','3344','en_US','3344','2020-11-16 08:32:25','1','2020-11-16 08:32:32',NULL,_binary ''),(1474,'AUTO','test33','en_US','接口33','2020-11-17 04:16:01','1',NULL,NULL,_binary '\0'),(1475,'AUTO','test33','zh_CN','接口33','2020-11-17 04:16:01','1',NULL,NULL,_binary '\0'),(1476,'AUTO','test33','zh_TW','接口33','2020-11-17 04:16:01','1',NULL,NULL,_binary '\0'),(1477,'AUTO_TEST','test1.2','en_US','接口1.2','2020-11-17 06:04:20','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1478,'AUTO_TEST','test1.2','zh_CN','接口1.2','2020-11-17 06:04:20','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1479,'AUTO_TEST','test1.2','zh_TW','接口1.2','2020-11-17 06:04:20','1','2024-11-14 01:08:48','58582660930338816',_binary ''),(1480,'AUTO_TEST','AUTO_TEST','en_US','接口1.21','2020-11-17 06:07:34','1','2020-11-17 06:07:53',NULL,_binary ''),(1481,'AUTO_TEST','AUTO_TEST','zh_CN','接口1.21','2020-11-17 06:07:34','1','2020-11-17 06:07:53',NULL,_binary ''),(1482,'AUTO_TEST','AUTO_TEST','zh_TW','接口1.21','2020-11-17 06:07:34','1','2020-11-17 06:07:53',NULL,_binary ''),(1483,'AUTO_TEST','test33','en_US','接口1','2020-11-17 06:20:39','1','2020-11-17 06:21:18',NULL,_binary ''),(1484,'AUTO_TEST','test33','zh_CN','接口1','2020-11-17 06:20:39','1','2020-11-17 06:21:18',NULL,_binary ''),(1485,'AUTO_TEST','test33','zh_TW','接口1','2020-11-17 06:20:39','1','2020-11-17 06:21:18',NULL,_binary ''),(1486,'AUTO_TEST3','test1','en_US','接口0','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1',_binary ''),(1487,'AUTO_TEST3','test1','zh_CN','接口0','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1',_binary ''),(1488,'AUTO_TEST3','test1','zh_TW','接口0','2020-11-18 02:28:03','1','2020-11-18 02:28:08','1',_binary ''),(1489,'AUTO_TEST3','test2','en_US','接口2','2020-11-18 02:28:03','1','2020-11-18 02:28:08',NULL,_binary ''),(1490,'AUTO_TEST3','test2','zh_CN','接口2','2020-11-18 02:28:03','1','2020-11-18 02:28:08',NULL,_binary ''),(1491,'AUTO_TEST3','test2','zh_TW','接口2','2020-11-18 02:28:03','1','2020-11-18 02:28:08',NULL,_binary ''),(1492,'AUTO_TEST3','test1.1','en_US','接口1.2','2020-11-18 02:28:04','1','2020-11-18 02:28:08','1',_binary ''),(1493,'AUTO_TEST3','test1.1','zh_CN','接口1.2','2020-11-18 02:28:04','1','2020-11-18 02:28:08','1',_binary ''),(1494,'AUTO_TEST3','test1.1','zh_TW','接口1.1','2020-11-18 02:28:04','1','2020-11-18 02:28:08',NULL,_binary ''),(1495,'PLANE_MODEL','AutoTest_waypoint01','en_US','航线管理自动化01','2020-11-19 07:09:40','1','2020-11-26 01:05:28','1',_binary ''),(1496,'PLANE_MODEL','AutoTest_waypoint01','zh_CN','航线管理自动化01','2020-11-19 07:09:40','1','2020-11-26 01:05:28','1',_binary ''),(1497,'PLANE_MODEL','AutoTest_waypoint01','zh_TW','航线管理自动化01','2020-11-19 07:09:40','1','2020-11-26 01:05:28','1',_binary ''),(1498,'LOAD_CAM_MODEL','AutoTest_CAM01','en_US','航线管理自动化CAM01','2020-11-19 07:10:55','1','2020-11-25 05:04:46','1',_binary ''),(1499,'LOAD_CAM_MODEL','AutoTest_CAM01','zh_CN','航线管理自动化CAM01','2020-11-19 07:10:55','1','2020-11-25 05:04:46','1',_binary ''),(1500,'LOAD_CAM_MODEL','AutoTest_CAM01','zh_TW','航线管理自动化CAM01','2020-11-19 07:10:55','1','2020-11-25 05:04:46','1',_binary ''),(1501,'PLANE_MODEL','wurenji','zh_CN','wurenji','2020-11-20 03:58:02','1','2020-11-20 04:02:02',NULL,_binary ''),(1502,'PLANE_MODEL','wurenji','zh_TW','wurenji','2020-11-20 03:58:02','1','2020-11-20 04:02:02',NULL,_binary ''),(1503,'PLANE_MODEL','wurenji','en_US','wurenji','2020-11-20 03:58:02','1','2020-11-20 04:02:02',NULL,_binary ''),(1504,'PLANE_MODEL','AUTOTEST_planet','en_US','无人机管理自动化','2020-11-20 04:01:28','1','2020-11-23 05:04:48','1',_binary ''),(1505,'PLANE_MODEL','AUTOTEST_planet','zh_CN','无人机管理自动化','2020-11-20 04:01:28','1','2020-11-23 05:04:48','1',_binary ''),(1506,'PLANE_MODEL','AUTOTEST_planet','zh_TW','无人机管理自动化','2020-11-20 04:01:28','1','2020-11-23 05:04:48','1',_binary ''),(1507,'LOAD_SPK_MODEL','SPK_TEST','zh_CN','喊话器01','2020-11-20 05:33:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1508,'LOAD_SPK_MODEL','SPK_TEST','zh_TW','喊话器01','2020-11-20 05:33:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1509,'LOAD_SPK_MODEL','SPK_TEST','en_US','喊话器01','2020-11-20 05:33:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1510,'PLANE_MODEL','TESTPLAN','zh_CN','无人机TEST','2020-11-20 07:26:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1511,'PLANE_MODEL','TESTPLAN','zh_TW','无人机TEST','2020-11-20 07:26:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1512,'PLANE_MODEL','TESTPLAN','en_US','无人机TEST','2020-11-20 07:26:33','1','2020-11-25 05:04:47',NULL,_binary ''),(1513,'LOAD_CAM_MODEL','CAMcode','zh_CN','摄像头CAM','2020-11-20 07:31:57','1','2020-11-20 07:32:32',NULL,_binary ''),(1514,'LOAD_CAM_MODEL','CAMcode','zh_TW','摄像头CAM','2020-11-20 07:31:57','1','2020-11-20 07:32:32',NULL,_binary ''),(1515,'LOAD_CAM_MODEL','CAMcode','en_US','摄像头CAM','2020-11-20 07:31:57','1','2020-11-20 07:32:32',NULL,_binary ''),(1516,'LOAD_CAM_MODEL','TESTCAM','zh_CN','测试摄像头','2020-11-20 07:33:15','1','2020-11-23 05:04:47',NULL,_binary ''),(1517,'LOAD_CAM_MODEL','TESTCAM','zh_TW','测试摄像头','2020-11-20 07:33:15','1','2020-11-23 05:04:47',NULL,_binary ''),(1518,'LOAD_CAM_MODEL','TESTCAM','en_US','测试摄像头','2020-11-20 07:33:15','1','2020-11-23 05:04:47',NULL,_binary ''),(1519,'LOAD_SPK_MODEL','SPKTEST','zh_CN','测试喊话器','2020-11-20 07:34:48','1','2020-11-23 05:04:47',NULL,_binary ''),(1520,'LOAD_SPK_MODEL','SPKTEST','zh_TW','测试喊话器','2020-11-20 07:34:48','1','2020-11-23 05:04:47',NULL,_binary ''),(1521,'LOAD_SPK_MODEL','SPKTEST','en_US','测试喊话器','2020-11-20 07:34:48','1','2020-11-23 05:04:47',NULL,_binary ''),(1522,'PLANE_MODEL','AutoTest_data','en_US','表单自动化','2020-11-23 02:11:30','1','2024-11-14 00:55:10','58582660930338816',_binary ''),(1523,'PLANE_MODEL','AutoTest_data','zh_CN','表单自动化','2020-11-23 02:11:30','1','2024-11-14 00:55:10','58582660930338816',_binary ''),(1524,'PLANE_MODEL','AutoTest_data','zh_TW','表单自动化','2020-11-23 02:11:30','1','2024-11-14 00:55:10','58582660930338816',_binary ''),(1525,'LOAD_SPK_MODEL','AutoTest_SPK','en_US','喊话器表单自动化','2020-11-23 03:13:07','1','2024-11-14 00:55:01','58582660930338816',_binary ''),(1526,'LOAD_SPK_MODEL','AutoTest_SPK','zh_CN','喊话器表单自动化','2020-11-23 03:13:07','1','2024-11-14 00:55:01','58582660930338816',_binary ''),(1527,'LOAD_SPK_MODEL','AutoTest_SPK','zh_TW','喊话器表单自动化','2020-11-23 03:13:07','1','2024-11-14 00:55:01','58582660930338816',_binary ''),(1528,'LOAD_HNG_MODEL','AutoTest_Hangar','en_US','自动化机库管理','2020-11-23 03:14:29','1','2024-11-14 01:11:10','58582660930338816',_binary ''),(1529,'LOAD_HNG_MODEL','AutoTest_Hangar','zh_CN','自动化机库管理','2020-11-23 03:14:29','1','2024-11-14 01:11:10','58582660930338816',_binary ''),(1530,'LOAD_HNG_MODEL','AutoTest_Hangar','zh_TW','自动化机库管理','2020-11-23 03:14:29','1','2024-11-14 01:11:10','58582660930338816',_binary ''),(1531,'LOAD_HNG_MODEL','HGR23','zh_CN','机库23','2020-11-23 06:10:16','1','2020-11-24 05:04:47',NULL,_binary ''),(1532,'LOAD_HNG_MODEL','HGR23','zh_TW','机库23','2020-11-23 06:10:16','1','2020-11-24 05:04:47',NULL,_binary ''),(1533,'LOAD_HNG_MODEL','HGR23','en_US','机库23','2020-11-23 06:10:16','1','2020-11-24 05:04:47',NULL,_binary ''),(1534,'PLANE_MODEL','AutoTest_hanger','en_US','机库管理自动化','2020-11-23 07:10:19','1','2020-12-28 08:00:26','1',_binary ''),(1535,'PLANE_MODEL','AutoTest_hanger','zh_CN','机库管理自动化','2020-11-23 07:10:19','1','2020-12-28 08:00:26','1',_binary ''),(1536,'PLANE_MODEL','AutoTest_hanger','zh_TW','机库管理自动化','2020-11-23 07:10:19','1','2020-12-28 08:00:26','1',_binary ''),(1537,'PLANE_MODEL','AUTOTEST_mission','en_US','作业管理自动化','2020-11-26 01:30:53','1','2021-03-03 01:59:47','1',_binary ''),(1538,'PLANE_MODEL','AUTOTEST_mission','zh_CN','作业管理自动化','2020-11-26 01:30:53','1','2021-03-03 01:59:47','1',_binary ''),(1539,'PLANE_MODEL','AUTOTEST_mission','zh_TW','作业管理自动化','2020-11-26 01:30:53','1','2021-03-03 01:59:47','1',_binary ''),(1540,'LOAD_CAM_MODEL','AUTOTEST_CAMmisson','en_US','作业管理自动化CAM','2020-11-26 01:37:08','1','2020-11-27 06:53:18','1',_binary ''),(1541,'LOAD_CAM_MODEL','AUTOTEST_CAMmisson','zh_CN','作业管理自动化CAM','2020-11-26 01:37:08','1','2020-11-27 06:53:18','1',_binary ''),(1542,'LOAD_CAM_MODEL','AUTOTEST_CAMmisson','zh_TW','作业管理自动化CAM','2020-11-26 01:37:08','1','2020-11-27 06:53:18','1',_binary ''),(1543,'LOAD_SPK_MODEL','AUTOTEST_SPKmisson','en_US','作业管理自动化spk','2020-11-26 01:41:54','1','2020-11-26 01:48:20','1',_binary ''),(1544,'LOAD_SPK_MODEL','AUTOTEST_SPKmisson','zh_CN','作业管理自动化spk','2020-11-26 01:41:54','1','2020-11-26 01:48:20','1',_binary ''),(1545,'LOAD_SPK_MODEL','AUTOTEST_SPKmisson','zh_TW','作业管理自动化spk','2020-11-26 01:41:54','1','2020-11-26 01:48:20','1',_binary ''),(1546,'LOAD_SPK_MODEL','SPK_V1','zh_CN','喊话器V1','2020-11-26 01:44:03','1','2020-11-26 01:49:57',NULL,_binary ''),(1547,'LOAD_SPK_MODEL','SPK_V1','zh_TW','喊话器V1','2020-11-26 01:44:03','1','2020-11-26 01:49:57',NULL,_binary ''),(1548,'LOAD_SPK_MODEL','SPK_V1','en_US','喊话器V1','2020-11-26 01:44:03','1','2020-11-26 01:49:57',NULL,_binary ''),(1549,'LOAD_HNG_MODEL','AUTO_TESTmisson','en_US','作业管理自动化机库','2020-11-26 01:47:52','1','2020-11-26 01:49:57',NULL,_binary ''),(1550,'LOAD_HNG_MODEL','AUTO_TESTmisson','zh_CN','作业管理自动化机库','2020-11-26 01:47:52','1','2020-11-26 01:49:57',NULL,_binary ''),(1551,'LOAD_HNG_MODEL','AUTO_TESTmisson','zh_TW','作业管理自动化机库','2020-11-26 01:47:52','1','2020-11-26 01:49:57',NULL,_binary ''),(1552,'PLANE_MODEL','AutoTest_load','en_US','载荷管理自动化','2020-11-26 03:33:53','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1553,'PLANE_MODEL','AutoTest_load','zh_CN','载荷管理自动化','2020-11-26 03:33:53','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1554,'PLANE_MODEL','AutoTest_load','zh_TW','载荷管理自动化','2020-11-26 03:33:53','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1555,'LOAD_HNG_MODEL','jik001','zh_CN','机库1','2020-11-26 07:36:31','1','2020-11-27 01:00:58',NULL,_binary ''),(1556,'LOAD_HNG_MODEL','jik001','zh_TW','机库1','2020-11-26 07:36:31','1','2020-11-27 01:00:58',NULL,_binary ''),(1557,'LOAD_HNG_MODEL','jik001','en_US','jik001','2020-11-26 07:36:31','1','2020-11-27 01:00:58',NULL,_binary ''),(1558,'LOAD_CAM_MODEL','AutoTest_loadCAM','en_US','载荷管理自动化','2020-11-26 08:10:51','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1559,'LOAD_CAM_MODEL','AutoTest_loadCAM','zh_CN','载荷管理自动化','2020-11-26 08:10:51','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1560,'LOAD_CAM_MODEL','AutoTest_loadCAM','zh_TW','载荷管理自动化','2020-11-26 08:10:51','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1561,'LOAD_HNG_MODEL','jiku001','zh_CN','机库1','2020-11-27 01:11:36','1',NULL,NULL,_binary '\0'),(1562,'LOAD_HNG_MODEL','jiku001','zh_TW','机库1','2020-11-27 01:11:36','1',NULL,NULL,_binary '\0'),(1563,'LOAD_HNG_MODEL','jiku001','en_US','jiku001','2020-11-27 01:11:36','1',NULL,NULL,_binary '\0'),(1564,'LOAD_SPK_MODEL','AutoTestLoad_SPK','en_US','载荷管理自动化','2020-11-27 01:31:47','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1565,'LOAD_SPK_MODEL','AutoTestLoad_SPK','zh_CN','载荷管理自动化','2020-11-27 01:31:47','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1566,'LOAD_SPK_MODEL','AutoTestLoad_SPK','zh_TW','载荷管理自动化','2020-11-27 01:31:47','1','2024-11-14 01:10:43','58582660930338816',_binary ''),(1567,'PLANE_MODEL','54hhh','zh_CN','X77','2020-11-27 02:34:26','1',NULL,NULL,_binary '\0'),(1568,'PLANE_MODEL','54hhh','zh_TW','x77','2020-11-27 02:34:26','1',NULL,NULL,_binary '\0'),(1569,'PLANE_MODEL','54hhh','en_US','eee','2020-11-27 02:34:26','1',NULL,NULL,_binary '\0'),(1570,'LOAD_CAM_MODEL','AUTOTEST_missonCAM','en_US','作业管理自动化CAM1','2020-11-27 06:54:42','1','2023-03-02 02:31:32',NULL,_binary ''),(1571,'LOAD_CAM_MODEL','AUTOTEST_missonCAM','zh_CN','作业管理自动化CAM1','2020-11-27 06:54:42','1','2023-03-02 02:31:32',NULL,_binary ''),(1572,'LOAD_CAM_MODEL','AUTOTEST_missonCAM','zh_TW','作业管理自动化CAM1','2020-11-27 06:54:42','1','2023-03-02 02:31:32',NULL,_binary ''),(1573,'LOAD_HNG_MODEL','ttest','zh_CN','ttest','2020-11-30 03:26:19','1','2020-11-30 07:07:33',NULL,_binary ''),(1574,'LOAD_HNG_MODEL','ttest','zh_TW','ttest','2020-11-30 03:26:19','1','2020-11-30 07:07:33',NULL,_binary ''),(1575,'LOAD_HNG_MODEL','ttest','en_US','ttest','2020-11-30 03:26:19','1','2020-11-30 07:07:33',NULL,_binary ''),(1576,'PLANE_MODEL','wrjxh051','en_US','inspire2','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1',_binary '\0'),(1577,'PLANE_MODEL','wrjxh051','zh_TW','悟2','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1',_binary '\0'),(1578,'PLANE_MODEL','wrjxh051','zh_CN','悟2','2020-12-15 07:16:00','1','2022-09-20 08:29:33','1',_binary '\0'),(1579,'MWS','mws-file','zh_CN','文件','2020-12-08 11:44:52','1','2021-09-22 06:57:17','70179580555558912',_binary '\0'),(1580,'MWS','mws-file','zh_TW','文件','2020-12-08 11:44:52','1','2021-09-22 06:57:17','70179580555558912',_binary '\0'),(1581,'MWS','mws-file','en_US','file','2020-12-08 11:44:52','1','2021-09-22 06:57:17','70179580555558912',_binary '\0'),(1582,'MWS','file-zip','zh_CN','zip','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1583,'MWS','file-zip','zh_TW','zip','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1584,'MWS','file-zip','en_US','zip','2020-12-08 11:45:55','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1585,'MWS','mws-image','zh_CN','图片','2020-12-08 11:46:33','1','2021-09-22 06:57:10','70179580555558912',_binary '\0'),(1586,'MWS','mws-image','zh_TW','圖片','2020-12-08 11:46:33','1','2021-09-22 06:57:10','70179580555558912',_binary '\0'),(1587,'MWS','mws-image','en_US','image','2020-12-08 11:46:33','1','2021-09-22 06:57:10','70179580555558912',_binary '\0'),(1588,'MWS','mws-video','zh_CN','视频','2020-12-08 11:47:10','1','2021-09-22 06:56:49','70179580555558912',_binary '\0'),(1589,'MWS','mws-video','zh_TW','視頻','2020-12-08 11:47:10','1','2021-09-22 06:56:49','70179580555558912',_binary '\0'),(1590,'MWS','mws-video','en_US','video','2020-12-08 11:47:10','1','2021-09-22 06:56:49','70179580555558912',_binary '\0'),(1591,'MWS','mws-sound','zh_CN','音频','2020-12-08 11:47:30','1','2021-09-22 06:57:04','70179580555558912',_binary '\0'),(1592,'MWS','mws-sound','zh_TW','音頻','2020-12-08 11:47:30','1','2021-09-22 06:57:04','70179580555558912',_binary '\0'),(1593,'MWS','mws-sound','en_US','sound','2020-12-08 11:47:30','1','2021-09-22 06:57:04','70179580555558912',_binary '\0'),(1594,'MWS','sound-wma','zh_CN','wma','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1595,'MWS','sound-wma','zh_TW','wma','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1596,'MWS','sound-wma','en_US','wma','2020-12-08 11:48:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1597,'MWS','sound-mp3','zh_CN','mp3','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1598,'MWS','sound-mp3','zh_TW','mp3','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1599,'MWS','sound-mp3','en_US','mp3','2020-12-08 11:48:59','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1600,'MWS','video-flv','zh_CN','flv','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1601,'MWS','video-flv','zh_TW','flv','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1602,'MWS','video-flv','en_US','flv','2020-12-08 11:49:29','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1603,'MWS','image-png','zh_CN','png','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1604,'MWS','image-png','zh_TW','png','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1605,'MWS','image-png','en_US','png','2020-12-08 11:49:52','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1606,'MWS','sound-wav','zh_CN','wav','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1607,'MWS','sound-wav','zh_TW','wav','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1608,'MWS','sound-wav','en_US','wav','2020-12-08 12:48:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1609,'MWS','video-AVI','zh_CN','AVI','2020-12-08 12:49:04','1','2021-03-05 08:15:59','1',_binary '\0'),(1610,'MWS','video-AVI','zh_TW','AVI','2020-12-08 12:49:04','1','2021-03-05 08:15:59','1',_binary '\0'),(1611,'MWS','video-AVI','en_US','AVI','2020-12-08 12:49:04','1','2021-03-05 08:15:59','1',_binary '\0'),(1612,'MWS','video-avi','zh_CN','avi','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1613,'MWS','video-avi','zh_TW','avi','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1614,'MWS','video-avi','en_US','avi','2020-12-08 12:49:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1615,'MWS','video-FLV','zh_CN','FLV','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1616,'MWS','video-FLV','zh_TW','FLV','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1617,'MWS','video-FLV','en_US','FLV','2020-12-08 12:50:27','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1618,'MWS','video-MP4','zh_CN','MP4','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1619,'MWS','video-MP4','zh_TW','MP4','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1620,'MWS','video-MP4','en_US','MP4','2020-12-08 12:50:56','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1621,'MWS','video-mp4','zh_CN','mp4','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1622,'MWS','video-mp4','zh_TW','mp4','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1623,'MWS','video-mp4','en_US','mp4','2020-12-08 12:51:12','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1624,'MWS','image-JEPG','zh_CN','JEPG','2020-12-08 12:51:33','1','2021-03-05 08:15:59',NULL,_binary ''),(1625,'MWS','image-JEPG','zh_TW','JEPG','2020-12-08 12:51:33','1','2021-03-05 08:15:59',NULL,_binary ''),(1626,'MWS','image-JEPG','en_US','JEPG','2020-12-08 12:51:33','1','2021-03-05 08:15:59',NULL,_binary ''),(1627,'MWS','image-jepg','zh_CN','jpeg','2020-12-08 12:52:07','1','2021-03-05 08:15:59',NULL,_binary ''),(1628,'MWS','image-jepg','zh_TW','jpeg','2020-12-08 12:52:07','1','2021-03-05 08:15:59',NULL,_binary ''),(1629,'MWS','image-jepg','en_US','jpeg','2020-12-08 12:52:07','1','2021-03-05 08:15:59',NULL,_binary ''),(1630,'MWS','image-GIF','zh_CN','GIF','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1631,'MWS','image-GIF','zh_TW','GIF','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1632,'MWS','image-GIF','en_US','GIF','2020-12-08 12:53:20','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1633,'MWS','image-jpg','zh_CN','jpg','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1634,'MWS','image-jpg','zh_TW','jpg','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1635,'MWS','image-jpg','en_US','jpg','2020-12-08 12:53:53','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1636,'MWS','file-pdf','zh_CN','pdf','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1637,'MWS','file-pdf','zh_TW','pdf','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1638,'MWS','file-pdf','en_US','pdf','2020-12-08 14:07:26','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1639,'MWS','file-txt','zh_CN','txt','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1640,'MWS','file-txt','zh_TW','txt','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1641,'MWS','file-txt','en_US','txt','2020-12-08 14:08:43','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1642,'MWS','file-doc','zh_CN','doc','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1643,'MWS','file-doc','zh_TW','doc','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1644,'MWS','file-doc','en_US','doc','2020-12-08 14:09:02','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1645,'MWS','file-docx','zh_CN','docx','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1646,'MWS','file-docx','zh_TW','docx','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1647,'MWS','file-docx','en_US','docx','2020-12-08 14:09:28','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1648,'MWS','image-gif','zh_CN','gif','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1649,'MWS','image-gif','zh_TW','gif','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1650,'MWS','image-gif','en_US','gif','2020-12-09 01:45:24','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1651,'MWS','image-BMP','zh_CN','BMP','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1652,'MWS','image-BMP','zh_TW','BMP','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1653,'MWS','image-BMP','en_US','BMP','2020-12-09 01:45:45','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1654,'MWS','image-bmp','zh_CN','bmp','2020-12-09 01:46:15','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1655,'MWS','image-bmp','zh_TW','bmp','2020-12-09 01:46:15','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1656,'MWS','image-bmp','en_US','bmp','2020-12-09 01:46:15','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1657,'MWS','image-PNG','zh_CN','PNG','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1658,'MWS','image-PNG','zh_TW','PNG','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1659,'MWS','image-PNG','en_US','PNG','2020-12-09 01:46:38','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1660,'MWS','image-JPG','zh_CN','JPG','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1661,'MWS','image-JPG','zh_TW','JPG','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1662,'MWS','image-JPG','en_US','JPG','2020-12-09 01:47:16','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1663,'MWS','file-rar','zh_CN','rar','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1664,'MWS','file-rar','zh_TW','rar','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1665,'MWS','file-rar','en_US','rar','2020-12-09 01:48:03','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1666,'MWS','file-gzip','zh_CN','gzip','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1667,'MWS','file-gzip','zh_TW','gzip','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1668,'MWS','file-gzip','en_US','gzip','2020-12-09 01:48:18','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1669,'MWS','file-tar','zh_CN','tar','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1670,'MWS','file-tar','zh_TW','tar','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1671,'MWS','file-tar','en_US','tar','2020-12-09 01:48:32','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1672,'MWS','file-7z','zh_CN','7z','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1673,'MWS','file-7z','zh_TW','7z','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1674,'MWS','file-7z','en_US','7z','2020-12-09 01:48:49','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1675,'MWS','file-TXT','zh_CN','TXT','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1676,'MWS','file-TXT','zh_TW','TXT','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1677,'MWS','file-TXT','en_US','TXT','2020-12-09 01:52:01','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1678,'MWS','image-jpeg','zh_CN','jpeg','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1679,'MWS','image-jpeg','zh_TW','jpeg','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1680,'MWS','image-jpeg','en_US','jpeg','2020-12-14 06:38:25','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1681,'MWS','image-JPEG','zh_CN','JPEG','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1682,'MWS','image-JPEG','zh_TW','JPEG','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1683,'MWS','image-JPEG','en_US','JPEG','2020-12-14 06:39:36','1','2021-03-05 08:15:59',NULL,_binary '\0'),(1684,'PLANE_MODEL','AutoTest_plane','en_US','无人机管理自动化','2020-12-28 07:50:45','1','2024-11-14 01:09:46','58582660930338816',_binary ''),(1685,'PLANE_MODEL','AutoTest_plane','zh_CN','无人机管理自动化','2020-12-28 07:50:45','1','2024-11-14 01:09:46','58582660930338816',_binary ''),(1686,'PLANE_MODEL','AutoTest_plane','zh_TW','无人机管理自动化','2020-12-28 07:50:45','1','2024-11-14 01:09:46','58582660930338816',_binary ''),(1687,'APP_TYPE','INDUSTRY_APP','zh_CN','场景应用','2020-12-09 07:19:59','1','2020-12-28 02:47:38','1',_binary '\0'),(1688,'APP_TYPE','INDUSTRY_APP','zh_TW','場景應用','2020-12-09 07:19:59','1','2020-12-28 02:47:38','1',_binary '\0'),(1689,'APP_TYPE','INDUSTRY_APP','en_US','Scene application','2020-12-09 07:19:59','1','2020-12-28 02:47:38','1',_binary '\0'),(1690,'APP_TYPE','DATA_APP','zh_CN','数据应用','2020-12-09 07:20:42','1','2023-04-18 06:14:40','1',_binary '\0'),(1691,'APP_TYPE','DATA_APP','zh_TW','數據應用','2020-12-09 07:20:42','1','2023-04-18 06:14:40','1',_binary '\0'),(1692,'APP_TYPE','DATA_APP','en_US','data application','2020-12-09 07:20:42','1','2023-04-18 06:14:40','1',_binary '\0'),(1693,'APP_TYPE','VALUE_ADDED_APP','zh_CN','增值服务','2020-12-09 07:21:06','1','2023-04-18 06:14:40','1',_binary '\0'),(1694,'APP_TYPE','VALUE_ADDED_APP','zh_TW','增值服務','2020-12-09 07:21:06','1','2023-04-18 06:14:40','1',_binary '\0'),(1695,'APP_TYPE','VALUE_ADDED_APP','en_US','value-added services','2020-12-09 07:21:06','1','2023-04-18 06:14:40','1',_binary '\0'),(1696,'PLANE_MODEL','wrjxh052','zh_CN','M300','2021-01-15 10:59:28','1','2022-09-20 08:29:32','1',_binary '\0'),(1697,'PLANE_MODEL','wrjxh052','zh_TW','M300','2021-01-15 10:59:28','1','2022-09-20 08:29:32','1',_binary '\0'),(1698,'PLANE_MODEL','wrjxh052','en_US','M300','2021-01-15 10:59:28','1','2022-09-20 08:29:32','1',_binary '\0'),(1699,'MNF','sccj019','zh_CN','珠海紫燕无人飞行器有限公司','2021-01-19 06:37:24','1','2022-09-20 08:29:05','1',_binary '\0'),(1700,'MNF','sccj019','zh_TW','珠海紫燕无人飞行器有限公司','2021-01-19 06:37:24','1','2022-09-20 08:29:05','1',_binary '\0'),(1701,'MNF','sccj019','en_US','ziyan','2021-01-19 06:37:24','1','2022-09-20 08:29:05','1',_binary '\0'),(1702,'PLANE_SHAPE','xt004','zh_CN','无人直升机','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123',_binary '\0'),(1703,'PLANE_SHAPE','xt004','zh_TW','无人直升机','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123',_binary '\0'),(1704,'PLANE_SHAPE','xt004','en_US','helicopter','2021-01-19 06:38:31','1','2022-01-20 01:16:07','123',_binary '\0'),(1705,'PLANE_MODEL','wrj053','zh_CN','河豚A1','2021-01-19 06:39:00','1','2021-01-19 06:39:08',NULL,_binary ''),(1706,'PLANE_MODEL','wrj053','zh_TW','河豚A1','2021-01-19 06:39:00','1','2021-01-19 06:39:08',NULL,_binary ''),(1707,'PLANE_MODEL','wrj053','en_US','A1','2021-01-19 06:39:00','1','2021-01-19 06:39:08',NULL,_binary ''),(1708,'PLANE_MODEL','wrjxh053','zh_CN','M2101','2021-01-19 06:39:19','1','2022-09-20 08:29:32','1',_binary '\0'),(1709,'PLANE_MODEL','wrjxh053','zh_TW','M2101','2021-01-19 06:39:19','1','2022-09-20 08:29:32','1',_binary '\0'),(1710,'PLANE_MODEL','wrjxh053','en_US','M2101','2021-01-19 06:39:19','1','2022-09-20 08:29:32','1',_binary '\0'),(1711,'ADAPT_MNF','sccj019','zh_CN','珠海紫燕无人飞行器有限公司','2021-01-23 02:21:16','1','2021-09-22 06:59:39','70179580555558912',_binary '\0'),(1712,'ADAPT_MNF','sccj019','zh_TW','珠海紫燕無人飛行器有限公司','2021-01-23 02:21:16','1','2021-09-22 06:59:39','70179580555558912',_binary '\0'),(1713,'ADAPT_MNF','sccj019','en_US','ziyan','2021-01-23 02:21:16','1','2021-09-22 06:59:39','70179580555558912',_binary '\0'),(1714,'LOAD_HNG_MODEL','jkxh010','zh_CN','S10','2021-02-01 08:55:58','291','2021-02-07 02:06:03','1',_binary '\0'),(1715,'LOAD_HNG_MODEL','jkxh010','zh_TW','S10','2021-02-01 08:55:58','291','2021-02-07 02:06:03','1',_binary '\0'),(1716,'LOAD_HNG_MODEL','jkxh010','en_US','S10','2021-02-01 08:55:58','291','2021-02-07 02:06:03','1',_binary '\0'),(1717,'LOAD_HNG_MODEL','jkxh011','zh_CN','复亚A30','2021-02-01 08:57:43','291','2021-02-07 02:05:38','1',_binary '\0'),(1718,'LOAD_HNG_MODEL','jkxh011','zh_TW','復亞A30','2021-02-01 08:57:43','291','2021-02-07 02:05:38','1',_binary '\0'),(1719,'LOAD_HNG_MODEL','jkxh011','en_US','foriaA30','2021-02-01 08:57:43','291','2021-02-07 02:05:38','1',_binary '\0'),(1720,'LOAD_HNG_MODEL','jkxh012','zh_CN','复亚A20','2021-02-01 08:58:41','291','2021-02-07 02:05:15','1',_binary '\0'),(1721,'LOAD_HNG_MODEL','jkxh012','zh_TW','復亞A20','2021-02-01 08:58:41','291','2021-02-07 02:05:15','1',_binary '\0'),(1722,'LOAD_HNG_MODEL','jkxh012','en_US','foriaA20','2021-02-01 08:58:41','291','2021-02-07 02:05:15','1',_binary '\0'),(1723,'LOAD_CAM_MODEL','xh013','zh_CN','Q30','2021-02-03 03:38:30','1',NULL,NULL,_binary '\0'),(1724,'LOAD_CAM_MODEL','xh013','zh_TW','Q30','2021-02-03 03:38:30','1',NULL,NULL,_binary '\0'),(1725,'LOAD_CAM_MODEL','xh013','en_US','Q30','2021-02-03 03:38:30','1',NULL,NULL,_binary '\0'),(1726,'AI_VIDEO','HEAD','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head','2021-02-03 07:34:57','1','2021-03-15 05:42:34','1',_binary '\0'),(1727,'AI_VIDEO','HEAD','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head','2021-02-03 07:34:57','1','2021-03-15 05:42:34','1',_binary '\0'),(1728,'AI_VIDEO','HEAD','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head','2021-02-03 07:34:57','1','2021-03-15 05:42:34','1',_binary '\0'),(1729,'AI_VIDEO','CAR','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car','2021-02-03 07:35:13','1','2021-03-15 05:42:06','1',_binary '\0'),(1730,'AI_VIDEO','CAR','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car','2021-02-03 07:35:13','1','2021-03-15 05:42:06','1',_binary '\0'),(1731,'AI_VIDEO','CAR','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car','2021-02-03 07:35:13','1','2021-03-15 05:42:06','1',_binary '\0'),(1732,'PLANE_MODEL','wrjxh054','zh_CN','翼龙2','2021-03-03 02:07:28','1','2021-09-22 07:09:13','70179580555558912',_binary '\0'),(1733,'PLANE_MODEL','wrjxh054','zh_TW','翼龍2','2021-03-03 02:07:28','1','2021-09-22 07:09:13','70179580555558912',_binary '\0'),(1734,'PLANE_MODEL','wrjxh054','en_US','yi long 2','2021-03-03 02:07:28','1','2021-09-22 07:09:13','70179580555558912',_binary '\0'),(1735,'LOAD_CAM_MODEL','xh014','zh_CN','光电吊舱','2021-03-03 02:24:03','1',NULL,NULL,_binary '\0'),(1736,'LOAD_CAM_MODEL','xh014','zh_TW','光电吊舱','2021-03-03 02:24:03','1',NULL,NULL,_binary '\0'),(1737,'LOAD_CAM_MODEL','xh014','en_US','光电吊舱','2021-03-03 02:24:03','1',NULL,NULL,_binary '\0'),(1738,'LOAD_CAM_MODEL','xh099','zh_CN','纵横光电吊舱','2021-03-03 05:33:51','1',NULL,NULL,_binary '\0'),(1739,'LOAD_CAM_MODEL','xh099','zh_TW','纵横光电吊舱','2021-03-03 05:33:51','1',NULL,NULL,_binary '\0'),(1740,'LOAD_CAM_MODEL','xh099','en_US','CAMERA JOUAV','2021-03-03 05:33:51','1',NULL,NULL,_binary '\0'),(1741,'DEV_ACTION_MODEL','zoom','zh_CN','变焦值','2021-03-10 07:13:17','1','2022-11-16 06:28:48','188243415207510016',_binary '\0'),(1742,'DEV_ACTION_MODEL','zoom','zh_TW','變焦值','2021-03-10 07:13:17','1','2022-11-16 06:28:48','188243415207510016',_binary '\0'),(1743,'DEV_ACTION_MODEL','zoom','en_US','Zoom value','2021-03-10 07:13:17','1','2022-11-16 06:28:48','188243415207510016',_binary '\0'),(1744,'LOAD_CAM_MODEL','xh100','zh_CN','tiantu1','2021-03-12 03:15:37','70213995537104896','2021-03-12 07:55:21','70213995537104896',_binary ''),(1745,'LOAD_CAM_MODEL','xh100','zh_TW','tiantu1','2021-03-12 03:15:37','70213995537104896','2021-03-12 07:55:21','70213995537104896',_binary ''),(1746,'LOAD_CAM_MODEL','xh100','en_US','tiantu1','2021-03-12 03:15:37','70213995537104896','2021-03-12 07:55:21','70213995537104896',_binary ''),(1747,'PLATFORM_TYPE','PLATFORM_CLOUD','en_US','China Mobile Link-Cloud','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1748,'PLATFORM_TYPE','PLATFORM_CLOUD','zh_CN','中移凌云平台','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1749,'PLATFORM_TYPE','PLATFORM_CLOUD','zh_TW','中移淩雲','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1750,'PLATFORM_TYPE','PLATFORM_OPEN','en_US','Open platform','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1751,'PLATFORM_TYPE','PLATFORM_OPEN','zh_CN','开放平台','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1752,'PLATFORM_TYPE','PLATFORM_OPEN','zh_TW','開放平臺','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1753,'PLATFORM_TYPE','PLATFORM_ADMIN','en_US','Operation platform','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1754,'PLATFORM_TYPE','PLATFORM_ADMIN','zh_CN','运营平台','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1755,'PLATFORM_TYPE','PLATFORM_ADMIN','zh_TW','運營平臺','2021-03-12 05:46:25','1',NULL,NULL,_binary '\0'),(1756,'FEEDBACK_TYPE','OPTIMIZATION_SUGGESTIONS','en_US','Optimization suggestions','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1757,'FEEDBACK_TYPE','OPTIMIZATION_SUGGESTIONS','zh_CN','优化建议','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1758,'FEEDBACK_TYPE','OPTIMIZATION_SUGGESTIONS','zh_TW','優化建議','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1759,'FEEDBACK_TYPE','ABNORMAL_FUNCTION','en_US','Abnormal function','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1760,'FEEDBACK_TYPE','ABNORMAL_FUNCTION','zh_CN','功能异常','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1761,'FEEDBACK_TYPE','ABNORMAL_FUNCTION','zh_TW','功能異常','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1762,'FEEDBACK_TYPE','OTHER_FEEDBACK','en_US','Other feedback','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1763,'FEEDBACK_TYPE','OTHER_FEEDBACK','zh_CN','其他反馈','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1764,'FEEDBACK_TYPE','OTHER_FEEDBACK','zh_TW','其他反饋','2021-03-12 05:46:56','1',NULL,NULL,_binary '\0'),(1765,'213','123213','zh_CN','213','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11',NULL,_binary ''),(1766,'213','123213','zh_TW','123','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11',NULL,_binary ''),(1767,'213','123213','en_US','213','2021-03-12 07:15:08','70213995537104896','2021-03-12 07:15:11',NULL,_binary ''),(1768,'test','test4','zh_CN','test1','2021-03-19 06:06:27','1','2021-03-19 06:06:41','1',_binary ''),(1769,'test','test4','zh_TW','test21','2021-03-19 06:06:27','1','2021-03-19 06:06:41','1',_binary ''),(1770,'test','test4','en_US','test31','2021-03-19 06:06:27','1','2021-03-19 06:06:41','1',_binary ''),(1771,'QUOTA_TYPE','LOAD_NUMBER','en_US','Loads of number','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1772,'QUOTA_TYPE','LOAD_NUMBER','zh_CN','载荷数量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1773,'QUOTA_TYPE','LOAD_NUMBER','zh_TW','載荷數量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1774,'QUOTA_TYPE','SUB_ACCOUNT_NUMBER','en_US','Sub account number','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1775,'QUOTA_TYPE','SUB_ACCOUNT_NUMBER','zh_CN','子账号数量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1776,'QUOTA_TYPE','SUB_ACCOUNT_NUMBER','zh_TW','子賬號數量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1777,'QUOTA_TYPE','AIR_LINE_NUMBER','en_US','Number of routes','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1778,'QUOTA_TYPE','AIR_LINE_NUMBER','zh_CN','航线数量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1779,'QUOTA_TYPE','AIR_LINE_NUMBER','zh_TW','航線數量','2021-03-19 07:05:52','1','2022-04-27 03:39:57','1',_binary '\0'),(1780,'QUOTA_TYPE','UAV_NUMBER','en_US','Number of UAVs','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1781,'QUOTA_TYPE','UAV_NUMBER','zh_CN','无人机数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1782,'QUOTA_TYPE','UAV_NUMBER','zh_TW','無人機數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1783,'QUOTA_TYPE','HANGAR_NUMBER','en_US','Number of Hangars','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1784,'QUOTA_TYPE','HANGAR_NUMBER','zh_CN','机库数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1785,'QUOTA_TYPE','HANGAR_NUMBER','zh_TW','機庫數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1786,'QUOTA_TYPE','JOB_NUMBER','en_US','Number of jobs','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1787,'QUOTA_TYPE','JOB_NUMBER','zh_CN','作业数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1788,'QUOTA_TYPE','JOB_NUMBER','zh_TW','作業數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1789,'QUOTA_TYPE','UAV_ONLINE_NUMBER','en_US','Number of UAVs Online','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1790,'QUOTA_TYPE','UAV_ONLINE_NUMBER','zh_CN','无人机在线数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1791,'QUOTA_TYPE','UAV_ONLINE_NUMBER','zh_TW','無人機在線數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1792,'QUOTA_TYPE','TEMP_AIRSPACE_NUMBER','en_US','Number of temporary airspace','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1793,'QUOTA_TYPE','TEMP_AIRSPACE_NUMBER','zh_CN','临时空域数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1794,'QUOTA_TYPE','TEMP_AIRSPACE_NUMBER','zh_TW','臨時空域數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1795,'QUOTA_TYPE','HANGAR_ONLINE_NUMBER','en_US','Number of hangars Online','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1796,'QUOTA_TYPE','HANGAR_ONLINE_NUMBER','zh_CN','机库在线数量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1797,'QUOTA_TYPE','HANGAR_ONLINE_NUMBER','zh_TW','機庫在線數量','2021-03-19 07:05:53','1','2022-04-27 03:39:57','1',_binary '\0'),(1798,'NJ_COMPANY','CHONGQINGNK','en_US','10','2021-03-19 07:06:15','1',NULL,NULL,_binary '\0'),(1799,'NJ_COMPANY','CHONGQINGNK','zh_CN','10','2021-03-19 07:06:15','1',NULL,NULL,_binary '\0'),(1800,'NJ_COMPANY','CHONGQINGNK','zh_TW','10','2021-03-19 07:06:15','1',NULL,NULL,_binary '\0'),(1801,'SCENCE_TYPE','LINE_INSPECTION','en_US','Line inspection','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1802,'SCENCE_TYPE','LINE_INSPECTION','zh_CN','线路巡检','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1803,'SCENCE_TYPE','LINE_INSPECTION','zh_TW','線路巡檢','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1804,'SCENCE_TYPE','RIVER_DETECTION','en_US','River detection','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1805,'SCENCE_TYPE','RIVER_DETECTION','zh_CN','河道检测','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1806,'SCENCE_TYPE','RIVER_DETECTION','zh_TW','河道檢測','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1807,'SCENCE_TYPE','ROAD_DETECTION','en_US','Road detection','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1808,'SCENCE_TYPE','ROAD_DETECTION','zh_CN','道路检测','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1809,'SCENCE_TYPE','ROAD_DETECTION','zh_TW','道路檢測','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1810,'SCENCE_TYPE','FARMLAND_SCENCE','en_US','Farmland scene','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1811,'SCENCE_TYPE','FARMLAND_SCENCE','zh_CN','农田场景','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1812,'SCENCE_TYPE','FARMLAND_SCENCE','zh_TW','農田場景','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1813,'SCENCE_TYPE','ROUTE_PLANNING','en_US','3D route planning','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1814,'SCENCE_TYPE','ROUTE_PLANNING','zh_CN','三维航线规划','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1815,'SCENCE_TYPE','ROUTE_PLANNING','zh_TW','三維航線規劃','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1816,'SCENCE_TYPE','OTHER_SCENCE','en_US','other','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1817,'SCENCE_TYPE','OTHER_SCENCE','zh_CN','其他','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1818,'SCENCE_TYPE','OTHER_SCENCE','zh_TW','其他','2021-03-19 07:06:37','1',NULL,NULL,_binary '\0'),(1819,'NJ_VIDEO','视频1','zh_CN','https://live.demo.uavcmlc.com:18000/live/dq.flv','2021-03-19 07:19:45','1','2021-03-23 01:38:28','1',_binary ''),(1820,'NJ_VIDEO','视频1','zh_TW','https://live.demo.uavcmlc.com:18000/live/dq.flv','2021-03-19 07:19:45','1','2021-03-23 01:38:28','1',_binary ''),(1821,'NJ_VIDEO','视频1','en_US','https://live.demo.uavcmlc.com:18000/live/dq.flv','2021-03-19 07:19:45','1','2021-03-23 01:38:28','1',_binary ''),(1822,'NJ_VIDEO','视频一','en_US','webrtc://live.demo.uavcmlc.com:18000/live/nky002','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1',_binary '\0'),(1823,'NJ_VIDEO','视频一','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/nky002','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1',_binary '\0'),(1824,'NJ_VIDEO','视频一','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/nky002','2021-03-23 01:24:56','1','2021-03-23 01:35:37','1',_binary '\0'),(1825,'MISSION_MANAGEMENT','FLIGHT_DETAIL_PAGE_URL','zh_CN','飞行监视详情','2021-03-31 09:22:03','89730635001757696','2021-04-01 00:48:57','89730635001757696',_binary '\0'),(1826,'MISSION_MANAGEMENT','FLIGHT_DETAIL_PAGE_URL','zh_TW','飛行監視詳情','2021-03-31 09:22:03','89730635001757696','2021-04-01 00:48:57','89730635001757696',_binary '\0'),(1827,'MISSION_MANAGEMENT','FLIGHT_DETAIL_PAGE_URL','en_US','Flight detail','2021-03-31 09:22:03','89730635001757696','2021-04-01 00:48:57','89730635001757696',_binary '\0'),(1828,'MISSION_MANAGEMENT','TIMING_MISSION_DETAIL_URL','zh_CN','定时作业详情','2021-03-31 09:22:56','89730635001757696','2021-04-01 00:49:25','89730635001757696',_binary '\0'),(1829,'MISSION_MANAGEMENT','TIMING_MISSION_DETAIL_URL','zh_TW','定時作業詳情','2021-03-31 09:22:56','89730635001757696','2021-04-01 00:49:25','89730635001757696',_binary '\0'),(1830,'MISSION_MANAGEMENT','TIMING_MISSION_DETAIL_URL','en_US','Timing missin detail','2021-03-31 09:22:56','89730635001757696','2021-04-01 00:49:25','89730635001757696',_binary '\0'),(1831,'DEV_ACTION_MODEL','temperPhoto','zh_CN','测温拍照','2021-03-31 09:24:03','89730635001757696',NULL,NULL,_binary '\0'),(1832,'DEV_ACTION_MODEL','temperPhoto','zh_TW','测温拍照','2021-03-31 09:24:03','89730635001757696',NULL,NULL,_binary '\0'),(1833,'DEV_ACTION_MODEL','temperPhoto','en_US','Temperature photo','2021-03-31 09:24:03','89730635001757696',NULL,NULL,_binary '\0'),(1834,'DEV_ACTION_MODEL','temperPhotoDesc','zh_CN','测温描述','2021-03-31 09:24:37','89730635001757696',NULL,NULL,_binary '\0'),(1835,'DEV_ACTION_MODEL','temperPhotoDesc','zh_TW','測溫描述','2021-03-31 09:24:37','89730635001757696',NULL,NULL,_binary '\0'),(1836,'DEV_ACTION_MODEL','temperPhotoDesc','en_US','Temper photo desc','2021-03-31 09:24:37','89730635001757696',NULL,NULL,_binary '\0'),(1837,'DEV_ACTION_MODEL','picDesc','zh_CN','拍照描述','2021-03-31 09:25:30','89730635001757696','2023-05-08 07:08:36','173818970422378496',_binary '\0'),(1838,'DEV_ACTION_MODEL','picDesc','zh_TW','拍照描述','2021-03-31 09:25:30','89730635001757696','2023-05-08 07:08:36','173818970422378496',_binary '\0'),(1839,'DEV_ACTION_MODEL','picDesc','en_US','Pic desc','2021-03-31 09:25:30','89730635001757696','2023-05-08 07:08:35','173818970422378496',_binary '\0'),(1840,'DEV_ACTION_MODEL','startMeasurement','zh_CN','开始测温','2021-03-31 09:30:36','89730635001757696',NULL,NULL,_binary '\0'),(1841,'DEV_ACTION_MODEL','startMeasurement','zh_TW','開始測溫','2021-03-31 09:30:36','89730635001757696',NULL,NULL,_binary '\0'),(1842,'DEV_ACTION_MODEL','startMeasurement','en_US','Start temperature measurement','2021-03-31 09:30:36','89730635001757696',NULL,NULL,_binary '\0'),(1843,'DEV_ACTION_MODEL','stopMeasurement','zh_CN','停止测温','2021-03-31 09:31:29','89730635001757696',NULL,NULL,_binary '\0'),(1844,'DEV_ACTION_MODEL','stopMeasurement','zh_TW','停止測溫','2021-03-31 09:31:29','89730635001757696',NULL,NULL,_binary '\0'),(1845,'DEV_ACTION_MODEL','stopMeasurement','en_US','Stop temperature measurement','2021-03-31 09:31:29','89730635001757696',NULL,NULL,_binary '\0'),(1846,'DEV_ACTION_MODEL','temperatureDetect','zh_CN','温度监测','2021-03-31 09:32:16','89730635001757696',NULL,NULL,_binary '\0'),(1847,'DEV_ACTION_MODEL','temperatureDetect','zh_TW','溫度監測','2021-03-31 09:32:16','89730635001757696',NULL,NULL,_binary '\0'),(1848,'DEV_ACTION_MODEL','temperatureDetect','en_US','Temperature detect','2021-03-31 09:32:16','89730635001757696',NULL,NULL,_binary '\0'),(1849,'DEV_ACTION_MODEL','maxWarning','zh_CN','最高告警','2021-03-31 09:33:07','89730635001757696',NULL,NULL,_binary '\0'),(1850,'DEV_ACTION_MODEL','maxWarning','zh_TW','最高告警','2021-03-31 09:33:07','89730635001757696',NULL,NULL,_binary '\0'),(1851,'DEV_ACTION_MODEL','maxWarning','en_US','Max warning','2021-03-31 09:33:07','89730635001757696',NULL,NULL,_binary '\0'),(1852,'DEV_ACTION_MODEL','minWarning','zh_CN','最低告警','2021-03-31 09:33:42','89730635001757696',NULL,NULL,_binary '\0'),(1853,'DEV_ACTION_MODEL','minWarning','zh_TW','最低告警','2021-03-31 09:33:42','89730635001757696',NULL,NULL,_binary '\0'),(1854,'DEV_ACTION_MODEL','minWarning','en_US','Min warning','2021-03-31 09:33:42','89730635001757696',NULL,NULL,_binary '\0'),(1855,'DEV_ACTION_MODEL','temperatureDetectDesc','zh_CN','温度监测描述','2021-03-31 09:34:23','89730635001757696',NULL,NULL,_binary '\0'),(1856,'DEV_ACTION_MODEL','temperatureDetectDesc','zh_TW','溫度監測描述','2021-03-31 09:34:23','89730635001757696',NULL,NULL,_binary '\0'),(1857,'DEV_ACTION_MODEL','temperatureDetectDesc','en_US','Temperature detect desc','2021-03-31 09:34:23','89730635001757696',NULL,NULL,_binary '\0'),(1858,'ss','r','zh_CN','r','2021-04-01 01:26:07','1','2021-04-01 01:26:34',NULL,_binary ''),(1859,'ss','r','zh_TW','r','2021-04-01 01:26:07','1','2021-04-01 01:26:34',NULL,_binary ''),(1860,'ss','r','en_US','r','2021-04-01 01:26:07','1','2021-04-01 01:26:34',NULL,_binary ''),(1861,'ss','y','zh_CN','t','2021-04-01 01:26:13','1','2021-04-01 01:26:36',NULL,_binary ''),(1862,'ss','y','zh_TW','y','2021-04-01 01:26:13','1','2021-04-01 01:26:36',NULL,_binary ''),(1863,'ss','y','en_US','y','2021-04-01 01:26:13','1','2021-04-01 01:26:36',NULL,_binary ''),(1864,'ss','u','zh_CN','u','2021-04-01 01:26:19','1','2021-04-01 01:26:38',NULL,_binary ''),(1865,'ss','u','zh_TW','u','2021-04-01 01:26:19','1','2021-04-01 01:26:38',NULL,_binary ''),(1866,'ss','u','en_US','u','2021-04-01 01:26:19','1','2021-04-01 01:26:38',NULL,_binary ''),(1867,'AI_VIDEO','CAR_UAS00010353','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car1','2021-04-06 08:56:05','1',NULL,NULL,_binary '\0'),(1868,'AI_VIDEO','CAR_UAS00010353','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car1','2021-04-06 08:56:05','1',NULL,NULL,_binary '\0'),(1869,'AI_VIDEO','CAR_UAS00010353','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car1','2021-04-06 08:56:05','1',NULL,NULL,_binary '\0'),(1870,'AI_VIDEO','HEAD_UAS00010353','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head1','2021-04-06 08:56:35','1',NULL,NULL,_binary '\0'),(1871,'AI_VIDEO','HEAD_UAS00010353','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head1','2021-04-06 08:56:35','1',NULL,NULL,_binary '\0'),(1872,'AI_VIDEO','HEAD_UAS00010353','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head1','2021-04-06 08:56:35','1',NULL,NULL,_binary '\0'),(1873,'DEMO_STATUS','1','en_US','{\"netWorkMode\":\"5G\",\"netWorkLevel\":\"4\"}','2021-04-07 08:14:58','123',NULL,NULL,_binary '\0'),(1874,'DEMO_STATUS','1','zh_CN','{\"netWorkMode\":\"5G\",\"netWorkLevel\":\"4\"}','2021-04-07 08:14:58','123',NULL,NULL,_binary '\0'),(1875,'DEMO_STATUS','1','zh_TW','{\"netWorkMode\":\"5G\",\"netWorkLevel\":\"4\"}','2021-04-07 08:14:58','123',NULL,NULL,_binary '\0'),(1876,'LOAD_CAM_MODEL','xh009','zh_CN','禅思H20T','2021-04-08 05:53:00','89730635001757696',NULL,NULL,_binary '\0'),(1877,'LOAD_CAM_MODEL','xh009','zh_TW','禅思H20T','2021-04-08 05:53:00','89730635001757696',NULL,NULL,_binary '\0'),(1878,'LOAD_CAM_MODEL','xh009','en_US','禅思H20T','2021-04-08 05:53:00','89730635001757696',NULL,NULL,_binary '\0'),(1879,'PLANE_MODEL','wrjxh055','zh_CN','M600','2021-04-15 06:00:26','1',NULL,NULL,_binary '\0'),(1880,'PLANE_MODEL','wrjxh055','zh_TW','M600','2021-04-15 06:00:26','1',NULL,NULL,_binary '\0'),(1881,'PLANE_MODEL','wrjxh055','en_US','M600','2021-04-15 06:00:26','1',NULL,NULL,_binary '\0'),(1882,'test','test','zh_CN','test','2021-04-21 03:21:10','1',NULL,NULL,_binary '\0'),(1883,'test','test','zh_TW','test','2021-04-21 03:21:10','1',NULL,NULL,_binary '\0'),(1884,'test','test','en_US','test','2021-04-21 03:21:10','1',NULL,NULL,_binary '\0'),(1885,'test','test1','zh_CN','test1','2021-04-21 03:21:19','1',NULL,NULL,_binary '\0'),(1886,'test','test1','zh_TW','test1','2021-04-21 03:21:19','1',NULL,NULL,_binary '\0'),(1887,'test','test1','en_US','test1','2021-04-21 03:21:19','1',NULL,NULL,_binary '\0'),(1888,'AI_VIDEO','HEAD_UAS00010467','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head3','2021-05-11 01:28:21','1',NULL,NULL,_binary '\0'),(1889,'AI_VIDEO','HEAD_UAS00010467','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head3','2021-05-11 01:28:21','1',NULL,NULL,_binary '\0'),(1890,'AI_VIDEO','HEAD_UAS00010467','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head3','2021-05-11 01:28:21','1',NULL,NULL,_binary '\0'),(1891,'AI_VIDEO','CAR_UAS00010467','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car3','2021-05-11 01:29:13','1',NULL,NULL,_binary '\0'),(1892,'AI_VIDEO','CAR_UAS00010467','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car3','2021-05-11 01:29:13','1',NULL,NULL,_binary '\0'),(1893,'AI_VIDEO','CAR_UAS00010467','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car3','2021-05-11 01:29:13','1',NULL,NULL,_binary '\0'),(1894,'AI_VIDEO','CAR_UAS00010402','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car4','2021-05-18 10:45:06','1',NULL,NULL,_binary '\0'),(1895,'AI_VIDEO','CAR_UAS00010402','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car4','2021-05-18 10:45:06','1',NULL,NULL,_binary '\0'),(1896,'AI_VIDEO','CAR_UAS00010402','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car4','2021-05-18 10:45:06','1',NULL,NULL,_binary '\0'),(1897,'AI_VIDEO','HEAD_UAS00010402','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head4','2021-05-18 10:45:44','1',NULL,NULL,_binary '\0'),(1898,'AI_VIDEO','HEAD_UAS00010402','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head4','2021-05-18 10:45:44','1',NULL,NULL,_binary '\0'),(1899,'AI_VIDEO','HEAD_UAS00010402','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head4','2021-05-18 10:45:44','1',NULL,NULL,_binary '\0'),(1900,'MNF','sccj020','zh_CN','北京佰才邦技术股份有限公司','2021-05-20 02:47:55','1',NULL,NULL,_binary '\0'),(1901,'MNF','sccj020','zh_TW','北京佰才邦技术股份有限公司','2021-05-20 02:47:55','1',NULL,NULL,_binary '\0'),(1902,'MNF','sccj020','en_US','BayCell','2021-05-20 02:47:55','1',NULL,NULL,_binary '\0'),(1903,'PLANE_MODEL','wrjxh056','zh_CN','SkyCells-T3kg100m','2021-05-20 02:49:11','1',NULL,NULL,_binary '\0'),(1904,'PLANE_MODEL','wrjxh056','zh_TW','SkyCells-T3kg100m','2021-05-20 02:49:11','1',NULL,NULL,_binary '\0'),(1905,'PLANE_MODEL','wrjxh056','en_US','SkyCells-T3kg100m','2021-05-20 02:49:11','1',NULL,NULL,_binary '\0'),(1906,'ADAPT_MNF','sccj020','zh_CN','佰才邦','2021-05-20 02:49:41','1','2021-09-22 06:58:28','70179580555558912',_binary '\0'),(1907,'ADAPT_MNF','sccj020','zh_TW','佰才邦','2021-05-20 02:49:41','1','2021-09-22 06:58:28','70179580555558912',_binary '\0'),(1908,'ADAPT_MNF','sccj020','en_US','bai cai bang','2021-05-20 02:49:41','1','2021-09-22 06:58:28','70179580555558912',_binary '\0'),(1909,'LOAD_CAM_MODEL','xj015','zh_CN','Z10N','2021-05-20 02:50:25','1',NULL,NULL,_binary '\0'),(1910,'LOAD_CAM_MODEL','xj015','zh_TW','Z10N','2021-05-20 02:50:25','1',NULL,NULL,_binary '\0'),(1911,'LOAD_CAM_MODEL','xj015','en_US','Z10N','2021-05-20 02:50:25','1',NULL,NULL,_binary '\0'),(1912,'DEV_ACTION_MODEL','electricInspection','zh_CN','电力巡检','2021-05-24 07:08:50','89730635001757696',NULL,NULL,_binary '\0'),(1913,'DEV_ACTION_MODEL','electricInspection','zh_TW','電力巡檢','2021-05-24 07:08:50','89730635001757696',NULL,NULL,_binary '\0'),(1914,'DEV_ACTION_MODEL','electricInspection','en_US','Electric inspection','2021-05-24 07:08:50','89730635001757696',NULL,NULL,_binary '\0'),(1915,'DEV_ACTION_MODEL','relativePosition','zh_CN','相对位置','2021-05-24 07:09:26','89730635001757696',NULL,NULL,_binary '\0'),(1916,'DEV_ACTION_MODEL','relativePosition','zh_TW','相對位置','2021-05-24 07:09:26','89730635001757696',NULL,NULL,_binary '\0'),(1917,'DEV_ACTION_MODEL','relativePosition','en_US','Relative position','2021-05-24 07:09:26','89730635001757696',NULL,NULL,_binary '\0'),(1918,'DEV_ACTION_MODEL','partLabel','zh_CN','部件标签','2021-05-24 07:10:00','89730635001757696',NULL,NULL,_binary '\0'),(1919,'DEV_ACTION_MODEL','partLabel','zh_TW','部件标签','2021-05-24 07:10:00','89730635001757696',NULL,NULL,_binary '\0'),(1920,'DEV_ACTION_MODEL','partLabel','en_US','Part label','2021-05-24 07:10:00','89730635001757696',NULL,NULL,_binary '\0'),(1921,'DEV_ACTION_MODEL','towerSide','zh_CN','塔侧','2021-05-24 07:10:40','89730635001757696',NULL,NULL,_binary '\0'),(1922,'DEV_ACTION_MODEL','towerSide','zh_TW','塔側','2021-05-24 07:10:40','89730635001757696',NULL,NULL,_binary '\0'),(1923,'DEV_ACTION_MODEL','towerSide','en_US','Tower side','2021-05-24 07:10:40','89730635001757696',NULL,NULL,_binary '\0'),(1924,'DEV_ACTION_MODEL','phase','zh_CN','相位','2021-05-24 07:11:19','89730635001757696',NULL,NULL,_binary '\0'),(1925,'DEV_ACTION_MODEL','phase','zh_TW','相位','2021-05-24 07:11:19','89730635001757696',NULL,NULL,_binary '\0'),(1926,'DEV_ACTION_MODEL','phase','en_US','Phase','2021-05-24 07:11:19','89730635001757696',NULL,NULL,_binary '\0'),(1927,'DEV_ACTION_MODEL','sequenceNum','zh_CN','序号','2021-05-24 07:11:44','89730635001757696',NULL,NULL,_binary '\0'),(1928,'DEV_ACTION_MODEL','sequenceNum','zh_TW','序號','2021-05-24 07:11:44','89730635001757696',NULL,NULL,_binary '\0'),(1929,'DEV_ACTION_MODEL','sequenceNum','en_US','Sequence num','2021-05-24 07:11:44','89730635001757696',NULL,NULL,_binary '\0'),(1930,'DEV_ACTION_MODEL','towerCode','zh_CN','杆塔编号','2021-05-24 07:12:36','89730635001757696',NULL,NULL,_binary '\0'),(1931,'DEV_ACTION_MODEL','towerCode','zh_TW','塔幹編號','2021-05-24 07:12:36','89730635001757696',NULL,NULL,_binary '\0'),(1932,'DEV_ACTION_MODEL','towerCode','en_US','Tower code','2021-05-24 07:12:36','89730635001757696',NULL,NULL,_binary '\0'),(1933,'DEV_ACTION_MODEL','voltage','zh_CN','线路电压','2021-05-24 07:12:59','89730635001757696',NULL,NULL,_binary '\0'),(1934,'DEV_ACTION_MODEL','voltage','zh_TW','線路電壓','2021-05-24 07:12:59','89730635001757696',NULL,NULL,_binary '\0'),(1935,'DEV_ACTION_MODEL','voltage','en_US','Voltage','2021-05-24 07:12:59','89730635001757696',NULL,NULL,_binary '\0'),(1936,'DEV_ACTION_MODEL','lineName','zh_CN','线路名称','2021-05-24 07:13:24','89730635001757696',NULL,NULL,_binary '\0'),(1937,'DEV_ACTION_MODEL','lineName','zh_TW','線路名稱','2021-05-24 07:13:24','89730635001757696',NULL,NULL,_binary '\0'),(1938,'DEV_ACTION_MODEL','lineName','en_US','Line name','2021-05-24 07:13:24','89730635001757696',NULL,NULL,_binary '\0'),(1939,'AI_VIDEO','HEAD_UAS00010511','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head5','2021-05-25 08:55:40','1',NULL,NULL,_binary '\0'),(1940,'AI_VIDEO','HEAD_UAS00010511','zh_TW',' webrtc://live.demo.uavcmlc.com:18000/live/head5','2021-05-25 08:55:40','1',NULL,NULL,_binary '\0'),(1941,'AI_VIDEO','HEAD_UAS00010511','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head5','2021-05-25 08:55:40','1',NULL,NULL,_binary '\0'),(1942,'AI_VIDEO','CAR_UAS00010511','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car5','2021-05-25 08:56:36','1',NULL,NULL,_binary '\0'),(1943,'AI_VIDEO','CAR_UAS00010511','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car5','2021-05-25 08:56:36','1',NULL,NULL,_binary '\0'),(1944,'AI_VIDEO','CAR_UAS00010511','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car5','2021-05-25 08:56:36','1',NULL,NULL,_binary '\0'),(1945,'testt','aa','zh_CN','a','2021-05-26 05:51:14','292','2021-05-26 05:51:49',NULL,_binary ''),(1946,'testt','aa','zh_TW','a','2021-05-26 05:51:14','292','2021-05-26 05:51:49',NULL,_binary ''),(1947,'testt','aa','en_US','a','2021-05-26 05:51:14','292','2021-05-26 05:51:49',NULL,_binary ''),(1948,'testt','bb','zh_CN','b','2021-05-26 05:51:23','292','2021-05-26 05:51:47',NULL,_binary ''),(1949,'testt','bb','en_US','b','2021-05-26 05:51:23','292','2021-05-26 05:51:47',NULL,_binary ''),(1950,'testt','bb','zh_TW','b','2021-05-26 05:51:23','292','2021-05-26 05:51:47',NULL,_binary ''),(1951,'testt','aaaa','zh_CN','aa','2021-05-26 05:51:34','292','2021-05-26 05:51:47',NULL,_binary ''),(1952,'testt','aaaa','zh_TW','aa','2021-05-26 05:51:34','292','2021-05-26 05:51:47',NULL,_binary ''),(1953,'testt','aaaa','en_US','aaa','2021-05-26 05:51:34','292','2021-05-26 05:51:47',NULL,_binary ''),(1954,'DEV_MODEL_HUBBLE','otherLoad','en_US','17','2021-06-02 07:11:42','123','2023-04-06 03:05:42','1',_binary ''),(1955,'DEV_MODEL_HUBBLE','otherLoad','zh_CN','17','2021-06-02 07:11:42','123','2023-04-06 03:05:42','1',_binary ''),(1956,'DEV_MODEL_HUBBLE','otherLoad','zh_TW','17','2021-06-02 07:11:42','123','2023-04-06 03:05:42','1',_binary ''),(1957,'DEV_MODEL_HUBBLE','commonLoad','en_US','16','2021-06-02 07:11:42','123','2021-06-16 09:22:05','1',_binary '\0'),(1958,'DEV_MODEL_HUBBLE','commonLoad','zh_CN','16','2021-06-02 07:11:42','123','2021-06-16 09:22:05','1',_binary '\0'),(1959,'DEV_MODEL_HUBBLE','commonLoad','zh_TW','16','2021-06-02 07:11:42','123','2021-06-16 09:22:05','1',_binary '\0'),(1960,'DEV_MODEL_HUBBLE','xh003','en_US','14','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1961,'DEV_MODEL_HUBBLE','xh003','zh_CN','14','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1962,'DEV_MODEL_HUBBLE','xh003','zh_TW','14','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1963,'DEV_MODEL_HUBBLE','xh005','en_US','13','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1964,'DEV_MODEL_HUBBLE','xh005','zh_CN','13','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1965,'DEV_MODEL_HUBBLE','xh005','zh_TW','13','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1966,'DEV_MODEL_HUBBLE','xh006','en_US','11','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1967,'DEV_MODEL_HUBBLE','xh006','zh_CN','11','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1968,'DEV_MODEL_HUBBLE','xh006','zh_TW','11','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1969,'DEV_MODEL_HUBBLE','xh001','en_US','10','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1970,'DEV_MODEL_HUBBLE','xh001','zh_CN','10','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1971,'DEV_MODEL_HUBBLE','xh001','zh_TW','10','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1972,'DEV_MODEL_HUBBLE','otherUav2','en_US','5','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1973,'DEV_MODEL_HUBBLE','otherUav2','zh_CN','5','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1974,'DEV_MODEL_HUBBLE','otherUav2','zh_TW','5','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1975,'DEV_MODEL_HUBBLE','otherUav1','en_US','4','2021-06-02 07:11:42','123','2023-04-06 03:04:39','123',_binary ''),(1976,'DEV_MODEL_HUBBLE','otherUav1','zh_CN','4','2021-06-02 07:11:42','123','2023-04-06 03:04:39','123',_binary ''),(1977,'DEV_MODEL_HUBBLE','otherUav1','zh_TW','4','2021-06-02 07:11:42','123','2023-04-06 03:04:39','123',_binary ''),(1978,'DEV_MODEL_HUBBLE','commonUav','en_US','3','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1979,'DEV_MODEL_HUBBLE','commonUav','zh_CN','3','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1980,'DEV_MODEL_HUBBLE','commonUav','zh_TW','3','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1981,'DEV_MODEL_HUBBLE','wrjxh059','en_US','2','2021-06-02 07:11:42','123','2021-06-16 09:08:42','123',_binary ''),(1982,'DEV_MODEL_HUBBLE','wrjxh059','zh_CN','2','2021-06-02 07:11:42','123','2021-06-16 09:08:42','123',_binary ''),(1983,'DEV_MODEL_HUBBLE','wrjxh059','zh_TW','2','2021-06-02 07:11:42','123','2021-06-16 09:08:42','123',_binary ''),(1984,'DEV_MODEL_HUBBLE','wrjxh047','en_US','1','2021-06-02 07:11:42','123','2021-06-16 09:08:39','123',_binary ''),(1985,'DEV_MODEL_HUBBLE','wrjxh047','zh_CN','1','2021-06-02 07:11:42','123','2021-06-16 09:08:39','123',_binary ''),(1986,'DEV_MODEL_HUBBLE','wrjxh047','zh_TW','1','2021-06-02 07:11:42','123','2021-06-16 09:08:39','123',_binary ''),(1987,'DEV_MODEL_HUBBLE','wrjxh006','en_US','0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1988,'DEV_MODEL_HUBBLE','wrjxh006','zh_CN','0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1989,'DEV_MODEL_HUBBLE','wrjxh006','zh_TW','0','2021-06-02 07:11:42','123','2021-06-16 08:14:16','123',_binary '\0'),(1990,'ADAPT_MNF','sccj002','zh_CN','纵横','2021-06-02 07:17:16','1','2021-09-22 06:57:38','70179580555558912',_binary '\0'),(1991,'ADAPT_MNF','sccj002','zh_TW','縂橫','2021-06-02 07:17:16','1','2021-09-22 06:57:38','70179580555558912',_binary '\0'),(1992,'ADAPT_MNF','sccj002','en_US','zongheng','2021-06-02 07:17:16','1','2021-09-22 06:57:38','70179580555558912',_binary '\0'),(1993,'AI_VIDEO','CAR_UAS00010487','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/car6','2021-06-03 10:11:22','123',NULL,NULL,_binary '\0'),(1994,'AI_VIDEO','CAR_UAS00010487','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/car6','2021-06-03 10:11:22','123',NULL,NULL,_binary '\0'),(1995,'AI_VIDEO','CAR_UAS00010487','en_US','webrtc://live.demo.uavcmlc.com:18000/live/car6','2021-06-03 10:11:22','123',NULL,NULL,_binary '\0'),(1996,'AI_VIDEO','HEAD_UAS00010487','zh_CN','webrtc://live.demo.uavcmlc.com:18000/live/head6','2021-06-03 10:11:47','123',NULL,NULL,_binary '\0'),(1997,'AI_VIDEO','HEAD_UAS00010487','zh_TW','webrtc://live.demo.uavcmlc.com:18000/live/head6','2021-06-03 10:11:47','123',NULL,NULL,_binary '\0'),(1998,'AI_VIDEO','HEAD_UAS00010487','en_US','webrtc://live.demo.uavcmlc.com:18000/live/head6','2021-06-03 10:11:47','123',NULL,NULL,_binary '\0'),(1999,'LOAD_SPK_MODEL','hhqxh003','zh_CN',' MP130','2021-06-07 02:16:41','1',NULL,NULL,_binary '\0'),(2000,'LOAD_SPK_MODEL','hhqxh003','zh_TW',' MP130','2021-06-07 02:16:41','1',NULL,NULL,_binary '\0'),(2001,'LOAD_SPK_MODEL','hhqxh003','en_US',' MP130','2021-06-07 02:16:41','1',NULL,NULL,_binary '\0'),(2002,'MNF','sccj021','zh_CN','成至','2021-06-07 02:19:14','1',NULL,NULL,_binary '\0'),(2003,'MNF','sccj021','zh_TW','成至','2021-06-07 02:19:14','1',NULL,NULL,_binary '\0'),(2004,'MNF','sccj021','en_US','成至','2021-06-07 02:19:14','1',NULL,NULL,_binary '\0'),(2005,'INTERFACE_TYPE','INTERFACE_WITHOUT_BINDING_COMPANY','en_US','com interface','2021-06-11 06:26:12','1','2021-09-22 06:54:36','70179580555558912',_binary '\0'),(2006,'INTERFACE_TYPE','INTERFACE_WITHOUT_BINDING_COMPANY','zh_CN','普通接口','2021-06-11 06:26:12','1','2021-09-22 06:54:36','70179580555558912',_binary '\0'),(2007,'INTERFACE_TYPE','INTERFACE_WITHOUT_BINDING_COMPANY','zh_TW','普通接口','2021-06-11 06:26:12','1','2021-09-22 06:54:36','70179580555558912',_binary '\0'),(2008,'INTERFACE_TYPE','INTERFACE_BINDING_COMPANY','en_US','senior interface','2021-06-11 06:26:12','1','2021-09-22 06:55:25','70179580555558912',_binary '\0'),(2009,'INTERFACE_TYPE','INTERFACE_BINDING_COMPANY','zh_CN','高级接口','2021-06-11 06:26:12','1','2021-09-22 06:55:25','70179580555558912',_binary '\0'),(2010,'INTERFACE_TYPE','INTERFACE_BINDING_COMPANY','zh_TW','高級接口','2021-06-11 06:26:12','1','2021-09-22 06:55:25','70179580555558912',_binary '\0'),(2011,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_TIEMS','en_US','count limit','2021-06-11 06:26:40','1','2021-09-22 06:53:44','70179580555558912',_binary '\0'),(2012,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_TIEMS','zh_CN','数量限制','2021-06-11 06:26:40','1','2021-09-22 06:53:44','70179580555558912',_binary '\0'),(2013,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_TIEMS','zh_TW','數量限制','2021-06-11 06:26:40','1','2021-09-22 06:53:44','70179580555558912',_binary '\0'),(2014,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_FLOW','en_US','flow limit','2021-06-11 06:26:40','1','2021-09-22 06:54:02','70179580555558912',_binary '\0'),(2015,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_FLOW','zh_CN','流量限制','2021-06-11 06:26:40','1','2021-09-22 06:54:02','70179580555558912',_binary '\0'),(2016,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_FLOW','zh_TW','流量限制','2021-06-11 06:26:40','1','2021-09-22 06:54:02','70179580555558912',_binary '\0'),(2017,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_SPACE','en_US','space limit','2021-06-11 06:26:40','1','2021-09-22 06:54:15','70179580555558912',_binary '\0'),(2018,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_SPACE','zh_CN','空间限制','2021-06-11 06:26:40','1','2021-09-22 06:54:15','70179580555558912',_binary '\0'),(2019,'OPEN_LIMIT_TYPE','OPEN_LIMIT_TYPE_SPACE','zh_TW','空間限制','2021-06-11 06:26:40','1','2021-09-22 06:54:15','70179580555558912',_binary '\0'),(2020,'INTERFACE_GROUP','INTERFACE_GROUP_WAYPOINT','en_US','Airline Services','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2021,'INTERFACE_GROUP','INTERFACE_GROUP_WAYPOINT','zh_CN','航线服务','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2022,'INTERFACE_GROUP','INTERFACE_GROUP_WAYPOINT','zh_TW','航線服務','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2023,'INTERFACE_GROUP','INTERFACE_GROUP_AIRSPACE','en_US','Airspace Services','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2024,'INTERFACE_GROUP','INTERFACE_GROUP_AIRSPACE','zh_CN','空域服务','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2025,'INTERFACE_GROUP','INTERFACE_GROUP_AIRSPACE','zh_TW','空域服務','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2026,'INTERFACE_GROUP','INTERFACE_GROUP_SURVEILLANCE','en_US','Flight Posture','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2027,'INTERFACE_GROUP','INTERFACE_GROUP_SURVEILLANCE','zh_CN','飞行态势','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2028,'INTERFACE_GROUP','INTERFACE_GROUP_SURVEILLANCE','zh_TW','飛行態勢','2021-06-11 06:27:07','1','2022-03-30 10:16:48','1',_binary '\0'),(2029,'VIDEO_LINE','auto','zh_CN','自动','2021-06-16 01:27:49','1',NULL,NULL,_binary '\0'),(2030,'VIDEO_LINE','auto','en_US','AUTO','2021-06-16 01:27:49','1',NULL,NULL,_binary '\0'),(2031,'VIDEO_LINE','auto','zh_TW','自動','2021-06-16 01:27:49','1',NULL,NULL,_binary '\0'),(2032,'DEV_MODEL_HUBBLE','wrjxh052','zh_CN','1','2021-06-16 09:09:02','1',NULL,NULL,_binary '\0'),(2033,'DEV_MODEL_HUBBLE','wrjxh052','zh_TW','1','2021-06-16 09:09:02','1',NULL,NULL,_binary '\0'),(2034,'DEV_MODEL_HUBBLE','wrjxh052','en_US','1','2021-06-16 09:09:02','1',NULL,NULL,_binary '\0'),(2035,'DEV_MODEL_HUBBLE','wrjxh055','zh_CN','2','2021-06-16 09:09:15','1',NULL,NULL,_binary '\0'),(2036,'DEV_MODEL_HUBBLE','wrjxh055','zh_TW','2','2021-06-16 09:09:15','1',NULL,NULL,_binary '\0'),(2037,'DEV_MODEL_HUBBLE','wrjxh055','en_US','2','2021-06-16 09:09:15','1',NULL,NULL,_binary '\0'),(2038,'DEV_MODEL_HUBBLE','xh009','zh_CN','15','2021-06-16 09:21:52','1',NULL,NULL,_binary '\0'),(2039,'DEV_MODEL_HUBBLE','xh009','zh_TW','15','2021-06-16 09:21:52','1',NULL,NULL,_binary '\0'),(2040,'DEV_MODEL_HUBBLE','xh009','en_US','15','2021-06-16 09:21:52','1',NULL,NULL,_binary '\0'),(2041,'LOAD_CAM_MODEL','xh016','zh_CN','Insta360 Pro2','2021-07-08 01:26:04','1',NULL,NULL,_binary '\0'),(2042,'LOAD_CAM_MODEL','xh016','zh_TW','Insta360 Pro2','2021-07-08 01:26:04','1',NULL,NULL,_binary '\0'),(2043,'LOAD_CAM_MODEL','xh016','en_US','Insta360 Pro2','2021-07-08 01:26:04','1',NULL,NULL,_binary '\0'),(2044,'MNF','sccj022','zh_CN','Insta 360','2021-07-08 01:26:36','1',NULL,NULL,_binary '\0'),(2045,'MNF','sccj022','zh_TW','Insta 360','2021-07-08 01:26:36','1',NULL,NULL,_binary '\0'),(2046,'MNF','sccj022','en_US','Insta 360','2021-07-08 01:26:36','1',NULL,NULL,_binary '\0'),(2047,'VIDEO_FLOWING]','videoFlowing','en_US','video flowing','2021-07-28 02:00:24','1',NULL,NULL,_binary '\0'),(2048,'VIDEO_FLOWING]','videoFlowing','zh_CN','视频流','2021-07-28 02:00:24','1',NULL,NULL,_binary '\0'),(2049,'VIDEO_FLOWING]','videoFlowing','zh_TW','視頻流','2021-07-28 02:00:24','1',NULL,NULL,_binary '\0'),(2050,'DEV_ACTION_MODEL','ZOOMVALUE','zh_CN','缩放倍数','2021-07-28 08:20:25','1','2022-04-13 03:01:46',NULL,_binary ''),(2051,'DEV_ACTION_MODEL','ZOOMVALUE','zh_TW','缩放倍数','2021-07-28 08:20:25','1','2022-04-13 03:01:46',NULL,_binary ''),(2052,'DEV_ACTION_MODEL','ZOOMVALUE','en_US','缩放倍数','2021-07-28 08:20:25','1','2022-04-13 03:01:46',NULL,_binary ''),(2053,'INTERFACE_GROUP','INTERFACE_GROUP_WAREHOUSE','zh_CN','素材仓库','2021-08-19 06:38:37','1','2022-03-30 10:16:48','1',_binary '\0'),(2054,'INTERFACE_GROUP','INTERFACE_GROUP_WAREHOUSE','zh_TW','素材仓库','2021-08-19 06:38:37','1','2022-03-30 10:16:48','1',_binary '\0'),(2055,'INTERFACE_GROUP','INTERFACE_GROUP_WAREHOUSE','en_US','WAREHOUSE','2021-08-19 06:38:37','1','2022-03-30 10:16:48','1',_binary '\0'),(2056,'DETECTION_COMPANY','chengyanyuan','zh_CN','2','2021-09-16 05:55:43','1',NULL,NULL,_binary '\0'),(2057,'DETECTION_COMPANY','chengyanyuan','zh_TW','2','2021-09-16 05:55:43','1',NULL,NULL,_binary '\0'),(2058,'DETECTION_COMPANY','chengyanyuan','en_US','2','2021-09-16 05:55:43','1',NULL,NULL,_binary '\0'),(2059,'APPR_STAT','reject','zh_TW','被駁回','2021-09-22 07:01:01','70179580555558912',NULL,NULL,_binary '\0'),(2060,'APPR_STAT','reject','en_US','reject','2021-09-22 07:01:01','70179580555558912',NULL,NULL,_binary '\0'),(2061,'APPR_STAT','refuse','zh_TW','已拒絕','2021-09-22 07:01:13','70179580555558912',NULL,NULL,_binary '\0'),(2062,'APPR_STAT','refuse','en_US','refuse','2021-09-22 07:01:13','70179580555558912',NULL,NULL,_binary '\0'),(2063,'APPR_STAT','ing','zh_TW','審批中','2021-09-22 07:01:35','70179580555558912',NULL,NULL,_binary '\0'),(2064,'APPR_STAT','ing','en_US','approving','2021-09-22 07:01:35','70179580555558912',NULL,NULL,_binary '\0'),(2065,'APPR_STAT','expired','zh_TW','失效','2021-09-22 07:01:49','70179580555558912',NULL,NULL,_binary '\0'),(2066,'APPR_STAT','expired','en_US','expired','2021-09-22 07:01:49','70179580555558912',NULL,NULL,_binary '\0'),(2067,'APPR_STAT','pass','zh_TW','已通過','2021-09-22 07:02:00','70179580555558912',NULL,NULL,_binary '\0'),(2068,'APPR_STAT','pass','en_US','pass','2021-09-22 07:02:00','70179580555558912',NULL,NULL,_binary '\0'),(2069,'APPR_STAT','wait','zh_TW','待審批','2021-09-22 07:02:10','70179580555558912',NULL,NULL,_binary '\0'),(2070,'APPR_STAT','wait','en_US','wait','2021-09-22 07:02:10','70179580555558912',NULL,NULL,_binary '\0'),(2071,'AREA_TYPE','temp','zh_TW','臨時飛行區','2021-09-22 07:02:30','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2072,'AREA_TYPE','temp','en_US','temp zone','2021-09-22 07:02:30','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2073,'AREA_TYPE','danger','zh_TW','危險區','2021-09-22 07:02:45','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2074,'AREA_TYPE','danger','en_US','danger zone','2021-09-22 07:02:45','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2075,'AREA_TYPE','clear','zh_TW','净空區','2021-09-22 07:02:56','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2076,'AREA_TYPE','clear','en_US','clear zone','2021-09-22 07:02:56','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2077,'AREA_TYPE','forbidden','zh_TW','禁飞區','2021-09-22 07:03:38','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2078,'AREA_TYPE','forbidden','en_US','forbidden zone','2021-09-22 07:03:38','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2079,'AREA_TYPE','limit','zh_TW','限制區','2021-09-22 07:03:51','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2080,'AREA_TYPE','limit','en_US','limit zone','2021-09-22 07:03:51','70179580555558912','2022-06-10 03:51:15','123',_binary '\0'),(2081,'FLY_TASK','other','zh_TW','其他','2021-09-22 07:05:30','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2082,'FLY_TASK','other','en_US','other','2021-09-22 07:05:30','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2083,'FLY_TASK','protection','zh_TW','農林植保','2021-09-22 07:05:59','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2084,'FLY_TASK','protection','en_US','protection','2021-09-22 07:05:59','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2085,'FLY_TASK','poppy','zh_TW','罌粟巡查','2021-09-22 07:06:25','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2086,'FLY_TASK','poppy','en_US','poppy','2021-09-22 07:06:25','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2087,'FLY_TASK','fire','zh_TW','高層消防','2021-09-22 07:06:36','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2088,'FLY_TASK','fire','en_US','fire','2021-09-22 07:06:36','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2089,'FLY_TASK','power','zh_TW','電力循環','2021-09-22 07:07:12','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2090,'FLY_TASK','power','en_US','power','2021-09-22 07:07:12','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2091,'FLY_TASK','show','zh_TW','飛行表演','2021-09-22 07:07:28','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2092,'FLY_TASK','show','en_US','show','2021-09-22 07:07:28','70179580555558912','2022-01-20 01:15:08','123',_binary '\0'),(2093,'FLY_TASK','testfly','zh_TW','適航試飛','2021-09-22 07:07:49','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2094,'FLY_TASK','testfly','en_US','test fly','2021-09-22 07:07:49','70179580555558912','2022-01-20 01:15:09','123',_binary '\0'),(2095,'VIDEO_LINE','2','zh_TW','綫路2','2021-09-22 07:08:14','70179580555558912','2021-09-22 07:08:34','70179580555558912',_binary '\0'),(2096,'VIDEO_LINE','2','en_US','line 2','2021-09-22 07:08:14','70179580555558912','2021-09-22 07:08:34','70179580555558912',_binary '\0'),(2097,'VIDEO_LINE','1','zh_TW','綫路1','2021-09-22 07:08:25','70179580555558912',NULL,NULL,_binary '\0'),(2098,'VIDEO_LINE','1','en_US','line 1','2021-09-22 07:08:25','70179580555558912',NULL,NULL,_binary '\0'),(2099,'USE_STAT','ABANDONMENT','zh_TW','報廢','2021-09-22 07:30:19','70179580555558912','2023-07-07 07:50:53','188243415207510016',_binary '\0'),(2100,'USE_STAT','ABANDONMENT','en_US','scrapped','2021-09-22 07:30:19','70179580555558912','2023-07-07 07:50:53','188243415207510016',_binary '\0'),(2101,'USE_STAT','MAINTAIN','zh_TW','保養','2021-09-22 07:31:29','70179580555558912',NULL,NULL,_binary '\0'),(2102,'USE_STAT','MAINTAIN','en_US','maintain','2021-09-22 07:31:29','70179580555558912',NULL,NULL,_binary '\0'),(2103,'USE_STAT','FORBIDDEN','zh_TW','禁用','2021-09-22 07:31:49','70179580555558912',NULL,NULL,_binary '\0'),(2104,'USE_STAT','FORBIDDEN','en_US','forbidden','2021-09-22 07:31:49','70179580555558912',NULL,NULL,_binary '\0'),(2105,'USE_STAT','CAN_USE','zh_TW','可用','2021-09-22 07:32:04','70179580555558912','2023-06-27 07:36:21','188243415207510016',_binary '\0'),(2106,'USE_STAT','CAN_USE','en_US','available','2021-09-22 07:32:04','70179580555558912','2023-06-27 07:36:21','188243415207510016',_binary '\0'),(2107,'MNF','sccj023','zh_CN','浙江大华技术股份有限公司','2021-09-23 02:18:54','1',NULL,NULL,_binary '\0'),(2108,'MNF','sccj023','zh_TW','浙江大华技术股份有限公司','2021-09-23 02:18:54','1',NULL,NULL,_binary '\0'),(2109,'MNF','sccj023','en_US','dahuatech','2021-09-23 02:18:54','1',NULL,NULL,_binary '\0'),(2110,'MNF','sccj024','zh_CN','深圳市科卫泰实业发展有限公司','2021-09-23 02:20:05','1',NULL,NULL,_binary '\0'),(2111,'MNF','sccj024','zh_TW','深圳市科卫泰实业发展有限公司','2021-09-23 02:20:05','1',NULL,NULL,_binary '\0'),(2112,'MNF','sccj024','en_US','keweitai','2021-09-23 02:20:05','1',NULL,NULL,_binary '\0'),(2113,'PLANE_MODEL','wrjxh057','zh_CN','KWT-X6L','2021-09-23 02:22:52','1',NULL,NULL,_binary '\0'),(2114,'PLANE_MODEL','wrjxh057','zh_TW','KWT-X6L','2021-09-23 02:22:52','1',NULL,NULL,_binary '\0'),(2115,'PLANE_MODEL','wrjxh057','en_US','KWT-X6L','2021-09-23 02:22:52','1',NULL,NULL,_binary '\0'),(2116,'PLANE_MODEL','wrjxh058','zh_CN','GAWRJDD0023HF03','2021-09-23 02:24:19','1',NULL,NULL,_binary '\0'),(2117,'PLANE_MODEL','wrjxh058','zh_TW','GAWRJDD0023HF03','2021-09-23 02:24:19','1',NULL,NULL,_binary '\0'),(2118,'PLANE_MODEL','wrjxh058','en_US','GAWRJDD0023HF03','2021-09-23 02:24:19','1',NULL,NULL,_binary '\0'),(2119,'PLANE_MODEL','wrjxh059','zh_CN','GAWRJDD0023HF02','2021-09-23 02:24:42','1',NULL,NULL,_binary '\0'),(2120,'PLANE_MODEL','wrjxh059','zh_TW','GAWRJDD0023HF02','2021-09-23 02:24:42','1',NULL,NULL,_binary '\0'),(2121,'PLANE_MODEL','wrjxh059','en_US','GAWRJDD0023HF02','2021-09-23 02:24:42','1',NULL,NULL,_binary '\0'),(2122,'LOAD_CAM_MODEL','xh017','zh_CN','KWT-3G-30X','2021-09-23 02:25:39','1',NULL,NULL,_binary '\0'),(2123,'LOAD_CAM_MODEL','xh017','zh_TW','KWT-3G-30X','2021-09-23 02:25:39','1',NULL,NULL,_binary '\0'),(2124,'LOAD_CAM_MODEL','xh017','en_US','KWT-3G-30X','2021-09-23 02:25:39','1',NULL,NULL,_binary '\0'),(2125,'LOAD_CAM_MODEL','xh018','zh_CN','DH-UAV-GA-TV-4640U-F25','2021-09-23 02:26:22','1',NULL,NULL,_binary '\0'),(2126,'LOAD_CAM_MODEL','xh018','zh_TW','DH-UAV-GA-TV-4640U-F25','2021-09-23 02:26:22','1',NULL,NULL,_binary '\0'),(2127,'LOAD_CAM_MODEL','xh018','en_US','DH-UAV-GA-TV-4640U-F25','2021-09-23 02:26:22','1',NULL,NULL,_binary '\0'),(2128,'LOAD_CAM_MODEL','xh020','zh_CN','MG120','2021-09-23 02:26:43','1',NULL,NULL,_binary '\0'),(2129,'LOAD_CAM_MODEL','xh020','zh_TW','MG120','2021-09-23 02:26:43','1',NULL,NULL,_binary '\0'),(2130,'LOAD_CAM_MODEL','xh020','en_US','MG120','2021-09-23 02:26:43','1',NULL,NULL,_binary '\0'),(2131,'OPEN_API_SAMPLE_LANGUAGE','JAVA_OKHTTP','en_US','Java-OkHttp','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2132,'OPEN_API_SAMPLE_LANGUAGE','JAVA_OKHTTP','zh_CN','Java-OkHttp','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2133,'OPEN_API_SAMPLE_LANGUAGE','JAVA_OKHTTP','zh_TW','Java-OkHttp','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2134,'OPEN_API_SAMPLE_LANGUAGE','PHP_HTTP_REQUEST2','en_US','Php-Http_Request2','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2135,'OPEN_API_SAMPLE_LANGUAGE','PHP_HTTP_REQUEST2','zh_CN','Php-Http_Request2','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2136,'OPEN_API_SAMPLE_LANGUAGE','PHP_HTTP_REQUEST2','zh_TW','Php-Http_Request2','2021-10-18 08:30:25','1','2022-03-30 06:06:29','1',_binary '\0'),(2137,'OPEN_API_SAMPLE_LANGUAGE','PYTHON_REQUESTS','en_US','Python-Requests','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2138,'OPEN_API_SAMPLE_LANGUAGE','PYTHON_REQUESTS','zh_CN','Python-Requests','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2139,'OPEN_API_SAMPLE_LANGUAGE','PYTHON_REQUESTS','zh_TW','Python-Requests','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2140,'OPEN_API_SAMPLE_LANGUAGE','NODEJS_AXIOS','en_US','NodeJs-Axios','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2141,'OPEN_API_SAMPLE_LANGUAGE','NODEJS_AXIOS','zh_CN','NodeJs-Axios','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2142,'OPEN_API_SAMPLE_LANGUAGE','NODEJS_AXIOS','zh_TW','NodeJs-Axios','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2143,'OPEN_API_SAMPLE_LANGUAGE','C#_RESTSHARP','en_US','C#-RestSharp','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2144,'OPEN_API_SAMPLE_LANGUAGE','C#_RESTSHARP','zh_CN','C#-RestSharp','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2145,'OPEN_API_SAMPLE_LANGUAGE','C#_RESTSHARP','zh_TW','C#-RestSharp','2021-10-18 08:30:26','1','2022-03-30 06:06:29','1',_binary '\0'),(2146,'ONLINE_STAT','OFFLINE','zh_TW','離綫','2021-10-25 07:48:23','1',NULL,NULL,_binary '\0'),(2147,'ONLINE_STAT','OFFLINE','en_US','offline','2021-10-25 07:48:23','1',NULL,NULL,_binary '\0'),(2148,'ONLINE_STAT','ONLINE','zh_TW','在綫','2021-10-25 07:48:32','1',NULL,NULL,_binary '\0'),(2149,'ONLINE_STAT','ONLINE','en_US','online','2021-10-25 07:48:32','1',NULL,NULL,_binary '\0'),(2150,'LEN','MUTIL_SELECT_COUNT','zh_TW','20','2021-10-25 07:50:43','1',NULL,NULL,_binary '\0'),(2151,'LEN','MUTIL_SELECT_COUNT','en_US','20','2021-10-25 07:50:43','1',NULL,NULL,_binary '\0'),(2152,'POC_USER','358','zh_CN','358','2021-11-16 07:21:53','175627050911006720','2022-12-14 14:08:32','188243415207510016',_binary '\0'),(2153,'POC_USER','358','zh_TW','358','2021-11-16 07:21:53','175627050911006720','2022-12-14 14:08:32','188243415207510016',_binary '\0'),(2154,'POC_USER','358','en_US','358','2021-11-16 07:21:53','175627050911006720','2022-12-14 14:08:32','188243415207510016',_binary '\0'),(2155,'DEV_ACTION_MODEL','towerInspectionQJ','zh_CN','杆塔巡检(曲靖)','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016',_binary '\0'),(2156,'DEV_ACTION_MODEL','towerInspectionQJ','zh_TW','杆塔巡檢(曲靖)','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016',_binary '\0'),(2157,'DEV_ACTION_MODEL','towerInspectionQJ','en_US','Tower patrol inspection (Qujing)','2021-11-17 08:19:45','175627050911006720','2022-11-16 06:28:00','188243415207510016',_binary '\0'),(2158,'CHEWUTONG_COMPANY','358','zh_CN','358','2021-11-17 08:48:33','175627050911006720',NULL,NULL,_binary '\0'),(2159,'CHEWUTONG_COMPANY','358','zh_TW','358','2021-11-17 08:48:33','175627050911006720',NULL,NULL,_binary '\0'),(2160,'CHEWUTONG_COMPANY','358','en_US','358','2021-11-17 08:48:33','175627050911006720',NULL,NULL,_binary '\0'),(2161,'CHEWUTONG_COMPANY','71','zh_CN','71','2021-11-17 08:49:34','175627050911006720',NULL,NULL,_binary '\0'),(2162,'CHEWUTONG_COMPANY','71','zh_TW','71','2021-11-17 08:49:34','175627050911006720',NULL,NULL,_binary '\0'),(2163,'CHEWUTONG_COMPANY','71','en_US','71','2021-11-17 08:49:34','175627050911006720',NULL,NULL,_binary '\0'),(2164,'LOAD_CAM_MODEL','gddc','zh_CN','光电吊舱-纵横','2021-11-19 02:53:02','175627050911006720',NULL,NULL,_binary '\0'),(2165,'LOAD_CAM_MODEL','gddc','zh_TW','光电吊舱-纵横','2021-11-19 02:53:02','175627050911006720',NULL,NULL,_binary '\0'),(2166,'LOAD_CAM_MODEL','gddc','en_US','光电吊舱-纵横','2021-11-19 02:53:02','175627050911006720',NULL,NULL,_binary '\0'),(2167,'INTERFACE_GROUP','INTERFACE_GROUP_FIRE','zh_CN','消防火情','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1',_binary '\0'),(2168,'INTERFACE_GROUP','INTERFACE_GROUP_FIRE','en_US','Fire','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1',_binary '\0'),(2169,'INTERFACE_GROUP','INTERFACE_GROUP_FIRE','zh_TW','消防火情','2021-12-07 02:21:24','175627050911006720','2022-03-30 10:16:48','1',_binary '\0'),(2170,'XF_COMPANY','2','zh_CN','2','2021-12-07 08:05:41','175627050911006720',NULL,NULL,_binary '\0'),(2171,'XF_COMPANY','2','zh_TW','2','2021-12-07 08:05:41','175627050911006720',NULL,NULL,_binary '\0'),(2172,'XF_COMPANY','2','en_US','2','2021-12-07 08:05:41','175627050911006720',NULL,NULL,_binary '\0'),(2173,'UASID_ZIGONG','UAS00011009 ','zh_CN','UAS01667274','2021-12-14 09:32:10','175627050911006720','2021-12-15 05:41:59','175627050911006720',_binary ''),(2174,'UASID_ZIGONG','UAS00011009 ','zh_TW','UAS01667274','2021-12-14 09:32:10','175627050911006720','2021-12-15 05:41:59','175627050911006720',_binary ''),(2175,'UASID_ZIGONG','UAS00011009 ','en_US','UAS01667274','2021-12-14 09:32:10','175627050911006720','2021-12-15 05:41:59','175627050911006720',_binary ''),(2176,'IP_ZIGONG','IP','zh_CN','110.189.153.152','2021-12-14 09:32:51','175627050911006720','2021-12-15 05:43:21','175627050911006720',_binary '\0'),(2177,'IP_ZIGONG','IP','zh_TW','110.189.153.152','2021-12-14 09:32:51','175627050911006720','2021-12-15 05:43:21','175627050911006720',_binary '\0'),(2178,'IP_ZIGONG','IP','en_US','110.189.153.152','2021-12-14 09:32:51','175627050911006720','2021-12-15 05:43:21','175627050911006720',_binary '\0'),(2179,'IP_ZIGONG','PORT','en_US','9001','2021-12-14 09:33:08','175627050911006720','2021-12-14 09:46:32','175627050911006720',_binary '\0'),(2180,'IP_ZIGONG','PORT','zh_TW','9001','2021-12-14 09:33:08','175627050911006720','2021-12-14 09:46:32','175627050911006720',_binary '\0'),(2181,'IP_ZIGONG','PORT','zh_CN','9001','2021-12-14 09:33:08','175627050911006720','2021-12-14 09:46:32','175627050911006720',_binary '\0'),(2182,'UASID_ZIGONG','UAS00011007','zh_TW','UAS01667273','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23',NULL,_binary ''),(2183,'UASID_ZIGONG','UAS00011007','zh_CN','UAS01667273','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23',NULL,_binary ''),(2184,'UASID_ZIGONG','UAS00011007','en_US','UAS01667273','2021-12-15 05:37:30','175627050911006720','2021-12-15 05:42:23',NULL,_binary ''),(2185,'UASID_ZIGONG','UAS00011010','zh_CN','UAS01667274','2021-12-15 05:42:13','175627050911006720',NULL,NULL,_binary '\0'),(2186,'UASID_ZIGONG','UAS00011010','zh_TW','UAS01667274','2021-12-15 05:42:13','175627050911006720',NULL,NULL,_binary '\0'),(2187,'UASID_ZIGONG','UAS00011010','en_US','UAS01667274','2021-12-15 05:42:13','175627050911006720',NULL,NULL,_binary '\0'),(2188,'DEV_MODEL_HUBBLE','test','zh_CN','test','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08',NULL,_binary ''),(2189,'DEV_MODEL_HUBBLE','test','zh_TW','test','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08',NULL,_binary ''),(2190,'DEV_MODEL_HUBBLE','test','en_US','test','2021-12-20 02:01:43','173818970422378496','2021-12-20 02:02:08',NULL,_binary ''),(2191,'TOWER_DEFECT_CATEGORY','cover','en_US','cover','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2192,'TOWER_DEFECT_CATEGORY','cover','zh_CN','覆盖','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2193,'TOWER_DEFECT_CATEGORY','cover','zh_TW','覆蓋','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2194,'TOWER_DEFECT_CATEGORY','disaster','en_US','disaster','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2195,'TOWER_DEFECT_CATEGORY','disaster','zh_CN','灾害','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2196,'TOWER_DEFECT_CATEGORY','disaster','zh_TW','災害','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2197,'TOWER_DEFECT_CATEGORY','construction','en_US','construction','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2198,'TOWER_DEFECT_CATEGORY','construction','zh_CN','施工','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2199,'TOWER_DEFECT_CATEGORY','construction','zh_TW','施工','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2200,'TOWER_DEFECT_CATEGORY','fall','en_US','Fall','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2201,'TOWER_DEFECT_CATEGORY','fall','zh_CN','倒地','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2202,'TOWER_DEFECT_CATEGORY','fall','zh_TW','倒地','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2203,'TOWER_DEFECT_CATEGORY','tilted','en_US','Tilted','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2204,'TOWER_DEFECT_CATEGORY','tilted','zh_CN','倾斜','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2205,'TOWER_DEFECT_CATEGORY','tilted','zh_TW','傾斜','2022-01-18 11:27:41','1',NULL,NULL,_binary '\0'),(2206,'ALARM_INDEX','area','en_US','area','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2207,'ALARM_INDEX','area','zh_CN','空域','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2208,'ALARM_INDEX','area','zh_TW','空域','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2209,'ALARM_INDEX','signal','en_US','signal','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2210,'ALARM_INDEX','signal','zh_CN','信号','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2211,'ALARM_INDEX','signal','zh_TW','信號','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2212,'ALARM_INDEX','gps','en_US','GPS','2022-01-19 01:13:53','1','2022-03-14 05:50:27','173818970422378496',_binary '\0'),(2213,'ALARM_INDEX','gps','zh_CN','GPS搜星','2022-01-19 01:13:53','1','2022-03-14 05:50:27','173818970422378496',_binary '\0'),(2214,'ALARM_INDEX','gps','zh_TW','GPS搜星','2022-01-19 01:13:53','1','2022-03-14 05:50:27','173818970422378496',_binary '\0'),(2215,'ALARM_INDEX','elec','en_US','electricity','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2216,'ALARM_INDEX','elec','zh_CN','电量','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2217,'ALARM_INDEX','elec','zh_TW','電量','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2218,'ALARM_INDEX','height','en_US','height','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2219,'ALARM_INDEX','height','zh_CN','高度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2220,'ALARM_INDEX','height','zh_TW','高度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2221,'ALARM_INDEX','speed','en_US','speed','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2222,'ALARM_INDEX','speed','zh_CN','速度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2223,'ALARM_INDEX','speed','zh_TW','速度','2022-01-19 01:13:53','1',NULL,NULL,_binary '\0'),(2224,'NOTICE_WAY','web','en_US','instation','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2225,'NOTICE_WAY','web','zh_CN','站内','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2226,'NOTICE_WAY','web','zh_TW','站内','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2227,'NOTICE_WAY','sms','en_US','message','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2228,'NOTICE_WAY','sms','zh_CN','短信','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2229,'NOTICE_WAY','sms','zh_TW','短信','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2230,'NOTICE_WAY','email','en_US','email','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2231,'NOTICE_WAY','email','zh_CN','邮件','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2232,'NOTICE_WAY','email','zh_TW','郵件','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2233,'NOTICE_WAY','message','en_US','message1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2234,'NOTICE_WAY','message','zh_CN','短信1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2235,'NOTICE_WAY','message','zh_TW','短信1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2236,'NOTICE_WAY','instation','en_US','instation1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2237,'NOTICE_WAY','instation','zh_CN','站内1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2238,'NOTICE_WAY','instation','zh_TW','站内1','2022-01-19 01:14:22','1',NULL,NULL,_binary '\0'),(2239,'ALARM_LEVEL','warn','en_US','warn','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2240,'ALARM_LEVEL','warn','zh_CN','警告','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2241,'ALARM_LEVEL','warn','zh_TW','警告','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2242,'ALARM_LEVEL','careful','en_US','careful','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2243,'ALARM_LEVEL','careful','zh_CN','小心','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2244,'ALARM_LEVEL','careful','zh_TW','小心','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2245,'ALARM_LEVEL','attention','en_US','attention','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2246,'ALARM_LEVEL','attention','zh_CN','注意','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2247,'ALARM_LEVEL','attention','zh_TW','注意','2022-01-19 01:14:49','1',NULL,NULL,_binary '\0'),(2248,'ALARM_TRIGGER','rushInto','en_US','rush into','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2249,'ALARM_TRIGGER','rushInto','zh_CN','闯入','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2250,'ALARM_TRIGGER','rushInto','zh_TW','闯入','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2251,'ALARM_TRIGGER','rushOut','en_US','rush out','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2252,'ALARM_TRIGGER','rushOut','zh_CN','闯出','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2253,'ALARM_TRIGGER','rushOut','zh_TW','闯出','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2254,'ALARM_TRIGGER','smallOrEqual','en_US','small or equal','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2255,'ALARM_TRIGGER','smallOrEqual','zh_CN','小于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2256,'ALARM_TRIGGER','smallOrEqual','zh_TW','小于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2257,'ALARM_TRIGGER','bigOrEqual','en_US','big or equal','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2258,'ALARM_TRIGGER','bigOrEqual','zh_CN','大于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2259,'ALARM_TRIGGER','bigOrEqual','zh_TW','大于或等于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2260,'ALARM_TRIGGER','small','en_US','small than','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2261,'ALARM_TRIGGER','small','zh_CN','小于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2262,'ALARM_TRIGGER','small','zh_TW','小于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2263,'ALARM_TRIGGER','big','en_US','big than','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2264,'ALARM_TRIGGER','big','zh_CN','大于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2265,'ALARM_TRIGGER','big','zh_TW','大于','2022-01-19 01:15:17','1',NULL,NULL,_binary '\0'),(2266,'DEAL_RESULT','0','en_US','undisposed','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2267,'DEAL_RESULT','0','zh_CN','未处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2268,'DEAL_RESULT','0','zh_TW','未处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2269,'DEAL_RESULT','1','en_US','processed','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2270,'DEAL_RESULT','1','zh_CN','已处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2271,'DEAL_RESULT','1','zh_TW','已处理','2022-01-19 01:15:48','1',NULL,NULL,_binary '\0'),(2272,'AREA_ALARM_TRIGGER','rushOut','en_US','rush out','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2273,'AREA_ALARM_TRIGGER','rushOut','zh_CN','闯出','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2274,'AREA_ALARM_TRIGGER','rushOut','zh_TW','闖出','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2275,'AREA_ALARM_TRIGGER','rushInto','en_US','rush into','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2276,'AREA_ALARM_TRIGGER','rushInto','zh_CN','闯入','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2277,'AREA_ALARM_TRIGGER','rushInto','zh_TW','闖入','2022-01-19 01:16:12','1',NULL,NULL,_binary '\0'),(2278,'TRIGGER_UNIT','level','en_US','level','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2279,'TRIGGER_UNIT','level','zh_CN','格','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2280,'TRIGGER_UNIT','level','zh_TW','格','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2281,'TRIGGER_UNIT','meter','en_US','m','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2282,'TRIGGER_UNIT','meter','zh_CN','m','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2283,'TRIGGER_UNIT','meter','zh_TW','m','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2284,'TRIGGER_UNIT','percent','en_US','%','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2285,'TRIGGER_UNIT','percent','zh_CN','%','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2286,'TRIGGER_UNIT','percent','zh_TW','%','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2287,'TRIGGER_UNIT','ge','en_US','.','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2288,'TRIGGER_UNIT','ge','zh_CN','个','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2289,'TRIGGER_UNIT','ge','zh_TW','个','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2290,'TRIGGER_UNIT','mPerSec','en_US','m/s','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2291,'TRIGGER_UNIT','mPerSec','zh_CN','m/s','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2292,'TRIGGER_UNIT','mPerSec','zh_TW','m/s','2022-01-19 01:16:35','1',NULL,NULL,_binary '\0'),(2293,'PLANE_MODEL','DA','en_US','DA','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2294,'PLANE_MODEL','DA','zh_CN','DA','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2295,'PLANE_MODEL','DA','zh_TW','DA','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2296,'PLANE_MODEL','FFFF','en_US','FFFF','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2297,'PLANE_MODEL','FFFF','zh_CN','FFFF','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2298,'PLANE_MODEL','FFFF','zh_TW','FFFF','2022-01-20 01:15:40','123','2022-09-20 08:29:32','1',_binary '\0'),(2299,'PLANE_LEVEL','five','en_US','five','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2300,'PLANE_LEVEL','five','zh_CN','五','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2301,'PLANE_LEVEL','five','zh_TW','五','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2302,'PLANE_LEVEL','four','en_US','four','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2303,'PLANE_LEVEL','four','zh_CN','四','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2304,'PLANE_LEVEL','four','zh_TW','四','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2305,'PLANE_LEVEL','three','en_US','three','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2306,'PLANE_LEVEL','three','zh_CN','三','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2307,'PLANE_LEVEL','three','zh_TW','三','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2308,'PLANE_LEVEL','two','en_US','two','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2309,'PLANE_LEVEL','two','zh_CN','二','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2310,'PLANE_LEVEL','two','zh_TW','二','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2311,'PLANE_LEVEL','one','en_US','one','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2312,'PLANE_LEVEL','one','zh_CN','一','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2313,'PLANE_LEVEL','one','zh_TW','一','2022-01-20 01:16:26','123',NULL,NULL,_binary '\0'),(2314,'IDENTITY_TYPE','idcard','en_US','identity card','2022-01-20 01:16:46','123',NULL,NULL,_binary '\0'),(2315,'IDENTITY_TYPE','idcard','zh_CN','身份证','2022-01-20 01:16:46','123',NULL,NULL,_binary '\0'),(2316,'IDENTITY_TYPE','idcard','zh_TW','身份证','2022-01-20 01:16:46','123',NULL,NULL,_binary '\0'),(2317,'AIRSPACE_UNIT','westarea','en_US','area','2022-01-20 01:17:03','123',NULL,NULL,_binary '\0'),(2318,'AIRSPACE_UNIT','westarea','zh_CN','西部战区空军航管中心','2022-01-20 01:17:03','123',NULL,NULL,_binary '\0'),(2319,'AIRSPACE_UNIT','westarea','zh_TW','西部战区空军航管中心','2022-01-20 01:17:03','123',NULL,NULL,_binary '\0'),(2320,'FLIGHT_TYPE','qualification','en_US','UAV operation qualification certificate of Aerial ','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2321,'FLIGHT_TYPE','qualification','zh_CN','航拍协会无人机操作资格证书','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2322,'FLIGHT_TYPE','qualification','zh_TW','航拍协会无人机操作资格证书','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2323,'FLIGHT_TYPE','medium ','en_US','Civil medium UAV driver\'s license','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2324,'FLIGHT_TYPE','medium ','zh_CN','民用中型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2325,'FLIGHT_TYPE','medium ','zh_TW','民用中型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2326,'FLIGHT_TYPE','micro','en_US','Civil micro UAV driver\'s license','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2327,'FLIGHT_TYPE','micro','zh_CN','民用微型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2328,'FLIGHT_TYPE','micro','zh_TW','民用微型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2329,'FLIGHT_TYPE','light','en_US','Civil light UAV driver\'s license','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2330,'FLIGHT_TYPE','light','zh_CN','民用轻型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2331,'FLIGHT_TYPE','light','zh_TW','民用轻型无人机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2332,'FLIGHT_TYPE','perair','en_US','personal air','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2333,'FLIGHT_TYPE','perair','zh_CN','私用飞机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2334,'FLIGHT_TYPE','perair','zh_TW','私用飞机驾照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2335,'FLIGHT_TYPE','airtrans','en_US','airline transport','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2336,'FLIGHT_TYPE','airtrans','zh_CN','航线运输驾驶执照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2337,'FLIGHT_TYPE','airtrans','zh_TW','航线运输驾驶执照','2022-01-20 01:17:28','123',NULL,NULL,_binary '\0'),(2338,'PROCEDURE_TYPE','PROCEDURE_TYPE','en_US','0','2022-01-20 01:17:45','123','2023-07-17 08:43:34','199120334480211968',_binary '\0'),(2339,'PROCEDURE_TYPE','PROCEDURE_TYPE','zh_CN','0','2022-01-20 01:17:45','123','2023-07-17 08:43:34','199120334480211968',_binary '\0'),(2340,'PROCEDURE_TYPE','PROCEDURE_TYPE','zh_TW','0','2022-01-20 01:17:45','123','2023-07-17 08:43:34','199120334480211968',_binary '\0'),(2341,'REAL_STAT','0','en_US','simulate','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2342,'REAL_STAT','0','zh_CN','模拟机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2343,'REAL_STAT','0','zh_TW','模拟机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2344,'REAL_STAT','1','en_US','real uav','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2345,'REAL_STAT','1','zh_CN','真机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2346,'REAL_STAT','1','zh_TW','真机','2022-03-11 06:08:53','123',NULL,NULL,_binary '\0'),(2347,'DEV_MODEL','LOAD_GAS_MODEL','en_US','Gas detector','2022-03-11 06:09:18','123','2023-10-11 06:10:59','123',_binary '\0'),(2348,'DEV_MODEL','LOAD_GAS_MODEL','zh_CN','气体检测仪','2022-03-11 06:09:18','123','2023-10-11 06:10:59','123',_binary '\0'),(2349,'DEV_MODEL','LOAD_GAS_MODEL','zh_TW','氣體檢測儀','2022-03-11 06:09:18','123','2023-10-11 06:10:59','123',_binary '\0'),(2350,'LOAD_GAS_MODEL','test-ltt-3','en_US','测试型号ltt-3','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2351,'LOAD_GAS_MODEL','test-ltt-3','zh_CN','测试型号ltt-3','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2352,'LOAD_GAS_MODEL','test-ltt-3','zh_TW','测试型号ltt-3','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2353,'LOAD_GAS_MODEL','test-ltt-2','en_US','测试型号ltt-2','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2354,'LOAD_GAS_MODEL','test-ltt-2','zh_CN','测试型号ltt-2','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2355,'LOAD_GAS_MODEL','test-ltt-2','zh_TW','测试型号ltt-2','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2356,'LOAD_GAS_MODEL','test-ltt-1','en_US','测试型号ltt-1','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2357,'LOAD_GAS_MODEL','test-ltt-1','zh_CN','测试型号ltt-1','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2358,'LOAD_GAS_MODEL','test-ltt-1','zh_TW','测试型号ltt-1','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2359,'LOAD_GAS_MODEL','qtjc001','en_US','KWT-TC-8-AB','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2360,'LOAD_GAS_MODEL','qtjc001','zh_CN','KWT-TC-8-AB','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2361,'LOAD_GAS_MODEL','qtjc001','zh_TW','KWT-TC-8-AB','2022-03-11 06:09:42','123',NULL,NULL,_binary '\0'),(2362,'QUOTA_TYPE','123232','en_US','验证配额管理数量','2022-03-11 06:13:06','123','2022-04-27 05:58:20',NULL,_binary ''),(2363,'QUOTA_TYPE','123232','zh_CN','验证配额管理数量','2022-03-11 06:13:06','123','2022-04-27 05:58:20',NULL,_binary ''),(2364,'QUOTA_TYPE','123232','zh_TW','验证配额管理数量','2022-03-11 06:13:06','123','2022-04-27 05:58:20',NULL,_binary ''),(2365,'QUOTA_TYPE','STORAGE_CAPACITY','en_US','storage capacity','2022-03-11 06:13:06','123','2022-04-27 03:39:57','1',_binary '\0'),(2366,'QUOTA_TYPE','STORAGE_CAPACITY','zh_CN','存储空间容量','2022-03-11 06:13:06','123','2022-04-27 03:39:57','1',_binary '\0'),(2367,'QUOTA_TYPE','STORAGE_CAPACITY','zh_TW','存儲空間容量','2022-03-11 06:13:06','123','2022-04-27 03:39:57','1',_binary '\0'),(2368,'QUOTA_TYPE','KML_IMPORT_ROUTE_NUMBER','en_US','KMZ manage import route','2022-03-11 06:13:07','123','2024-03-04 03:49:33','89730635001757696',_binary '\0'),(2369,'QUOTA_TYPE','KML_IMPORT_ROUTE_NUMBER','zh_CN','KMZ管理导入航线','2022-03-11 06:13:07','123','2024-03-04 03:49:33','89730635001757696',_binary '\0'),(2370,'QUOTA_TYPE','KML_IMPORT_ROUTE_NUMBER','zh_TW','KMZ管理導入航線','2022-03-11 06:13:07','123','2024-03-04 03:49:33','89730635001757696',_binary '\0'),(2371,'SAVE_STAT','0','en_US','no','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2372,'SAVE_STAT','0','zh_CN','否','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2373,'SAVE_STAT','0','zh_TW','否','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2374,'SAVE_STAT','1','en_US','yes','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2375,'SAVE_STAT','1','zh_CN','是','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2376,'SAVE_STAT','1','zh_TW','是','2022-03-11 06:13:42','123',NULL,NULL,_binary '\0'),(2377,'UASID_ZIGONG','UAS00011175','zh_CN','UAS00030008','2022-03-23 03:30:23','175627050911006720',NULL,NULL,_binary '\0'),(2378,'UASID_ZIGONG','UAS00011175','zh_TW','UAS00030008','2022-03-23 03:30:23','175627050911006720',NULL,NULL,_binary '\0'),(2379,'UASID_ZIGONG','UAS00011175','en_US','UAS00030008','2022-03-23 03:30:23','175627050911006720',NULL,NULL,_binary '\0'),(2380,'BLUR_RULE','ACCOUNT_RULE','en_US','account','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2381,'BLUR_RULE','ACCOUNT_RULE','zh_CN','账号','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2382,'BLUR_RULE','ACCOUNT_RULE','zh_TW','賬號','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2383,'BLUR_RULE','EMAIL_RULE','en_US','email','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2384,'BLUR_RULE','EMAIL_RULE','zh_CN','邮箱','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2385,'BLUR_RULE','EMAIL_RULE','zh_TW','郵箱','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2386,'BLUR_RULE','TELEPHONE','en_US','telephone','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2387,'BLUR_RULE','TELEPHONE','zh_CN','手机号','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2388,'BLUR_RULE','TELEPHONE','zh_TW','手機號','2022-03-30 06:05:45','1',NULL,NULL,_binary '\0'),(2389,'PLANE_MODEL','wrjxh060','zh_CN','R1000','2022-03-30 06:15:28','175627050911006720',NULL,NULL,_binary '\0'),(2390,'PLANE_MODEL','wrjxh060','en_US','R1000','2022-03-30 06:15:28','175627050911006720',NULL,NULL,_binary '\0'),(2391,'PLANE_MODEL','wrjxh060','zh_TW','R1000','2022-03-30 06:15:28','175627050911006720',NULL,NULL,_binary '\0'),(2392,'MNF','sccj025','zh_CN','广州市华科尔科技股份有限公司','2022-03-30 06:16:30','175627050911006720',NULL,NULL,_binary '\0'),(2393,'MNF','sccj025','zh_TW','廣州市華科爾科技股份有限公司','2022-03-30 06:16:30','175627050911006720',NULL,NULL,_binary '\0'),(2394,'MNF','sccj025','en_US','WALKERA','2022-03-30 06:16:30','175627050911006720',NULL,NULL,_binary '\0'),(2395,'ADAPT_MNF','sccj025','zh_CN','WALKERA','2022-03-30 06:16:38','175627050911006720',NULL,NULL,_binary '\0'),(2396,'ADAPT_MNF','sccj025','zh_TW','WALKERA','2022-03-30 06:16:38','175627050911006720',NULL,NULL,_binary '\0'),(2397,'ADAPT_MNF','sccj025','en_US','WALKERA','2022-03-30 06:16:38','175627050911006720',NULL,NULL,_binary '\0'),(2398,'LOAD_CAM_MODEL','xh021','zh_CN','WK30','2022-03-30 06:17:45','175627050911006720',NULL,NULL,_binary '\0'),(2399,'LOAD_CAM_MODEL','xh021','zh_TW','WK30','2022-03-30 06:17:45','175627050911006720',NULL,NULL,_binary '\0'),(2400,'LOAD_CAM_MODEL','xh021','en_US','WK30','2022-03-30 06:17:45','175627050911006720',NULL,NULL,_binary '\0'),(2401,'DEV_ACTION_MODEL','ZOOM','zh_CN','变焦动作','2022-04-13 03:01:09','175627050911006720','2022-04-13 03:01:31','175627050911006720',_binary '\0'),(2402,'DEV_ACTION_MODEL','ZOOM','zh_TW','變焦动作','2022-04-13 03:01:09','175627050911006720','2022-04-13 03:01:31','175627050911006720',_binary '\0'),(2403,'DEV_ACTION_MODEL','ZOOM','en_US','ZOOM','2022-04-13 03:01:09','175627050911006720','2022-04-13 03:01:31','175627050911006720',_binary '\0'),(2404,'MNF','sccj026','zh_CN','华力创通','2022-04-27 01:14:33','175627050911006720',NULL,NULL,_binary '\0'),(2405,'MNF','sccj026','zh_TW','华力创通','2022-04-27 01:14:33','175627050911006720',NULL,NULL,_binary '\0'),(2406,'MNF','sccj026','en_US','华力创通','2022-04-27 01:14:33','175627050911006720',NULL,NULL,_binary '\0'),(2407,'PLANE_MODEL','wrjxh061','zh_CN','HWA-ZC','2022-04-27 01:15:01','175627050911006720',NULL,NULL,_binary '\0'),(2408,'PLANE_MODEL','wrjxh061','zh_TW','HWA-ZC','2022-04-27 01:15:01','175627050911006720',NULL,NULL,_binary '\0'),(2409,'PLANE_MODEL','wrjxh061','en_US','HWA-ZC','2022-04-27 01:15:01','175627050911006720',NULL,NULL,_binary '\0'),(2410,'LOAD_CAM_MODEL','xh022','zh_CN','华力创通通用载荷','2022-04-27 01:18:12','175627050911006720',NULL,NULL,_binary '\0'),(2411,'LOAD_CAM_MODEL','xh022','zh_TW','华力创通通用载荷','2022-04-27 01:18:12','175627050911006720',NULL,NULL,_binary '\0'),(2412,'LOAD_CAM_MODEL','xh022','en_US','华力创通通用载荷','2022-04-27 01:18:12','175627050911006720',NULL,NULL,_binary '\0'),(2413,'DEV_MODEL','HOUSE_MODEL','en_US','storage house ','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2414,'DEV_MODEL','HOUSE_MODEL','zh_CN','仓库','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2415,'DEV_MODEL','HOUSE_MODEL','zh_TW','倉庫','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2416,'DEV_MODEL','AutoTest_load','en_US','auto test load','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2417,'DEV_MODEL','AutoTest_load','zh_CN','载荷管理自动化','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2418,'DEV_MODEL','AutoTest_load','zh_TW','载荷管理自动化','2022-04-27 03:38:53','1',NULL,NULL,_binary '\0'),(2419,'QUOTA_TYPE','SUB_COMPANY_NUMBER','en_US','Sub organization number','2022-04-27 03:39:57','1','2024-02-19 06:15:34','89730635001757696',_binary '\0'),(2420,'QUOTA_TYPE','SUB_COMPANY_NUMBER','zh_CN','子组织数量','2022-04-27 03:39:57','1','2024-02-19 06:15:34','89730635001757696',_binary '\0'),(2421,'QUOTA_TYPE','SUB_COMPANY_NUMBER','zh_TW','子組織數量','2022-04-27 03:39:57','1','2024-02-19 06:15:34','89730635001757696',_binary '\0'),(2422,'PLANE_MODEL','xiliuuav','zh_CN','SkyCells-T15kg200m','2022-04-27 06:23:33','199120334480211968',NULL,NULL,_binary '\0'),(2423,'PLANE_MODEL','xiliuuav','zh_TW','SkyCells-T15kg200m','2022-04-27 06:23:33','199120334480211968',NULL,NULL,_binary '\0'),(2424,'PLANE_MODEL','xiliuuav','en_US','SkyCells-T15kg200m','2022-04-27 06:23:33','199120334480211968',NULL,NULL,_binary '\0'),(2425,'DEV_MODEL','SPARY','zh_CN','喷洒水泵','2022-05-06 08:55:41','188243415207510016',NULL,NULL,_binary '\0'),(2426,'DEV_MODEL','SPARY','zh_TW','喷洒水泵','2022-05-06 08:55:41','188243415207510016',NULL,NULL,_binary '\0'),(2427,'DEV_MODEL','SPARY','en_US','喷洒水泵','2022-05-06 08:55:41','188243415207510016',NULL,NULL,_binary '\0'),(2428,'SPARY','sxh001','zh_CN','天途水泵','2022-05-06 08:56:58','188243415207510016',NULL,NULL,_binary '\0'),(2429,'SPARY','sxh001','zh_TW','天途水泵','2022-05-06 08:56:58','188243415207510016',NULL,NULL,_binary '\0'),(2430,'SPARY','sxh001','en_US','天途水泵','2022-05-06 08:56:58','188243415207510016',NULL,NULL,_binary '\0'),(2431,'PICTURE_LABELS','PL1','en_US','农业面源污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2432,'PICTURE_LABELS','PL1','zh_CN','农业面源污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2433,'PICTURE_LABELS','PL1','zh_TW','农业面源污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2434,'PICTURE_LABELS','PL2','en_US','固废堆存','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2435,'PICTURE_LABELS','PL2','zh_CN','固废堆存','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2436,'PICTURE_LABELS','PL2','zh_TW','固废堆存','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2437,'PICTURE_LABELS','PL3','en_US','水体污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2438,'PICTURE_LABELS','PL3','zh_CN','水体污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2439,'PICTURE_LABELS','PL3','zh_TW','水体污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2440,'PICTURE_LABELS','PL7','en_US','城镇排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2441,'PICTURE_LABELS','PL7','zh_CN','城镇排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2442,'PICTURE_LABELS','PL7','zh_TW','城镇排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2443,'PICTURE_LABELS','PL8','en_US','农业排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2444,'PICTURE_LABELS','PL8','zh_CN','农业排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2445,'PICTURE_LABELS','PL8','zh_TW','农业排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2446,'PICTURE_LABELS','PL9','en_US','灌区排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2447,'PICTURE_LABELS','PL9','zh_CN','灌区排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2448,'PICTURE_LABELS','PL9','zh_TW','灌区排口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2449,'PICTURE_LABELS','PL4','en_US','扬尘污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2450,'PICTURE_LABELS','PL4','zh_CN','扬尘污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2451,'PICTURE_LABELS','PL4','zh_TW','扬尘污染','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2452,'PICTURE_LABELS','PL5','en_US','散乱污','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2453,'PICTURE_LABELS','PL5','zh_CN','散乱污','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2454,'PICTURE_LABELS','PL5','zh_TW','散乱污','2022-06-08 06:24:53','123','2023-11-30 03:52:34','1',_binary '\0'),(2455,'PICTURE_LABELS','PL6','en_US','工业排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2456,'PICTURE_LABELS','PL6','zh_CN','工业排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2457,'PICTURE_LABELS','PL6','zh_TW','工业排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2458,'PICTURE_LABELS','PL10','en_US','农设施排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2459,'PICTURE_LABELS','PL10','zh_CN','农设施排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2460,'PICTURE_LABELS','PL10','zh_TW','农设施排污口','2022-06-08 06:24:53','123',NULL,NULL,_binary '\0'),(2461,'PICTURE_LABELS','PL11','en_US','农污水散排口','2022-06-08 06:24:54','123',NULL,NULL,_binary '\0'),(2462,'PICTURE_LABELS','PL11','zh_CN','农污水散排口','2022-06-08 06:24:54','123',NULL,NULL,_binary '\0'),(2463,'PICTURE_LABELS','PL11','zh_TW','农污水散排口','2022-06-08 06:24:54','123',NULL,NULL,_binary '\0'),(2464,'PICTURE_LABELS','PL12','en_US','其他','2022-06-08 06:24:54','123','2023-11-30 03:52:34','1',_binary '\0'),(2465,'PICTURE_LABELS','PL12','zh_CN','其他','2022-06-08 06:24:54','123','2023-11-30 03:52:34','1',_binary '\0'),(2466,'PICTURE_LABELS','PL12','zh_TW','其他','2022-06-08 06:24:54','123','2023-11-30 03:52:34','1',_binary '\0'),(2467,'TASK_TYPE','yrd','en_US','Yellow River defense','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2468,'TASK_TYPE','yrd','zh_CN','黄河保卫战专项','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2469,'TASK_TYPE','yrd','zh_TW','黃河保衛戰專項','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2470,'TASK_TYPE','other','en_US','other','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2471,'TASK_TYPE','other','zh_CN','其他','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2472,'TASK_TYPE','other','zh_TW','其他','2022-06-08 06:25:24','123',NULL,NULL,_binary '\0'),(2473,'AREA_TYPE','danger-fence','en_US','danger fence','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2474,'AREA_TYPE','danger-fence','zh_CN','危险围栏','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2475,'AREA_TYPE','danger-fence','zh_TW','危險圍欄','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2476,'AREA_TYPE','security-fence','en_US','security fence','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2477,'AREA_TYPE','security-fence','zh_CN','安全围栏','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2478,'AREA_TYPE','security-fence','zh_TW','安全圍欄','2022-06-10 03:51:15','123',NULL,NULL,_binary '\0'),(2479,'GAS_LABELS','GL1','en_US','PM2.5异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2480,'GAS_LABELS','GL1','zh_CN','PM2.5异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2481,'GAS_LABELS','GL1','zh_TW','PM2.5异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2482,'GAS_LABELS','GL2','en_US','PM10异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2483,'GAS_LABELS','GL2','zh_CN','PM10异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2484,'GAS_LABELS','GL2','zh_TW','PM10异常','2022-06-22 07:59:35','1',NULL,NULL,_binary '\0'),(2485,'GAS_LABELS','GL3','en_US','SO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2486,'GAS_LABELS','GL3','zh_CN','SO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2487,'GAS_LABELS','GL3','zh_TW','SO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2488,'GAS_LABELS','GL4','en_US','CO异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2489,'GAS_LABELS','GL4','zh_CN','CO异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2490,'GAS_LABELS','GL4','zh_TW','CO异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2491,'GAS_LABELS','GL5','en_US','NO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2492,'GAS_LABELS','GL5','zh_CN','NO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2493,'GAS_LABELS','GL5','zh_TW','NO2异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2494,'GAS_LABELS','GL6','en_US','O3异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2495,'GAS_LABELS','GL6','zh_CN','O3异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2496,'GAS_LABELS','GL6','zh_TW','O3异常','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2497,'GAS_LABELS','GL7','en_US','其他','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2498,'GAS_LABELS','GL7','zh_CN','其他','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2499,'GAS_LABELS','GL7','zh_TW','其他','2022-06-22 07:59:36','1',NULL,NULL,_binary '\0'),(2500,'PILOT_VIOLATION_PENALTY','LICENSE_SUSPENSION','en_US','License Suspension','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2501,'PILOT_VIOLATION_PENALTY','LICENSE_SUSPENSION','zh_CN','吊销执照','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2502,'PILOT_VIOLATION_PENALTY','LICENSE_SUSPENSION','zh_TW','吊销执照','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2503,'PILOT_VIOLATION_PENALTY','DEDUCTION','en_US','Deduction','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2504,'PILOT_VIOLATION_PENALTY','DEDUCTION','zh_CN','扣分','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2505,'PILOT_VIOLATION_PENALTY','DEDUCTION','zh_TW','扣分','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2506,'PILOT_VIOLATION_PENALTY','FINE','en_US','Fine','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2507,'PILOT_VIOLATION_PENALTY','FINE','zh_CN','罚款','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2508,'PILOT_VIOLATION_PENALTY','FINE','zh_TW','罚款','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2509,'PILOT_VIOLATION_PENALTY','WARN','en_US','Warn','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2510,'PILOT_VIOLATION_PENALTY','WARN','zh_CN','警告','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2511,'PILOT_VIOLATION_PENALTY','WARN','zh_TW','警告','2022-07-08 06:48:48','1',NULL,NULL,_binary '\0'),(2512,'PILOT_VIOLATION_TYPE','ANONYMOUS_FLY','en_US','Anonymous Fly','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2513,'PILOT_VIOLATION_TYPE','ANONYMOUS_FLY','zh_CN','黑飞','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2514,'PILOT_VIOLATION_TYPE','ANONYMOUS_FLY','zh_TW','黑飞','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2515,'PILOT_VIOLATION_TYPE','NO_FLY_AREA','en_US','No-Fly Area','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2516,'PILOT_VIOLATION_TYPE','NO_FLY_AREA','zh_CN','禁飞区域','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2517,'PILOT_VIOLATION_TYPE','NO_FLY_AREA','zh_TW','禁飞区域','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2518,'PILOT_VIOLATION_TYPE','WORK_DISTURBANCE','en_US','Work Disturbance','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2519,'PILOT_VIOLATION_TYPE','WORK_DISTURBANCE','zh_CN','低空区域作业干扰','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2520,'PILOT_VIOLATION_TYPE','WORK_DISTURBANCE','zh_TW','低空区域作业干扰','2022-07-08 06:49:10','1',NULL,NULL,_binary '\0'),(2521,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_INSTRUCTOR','en_US','VTOLfixed-wing Instructor','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2522,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_INSTRUCTOR','zh_CN','垂直起降固定翼-教员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2523,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_INSTRUCTOR','zh_TW','垂直起降固定翼-教员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2524,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','en_US','VTOLfixed-wing over-the-horizon pilot','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2525,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','zh_CN','垂直起降固定翼-超视距驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2526,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_OVER_THE_HORIZON_PILOT','zh_TW','垂直起降固定翼-超视距驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2527,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','en_US','VTOLfixed-wing line-of-sight pilot','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2528,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','zh_CN','垂直起降固定翼-视距内驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2529,'PILOT_CERTIFICATE_LEVEL','VTOLFIXED_WING_LINE_OF_SIGHT_PILOT','zh_TW','垂直起降固定翼-视距内驾驶员','2022-07-08 06:49:30','1',NULL,NULL,_binary '\0'),(2530,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_INSTRUCTOR','en_US','Airship Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2531,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_INSTRUCTOR','zh_CN','飞艇-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2532,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_INSTRUCTOR','zh_TW','飞艇-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2533,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_OVER_THE_HORIZON_PILOT','en_US','Airship over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2534,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_OVER_THE_HORIZON_PILOT','zh_CN','飞艇-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2535,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_OVER_THE_HORIZON_PILOT','zh_TW','飞艇-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2536,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_LINE_OF_SIGHT_PILOT','en_US','Airship line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2537,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_LINE_OF_SIGHT_PILOT','zh_CN','飞艇-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2538,'PILOT_CERTIFICATE_LEVEL','AIRSHIP_LINE_OF_SIGHT_PILOT','zh_TW','飞艇-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2539,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_INSTRUCTOR','en_US','Multi-rotor Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2540,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_INSTRUCTOR','zh_CN','多旋翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2541,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_INSTRUCTOR','zh_TW','多旋翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2542,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_OVER_THE_HORIZON_PILOT','en_US','Multi-rotor over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2543,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_OVER_THE_HORIZON_PILOT','zh_CN','多旋翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2544,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_OVER_THE_HORIZON_PILOT','zh_TW','多旋翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2545,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_LINE_OF_SIGHT_PILOT','en_US','Multi-rotor line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2546,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_LINE_OF_SIGHT_PILOT','zh_CN','多旋翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2547,'PILOT_CERTIFICATE_LEVEL','MULTI_ROTOR_LINE_OF_SIGHT_PILOT','zh_TW','多旋翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2548,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_INSTRUCTOR','en_US','Helicopter Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2549,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_INSTRUCTOR','zh_CN','直升机-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2550,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_INSTRUCTOR','zh_TW','直升机-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2551,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_OVER_THE_HORIZON_PILOT','en_US','Helicopter over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2552,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_OVER_THE_HORIZON_PILOT','zh_CN','直升机-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2553,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_OVER_THE_HORIZON_PILOT','zh_TW','直升机-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2554,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_LINE_OF_SIGHT_PILOT','en_US','Helicopter line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2555,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_LINE_OF_SIGHT_PILOT','zh_CN','直升机-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2556,'PILOT_CERTIFICATE_LEVEL','HELICOPTER_LINE_OF_SIGHT_PILOT','zh_TW','直升机-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2557,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_INSTRUCTOR','en_US','Fixed-wing Instructor','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2558,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_INSTRUCTOR','zh_CN','固定翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2559,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_INSTRUCTOR','zh_TW','固定翼-教员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2560,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_OVER_THE_HORIZON_PILOT','en_US','Fixed-wing over-the-horizon pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2561,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_OVER_THE_HORIZON_PILOT','zh_CN','固定翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2562,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_OVER_THE_HORIZON_PILOT','zh_TW','固定翼-超视距驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2563,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_LINE_OF_SIGHT_PILOT','en_US','Fixed-wing line-of-sight pilot','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2564,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_LINE_OF_SIGHT_PILOT','zh_CN','固定翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2565,'PILOT_CERTIFICATE_LEVEL','FIXED_WING_LINE_OF_SIGHT_PILOT','zh_TW','固定翼-视距内驾驶员','2022-07-08 06:49:31','1',NULL,NULL,_binary '\0'),(2566,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','en_US','Demo Company','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2567,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','zh_CN','演示组织','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2568,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_DEMO','zh_TW','演示組織','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2569,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','en_US','Industry Company','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2570,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','zh_CN','行业组织','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2571,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_INDUSTRY','zh_TW','行业組織','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2572,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','en_US','Normal Company','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2573,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','zh_CN','普通组织','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2574,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_COMPANY_NORMAL','zh_TW','普通組織','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2575,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ALL','en_US','All','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2576,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ALL','zh_CN','通用模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2577,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ALL','zh_TW','通用模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2578,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ROLE','en_US','Role','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2579,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ROLE','zh_CN','角色模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2580,'GROUP_TEMPLATE_SCOPE','GROUP_TEMPLATE_SCOPE_ROLE','zh_TW','角色模板','2022-07-26 06:29:33','1',NULL,NULL,_binary '\0'),(2581,'MNF','EMERGENCY_COMMUNICATION','en_US','Emergency Communication','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1',_binary '\0'),(2582,'MNF','EMERGENCY_COMMUNICATION','zh_CN','应急通信','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1',_binary '\0'),(2583,'MNF','EMERGENCY_COMMUNICATION','zh_TW','應急通信','2022-09-20 08:29:05','1','2022-11-11 05:49:03','1',_binary '\0'),(2584,'SUAV_USER_CERTIFICATION_STATUS','CERTIFIED','en_US','verified','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2585,'SUAV_USER_CERTIFICATION_STATUS','CERTIFIED','zh_CN','已认证','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2586,'SUAV_USER_CERTIFICATION_STATUS','CERTIFIED','zh_TW','已認證','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2587,'SUAV_USER_CERTIFICATION_STATUS','UNDER_CERTIFICATION','en_US','Under Review','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2588,'SUAV_USER_CERTIFICATION_STATUS','UNDER_CERTIFICATION','zh_CN','认证中','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2589,'SUAV_USER_CERTIFICATION_STATUS','UNDER_CERTIFICATION','zh_TW','認證中','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2590,'SUAV_USER_CERTIFICATION_STATUS','UNCERTIFIED','en_US','Not certified','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2591,'SUAV_USER_CERTIFICATION_STATUS','UNCERTIFIED','zh_CN','未认证','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2592,'SUAV_USER_CERTIFICATION_STATUS','UNCERTIFIED','zh_TW','未認證','2022-09-20 08:29:17','1','2023-08-24 02:17:46','1',_binary '\0'),(2593,'SUAV_USER_STATUS','DISABLED','en_US','disabled','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2594,'SUAV_USER_STATUS','DISABLED','zh_CN','禁用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2595,'SUAV_USER_STATUS','DISABLED','zh_TW','禁用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2596,'SUAV_USER_STATUS','ENABLED','en_US','available','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2597,'SUAV_USER_STATUS','ENABLED','zh_CN','可用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2598,'SUAV_USER_STATUS','ENABLED','zh_TW','可用','2022-09-20 08:29:20','1',NULL,NULL,_binary '\0'),(2599,'PLANE_MODEL','Tethered_Drone','en_US','系留无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2600,'PLANE_MODEL','Tethered_Drone','zh_CN','系留无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2601,'PLANE_MODEL','Tethered_Drone','zh_TW','系留无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2602,'PLANE_MODEL','Medium_Drone','en_US','中型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2603,'PLANE_MODEL','Medium_Drone','zh_CN','中型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2604,'PLANE_MODEL','Medium_Drone','zh_TW','中型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2605,'PLANE_MODEL','Large_Drone','en_US','大型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2606,'PLANE_MODEL','Large_Drone','zh_CN','大型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2607,'PLANE_MODEL','Large_Drone','zh_TW','大型无人机','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2608,'PLANE_MODEL','test','en_US','testtest','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2609,'PLANE_MODEL','test','zh_CN','testtest','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2610,'PLANE_MODEL','test','zh_TW','testtest','2022-09-20 08:29:32','1',NULL,NULL,_binary '\0'),(2611,'MAINTENANCE_TEAM','mt1','en_US','运维班组1','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2612,'MAINTENANCE_TEAM','mt1','zh_CN','运维班组1','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2613,'MAINTENANCE_TEAM','mt1','zh_TW','运维班组1','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2614,'MAINTENANCE_TEAM','mt2','en_US','运维班组2','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2615,'MAINTENANCE_TEAM','mt2','zh_CN','运维班组2','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2616,'MAINTENANCE_TEAM','mt2','zh_TW','运维班组2','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2617,'MAINTENANCE_TEAM','mt3','en_US','运维班组3','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2618,'MAINTENANCE_TEAM','mt3','zh_CN','运维班组3','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2619,'MAINTENANCE_TEAM','mt3','zh_TW','运维班组3','2022-09-22 06:45:07','1',NULL,NULL,_binary '\0'),(2620,'TOWER_CATEGORY','tc1','en_US','杆塔类别1','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2621,'TOWER_CATEGORY','tc1','zh_CN','杆塔类别1','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2622,'TOWER_CATEGORY','tc1','zh_TW','杆塔类别1','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2623,'TOWER_CATEGORY','tc2','en_US','杆塔类别2','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2624,'TOWER_CATEGORY','tc2','zh_CN','杆塔类别2','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2625,'TOWER_CATEGORY','tc2','zh_TW','杆塔类别2','2022-09-22 06:47:13','1',NULL,NULL,_binary '\0'),(2626,'scrName','1323096648758464513','en_US','Mission','2022-10-12 02:17:11','1','2022-10-13 08:24:06','1',_binary '\0'),(2627,'scrName','1323096648758464513','zh_CN','飞行作业','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2628,'scrName','1323096648758464513','zh_TW','飛行作業','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2629,'scrName','1323096648758464512','en_US','Tower','2022-10-12 02:17:11','1','2022-10-13 08:24:16','1',_binary '\0'),(2630,'scrName','1323096648758464512','zh_CN','杆塔巡检','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2631,'scrName','1323096648758464512','zh_TW','桿塔巡檢','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2632,'scrName','1323096648758464516','en_US','Model Process','2022-10-12 02:17:11','1','2022-10-13 08:24:27','1',_binary '\0'),(2633,'scrName','1323096648758464516','zh_CN','二维建图与三维建模','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2634,'scrName','1323096648758464516','zh_TW','二維建圖與三維建模','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2635,'scrName','1323096648758464517','en_US','Surveillance','2022-10-12 02:17:11','1','2022-10-13 08:24:35','1',_binary '\0'),(2636,'scrName','1323096648758464517','zh_CN','飞行监视','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2637,'scrName','1323096648758464517','zh_TW','飛行監視','2022-10-12 02:17:11','1','2022-10-12 02:24:27','1',_binary '\0'),(2638,'INTERFACE_GROUP','INTERFACE_GROUP_AI','zh_CN','AI能力','2022-10-18 01:12:21','188243415207510016',NULL,NULL,_binary '\0'),(2639,'INTERFACE_GROUP','INTERFACE_GROUP_AI','zh_TW','AI能力','2022-10-18 01:12:21','188243415207510016',NULL,NULL,_binary '\0'),(2640,'INTERFACE_GROUP','INTERFACE_GROUP_AI','en_US','AI能力','2022-10-18 01:12:21','188243415207510016',NULL,NULL,_binary '\0'),(2641,'INTERFACE_GROUP','INTERFACE_GROUP_MODELV2','zh_CN','二三维','2022-10-18 01:37:03','188243415207510016',NULL,NULL,_binary '\0'),(2642,'INTERFACE_GROUP','INTERFACE_GROUP_MODELV2','zh_TW','二三維','2022-10-18 01:37:03','188243415207510016',NULL,NULL,_binary '\0'),(2643,'INTERFACE_GROUP','INTERFACE_GROUP_MODELV2','en_US','2D & 3D','2022-10-18 01:37:03','188243415207510016',NULL,NULL,_binary '\0'),(2644,'INTERFACE_GROUP','INTERFACE_FLIGHTCONTROL','zh_CN','飞行控制','2022-11-03 03:13:37','1','2022-11-03 03:13:47',NULL,_binary ''),(2645,'INTERFACE_GROUP','INTERFACE_FLIGHTCONTROL','zh_TW','飞行控制','2022-11-03 03:13:37','1','2022-11-03 03:13:47',NULL,_binary ''),(2646,'INTERFACE_GROUP','INTERFACE_FLIGHTCONTROL','en_US','flightControl','2022-11-03 03:13:37','1','2022-11-03 03:13:47',NULL,_binary ''),(2647,'INTERFACE_GROUP','INTERFACE_GROUP_FLIGHTCONTROL','zh_CN','飞行控制','2022-11-03 03:14:12','1',NULL,NULL,_binary '\0'),(2648,'INTERFACE_GROUP','INTERFACE_GROUP_FLIGHTCONTROL','zh_TW','飞行控制','2022-11-03 03:14:12','1',NULL,NULL,_binary '\0'),(2649,'INTERFACE_GROUP','INTERFACE_GROUP_FLIGHTCONTROL','en_US','flightControl','2022-11-03 03:14:12','1',NULL,NULL,_binary '\0'),(2650,'INTERFACE_GROUP','INTERFACE_GROUP_PAYLOADCONTROL','zh_CN','载荷控制','2022-11-07 05:47:14','1',NULL,NULL,_binary '\0'),(2651,'INTERFACE_GROUP','INTERFACE_GROUP_PAYLOADCONTROL','zh_TW','载荷控制','2022-11-07 05:47:14','1',NULL,NULL,_binary '\0'),(2652,'INTERFACE_GROUP','INTERFACE_GROUP_PAYLOADCONTROL','en_US','PayloadControl','2022-11-07 05:47:14','1',NULL,NULL,_binary '\0'),(2653,'LOAD_CAM_MODEL','xh023','zh_CN','翼龙2光电吊舱','2022-11-21 01:26:15','1',NULL,NULL,_binary '\0'),(2654,'LOAD_CAM_MODEL','xh023','zh_TW','翼龙2光电吊舱','2022-11-21 01:26:15','1',NULL,NULL,_binary '\0'),(2655,'LOAD_CAM_MODEL','xh023','en_US','翼龙2光电吊舱','2022-11-21 01:26:15','1',NULL,NULL,_binary '\0'),(2656,'MNF','sccj027','zh_CN','星展测控科技股份有限公司','2022-11-21 02:33:32','1','2023-03-02 02:14:49','199120334480211968',_binary '\0'),(2657,'MNF','sccj027','zh_TW','星展测控科技股份有限公司','2022-11-21 02:33:32','1','2023-03-02 02:14:49','199120334480211968',_binary '\0'),(2658,'MNF','sccj027','en_US','星展测控科技股份有限公司','2022-11-21 02:33:32','1','2023-03-02 02:14:49','199120334480211968',_binary '\0'),(2659,'PLANE_MODEL','wrjxh062','zh_CN','FS100','2022-11-21 02:34:13','1',NULL,NULL,_binary '\0'),(2660,'PLANE_MODEL','wrjxh062','zh_TW','FS100','2022-11-21 02:34:13','1',NULL,NULL,_binary '\0'),(2661,'PLANE_MODEL','wrjxh062','en_US','FS100','2022-11-21 02:34:13','1',NULL,NULL,_binary '\0'),(2662,'PLANE_SIZE','wrjcd005','zh_CN','中型','2022-11-21 02:35:01','1',NULL,NULL,_binary '\0'),(2663,'PLANE_SIZE','wrjcd005','zh_TW','中型','2022-11-21 02:35:01','1',NULL,NULL,_binary '\0'),(2664,'PLANE_SIZE','wrjcd005','en_US','Medium','2022-11-21 02:35:01','1',NULL,NULL,_binary '\0'),(2665,'CUSTOMIZE_MISSION_REPORT_ADDRESS','56','zh_CN','http://218.75.255.91:61000/monitor-business/report','2022-11-29 01:13:56','1','2022-12-06 06:51:43','1',_binary '\0'),(2666,'CUSTOMIZE_MISSION_REPORT_ADDRESS','56','zh_TW','http://218.75.255.91:61000/monitor-business/report','2022-11-29 01:13:56','1','2022-12-06 06:51:43','1',_binary '\0'),(2667,'CUSTOMIZE_MISSION_REPORT_ADDRESS','56','en_US','http://218.75.255.91:61000/monitor-business/report','2022-11-29 01:13:56','1','2022-12-06 06:51:43','1',_binary '\0'),(2668,'PLANE_MODEL','wrjxh063','zh_CN','大疆M30系列','2022-12-09 02:44:46','1','2023-09-20 08:29:34','1',_binary '\0'),(2669,'PLANE_MODEL','wrjxh063','zh_TW','大疆M30系列','2022-12-09 02:44:46','1','2023-09-20 08:29:34','1',_binary '\0'),(2670,'PLANE_MODEL','wrjxh063','en_US','M30 series','2022-12-09 02:44:46','1','2023-09-20 08:29:34','1',_binary '\0'),(2671,'PLANE_MODEL','wrjxh064','zh_CN','M30T','2022-12-09 02:45:00','1',NULL,NULL,_binary '\0'),(2672,'PLANE_MODEL','wrjxh064','zh_TW','M30T','2022-12-09 02:45:00','1',NULL,NULL,_binary '\0'),(2673,'PLANE_MODEL','wrjxh064','en_US','M30T','2022-12-09 02:45:00','1',NULL,NULL,_binary '\0'),(2674,'LOAD_CAM_MODEL','xh024','zh_CN','M30相机','2022-12-09 02:46:02','1',NULL,NULL,_binary '\0'),(2675,'LOAD_CAM_MODEL','xh024','zh_TW','M30相机','2022-12-09 02:46:02','1',NULL,NULL,_binary '\0'),(2676,'LOAD_CAM_MODEL','xh024','en_US','M30 Camera','2022-12-09 02:46:02','1',NULL,NULL,_binary '\0'),(2677,'LOAD_CAM_MODEL','xh025','zh_CN','M30T相机','2022-12-09 02:46:20','1',NULL,NULL,_binary '\0'),(2678,'LOAD_CAM_MODEL','xh025','zh_TW','M30T相机','2022-12-09 02:46:20','1',NULL,NULL,_binary '\0'),(2679,'LOAD_CAM_MODEL','xh025','en_US','M30T Camera','2022-12-09 02:46:20','1',NULL,NULL,_binary '\0'),(2680,'POC_USER','t2','zh_CN','t2','2022-12-14 14:02:27','188243415207510016','2022-12-14 14:33:47','188243415207510016',_binary '\0'),(2681,'POC_USER','t2','zh_TW','t2','2022-12-14 14:02:27','188243415207510016','2022-12-14 14:33:47','188243415207510016',_binary '\0'),(2682,'POC_USER','t2','en_US','t2','2022-12-14 14:02:27','188243415207510016','2022-12-14 14:33:47','188243415207510016',_binary '\0'),(2683,'POC_USER','t1','zh_CN','t1','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:32:42','188243415207510016',_binary '\0'),(2684,'POC_USER','t1','zh_TW','t1','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:32:42','188243415207510016',_binary '\0'),(2685,'POC_USER','t1','en_US','t1','2022-12-14 14:02:50','188243415207510016','2022-12-14 14:32:42','188243415207510016',_binary '\0'),(2686,'PILOT_STATE','2','en_US','not pass','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2687,'PILOT_STATE','2','zh_CN','未通过','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2688,'PILOT_STATE','2','zh_TW','未通過','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2689,'PILOT_STATE','1','en_US','passed','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2690,'PILOT_STATE','1','zh_CN','已通过','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2691,'PILOT_STATE','1','zh_TW','已通過','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2692,'PILOT_STATE','0','en_US','verification','2023-01-16 03:04:35','1','2023-02-09 05:57:36','123',_binary '\0'),(2693,'PILOT_STATE','0','zh_CN','待验证','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123',_binary '\0'),(2694,'PILOT_STATE','0','zh_TW','待驗證','2023-01-16 03:04:35','1','2023-02-09 05:57:37','123',_binary '\0'),(2695,'MNF','sccj028','zh_CN','沃飞长空科技(成都)有限公司','2023-02-08 14:56:24','175627050911006720','2023-02-08 14:56:40','175627050911006720',_binary ''),(2696,'MNF','sccj028','zh_TW','沃飞长空科技(成都)有限公司','2023-02-08 14:56:24','175627050911006720','2023-02-08 14:56:40','175627050911006720',_binary ''),(2697,'MNF','sccj028','en_US','沃飞长空科技(成都)有限公司','2023-02-08 14:56:24','175627050911006720','2023-02-08 14:56:40','175627050911006720',_binary ''),(2698,'MNF','sccj029','zh_CN','伊娃云智(成都)科技有限公司','2023-02-08 14:57:44','175627050911006720',NULL,NULL,_binary '\0'),(2699,'MNF','sccj029','zh_TW','伊娃云智(成都)科技有限公司','2023-02-08 14:57:44','175627050911006720',NULL,NULL,_binary '\0'),(2700,'MNF','sccj029','en_US','伊娃云智(成都)科技有限公司','2023-02-08 14:57:44','175627050911006720',NULL,NULL,_binary '\0'),(2701,'PLANE_MODEL','wrjxh065','zh_CN','Aee-x100','2023-02-08 15:03:00','175627050911006720',NULL,NULL,_binary '\0'),(2702,'PLANE_MODEL','wrjxh065','zh_TW','Aee-x100','2023-02-08 15:03:00','175627050911006720',NULL,NULL,_binary '\0'),(2703,'PLANE_MODEL','wrjxh065','en_US','Aee-x100','2023-02-08 15:03:00','175627050911006720',NULL,NULL,_binary '\0'),(2704,'PLANE_MODEL','wrjxh066','zh_CN','xc25','2023-02-08 15:03:14','175627050911006720',NULL,NULL,_binary '\0'),(2705,'PLANE_MODEL','wrjxh066','zh_TW','xc25','2023-02-08 15:03:14','175627050911006720',NULL,NULL,_binary '\0'),(2706,'PLANE_MODEL','wrjxh066','en_US','xc25','2023-02-08 15:03:14','175627050911006720',NULL,NULL,_binary '\0'),(2707,'PLANE_MODEL','wrjxh067','zh_CN','ER-T700','2023-02-08 15:03:33','175627050911006720',NULL,NULL,_binary '\0'),(2708,'PLANE_MODEL','wrjxh067','zh_TW','ER-T700','2023-02-08 15:03:33','175627050911006720',NULL,NULL,_binary '\0'),(2709,'PLANE_MODEL','wrjxh067','en_US','ER-T700','2023-02-08 15:03:33','175627050911006720',NULL,NULL,_binary '\0'),(2710,'LOAD_CAM_MODEL','xh026','zh_CN','一电通用摄像头','2023-02-08 15:03:56','175627050911006720',NULL,NULL,_binary '\0'),(2711,'LOAD_CAM_MODEL','xh026','zh_TW','一电通用摄像头','2023-02-08 15:03:56','175627050911006720',NULL,NULL,_binary '\0'),(2712,'LOAD_CAM_MODEL','xh026','en_US','一电通用摄像头','2023-02-08 15:03:56','175627050911006720',NULL,NULL,_binary '\0'),(2713,'LOAD_CAM_MODEL','xh027','zh_CN','伊娃通用摄像头','2023-02-08 15:04:13','175627050911006720',NULL,NULL,_binary '\0'),(2714,'LOAD_CAM_MODEL','xh027','zh_TW','伊娃通用摄像头','2023-02-08 15:04:13','175627050911006720',NULL,NULL,_binary '\0'),(2715,'LOAD_CAM_MODEL','xh027','en_US','伊娃通用摄像头','2023-02-08 15:04:13','175627050911006720',NULL,NULL,_binary '\0'),(2716,'LOAD_CAM_MODEL','xh028','zh_CN','沃飞通用摄像头','2023-02-08 15:04:26','175627050911006720',NULL,NULL,_binary '\0'),(2717,'LOAD_CAM_MODEL','xh028','zh_TW','沃飞通用摄像头','2023-02-08 15:04:26','175627050911006720',NULL,NULL,_binary '\0'),(2718,'LOAD_CAM_MODEL','xh028','en_US','沃飞通用摄像头','2023-02-08 15:04:26','175627050911006720',NULL,NULL,_binary '\0'),(2719,'LOAD_SPK_MODEL','hhqxh004','zh_CN','LP12','2023-02-13 01:31:23','1',NULL,NULL,_binary '\0'),(2720,'LOAD_SPK_MODEL','hhqxh004','zh_TW','LP12','2023-02-13 01:31:23','1',NULL,NULL,_binary '\0'),(2721,'LOAD_SPK_MODEL','hhqxh004','en_US','LP12','2023-02-13 01:31:23','1',NULL,NULL,_binary '\0'),(2722,'LOAD_CAM_MODEL','XZ001','zh_CN','光电吊舱-星展','2023-03-02 03:17:07','199120334480211968',NULL,NULL,_binary '\0'),(2723,'LOAD_CAM_MODEL','XZ001','zh_TW','光电吊舱-星展','2023-03-02 03:17:07','199120334480211968',NULL,NULL,_binary '\0'),(2724,'LOAD_CAM_MODEL','XZ001','en_US','光电吊舱-星展','2023-03-02 03:17:07','199120334480211968',NULL,NULL,_binary '\0'),(2725,'LOAD_HNG_MODEL','jkxh013','zh_CN','DJI DOCK','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1',_binary '\0'),(2726,'LOAD_HNG_MODEL','jkxh013','zh_TW','DJI DOCK','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1',_binary '\0'),(2727,'LOAD_HNG_MODEL','jkxh013','en_US','DJI DOCK','2023-03-22 05:57:19','1','2024-03-18 06:40:35','1',_binary '\0'),(2728,'PLANE_MODEL','wrjxh071','zh_CN','御3行业版','2023-03-22 06:01:07','1',NULL,NULL,_binary '\0'),(2729,'PLANE_MODEL','wrjxh071','zh_TW','M3E','2023-03-22 06:01:07','1',NULL,NULL,_binary '\0'),(2730,'PLANE_MODEL','wrjxh071','en_US','M3E','2023-03-22 06:01:07','1',NULL,NULL,_binary '\0'),(2731,'PLANE_MODEL','wrjxh072','zh_CN','御3双光版','2023-03-22 06:01:30','1',NULL,NULL,_binary '\0'),(2732,'PLANE_MODEL','wrjxh072','zh_TW','M3T','2023-03-22 06:01:30','1',NULL,NULL,_binary '\0'),(2733,'PLANE_MODEL','wrjxh072','en_US','M3T','2023-03-22 06:01:30','1',NULL,NULL,_binary '\0'),(2734,'PLANE_MODEL','wrjxh073','zh_CN','御3多光谱版','2023-03-22 06:01:55','1',NULL,NULL,_binary '\0'),(2735,'PLANE_MODEL','wrjxh073','zh_TW','M3M','2023-03-22 06:01:55','1',NULL,NULL,_binary '\0'),(2736,'PLANE_MODEL','wrjxh073','en_US','M3M','2023-03-22 06:01:55','1',NULL,NULL,_binary '\0'),(2737,'LOAD_CAM_MODEL','xh030','en_US','DJI COMMON GIMMBAL','2023-03-22 06:06:01','1',NULL,NULL,_binary '\0'),(2738,'LOAD_CAM_MODEL','xh030','zh_CN','大疆通用云台相机','2023-03-22 06:06:01','1',NULL,NULL,_binary '\0'),(2739,'LOAD_CAM_MODEL','xh030','zh_TW','大疆通用云台相机','2023-03-22 06:06:01','1',NULL,NULL,_binary '\0'),(2740,'DEV_MODEL_HUBBLE','wrjxh063','zh_CN','4','2023-04-06 03:04:54','1',NULL,NULL,_binary '\0'),(2741,'DEV_MODEL_HUBBLE','wrjxh063','zh_TW','4','2023-04-06 03:04:54','1',NULL,NULL,_binary '\0'),(2742,'DEV_MODEL_HUBBLE','wrjxh063','en_US','4','2023-04-06 03:04:54','1',NULL,NULL,_binary '\0'),(2743,'DEV_MODEL_HUBBLE','xh024','en_US','17','2023-04-06 03:06:19','1',NULL,NULL,_binary '\0'),(2744,'DEV_MODEL_HUBBLE','xh024','zh_TW','17','2023-04-06 03:06:19','1',NULL,NULL,_binary '\0'),(2745,'DEV_MODEL_HUBBLE','xh024','zh_CN','17','2023-04-06 03:06:19','1',NULL,NULL,_binary '\0'),(2746,'LOAD_HNG_MODEL','jkxh014','en_US','M30','2023-04-09 06:23:41','173818970422378496',NULL,NULL,_binary '\0'),(2747,'LOAD_HNG_MODEL','jkxh014','zh_TW','M30','2023-04-09 06:23:41','173818970422378496',NULL,NULL,_binary '\0'),(2748,'LOAD_HNG_MODEL','jkxh014','zh_CN','M30','2023-04-09 06:23:41','173818970422378496',NULL,NULL,_binary '\0'),(2749,'LOAD_CAM_MODEL','M30_dual_camera','zh_CN','大疆M30摄像头','2023-04-09 06:24:30','173818970422378496',NULL,NULL,_binary '\0'),(2750,'LOAD_CAM_MODEL','M30_dual_camera','zh_TW','大疆M30摄像头','2023-04-09 06:24:30','173818970422378496',NULL,NULL,_binary '\0'),(2751,'LOAD_CAM_MODEL','M30_dual_camera','en_US','M30 camera','2023-04-09 06:24:30','173818970422378496',NULL,NULL,_binary '\0'),(2752,'APP_TYPE','PARTNER_APP','en_US','Collaborative applications','2023-04-18 06:14:40','1',NULL,NULL,_binary '\0'),(2753,'APP_TYPE','PARTNER_APP','zh_CN','合作应用','2023-04-18 06:14:40','1',NULL,NULL,_binary '\0'),(2754,'APP_TYPE','PARTNER_APP','zh_TW','合作应用','2023-04-18 06:14:40','1',NULL,NULL,_binary '\0'),(2755,'XF_COMPANY','167','zh_CN','167','2023-04-19 08:44:02','188243415207510016',NULL,NULL,_binary '\0'),(2756,'XF_COMPANY','167','zh_TW','167','2023-04-19 08:44:02','188243415207510016',NULL,NULL,_binary '\0'),(2757,'XF_COMPANY','167','en_US','167','2023-04-19 08:44:02','188243415207510016',NULL,NULL,_binary '\0'),(2758,'LOAD_GAS_MODEL','qtjc002','zh_CN','HF-G6SP','2023-04-24 02:33:42','1',NULL,NULL,_binary '\0'),(2759,'LOAD_GAS_MODEL','qtjc002','zh_TW','HF-G6SP','2023-04-24 02:33:42','1',NULL,NULL,_binary '\0'),(2760,'LOAD_GAS_MODEL','qtjc002','en_US','HF-G6SP','2023-04-24 02:33:42','1',NULL,NULL,_binary '\0'),(2761,'SCENARIOMAP','HUS00000076','zh_CN','320904-0-LAA-02-0001','2023-04-24 08:10:51','1','2023-06-20 12:03:24','89730635001757696',_binary '\0'),(2762,'SCENARIOMAP','HUS00000076','zh_TW','320904-0-LAA-02-0001','2023-04-24 08:10:51','1','2023-06-20 12:03:24','89730635001757696',_binary '\0'),(2763,'SCENARIOMAP','HUS00000076','en_US','320904-0-LAA-02-0001','2023-04-24 08:10:51','1','2023-06-20 12:03:24','89730635001757696',_binary '\0'),(2764,'SCENARIOMAP','HUS00000068','zh_CN','320211-0-LAA-02-0004','2023-04-24 08:14:53','1','2023-06-20 12:10:56','89730635001757696',_binary '\0'),(2765,'SCENARIOMAP','HUS00000068','zh_TW','320211-0-LAA-02-0004','2023-04-24 08:14:53','1','2023-06-20 12:10:56','89730635001757696',_binary '\0'),(2766,'SCENARIOMAP','HUS00000068','en_US','320211-0-LAA-02-0004','2023-04-24 08:14:53','1','2023-06-20 12:10:56','89730635001757696',_binary '\0'),(2767,'SCENARIOMAP','HUS00000077','zh_CN','321003-0-LAA-02-0001','2023-04-24 08:15:40','1','2023-06-20 12:11:25','89730635001757696',_binary '\0'),(2768,'SCENARIOMAP','HUS00000077','zh_TW','321003-0-LAA-02-0001','2023-04-24 08:15:40','1','2023-06-20 12:11:25','89730635001757696',_binary '\0'),(2769,'SCENARIOMAP','HUS00000077','en_US','321003-0-LAA-02-0001','2023-04-24 08:15:40','1','2023-06-20 12:11:25','89730635001757696',_binary '\0'),(2770,'SCENARIOMAP','HUS00000073','zh_CN','320703-0-LAA-02-0001','2023-04-24 08:24:18','1',NULL,NULL,_binary '\0'),(2771,'SCENARIOMAP','HUS00000073','zh_TW','320703-0-LAA-02-0001','2023-04-24 08:24:18','1',NULL,NULL,_binary '\0'),(2772,'SCENARIOMAP','HUS00000073','en_US','320703-0-LAA-02-0001','2023-04-24 08:24:18','1',NULL,NULL,_binary '\0'),(2773,'SCENARIOMAP','HUS00000066','zh_CN','320506-0-LAA-02-0001','2023-04-24 08:24:38','1',NULL,NULL,_binary '\0'),(2774,'SCENARIOMAP','HUS00000066','zh_TW','320506-0-LAA-02-0001','2023-04-24 08:24:38','1',NULL,NULL,_binary '\0'),(2775,'SCENARIOMAP','HUS00000066','en_US','320506-0-LAA-02-0001','2023-04-24 08:24:38','1',NULL,NULL,_binary '\0'),(2776,'SCENARIOMAP','HUS00000079','zh_CN','321204-0-LAA-02-0001','2023-04-24 08:24:59','1',NULL,NULL,_binary '\0'),(2777,'SCENARIOMAP','HUS00000079','zh_TW','321204-0-LAA-02-0001','2023-04-24 08:24:59','1',NULL,NULL,_binary '\0'),(2778,'SCENARIOMAP','HUS00000079','en_US','321204-0-LAA-02-0001','2023-04-24 08:24:59','1',NULL,NULL,_binary '\0'),(2779,'SCENARIOMAP','HUS00000075','zh_CN','320904-0-LAA-02-0005','2023-04-24 08:25:27','1',NULL,NULL,_binary '\0'),(2780,'SCENARIOMAP','HUS00000075','zh_TW','320904-0-LAA-02-0005','2023-04-24 08:25:27','1',NULL,NULL,_binary '\0'),(2781,'SCENARIOMAP','HUS00000075','en_US','320904-0-LAA-02-0005','2023-04-24 08:25:27','1',NULL,NULL,_binary '\0'),(2782,'SCENARIOMAP','HUS00000069','zh_CN','320211-0-LAA-02-0005','2023-04-24 08:25:50','1','2023-06-20 12:11:36','89730635001757696',_binary '\0'),(2783,'SCENARIOMAP','HUS00000069','zh_TW','320211-0-LAA-02-0005','2023-04-24 08:25:50','1','2023-06-20 12:11:36','89730635001757696',_binary '\0'),(2784,'SCENARIOMAP','HUS00000069','en_US','320211-0-LAA-02-0005','2023-04-24 08:25:50','1','2023-06-20 12:11:36','89730635001757696',_binary '\0'),(2785,'SCENARIOMAP','HUS00000072','zh_CN','320706-0-LAA-02-0001','2023-04-24 08:27:10','1','2023-06-20 12:13:10','89730635001757696',_binary '\0'),(2786,'SCENARIOMAP','HUS00000072','zh_TW','320706-0-LAA-02-0001','2023-04-24 08:27:10','1','2023-06-20 12:13:10','89730635001757696',_binary '\0'),(2787,'SCENARIOMAP','HUS00000072','en_US','320706-0-LAA-02-0001','2023-04-24 08:27:10','1','2023-06-20 12:13:10','89730635001757696',_binary '\0'),(2788,'SCENARIOMAP','HUS00000063','zh_CN','320115-0-LAA-02-0003','2023-04-24 08:30:45','1','2023-09-30 06:01:27','89730635001757696',_binary ''),(2789,'SCENARIOMAP','HUS00000063','zh_TW','320115-0-LAA-02-0003','2023-04-24 08:30:45','1','2023-09-30 06:01:27','89730635001757696',_binary ''),(2790,'SCENARIOMAP','HUS00000063','en_US','320115-0-LAA-02-0003','2023-04-24 08:30:45','1','2023-09-30 06:01:27','89730635001757696',_binary ''),(2791,'SCENARIOMAP','HUS00000062','zh_CN','320102-0-LAA-02-0002','2023-04-24 08:31:08','1',NULL,NULL,_binary '\0'),(2792,'SCENARIOMAP','HUS00000062','zh_TW','320102-0-LAA-02-0002','2023-04-24 08:31:08','1',NULL,NULL,_binary '\0'),(2793,'SCENARIOMAP','HUS00000062','en_US','320102-0-LAA-02-0002','2023-04-24 08:31:08','1',NULL,NULL,_binary '\0'),(2794,'SCENARIOMAP','HUS00000061','zh_CN','320102-0-LAA-02-0005','2023-04-24 08:31:27','1','2023-09-26 02:33:15',NULL,_binary ''),(2795,'SCENARIOMAP','HUS00000061','zh_TW','320102-0-LAA-02-0005','2023-04-24 08:31:27','1','2023-09-26 02:33:15',NULL,_binary ''),(2796,'SCENARIOMAP','HUS00000061','en_US','320102-0-LAA-02-0005','2023-04-24 08:31:27','1','2023-09-26 02:33:15',NULL,_binary ''),(2797,'SCENARIOMAP','HUS00000064','zh_CN','320111-0-LAA-02-0002','2023-04-24 08:31:47','1',NULL,NULL,_binary '\0'),(2798,'SCENARIOMAP','HUS00000064','zh_TW','320111-0-LAA-02-0002','2023-04-24 08:31:47','1',NULL,NULL,_binary '\0'),(2799,'SCENARIOMAP','HUS00000064','en_US','320111-0-LAA-02-0002','2023-04-24 08:31:47','1',NULL,NULL,_binary '\0'),(2800,'SCENARIOMAP','HUS00000074','zh_CN','320703-0-LAA-02-0002','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696',_binary '\0'),(2801,'SCENARIOMAP','HUS00000074','zh_TW','320703-0-LAA-02-0002','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696',_binary '\0'),(2802,'SCENARIOMAP','HUS00000074','en_US','320703-0-LAA-02-0002','2023-04-24 08:32:10','1','2023-06-20 12:15:30','89730635001757696',_binary '\0'),(2803,'SCENARIOMAP','HUS00000081','zh_CN','321302-0-LAA-02-0002','2023-04-24 08:32:27','1',NULL,NULL,_binary '\0'),(2804,'SCENARIOMAP','HUS00000081','zh_TW','321302-0-LAA-02-0002','2023-04-24 08:32:27','1',NULL,NULL,_binary '\0'),(2805,'SCENARIOMAP','HUS00000081','en_US','321302-0-LAA-02-0002','2023-04-24 08:32:27','1',NULL,NULL,_binary '\0'),(2806,'SCENARIOMAP','HUS00000083','zh_CN','321324-0-LAA-02-0002','2023-04-24 08:32:47','1','2023-04-27 15:15:24','1',_binary '\0'),(2807,'SCENARIOMAP','HUS00000083','zh_TW','321324-0-LAA-02-0002','2023-04-24 08:32:47','1','2023-04-27 15:15:24','1',_binary '\0'),(2808,'SCENARIOMAP','HUS00000083','en_US','321324-0-LAA-02-0002','2023-04-24 08:32:48','1','2023-04-27 15:15:24','1',_binary '\0'),(2809,'SCENARIOMAP','HUS00000082','zh_CN','321311-0-LAA-02-0005','2023-04-24 08:33:06','1',NULL,NULL,_binary '\0'),(2810,'SCENARIOMAP','HUS00000082','zh_TW','321311-0-LAA-02-0005','2023-04-24 08:33:06','1',NULL,NULL,_binary '\0'),(2811,'SCENARIOMAP','HUS00000082','en_US','321311-0-LAA-02-0005','2023-04-24 08:33:06','1',NULL,NULL,_binary '\0'),(2812,'SCENARIOMAP','HUS00000080','zh_CN','321202-0-LAA-02-0003','2023-04-24 08:33:25','1',NULL,NULL,_binary '\0'),(2813,'SCENARIOMAP','HUS00000080','zh_TW','321202-0-LAA-02-0003','2023-04-24 08:33:25','1',NULL,NULL,_binary '\0'),(2814,'SCENARIOMAP','HUS00000080','en_US','321202-0-LAA-02-0003','2023-04-24 08:33:25','1',NULL,NULL,_binary '\0'),(2815,'SCENARIOMAP','HUS00000071','en_US','320303-0-LAA-02-0003','2023-04-24 08:33:54','1',NULL,NULL,_binary '\0'),(2816,'SCENARIOMAP','HUS00000071','zh_TW','320303-0-LAA-02-0003','2023-04-24 08:33:54','1',NULL,NULL,_binary '\0'),(2817,'SCENARIOMAP','HUS00000071','zh_CN','320303-0-LAA-02-0003','2023-04-24 08:33:54','1',NULL,NULL,_binary '\0'),(2818,'SCENARIOMAP','HUS00000078','zh_CN','321183-0-LAA-02-0001','2023-04-24 08:34:24','1',NULL,NULL,_binary '\0'),(2819,'SCENARIOMAP','HUS00000078','zh_TW','321183-0-LAA-02-0001','2023-04-24 08:34:24','1',NULL,NULL,_binary '\0'),(2820,'SCENARIOMAP','HUS00000078','en_US','321183-0-LAA-02-0001','2023-04-24 08:34:24','1',NULL,NULL,_binary '\0'),(2821,'HOUSEAREA','HUS00000083','zh_CN','527181078','2023-04-24 08:40:49','1',NULL,NULL,_binary '\0'),(2822,'HOUSEAREA','HUS00000083','zh_TW','527181078','2023-04-24 08:40:49','1',NULL,NULL,_binary '\0'),(2823,'HOUSEAREA','HUS00000083','en_US','527181078','2023-04-24 08:40:49','1',NULL,NULL,_binary '\0'),(2824,'HOUSEAREA','HUS00000082','zh_CN','527181084','2023-04-24 08:41:01','1',NULL,NULL,_binary '\0'),(2825,'HOUSEAREA','HUS00000082','zh_TW','527181084','2023-04-24 08:41:01','1',NULL,NULL,_binary '\0'),(2826,'HOUSEAREA','HUS00000082','en_US','527181084','2023-04-24 08:41:01','1',NULL,NULL,_binary '\0'),(2827,'HOUSEAREA','HUS00000081','zh_CN','527181089','2023-04-24 08:41:14','1',NULL,NULL,_binary '\0'),(2828,'HOUSEAREA','HUS00000081','zh_TW','527181089','2023-04-24 08:41:14','1',NULL,NULL,_binary '\0'),(2829,'HOUSEAREA','HUS00000081','en_US','527181089','2023-04-24 08:41:14','1',NULL,NULL,_binary '\0'),(2830,'HOUSEAREA','HUS00000080','zh_CN','523101165','2023-04-24 08:41:35','1',NULL,NULL,_binary '\0'),(2831,'HOUSEAREA','HUS00000080','zh_TW','523101165','2023-04-24 08:41:35','1',NULL,NULL,_binary '\0'),(2832,'HOUSEAREA','HUS00000080','en_US','523101165','2023-04-24 08:41:35','1',NULL,NULL,_binary '\0'),(2833,'HOUSEAREA','HUS00000079','zh_CN','523101164','2023-04-24 08:42:03','1',NULL,NULL,_binary '\0'),(2834,'HOUSEAREA','HUS00000079','zh_TW','523101164','2023-04-24 08:42:03','1',NULL,NULL,_binary '\0'),(2835,'HOUSEAREA','HUS00000079','en_US','523101164','2023-04-24 08:42:03','1',NULL,NULL,_binary '\0'),(2836,'HOUSEAREA','HUS00000078','zh_CN','511520','2023-04-24 08:42:23','1',NULL,NULL,_binary '\0'),(2837,'HOUSEAREA','HUS00000078','zh_TW','511520','2023-04-24 08:42:23','1',NULL,NULL,_binary '\0'),(2838,'HOUSEAREA','HUS00000078','en_US','511520','2023-04-24 08:42:23','1',NULL,NULL,_binary '\0'),(2839,'HOUSEAREA','HUS00000077','zh_CN','514101196','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696',_binary '\0'),(2840,'HOUSEAREA','HUS00000077','zh_TW','514101196','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696',_binary '\0'),(2841,'HOUSEAREA','HUS00000077','en_US','514101196','2023-04-24 08:42:37','1','2023-06-15 10:04:55','89730635001757696',_binary '\0'),(2842,'HOUSEAREA','HUS00000076','zh_CN','527101185','2023-04-24 08:42:52','1','2023-06-15 10:05:05','89730635001757696',_binary '\0'),(2843,'HOUSEAREA','HUS00000076','zh_TW','527101185','2023-04-24 08:42:52','1','2023-06-15 10:05:05','89730635001757696',_binary '\0'),(2844,'HOUSEAREA','HUS00000076','en_US','527101185','2023-04-24 08:42:52','1','2023-06-15 10:05:05','89730635001757696',_binary '\0'),(2845,'HOUSEAREA','HUS00000075','zh_CN','515101197','2023-04-24 08:43:09','1',NULL,NULL,_binary '\0'),(2846,'HOUSEAREA','HUS00000075','zh_TW','515101197','2023-04-24 08:43:09','1',NULL,NULL,_binary '\0'),(2847,'HOUSEAREA','HUS00000075','en_US','515101197','2023-04-24 08:43:09','1',NULL,NULL,_binary '\0'),(2848,'HOUSEAREA','HUS00000074','zh_CN','251375','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696',_binary '\0'),(2849,'HOUSEAREA','HUS00000074','zh_TW','251375','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696',_binary '\0'),(2850,'HOUSEAREA','HUS00000074','en_US','251375','2023-04-24 08:43:28','1','2023-06-15 10:05:15','89730635001757696',_binary '\0'),(2851,'HOUSEAREA','HUS00000073','zh_CN','251373','2023-04-24 08:43:48','1',NULL,NULL,_binary '\0'),(2852,'HOUSEAREA','HUS00000073','zh_TW','251373','2023-04-24 08:43:48','1',NULL,NULL,_binary '\0'),(2853,'HOUSEAREA','HUS00000073','en_US','251373','2023-04-24 08:43:48','1',NULL,NULL,_binary '\0'),(2854,'HOUSEAREA','HUS00000072','zh_CN','518101608','2023-04-24 08:44:09','1','2023-09-27 02:00:26','89730635001757696',_binary '\0'),(2855,'HOUSEAREA','HUS00000072','zh_TW','518101608','2023-04-24 08:44:09','1','2023-09-27 02:00:26','89730635001757696',_binary '\0'),(2856,'HOUSEAREA','HUS00000072','en_US','518101608','2023-04-24 08:44:09','1','2023-09-27 02:00:26','89730635001757696',_binary '\0'),(2857,'HOUSEAREA','HUS00000071','zh_CN','516101224','2023-04-24 08:44:32','1',NULL,NULL,_binary '\0'),(2858,'HOUSEAREA','HUS00000071','zh_TW','516101224','2023-04-24 08:44:32','1',NULL,NULL,_binary '\0'),(2859,'HOUSEAREA','HUS00000071','en_US','516101224','2023-04-24 08:44:32','1',NULL,NULL,_binary '\0'),(2860,'HOUSEAREA','HUS00000069','zh_CN','510201705','2023-04-24 08:44:46','1','2023-06-15 10:05:38','89730635001757696',_binary '\0'),(2861,'HOUSEAREA','HUS00000069','zh_TW','510201705','2023-04-24 08:44:46','1','2023-06-15 10:05:38','89730635001757696',_binary '\0'),(2862,'HOUSEAREA','HUS00000069','en_US','510201705','2023-04-24 08:44:46','1','2023-06-15 10:05:38','89730635001757696',_binary '\0'),(2863,'HOUSEAREA','HUS00000068','zh_CN','510201703','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696',_binary '\0'),(2864,'HOUSEAREA','HUS00000068','zh_TW','510201703','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696',_binary '\0'),(2865,'HOUSEAREA','HUS00000068','en_US','510201703','2023-04-24 08:44:58','1','2023-06-15 10:05:50','89730635001757696',_binary '\0'),(2866,'HOUSEAREA','HUS00000066','zh_CN','512101170','2023-04-24 08:45:14','1',NULL,NULL,_binary '\0'),(2867,'HOUSEAREA','HUS00000066','zh_TW','512101170','2023-04-24 08:45:14','1',NULL,NULL,_binary '\0'),(2868,'HOUSEAREA','HUS00000066','en_US','512101170','2023-04-24 08:45:14','1',NULL,NULL,_binary '\0'),(2869,'HOUSEAREA','HUS00000063','zh_CN','251292','2023-04-24 08:46:13','1','2023-06-15 10:06:01','89730635001757696',_binary '\0'),(2870,'HOUSEAREA','HUS00000063','zh_TW','251292','2023-04-24 08:46:13','1','2023-06-15 10:06:01','89730635001757696',_binary '\0'),(2871,'HOUSEAREA','HUS00000063','en_US','251292','2023-04-24 08:46:13','1','2023-06-15 10:06:01','89730635001757696',_binary '\0'),(2872,'HOUSEAREA','HUS00000062','zh_CN','123','2023-04-24 08:46:30','1','2023-09-21 08:27:54','89730635001757696',_binary '\0'),(2873,'HOUSEAREA','HUS00000062','zh_TW','123','2023-04-24 08:46:30','1','2023-09-21 08:27:54','89730635001757696',_binary '\0'),(2874,'HOUSEAREA','HUS00000062','en_US','123','2023-04-24 08:46:30','1','2023-09-21 08:27:54','89730635001757696',_binary '\0'),(2875,'HOUSEAREA','HUS00000061','zh_CN','2501100050209','2023-04-24 08:46:59','1','2023-09-21 08:30:34',NULL,_binary ''),(2876,'HOUSEAREA','HUS00000061','zh_TW','2501100050209','2023-04-24 08:46:59','1','2023-09-21 08:30:34',NULL,_binary ''),(2877,'HOUSEAREA','HUS00000061','en_US','2501100050209','2023-04-24 08:46:59','1','2023-09-21 08:30:34',NULL,_binary ''),(2878,'HOUSEAREA','HUS00000064','zh_CN','250990','2023-04-24 09:35:19','1',NULL,NULL,_binary '\0'),(2879,'HOUSEAREA','HUS00000064','zh_TW','250990','2023-04-24 09:35:19','1',NULL,NULL,_binary '\0'),(2880,'HOUSEAREA','HUS00000064','en_US','250990','2023-04-24 09:35:19','1',NULL,NULL,_binary '\0'),(2881,'LOAD_GAS_MODEL','AutoTest_gasData','zh_CN','气体自动化','2023-04-26 08:11:07','58582660930338816','2024-11-14 00:55:08','58582660930338816',_binary ''),(2882,'LOAD_GAS_MODEL','AutoTest_gasData','zh_TW','气体自动化','2023-04-26 08:11:07','58582660930338816','2024-11-14 00:55:08','58582660930338816',_binary ''),(2883,'LOAD_GAS_MODEL','AutoTest_gasData','en_US','气体自动化','2023-04-26 08:11:07','58582660930338816','2024-11-14 00:55:08','58582660930338816',_binary ''),(2884,'HOUSEAREA','HUS00000084','zh_CN','5191013192','2023-04-26 11:54:13','1','2023-06-15 10:04:34','89730635001757696',_binary '\0'),(2885,'HOUSEAREA','HUS00000084','zh_TW','5191013192','2023-04-26 11:54:13','1','2023-06-15 10:04:34','89730635001757696',_binary '\0'),(2886,'HOUSEAREA','HUS00000084','en_US','5191013192','2023-04-26 11:54:13','1','2023-06-15 10:04:34','89730635001757696',_binary '\0'),(2887,'PLANE_MODEL','AutoTest_plane2','zh_CN','无人机管理自动化2','2023-04-27 02:19:13','58582660930338816','2024-11-14 01:09:46','58582660930338816',_binary ''),(2888,'PLANE_MODEL','AutoTest_plane2','zh_TW','无人机管理自动化2','2023-04-27 02:19:13','58582660930338816','2024-11-14 01:09:46','58582660930338816',_binary ''),(2889,'PLANE_MODEL','AutoTest_plane2','en_US','无人机管理自动化2','2023-04-27 02:19:13','58582660930338816','2024-11-14 01:09:46','58582660930338816',_binary ''),(2890,'HOUSEAREA','HUS00000086','zh_CN','5131100041020','2023-04-27 04:55:11','1','2023-09-21 08:38:46','89730635001757696',_binary '\0'),(2891,'HOUSEAREA','HUS00000086','zh_TW','5131100041020','2023-04-27 04:55:11','1','2023-09-21 08:38:46','89730635001757696',_binary '\0'),(2892,'HOUSEAREA','HUS00000086','en_US','5131100041020','2023-04-27 04:55:11','1','2023-09-21 08:38:46','89730635001757696',_binary '\0'),(2893,'HOUSEAREA','HUS00000085','zh_CN','5121100050157','2023-04-27 04:55:29','1','2023-06-15 10:04:18','89730635001757696',_binary '\0'),(2894,'HOUSEAREA','HUS00000085','zh_TW','5121100050157','2023-04-27 04:55:29','1','2023-06-15 10:04:18','89730635001757696',_binary '\0'),(2895,'HOUSEAREA','HUS00000085','en_US','5121100050157','2023-04-27 04:55:29','1','2023-06-15 10:04:18','89730635001757696',_binary '\0'),(2896,'HOUSEAREA','HUS00000087','zh_CN','251353','2023-04-27 05:03:35','1',NULL,NULL,_binary '\0'),(2897,'HOUSEAREA','HUS00000087','zh_TW','251353','2023-04-27 05:03:35','1',NULL,NULL,_binary '\0'),(2898,'HOUSEAREA','HUS00000087','en_US','251353','2023-04-27 05:03:35','1',NULL,NULL,_binary '\0'),(2899,'SCENARIOMAP','HUS00000087','zh_CN','320803-0-LAA-03-0001-01','2023-04-27 05:04:10','1',NULL,NULL,_binary '\0'),(2900,'SCENARIOMAP','HUS00000087','zh_TW','320803-0-LAA-03-0001-01','2023-04-27 05:04:10','1',NULL,NULL,_binary '\0'),(2901,'SCENARIOMAP','HUS00000087','en_US','320803-0-LAA-03-0001-01','2023-04-27 05:04:10','1',NULL,NULL,_binary '\0'),(2902,'SCENARIOMAP','HUS00000086','en_US','320602-0-LAA-02-0006','2023-04-27 05:04:31','1','2023-09-26 02:36:41','188243415207510016',_binary '\0'),(2903,'SCENARIOMAP','HUS00000086','zh_TW','320602-0-LAA-02-0006','2023-04-27 05:04:31','1','2023-09-26 02:36:41','188243415207510016',_binary '\0'),(2904,'SCENARIOMAP','HUS00000086','zh_CN','320602-0-LAA-02-0006','2023-04-27 05:04:31','1','2023-09-26 02:36:41','188243415207510016',_binary '\0'),(2905,'SCENARIOMAP','HUS00000085','zh_CN','320508-0-LAA-02-0005','2023-04-27 05:05:04','1','2023-06-20 12:17:34','89730635001757696',_binary '\0'),(2906,'SCENARIOMAP','HUS00000085','zh_TW','320508-0-LAA-02-0005','2023-04-27 05:05:04','1','2023-06-20 12:17:34','89730635001757696',_binary '\0'),(2907,'SCENARIOMAP','HUS00000085','en_US','320508-0-LAA-02-0005','2023-04-27 05:05:04','1','2023-06-20 12:17:34','89730635001757696',_binary '\0'),(2908,'SCENARIOMAP','HUS00000084','zh_CN','320411-0-LAA-02-0001','2023-04-27 15:09:02','1','2023-06-20 12:12:59','89730635001757696',_binary '\0'),(2909,'SCENARIOMAP','HUS00000084','zh_TW','320411-0-LAA-02-0001','2023-04-27 15:09:02','1','2023-06-20 12:12:59','89730635001757696',_binary '\0'),(2910,'SCENARIOMAP','HUS00000084','en_US','320411-0-LAA-02-0001','2023-04-27 15:09:02','1','2023-06-20 12:12:59','89730635001757696',_binary '\0'),(2911,'XF_COMPANY','173','en_US','173','2023-05-11 05:55:05','1',NULL,NULL,_binary '\0'),(2912,'XF_COMPANY','173','zh_TW','173','2023-05-11 05:55:05','1',NULL,NULL,_binary '\0'),(2913,'XF_COMPANY','173','zh_CN','173','2023-05-11 05:55:05','1',NULL,NULL,_binary '\0'),(2914,'CIPHER_OBJECT','CipherInterface','en_US','Interface','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2915,'CIPHER_OBJECT','CipherInterface','zh_CN','接口','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2916,'CIPHER_OBJECT','CipherInterface','zh_TW','接口','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2917,'CIPHER_OBJECT','CipherLicense','en_US','License','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2918,'CIPHER_OBJECT','CipherLicense','zh_CN','License','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2919,'CIPHER_OBJECT','CipherLicense','zh_TW','License','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2920,'CIPHER_OBJECT','CipherMaterial','en_US','Material Warehouse','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2921,'CIPHER_OBJECT','CipherMaterial','zh_CN','素材仓库','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2922,'CIPHER_OBJECT','CipherMaterial','zh_TW','素材倉庫','2023-05-18 10:54:43','1',NULL,NULL,_binary '\0'),(2923,'LOAD_GAS_MODEL','AutoTest_loadGas','zh_CN','气体自动化','2023-05-19 02:40:15','58582660930338816','2024-11-14 01:10:42','58582660930338816',_binary ''),(2924,'LOAD_GAS_MODEL','AutoTest_loadGas','zh_TW','气体自动化','2023-05-19 02:40:15','58582660930338816','2024-11-14 01:10:42','58582660930338816',_binary ''),(2925,'LOAD_GAS_MODEL','AutoTest_loadGas','en_US','气体自动化','2023-05-19 02:40:15','58582660930338816','2024-11-14 01:10:42','58582660930338816',_binary ''),(2926,'XF_COMPANY','112','zh_CN','112','2023-06-13 02:09:41','1',NULL,NULL,_binary '\0'),(2927,'XF_COMPANY','112','zh_TW','112','2023-06-13 02:09:41','1',NULL,NULL,_binary '\0'),(2928,'XF_COMPANY','112','en_US','112','2023-06-13 02:09:41','1',NULL,NULL,_binary '\0'),(2929,'HOUSEAREA','HUS00000110','zh_CN','127','2023-06-15 09:23:10','89730635001757696',NULL,NULL,_binary '\0'),(2930,'HOUSEAREA','HUS00000110','zh_TW','127','2023-06-15 09:23:10','89730635001757696',NULL,NULL,_binary '\0'),(2931,'HOUSEAREA','HUS00000110','en_US','127','2023-06-15 09:23:10','89730635001757696',NULL,NULL,_binary '\0'),(2932,'HOUSEAREA','HUS00000109','zh_CN','511498','2023-06-15 09:23:41','89730635001757696',NULL,NULL,_binary '\0'),(2933,'HOUSEAREA','HUS00000109','zh_TW','511498','2023-06-15 09:23:41','89730635001757696',NULL,NULL,_binary '\0'),(2934,'HOUSEAREA','HUS00000109','en_US','511498','2023-06-15 09:23:41','89730635001757696',NULL,NULL,_binary '\0'),(2935,'HOUSEAREA','HUS00000108','zh_CN','5111100041090','2023-06-15 09:24:20','89730635001757696',NULL,NULL,_binary '\0'),(2936,'HOUSEAREA','HUS00000108','zh_TW','5111100041090','2023-06-15 09:24:20','89730635001757696',NULL,NULL,_binary '\0'),(2937,'HOUSEAREA','HUS00000108','en_US','5111100041090','2023-06-15 09:24:20','89730635001757696',NULL,NULL,_binary '\0'),(2938,'HOUSEAREA','HUS00000107','zh_CN','514101446','2023-06-15 09:24:48','89730635001757696','2023-09-27 01:59:46','89730635001757696',_binary '\0'),(2939,'HOUSEAREA','HUS00000107','zh_TW','514101446','2023-06-15 09:24:48','89730635001757696','2023-09-27 01:59:46','89730635001757696',_binary '\0'),(2940,'HOUSEAREA','HUS00000107','en_US','514101446','2023-06-15 09:24:48','89730635001757696','2023-09-27 01:59:46','89730635001757696',_binary '\0'),(2941,'HOUSEAREA','HUS00000106','zh_CN','514101410','2023-06-15 09:35:46','89730635001757696',NULL,NULL,_binary '\0'),(2942,'HOUSEAREA','HUS00000106','zh_TW','514101410','2023-06-15 09:35:46','89730635001757696',NULL,NULL,_binary '\0'),(2943,'HOUSEAREA','HUS00000106','en_US','514101410','2023-06-15 09:35:46','89730635001757696',NULL,NULL,_binary '\0'),(2944,'HOUSEAREA','HUS00000105','zh_CN','515101221','2023-06-15 09:36:18','89730635001757696',NULL,NULL,_binary '\0'),(2945,'HOUSEAREA','HUS00000105','zh_TW','515101221','2023-06-15 09:36:18','89730635001757696',NULL,NULL,_binary '\0'),(2946,'HOUSEAREA','HUS00000105','en_US','515101221','2023-06-15 09:36:18','89730635001757696',NULL,NULL,_binary '\0'),(2947,'HOUSEAREA','HUS00000104','zh_CN','5121100050187','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:08','89730635001757696',_binary '\0'),(2948,'HOUSEAREA','HUS00000104','zh_TW','5121100050187','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:08','89730635001757696',_binary '\0'),(2949,'HOUSEAREA','HUS00000104','en_US','5121100050187','2023-06-15 09:37:44','89730635001757696','2023-09-27 02:00:08','89730635001757696',_binary '\0'),(2950,'HOUSEAREA','HUS00000103','zh_CN','519101286','2023-06-15 09:38:04','89730635001757696',NULL,NULL,_binary '\0'),(2951,'HOUSEAREA','HUS00000103','zh_TW','519101286','2023-06-15 09:38:04','89730635001757696',NULL,NULL,_binary '\0'),(2952,'HOUSEAREA','HUS00000103','en_US','519101286','2023-06-15 09:38:04','89730635001757696',NULL,NULL,_binary '\0'),(2953,'HOUSEAREA','HUS00000102','zh_CN','5121100040961','2023-06-15 09:38:33','89730635001757696',NULL,NULL,_binary '\0'),(2954,'HOUSEAREA','HUS00000102','zh_TW','5121100040961','2023-06-15 09:38:33','89730635001757696',NULL,NULL,_binary '\0'),(2955,'HOUSEAREA','HUS00000102','en_US','5121100040961','2023-06-15 09:38:33','89730635001757696',NULL,NULL,_binary '\0'),(2956,'HOUSEAREA','HUS00000101','zh_CN','5121100050049','2023-06-15 09:38:55','89730635001757696',NULL,NULL,_binary '\0'),(2957,'HOUSEAREA','HUS00000101','zh_TW','5121100050049','2023-06-15 09:38:55','89730635001757696',NULL,NULL,_binary '\0'),(2958,'HOUSEAREA','HUS00000101','en_US','5121100050049','2023-06-15 09:38:55','89730635001757696',NULL,NULL,_binary '\0'),(2959,'HOUSEAREA','HUS00000100','zh_CN','5121100050168','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696',_binary '\0'),(2960,'HOUSEAREA','HUS00000100','zh_TW','5121100050168','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696',_binary '\0'),(2961,'HOUSEAREA','HUS00000100','en_US','5121100050168','2023-06-15 09:39:20','89730635001757696','2023-09-27 06:36:41','89730635001757696',_binary '\0'),(2962,'HOUSEAREA','HUS00000099','zh_CN','516220437','2023-06-15 09:39:43','89730635001757696','2023-09-28 01:14:27','89730635001757696',_binary '\0'),(2963,'HOUSEAREA','HUS00000099','zh_TW','516220437','2023-06-15 09:39:43','89730635001757696','2023-09-28 01:14:27','89730635001757696',_binary '\0'),(2964,'HOUSEAREA','HUS00000099','en_US','516220437','2023-06-15 09:39:43','89730635001757696','2023-09-28 01:14:27','89730635001757696',_binary '\0'),(2965,'HOUSEAREA','HUS00000098','zh_CN','516220417','2023-06-15 09:40:05','89730635001757696',NULL,NULL,_binary '\0'),(2966,'HOUSEAREA','HUS00000098','zh_TW','516220417','2023-06-15 09:40:05','89730635001757696',NULL,NULL,_binary '\0'),(2967,'HOUSEAREA','HUS00000098','en_US','516220417','2023-06-15 09:40:05','89730635001757696',NULL,NULL,_binary '\0'),(2968,'HOUSEAREA','HUS00000097','zh_CN','5101100040927','2023-06-15 09:40:31','89730635001757696',NULL,NULL,_binary '\0'),(2969,'HOUSEAREA','HUS00000097','zh_TW','5101100040927','2023-06-15 09:40:31','89730635001757696',NULL,NULL,_binary '\0'),(2970,'HOUSEAREA','HUS00000097','en_US','5101100040927','2023-06-15 09:40:31','89730635001757696',NULL,NULL,_binary '\0'),(2971,'HOUSEAREA','HUS00000096','zh_CN','5101100040900','2023-06-15 09:41:00','89730635001757696',NULL,NULL,_binary '\0'),(2972,'HOUSEAREA','HUS00000096','zh_TW','5101100040900','2023-06-15 09:41:00','89730635001757696',NULL,NULL,_binary '\0'),(2973,'HOUSEAREA','HUS00000096','en_US','5101100040900','2023-06-15 09:41:00','89730635001757696',NULL,NULL,_binary '\0'),(2974,'HOUSEAREA','HUS00000094','zh_CN','2501100050225','2023-06-15 10:03:27','89730635001757696',NULL,NULL,_binary '\0'),(2975,'HOUSEAREA','HUS00000094','zh_TW','2501100050225','2023-06-15 10:03:27','89730635001757696',NULL,NULL,_binary '\0'),(2976,'HOUSEAREA','HUS00000094','en_US','2501100050225','2023-06-15 10:03:27','89730635001757696',NULL,NULL,_binary '\0'),(2977,'HOUSEAREA','HUS00000093','zh_CN','5121100040905','2023-06-15 10:03:55','89730635001757696',NULL,NULL,_binary '\0'),(2978,'HOUSEAREA','HUS00000093','zh_TW','5121100040905','2023-06-15 10:03:55','89730635001757696',NULL,NULL,_binary '\0'),(2979,'HOUSEAREA','HUS00000093','en_US','5121100040905','2023-06-15 10:03:55','89730635001757696',NULL,NULL,_binary '\0'),(2980,'SCENARIOMAP','HUS00000105','zh_CN','320981-0-LAA-02-0001','2023-06-20 12:07:09','89730635001757696',NULL,NULL,_binary '\0'),(2981,'SCENARIOMAP','HUS00000105','zh_TW','320981-0-LAA-02-0001','2023-06-20 12:07:09','89730635001757696',NULL,NULL,_binary '\0'),(2982,'SCENARIOMAP','HUS00000105','en_US','320981-0-LAA-02-0001','2023-06-20 12:07:09','89730635001757696',NULL,NULL,_binary '\0'),(2983,'SCENARIOMAP','HUS00000098','zh_CN','320381-0-LAA-02-0001','2023-06-20 12:07:55','89730635001757696',NULL,NULL,_binary '\0'),(2984,'SCENARIOMAP','HUS00000098','zh_TW','320381-0-LAA-02-0001','2023-06-20 12:07:55','89730635001757696',NULL,NULL,_binary '\0'),(2985,'SCENARIOMAP','HUS00000098','en_US','320381-0-LAA-02-0001','2023-06-20 12:07:55','89730635001757696',NULL,NULL,_binary '\0'),(2986,'SCENARIOMAP','HUS00000099','zh_CN','320311-0-LAA-02-0002','2023-06-20 12:08:54','89730635001757696',NULL,NULL,_binary '\0'),(2987,'SCENARIOMAP','HUS00000099','zh_TW','320311-0-LAA-02-0002','2023-06-20 12:08:54','89730635001757696',NULL,NULL,_binary '\0'),(2988,'SCENARIOMAP','HUS00000099','en_US','320311-0-LAA-02-0002','2023-06-20 12:08:54','89730635001757696',NULL,NULL,_binary '\0'),(2989,'SCENARIOMAP','HUS00000108','zh_CN','321111-0-LAA-02-0001','2023-06-20 12:10:24','89730635001757696',NULL,NULL,_binary '\0'),(2990,'SCENARIOMAP','HUS00000108','zh_TW','321111-0-LAA-02-0001','2023-06-20 12:10:24','89730635001757696',NULL,NULL,_binary '\0'),(2991,'SCENARIOMAP','HUS00000108','en_US','321111-0-LAA-02-0001','2023-06-20 12:10:24','89730635001757696',NULL,NULL,_binary '\0'),(2992,'SCENARIOMAP','HUS00000101','zh_CN','320583-0-LAA-02-0001','2023-06-20 12:12:11','89730635001757696',NULL,NULL,_binary '\0'),(2993,'SCENARIOMAP','HUS00000101','zh_TW','320583-0-LAA-02-0001','2023-06-20 12:12:11','89730635001757696',NULL,NULL,_binary '\0'),(2994,'SCENARIOMAP','HUS00000101','en_US','320583-0-LAA-02-0001','2023-06-20 12:12:11','89730635001757696',NULL,NULL,_binary '\0'),(2995,'SCENARIOMAP','HUS00000102','zh_CN','320509-0-LAA-02-0001','2023-06-20 12:12:48','89730635001757696',NULL,NULL,_binary '\0'),(2996,'SCENARIOMAP','HUS00000102','zh_TW','320509-0-LAA-02-0001','2023-06-20 12:12:48','89730635001757696',NULL,NULL,_binary '\0'),(2997,'SCENARIOMAP','HUS00000102','en_US','320509-0-LAA-02-0001','2023-06-20 12:12:48','89730635001757696',NULL,NULL,_binary '\0'),(2998,'SCENARIOMAP','HUS00000107','zh_CN','321002-0-LAA-02-0002','2023-06-20 12:13:42','89730635001757696',NULL,NULL,_binary '\0'),(2999,'SCENARIOMAP','HUS00000107','zh_TW','321002-0-LAA-02-0002','2023-06-20 12:13:42','89730635001757696',NULL,NULL,_binary '\0'),(3000,'SCENARIOMAP','HUS00000107','en_US','321002-0-LAA-02-0002','2023-06-20 12:13:42','89730635001757696',NULL,NULL,_binary '\0'),(3001,'SCENARIOMAP','HUS00000097','zh_CN','320213-0-LAA-02-0003','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:26','89730635001757696',_binary '\0'),(3002,'SCENARIOMAP','HUS00000097','zh_TW','320213-0-LAA-02-0003','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:26','89730635001757696',_binary '\0'),(3003,'SCENARIOMAP','HUS00000097','en_US','320213-0-LAA-02-0003','2023-06-20 12:14:20','89730635001757696','2023-09-26 06:30:26','89730635001757696',_binary '\0'),(3004,'SCENARIOMAP','HUS00000110','zh_CN','320113-0-LAA-02-0001','2023-06-20 12:15:17','89730635001757696',NULL,NULL,_binary '\0'),(3005,'SCENARIOMAP','HUS00000110','zh_TW','320113-0-LAA-02-0001','2023-06-20 12:15:17','89730635001757696',NULL,NULL,_binary '\0'),(3006,'SCENARIOMAP','HUS00000110','en_US','320113-0-LAA-02-0001','2023-06-20 12:15:17','89730635001757696',NULL,NULL,_binary '\0'),(3007,'SCENARIOMAP','HUS00000106','zh_CN','321002-0-LAA-02-0006','2023-06-20 12:16:45','89730635001757696',NULL,NULL,_binary '\0'),(3008,'SCENARIOMAP','HUS00000106','zh_TW','321002-0-LAA-02-0006','2023-06-20 12:16:45','89730635001757696',NULL,NULL,_binary '\0'),(3009,'SCENARIOMAP','HUS00000106','en_US','321002-0-LAA-02-0006','2023-06-20 12:16:45','89730635001757696',NULL,NULL,_binary '\0'),(3010,'SCENARIOMAP','HUS00000100','zh_CN','320506-0-LAA-02-0004','2023-06-20 12:17:19','89730635001757696',NULL,NULL,_binary '\0'),(3011,'SCENARIOMAP','HUS00000100','zh_TW','320506-0-LAA-02-0004','2023-06-20 12:17:19','89730635001757696',NULL,NULL,_binary '\0'),(3012,'SCENARIOMAP','HUS00000100','en_US','320506-0-LAA-02-0004','2023-06-20 12:17:19','89730635001757696',NULL,NULL,_binary '\0'),(3013,'SCENARIOMAP','HUS00000093','zh_CN','320508-0-LAA-02-0006','2023-06-20 12:18:11','89730635001757696',NULL,NULL,_binary '\0'),(3014,'SCENARIOMAP','HUS00000093','zh_TW','320508-0-LAA-02-0006','2023-06-20 12:18:11','89730635001757696',NULL,NULL,_binary '\0'),(3015,'SCENARIOMAP','HUS00000093','en_US','320508-0-LAA-02-0006','2023-06-20 12:18:11','89730635001757696',NULL,NULL,_binary '\0'),(3016,'SCENARIOMAP','HUS00000109','zh_CN','321102-0-LAA-02-0001','2023-06-20 12:19:14','89730635001757696',NULL,NULL,_binary '\0'),(3017,'SCENARIOMAP','HUS00000109','zh_TW','321102-0-LAA-02-0001','2023-06-20 12:19:14','89730635001757696',NULL,NULL,_binary '\0'),(3018,'SCENARIOMAP','HUS00000109','en_US','321102-0-LAA-02-0001','2023-06-20 12:19:14','89730635001757696',NULL,NULL,_binary '\0'),(3019,'SCENARIOMAP','HUS00000103','zh_CN','320481-0-LAA-03-0001','2023-06-20 12:19:57','89730635001757696',NULL,NULL,_binary '\0'),(3020,'SCENARIOMAP','HUS00000103','zh_TW','320481-0-LAA-03-0001','2023-06-20 12:19:57','89730635001757696',NULL,NULL,_binary '\0'),(3021,'SCENARIOMAP','HUS00000103','en_US','320481-0-LAA-03-0001','2023-06-20 12:19:57','89730635001757696',NULL,NULL,_binary '\0'),(3022,'SCENARIOMAP','HUS00000094','zh_CN','320117-0-LAA-02-0007','2023-06-20 12:20:54','89730635001757696',NULL,NULL,_binary '\0'),(3023,'SCENARIOMAP','HUS00000094','zh_TW','320117-0-LAA-02-0007','2023-06-20 12:20:54','89730635001757696',NULL,NULL,_binary '\0'),(3024,'SCENARIOMAP','HUS00000094','en_US','320117-0-LAA-02-0007','2023-06-20 12:20:54','89730635001757696',NULL,NULL,_binary '\0'),(3025,'SCENARIOMAP','HUS00000104','zh_CN','320505-0-LAA-02-0006','2023-06-20 12:21:43','89730635001757696',NULL,NULL,_binary '\0'),(3026,'SCENARIOMAP','HUS00000104','zh_TW','320505-0-LAA-02-0006','2023-06-20 12:21:43','89730635001757696',NULL,NULL,_binary '\0'),(3027,'SCENARIOMAP','HUS00000104','en_US','320505-0-LAA-02-0006','2023-06-20 12:21:43','89730635001757696',NULL,NULL,_binary '\0'),(3028,'DEV_ACTION_MODEL','focus','en_US','focus','2023-06-27 07:28:23','1',NULL,NULL,_binary '\0'),(3029,'DEV_ACTION_MODEL','focus','zh_CN','自动对焦','2023-06-27 07:28:23','1',NULL,NULL,_binary '\0'),(3030,'DEV_ACTION_MODEL','focus','zh_TW','自动对焦','2023-06-27 07:28:23','1',NULL,NULL,_binary '\0'),(3031,'PLANE_MODEL','AutoTest_uavHanger','zh_CN','机库管理自动化','2023-07-05 02:55:53','58582660930338816','2024-11-14 01:11:10','58582660930338816',_binary ''),(3032,'PLANE_MODEL','AutoTest_uavHanger','zh_TW','机库管理自动化','2023-07-05 02:55:53','58582660930338816','2024-11-14 01:11:10','58582660930338816',_binary ''),(3033,'PLANE_MODEL','AutoTest_uavHanger','en_US','机库管理自动化','2023-07-05 02:55:53','58582660930338816','2024-11-14 01:11:10','58582660930338816',_binary ''),(3034,'XF_COMPANY','185','zh_CN','185','2023-08-29 01:18:10','1',NULL,NULL,_binary '\0'),(3035,'XF_COMPANY','185','zh_TW','185','2023-08-29 01:18:10','1',NULL,NULL,_binary '\0'),(3036,'XF_COMPANY','185','en_US','185','2023-08-29 01:18:10','1',NULL,NULL,_binary '\0'),(3037,'XF_COMPANY','3','zh_CN','3','2023-09-14 09:08:02','1',NULL,NULL,_binary '\0'),(3038,'XF_COMPANY','3','zh_TW','3','2023-09-14 09:08:02','1',NULL,NULL,_binary '\0'),(3039,'XF_COMPANY','3','en_US','3','2023-09-14 09:08:02','1',NULL,NULL,_binary '\0'),(3040,'HOUSEAREA','HUS00000118','zh_CN','100','2023-09-21 08:26:52','89730635001757696',NULL,NULL,_binary '\0'),(3041,'HOUSEAREA','HUS00000118','zh_TW','100','2023-09-21 08:26:52','89730635001757696',NULL,NULL,_binary '\0'),(3042,'HOUSEAREA','HUS00000118','en_US','100','2023-09-21 08:26:52','89730635001757696',NULL,NULL,_binary '\0'),(3043,'HOUSEAREA','HUS00000119','zh_CN','2501100050209','2023-09-21 08:30:55','89730635001757696',NULL,NULL,_binary '\0'),(3044,'HOUSEAREA','HUS00000119','zh_TW','2501100050209','2023-09-21 08:30:55','89730635001757696',NULL,NULL,_binary '\0'),(3045,'HOUSEAREA','HUS00000119','en_US','2501100050209','2023-09-21 08:30:55','89730635001757696',NULL,NULL,_binary '\0'),(3046,'HOUSEAREA','HUS00000120','zh_CN','2501100050203','2023-09-21 08:32:10','89730635001757696',NULL,NULL,_binary '\0'),(3047,'HOUSEAREA','HUS00000120','zh_TW','2501100050203','2023-09-21 08:32:10','89730635001757696',NULL,NULL,_binary '\0'),(3048,'HOUSEAREA','HUS00000120','en_US','2501100050203','2023-09-21 08:32:10','89730635001757696',NULL,NULL,_binary '\0'),(3049,'HOUSEAREA','HUS00000121','zh_CN','519001','2023-09-21 08:35:36','89730635001757696',NULL,NULL,_binary '\0'),(3050,'HOUSEAREA','HUS00000121','zh_TW','519001','2023-09-21 08:35:36','89730635001757696',NULL,NULL,_binary '\0'),(3051,'HOUSEAREA','HUS00000121','en_US','519001','2023-09-21 08:35:36','89730635001757696',NULL,NULL,_binary '\0'),(3052,'HOUSEAREA','HUS00000122','zh_CN','519101193','2023-09-21 08:36:37','89730635001757696',NULL,NULL,_binary '\0'),(3053,'HOUSEAREA','HUS00000122','zh_TW','519101193','2023-09-21 08:36:37','89730635001757696',NULL,NULL,_binary '\0'),(3054,'HOUSEAREA','HUS00000122','en_US','519101193','2023-09-21 08:36:37','89730635001757696',NULL,NULL,_binary '\0'),(3055,'SCENARIOMAP','HUS00000118','zh_CN','320104-0-LAA-02-0001','2023-09-26 02:29:49','188243415207510016',NULL,NULL,_binary '\0'),(3056,'SCENARIOMAP','HUS00000118','zh_TW','320104-0-LAA-02-0001','2023-09-26 02:29:49','188243415207510016',NULL,NULL,_binary '\0'),(3057,'SCENARIOMAP','HUS00000118','en_US','320104-0-LAA-02-0001','2023-09-26 02:29:49','188243415207510016',NULL,NULL,_binary '\0'),(3058,'SCENARIOMAP','HUS00000119','zh_CN','320102-0-LAA-02-0005','2023-09-26 02:33:37','188243415207510016',NULL,NULL,_binary '\0'),(3059,'SCENARIOMAP','HUS00000119','zh_TW','320102-0-LAA-02-0005','2023-09-26 02:33:37','188243415207510016',NULL,NULL,_binary '\0'),(3060,'SCENARIOMAP','HUS00000119','en_US','320102-0-LAA-02-0005','2023-09-26 02:33:37','188243415207510016',NULL,NULL,_binary '\0'),(3061,'SCENARIOMAP','HUS00000120','zh_CN','320113-0-LAA-02-0003','2023-09-26 02:34:03','188243415207510016',NULL,NULL,_binary '\0'),(3062,'SCENARIOMAP','HUS00000120','zh_TW','320113-0-LAA-02-0003','2023-09-26 02:34:03','188243415207510016',NULL,NULL,_binary '\0'),(3063,'SCENARIOMAP','HUS00000120','en_US','320113-0-LAA-02-0003','2023-09-26 02:34:03','188243415207510016',NULL,NULL,_binary '\0'),(3064,'SCENARIOMAP','HUS00000121','zh_CN','320413-0-LAA-02-0001','2023-09-26 02:34:29','188243415207510016',NULL,NULL,_binary '\0'),(3065,'SCENARIOMAP','HUS00000121','zh_TW','320413-0-LAA-02-0001','2023-09-26 02:34:29','188243415207510016',NULL,NULL,_binary '\0'),(3066,'SCENARIOMAP','HUS00000121','en_US','320413-0-LAA-02-0001','2023-09-26 02:34:29','188243415207510016',NULL,NULL,_binary '\0'),(3067,'SCENARIOMAP','HUS00000122','zh_CN','320481-0-LAA-03-0001-01','2023-09-26 02:34:52','188243415207510016',NULL,NULL,_binary '\0'),(3068,'SCENARIOMAP','HUS00000122','zh_TW','320481-0-LAA-03-0001-01','2023-09-26 02:34:52','188243415207510016',NULL,NULL,_binary '\0'),(3069,'SCENARIOMAP','HUS00000122','en_US','320481-0-LAA-03-0001-01','2023-09-26 02:34:52','188243415207510016',NULL,NULL,_binary '\0'),(3070,'SCENARIOMAP','HUS00000096','zh_CN','320213-0-LAA-02-0002','2023-09-26 06:31:11','89730635001757696',NULL,NULL,_binary '\0'),(3071,'SCENARIOMAP','HUS00000096','zh_TW','320213-0-LAA-02-0002','2023-09-26 06:31:11','89730635001757696',NULL,NULL,_binary '\0'),(3072,'SCENARIOMAP','HUS00000096','en_US','320213-0-LAA-02-0002','2023-09-26 06:31:11','89730635001757696',NULL,NULL,_binary '\0'),(3073,'PLANE_MODEL','wrjxh074','zh_CN','M30','2023-09-28 01:42:44','173818970422378496','2024-09-06 02:36:04','89730635001757696',_binary '\0'),(3074,'PLANE_MODEL','wrjxh074','zh_TW','M30','2023-09-28 01:42:44','173818970422378496','2024-09-06 02:36:04','89730635001757696',_binary '\0'),(3075,'PLANE_MODEL','wrjxh074','en_US','M30','2023-09-28 01:42:44','173818970422378496','2024-09-06 02:36:04','89730635001757696',_binary '\0'),(3076,'PLANE_MODEL','AutoTest_attention','zh_CN','告警管理自动化','2023-10-07 03:11:13','58582660930338816','2024-11-14 01:19:34','58582660930338816',_binary ''),(3077,'PLANE_MODEL','AutoTest_attention','zh_TW','告警管理自动化','2023-10-07 03:11:13','58582660930338816','2024-11-14 01:19:34','58582660930338816',_binary ''),(3078,'PLANE_MODEL','AutoTest_attention','en_US','告警管理自动化','2023-10-07 03:11:13','58582660930338816','2024-11-14 01:19:34','58582660930338816',_binary ''),(3079,'DATA_CATEGORY','DATA_JT','zh_CN','交通','2023-10-07 06:44:43','416525856201375744',NULL,NULL,_binary '\0'),(3080,'DATA_CATEGORY','DATA_JT','zh_TW','交通','2023-10-07 06:44:43','416525856201375744',NULL,NULL,_binary '\0'),(3081,'DATA_CATEGORY','DATA_JT','en_US','交通','2023-10-07 06:44:43','416525856201375744',NULL,NULL,_binary '\0'),(3082,'DATA_CATEGORY','DATA_HB','zh_CN','环保','2023-10-07 06:45:15','416525856201375744',NULL,NULL,_binary '\0'),(3083,'DATA_CATEGORY','DATA_HB','zh_TW','环保','2023-10-07 06:45:15','416525856201375744',NULL,NULL,_binary '\0'),(3084,'DATA_CATEGORY','DATA_HB','en_US','环保','2023-10-07 06:45:15','416525856201375744',NULL,NULL,_binary '\0'),(3085,'DATA_CATEGORY','DATA_AF','zh_CN','安防','2023-10-07 06:45:38','416525856201375744',NULL,NULL,_binary '\0'),(3086,'DATA_CATEGORY','DATA_AF','zh_TW','安防','2023-10-07 06:45:38','416525856201375744',NULL,NULL,_binary '\0'),(3087,'DATA_CATEGORY','DATA_AF','en_US','安防','2023-10-07 06:45:38','416525856201375744',NULL,NULL,_binary '\0'),(3088,'DEV_MODEL','LOAD_BTS_MODEL','en_US','base station','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3089,'DEV_MODEL','LOAD_BTS_MODEL','zh_CN','基站','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3090,'DEV_MODEL','LOAD_BTS_MODEL','zh_TW','基站','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3091,'DEV_MODEL','LOAD_AGR_MODEL','en_US','agricultural equipment','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3092,'DEV_MODEL','LOAD_AGR_MODEL','zh_CN','农业器具','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3093,'DEV_MODEL','LOAD_AGR_MODEL','zh_TW','農業器具','2023-10-11 06:10:59','123',NULL,NULL,_binary '\0'),(3094,'LOAD_BTS_MODEL','bts1','en_US','emergency base station','2023-10-11 06:11:38','123',NULL,NULL,_binary '\0'),(3095,'LOAD_BTS_MODEL','bts1','zh_CN','应急基站','2023-10-11 06:11:38','123',NULL,NULL,_binary '\0'),(3096,'LOAD_BTS_MODEL','bts1','zh_TW','应急基站','2023-10-11 06:11:38','123',NULL,NULL,_binary '\0'),(3097,'BTS_TYPE','cmiiYinglong1st','en_US','cmii yin long 1st','2023-10-11 06:12:06','123',NULL,NULL,_binary '\0'),(3098,'BTS_TYPE','cmiiYinglong1st','zh_CN','中移应龙I型','2023-10-11 06:12:06','123',NULL,NULL,_binary '\0'),(3099,'BTS_TYPE','cmiiYinglong1st','zh_TW','中移应龙I型','2023-10-11 06:12:06','123',NULL,NULL,_binary '\0'),(3100,'RADIO_TYPE','4G','en_US','4G','2023-10-11 06:12:29','123',NULL,NULL,_binary '\0'),(3101,'RADIO_TYPE','4G','zh_CN','4G','2023-10-11 06:12:29','123',NULL,NULL,_binary '\0'),(3102,'RADIO_TYPE','4G','zh_TW','4G','2023-10-11 06:12:29','123',NULL,NULL,_binary '\0'),(3103,'DETECTION_ORG','2','zh_CN','2','2023-10-12 09:04:53','1',NULL,NULL,_binary '\0'),(3104,'DETECTION_ORG','2','zh_TW','2','2023-10-12 09:04:53','1',NULL,NULL,_binary '\0'),(3105,'DETECTION_ORG','2','en_US','2','2023-10-12 09:04:53','1',NULL,NULL,_binary '\0'),(3106,'DETECTION_ORG','3','zh_CN','3','2023-10-12 09:07:03','1',NULL,NULL,_binary '\0'),(3107,'DETECTION_ORG','3','zh_TW','3','2023-10-12 09:07:03','1',NULL,NULL,_binary '\0'),(3108,'DETECTION_ORG','3','en_US','3','2023-10-12 09:07:03','1',NULL,NULL,_binary '\0'),(3109,'STYLE_LABLE','ELE_LABLE','zh_CN','输电识别','2023-10-16 01:04:23','416525856201375744',NULL,NULL,_binary '\0'),(3110,'STYLE_LABLE','ELE_LABLE','zh_TW','输电识别','2023-10-16 01:04:23','416525856201375744',NULL,NULL,_binary '\0'),(3111,'STYLE_LABLE','ELE_LABLE','en_US','输电识别','2023-10-16 01:04:23','416525856201375744',NULL,NULL,_binary '\0'),(3112,'STYLE_LABLE','CAT_LABLE','zh_CN','车辆跟踪','2023-10-16 01:04:48','416525856201375744',NULL,NULL,_binary '\0'),(3113,'STYLE_LABLE','CAT_LABLE','zh_TW','车辆跟踪','2023-10-16 01:04:48','416525856201375744',NULL,NULL,_binary '\0'),(3114,'STYLE_LABLE','CAT_LABLE','en_US','车辆跟踪','2023-10-16 01:04:48','416525856201375744',NULL,NULL,_binary '\0'),(3115,'LOAD_AGR_MODEL','pensaqi1','zh_CN','喷洒器1','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1',_binary '\0'),(3116,'LOAD_AGR_MODEL','pensaqi1','zh_TW','喷洒器1','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1',_binary '\0'),(3117,'LOAD_AGR_MODEL','pensaqi1','en_US','喷洒器1','2023-11-29 07:29:03','89730635001757696','2023-11-29 09:53:45','1',_binary '\0'),(3118,'PICTURE_LABELS','PL22','en_US','生态破坏','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3119,'PICTURE_LABELS','PL22','zh_CN','生态破坏','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3120,'PICTURE_LABELS','PL22','zh_TW','生态破坏','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3121,'PICTURE_LABELS','PL21','en_US','空气监测数据异常','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3122,'PICTURE_LABELS','PL21','zh_CN','空气监测数据异常','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3123,'PICTURE_LABELS','PL21','zh_TW','空气监测数据异常','2023-11-30 03:52:33','1','2023-12-18 08:30:15','1',_binary '\0'),(3124,'PICTURE_LABELS','PL20','en_US','未落实移动源管控措施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3125,'PICTURE_LABELS','PL20','zh_CN','未落实移动源管控措施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3126,'PICTURE_LABELS','PL20','zh_TW','未落实移动源管控措施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3127,'PICTURE_LABELS','PL19','en_US','违反重污染天气管控','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3128,'PICTURE_LABELS','PL19','zh_CN','违反重污染天气管控','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3129,'PICTURE_LABELS','PL19','zh_TW','违反重污染天气管控','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3130,'PICTURE_LABELS','PL18','en_US','未安装治污设施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3131,'PICTURE_LABELS','PL18','zh_CN','未安装治污设施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3132,'PICTURE_LABELS','PL18','zh_TW','未安装治污设施','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3133,'PICTURE_LABELS','PL16','en_US','工业粉尘无组织排放','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3134,'PICTURE_LABELS','PL16','zh_CN','工业粉尘无组织排放','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3135,'PICTURE_LABELS','PL16','zh_TW','工业粉尘无组织排放','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3136,'PICTURE_LABELS','PL17','en_US','治污设施不正常运行','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3137,'PICTURE_LABELS','PL17','zh_CN','治污设施不正常运行','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3138,'PICTURE_LABELS','PL17','zh_TW','治污设施不正常运行','2023-11-30 03:52:33','1','2023-12-18 08:30:16','1',_binary '\0'),(3139,'PICTURE_LABELS','PL14','en_US','露天焚烧','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3140,'PICTURE_LABELS','PL14','zh_CN','露天焚烧','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3141,'PICTURE_LABELS','PL14','zh_TW','露天焚烧','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3142,'PICTURE_LABELS','PL15','en_US','旁路、暗管偷排污染物','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3143,'PICTURE_LABELS','PL15','zh_CN','旁路、暗管偷排污染物','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3144,'PICTURE_LABELS','PL15','zh_TW','旁路、暗管偷排污染物','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3145,'PICTURE_LABELS','PL13','en_US','黄土裸露','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3146,'PICTURE_LABELS','PL13','zh_CN','黄土裸露','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3147,'PICTURE_LABELS','PL13','zh_TW','黄土裸露','2023-11-30 03:52:34','1','2023-12-18 08:30:16','1',_binary '\0'),(3148,'PLANE_MODEL','AutoTest_logUav','zh_CN','日志管理自动化','2023-12-25 03:18:13','58582660930338816','2024-11-14 01:20:16','58582660930338816',_binary ''),(3149,'PLANE_MODEL','AutoTest_logUav','zh_TW','日志管理自动化','2023-12-25 03:18:13','58582660930338816','2024-11-14 01:20:16','58582660930338816',_binary ''),(3150,'PLANE_MODEL','AutoTest_logUav','en_US','日志管理自动化','2023-12-25 03:18:13','58582660930338816','2024-11-14 01:20:16','58582660930338816',_binary ''),(3151,'LOAD_CAM_MODEL','AutoTest_logCAM','zh_CN','日志管理自动化','2023-12-25 03:18:14','58582660930338816','2024-11-14 01:20:16','58582660930338816',_binary ''),(3152,'LOAD_CAM_MODEL','AutoTest_logCAM','zh_TW','日志管理自动化','2023-12-25 03:18:14','58582660930338816','2024-11-14 01:20:16','58582660930338816',_binary ''),(3153,'LOAD_CAM_MODEL','AutoTest_logCAM','en_US','日志管理自动化','2023-12-25 03:18:14','58582660930338816','2024-11-14 01:20:16','58582660930338816',_binary ''),(3154,'XF_COMPANY','226','zh_CN','226','2023-12-28 07:36:47','1',NULL,NULL,_binary '\0'),(3155,'XF_COMPANY','226','zh_TW','226','2023-12-28 07:36:47','1',NULL,NULL,_binary '\0'),(3156,'XF_COMPANY','226','en_US','226','2023-12-28 07:36:47','1',NULL,NULL,_binary '\0'),(3157,'LOAD_CAM_VIDEO_ISO','video iso','zh_CN','video iso','2024-02-05 02:02:13','173818970422378496',NULL,NULL,_binary '\0'),(3158,'LOAD_CAM_VIDEO_ISO','video iso','zh_TW','video iso','2024-02-05 02:02:13','173818970422378496',NULL,NULL,_binary '\0'),(3159,'LOAD_CAM_VIDEO_ISO','video iso','en_US','video iso','2024-02-05 02:02:13','173818970422378496',NULL,NULL,_binary '\0'),(3160,'LOAD_HNG_MODEL','jkxh015','zh_CN','草莓创新机库','2024-02-26 02:47:09','1',NULL,NULL,_binary '\0'),(3161,'LOAD_HNG_MODEL','jkxh015','zh_TW','草莓创新机库','2024-02-26 02:47:09','1',NULL,NULL,_binary '\0'),(3162,'LOAD_HNG_MODEL','jkxh015','en_US','草莓创新机库','2024-02-26 02:47:09','1',NULL,NULL,_binary '\0'),(3163,'MNF','sccj030','zh_CN','草莓创新','2024-02-26 02:47:44','1',NULL,NULL,_binary '\0'),(3164,'MNF','sccj030','zh_TW','草莓创新','2024-02-26 02:47:44','1',NULL,NULL,_binary '\0'),(3165,'MNF','sccj030','en_US','草莓创新','2024-02-26 02:47:44','1',NULL,NULL,_binary '\0'),(3166,'MPROTECT_STAT','true','zh_CN','开启','2024-02-29 06:43:54','173818970422378496',NULL,NULL,_binary '\0'),(3167,'MPROTECT_STAT','true','zh_TW','开启','2024-02-29 06:43:54','173818970422378496',NULL,NULL,_binary '\0'),(3168,'MPROTECT_STAT','true','en_US','open','2024-02-29 06:43:54','173818970422378496',NULL,NULL,_binary '\0'),(3169,'MPROTECT_STAT','false','zh_CN','关闭','2024-02-29 06:44:09','173818970422378496',NULL,NULL,_binary '\0'),(3170,'MPROTECT_STAT','false','zh_TW','关闭','2024-02-29 06:44:09','173818970422378496',NULL,NULL,_binary '\0'),(3171,'MPROTECT_STAT','false','en_US','close','2024-02-29 06:44:09','173818970422378496',NULL,NULL,_binary '\0'),(3172,'PLANE_MODEL','wrjxh075','zh_CN','M3D 系列','2024-03-08 02:52:36','1','2024-08-01 01:05:32','1',_binary '\0'),(3173,'PLANE_MODEL','wrjxh075','zh_TW','M3D 系列','2024-03-08 02:52:36','1','2024-08-01 01:05:32','1',_binary '\0'),(3174,'PLANE_MODEL','wrjxh075','en_US','M3D 系列','2024-03-08 02:52:36','1','2024-08-01 01:05:32','1',_binary '\0'),(3175,'LOAD_CAM_MODEL','xh031','zh_CN','M3D相机','2024-03-08 03:03:24','1',NULL,NULL,_binary '\0'),(3176,'LOAD_CAM_MODEL','xh031','zh_TW','M3D相机','2024-03-08 03:03:24','1',NULL,NULL,_binary '\0'),(3177,'LOAD_CAM_MODEL','xh031','en_US','M3D相机','2024-03-08 03:03:24','1',NULL,NULL,_binary '\0'),(3178,'LOAD_CAM_MODEL','xh035','zh_CN','时代星光载荷','2024-03-11 07:55:44','1',NULL,NULL,_binary '\0'),(3179,'LOAD_CAM_MODEL','xh035','zh_TW','时代星光载荷','2024-03-11 07:55:44','1',NULL,NULL,_binary '\0'),(3180,'LOAD_CAM_MODEL','xh035','en_US','时代星光载荷','2024-03-11 07:55:44','1',NULL,NULL,_binary '\0'),(3181,'AUTO_TEST','1212222','zh_CN','1212','2024-03-20 07:21:58','58582660930338816',NULL,NULL,_binary '\0'),(3182,'AUTO_TEST','1212222','zh_TW','12121','2024-03-20 07:21:58','58582660930338816',NULL,NULL,_binary '\0'),(3183,'AUTO_TEST','1212222','en_US','12121','2024-03-20 07:21:58','58582660930338816',NULL,NULL,_binary '\0'),(3184,'autoTestPerformance','test1','zh_CN','字典自动化','2024-03-20 07:26:16','58582660930338816','2024-03-20 07:44:07','58582660930338816',_binary ''),(3185,'autoTestPerformance','test1','zh_TW','字典自动化','2024-03-20 07:26:16','58582660930338816','2024-03-20 07:44:07','58582660930338816',_binary ''),(3186,'autoTestPerformance','test1','en_US','字典自动化','2024-03-20 07:26:16','58582660930338816','2024-03-20 07:44:07','58582660930338816',_binary ''),(3187,'autoTestPerformance','test1.1','zh_CN','接口性能','2024-03-20 07:26:17','58582660930338816','2024-03-20 07:44:06','58582660930338816',_binary ''),(3188,'autoTestPerformance','test1.1','zh_TW','接口性能','2024-03-20 07:26:17','58582660930338816','2024-03-20 07:44:06','58582660930338816',_binary ''),(3189,'autoTestPerformance','test1.1','en_US','接口性能','2024-03-20 07:26:17','58582660930338816','2024-03-20 07:44:06','58582660930338816',_binary ''),(3190,'PLANE_MODEL','AutoTestBiaodan','zh_CN','数据表单性能测试','2024-03-20 08:33:59','58582660930338816','2024-03-20 09:30:00','58582660930338816',_binary ''),(3191,'PLANE_MODEL','AutoTestBiaodan','zh_TW','数据表单性能测试','2024-03-20 08:33:59','58582660930338816','2024-03-20 09:30:00','58582660930338816',_binary ''),(3192,'PLANE_MODEL','AutoTestBiaodan','en_US','数据表单性能测试','2024-03-20 08:33:59','58582660930338816','2024-03-20 09:30:00','58582660930338816',_binary ''),(3193,'PLANE_MODEL','test-123','zh_CN','test-123','2024-03-30 02:35:19','173818970422378496',NULL,NULL,_binary '\0'),(3194,'PLANE_MODEL','test-123','zh_TW','test-123','2024-03-30 02:35:19','173818970422378496',NULL,NULL,_binary '\0'),(3195,'PLANE_MODEL','test-123','en_US','test-123','2024-03-30 02:35:19','173818970422378496',NULL,NULL,_binary '\0'),(3196,'INTERFACE_GROUP','INTERFACE_GROUP_5GA','zh_CN','通感数据','2024-04-18 13:42:14','188243415207510016',NULL,NULL,_binary '\0'),(3197,'INTERFACE_GROUP','INTERFACE_GROUP_5GA','zh_TW','通感数据','2024-04-18 13:42:14','188243415207510016',NULL,NULL,_binary '\0'),(3198,'INTERFACE_GROUP','INTERFACE_GROUP_5GA','en_US','通感数据','2024-04-18 13:42:14','188243415207510016',NULL,NULL,_binary '\0'),(3199,'HOUSEAREA','HUS00000154','zh_CN','516220419','2024-04-24 07:18:37','89730635001757696',NULL,NULL,_binary '\0'),(3200,'HOUSEAREA','HUS00000154','zh_TW','516220419','2024-04-24 07:18:37','89730635001757696',NULL,NULL,_binary '\0'),(3201,'HOUSEAREA','HUS00000154','en_US','516220419','2024-04-24 07:18:37','89730635001757696',NULL,NULL,_binary '\0'),(3202,'HOUSEAREA','HUS00000153','zh_CN','251322','2024-04-24 07:19:16','89730635001757696',NULL,NULL,_binary '\0'),(3203,'HOUSEAREA','HUS00000153','zh_TW','251322','2024-04-24 07:19:16','89730635001757696',NULL,NULL,_binary '\0'),(3204,'HOUSEAREA','HUS00000153','en_US','251322','2024-04-24 07:19:16','89730635001757696',NULL,NULL,_binary '\0'),(3205,'SCENARIOMAP','HUS00000154','zh_CN','320303-0-LAA-02-0001','2024-04-25 01:31:51','89730635001757696',NULL,NULL,_binary '\0'),(3206,'SCENARIOMAP','HUS00000154','zh_TW','320303-0-LAA-02-0001','2024-04-25 01:31:51','89730635001757696',NULL,NULL,_binary '\0'),(3207,'SCENARIOMAP','HUS00000154','en_US','320303-0-LAA-02-0001','2024-04-25 01:31:51','89730635001757696',NULL,NULL,_binary '\0'),(3208,'SCENARIOMAP','HUS00000153','zh_CN','320602-0-LAA-02-0002','2024-04-25 01:33:35','89730635001757696',NULL,NULL,_binary '\0'),(3209,'SCENARIOMAP','HUS00000153','zh_TW','320602-0-LAA-02-0002','2024-04-25 01:33:35','89730635001757696',NULL,NULL,_binary '\0'),(3210,'SCENARIOMAP','HUS00000153','en_US','320602-0-LAA-02-0002','2024-04-25 01:33:35','89730635001757696',NULL,NULL,_binary '\0'),(3211,'SOLUTION_TYPE','urgency','zh_CN','大应急行业','2024-04-28 06:19:49','89730635001757696',NULL,NULL,_binary '\0'),(3212,'SOLUTION_TYPE','urgency','zh_TW','大應急行業','2024-04-28 06:19:49','89730635001757696',NULL,NULL,_binary '\0'),(3213,'SOLUTION_TYPE','urgency','en_US','Urgency','2024-04-28 06:19:49','89730635001757696',NULL,NULL,_binary '\0'),(3214,'SOLUTION_TYPE','economy','zh_CN','低空经济','2024-04-28 06:20:03','89730635001757696',NULL,NULL,_binary '\0'),(3215,'SOLUTION_TYPE','economy','zh_TW','低空經濟','2024-04-28 06:20:03','89730635001757696',NULL,NULL,_binary '\0'),(3216,'SOLUTION_TYPE','economy','en_US','Low-altitude economy','2024-04-28 06:20:03','89730635001757696',NULL,NULL,_binary '\0'),(3217,'FEEDBACK_TYPE','EMERGENCY','zh_CN','大应急行业','2024-04-28 07:10:28','89730635001757696',NULL,NULL,_binary '\0'),(3218,'FEEDBACK_TYPE','EMERGENCY','zh_TW','大應急行業','2024-04-28 07:10:28','89730635001757696',NULL,NULL,_binary '\0'),(3219,'FEEDBACK_TYPE','EMERGENCY','en_US','Emergency','2024-04-28 07:10:28','89730635001757696',NULL,NULL,_binary '\0'),(3220,'FEEDBACK_TYPE','ECONOMY','zh_CN','低空经济','2024-04-28 07:10:45','89730635001757696',NULL,NULL,_binary '\0'),(3221,'FEEDBACK_TYPE','ECONOMY','zh_TW','低空經濟','2024-04-28 07:10:45','89730635001757696',NULL,NULL,_binary '\0'),(3222,'FEEDBACK_TYPE','ECONOMY','en_US','Low altitude economy','2024-04-28 07:10:45','89730635001757696',NULL,NULL,_binary '\0'),(3223,'HOUSEAREA','HUS00000155','zh_CN','519101209','2024-05-02 01:11:36','1',NULL,NULL,_binary '\0'),(3224,'HOUSEAREA','HUS00000155','zh_TW','519101209','2024-05-02 01:11:36','1',NULL,NULL,_binary '\0'),(3225,'HOUSEAREA','HUS00000155','en_US','519101209','2024-05-02 01:11:36','1',NULL,NULL,_binary '\0'),(3226,'SCENARIOMAP','HUS00000155','zh_CN','320412-0-LAA-02-0002','2024-05-02 01:16:57','1',NULL,NULL,_binary '\0'),(3227,'SCENARIOMAP','HUS00000155','zh_TW','320412-0-LAA-02-0002','2024-05-02 01:16:57','1',NULL,NULL,_binary '\0'),(3228,'SCENARIOMAP','HUS00000155','en_US','320412-0-LAA-02-0002','2024-05-02 01:16:57','1',NULL,NULL,_binary '\0'),(3229,'INTERFACE_GROUP','INDUSTRY','zh_CN','行业应用','2024-05-10 05:44:27','188243415207510016',NULL,NULL,_binary '\0'),(3230,'INTERFACE_GROUP','INDUSTRY','zh_TW','行业应用','2024-05-10 05:44:27','188243415207510016',NULL,NULL,_binary '\0'),(3231,'INTERFACE_GROUP','INDUSTRY','en_US','行业应用','2024-05-10 05:44:27','188243415207510016',NULL,NULL,_binary '\0'),(3232,'INTERFACE_GROUP','device.gps','zh_CN','在线无人机位置信息','2024-05-13 01:36:55','1','2024-05-13 01:37:04',NULL,_binary ''),(3233,'INTERFACE_GROUP','device.gps','zh_TW','在线无人机位置信息','2024-05-13 01:36:55','1','2024-05-13 01:37:04',NULL,_binary ''),(3234,'INTERFACE_GROUP','device.gps','en_US','device.gps','2024-05-13 01:36:55','1','2024-05-13 01:37:04',NULL,_binary ''),(3235,'LOAD_CAM_MODEL','xh036','zh_CN','科比特通用相机','2024-05-21 05:29:22','1',NULL,NULL,_binary '\0'),(3236,'LOAD_CAM_MODEL','xh036','zh_TW','科比特通用相机','2024-05-21 05:29:22','1',NULL,NULL,_binary '\0'),(3237,'LOAD_CAM_MODEL','xh036','en_US','科比特通用相机','2024-05-21 05:29:22','1',NULL,NULL,_binary '\0'),(3238,'MNF','sccj031','zh_CN','数字鹰','2024-06-06 03:02:46','1',NULL,NULL,_binary '\0'),(3239,'MNF','sccj031','zh_TW','数字鹰','2024-06-06 03:02:46','1',NULL,NULL,_binary '\0'),(3240,'MNF','sccj031','en_US','shuziying','2024-06-06 03:02:46','1',NULL,NULL,_binary '\0'),(3241,'LOAD_HNG_MODEL','jkxh016','zh_CN','数字鹰机库','2024-06-06 03:04:11','1',NULL,NULL,_binary '\0'),(3242,'LOAD_HNG_MODEL','jkxh016','zh_TW','数字鹰机库','2024-06-06 03:04:11','1',NULL,NULL,_binary '\0'),(3243,'LOAD_HNG_MODEL','jkxh016','en_US','shuziying dock','2024-06-06 03:04:11','1',NULL,NULL,_binary '\0'),(3244,'MWS','video-ts','zh_CN','ts','2024-06-14 07:56:16','1',NULL,NULL,_binary '\0'),(3245,'MWS','video-ts','zh_TW','ts','2024-06-14 07:56:16','1',NULL,NULL,_binary '\0'),(3246,'MWS','video-ts','en_US','ts','2024-06-14 07:56:16','1',NULL,NULL,_binary '\0'),(3247,'MNF','sccj033','zh_CN','航天国器','2024-07-25 01:39:14','1',NULL,NULL,_binary '\0'),(3248,'MNF','sccj033','zh_TW','航天国器','2024-07-25 01:39:14','1',NULL,NULL,_binary '\0'),(3249,'MNF','sccj033','en_US','航天国器','2024-07-25 01:39:14','1',NULL,NULL,_binary '\0'),(3250,'PLANE_MODEL','wrjxh077','zh_CN','GQ-40','2024-07-25 01:40:02','1',NULL,NULL,_binary '\0'),(3251,'PLANE_MODEL','wrjxh077','zh_TW','GQ-40','2024-07-25 01:40:02','1',NULL,NULL,_binary '\0'),(3252,'PLANE_MODEL','wrjxh077','en_US','GQ-40','2024-07-25 01:40:02','1',NULL,NULL,_binary '\0'),(3253,'LOAD_CAM_MODEL','xh038','zh_CN','航天国器通用载荷','2024-07-25 01:42:02','1',NULL,NULL,_binary '\0'),(3254,'LOAD_CAM_MODEL','xh038','zh_TW','航天国器通用载荷','2024-07-25 01:42:02','1',NULL,NULL,_binary '\0'),(3255,'LOAD_CAM_MODEL','xh038','en_US','航天国器通用载荷','2024-07-25 01:42:02','1',NULL,NULL,_binary '\0'),(3256,'PLANE_MODEL','wrjxh078','zh_CN','GQ-580','2024-07-25 01:45:32','1',NULL,NULL,_binary '\0'),(3257,'PLANE_MODEL','wrjxh078','zh_TW','GQ-580','2024-07-25 01:45:32','1',NULL,NULL,_binary '\0'),(3258,'PLANE_MODEL','wrjxh078','en_US','GQ-580','2024-07-25 01:45:32','1',NULL,NULL,_binary '\0'),(3259,'INTERFACE_GROUP','INTERFACE_GROUP_REGULATION','zh_CN','监管','2024-07-26 02:32:50','188243415207510016',NULL,NULL,_binary '\0'),(3260,'INTERFACE_GROUP','INTERFACE_GROUP_REGULATION','zh_TW','监管','2024-07-26 02:32:50','188243415207510016',NULL,NULL,_binary '\0'),(3261,'INTERFACE_GROUP','INTERFACE_GROUP_REGULATION','en_US','监管','2024-07-26 02:32:50','188243415207510016',NULL,NULL,_binary '\0'),(3262,'DEV_COMPANY','94','zh_CN','公安探测设备配置数据94','2024-08-01 01:57:50','515544718477099008','2024-09-09 06:07:36','515544718477099008',_binary '\0'),(3263,'DEV_COMPANY','94','zh_TW','公安探测设备配置数据94','2024-08-01 01:57:50','515544718477099008','2024-09-09 06:07:36','515544718477099008',_binary '\0'),(3264,'DEV_COMPANY','94','en_US','公安探测设备配置数据94','2024-08-01 01:57:50','515544718477099008','2024-09-09 06:07:36','515544718477099008',_binary '\0'),(3265,'POLICE_CASE_INFO','440395000000','zh_CN','2','2024-08-07 06:08:12','1',NULL,NULL,_binary '\0'),(3266,'POLICE_CASE_INFO','440395000000','zh_TW','2','2024-08-07 06:08:12','1',NULL,NULL,_binary '\0'),(3267,'POLICE_CASE_INFO','440395000000','en_US','2','2024-08-07 06:08:12','1',NULL,NULL,_binary '\0'),(3268,'POLICE_CASE_INFO','440396000000','zh_CN','3','2024-08-07 06:08:22','1',NULL,NULL,_binary '\0'),(3269,'POLICE_CASE_INFO','440396000000','zh_TW','3','2024-08-07 06:08:22','1',NULL,NULL,_binary '\0'),(3270,'POLICE_CASE_INFO','440396000000','en_US','3','2024-08-07 06:08:22','1',NULL,NULL,_binary '\0'),(3271,'CAMERA_FOV','63.7','zh_CN','xh001','2024-08-15 08:07:44','89730635001757696','2024-08-15 08:07:56','89730635001757696',_binary '\0'),(3272,'CAMERA_FOV','63.7','zh_TW','xh001','2024-08-15 08:07:44','89730635001757696','2024-08-15 08:07:56','89730635001757696',_binary '\0'),(3273,'CAMERA_FOV','63.7','en_US','xh001','2024-08-15 08:07:44','89730635001757696','2024-08-15 08:07:56','89730635001757696',_binary '\0'),(3274,'CAMERA_FOV','40.6','zh_CN','xh003','2024-08-15 08:08:23','89730635001757696',NULL,NULL,_binary '\0'),(3275,'CAMERA_FOV','40.6','zh_TW','xh003','2024-08-15 08:08:23','89730635001757696',NULL,NULL,_binary '\0'),(3276,'CAMERA_FOV','40.6','en_US','xh003','2024-08-15 08:08:23','89730635001757696',NULL,NULL,_binary '\0'),(3277,'POLICE_CASE_INFO','440396000001','zh_CN','4','2024-09-04 07:55:47','1',NULL,NULL,_binary '\0'),(3278,'POLICE_CASE_INFO','440396000001','zh_TW','4','2024-09-04 07:55:47','1',NULL,NULL,_binary '\0'),(3279,'POLICE_CASE_INFO','440396000001','en_US','4','2024-09-04 07:55:47','1',NULL,NULL,_binary '\0'),(3280,'DEV_COMPANY','2','zh_CN','公安探测设备配置数据2','2024-09-09 06:07:09','515544718477099008',NULL,NULL,_binary '\0'),(3281,'DEV_COMPANY','2','zh_TW','公安探测设备配置数据2','2024-09-09 06:07:09','515544718477099008',NULL,NULL,_binary '\0'),(3282,'DEV_COMPANY','2','en_US','公安探测设备配置数据2','2024-09-09 06:07:09','515544718477099008',NULL,NULL,_binary '\0'),(3283,'SEC_TYPE','FLIGHT_CMD','en_US','Illegal flight control command','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3284,'SEC_TYPE','FLIGHT_CMD','zh_CN','非法飞控指令','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3285,'SEC_TYPE','FLIGHT_CMD','zh_TW','非法飛控指令','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3286,'SEC_TYPE','DB_TAMPER','en_US','Illegal database tampering','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3287,'SEC_TYPE','DB_TAMPER','zh_CN','数据库非法篡改','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3288,'SEC_TYPE','DB_TAMPER','zh_TW','數據庫非法篡改','2024-10-11 01:09:44','123',NULL,NULL,_binary '\0'),(3289,'SEC_TYPE','CON_FLIGHT','en_US','程控飞行','2024-10-11 01:09:45','123','2024-10-11 01:21:15','1',_binary '\0'),(3290,'SEC_TYPE','CON_FLIGHT','zh_CN','程控飞行','2024-10-11 01:09:45','123','2024-10-11 01:21:15','1',_binary '\0'),(3291,'SEC_TYPE','CON_FLIGHT','zh_TW','程控飞行','2024-10-11 01:09:45','123','2024-10-11 01:21:15','1',_binary '\0'),(3292,'SEC_TYPE','ELEC_FENCE','en_US','电子围栏','2024-10-11 01:09:45','123','2024-10-11 01:22:11','1',_binary '\0'),(3293,'SEC_TYPE','ELEC_FENCE','zh_CN','电子围栏','2024-10-11 01:09:45','123','2024-10-11 01:22:11','1',_binary '\0'),(3294,'SEC_TYPE','ELEC_FENCE','zh_TW','电子围栏','2024-10-11 01:09:45','123','2024-10-11 01:22:11','1',_binary '\0'),(3295,'ALARM_STATE','1','en_US','cancel','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3296,'ALARM_STATE','1','zh_CN','已解除','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3297,'ALARM_STATE','1','zh_TW','已解除','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3298,'ALARM_STATE','0','en_US','ongoing','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3299,'ALARM_STATE','0','zh_CN','进行中','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3300,'ALARM_STATE','0','zh_TW','進行中','2024-10-11 01:10:23','123',NULL,NULL,_binary '\0'),(3301,'CMD_STATE','1','en_US','done','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3302,'CMD_STATE','1','zh_CN','已处置','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3303,'CMD_STATE','1','zh_TW','已处置','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3304,'CMD_STATE','0','en_US','ongoing','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3305,'CMD_STATE','0','zh_CN','处置中','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3306,'CMD_STATE','0','zh_TW','处置中','2024-10-11 01:10:53','123',NULL,NULL,_binary '\0'),(3307,'HANDLE_STATE','-2','en_US','deal','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3308,'HANDLE_STATE','-2','zh_CN','处置','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3309,'HANDLE_STATE','-2','zh_TW','处置','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3310,'HANDLE_STATE','-1','en_US','ignore','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3311,'HANDLE_STATE','-1','zh_CN','忽略','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3312,'HANDLE_STATE','-1','zh_TW','忽略','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3313,'HANDLE_STATE','2','en_US','report wrong','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3314,'HANDLE_STATE','2','zh_CN','误报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3315,'HANDLE_STATE','2','zh_TW','误报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3316,'HANDLE_STATE','1','en_US','report','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3317,'HANDLE_STATE','1','zh_CN','上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3318,'HANDLE_STATE','1','zh_TW','上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3319,'HANDLE_STATE','0','en_US','not report','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3320,'HANDLE_STATE','0','zh_CN','未上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3321,'HANDLE_STATE','0','zh_TW','未上报','2024-10-11 01:11:18','123',NULL,NULL,_binary '\0'),(3322,'ALARM_OBJECT','elecFence','en_US','electronic fence','2024-10-11 01:11:44','123',NULL,NULL,_binary '\0'),(3323,'ALARM_OBJECT','elecFence','zh_CN','电子围栏','2024-10-11 01:11:44','123',NULL,NULL,_binary '\0'),(3324,'ALARM_OBJECT','elecFence','zh_TW','电子围栏','2024-10-11 01:11:44','123',NULL,NULL,_binary '\0'),(3325,'PLANE_MODEL','wrjxh085','zh_CN','VTOL-MD25','2024-10-16 09:08:30','1',NULL,NULL,_binary '\0'),(3326,'PLANE_MODEL','wrjxh085','zh_TW','VTOL-MD25','2024-10-16 09:08:30','1',NULL,NULL,_binary '\0'),(3327,'PLANE_MODEL','wrjxh085','en_US','VTOL-MD25','2024-10-16 09:08:30','1',NULL,NULL,_binary '\0'),(3328,'LOAD_CAM_MODEL','xh045','zh_CN','国飞航空通用载荷','2024-10-16 09:09:02','1',NULL,NULL,_binary '\0'),(3329,'LOAD_CAM_MODEL','xh045','zh_TW','国飞航空通用载荷','2024-10-16 09:09:02','1',NULL,NULL,_binary '\0'),(3330,'LOAD_CAM_MODEL','xh045','en_US','国飞航空通用载荷','2024-10-16 09:09:02','1',NULL,NULL,_binary '\0'),(3331,'PLANE_MODEL','007','zh_CN','你好','2024-11-04 06:24:50','567350297367937024','2024-11-05 03:04:38','567350297367937024',_binary ''),(3332,'PLANE_MODEL','007','zh_TW','你好啊','2024-11-04 06:24:50','567350297367937024','2024-11-05 03:04:38','567350297367937024',_binary ''),(3333,'PLANE_MODEL','007','en_US','nihao','2024-11-04 06:24:50','567350297367937024','2024-11-05 03:04:38','567350297367937024',_binary ''),(3334,'HANDLE_STATE','NIHAO','zh_CN','不','2024-11-04 08:24:54','567350297367937024','2024-11-04 08:25:22','567350297367937024',_binary ''),(3335,'HANDLE_STATE','NIHAO','zh_TW','你好','2024-11-04 08:24:54','567350297367937024','2024-11-04 08:25:22','567350297367937024',_binary ''),(3336,'HANDLE_STATE','NIHAO','en_US','NIHAO','2024-11-04 08:24:54','567350297367937024','2024-11-04 08:25:22','567350297367937024',_binary ''),(3337,'HANDLE_STATE','12345678901234567890123456789012345678901234567890','zh_CN','啊U盾会啊说对啊还是对海三打哈UI说等会啊手打UI送达回啊隧道哈UI是对哈隧道哈UI哦的阿萨德还哦山','2024-11-04 08:27:29','567350297367937024','2024-11-04 09:35:08','567350297367937024',_binary ''),(3338,'HANDLE_STATE','12345678901234567890123456789012345678901234567890','zh_TW','啊U盾会啊说对啊还是对海三打哈UI说等会啊手打UI送达回啊隧道哈UI是对哈隧道哈UI哦的阿萨德还哦山','2024-11-04 08:27:29','567350297367937024','2024-11-04 09:35:08','567350297367937024',_binary ''),(3339,'HANDLE_STATE','12345678901234567890123456789012345678901234567890','en_US','12345678901234567890123456789012345678901234567890','2024-11-04 08:27:29','567350297367937024','2024-11-04 09:35:08','567350297367937024',_binary ''),(3340,'ALARM_OBJECT','123','zh_CN','123','2024-11-04 09:41:17','567350297367937024','2024-11-05 02:48:14',NULL,_binary ''),(3341,'ALARM_OBJECT','123','zh_TW','123','2024-11-04 09:41:17','567350297367937024','2024-11-05 02:48:14',NULL,_binary ''),(3342,'ALARM_OBJECT','123','en_US','123','2024-11-04 09:41:17','567350297367937024','2024-11-05 02:48:14',NULL,_binary ''),(3343,'abc','001','zh_CN','你好','2024-11-05 02:48:50','567350297367937024','2024-11-05 03:00:13','567350297367937024',_binary ''),(3344,'abc','001','zh_TW','你好','2024-11-05 02:48:50','567350297367937024','2024-11-05 03:00:13','567350297367937024',_binary ''),(3345,'abc','001','en_US','nihao','2024-11-05 02:48:50','567350297367937024','2024-11-05 03:00:13','567350297367937024',_binary ''),(3346,'abc','123','zh_CN','123','2024-11-05 02:50:16','567350297367937024','2024-11-05 02:50:25','567350297367937024',_binary '\0'),(3347,'abc','123','zh_TW','123','2024-11-05 02:50:16','567350297367937024','2024-11-05 02:59:22','567350297367937024',_binary '\0'),(3348,'abc','123','en_US','123','2024-11-05 02:50:16','567350297367937024','2024-11-05 02:50:25','567350297367937024',_binary '\0'),(3349,'abc','电子围栏','zh_CN','电子围栏','2024-11-05 02:51:30','567350297367937024','2024-11-05 02:51:34',NULL,_binary ''),(3350,'abc','电子围栏','zh_TW','电子围栏','2024-11-05 02:51:30','567350297367937024','2024-11-05 02:51:34',NULL,_binary ''),(3351,'abc','电子围栏','en_US','电子围栏','2024-11-05 02:51:30','567350297367937024','2024-11-05 02:51:34',NULL,_binary ''),(3352,'abd','123','zh_CN','123','2024-11-05 02:52:39','567350297367937024',NULL,NULL,_binary '\0'),(3353,'abd','123','zh_TW','123','2024-11-05 02:52:39','567350297367937024',NULL,NULL,_binary '\0'),(3354,'abd','123','en_US','123','2024-11-05 02:52:39','567350297367937024',NULL,NULL,_binary '\0'),(3355,'abd','电子围栏','zh_CN','电子围栏','2024-11-05 02:52:52','567350297367937024','2024-11-05 02:52:57',NULL,_binary ''),(3356,'abd','电子围栏','zh_TW','电子围栏','2024-11-05 02:52:52','567350297367937024','2024-11-05 02:52:57',NULL,_binary ''),(3357,'abd','电子围栏','en_US','电子围栏','2024-11-05 02:52:52','567350297367937024','2024-11-05 02:52:57',NULL,_binary ''),(3358,'abc','不着调','zh_CN','不着调','2024-11-05 02:55:26','567350297367937024','2024-11-05 02:55:41','567350297367937024',_binary '\0'),(3359,'abc','不着调','zh_TW','不着调','2024-11-05 02:55:26','567350297367937024','2024-11-05 02:55:41','567350297367937024',_binary '\0'),(3360,'abc','不着调','en_US','不着调','2024-11-05 02:55:26','567350297367937024','2024-11-05 02:55:41','567350297367937024',_binary '\0'),(3361,'abc','nihao','zh_CN','你好','2024-11-05 03:00:22','567350297367937024','2024-11-05 03:00:26',NULL,_binary ''),(3362,'abc','nihao','zh_TW','你好','2024-11-05 03:00:22','567350297367937024','2024-11-05 03:00:26',NULL,_binary ''),(3363,'abc','nihao','en_US','nihao','2024-11-05 03:00:22','567350297367937024','2024-11-05 03:00:26',NULL,_binary ''),(3364,'abc','你好','zh_CN','你好','2024-11-05 03:00:35','567350297367937024','2024-11-05 03:00:56','567350297367937024',_binary '\0'),(3365,'abc','你好','zh_TW','你好','2024-11-05 03:00:35','567350297367937024','2024-11-05 03:00:56','567350297367937024',_binary '\0'),(3366,'abc','你好','en_US','你好','2024-11-05 03:00:35','567350297367937024','2024-11-05 03:00:56','567350297367937024',_binary '\0'),(3367,'123','你好','zh_CN','你好','2024-11-05 03:06:30','567350297367937024',NULL,NULL,_binary '\0'),(3368,'123','你好','zh_TW','你好','2024-11-05 03:06:30','567350297367937024',NULL,NULL,_binary '\0'),(3369,'123','你好','en_US','你好','2024-11-05 03:06:30','567350297367937024',NULL,NULL,_binary '\0'),(3370,'123','nihao','zh_CN','你好1','2024-11-05 03:06:53','567350297367937024',NULL,NULL,_binary '\0'),(3371,'123','nihao','zh_TW','你好1','2024-11-05 03:06:53','567350297367937024',NULL,NULL,_binary '\0'),(3372,'123','nihao','en_US','你好1','2024-11-05 03:06:53','567350297367937024',NULL,NULL,_binary '\0'),(3373,'123','nihao2','zh_CN','你好2','2024-11-05 03:08:37','567350297367937024','2024-11-05 03:09:42','567350297367937024',_binary '\0'),(3374,'123','nihao2','zh_TW','你好2','2024-11-05 03:08:37','567350297367937024','2024-11-05 03:09:42','567350297367937024',_binary '\0'),(3375,'123','nihao2','en_US','你好2','2024-11-05 03:08:37','567350297367937024','2024-11-05 03:09:42','567350297367937024',_binary '\0'),(3376,'123','123','zh_CN','123','2024-11-05 03:10:26','567350297367937024','2024-11-05 08:10:04','173818970422378496',_binary '\0'),(3377,'123','123','zh_TW','123','2024-11-05 03:10:26','567350297367937024','2024-11-05 08:10:04','173818970422378496',_binary '\0'),(3378,'123','123','en_US','123','2024-11-05 03:10:26','567350297367937024','2024-11-05 08:10:04','173818970422378496',_binary '\0'),(3379,'123','234','zh_CN','测试','2024-11-05 03:10:32','567350297367937024','2024-11-05 08:03:29','173818970422378496',_binary '\0'),(3380,'123','234','zh_TW','测试','2024-11-05 03:10:32','567350297367937024','2024-11-05 08:03:29','173818970422378496',_binary '\0'),(3381,'123','234','en_US','234','2024-11-05 03:10:32','567350297367937024','2024-11-05 08:03:29','173818970422378496',_binary '\0'),(3382,'123','buzhidao','zh_CN','不知道','2024-11-05 03:11:57','567350297367937024','2024-11-05 03:12:31','567350297367937024',_binary '\0'),(3383,'123','buzhidao','zh_TW','不知道','2024-11-05 03:11:57','567350297367937024','2024-11-05 03:12:31','567350297367937024',_binary '\0'),(3384,'123','buzhidao','en_US','buzhidao','2024-11-05 03:11:57','567350297367937024','2024-11-05 03:12:31','567350297367937024',_binary '\0'),(3385,'linshichuangjian','buxiaode','zh_CN','不晓得','2024-11-05 03:15:44','567350297367937024','2024-11-05 03:16:30','567350297367937024',_binary '\0'),(3386,'linshichuangjian','buxiaode','zh_TW','不晓得','2024-11-05 03:15:44','567350297367937024','2024-11-05 03:16:30','567350297367937024',_binary '\0'),(3387,'linshichuangjian','buxiaode','en_US','buxiaode','2024-11-05 03:15:44','567350297367937024','2024-11-05 03:16:30','567350297367937024',_binary '\0'),(3388,'linshichuangjian','123','zh_CN','123','2024-11-05 03:15:51','567350297367937024','2024-11-05 08:02:11','173818970422378496',_binary ''),(3389,'linshichuangjian','123','zh_TW','123','2024-11-05 03:15:51','567350297367937024','2024-11-05 08:02:11','173818970422378496',_binary ''),(3390,'linshichuangjian','123','en_US','123','2024-11-05 03:15:51','567350297367937024','2024-11-05 08:02:11','173818970422378496',_binary ''),(3391,'linshichuangjian','nihao','zh_CN','你好','2024-11-05 03:16:43','567350297367937024','2024-11-05 08:09:33','173818970422378496',_binary ''),(3392,'linshichuangjian','nihao','zh_TW','你好','2024-11-05 03:16:43','567350297367937024','2024-11-05 08:09:33','173818970422378496',_binary ''),(3393,'linshichuangjian','nihao','en_US','nihao','2024-11-05 03:16:43','567350297367937024','2024-11-05 08:09:33','173818970422378496',_binary ''),(3394,'linshichuangjian','buzhidao','zh_CN','不知道','2024-11-05 03:20:00','567350297367937024',NULL,NULL,_binary '\0'),(3395,'linshichuangjian','buzhidao','zh_TW','不知道','2024-11-05 03:20:00','567350297367937024',NULL,NULL,_binary '\0'),(3396,'linshichuangjian','buzhidao','en_US','buzhidao','2024-11-05 03:20:00','567350297367937024',NULL,NULL,_binary '\0'),(3397,'linshichuangjian','nihao1','zh_CN','你好1','2024-11-05 03:20:17','567350297367937024',NULL,NULL,_binary '\0'),(3398,'linshichuangjian','nihao1','zh_TW','你好1','2024-11-05 03:20:17','567350297367937024',NULL,NULL,_binary '\0'),(3399,'linshichuangjian','nihao1','en_US','nihao1','2024-11-05 03:20:17','567350297367937024',NULL,NULL,_binary '\0'),(3400,'234','nihao','zh_CN','你好','2024-11-05 03:23:12','567350297367937024','2024-11-05 03:25:59','567350297367937024',_binary '\0'),(3401,'234','nihao','zh_TW','你好','2024-11-05 03:23:12','567350297367937024','2024-11-05 03:25:59','567350297367937024',_binary '\0'),(3402,'234','nihao','en_US','nihao','2024-11-05 03:23:12','567350297367937024','2024-11-05 03:25:59','567350297367937024',_binary '\0'),(3403,'234','123','zh_CN','123','2024-11-05 06:18:37','567350297367937024',NULL,NULL,_binary '\0'),(3404,'234','123','zh_TW','123','2024-11-05 06:18:37','567350297367937024',NULL,NULL,_binary '\0'),(3405,'234','123','en_US','123','2024-11-05 06:18:37','567350297367937024',NULL,NULL,_binary '\0'),(3406,'234','321','zh_CN','321','2024-11-05 06:18:53','567350297367937024',NULL,NULL,_binary '\0'),(3407,'234','321','zh_TW','321','2024-11-05 06:18:53','567350297367937024',NULL,NULL,_binary '\0'),(3408,'234','321','en_US','321','2024-11-05 06:18:53','567350297367937024',NULL,NULL,_binary '\0'),(3409,'234','221','zh_CN','221','2024-11-05 06:19:14','567350297367937024',NULL,NULL,_binary '\0'),(3410,'234','221','zh_TW','221','2024-11-05 06:19:14','567350297367937024',NULL,NULL,_binary '\0'),(3411,'234','221','en_US','221','2024-11-05 06:19:14','567350297367937024',NULL,NULL,_binary '\0'),(3412,'PLANE_MODEL','nihao','zh_CN','你好','2024-11-05 06:21:10','567350297367937024','2024-11-05 06:22:47',NULL,_binary ''),(3413,'PLANE_MODEL','nihao','zh_TW','你好','2024-11-05 06:21:10','567350297367937024','2024-11-05 06:22:47',NULL,_binary ''),(3414,'PLANE_MODEL','nihao','en_US','nihao','2024-11-05 06:21:10','567350297367937024','2024-11-05 06:22:47',NULL,_binary ''),(3415,'PLANE_MODEL','linshichuangjian','zh_CN','临时创建','2024-11-05 06:37:31','567350297367937024',NULL,NULL,_binary '\0'),(3416,'PLANE_MODEL','linshichuangjian','zh_TW','临时创建','2024-11-05 06:37:31','567350297367937024',NULL,NULL,_binary '\0'),(3417,'PLANE_MODEL','linshichuangjian','en_US','linshichuangjian','2024-11-05 06:37:31','567350297367937024',NULL,NULL,_binary '\0'),(3418,'123','DB_TAMPER','zh_CN','DB_TAMPER','2024-11-05 08:00:42','173818970422378496','2024-11-05 08:01:11',NULL,_binary ''),(3419,'123','DB_TAMPER','zh_TW','DB_TAMPER','2024-11-05 08:00:42','173818970422378496','2024-11-05 08:01:11',NULL,_binary ''),(3420,'123','DB_TAMPER','en_US','DB_TAMPER','2024-11-05 08:00:42','173818970422378496','2024-11-05 08:01:11',NULL,_binary ''),(3421,'123','dd','zh_CN','数据库非法篡改','2024-11-05 08:01:20','173818970422378496','2024-11-05 08:01:24',NULL,_binary ''),(3422,'123','dd','zh_TW','数据库非法篡改','2024-11-05 08:01:20','173818970422378496','2024-11-05 08:01:24',NULL,_binary ''),(3423,'123','dd','en_US','dd','2024-11-05 08:01:20','173818970422378496','2024-11-05 08:01:24',NULL,_binary ''),(3424,'linshichuangjian','234','zh_CN','测试','2024-11-05 08:03:19','173818970422378496',NULL,NULL,_binary '\0'),(3425,'linshichuangjian','234','zh_TW','测试','2024-11-05 08:03:19','173818970422378496',NULL,NULL,_binary '\0'),(3426,'linshichuangjian','234','en_US','234','2024-11-05 08:03:19','173818970422378496',NULL,NULL,_binary '\0'),(3427,'ALARM_STATE','nihao','zh_CN','你好','2024-11-05 08:06:45','173818970422378496','2024-11-05 08:06:49',NULL,_binary ''),(3428,'ALARM_STATE','nihao','zh_TW','你好','2024-11-05 08:06:45','173818970422378496','2024-11-05 08:06:49',NULL,_binary ''),(3429,'ALARM_STATE','nihao','en_US','nihao','2024-11-05 08:06:45','173818970422378496','2024-11-05 08:06:49',NULL,_binary ''),(3430,'MNF','sccj036','zh_CN','北京远度','2024-11-13 00:56:15','1',NULL,NULL,_binary '\0'),(3431,'MNF','sccj036','zh_TW','北京远度','2024-11-13 00:56:15','1',NULL,NULL,_binary '\0'),(3432,'MNF','sccj036','en_US','北京远度','2024-11-13 00:56:15','1',NULL,NULL,_binary '\0'),(3433,'MNF','sccj038','zh_CN','中兴','2024-11-13 00:56:29','1',NULL,NULL,_binary '\0'),(3434,'MNF','sccj038','zh_TW','中兴','2024-11-13 00:56:29','1',NULL,NULL,_binary '\0'),(3435,'MNF','sccj038','en_US','中兴','2024-11-13 00:56:29','1',NULL,NULL,_binary '\0'),(3436,'PLANE_MODEL','wrjxh088','zh_CN','ZT-120V高原型中型复合翼','2024-11-13 01:06:26','1',NULL,NULL,_binary '\0'),(3437,'PLANE_MODEL','wrjxh088','zh_TW','ZT-120V高原型中型复合翼','2024-11-13 01:06:26','1',NULL,NULL,_binary '\0'),(3438,'PLANE_MODEL','wrjxh088','en_US','ZT-120V高原型中型复合翼','2024-11-13 01:06:26','1',NULL,NULL,_binary '\0'),(3439,'PLANE_MODEL','wrjxh089','zh_CN','HY600大型直升机','2024-11-13 01:06:37','1',NULL,NULL,_binary '\0'),(3440,'PLANE_MODEL','wrjxh089','zh_TW','HY600大型直升机','2024-11-13 01:06:37','1',NULL,NULL,_binary '\0'),(3441,'PLANE_MODEL','wrjxh089','en_US','HY600大型直升机','2024-11-13 01:06:37','1',NULL,NULL,_binary '\0'),(3442,'LOAD_CAM_MODEL','xh048','zh_CN','中兴通用载荷','2024-11-13 01:07:29','1',NULL,NULL,_binary '\0'),(3443,'LOAD_CAM_MODEL','xh048','zh_TW','中兴通用载荷','2024-11-13 01:07:29','1',NULL,NULL,_binary '\0'),(3444,'LOAD_CAM_MODEL','xh048','en_US','中兴通用载荷','2024-11-13 01:07:29','1',NULL,NULL,_binary '\0'),(3445,'LOAD_CAM_MODEL','xh049','zh_CN','远度通用载荷','2024-11-13 01:08:34','1',NULL,NULL,_binary '\0'),(3446,'LOAD_CAM_MODEL','xh049','zh_TW','远度通用载荷','2024-11-13 01:08:34','1',NULL,NULL,_binary '\0'),(3447,'LOAD_CAM_MODEL','xh049','en_US','远度通用载荷','2024-11-13 01:08:34','1',NULL,NULL,_binary '\0'),(3448,'DEV_COMPANY','572','zh_CN','公安探测设备配置数据572','2024-11-14 02:35:16','515544718477099008','2024-11-14 02:35:41','515544718477099008',_binary '\0'),(3449,'DEV_COMPANY','572','zh_TW','公安探测设备配置数据572','2024-11-14 02:35:16','515544718477099008','2024-11-14 02:35:41','515544718477099008',_binary '\0'),(3450,'DEV_COMPANY','572','en_US','公安探测设备配置数据572','2024-11-14 02:35:16','515544718477099008','2024-11-14 02:35:41','515544718477099008',_binary '\0'); /*!40000 ALTER TABLE `sys_dictionary_attr` ENABLE KEYS */; UNLOCK TABLES; @@ -62,7 +62,7 @@ UNLOCK TABLES; LOCK TABLES `sys_dictionary_type` WRITE; /*!40000 ALTER TABLE `sys_dictionary_type` DISABLE KEYS */; -INSERT INTO `sys_dictionary_type` VALUES (1,'设备类型','DEV_MODEL',_binary '\0','2020-09-18 02:22:32','system','2020-09-18 02:22:32','system'),(2,'生产厂家','MNF',_binary '\0','2020-09-18 02:22:32','system','2020-09-18 02:22:32','system'),(3,'可用状态','USE_STAT',_binary '\0','2020-09-18 02:22:32','system','2020-11-12 01:38:24','system'),(4,'在线状态','ONLINE_STAT',_binary '\0','2020-09-18 02:22:33','system','2020-09-18 02:22:33','system'),(5,'无人机型号','PLANE_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(6,'无人机形态','PLANE_SHAPE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(7,'无人机尺度','PLANE_SIZE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(8,'材料','PLANE_MAT',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(9,'外部接口','PLANE_INF',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(10,'摄像头型号','LOAD_CAM_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(11,'曝光模式','LOAD_CAM_EXP_MODE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(12,'工作模式','LOAD_CAM_WORK_MODE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(13,'白平衡','LOAD_CAM_BALANCE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(14,'图像存储格式','LOAD_CAM_IMG_FMT',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(15,'图像尺寸','LOAD_CAM_IMG_SIZE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(16,'拍照模式','LOAD_CAM_CAM_MODE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(17,'快门速度','LOAD_CAM_SHUT_SPEED',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(18,'照片ISO','LOAD_CAM_IMG_ISO',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(19,'视频存储格式','LOAD_CAM_VIDEO_FMT',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(20,'视频分辨率','LOAD_CAM_VIDEO_DIS',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(21,'视频ISO','LOAD_CAM_VIDEO_ISO',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(22,'喊话器型号','LOAD_SPK_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(23,'机库型号','LOAD_HNG_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(24,'机库类型','HNG_TYPE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(25,'壳体保护等级','PROT_LEVEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(26,'设备动作匹配','DEV_ACTION_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(27,'长度限制','LEN',_binary '\0','2020-09-18 02:22:35','system','2020-09-18 02:22:35','system'),(28,'视频线路','VIDEO_LINE',_binary '\0','2020-09-18 02:22:35','system','2020-09-18 02:22:35','system'),(29,'审核状态','APPR_STAT',_binary '\0','2020-10-10 09:26:42','system','2020-10-10 09:26:42','system'),(30,'空域类型','AREA_TYPE',_binary '\0','2020-10-10 09:26:42','system','2020-10-10 09:26:42','system'),(31,'飞行任务','FLY_TASK',_binary '\0','2020-10-10 09:26:42','system','2020-10-10 09:26:42','system'),(32,'test2','test',_binary '','2021-04-21 03:20:57','1','2021-04-21 03:21:35','1'),(33,'相机快门','CAMERA_SHUTTER',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(34,'相机光圈','CAMERA_APERTURE',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(35,'相机曝光','CAMERA_EV',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(36,'拍照模式','CAMERA_PHOTO_MODE',_binary '\0','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system'),(37,'相机曝光模式','CAMERA_EXPOSURE_MODE',_binary '\0','2020-10-12 01:57:19','1',NULL,NULL),(38,'相机ISO','CAMERA_ISO',_binary '\0','2020-10-12 02:00:47','1',NULL,NULL),(39,'适配厂家','ADAPT_MNF',_binary '\0','2020-11-06 01:17:17','1',NULL,NULL),(40,'自动化测试2','AUTO_TEST',_binary '','2024-10-15 00:55:48','58582660930338816','2024-10-15 00:55:56','58582660930338816'),(41,'字典自动化','auto_test',_binary '','2024-10-15 00:55:48','58582660930338816','2024-10-15 00:55:49','58582660930338816'),(42,'自动化测试2','AUTO_TEST3',_binary '','2020-11-18 02:28:01','1','2020-11-18 02:28:09','1'),(43,'自动化测试1','auto_test3',_binary '','2020-11-18 02:28:01','1','2020-11-18 02:28:09','1'),(44,'自动化测试','AUTO_TEST2',_binary '','2020-11-18 04:19:00','1','2020-11-18 04:19:50','1'),(45,'素材仓库','MWS',_binary '\0','2020-12-08 11:43:15','1','2021-03-05 09:18:18',NULL),(46,'应用类型','APP_TYPE',_binary '\0','2020-12-09 07:19:24','1',NULL,NULL),(47,'AI視頻流','AI_VIDEO',_binary '\0','2021-02-03 07:34:05','1',NULL,NULL),(48,'平台类型','PLATFORM_TYPE',_binary '\0','2021-03-12 05:46:25','1',NULL,NULL),(49,'问题反馈类型','FEEDBACK_TYPE',_binary '\0','2021-03-12 05:46:56','1',NULL,NULL),(50,'123','213',_binary '','2021-03-12 07:14:57','70213995537104896','2021-03-12 07:15:13','70213995537104896'),(51,'配额管理','QUOTA_TYPE',_binary '\0','2021-03-19 07:05:52','1',NULL,NULL),(52,'农机监视公司','NJ_COMPANY',_binary '\0','2021-03-19 07:06:15','1',NULL,NULL),(53,'场景类型','SCENCE_TYPE',_binary '\0','2021-03-19 07:06:37','1',NULL,NULL),(54,'农机视频','NJ_VIDEO',_binary '\0','2021-03-19 07:19:20','1',NULL,NULL),(55,'作业管理','MISSION_MANAGEMENT',_binary '\0','2021-03-31 09:20:59','89730635001757696',NULL,NULL),(56,'tt111','ss',_binary '','2021-04-01 01:25:54','1','2021-04-01 01:26:40','1'),(57,'演示使用飞机状态','DEMO_STATUS',_binary '\0','2021-04-07 08:14:58','123',NULL,NULL),(58,'test','testt',_binary '','2021-05-26 05:50:57','292','2021-05-26 05:51:54','292'),(59,'设备类型与哈勃匹配','DEV_MODEL_HUBBLE',_binary '\0','2021-06-02 07:11:42','123',NULL,NULL),(60,'接口类型','INTERFACE_TYPE',_binary '\0','2021-06-11 06:26:12','1',NULL,NULL),(61,'开放平台额度限制类型','OPEN_LIMIT_TYPE',_binary '\0','2021-06-11 06:26:40','1',NULL,NULL),(62,'接口分组','INTERFACE_GROUP',_binary '\0','2021-06-11 06:27:07','1',NULL,NULL),(63,'视频流','VIDEO_FLOWING]',_binary '\0','2021-07-28 01:59:44','1',NULL,NULL),(64,'雷达监测显示公司','DETECTION_COMPANY',_binary '\0','2021-09-16 05:55:02','1',NULL,NULL),(65,'开放平台示例语言','OPEN_API_SAMPLE_LANGUAGE',_binary '\0','2021-10-18 08:30:25','1',NULL,NULL),(66,'和对讲账户','POC_USER',_binary '\0','2021-11-16 07:21:17','175627050911006720',NULL,NULL),(67,'车务通','CHEWUTONG_COMPANY',_binary '\0','2021-11-17 08:48:15','175627050911006720',NULL,NULL),(68,'消防出警数据隔离','XF_COMPANY',_binary '\0','2021-12-07 08:05:34','175627050911006720',NULL,NULL),(69,'自贡ID','UASID_ZIGONG',_binary '\0','2021-12-15 05:33:47','175627050911006720','2021-12-15 05:33:31','175627050911006720'),(70,'自贡IP','IP_ZIGONG',_binary '\0','2021-12-14 09:28:06','175627050911006720',NULL,NULL),(71,'杆塔缺陷类别','TOWER_DEFECT_CATEGORY',_binary '\0','2022-01-18 11:27:41','1',NULL,NULL),(72,'监控指标','ALARM_INDEX',_binary '\0','2022-01-19 01:13:53','1',NULL,NULL),(73,'通知方式','NOTICE_WAY',_binary '\0','2022-01-19 01:14:22','1',NULL,NULL),(74,'告警等级','ALARM_LEVEL',_binary '\0','2022-01-19 01:14:49','1',NULL,NULL),(75,'告警触发条件','ALARM_TRIGGER',_binary '\0','2022-01-19 01:15:16','1',NULL,NULL),(76,'处理结果','DEAL_RESULT',_binary '\0','2022-01-19 01:15:47','1',NULL,NULL),(77,'空域触发条件','AREA_ALARM_TRIGGER',_binary '\0','2022-01-19 01:16:11','1',NULL,NULL),(78,'告警触发单位','TRIGGER_UNIT',_binary '\0','2022-01-19 01:16:35','1',NULL,NULL),(79,'无人机级别','PLANE_LEVEL',_binary '\0','2022-01-20 01:16:26','123',NULL,NULL),(80,'证件类型','IDENTITY_TYPE',_binary '\0','2022-01-20 01:16:46','123',NULL,NULL),(81,'报批单位','AIRSPACE_UNIT',_binary '\0','2022-01-20 01:17:02','123',NULL,NULL),(82,'飞行执照类型','FLIGHT_TYPE',_binary '\0','2022-01-20 01:17:28','123',NULL,NULL),(83,'空域终审配置','PROCEDURE_TYPE',_binary '\0','2022-01-20 01:17:45','123',NULL,NULL),(84,'真机标识','REAL_STAT',_binary '\0','2022-03-11 06:08:53','123',NULL,NULL),(85,'气体检测仪','LOAD_GAS_MODEL',_binary '\0','2022-03-11 06:09:42','123',NULL,NULL),(86,'存储状态','SAVE_STAT',_binary '\0','2022-03-11 06:13:42','123',NULL,NULL),(87,'脱敏规则','BLUR_RULE',_binary '\0','2022-03-30 06:05:45','1',NULL,NULL),(88,'喷洒水泵类型','SPARY',_binary '\0','2022-05-06 08:56:26','188243415207510016','2022-05-06 08:56:26','188243415207510016'),(89,'照片类别','PICTURE_LABELS',_binary '\0','2022-06-08 06:24:53','123','2022-06-08 06:24:53','123'),(90,'所属任务类别','TASK_TYPE',_binary '\0','2022-06-08 06:25:24','123','2022-06-08 06:25:24','123'),(91,'截图气体分类','GAS_LABELS',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(92,'飞手违规处罚','PILOT_VIOLATION_PENALTY',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(93,'飞手违规类型','PILOT_VIOLATION_TYPE',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(94,'飞手合格证等级','PILOT_CERTIFICATE_LEVEL',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(95,'权限组模板范围','GROUP_TEMPLATE_SCOPE',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(96,'监管C端用户认证状态','SUAV_USER_CERTIFICATION_STATUS',_binary '\0','2022-09-20 08:29:17','1','2022-09-20 08:29:17','1'),(97,'监管C端用户状态','SUAV_USER_STATUS',_binary '\0','2022-09-20 08:29:21','1','2022-09-20 08:29:21','1'),(98,'运维班组','MAINTENANCE_TEAM',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(99,'杆塔类别','TOWER_CATEGORY',_binary '\0','2022-09-22 06:47:14','1','2022-09-22 06:47:14','1'),(100,'来源名','scrName',_binary '\0','2022-10-12 02:17:12','1','2022-10-12 02:17:12','1'),(101,'湘钢定制化报告发送','CUSTOMIZE_MISSION_REPORT_ADDRESS',_binary '\0','2022-11-29 01:13:03','1','2022-11-29 01:13:03','1'),(102,'飞手证状态','PILOT_STATE',_binary '\0','2023-01-16 03:04:35','1','2023-01-16 03:04:35','1'),(103,'文旅景区客流MAP','SCENARIOMAP',_binary '\0','2023-04-24 08:09:10','1','2023-04-24 08:09:10','1'),(104,'IT公司热力图景区codeMAP','HOUSEAREA',_binary '\0','2023-04-24 08:37:34','1','2023-09-22 06:53:27','89730635001757696'),(105,'加密对象','CIPHER_OBJECT',_binary '\0','2023-05-18 10:54:43','1','2023-05-18 10:54:43','1'),(106,'行业标签库','DATA_CATEGORY',_binary '\0','2023-10-07 06:43:58','416525856201375744','2023-10-16 01:03:08','416525856201375744'),(107,'基站','LOAD_BTS_MODEL',_binary '\0','2023-10-11 06:11:38','123','2023-10-11 06:11:38','123'),(108,'基站类型','BTS_TYPE',_binary '\0','2023-10-11 06:12:07','123','2023-10-11 06:12:07','123'),(109,'网络制式','RADIO_TYPE',_binary '\0','2023-10-11 06:12:29','123','2023-10-11 06:12:29','123'),(110,'探测公司','DETECTION_ORG',_binary '\0','2023-10-12 09:04:45','1','2023-10-12 09:04:45','1'),(111,'场景标签库','STYLE_LABLE',_binary '\0','2023-10-16 01:03:44','416525856201375744','2023-10-16 01:03:44','416525856201375744'),(112,'农业器具','LOAD_AGR_MODEL',_binary '\0','2023-11-29 07:28:15','89730635001757696','2023-11-29 07:28:15','89730635001757696'),(113,'多链路冗余','MPROTECT_STAT',_binary '\0','2024-02-29 06:43:38','173818970422378496','2024-02-29 06:43:38','173818970422378496'),(114,'接口性能测试更新','autoTestPerformance',_binary '','2024-03-20 07:44:05','58582660930338816','2024-03-20 07:44:07','58582660930338816'),(115,'解决方案类型','SOLUTION_TYPE',_binary '\0','2024-04-28 06:19:33','89730635001757696','2024-04-28 06:19:33','89730635001757696'),(116,'设备公司','DEV_COMPANY',_binary '\0','2024-08-01 01:49:47','515544718477099008','2024-08-01 01:49:47','515544718477099008'),(117,'警情分局映射','POLICE_CASE_INFO',_binary '\0','2024-08-07 06:07:32','1','2024-08-07 06:07:32','1'),(118,'镜头视场角','CAMERA_FOV',_binary '\0','2024-08-15 08:07:20','89730635001757696','2024-08-15 08:07:20','89730635001757696'),(119,'安全告警类型','SEC_TYPE',_binary '\0','2024-10-11 01:09:45','123','2024-10-11 01:09:45','123'),(120,'告警状态','ALARM_STATE',_binary '\0','2024-10-11 01:10:23','123','2024-10-11 01:10:23','123'),(121,'处置情况','CMD_STATE',_binary '\0','2024-10-11 01:10:53','123','2024-10-11 01:10:53','123'),(122,'告警处理结果','HANDLE_STATE',_binary '\0','2024-10-11 01:11:18','123','2024-10-11 01:11:18','123'),(123,'告警对象','ALARM_OBJECT',_binary '\0','2024-10-11 01:11:45','123','2024-10-11 01:11:45','123'); +INSERT INTO `sys_dictionary_type` VALUES (1,'设备类型','DEV_MODEL',_binary '\0','2020-09-18 02:22:32','system','2020-09-18 02:22:32','system'),(2,'生产厂家','MNF',_binary '\0','2020-09-18 02:22:32','system','2020-09-18 02:22:32','system'),(3,'可用状态','USE_STAT',_binary '\0','2020-09-18 02:22:32','system','2020-11-12 01:38:24','system'),(4,'在线状态','ONLINE_STAT',_binary '\0','2020-09-18 02:22:33','system','2020-09-18 02:22:33','system'),(5,'无人机型号','PLANE_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(6,'无人机形态','PLANE_SHAPE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(7,'无人机尺度','PLANE_SIZE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(8,'材料','PLANE_MAT',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(9,'外部接口','PLANE_INF',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(10,'摄像头型号','LOAD_CAM_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(11,'曝光模式','LOAD_CAM_EXP_MODE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(12,'工作模式','LOAD_CAM_WORK_MODE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(13,'白平衡','LOAD_CAM_BALANCE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(14,'图像存储格式','LOAD_CAM_IMG_FMT',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(15,'图像尺寸','LOAD_CAM_IMG_SIZE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(16,'拍照模式','LOAD_CAM_CAM_MODE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(17,'快门速度','LOAD_CAM_SHUT_SPEED',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(18,'照片ISO','LOAD_CAM_IMG_ISO',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(19,'视频存储格式','LOAD_CAM_VIDEO_FMT',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(20,'视频分辨率','LOAD_CAM_VIDEO_DIS',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(21,'视频ISO','LOAD_CAM_VIDEO_ISO',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(22,'喊话器型号','LOAD_SPK_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(23,'机库型号','LOAD_HNG_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(24,'机库类型','HNG_TYPE',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(25,'壳体保护等级','PROT_LEVEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(26,'设备动作匹配','DEV_ACTION_MODEL',_binary '\0','2020-09-18 02:22:34','system','2020-09-18 02:22:34','system'),(27,'长度限制','LEN',_binary '\0','2020-09-18 02:22:35','system','2020-09-18 02:22:35','system'),(28,'视频线路','VIDEO_LINE',_binary '\0','2020-09-18 02:22:35','system','2020-09-18 02:22:35','system'),(29,'审核状态','APPR_STAT',_binary '\0','2020-10-10 09:26:42','system','2020-10-10 09:26:42','system'),(30,'空域类型','AREA_TYPE',_binary '\0','2020-10-10 09:26:42','system','2020-10-10 09:26:42','system'),(31,'飞行任务','FLY_TASK',_binary '\0','2020-10-10 09:26:42','system','2020-10-10 09:26:42','system'),(32,'test2','test',_binary '','2021-04-21 03:20:57','1','2021-04-21 03:21:35','1'),(33,'相机快门','CAMERA_SHUTTER',_binary '\0','2020-10-12 01:29:11','system','2020-10-12 01:29:11','system'),(34,'相机光圈','CAMERA_APERTURE',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(35,'相机曝光','CAMERA_EV',_binary '\0','2020-10-12 01:29:13','system','2020-10-12 01:29:13','system'),(36,'拍照模式','CAMERA_PHOTO_MODE',_binary '\0','2020-10-12 01:29:14','system','2020-10-12 01:29:14','system'),(37,'相机曝光模式','CAMERA_EXPOSURE_MODE',_binary '\0','2020-10-12 01:57:19','1',NULL,NULL),(38,'相机ISO','CAMERA_ISO',_binary '\0','2020-10-12 02:00:47','1',NULL,NULL),(39,'适配厂家','ADAPT_MNF',_binary '\0','2020-11-06 01:17:17','1',NULL,NULL),(40,'自动化测试2','AUTO_TEST',_binary '','2024-11-14 01:08:43','58582660930338816','2024-11-14 01:08:49','58582660930338816'),(41,'字典自动化','auto_test',_binary '','2024-11-14 01:08:43','58582660930338816','2024-11-14 01:08:43','58582660930338816'),(42,'自动化测试2','AUTO_TEST3',_binary '','2020-11-18 02:28:01','1','2020-11-18 02:28:09','1'),(43,'自动化测试1','auto_test3',_binary '','2020-11-18 02:28:01','1','2020-11-18 02:28:09','1'),(44,'自动化测试','AUTO_TEST2',_binary '','2024-11-05 08:00:23','58582660930338816','2024-11-05 08:00:23','58582660930338816'),(45,'素材仓库','MWS',_binary '\0','2020-12-08 11:43:15','1','2021-03-05 09:18:18',NULL),(46,'应用类型','APP_TYPE',_binary '\0','2020-12-09 07:19:24','1',NULL,NULL),(47,'AI視頻流','AI_VIDEO',_binary '\0','2021-02-03 07:34:05','1',NULL,NULL),(48,'平台类型','PLATFORM_TYPE',_binary '\0','2021-03-12 05:46:25','1',NULL,NULL),(49,'问题反馈类型','FEEDBACK_TYPE',_binary '\0','2021-03-12 05:46:56','1',NULL,NULL),(50,'123','213',_binary '','2021-03-12 07:14:57','70213995537104896','2021-03-12 07:15:13','70213995537104896'),(51,'配额管理','QUOTA_TYPE',_binary '\0','2021-03-19 07:05:52','1',NULL,NULL),(52,'农机监视公司','NJ_COMPANY',_binary '\0','2021-03-19 07:06:15','1',NULL,NULL),(53,'场景类型','SCENCE_TYPE',_binary '\0','2021-03-19 07:06:37','1',NULL,NULL),(54,'农机视频','NJ_VIDEO',_binary '\0','2021-03-19 07:19:20','1',NULL,NULL),(55,'作业管理','MISSION_MANAGEMENT',_binary '\0','2021-03-31 09:20:59','89730635001757696',NULL,NULL),(56,'tt111','ss',_binary '','2021-04-01 01:25:54','1','2021-04-01 01:26:40','1'),(57,'演示使用飞机状态','DEMO_STATUS',_binary '\0','2021-04-07 08:14:58','123',NULL,NULL),(58,'test','testt',_binary '','2021-05-26 05:50:57','292','2021-05-26 05:51:54','292'),(59,'设备类型与哈勃匹配','DEV_MODEL_HUBBLE',_binary '\0','2021-06-02 07:11:42','123',NULL,NULL),(60,'接口类型','INTERFACE_TYPE',_binary '\0','2021-06-11 06:26:12','1',NULL,NULL),(61,'开放平台额度限制类型','OPEN_LIMIT_TYPE',_binary '\0','2021-06-11 06:26:40','1',NULL,NULL),(62,'接口分组','INTERFACE_GROUP',_binary '\0','2021-06-11 06:27:07','1',NULL,NULL),(63,'视频流','VIDEO_FLOWING]',_binary '\0','2021-07-28 01:59:44','1',NULL,NULL),(64,'雷达监测显示公司','DETECTION_COMPANY',_binary '\0','2021-09-16 05:55:02','1',NULL,NULL),(65,'开放平台示例语言','OPEN_API_SAMPLE_LANGUAGE',_binary '\0','2021-10-18 08:30:25','1',NULL,NULL),(66,'和对讲账户','POC_USER',_binary '\0','2021-11-16 07:21:17','175627050911006720',NULL,NULL),(67,'车务通','CHEWUTONG_COMPANY',_binary '\0','2021-11-17 08:48:15','175627050911006720',NULL,NULL),(68,'消防出警数据隔离','XF_COMPANY',_binary '\0','2021-12-07 08:05:34','175627050911006720',NULL,NULL),(69,'自贡ID','UASID_ZIGONG',_binary '\0','2021-12-15 05:33:47','175627050911006720','2021-12-15 05:33:31','175627050911006720'),(70,'自贡IP','IP_ZIGONG',_binary '\0','2021-12-14 09:28:06','175627050911006720',NULL,NULL),(71,'杆塔缺陷类别','TOWER_DEFECT_CATEGORY',_binary '\0','2022-01-18 11:27:41','1',NULL,NULL),(72,'监控指标','ALARM_INDEX',_binary '\0','2022-01-19 01:13:53','1',NULL,NULL),(73,'通知方式','NOTICE_WAY',_binary '\0','2022-01-19 01:14:22','1',NULL,NULL),(74,'告警等级','ALARM_LEVEL',_binary '\0','2022-01-19 01:14:49','1',NULL,NULL),(75,'告警触发条件','ALARM_TRIGGER',_binary '\0','2022-01-19 01:15:16','1',NULL,NULL),(76,'处理结果','DEAL_RESULT',_binary '\0','2022-01-19 01:15:47','1',NULL,NULL),(77,'空域触发条件','AREA_ALARM_TRIGGER',_binary '\0','2022-01-19 01:16:11','1',NULL,NULL),(78,'告警触发单位','TRIGGER_UNIT',_binary '\0','2022-01-19 01:16:35','1',NULL,NULL),(79,'无人机级别','PLANE_LEVEL',_binary '\0','2022-01-20 01:16:26','123',NULL,NULL),(80,'证件类型','IDENTITY_TYPE',_binary '\0','2022-01-20 01:16:46','123',NULL,NULL),(81,'报批单位','AIRSPACE_UNIT',_binary '\0','2022-01-20 01:17:02','123',NULL,NULL),(82,'飞行执照类型','FLIGHT_TYPE',_binary '\0','2022-01-20 01:17:28','123',NULL,NULL),(83,'空域终审配置','PROCEDURE_TYPE',_binary '\0','2022-01-20 01:17:45','123',NULL,NULL),(84,'真机标识','REAL_STAT',_binary '\0','2022-03-11 06:08:53','123',NULL,NULL),(85,'气体检测仪','LOAD_GAS_MODEL',_binary '\0','2022-03-11 06:09:42','123',NULL,NULL),(86,'存储状态','SAVE_STAT',_binary '\0','2022-03-11 06:13:42','123',NULL,NULL),(87,'脱敏规则','BLUR_RULE',_binary '\0','2022-03-30 06:05:45','1',NULL,NULL),(88,'喷洒水泵类型','SPARY',_binary '\0','2022-05-06 08:56:26','188243415207510016','2022-05-06 08:56:26','188243415207510016'),(89,'照片类别','PICTURE_LABELS',_binary '\0','2022-06-08 06:24:53','123','2022-06-08 06:24:53','123'),(90,'所属任务类别','TASK_TYPE',_binary '\0','2022-06-08 06:25:24','123','2022-06-08 06:25:24','123'),(91,'截图气体分类','GAS_LABELS',_binary '\0','2022-06-22 07:59:36','1','2022-06-22 07:59:36','1'),(92,'飞手违规处罚','PILOT_VIOLATION_PENALTY',_binary '\0','2022-07-08 06:48:49','1','2022-07-08 06:48:49','1'),(93,'飞手违规类型','PILOT_VIOLATION_TYPE',_binary '\0','2022-07-08 06:49:10','1','2022-07-08 06:49:10','1'),(94,'飞手合格证等级','PILOT_CERTIFICATE_LEVEL',_binary '\0','2022-07-08 06:49:31','1','2022-07-08 06:49:31','1'),(95,'权限组模板范围','GROUP_TEMPLATE_SCOPE',_binary '\0','2022-07-26 06:29:33','1','2022-07-26 06:29:33','1'),(96,'监管C端用户认证状态','SUAV_USER_CERTIFICATION_STATUS',_binary '\0','2022-09-20 08:29:17','1','2022-09-20 08:29:17','1'),(97,'监管C端用户状态','SUAV_USER_STATUS',_binary '\0','2022-09-20 08:29:21','1','2022-09-20 08:29:21','1'),(98,'运维班组','MAINTENANCE_TEAM',_binary '\0','2022-09-22 06:45:08','1','2022-09-22 06:45:08','1'),(99,'杆塔类别','TOWER_CATEGORY',_binary '\0','2022-09-22 06:47:14','1','2022-09-22 06:47:14','1'),(100,'来源名','scrName',_binary '\0','2022-10-12 02:17:12','1','2022-10-12 02:17:12','1'),(101,'湘钢定制化报告发送','CUSTOMIZE_MISSION_REPORT_ADDRESS',_binary '\0','2022-11-29 01:13:03','1','2022-11-29 01:13:03','1'),(102,'飞手证状态','PILOT_STATE',_binary '\0','2023-01-16 03:04:35','1','2023-01-16 03:04:35','1'),(103,'文旅景区客流MAP','SCENARIOMAP',_binary '\0','2023-04-24 08:09:10','1','2023-04-24 08:09:10','1'),(104,'IT公司热力图景区codeMAP','HOUSEAREA',_binary '\0','2023-04-24 08:37:34','1','2023-09-22 06:53:27','89730635001757696'),(105,'加密对象','CIPHER_OBJECT',_binary '\0','2023-05-18 10:54:43','1','2023-05-18 10:54:43','1'),(106,'行业标签库','DATA_CATEGORY',_binary '\0','2023-10-07 06:43:58','416525856201375744','2023-10-16 01:03:08','416525856201375744'),(107,'基站','LOAD_BTS_MODEL',_binary '\0','2023-10-11 06:11:38','123','2023-10-11 06:11:38','123'),(108,'基站类型','BTS_TYPE',_binary '\0','2023-10-11 06:12:07','123','2023-10-11 06:12:07','123'),(109,'网络制式','RADIO_TYPE',_binary '\0','2023-10-11 06:12:29','123','2023-10-11 06:12:29','123'),(110,'探测公司','DETECTION_ORG',_binary '\0','2023-10-12 09:04:45','1','2023-10-12 09:04:45','1'),(111,'场景标签库','STYLE_LABLE',_binary '\0','2023-10-16 01:03:44','416525856201375744','2023-10-16 01:03:44','416525856201375744'),(112,'农业器具','LOAD_AGR_MODEL',_binary '\0','2023-11-29 07:28:15','89730635001757696','2023-11-29 07:28:15','89730635001757696'),(113,'多链路冗余','MPROTECT_STAT',_binary '\0','2024-02-29 06:43:38','173818970422378496','2024-02-29 06:43:38','173818970422378496'),(114,'接口性能测试更新','autoTestPerformance',_binary '','2024-03-20 07:44:05','58582660930338816','2024-03-20 07:44:07','58582660930338816'),(115,'解决方案类型','SOLUTION_TYPE',_binary '\0','2024-04-28 06:19:33','89730635001757696','2024-04-28 06:19:33','89730635001757696'),(116,'设备公司','DEV_COMPANY',_binary '\0','2024-08-01 01:49:47','515544718477099008','2024-08-01 01:49:47','515544718477099008'),(117,'警情分局映射','POLICE_CASE_INFO',_binary '\0','2024-08-07 06:07:32','1','2024-08-07 06:07:32','1'),(118,'镜头视场角','CAMERA_FOV',_binary '\0','2024-08-15 08:07:20','89730635001757696','2024-08-15 08:07:20','89730635001757696'),(119,'安全告警类型','SEC_TYPE',_binary '\0','2024-10-11 01:09:45','123','2024-10-11 01:09:45','123'),(120,'告警状态','ALARM_STATE',_binary '\0','2024-10-11 01:10:23','123','2024-10-11 01:10:23','123'),(121,'处置情况','CMD_STATE',_binary '\0','2024-10-11 01:10:53','123','2024-10-11 01:10:53','123'),(122,'告警处理结果','HANDLE_STATE',_binary '\0','2024-10-11 01:11:18','123','2024-10-11 01:11:18','123'),(123,'告警对象','ALARM_OBJECT',_binary '\0','2024-10-11 01:11:45','123','2024-10-11 01:11:45','123'),(124,'临时添加','add',_binary '','2024-11-04 07:01:46','567350297367937024','2024-11-04 07:23:48','567350297367937024'),(125,'123','123',_binary '\0','2024-11-05 08:05:17','173818970422378496','2024-11-05 08:05:17','173818970422378496'),(126,'abc','abc',_binary '','2024-11-05 03:00:47','567350297367937024','2024-11-05 03:03:22','567350297367937024'),(127,'abd','abd',_binary '','2024-11-05 02:52:32','567350297367937024','2024-11-05 02:53:03','567350297367937024'),(128,'临时创建','linshichuangjian',_binary '\0','2024-11-05 03:20:34','567350297367937024','2024-11-05 03:20:34','567350297367937024'),(129,'234','234',_binary '','2024-11-05 03:26:26','567350297367937024','2024-11-05 06:20:48','567350297367937024'),(130,'233','233',_binary '\0','2024-11-14 02:30:10','567350297367937024','2024-11-14 02:30:10','567350297367937024'),(131,'445','445',_binary '','2024-11-14 01:59:47','567350297367937024','2024-11-14 02:06:23','567350297367937024'),(132,'1233','1233',_binary '\0','2024-11-14 02:34:22','567350297367937024','2024-11-14 02:34:22','567350297367937024'),(133,'2233','2233',_binary '\0','2024-11-14 02:37:08','567350297367937024','2024-11-14 02:37:08','567350297367937024'); /*!40000 ALTER TABLE `sys_dictionary_type` ENABLE KEYS */; UNLOCK TABLES; @@ -82,7 +82,7 @@ UNLOCK TABLES; LOCK TABLES `uav_dev_action_match` WRITE; /*!40000 ALTER TABLE `uav_dev_action_match` DISABLE KEYS */; -INSERT INTO `uav_dev_action_match` VALUES (1,'LOAD_CAM_MODEL','xh001','towerInspectionQJ;electricInspection/lineName;electricInspection/voltage;electricInspection/towerCode;electricInspection/sequenceNum;electricInspection/phase;electricInspection/towerSide;electricInspection/partLabel;electricInspection/relativePosition;ZOOM/zoom;temperPhoto/temperPhotoDesc;photo;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc',1,1,'1','2022-06-08 08:07:08','58582660930338816','2023-04-26 08:11:07'),(2,'LOAD_CAM_MODEL','xh002','zoom;temperPhoto/temperPhotoDesc;photo/picDesc;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;startRecord/videoResolution;startRecord/videoFormat;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'1','2021-03-19 06:49:40','1','2021-03-31 10:08:22'),(3,'LOAD_HNG_MODEL','jkxh001','hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw;stopRecord',0,0,'1','2020-12-15 07:08:56','1','2020-12-15 07:08:56'),(4,'LOAD_SPK_MODEL','AUTOTEST_SPK','actio004/action014',1,1,'1','2020-11-11 09:23:16','1','2020-11-11 09:23:19'),(5,'LOAD_CAM_MODEL','xh011','action006/action008;action005/action007;actio004/action014;actio004/action013;actio004/action012;action003;action002/action011;action002/action010;action001/action009',1,0,'1','2020-11-16 01:51:10','1','2020-11-16 01:51:10'),(6,'LOAD_CAM_MODEL','z5','uavYaw/yaw;cameraPanControl/cameraYaw;cameraPanControl/cameraPitch;cameraPanControl/cameraRoll;startRecord/videoFormat;startRecord/videoResolution;photo/picFormat;hover/hoverTime;stopRecord',0,0,'1','2020-11-26 08:43:18','1','2020-11-26 08:38:30'),(22,'LOAD_SPK_MODEL','AutoTest_SPK','startRecord/videoResolution',1,1,'1','2020-12-28 07:48:55','1','2020-12-28 07:48:59'),(23,'LOAD_CAM_MODEL','xh005','hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw;stopRecord',0,0,'1','2020-12-28 09:13:42','1','2020-12-28 09:13:42'),(24,'LOAD_CAM_MODEL','xh003','zoom;hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraPitch;uavYaw/yaw;stopRecord',0,0,'1','2020-12-28 09:15:01','1','2021-03-11 03:13:58'),(25,'LOAD_HNG_MODEL','jkxh012','hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw',1,1,'1','2021-02-18 09:05:36','1','2021-02-18 09:06:12'),(26,'LOAD_CAM_MODEL','xh100','zoom;hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw;stopRecord',1,1,'70213995537104896','2021-03-12 03:17:37','70213995537104896','2021-03-12 07:55:46'),(27,'LOAD_CAM_MODEL','xh009','focus;ZOOM/zoom;temperPhoto/temperPhotoDesc;photo/picDesc;photo/picFormat;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;startRecord/videoResolution;startRecord/videoFormat;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'1','2023-06-28 02:16:53','1','2023-06-28 02:16:52'),(28,'PLANE_MODEL','wrjxh052','towerInspectionQJ;electricInspection/lineName;electricInspection/voltage;electricInspection/towerCode;electricInspection/sequenceNum;electricInspection/phase;electricInspection/towerSide;electricInspection/partLabel;electricInspection/relativePosition;ZOOM/zoom;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'89730635001757696','2021-06-02 01:18:58','1','2024-04-12 09:13:36'),(29,'LOAD_CAM_MODEL','xh006','zoom/ZOOMVALUE;temperPhoto/temperPhotoDesc;photo;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;startRecord;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',1,1,'1','2021-08-20 09:47:47','58582660930338816','2023-04-26 08:12:39'),(30,'PLANE_MODEL','AutoTest_data','startRecord/videoResolution;photo/picFormat;hover/hoverTime',1,1,'58582660930338816','2024-09-11 01:45:03','58582660930338816','2024-09-11 01:45:06'),(31,'PLANE_MODEL','wrjxh075','ZOOM/zoom;photo/picDesc;startRecord/videoResolution;startRecord/videoFormat;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'1','2024-03-19 03:40:30','1','2024-03-19 03:40:30'); +INSERT INTO `uav_dev_action_match` VALUES (1,'LOAD_CAM_MODEL','xh001','towerInspectionQJ;electricInspection/lineName;electricInspection/voltage;electricInspection/towerCode;electricInspection/sequenceNum;electricInspection/phase;electricInspection/towerSide;electricInspection/partLabel;electricInspection/relativePosition;ZOOM/zoom;temperPhoto/temperPhotoDesc;photo;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc',1,1,'1','2022-06-08 08:07:08','58582660930338816','2023-04-26 08:11:07'),(2,'LOAD_CAM_MODEL','xh002','zoom;temperPhoto/temperPhotoDesc;photo/picDesc;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;startRecord/videoResolution;startRecord/videoFormat;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'1','2021-03-19 06:49:40','1','2021-03-31 10:08:22'),(3,'LOAD_HNG_MODEL','jkxh001','hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw;stopRecord',0,0,'1','2020-12-15 07:08:56','1','2020-12-15 07:08:56'),(4,'LOAD_SPK_MODEL','AUTOTEST_SPK','actio004/action014',1,1,'1','2020-11-11 09:23:16','1','2020-11-11 09:23:19'),(5,'LOAD_CAM_MODEL','xh011','action006/action008;action005/action007;actio004/action014;actio004/action013;actio004/action012;action003;action002/action011;action002/action010;action001/action009',1,0,'1','2020-11-16 01:51:10','1','2020-11-16 01:51:10'),(6,'LOAD_CAM_MODEL','z5','uavYaw/yaw;cameraPanControl/cameraYaw;cameraPanControl/cameraPitch;cameraPanControl/cameraRoll;startRecord/videoFormat;startRecord/videoResolution;photo/picFormat;hover/hoverTime;stopRecord',0,0,'1','2020-11-26 08:43:18','1','2020-11-26 08:38:30'),(22,'LOAD_SPK_MODEL','AutoTest_SPK','startRecord/videoResolution',1,1,'1','2020-12-28 07:48:55','1','2020-12-28 07:48:59'),(23,'LOAD_CAM_MODEL','xh005','hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw;stopRecord',0,0,'1','2020-12-28 09:13:42','1','2020-12-28 09:13:42'),(24,'LOAD_CAM_MODEL','xh003','zoom;hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraPitch;uavYaw/yaw;stopRecord',0,0,'1','2020-12-28 09:15:01','1','2021-03-11 03:13:58'),(25,'LOAD_HNG_MODEL','jkxh012','hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw',1,1,'1','2021-02-18 09:05:36','1','2021-02-18 09:06:12'),(26,'LOAD_CAM_MODEL','xh100','zoom;hover/hoverTime;photo/picFormat;startRecord/videoResolution;startRecord/videoFormat;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw;stopRecord',1,1,'70213995537104896','2021-03-12 03:17:37','70213995537104896','2021-03-12 07:55:46'),(27,'LOAD_CAM_MODEL','xh009','focus;ZOOM/zoom;temperPhoto/temperPhotoDesc;photo/picDesc;photo/picFormat;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;startRecord/videoResolution;startRecord/videoFormat;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'1','2023-06-28 02:16:53','1','2023-06-28 02:16:52'),(28,'PLANE_MODEL','wrjxh052','towerInspectionQJ;electricInspection/lineName;electricInspection/voltage;electricInspection/towerCode;electricInspection/sequenceNum;electricInspection/phase;electricInspection/towerSide;electricInspection/partLabel;electricInspection/relativePosition;ZOOM/zoom;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'89730635001757696','2021-06-02 01:18:58','1','2024-04-12 09:13:36'),(29,'LOAD_CAM_MODEL','xh006','zoom/ZOOMVALUE;temperPhoto/temperPhotoDesc;photo;startMeasurement;stopMeasurement;temperatureDetect/maxWarning;temperatureDetect/minWarning;temperatureDetect/temperatureDetectDesc;startRecord;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',1,1,'1','2021-08-20 09:47:47','58582660930338816','2023-04-26 08:12:39'),(30,'PLANE_MODEL','AutoTest_data','startRecord/videoResolution;photo/picFormat;hover/hoverTime',1,1,'58582660930338816','2024-11-14 00:55:04','58582660930338816','2024-11-14 00:55:06'),(31,'PLANE_MODEL','wrjxh075','ZOOM/zoom;photo/picDesc;startRecord/videoResolution;startRecord/videoFormat;stopRecord;hover/hoverTime;cameraPanControl/cameraRoll;cameraPanControl/cameraPitch;cameraPanControl/cameraYaw;uavYaw/yaw',0,0,'1','2024-03-19 03:40:30','1','2024-03-19 03:40:30'),(32,'PLANE_MODEL','wrjxh085','electricInspection/lineName',1,1,'567350297367937024','2024-11-04 06:03:05','567350297367937024','2024-11-04 06:03:09'),(33,'PLANE_MODEL','wrjxh078','focus',0,0,'567350297367937024','2024-11-04 06:14:33','567350297367937024','2024-11-04 06:14:33'),(34,'LOAD_CAM_MODEL','xh038','focus',0,0,'567350297367937024','2024-11-04 06:14:46','567350297367937024','2024-11-04 06:14:46'); /*!40000 ALTER TABLE `uav_dev_action_match` ENABLE KEYS */; UNLOCK TABLES; @@ -92,7 +92,7 @@ UNLOCK TABLES; LOCK TABLES `uav_dev_type_match` WRITE; /*!40000 ALTER TABLE `uav_dev_type_match` DISABLE KEYS */; -INSERT INTO `uav_dev_type_match` VALUES (1,'wrjxh006','jkxh001;jkxh002;jkxh003;jkxh012;jkxh011;jkxh010','LOAD_AGR_MODEL/pensaqi1;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001;LOAD_SPK_MODEL/hhqxh003;LOAD_SPK_MODEL/hhqxh002;LOAD_SPK_MODEL/hhqxh001;LOAD_CAM_MODEL/XZ001;LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh014;LOAD_CAM_MODEL/xh010;LOAD_CAM_MODEL/xh006;LOAD_CAM_MODEL/xh002;LOAD_CAM_MODEL/xh001',0,0,'1','2020-09-18 03:28:55','1','2023-12-11 07:00:43'),(40,'AutoTest_data','AutoTest_Hangar','LOAD_SPK_MODEL/AutoTest_SPK;LOAD_CAM_MODEL/AutoTest_CAM',1,1,'58582660930338816','2024-09-11 01:44:59','58582660930338816','2024-09-11 01:45:01'),(41,'AutoTest_hanger','AutoTest_Hangar','',1,1,'1','2020-12-28 08:00:12','1','2020-12-28 08:00:26'),(42,'wrjxh047','','LOAD_CAM_MODEL/xh008',0,0,'1','2021-01-04 06:31:53','1','2021-01-04 06:31:53'),(43,'wrjxh049','','LOAD_GAS_MODEL/qtjc001;LOAD_CAM_MODEL/xh011',0,0,'1','2021-01-06 03:02:15','188243415207510016','2022-05-06 08:58:50'),(44,'wrjxh052','jkxh011;jkxh001;jkxh015;jkxh016','LOAD_GAS_MODEL/qtjc002;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001;LOAD_SPK_MODEL/hhqxh003;LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh009;LOAD_CAM_MODEL/xh003;LOAD_CAM_MODEL/xh001',0,0,'1','2021-01-15 11:02:06','1','2024-06-06 03:06:41'),(45,'wrjxh053','','LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/qtjc001;LOAD_CAM_MODEL/xh010',0,0,'1','2021-01-19 06:40:46','173818970422378496','2022-03-14 03:45:27'),(46,'wrjxh039','','LOAD_CAM_MODEL/xh013',0,0,'1','2021-02-03 03:39:05','1','2021-02-03 03:39:05'),(47,'wrjxh054','','LOAD_BTS_MODEL/bts1;LOAD_CAM_MODEL/xh023;LOAD_CAM_MODEL/xh014',0,0,'70179580555558912','2021-03-03 02:23:33','173818970422378496','2024-06-17 03:28:27'),(48,'wrjxh010','','LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh020;LOAD_CAM_MODEL/xh099',0,0,'1','2021-03-03 05:34:19','175627050911006720','2021-11-19 02:53:48'),(49,'wrjxh003','','LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001;LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh001',0,0,'175627050911006720','2021-12-13 07:26:56','1','2023-03-22 06:07:13'),(50,'wrjxh056','','LOAD_CAM_MODEL/xj015',0,0,'1','2021-05-20 02:56:15','1','2021-05-20 02:56:15'),(51,'wrjxh055','','LOAD_CAM_MODEL/xh016',0,0,'1','2021-07-08 01:27:08','1','2021-07-08 01:27:08'),(52,'wrjxh059','','LOAD_CAM_MODEL/xh018',0,0,'1','2021-09-23 02:29:34','1','2021-09-23 02:29:34'),(53,'wrjxh058','','LOAD_CAM_MODEL/xh018',0,0,'1','2021-09-23 02:29:41','1','2021-09-23 02:29:41'),(54,'wrjxh057','','LOAD_CAM_MODEL/xh017',0,0,'1','2021-09-23 02:29:51','1','2021-09-23 02:29:51'),(55,'wrjxh060','','LOAD_CAM_MODEL/xh021',0,0,'175627050911006720','2022-03-30 06:19:08','175627050911006720','2022-03-30 06:19:08'),(56,'wrjxh061','','LOAD_CAM_MODEL/xh022',0,0,'175627050911006720','2022-04-27 01:18:49','175627050911006720','2022-04-27 01:18:49'),(57,'Large_Drone','jkxh011','LOAD_BTS_MODEL/bts1;LOAD_GAS_MODEL/test-ltt-2;LOAD_SPK_MODEL/hhqxh003;LOAD_CAM_MODEL/xh021;LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh001',0,0,'1','2022-09-23 06:35:29','1','2024-01-08 07:19:45'),(58,'Medium_Drone','jkxh011','LOAD_BTS_MODEL/bts1;LOAD_CAM_MODEL/xh001',0,0,'1','2022-09-23 06:43:29','1','2024-01-08 07:19:29'),(59,'Tethered_Drone','jkxh011','LOAD_BTS_MODEL/bts1;LOAD_GAS_MODEL/test-ltt-1;LOAD_SPK_MODEL/hhqxh003;LOAD_CAM_MODEL/xh021;LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh001',0,0,'1','2022-09-23 06:40:14','1','2024-01-08 07:19:38'),(60,'wrjxh064','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_CAM_MODEL/xh025',0,0,'1','2022-12-09 02:47:20','1','2023-03-22 05:59:07'),(61,'wrjxh063','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_SPK_MODEL/hhqxh002;LOAD_SPK_MODEL/hhqxh001;LOAD_CAM_MODEL/xh024',1,1,'1','2023-07-05 03:21:47','58582660930338816','2023-09-27 06:46:42'),(62,'wrjxh065','','LOAD_CAM_MODEL/xh026',0,0,'175627050911006720','2023-02-08 15:06:18','175627050911006720','2023-02-08 15:06:18'),(63,'wrjxh066','','LOAD_CAM_MODEL/xh028',0,0,'175627050911006720','2023-02-08 15:06:23','175627050911006720','2023-02-08 15:06:23'),(64,'wrjxh067','','LOAD_CAM_MODEL/xh027',0,0,'175627050911006720','2023-02-08 15:06:29','175627050911006720','2023-02-08 15:06:29'),(65,'wrjxh062','','LOAD_BTS_MODEL/bts1;LOAD_CAM_MODEL/xh031;LOAD_CAM_MODEL/XZ001',0,0,'199120334480211968','2023-03-02 03:17:43','89730635001757696','2024-09-29 03:23:07'),(66,'wrjxh071','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-04-09 01:14:15','1','2024-04-09 01:14:15'),(67,'wrjxh072','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-04-09 01:14:08','1','2024-04-09 01:14:08'),(68,'wrjxh073','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-04-09 01:14:26','1','2024-04-09 01:14:25'),(69,'test','AutoTest_Hangar','LOAD_SPK_MODEL/AutoTest_SPK;LOAD_CAM_MODEL/AutoTest_CAM',1,1,'58582660930338816','2023-04-26 08:12:35','58582660930338816','2023-04-26 08:12:41'),(70,'AutoTest_load','','LOAD_SPK_MODEL/AutoTestLoad_SPK;LOAD_CAM_MODEL/AutoTest_loadCAM',1,1,'58582660930338816','2024-09-09 01:36:27','58582660930338816','2024-09-09 01:36:44'),(71,'AutoTest_uavHanger','AutoTest_Hangar','',1,1,'58582660930338816','2024-09-11 02:14:28','58582660930338816','2024-09-19 03:03:26'),(72,'wrjxh063','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh024;LOAD_CAM_MODEL/xh025',0,0,'173818970422378496','2023-09-28 01:44:28','1','2023-10-09 08:06:18'),(73,'wrjxh074','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_CAM_MODEL/xh024',1,1,'1','2023-10-09 08:06:37','58582660930338816','2024-04-03 01:22:56'),(74,'AutoTest_logUav','','LOAD_CAM_MODEL/AutoTest_logCAM',1,1,'58582660930338816','2024-09-12 01:18:19','58582660930338816','2024-09-12 01:18:48'),(75,'54hhh','','LOAD_BTS_MODEL/bts1;LOAD_AGR_MODEL/pensaqi1;LOAD_GAS_MODEL/qtjc002;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001',1,1,'173818970422378496','2024-01-30 07:02:23','58582660930338816','2024-04-02 02:03:23'),(76,'wrjxh001','','LOAD_BTS_MODEL/bts1;LOAD_AGR_MODEL/pensaqi1;LOAD_GAS_MODEL/qtjc002;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001',1,1,'173818970422378496','2024-01-30 07:07:23','58582660930338816','2024-04-02 01:35:22'),(77,'wrjxh051','','LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh006;LOAD_CAM_MODEL/xh005;LOAD_CAM_MODEL/xh004;LOAD_CAM_MODEL/xh001',1,1,'1','2024-03-04 07:08:24','58582660930338816','2024-03-29 01:14:22'),(78,'wrjxh051','','LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh006;LOAD_CAM_MODEL/xh005;LOAD_CAM_MODEL/xh002;LOAD_CAM_MODEL/xh001',1,1,'1','2024-03-04 07:07:47','1','2024-03-04 07:08:05'),(79,'wrjxh037','','LOAD_CAM_MODEL/xh035',1,1,'1','2024-03-11 07:56:08','58582660930338816','2024-03-21 01:44:20'),(80,'wrjxh075','jkxh013','LOAD_CAM_MODEL/xh031;LOAD_CAM_MODEL/xh030',0,0,'1','2024-06-06 07:32:08','1','2024-06-06 07:32:08'),(81,'AutoTest_data','AutoTest_Hangar','LOAD_SPK_MODEL/AutoTest_SPK;LOAD_CAM_MODEL/AutoTest_CAM',1,1,'58582660930338816','2024-04-22 01:34:51','58582660930338816','2024-04-22 01:34:52'),(82,'wrjxh016','','LOAD_CAM_MODEL/xh036',0,0,'1','2024-05-21 05:29:52','1','2024-05-21 05:29:52'),(83,'wrjxh002','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-06-06 07:32:22','1','2024-06-06 07:32:22'),(84,'wrjxh077','','LOAD_CAM_MODEL/xh038',0,0,'1','2024-07-25 01:42:45','1','2024-07-25 01:42:45'),(85,'wrjxh078','','LOAD_CAM_MODEL/xh038',0,0,'1','2024-07-25 01:46:23','1','2024-07-25 01:46:23'),(86,'wrjxh007','','LOAD_CAM_MODEL/xh099',0,0,'1','2024-09-02 01:16:09','1','2024-09-02 01:16:09'); +INSERT INTO `uav_dev_type_match` VALUES (1,'wrjxh006','jkxh001;jkxh002;jkxh003;jkxh012;jkxh011;jkxh010','LOAD_AGR_MODEL/pensaqi1;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001;LOAD_SPK_MODEL/hhqxh003;LOAD_SPK_MODEL/hhqxh002;LOAD_SPK_MODEL/hhqxh001;LOAD_CAM_MODEL/XZ001;LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh014;LOAD_CAM_MODEL/xh010;LOAD_CAM_MODEL/xh006;LOAD_CAM_MODEL/xh002;LOAD_CAM_MODEL/xh001',0,0,'1','2020-09-18 03:28:55','1','2023-12-11 07:00:43'),(40,'AutoTest_data','AutoTest_Hangar','LOAD_SPK_MODEL/AutoTest_SPK;LOAD_CAM_MODEL/AutoTest_CAM',1,1,'58582660930338816','2024-11-14 00:55:00','58582660930338816','2024-11-14 00:55:01'),(41,'AutoTest_hanger','AutoTest_Hangar','',1,1,'1','2020-12-28 08:00:12','1','2020-12-28 08:00:26'),(42,'wrjxh047','','LOAD_CAM_MODEL/xh008',0,0,'1','2021-01-04 06:31:53','1','2021-01-04 06:31:53'),(43,'wrjxh049','','LOAD_GAS_MODEL/qtjc001;LOAD_CAM_MODEL/xh011',0,0,'1','2021-01-06 03:02:15','188243415207510016','2022-05-06 08:58:50'),(44,'wrjxh052','jkxh011;jkxh001;jkxh015;jkxh016','LOAD_GAS_MODEL/qtjc002;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001;LOAD_SPK_MODEL/hhqxh003;LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh009;LOAD_CAM_MODEL/xh003;LOAD_CAM_MODEL/xh001',0,0,'1','2021-01-15 11:02:06','1','2024-06-06 03:06:41'),(45,'wrjxh053','','LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/qtjc001;LOAD_CAM_MODEL/xh010',0,0,'1','2021-01-19 06:40:46','173818970422378496','2022-03-14 03:45:27'),(46,'wrjxh039','','LOAD_CAM_MODEL/xh013',0,0,'1','2021-02-03 03:39:05','1','2021-02-03 03:39:05'),(47,'wrjxh054','','LOAD_BTS_MODEL/bts1;LOAD_CAM_MODEL/xh023;LOAD_CAM_MODEL/xh014',0,0,'70179580555558912','2021-03-03 02:23:33','173818970422378496','2024-06-17 03:28:27'),(48,'wrjxh010','','LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh020;LOAD_CAM_MODEL/xh099',0,0,'1','2021-03-03 05:34:19','175627050911006720','2021-11-19 02:53:48'),(49,'wrjxh003','','LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001;LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh001',0,0,'175627050911006720','2021-12-13 07:26:56','1','2023-03-22 06:07:13'),(50,'wrjxh056','','LOAD_CAM_MODEL/xj015',0,0,'1','2021-05-20 02:56:15','1','2021-05-20 02:56:15'),(51,'wrjxh055','','LOAD_CAM_MODEL/xh016',0,0,'1','2021-07-08 01:27:08','1','2021-07-08 01:27:08'),(52,'wrjxh059','','LOAD_CAM_MODEL/xh018',0,0,'1','2021-09-23 02:29:34','1','2021-09-23 02:29:34'),(53,'wrjxh058','','LOAD_CAM_MODEL/xh018',0,0,'1','2021-09-23 02:29:41','1','2021-09-23 02:29:41'),(54,'wrjxh057','','LOAD_CAM_MODEL/xh017',0,0,'1','2021-09-23 02:29:51','1','2021-09-23 02:29:51'),(55,'wrjxh060','','LOAD_CAM_MODEL/xh021',0,0,'175627050911006720','2022-03-30 06:19:08','175627050911006720','2022-03-30 06:19:08'),(56,'wrjxh061','','LOAD_CAM_MODEL/xh022',0,0,'175627050911006720','2022-04-27 01:18:49','175627050911006720','2022-04-27 01:18:49'),(57,'Large_Drone','jkxh011','LOAD_BTS_MODEL/bts1;LOAD_GAS_MODEL/test-ltt-2;LOAD_SPK_MODEL/hhqxh003;LOAD_CAM_MODEL/xh021;LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh001',0,0,'1','2022-09-23 06:35:29','1','2024-01-08 07:19:45'),(58,'Medium_Drone','jkxh011','LOAD_BTS_MODEL/bts1;LOAD_CAM_MODEL/xh001',0,0,'1','2022-09-23 06:43:29','1','2024-01-08 07:19:29'),(59,'Tethered_Drone','jkxh011','LOAD_BTS_MODEL/bts1;LOAD_GAS_MODEL/test-ltt-1;LOAD_SPK_MODEL/hhqxh003;LOAD_CAM_MODEL/xh021;LOAD_CAM_MODEL/gddc;LOAD_CAM_MODEL/xh001',0,0,'1','2022-09-23 06:40:14','1','2024-01-08 07:19:38'),(60,'wrjxh064','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_CAM_MODEL/xh025',0,0,'1','2022-12-09 02:47:20','1','2023-03-22 05:59:07'),(61,'wrjxh063','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_SPK_MODEL/hhqxh002;LOAD_SPK_MODEL/hhqxh001;LOAD_CAM_MODEL/xh024',1,1,'1','2023-07-05 03:21:47','58582660930338816','2023-09-27 06:46:42'),(62,'wrjxh065','','LOAD_CAM_MODEL/xh026',0,0,'175627050911006720','2023-02-08 15:06:18','175627050911006720','2023-02-08 15:06:18'),(63,'wrjxh066','','LOAD_CAM_MODEL/xh028',0,0,'175627050911006720','2023-02-08 15:06:23','175627050911006720','2023-02-08 15:06:23'),(64,'wrjxh067','','LOAD_CAM_MODEL/xh027',0,0,'175627050911006720','2023-02-08 15:06:29','175627050911006720','2023-02-08 15:06:29'),(65,'wrjxh062','','LOAD_BTS_MODEL/bts1;LOAD_CAM_MODEL/xh031;LOAD_CAM_MODEL/XZ001',0,0,'199120334480211968','2023-03-02 03:17:43','89730635001757696','2024-09-29 03:23:07'),(66,'wrjxh071','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-04-09 01:14:15','1','2024-04-09 01:14:15'),(67,'wrjxh072','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-04-09 01:14:08','1','2024-04-09 01:14:08'),(68,'wrjxh073','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-04-09 01:14:26','1','2024-04-09 01:14:25'),(69,'test','jkxh016','LOAD_BTS_MODEL/bts1',1,1,'567350297367937024','2024-11-04 01:53:53','567350297367937024','2024-11-04 02:27:31'),(70,'AutoTest_load','','LOAD_SPK_MODEL/AutoTestLoad_SPK;LOAD_CAM_MODEL/AutoTest_loadCAM',1,1,'58582660930338816','2024-11-14 01:10:24','58582660930338816','2024-11-14 01:10:43'),(71,'AutoTest_uavHanger','AutoTest_Hangar','',1,1,'58582660930338816','2024-11-14 01:11:02','58582660930338816','2024-11-14 01:11:10'),(72,'wrjxh063','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh024;LOAD_CAM_MODEL/xh025',0,0,'173818970422378496','2023-09-28 01:44:28','1','2023-10-09 08:06:18'),(73,'wrjxh074','jkxh013','LOAD_SPK_MODEL/hhqxh004;LOAD_CAM_MODEL/xh024',1,1,'1','2023-10-09 08:06:37','58582660930338816','2024-04-03 01:22:56'),(74,'AutoTest_logUav','','LOAD_CAM_MODEL/AutoTest_logCAM',1,1,'58582660930338816','2024-11-14 01:19:52','58582660930338816','2024-11-14 01:20:16'),(75,'54hhh','','LOAD_BTS_MODEL/bts1;LOAD_AGR_MODEL/pensaqi1;LOAD_GAS_MODEL/qtjc002;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001',1,1,'173818970422378496','2024-01-30 07:02:23','58582660930338816','2024-04-02 02:03:23'),(76,'wrjxh001','','LOAD_BTS_MODEL/bts1;LOAD_AGR_MODEL/pensaqi1;LOAD_GAS_MODEL/qtjc002;LOAD_GAS_MODEL/test-ltt-1;LOAD_GAS_MODEL/test-ltt-2;LOAD_GAS_MODEL/test-ltt-3;LOAD_GAS_MODEL/qtjc001',1,1,'173818970422378496','2024-01-30 07:07:23','58582660930338816','2024-04-02 01:35:22'),(77,'wrjxh051','','LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh006;LOAD_CAM_MODEL/xh005;LOAD_CAM_MODEL/xh004;LOAD_CAM_MODEL/xh001',1,1,'1','2024-03-04 07:08:24','58582660930338816','2024-03-29 01:14:22'),(78,'wrjxh051','','LOAD_CAM_MODEL/xh030;LOAD_CAM_MODEL/xh006;LOAD_CAM_MODEL/xh005;LOAD_CAM_MODEL/xh002;LOAD_CAM_MODEL/xh001',1,1,'1','2024-03-04 07:07:47','1','2024-03-04 07:08:05'),(79,'wrjxh037','','LOAD_CAM_MODEL/xh035',1,1,'1','2024-03-11 07:56:08','58582660930338816','2024-03-21 01:44:20'),(80,'wrjxh075','jkxh013','LOAD_CAM_MODEL/xh031;LOAD_CAM_MODEL/xh030',0,0,'1','2024-06-06 07:32:08','1','2024-06-06 07:32:08'),(81,'AutoTest_data','AutoTest_Hangar','LOAD_SPK_MODEL/AutoTest_SPK;LOAD_CAM_MODEL/AutoTest_CAM',1,1,'58582660930338816','2024-04-22 01:34:51','58582660930338816','2024-04-22 01:34:52'),(82,'wrjxh016','','LOAD_CAM_MODEL/xh036',0,0,'1','2024-05-21 05:29:52','1','2024-05-21 05:29:52'),(83,'wrjxh002','','LOAD_CAM_MODEL/xh030',0,0,'1','2024-06-06 07:32:22','1','2024-06-06 07:32:22'),(84,'wrjxh077','','LOAD_CAM_MODEL/xh038',0,0,'1','2024-07-25 01:42:45','1','2024-07-25 01:42:45'),(85,'wrjxh078','','LOAD_CAM_MODEL/xh038',0,0,'1','2024-07-25 01:46:23','1','2024-07-25 01:46:23'),(86,'wrjxh007','','LOAD_CAM_MODEL/xh099',0,0,'1','2024-09-02 01:16:09','1','2024-09-02 01:16:09'),(87,'wrjxh085','','LOAD_CAM_MODEL/xh045',0,0,'1','2024-10-16 09:10:53','1','2024-10-16 09:10:53'),(88,'test-123','jkxh013','LOAD_BTS_MODEL/bts1',1,1,'567350297367937024','2024-11-05 06:44:08','567350297367937024','2024-11-05 06:44:27'),(89,'wrjxh089','','LOAD_CAM_MODEL/xh048',0,0,'1','2024-11-13 01:10:16','1','2024-11-13 01:10:16'),(90,'wrjxh088','','LOAD_CAM_MODEL/xh049',0,0,'1','2024-11-13 01:10:30','1','2024-11-13 01:31:13'); /*!40000 ALTER TABLE `uav_dev_type_match` ENABLE KEYS */; UNLOCK TABLES; @@ -102,7 +102,7 @@ UNLOCK TABLES; LOCK TABLES `uav_hangar_model` WRITE; /*!40000 ALTER TABLE `uav_hangar_model` DISABLE KEYS */; -INSERT INTO `uav_hangar_model` VALUES ('HNG00000001','sccj016','jkxh001','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'admin','2020-09-18 02:22:50','1','2021-02-07 02:38:23',NULL),('HNG00000002','sccj016','jkxh002','jklx002',3,6,5000,'-20','40',5000,200,240,3,'1','dj001',250,250,150,'2000','cl008;cl006',0,0,'admin','2020-09-18 02:22:50','admin','2020-09-18 02:22:50',NULL),('HNG00000003','sccj016','jkxh003','jklx003',5,6,5000,'-20','40',500,200,240,4,'0.2','dj001',155,130,52,'750','cl009;cl010',0,0,'admin','2020-09-18 02:22:50','admin','2020-09-18 02:22:50',NULL),('HNG00000004','sccj033','AutoTest_Hangar','jklx003',99999,17,9999,'-99','99',9999,200,220,9,'9.99','dj001',999,999,999,'3.25','',1,1,'58582660930338816','2024-09-11 02:14:28','58582660930338816','2024-09-19 03:03:20',''),('HNG00000005','sccj016','jkxh010','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'291','2021-02-01 09:00:25','1','2021-02-07 02:36:37',NULL),('HNG00000006','sccj016','jkxh012','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'291','2021-02-01 09:00:40','291','2021-02-01 09:05:39',NULL),('HNG00000007','sccj016','jkxh011','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'291','2021-02-01 09:01:06','1','2021-03-05 10:39:12',NULL),('HNG00000008','sccj001','jkxh013','jklx001',1,4,9999,NULL,NULL,500,NULL,NULL,NULL,NULL,'dj001',125,125,100,'110.0','cl002;cl001;cl010;cl008;',0,0,'1','2023-03-22 05:58:49','1','2023-03-22 05:58:49',NULL),('HNG00000009','sccj001','jkxh014','jklx003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1,1,'173818970422378496','2023-04-09 06:25:56','1','2023-06-29 07:50:58',NULL),('HNG00000193','sccj030','jkxh015','jklx001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0,0,'1','2024-02-26 02:47:58','1','2024-02-26 02:47:58',''),('HNG00000246','sccj031','jkxh016','jklx001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0,0,'1','2024-06-06 03:04:37','1','2024-06-06 03:04:37',''); +INSERT INTO `uav_hangar_model` VALUES ('HNG00000001','sccj016','jkxh001','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'admin','2020-09-18 02:22:50','1','2021-02-07 02:38:23',NULL),('HNG00000002','sccj016','jkxh002','jklx002',3,6,5000,'-20','40',5000,200,240,3,'1','dj001',250,250,150,'2000','cl008;cl006',0,0,'admin','2020-09-18 02:22:50','admin','2020-09-18 02:22:50',NULL),('HNG00000003','sccj016','jkxh003','jklx003',5,6,5000,'-20','40',500,200,240,4,'0.2','dj001',155,130,52,'750','cl009;cl010',0,0,'admin','2020-09-18 02:22:50','admin','2020-09-18 02:22:50',NULL),('HNG00000004','sccj038','AutoTest_Hangar','jklx003',99999,17,9999,'-99','99',9999,200,220,9,'9.99','dj001',999,999,999,'3.25','',1,1,'58582660930338816','2024-11-14 01:11:02','58582660930338816','2024-11-14 01:11:10',''),('HNG00000005','sccj016','jkxh010','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'291','2021-02-01 09:00:25','1','2021-02-07 02:36:37',NULL),('HNG00000006','sccj016','jkxh012','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'291','2021-02-01 09:00:40','291','2021-02-01 09:05:39',NULL),('HNG00000007','sccj016','jkxh011','jklx001',3,6,5000,'-20','50',1700,200,220,4,'0.1','dj001',155,155,155,'100.0','cl006;cl007;',0,0,'291','2021-02-01 09:01:06','1','2021-03-05 10:39:12',NULL),('HNG00000008','sccj001','jkxh013','jklx001',1,4,9999,NULL,NULL,500,NULL,NULL,NULL,NULL,'dj001',125,125,100,'110.0','cl002;cl001;cl010;cl008;',0,0,'1','2023-03-22 05:58:49','1','2023-03-22 05:58:49',NULL),('HNG00000009','sccj030','jkxh014','jklx002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1,1,'567350297367937024','2024-11-05 06:27:43','567350297367937024','2024-11-05 06:29:50',''),('HNG00000193','sccj030','jkxh015','jklx001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1,1,'1','2024-02-26 02:47:58','567350297367937024','2024-11-05 06:30:01',''),('HNG00000246','sccj031','jkxh016','jklx001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1,1,'1','2024-06-06 03:04:37','567350297367937024','2024-11-05 06:29:58',''),('HNG00000377','sccj031','jiku001','jklx002',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1,1,'567350297367937024','2024-11-05 06:27:33','567350297367937024','2024-11-05 06:29:56',''); /*!40000 ALTER TABLE `uav_hangar_model` ENABLE KEYS */; UNLOCK TABLES; @@ -112,7 +112,7 @@ UNLOCK TABLES; LOCK TABLES `uav_load_cam_model` WRITE; /*!40000 ALTER TABLE `uav_load_cam_model` DISABLE KEYS */; -INSERT INTO `uav_load_cam_model` VALUES ('CMD00000001','xh001','sccj001','bg001;bg002;bg003;bg004;','gz001;gz002;gz003;','bp001;bp002;bp003;bp004;bp005;','cc001;','','','','','sp001;sp002;','','','0.56',120,30,320,320,90,50,180,180,180,0,0,'admin','2020-09-18 02:22:43','1','2021-02-07 02:28:33',NULL,NULL),('CMD00000002','xh002','sccj001','','','','cc001;cc002;cc003;','','','','','sp002;','fb001;','','0.27',90,35,320,320,15,15,120,120,120,0,0,'admin','2020-09-18 02:22:43','1','2021-02-07 02:29:52',NULL,NULL),('CMD00000003','xh003','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:36',NULL,NULL),('CMD00000004','xh004','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:38',NULL,NULL),('CMD00000005','xh005','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:40',NULL,NULL),('CMD00000006','xh006','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:43',NULL,NULL),('CMD00000007','xh007','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:45',NULL,NULL),('CMD10000003','xh003','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000004','xh004','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000005','xh005','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000006','xh006','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000007','xh007','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000008','AutoTest_CAM','sccj033','bg004;','gz003;','bp005;','cc003;','tx002;','pz003;','km008;','','sp002;','fb001;','','3.14',0,180,360,0,0,360,180,360,0,1,1,'58582660930338816','2024-09-11 01:44:57','58582660930338816','2024-09-11 01:45:01','{}',''),('CMD10000009','xh008','sccj017','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-01-04 06:31:31','1','2021-01-04 06:31:31',NULL,NULL),('CMD10000010','xh011','sccj007','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-01-06 03:00:51','1','2021-01-06 03:00:51',NULL,NULL),('CMD10000011','xh010','sccj019','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-01-19 06:40:35','1','2021-01-19 06:40:35',NULL,NULL),('CMD10000012','xh013','sccj014','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-02-03 03:38:45','1','2021-02-03 03:38:45',NULL,NULL),('CMD10000013','z5','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-02-03 07:24:00','1','2021-02-07 02:25:52',NULL,NULL),('CMD10000014','xh014','sccj018','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-03-03 02:24:25','1','2021-03-03 02:24:25',NULL,NULL),('CMD10000015','xh099','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-03-03 05:34:03','1','2021-03-05 10:39:20',NULL,NULL),('CMD10000016','xh100','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'70213995537104896','2021-03-12 03:16:46','70213995537104896','2021-03-12 07:55:33',NULL,NULL),('CMD10000017','xh009','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'89730635001757696','2021-04-08 05:54:29','89730635001757696','2021-04-08 05:54:29',NULL,NULL),('CMD10000018','xj015','sccj020','bg001;bg002;bg003;bg004;','gz002;gz001;','','cc001;','','pz003;pz001;','','','','fb001;','',NULL,90,90,180,180,85,85,NULL,NULL,NULL,0,0,'1','2021-05-20 02:56:00','1','2021-05-20 02:56:00',NULL,NULL),('CMD10000019','xh016','sccj022','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-07-08 01:26:55','1','2021-07-08 01:26:55',NULL,NULL),('CMD10000020','xh017','sccj024','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-09-23 02:29:05','1','2021-09-23 02:29:05',NULL,NULL),('CMD10000021','xh018','sccj023','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-09-23 02:29:15','1','2021-09-23 02:29:15',NULL,NULL),('CMD10000022','xh020','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-09-23 02:29:24','1','2021-09-23 02:29:24',NULL,NULL),('CMD10000024','gddc','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2021-11-19 02:53:39','175627050911006720','2021-11-19 02:53:39',NULL,NULL),('CMD10000025','xh021','sccj025','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2022-03-30 06:17:57','175627050911006720','2022-03-30 06:17:57',NULL,NULL),('CMD10000026','xh022','sccj026','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2022-04-27 01:18:39','175627050911006720','2022-04-27 01:18:39',NULL,NULL),('CMD10000027','xh023','sccj018','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2022-11-21 01:26:25','1','2022-11-21 01:26:25','{}',NULL),('CMD10000028','xh025','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2022-12-09 02:47:06','1','2022-12-09 02:47:06','{}',NULL),('CMD10000029','xh024','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2022-12-09 02:47:11','1','2022-12-09 02:47:11','{}',NULL),('CMD10000030','xh027','sccj029','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2023-02-08 15:05:57','175627050911006720','2023-02-08 15:05:57','{}',NULL),('CMD10000031','xh028','sccj028','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2023-02-08 15:06:02','175627050911006720','2023-02-08 15:06:02','{}',NULL),('CMD10000032','xh026','sccj017','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2023-02-08 15:06:09','175627050911006720','2023-02-08 15:06:09','{}',NULL),('CMD10000033','XZ001','sccj027','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'199120334480211968','2023-03-02 03:17:28','199120334480211968','2023-03-02 03:17:28','{}',NULL),('CMD10000034','xh030','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2023-03-22 06:06:34','1','2023-03-22 06:06:34','{}',NULL),('CMD10000035','M30_dual_camera','sccj001','bg001;','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'173818970422378496','2023-04-09 06:25:41','58582660930338816','2024-03-20 06:18:42','{\"ev\": \"\"}',NULL),('CMD10000053','AutoTest_loadCAM','sccj033','bg004;','gz003;','bp005;','cc003;','tx002;','pz003;','km008;','','sp002;','fb001;','','30.0',0,180,360,0,0,360,180,360,360,1,1,'58582660930338816','2024-09-09 01:36:26','58582660930338816','2024-09-09 01:36:44','{}',''),('CMD10000180','AutoTest_logCAM','sccj033','bg004;','gz003;','bp005;','cc003;','tx002;','pz003;','km008;','','sp002;','fb001;','','30.0',0,180,360,0,0,360,180,360,360,1,1,'58582660930338816','2024-09-12 01:18:19','58582660930338816','2024-09-12 01:18:48','{}',''),('CMD10000262','xh035','sccj012','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-03-11 07:55:57','1','2024-03-11 07:55:57','{}',''),('CMD10000263','xh031','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-03-18 06:39:47','1','2024-03-18 06:39:47','{}',''),('CMD10000294','xh036','sccj004','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-05-21 05:29:36','1','2024-05-21 05:29:36','{}',''),('CMD10000324','xh038','sccj033','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-07-25 01:42:12','1','2024-07-25 01:42:12','{}',''); +INSERT INTO `uav_load_cam_model` VALUES ('CMD00000001','xh001','sccj001','bg001;bg002;bg003;bg004;','gz001;gz002;gz003;','bp001;bp002;bp003;bp004;bp005;','cc001;','','','','','sp001;sp002;','','','0.56',120,30,320,320,90,50,180,180,180,0,0,'admin','2020-09-18 02:22:43','1','2021-02-07 02:28:33',NULL,NULL),('CMD00000002','xh002','sccj001','','','','cc001;cc002;cc003;','','','','','sp002;','fb001;','','0.27',90,35,320,320,15,15,120,120,120,0,0,'admin','2020-09-18 02:22:43','1','2021-02-07 02:29:52',NULL,NULL),('CMD00000003','xh003','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:36',NULL,NULL),('CMD00000004','xh004','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:38',NULL,NULL),('CMD00000005','xh005','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:40',NULL,NULL),('CMD00000006','xh006','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:43',NULL,NULL),('CMD00000007','xh007','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'admin','2020-09-18 02:22:43','1','2020-12-16 09:08:45',NULL,NULL),('CMD10000003','xh003','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000004','xh004','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000005','xh005','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000006','xh006','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000007','xh007','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'admin','2020-09-18 02:22:43','admin','2020-09-18 02:22:43',NULL,NULL),('CMD10000008','AutoTest_CAM','sccj038','bg004;','gz003;','bp005;','cc003;','tx002;','pz003;','km008;','','sp002;','fb001;','','3.14',0,180,360,0,0,360,180,360,0,1,1,'58582660930338816','2024-11-14 00:54:58','58582660930338816','2024-11-14 00:55:02','{}',''),('CMD10000009','xh008','sccj017','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-01-04 06:31:31','1','2021-01-04 06:31:31',NULL,NULL),('CMD10000010','xh011','sccj007','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-01-06 03:00:51','1','2021-01-06 03:00:51',NULL,NULL),('CMD10000011','xh010','sccj019','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-01-19 06:40:35','1','2021-01-19 06:40:35',NULL,NULL),('CMD10000012','xh013','sccj014','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-02-03 03:38:45','1','2021-02-03 03:38:45',NULL,NULL),('CMD10000013','z5','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-02-03 07:24:00','1','2021-02-07 02:25:52',NULL,NULL),('CMD10000014','xh014','sccj018','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-03-03 02:24:25','1','2021-03-03 02:24:25',NULL,NULL),('CMD10000015','xh099','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-03-03 05:34:03','1','2021-03-05 10:39:20',NULL,NULL),('CMD10000016','xh100','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'70213995537104896','2021-03-12 03:16:46','70213995537104896','2021-03-12 07:55:33',NULL,NULL),('CMD10000017','xh009','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'89730635001757696','2021-04-08 05:54:29','89730635001757696','2021-04-08 05:54:29',NULL,NULL),('CMD10000018','xj015','sccj020','bg001;bg002;bg003;bg004;','gz002;gz001;','','cc001;','','pz003;pz001;','','','','fb001;','',NULL,90,90,180,180,85,85,NULL,NULL,NULL,0,0,'1','2021-05-20 02:56:00','1','2021-05-20 02:56:00',NULL,NULL),('CMD10000019','xh016','sccj022','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-07-08 01:26:55','1','2021-07-08 01:26:55',NULL,NULL),('CMD10000020','xh017','sccj024','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-09-23 02:29:05','1','2021-09-23 02:29:05',NULL,NULL),('CMD10000021','xh018','sccj023','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-09-23 02:29:15','1','2021-09-23 02:29:15',NULL,NULL),('CMD10000022','xh020','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2021-09-23 02:29:24','1','2021-09-23 02:29:24',NULL,NULL),('CMD10000024','gddc','sccj002','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2021-11-19 02:53:39','175627050911006720','2021-11-19 02:53:39',NULL,NULL),('CMD10000025','xh021','sccj025','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2022-03-30 06:17:57','175627050911006720','2022-03-30 06:17:57',NULL,NULL),('CMD10000026','xh022','sccj026','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2022-04-27 01:18:39','175627050911006720','2022-04-27 01:18:39',NULL,NULL),('CMD10000027','xh023','sccj018','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2022-11-21 01:26:25','1','2022-11-21 01:26:25','{}',NULL),('CMD10000028','xh025','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2022-12-09 02:47:06','1','2022-12-09 02:47:06','{}',NULL),('CMD10000029','xh024','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2022-12-09 02:47:11','1','2022-12-09 02:47:11','{}',NULL),('CMD10000030','xh027','sccj029','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2023-02-08 15:05:57','175627050911006720','2023-02-08 15:05:57','{}',NULL),('CMD10000031','xh028','sccj028','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2023-02-08 15:06:02','175627050911006720','2023-02-08 15:06:02','{}',NULL),('CMD10000032','xh026','sccj017','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'175627050911006720','2023-02-08 15:06:09','175627050911006720','2023-02-08 15:06:09','{}',NULL),('CMD10000033','XZ001','sccj027','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'199120334480211968','2023-03-02 03:17:28','199120334480211968','2023-03-02 03:17:28','{}',NULL),('CMD10000034','xh030','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2023-03-22 06:06:34','1','2023-03-22 06:06:34','{}',NULL),('CMD10000035','M30_dual_camera','sccj001','bg001;','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'173818970422378496','2023-04-09 06:25:41','58582660930338816','2024-03-20 06:18:42','{\"ev\": \"\"}',NULL),('CMD10000053','AutoTest_loadCAM','sccj038','bg004;','gz003;','bp005;','cc003;','tx002;','pz003;','km008;','','sp002;','fb001;','','30.0',0,180,360,0,0,360,180,360,360,1,1,'58582660930338816','2024-11-14 01:10:24','58582660930338816','2024-11-14 01:10:43','{}',''),('CMD10000180','AutoTest_logCAM','sccj038','bg004;','gz003;','bp005;','cc003;','tx002;','pz003;','km008;','','sp002;','fb001;','','30.0',0,180,360,0,0,360,180,360,360,1,1,'58582660930338816','2024-11-14 01:19:52','58582660930338816','2024-11-14 01:20:17','{}',''),('CMD10000262','xh035','sccj012','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-03-11 07:55:57','1','2024-03-11 07:55:57','{}',''),('CMD10000263','xh031','sccj001','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-03-18 06:39:47','1','2024-03-18 06:39:47','{}',''),('CMD10000294','xh036','sccj004','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-05-21 05:29:36','1','2024-05-21 05:29:36','{}',''),('CMD10000324','xh038','sccj033','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-07-25 01:42:12','1','2024-07-25 01:42:12','{}',''),('CMD10000457','xh045','sccj006','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-10-16 09:09:30','1','2024-10-16 09:09:30','{}',''),('CMD10000521','xh048','sccj038','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-11-13 01:09:36','1','2024-11-13 01:09:36','{}',''),('CMD10000522','xh049','sccj036','','','','','','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2024-11-13 01:09:46','1','2024-11-13 01:09:46','{}',''); /*!40000 ALTER TABLE `uav_load_cam_model` ENABLE KEYS */; UNLOCK TABLES; @@ -122,7 +122,7 @@ UNLOCK TABLES; LOCK TABLES `uav_load_spk_model` WRITE; /*!40000 ALTER TABLE `uav_load_spk_model` DISABLE KEYS */; -INSERT INTO `uav_load_spk_model` VALUES ('SMD00000001','hhqxh001','sccj001',150,100,'0.4','-20','40',30,12,24,0,0,'admin','2020-09-18 02:23:10','1','2021-03-05 10:39:15',NULL),('SMD00000002','hhqxh002','sccj001',300,100,'0.68','-20','40',100,12,24,0,0,'admin','2020-09-18 02:23:10','1','2021-02-07 02:32:01',NULL),('SMD00000003','AutoTest_SPK','sccj033',999,150,'3.14','-30','40',88,200,220,1,1,'58582660930338816','2024-09-11 01:44:58','58582660930338816','2024-09-11 01:45:01',''),('SMD00000004','hhqxh003','sccj021',500,130,'0.55','-20','40',25,5,12,0,0,'1','2021-06-07 07:37:21','1','2021-06-07 07:41:01',NULL),('SMD00000005','hhqxh004','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2023-02-13 01:31:33','1','2023-02-13 01:31:33',NULL),('SMD00000081','AutoTestLoad_SPK','sccj033',666,150,'3.14','-99','99',88,4,6,1,1,'58582660930338816','2024-09-09 01:36:26','58582660930338816','2024-09-09 01:36:44',''); +INSERT INTO `uav_load_spk_model` VALUES ('SMD00000001','hhqxh001','sccj001',150,100,'0.4','-20','40',30,12,24,0,0,'admin','2020-09-18 02:23:10','1','2021-03-05 10:39:15',NULL),('SMD00000002','hhqxh002','sccj001',300,100,'0.68','-20','40',100,12,24,0,0,'admin','2020-09-18 02:23:10','1','2021-02-07 02:32:01',NULL),('SMD00000003','AutoTest_SPK','sccj038',999,150,'3.14','-30','40',88,200,220,1,1,'58582660930338816','2024-11-14 00:54:58','58582660930338816','2024-11-14 00:55:01',''),('SMD00000004','hhqxh003','sccj021',500,130,'0.55','-20','40',25,5,12,0,0,'1','2021-06-07 07:37:21','1','2021-06-07 07:41:01',NULL),('SMD00000005','hhqxh004','sccj001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'1','2023-02-13 01:31:33','1','2023-02-13 01:31:33',NULL),('SMD00000081','AutoTestLoad_SPK','sccj038',666,150,'3.14','-99','99',88,4,6,1,1,'58582660930338816','2024-11-14 01:10:24','58582660930338816','2024-11-14 01:10:43',''); /*!40000 ALTER TABLE `uav_load_spk_model` ENABLE KEYS */; UNLOCK TABLES; @@ -132,7 +132,7 @@ UNLOCK TABLES; LOCK TABLES `uav_plane_model` WRITE; /*!40000 ALTER TABLE `uav_plane_model` DISABLE KEYS */; -INSERT INTO `uav_plane_model` VALUES ('UMD00000001','wrjxh001','sccj030','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2024-03-20 08:34:02','58582660930338816','2024-03-20 09:04:15',''),('UMD00000002','wrjxh002','sccj001','xt001','wrjcd001',14,500,30,5,'0','40','','6000',NULL,'',4,350,'1.39','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000003','wrjxh003','sccj001','xt001','wrjcd001',14,500,31,5,'-10','40','','6000',29,'',4,354,'0.91','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000004','wrjxh004','sccj001','xt001','wrjcd001',14,500,31,5,'-10','40','','6000',29,'',4,355,'0.91','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000005','wrjxh005','sccj001','xt001','wrjcd001',16,500,27,5,'0','40','','5000',24,'',4,335,'0.73','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000006','wrjxh006','sccj001','xt001','wrjcd001',18,3000,55,7,'-20','50','2.7','3000',NULL,'',4,895,'6.3','wbjk001;wbjk002;wbjk003','0.23',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000007','wrjxh007','sccj002','xt002','wrjcd002',28,4500,480,7,'','','29','3800',NULL,'',NULL,NULL,'76','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000008','wrjxh008','sccj002','xt002','wrjcd001',18,6500,60,6,'-40','55','0.8','4800',NULL,'',NULL,NULL,'6','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000009','wrjxh009','sccj002','xt002','wrjcd002',28,4500,360,7,'-30','50','6','3880',NULL,'',NULL,NULL,'28','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000010','wrjxh010','sccj002','xt002','wrjcd002',18,6500,160,6,'-30','50','2','4500',NULL,'',NULL,NULL,'13','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000011','wrjxh011','sccj002','xt003','wrjcd002',28,4500,180,7,'-30','50','4','3500',NULL,'',4,NULL,'20','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000012','wrjxh012','sccj002','xt002','wrjcd002',20,4000,90,6,'-30','50','2','3500',NULL,'',NULL,NULL,'10','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000013','wrjxh013','sccj002','xt002','wrjcd002',28,7000,360,7,'-30','50','25','4500',NULL,'',NULL,NULL,'32','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000014','wrjxh014','sccj003','xt001','wrjcd001',20,5000,25,5,'-30','50','0.23','3000',25,'cl001;',4,350,'1.15','wbjk001;','1.0',0,0,'admin','2020-09-18 02:22:58','1','2020-11-01 15:35:33',NULL),('UMD00000015','wrjxh015','sccj004','xt001','wrjcd001',35,5000,150,6,'-20','60','2','',NULL,'cl001;cl002',NULL,NULL,'5.5','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000016','wrjxh016','sccj004','xt001','wrjcd001',15,5000,81,6,'-20','60','12','4000',NULL,'cl001;cl002',6,NULL,'6.8','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000017','wrjxh017','sccj004','xt001','wrjcd001',15,5000,45,5,'-20','60','3','5000',NULL,'cl001;cl002',4,920,'3.7','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000018','wrjxh018','sccj005','xt002','wrjcd001',19,6500,270,6,'','','2.5','',NULL,'cl001;cl003',NULL,NULL,'5.5','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000019','wrjxh019','sccj005','xt002','wrjcd002',28,4000,1800,7,'','','12','',NULL,'cl001;cl003',NULL,NULL,'10','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000020','wrjxh020','sccj005','xt002','wrjcd002',31,5500,360,7,'','','16','',NULL,'cl001;cl003',NULL,NULL,'14','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000021','wrjxh021','sccj005','xt002','wrjcd002',33,5500,600,8,'','','20','',NULL,'cl001;cl003',NULL,NULL,'60','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000022','wrjxh022','sccj006','xt001','wrjcd002',19,600,45,6,'-20','50','25','',NULL,'',8,NULL,'35','wbjk001;wbjk002;wbjk003','3.15',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000023','wrjxh023','sccj006','xt001','wrjcd002',19,600,45,6,'-20','50','25','',NULL,'',8,1397,'35','wbjk001;wbjk002;wbjk003','3.15',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000024','wrjxh024','sccj006','xt001','wrjcd002',19,600,45,6,'-20','50','25','',NULL,'',8,NULL,'35','wbjk001;wbjk002;wbjk003','3.15',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000025','wrjxh025','sccj007','xt001','wrjcd002',20,1000,NULL,NULL,'','','14','',6,'',8,1630,'11','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000026','wrjxh026','sccj007','xt001','wrjcd002',10,1000,30,6,'','','10','2200',NULL,'',4,1200,'13','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000027','wrjxh027','sccj007','xt001','wrjcd001',15,1000,50,6,'-10','40','11.6','5000',NULL,'',8,1276,'5.7','','0.16',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000028','wrjxh028','sccj007','xt001','wrjcd002',20,1000,NULL,NULL,'','','17.1','',7,'',6,1290,'8.9','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000029','wrjxh029','sccj008','xt001','wrjcd003',20,1000,32,7,'-15','50','80','',NULL,'',12,NULL,'245','','10.66',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000030','wrjxh030','sccj008','xt001','wrjcd002',20,1000,30,5,'','','6','',NULL,'',6,1200,'15','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000031','wrjxh031','sccj008','xt001','wrjcd001',20,1000,20,5,'','','5','',NULL,'',6,1200,'18','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000033','wrjxh032','sccj009','xt002','wrjcd003',72,8000,2100,NULL,'','','1250','',NULL,'',NULL,NULL,'1550','','660',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000034','wrjxh033','sccj009','xt002','wrjcd003',72,8500,1440,NULL,'','','370','',NULL,'',NULL,NULL,'830','','309.68',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000039','wrjxh034','sccj012','xt001','wrjcd002',16,1500,52,7,'-40','60','5','5000',40,'cl001',6,1200,'8.5','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000040','wrjxh035','sccj012','xt001','wrjcd002',20,1500,65,7,'-40','60','6.2','5000',50,'cl001',6,1600,'10.4','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000041','wrjxh036','sccj012','xt001','wrjcd001',20,1500,40,6,'-40','60','2','5000',40,'cl001',4,800,'6',NULL,NULL,0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000042','wrjxh037','sccj012','xt001','wrjcd002',20,1500,48,7,'-40','60','3','5000',NULL,'cl004',6,1000,'8.1','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000043','wrjxh038','sccj013','xt002','wrjcd002',35,4500,NULL,7,'-20','55','30','',NULL,'',NULL,NULL,'40','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000047','wrjxh039','sccj014','xt001','wrjcd002',10,200,NULL,6,'-25','55','30.0','4500',NULL,'cl005;cl001;',6,1580,'15.0','wbjk004;wbjk005;',NULL,0,0,'admin','2020-09-18 02:22:58','1','2021-05-27 01:15:44',NULL),('UMD00000048','wrjxh040','sccj014','xt001','wrjcd002',10,100,15,6,'-10','45','3','4500',NULL,'cl005;cl001',6,1080,'12','wbjk004;wbjk005','0.2',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000049','wrjxh041','sccj014','xt001','wrjcd002',10,1000,50,6,'-25','55','1','4500',NULL,'cl005;cl001',4,1145,'11','wbjk006','0.2',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000050','wrjxh042','sccj014','xt001','wrjcd002',10,1000,15,5,'-25','55','0.3','4500',NULL,'cl005;cl001',4,425,'1.76','wbjk003','0.02',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000051','wrjxh043','sccj014','xt001','wrjcd002',10,100,NULL,6,'-25','55','25','',NULL,'',6,1580,'15','wbjk004;wbjk005','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000052','wrjxh044','sccj014','xt001','wrjcd002',10,300,NULL,6,'-10','45','21','',NULL,'',6,1630,'17','wbjk004;wbjk005','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000053','wrjxh045','sccj015','xt001','wrjcd002',12,300,18,NULL,'','','','',NULL,'',4,NULL,'16.1','','1.36',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000054','wrjxh046','sccj015','xt001','wrjcd002',12,300,18,NULL,'','','','',NULL,'',4,NULL,'13.2','','1.58',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000055','wrjxh048','sccj017','xt002','wrjcd004',78,5300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'',NULL,0,0,'admin','2020-09-18 02:22:58','1','2020-12-17 06:12:18',NULL),('UMD00000056','wrjxh049','sccj007','xt001','wrjcd002',20,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'','1.0',0,0,'admin','2020-09-18 02:22:58','1','2020-12-24 06:12:46',NULL),('UMD00000057','wrjxh051','sccj001','xt001','wrjcd003',20,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2020-12-15 07:24:52','1','2020-12-15 07:24:52',NULL),('UMD00000058','wrjxh050','sccj001','xt001','wrjcd001',15,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'',NULL,0,0,'1','2020-12-16 09:53:07','1','2020-12-16 09:53:36',NULL),('UMD00000059','wrjxh047','sccj017','xt001','wrjcd003',15,1200,30,4,'15','25',NULL,'5000',15,'cl001;',4,NULL,NULL,'wbjk001;wbjk006;wbjk003;',NULL,0,0,'1','2020-12-17 06:07:51','58582660930338816','2024-03-20 09:05:31',NULL),('UMD00000060','AutoTest_data','sccj033','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-09-11 01:45:02','58582660930338816','2024-09-11 01:45:06',''),('UMD00000061','AutoTest_plane','sccj033','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-09-09 01:34:36','58582660930338816','2024-09-09 01:35:03',''),('UMD00000062','AutoTest_hanger','sccj017','xt003','wrjcd004',10,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,1,1,'1','2020-12-28 08:00:11','1','2020-12-28 08:00:26',NULL),('UMD00000063','wrjxh052','sccj001','xt001','wrjcd003',18,1200,50,NULL,NULL,NULL,NULL,'5000',NULL,'',4,NULL,NULL,'',NULL,0,0,'1','2021-01-15 11:00:09','58582660930338816','2024-03-20 09:05:24',NULL),('UMD00000064','wrjxh053','sccj019','xt004','wrjcd003',25,1500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2021-01-19 06:40:26','58582660930338816','2024-03-20 09:05:22',NULL),('UMD00000065','wrjxh054','sccj018','xt002','wrjcd004',370,3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'480.0','',NULL,0,0,'1','2021-03-03 02:13:05','58582660930338816','2024-03-20 09:05:20',NULL),('UMD00000066','54hhh','sccj029','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2023-04-28 01:44:48','58582660930338816','2024-03-20 09:04:20',''),('UMD00000069','wrjxh055','sccj001','xt001','wrjcd004',800,3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2021-04-15 06:03:43','58582660930338816','2024-03-20 09:05:17',NULL),('UMD00000071','wrjxh056','sccj020','xt001','wrjcd003',15,100,9999,5,'-25','55','3.0','4000',9999,'cl001;',4,1080,'15.0','wbjk003;wbjk004;',NULL,0,0,'1','2021-05-20 02:53:25','58582660930338816','2024-03-20 09:05:13',NULL),('UMD00000073','wrjxh059','sccj023','xt001','wrjcd003',18,3000,NULL,4,NULL,NULL,NULL,'4000',NULL,'cl001;',6,NULL,NULL,'wbjk001;wbjk006;wbjk003;',NULL,0,0,'1','2021-09-23 02:27:51','58582660930338816','2024-03-20 09:05:08',NULL),('UMD00000074','wrjxh058','sccj023','xt001','wrjcd003',18,3000,NULL,NULL,NULL,NULL,NULL,'4000',NULL,'cl001;',6,NULL,NULL,'wbjk001;wbjk003;wbjk006;',NULL,0,0,'1','2021-09-23 02:28:24','58582660930338816','2024-03-20 09:05:05',NULL),('UMD00000075','wrjxh057','sccj024','xt001','wrjcd003',18,3000,NULL,NULL,NULL,NULL,NULL,'4000',NULL,'cl001;',6,NULL,NULL,'wbjk001;wbjk004;wbjk003;wbjk006;',NULL,0,0,'1','2021-09-23 02:28:51','58582660930338816','2024-03-20 09:05:03',NULL),('UMD00000076','wrjxh060','sccj025','xt001','wrjcd003',18,300,100,4,'0','40','10.0','3000',100,NULL,4,NULL,NULL,'',NULL,0,0,'175627050911006720','2022-03-30 06:18:55','58582660930338816','2024-03-20 09:05:02',NULL),('UMD00000077','wrjxh061','sccj026','xt002','wrjcd003',20,3500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'175627050911006720','2022-04-27 01:18:32','58582660930338816','2024-03-20 09:05:01',NULL),('UMD00000078','xiliuuav','sccj020','xt001','wrjcd003',1,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'199120334480211968','2022-04-27 06:24:10','58582660930338816','2024-03-20 09:04:59',NULL),('UMD00000079','Tethered_Drone','sccj019','xt001','wrjcd003',100,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2022-09-23 03:18:00','58582660930338816','2024-03-20 09:04:58',NULL),('UMD00000080','Medium_Drone','sccj002','xt003','wrjcd004',20,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2022-09-23 03:18:45','58582660930338816','2024-03-20 09:04:56',NULL),('UMD00000081','Medium_Drone','sccj002','xt003','wrjcd004',20,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,1,1,'173818970422378496','2022-09-23 03:18:45','173818970422378496','2022-09-23 09:38:35',NULL),('UMD00000082','Large_Drone','sccj009','xt002','wrjcd004',500,5000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2022-09-23 03:19:12','58582660930338816','2024-03-20 09:04:55',NULL),('UMD00000083','wrjxh062','sccj027','xt002','wrjcd005',28,3000,10,5,'-20','60','40.0','4500',5,'cl002;',4,NULL,'115.0','',NULL,0,0,'1','2022-11-21 02:35:30','58582660930338816','2024-03-20 09:04:54',NULL),('UMD00000084','wrjxh063','sccj001','xt001','wrjcd003',18,1500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2022-12-09 02:46:41','58582660930338816','2024-03-20 09:04:52',NULL),('UMD00000085','wrjxh064','sccj001','xt001','wrjcd003',18,1800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2022-12-09 02:46:58','58582660930338816','2024-03-20 09:04:51',NULL),('UMD00000086','wrjxh067','sccj029','xt001','wrjcd005',20,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'175627050911006720','2023-02-08 15:05:23','58582660930338816','2024-03-20 09:04:49',NULL),('UMD00000087','wrjxh066','sccj028','xt001','wrjcd005',30,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'175627050911006720','2023-02-08 15:05:36','58582660930338816','2024-03-20 09:04:46',NULL),('UMD00000088','wrjxh065','sccj017','xt001','wrjcd005',18,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6,NULL,NULL,'',NULL,0,0,'175627050911006720','2023-02-08 15:05:51','58582660930338816','2024-03-20 09:04:40',NULL),('UMD00000089','wrjxh073','sccj001','xt001','wrjcd002',15,500,NULL,NULL,NULL,NULL,NULL,'500',25,'cl001;cl002;cl006;cl003;',4,NULL,NULL,'',NULL,0,0,'1','2023-03-22 06:02:45','58582660930338816','2024-03-20 09:04:29',NULL),('UMD00000090','wrjxh072','sccj001','xt001','wrjcd002',15,500,30,4,NULL,NULL,NULL,NULL,25,'cl001;cl002;cl006;',4,NULL,NULL,'',NULL,0,0,'1','2023-03-22 06:03:24','58582660930338816','2024-03-20 09:04:24',NULL),('UMD00000091','wrjxh071','sccj001','xt001','wrjcd002',15,500,30,4,NULL,NULL,NULL,'3500',25,'cl001;cl002;cl006;',4,NULL,NULL,'',NULL,0,0,'1','2023-03-22 06:03:51','58582660930338816','2024-03-20 09:04:23',''),('UMD00000101','test','sccj030','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2024-04-22 09:52:51','58582660930338816','2024-04-22 09:52:50',''),('UMD00000113','AutoTest_plane2','sccj031','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-09-09 01:34:36','58582660930338816','2024-09-09 01:35:03',''),('UMD00000129','DA','sccj029','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2023-04-27 06:48:18','58582660930338816','2024-03-20 09:04:22',NULL),('UMD00000237','AutoTest_load','sccj033','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-09-09 01:36:26','58582660930338816','2024-09-09 01:36:44',''),('UMD00000316','AutoTest_uavHanger','sccj033','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-09-11 02:14:28','58582660930338816','2024-09-19 03:03:15',''),('UMD00000398','wrjxh074','sccj001','xt001','wrjcd002',10,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2023-09-28 01:43:43','58582660930338816','2024-03-20 09:04:18','application/image/81bbe814129445aa91dbcff954852683/M30.jpg;'),('UMD00000433','AutoTest_attention','sccj033','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-10-08 03:01:10','58582660930338816','2024-10-08 03:01:17',''),('UMD00000841','AutoTest_logUav','sccj033','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-09-12 01:18:19','58582660930338816','2024-09-12 01:18:48',''),('UMD00000842','wrjxh075','sccj001','xt001','wrjcd002',15,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-03-18 06:39:36','58582660930338816','2024-03-20 09:04:16',''),('UMD00000868','AutoTestBiaodan','sccj030','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-03-20 09:08:00','58582660930338816','2024-03-21 01:52:36',''),('UMD00000874','test-123','sccj030','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2024-04-22 09:00:05','58582660930338816','2024-04-22 09:00:04',''),('UMD00000982','wrjxh077','sccj033','xt002','wrjcd003',30,1000,180,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-07-25 01:42:36','1','2024-07-25 01:42:36',''),('UMD00000986','wrjxh078','sccj033','xt002','wrjcd003',35,1000,180,6,NULL,NULL,NULL,'3500',NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-07-25 01:46:15','1','2024-07-25 01:46:15',''); +INSERT INTO `uav_plane_model` VALUES ('UMD00000001','wrjxh001','sccj030','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2024-03-20 08:34:02','58582660930338816','2024-03-20 09:04:15',''),('UMD00000002','wrjxh002','sccj001','xt001','wrjcd001',14,500,30,5,'0','40','','6000',NULL,'',4,350,'1.39','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000003','wrjxh003','sccj001','xt001','wrjcd001',14,500,31,5,'-10','40','','6000',29,'',4,354,'0.91','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000004','wrjxh004','sccj001','xt001','wrjcd001',14,500,31,5,'-10','40','','6000',29,'',4,355,'0.91','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000005','wrjxh005','sccj001','xt001','wrjcd001',16,500,27,5,'0','40','','5000',24,'',4,335,'0.73','wbjk001','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000006','wrjxh006','sccj001','xt001','wrjcd001',18,3000,55,7,'-20','50','2.7','3000',NULL,'',4,895,'6.3','wbjk001;wbjk002;wbjk003','0.23',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000007','wrjxh007','sccj002','xt002','wrjcd002',28,4500,480,7,'','','29','3800',NULL,'',NULL,NULL,'76','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000008','wrjxh008','sccj002','xt002','wrjcd001',18,6500,60,6,'-40','55','0.8','4800',NULL,'',NULL,NULL,'6','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000009','wrjxh009','sccj002','xt002','wrjcd002',28,4500,360,7,'-30','50','6','3880',NULL,'',NULL,NULL,'28','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000010','wrjxh010','sccj002','xt002','wrjcd002',18,6500,160,6,'-30','50','2','4500',NULL,'',NULL,NULL,'13','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000011','wrjxh011','sccj002','xt003','wrjcd002',28,4500,180,7,'-30','50','4','3500',NULL,'',4,NULL,'20','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000012','wrjxh012','sccj002','xt002','wrjcd002',20,4000,90,6,'-30','50','2','3500',NULL,'',NULL,NULL,'10','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000013','wrjxh013','sccj002','xt002','wrjcd002',28,7000,360,7,'-30','50','25','4500',NULL,'',NULL,NULL,'32','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000014','wrjxh014','sccj003','xt001','wrjcd001',20,5000,25,5,'-30','50','0.23','3000',25,'cl001;',4,350,'1.15','wbjk001;','1.0',0,0,'admin','2020-09-18 02:22:58','1','2020-11-01 15:35:33',NULL),('UMD00000015','wrjxh015','sccj004','xt001','wrjcd001',35,5000,150,6,'-20','60','2','',NULL,'cl001;cl002',NULL,NULL,'5.5','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000016','wrjxh016','sccj004','xt001','wrjcd001',15,5000,81,6,'-20','60','12','4000',NULL,'cl001;cl002',6,NULL,'6.8','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000017','wrjxh017','sccj004','xt001','wrjcd001',15,5000,45,5,'-20','60','3','5000',NULL,'cl001;cl002',4,920,'3.7','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000018','wrjxh018','sccj005','xt002','wrjcd001',19,6500,270,6,'','','2.5','',NULL,'cl001;cl003',NULL,NULL,'5.5','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000019','wrjxh019','sccj005','xt002','wrjcd002',28,4000,1800,7,'','','12','',NULL,'cl001;cl003',NULL,NULL,'10','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000020','wrjxh020','sccj005','xt002','wrjcd002',31,5500,360,7,'','','16','',NULL,'cl001;cl003',NULL,NULL,'14','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000021','wrjxh021','sccj005','xt002','wrjcd002',33,5500,600,8,'','','20','',NULL,'cl001;cl003',NULL,NULL,'60','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000022','wrjxh022','sccj006','xt001','wrjcd002',19,600,45,6,'-20','50','25','',NULL,'',8,NULL,'35','wbjk001;wbjk002;wbjk003','3.15',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000023','wrjxh023','sccj006','xt001','wrjcd002',19,600,45,6,'-20','50','25','',NULL,'',8,1397,'35','wbjk001;wbjk002;wbjk003','3.15',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000024','wrjxh024','sccj006','xt001','wrjcd002',19,600,45,6,'-20','50','25','',NULL,'',8,NULL,'35','wbjk001;wbjk002;wbjk003','3.15',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000025','wrjxh025','sccj007','xt001','wrjcd002',20,1000,NULL,NULL,'','','14','',6,'',8,1630,'11','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000026','wrjxh026','sccj007','xt001','wrjcd002',10,1000,30,6,'','','10','2200',NULL,'',4,1200,'13','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000027','wrjxh027','sccj007','xt001','wrjcd001',15,1000,50,6,'-10','40','11.6','5000',NULL,'',8,1276,'5.7','','0.16',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000028','wrjxh028','sccj007','xt001','wrjcd002',20,1000,NULL,NULL,'','','17.1','',7,'',6,1290,'8.9','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000029','wrjxh029','sccj008','xt001','wrjcd003',20,1000,32,7,'-15','50','80','',NULL,'',12,NULL,'245','','10.66',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000030','wrjxh030','sccj008','xt001','wrjcd002',20,1000,30,5,'','','6','',NULL,'',6,1200,'15','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000031','wrjxh031','sccj008','xt001','wrjcd001',20,1000,20,5,'','','5','',NULL,'',6,1200,'18','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000033','wrjxh032','sccj009','xt002','wrjcd003',72,8000,2100,NULL,'','','1250','',NULL,'',NULL,NULL,'1550','','660',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000034','wrjxh033','sccj009','xt002','wrjcd003',72,8500,1440,NULL,'','','370','',NULL,'',NULL,NULL,'830','','309.68',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000039','wrjxh034','sccj012','xt001','wrjcd002',16,1500,52,7,'-40','60','5','5000',40,'cl001',6,1200,'8.5','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000040','wrjxh035','sccj012','xt001','wrjcd002',20,1500,65,7,'-40','60','6.2','5000',50,'cl001',6,1600,'10.4','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000041','wrjxh036','sccj012','xt001','wrjcd001',20,1500,40,6,'-40','60','2','5000',40,'cl001',4,800,'6',NULL,NULL,0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000042','wrjxh037','sccj012','xt001','wrjcd002',20,1500,48,7,'-40','60','3','5000',NULL,'cl004',6,1000,'8.1','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000043','wrjxh038','sccj013','xt002','wrjcd002',35,4500,NULL,7,'-20','55','30','',NULL,'',NULL,NULL,'40','','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000047','wrjxh039','sccj014','xt001','wrjcd002',10,200,NULL,6,'-25','55','30.0','4500',NULL,'cl005;cl001;',6,1580,'15.0','wbjk004;wbjk005;',NULL,0,0,'admin','2020-09-18 02:22:58','1','2021-05-27 01:15:44',NULL),('UMD00000048','wrjxh040','sccj014','xt001','wrjcd002',10,100,15,6,'-10','45','3','4500',NULL,'cl005;cl001',6,1080,'12','wbjk004;wbjk005','0.2',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000049','wrjxh041','sccj014','xt001','wrjcd002',10,1000,50,6,'-25','55','1','4500',NULL,'cl005;cl001',4,1145,'11','wbjk006','0.2',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000050','wrjxh042','sccj014','xt001','wrjcd002',10,1000,15,5,'-25','55','0.3','4500',NULL,'cl005;cl001',4,425,'1.76','wbjk003','0.02',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000051','wrjxh043','sccj014','xt001','wrjcd002',10,100,NULL,6,'-25','55','25','',NULL,'',6,1580,'15','wbjk004;wbjk005','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000052','wrjxh044','sccj014','xt001','wrjcd002',10,300,NULL,6,'-10','45','21','',NULL,'',6,1630,'17','wbjk004;wbjk005','',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000053','wrjxh045','sccj015','xt001','wrjcd002',12,300,18,NULL,'','','','',NULL,'',4,NULL,'16.1','','1.36',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000054','wrjxh046','sccj015','xt001','wrjcd002',12,300,18,NULL,'','','','',NULL,'',4,NULL,'13.2','','1.58',0,0,'admin','2020-09-18 02:22:58','admin','2020-09-18 02:22:58',NULL),('UMD00000055','wrjxh048','sccj017','xt002','wrjcd004',78,5300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'',NULL,0,0,'admin','2020-09-18 02:22:58','1','2020-12-17 06:12:18',NULL),('UMD00000056','wrjxh049','sccj007','xt001','wrjcd002',20,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'','1.0',0,0,'admin','2020-09-18 02:22:58','1','2020-12-24 06:12:46',NULL),('UMD00000057','wrjxh051','sccj001','xt001','wrjcd003',20,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2020-12-15 07:24:52','1','2020-12-15 07:24:52',NULL),('UMD00000058','wrjxh050','sccj001','xt001','wrjcd001',15,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'',NULL,0,0,'1','2020-12-16 09:53:07','1','2020-12-16 09:53:36',NULL),('UMD00000059','wrjxh047','sccj017','xt001','wrjcd003',15,1200,30,4,'15','25',NULL,'5000',15,'cl001;',4,NULL,NULL,'wbjk001;wbjk006;wbjk003;',NULL,0,0,'1','2020-12-17 06:07:51','58582660930338816','2024-03-20 09:05:31',NULL),('UMD00000060','AutoTest_data','sccj038','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-11-14 00:55:10','58582660930338816','2024-11-14 00:55:10',''),('UMD00000061','AutoTest_plane','sccj038','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-11-14 01:09:18','58582660930338816','2024-11-14 01:09:46',''),('UMD00000062','AutoTest_hanger','sccj017','xt003','wrjcd004',10,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,1,1,'1','2020-12-28 08:00:11','1','2020-12-28 08:00:26',NULL),('UMD00000063','wrjxh052','sccj001','xt001','wrjcd003',18,1200,50,NULL,NULL,NULL,NULL,'5000',NULL,'',4,NULL,NULL,'',NULL,0,0,'1','2021-01-15 11:00:09','58582660930338816','2024-03-20 09:05:24',NULL),('UMD00000064','wrjxh053','sccj019','xt004','wrjcd003',25,1500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2021-01-19 06:40:26','58582660930338816','2024-03-20 09:05:22',NULL),('UMD00000065','wrjxh054','sccj018','xt002','wrjcd004',370,3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'480.0','',NULL,0,0,'1','2021-03-03 02:13:05','58582660930338816','2024-03-20 09:05:20',NULL),('UMD00000066','54hhh','sccj029','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2023-04-28 01:44:48','58582660930338816','2024-03-20 09:04:20',''),('UMD00000069','wrjxh055','sccj001','xt001','wrjcd004',800,3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2021-04-15 06:03:43','58582660930338816','2024-03-20 09:05:17',NULL),('UMD00000071','wrjxh056','sccj020','xt001','wrjcd003',15,100,9999,5,'-25','55','3.0','4000',9999,'cl001;',4,1080,'15.0','wbjk003;wbjk004;',NULL,0,0,'1','2021-05-20 02:53:25','58582660930338816','2024-03-20 09:05:13',NULL),('UMD00000073','wrjxh059','sccj023','xt001','wrjcd003',18,3000,NULL,4,NULL,NULL,NULL,'4000',NULL,'cl001;',6,NULL,NULL,'wbjk001;wbjk006;wbjk003;',NULL,0,0,'1','2021-09-23 02:27:51','58582660930338816','2024-03-20 09:05:08',NULL),('UMD00000074','wrjxh058','sccj023','xt001','wrjcd003',18,3000,NULL,NULL,NULL,NULL,NULL,'4000',NULL,'cl001;',6,NULL,NULL,'wbjk001;wbjk003;wbjk006;',NULL,0,0,'1','2021-09-23 02:28:24','58582660930338816','2024-03-20 09:05:05',NULL),('UMD00000075','wrjxh057','sccj024','xt001','wrjcd003',18,3000,NULL,NULL,NULL,NULL,NULL,'4000',NULL,'cl001;',6,NULL,NULL,'wbjk001;wbjk004;wbjk003;wbjk006;',NULL,0,0,'1','2021-09-23 02:28:51','58582660930338816','2024-03-20 09:05:03',NULL),('UMD00000076','wrjxh060','sccj025','xt001','wrjcd003',18,300,100,4,'0','40','10.0','3000',100,NULL,4,NULL,NULL,'',NULL,0,0,'175627050911006720','2022-03-30 06:18:55','58582660930338816','2024-03-20 09:05:02',NULL),('UMD00000077','wrjxh061','sccj026','xt002','wrjcd003',20,3500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'175627050911006720','2022-04-27 01:18:32','58582660930338816','2024-03-20 09:05:01',NULL),('UMD00000078','xiliuuav','sccj020','xt001','wrjcd003',1,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'199120334480211968','2022-04-27 06:24:10','58582660930338816','2024-03-20 09:04:59',NULL),('UMD00000079','Tethered_Drone','sccj019','xt001','wrjcd003',100,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2022-09-23 03:18:00','58582660930338816','2024-03-20 09:04:58',NULL),('UMD00000080','Medium_Drone','sccj002','xt003','wrjcd004',20,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2022-09-23 03:18:45','58582660930338816','2024-03-20 09:04:56',NULL),('UMD00000081','Medium_Drone','sccj002','xt003','wrjcd004',20,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,1,1,'173818970422378496','2022-09-23 03:18:45','173818970422378496','2022-09-23 09:38:35',NULL),('UMD00000082','Large_Drone','sccj009','xt002','wrjcd004',500,5000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2022-09-23 03:19:12','58582660930338816','2024-03-20 09:04:55',NULL),('UMD00000083','wrjxh062','sccj027','xt002','wrjcd005',28,3000,10,5,'-20','60','40.0','4500',5,'cl002;',4,NULL,'115.0','',NULL,0,0,'1','2022-11-21 02:35:30','58582660930338816','2024-03-20 09:04:54',NULL),('UMD00000084','wrjxh063','sccj001','xt001','wrjcd003',18,1500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2022-12-09 02:46:41','58582660930338816','2024-03-20 09:04:52',NULL),('UMD00000085','wrjxh064','sccj001','xt001','wrjcd003',18,1800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2022-12-09 02:46:58','58582660930338816','2024-03-20 09:04:51',NULL),('UMD00000086','wrjxh067','sccj029','xt001','wrjcd005',20,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'175627050911006720','2023-02-08 15:05:23','58582660930338816','2024-03-20 09:04:49',NULL),('UMD00000087','wrjxh066','sccj028','xt001','wrjcd005',30,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'175627050911006720','2023-02-08 15:05:36','58582660930338816','2024-03-20 09:04:46',NULL),('UMD00000088','wrjxh065','sccj017','xt001','wrjcd005',18,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6,NULL,NULL,'',NULL,0,0,'175627050911006720','2023-02-08 15:05:51','58582660930338816','2024-03-20 09:04:40',NULL),('UMD00000089','wrjxh073','sccj001','xt001','wrjcd002',15,500,NULL,NULL,NULL,NULL,NULL,'500',25,'cl001;cl002;cl006;cl003;',4,NULL,NULL,'',NULL,0,0,'1','2023-03-22 06:02:45','58582660930338816','2024-03-20 09:04:29',NULL),('UMD00000090','wrjxh072','sccj001','xt001','wrjcd002',15,500,30,4,NULL,NULL,NULL,NULL,25,'cl001;cl002;cl006;',4,NULL,NULL,'',NULL,0,0,'1','2023-03-22 06:03:24','58582660930338816','2024-03-20 09:04:24',NULL),('UMD00000091','wrjxh071','sccj001','xt001','wrjcd002',15,500,30,4,NULL,NULL,NULL,'3500',25,'cl001;cl002;cl006;',4,NULL,NULL,'',NULL,0,0,'1','2023-03-22 06:03:51','58582660930338816','2024-03-20 09:04:23',''),('UMD00000101','test','sccj030','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2024-04-22 09:52:51','58582660930338816','2024-04-22 09:52:50',''),('UMD00000113','AutoTest_plane2','sccj036','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-11-14 01:09:19','58582660930338816','2024-11-14 01:09:46',''),('UMD00000129','DA','sccj029','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2023-04-27 06:48:18','58582660930338816','2024-03-20 09:04:22',NULL),('UMD00000237','AutoTest_load','sccj038','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-11-14 01:10:23','58582660930338816','2024-11-14 01:10:43',''),('UMD00000316','AutoTest_uavHanger','sccj038','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-11-14 01:11:01','58582660930338816','2024-11-14 01:11:10',''),('UMD00000398','wrjxh074','sccj001','xt001','wrjcd002',10,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'',NULL,0,0,'173818970422378496','2023-09-28 01:43:43','58582660930338816','2024-03-20 09:04:18','application/image/81bbe814129445aa91dbcff954852683/M30.jpg;'),('UMD00000433','AutoTest_attention','sccj038','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-11-14 01:19:24','58582660930338816','2024-11-14 01:19:34',''),('UMD00000841','AutoTest_logUav','sccj038','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-11-14 01:19:52','58582660930338816','2024-11-14 01:20:16',''),('UMD00000842','wrjxh075','sccj001','xt001','wrjcd002',15,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-03-18 06:39:36','58582660930338816','2024-03-20 09:04:16',''),('UMD00000868','AutoTestBiaodan','sccj030','xt004','wrjcd005',300,1000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',1,1,'58582660930338816','2024-03-20 09:08:00','58582660930338816','2024-03-21 01:52:36',''),('UMD00000874','test-123','sccj030','xt004','wrjcd005',300,3000,600,3,'-30','38','40.0','5000',NULL,'cl010;cl009;',4,335,'6.3','wbjk003;wbjk002;wbjk001;','0.23',0,0,'58582660930338816','2024-04-22 09:00:05','58582660930338816','2024-04-22 09:00:04',''),('UMD00000982','wrjxh077','sccj033','xt002','wrjcd003',30,1000,180,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-07-25 01:42:36','1','2024-07-25 01:42:36',''),('UMD00000986','wrjxh078','sccj033','xt002','wrjcd003',35,1000,180,6,NULL,NULL,NULL,'3500',NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-07-25 01:46:15','1','2024-07-25 01:46:15',''),('UMD00001433','wrjxh085','sccj006','xt003','wrjcd003',30,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-10-16 09:09:21','1','2024-10-16 09:09:21',''),('UMD00001560','007','sccj033','xt003','wrjcd005',40,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,1,0,'567350297367937024','2024-11-05 03:04:24','567350297367937024','2024-11-05 03:04:24',''),('UMD00001594','nihao','sccj033','xt004','wrjcd004',50,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,1,1,'567350297367937024','2024-11-05 06:21:32','567350297367937024','2024-11-05 06:22:54',''),('UMD00001595','linshichuangjian','sccj033','xt003','wrjcd005',50,500,240,7,'8','21','10.0','3000',60,'cl004;',6,10,'25.0','wbjk005;','5.0',1,1,'567350297367937024','2024-11-05 06:39:05','567350297367937024','2024-11-05 06:39:36',''),('UMD00001687','wrjxh088','sccj036','xt002','wrjcd004',50,3000,360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-11-13 01:09:06','1','2024-11-13 01:09:06',''),('UMD00001688','wrjxh089','sccj038','xt004','wrjcd003',25,300,360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'1','2024-11-13 01:09:28','1','2024-11-13 01:09:28',''); /*!40000 ALTER TABLE `uav_plane_model` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -145,4 +145,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/admin_user.sql b/999-数据库脚本/6.0.0/admin_user.sql index fa75e78..8d0b8ed 100644 --- a/999-数据库脚本/6.0.0/admin_user.sql +++ b/999-数据库脚本/6.0.0/admin_user.sql @@ -32,7 +32,7 @@ UNLOCK TABLES; LOCK TABLES `sys_platform` WRITE; /*!40000 ALTER TABLE `sys_platform` DISABLE KEYS */; -INSERT INTO `sys_platform` VALUES (51691311031386112,NULL,'agriculture',NULL,NULL,'INDUSTRY_APP','application/img/1609729527261_agriculture.png','application/img/1609729534552_agriculture.png',NULL,'','','','about:blank','about:blank',NULL,5,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:22:49',1,'2022-06-22 07:08:16',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51691621233721344,NULL,'army',NULL,NULL,'INDUSTRY_APP','application/img/1609729544232_army.png','application/img/1609729548997_army.png',NULL,'','','','about:blank','about:blank1',NULL,2,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:24:03',1,'2022-06-22 07:08:38',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51691918639235072,NULL,'Inspect',NULL,NULL,'INDUSTRY_APP','application/img/1609729559481_inspect.png','application/img/1609729565019_inspect.png',NULL,'','','','about:blank','about:blank',NULL,3,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:25:14',1,'2022-06-22 07:08:33',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51692572485091328,NULL,'fire',NULL,NULL,'INDUSTRY_APP','application/img/1609729575146_fire.png','application/img/1609729579577_fire.png',NULL,'','','','about:blank','about:blank',NULL,4,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:27:50',1,'2022-06-22 07:08:25',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51692759530078208,NULL,'port',NULL,NULL,'INDUSTRY_APP','application/img/1609729590483_port.png','application/img/1609729595434_port.png',NULL,'','','','about:blank','about:blank',NULL,1,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:28:34',1,'2022-06-22 07:08:44',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51693249240236032,NULL,'emersupport','APP_aGsTAY1uMZrpKdfk','FFkDqqDLTIBwct6xHGOtQOEU6F8qM0','INDUSTRY_APP','application/79eb2d4cbe8541a9bd69815c333638a2/行业应用封面-森林防火.jpg','application/a8b6c122c86b486fb2c33748155d9ee9/行业应用封面-森林防火.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000/emersupport/','//www.demo.uavcmlc.com/emersupport/#/oauth',NULL,38,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:30:31',1,'2024-01-31 05:56:32',188243415207510016,_binary '',NULL,'{ \"url\": \"/emersupport/\", \"devUrl\": \"/#/emersupport/\" }',_binary '\0','solution-emersupport',NULL),(51693429796634624,NULL,'traffic','APP_GN6Mqzr6pCwZwtya','wGnfI6nsF0GkrpqiRq3k4UbVLEvYDs','INDUSTRY_APP','application/img/1609729656905_traffic.png','application/img/1609729661313_traffic.png',NULL,'','','','https://www.demo.uavcmlc.com:18000/traffic','https://www.demo.uavcmlc.com:18000/traffic',NULL,6,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:31:14',1,'2023-05-19 01:19:25',89730635001757696,_binary '','','{\n \"url\": \"/traffic/\", \n \"devUrl\": \"/#/traffic\"\n}',_binary '\0',NULL,NULL),(51694103410245632,NULL,'security','APP_JUSEMc7afyWXxvE7','2QTFZouJNhMYDwogLDCNUjivAWtwUv','INDUSTRY_APP','application/img/1609729672620_police.png','application/img/1609729677241_police.png',NULL,'','','','//www.demo.uavcmlc.com/security/','//www.demo.uavcmlc.com/security/#/oauth',NULL,35,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:33:55',1,'2024-07-22 07:08:51',188243415207510016,_binary '',NULL,'{\n \"url\": \"/security/\", \n \"devUrl\": \"/security/\"\n}',_binary '\0',NULL,NULL),(51694291109543936,NULL,'infrared',NULL,NULL,'DATA_APP','application/img/1609729715695_infrared.png','application/img/1609729720277_infrared.png',NULL,'','','','about:blank','test',NULL,7,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:34:39',1,'2022-08-02 09:11:16',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51694469166137344,NULL,'material','APP_MEeBJHp1fSVD1Wuw','Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','DATA_APP','application/32470bf21d064472b82eab310e072d07/素材仓库.jpg','application/efc72c9f31904ff3a34328ab8bba3da2/素材仓库.jpg',NULL,'','','','//www.demo.uavcmlc.com/mws/','//www.demo.uavcmlc.com/mws/#/oauth',NULL,12,_binary '',_binary '\0',_binary '\0','2020-12-09 07:35:22',1,'2024-02-27 03:55:29',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51695802510213120,NULL,'modelv2','APP_l4HIMixfIXhlCTi9','QJfg2lO9lOHzwsu11lDCjrR0MWkoa4','DATA_APP','application/image/2d_and_3d.png','application/image/2d_and_3d.png',NULL,'','','','//www.demo.uavcmlc.com/splice/#/result/view','//www.demo.uavcmlc.com/splice/#/oauth',NULL,9,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:40:40',1,'2024-02-27 03:55:48',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51700779089657856,NULL,'ai','APP_0BF17ayVaSpY89O4','xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV','DATA_APP','application/img/1609729731263_ai.png','application/img/1609729737667_ai.png',NULL,'','','','//www.demo.uavcmlc.com/ai-brain/#/image','//www.demo.uavcmlc.com/ai-brain/#/oauth',NULL,8,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:00:26',1,'2024-02-28 07:34:26',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51700961512521728,NULL,'simulation','APP_VDAsQoijztZcgcNl','hdDI4EJOFwnSmA2mdTt2sYaKcXEppX','DATA_APP','application/img/1609729768315_simulation.png','application/img/1609729772721_simulation.png',NULL,'','','','#/simulation','#/simulation',NULL,10,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:01:10',1,'2023-04-19 01:43:19',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51701172477624320,NULL,'hyperspectral','APP_xtN9XF2L1J4IRHaB','F1Vt8vz9muVV8eJnjwMT0DbxnV8kuD','DATA_APP','application/img/1609729783075_hyperspectral.png','application/img/1609729793278_hyperspectral.png',NULL,'','','','//www.demo.uavcmlc.com:18000/hyper/','//www.demo.uavcmlc.com:18000/hyper/#/oauth',NULL,11,_binary '\0',_binary '',_binary '\0','2020-12-09 08:02:00',1,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51701358339817472,NULL,'e-commerce',NULL,NULL,'VALUE_ADDED_APP','application/img/1609729870848_3.png','application/img/1609729874595_3.png',NULL,'','','','about:blank','test',NULL,13,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:02:44',1,'2022-08-02 09:11:16',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51701528590811136,NULL,'qualification',NULL,NULL,'VALUE_ADDED_APP','application/img/1609729858606_2.png','application/img/1609729862431_2.png',NULL,'','','','about:blank','test',NULL,14,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:03:25',1,'2022-08-02 09:11:16',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51701711122726912,NULL,'data',NULL,NULL,'VALUE_ADDED_APP','application/img/1609729846680_1.png','application/img/1609729850733_1.png',NULL,'','','','about:blank','test',NULL,15,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:04:09',1,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(58589554315100160,NULL,'jasdas',NULL,NULL,'DATA_APP','application/img/1609143233475_u=2943767315,2930939798&fm=26&gp=0.jpg','application/img/1609143236021_u=2943767315,2930939798&fm=26&gp=0.jpg',NULL,'','','','baidu.com',NULL,NULL,18,_binary '\0',_binary '\0',_binary '','2020-12-28 08:13:58',58582660930338816,'2020-12-28 08:14:07',58582660930338816,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(85391985304666112,NULL,'test123',NULL,NULL,'DATA_APP','application/img/1615533430948_北方天途.jpg','application/img/1615533434677_北方天途.jpg',NULL,'','','','https://www.demo.uavcmlc.com:18000/mws/',NULL,NULL,18,_binary '\0',_binary '\0',_binary '','2021-03-12 07:17:16',70213995537104896,'2021-03-12 07:34:12',70213995537104896,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(87911866017251328,NULL,'超级大脑fwbs','APP_mOX7BPo2fRyS0SHk','9Wpd8XEHX9NPtNHAHKfrP48C69ZOfO','DATA_APP','application/img/1616134530493_成都纵横-CW-007.png','application/img/1616134219742_大疆-M6FA.png',NULL,'yy2','ii2','222','www.baidu.com2','ddsadfsf2',NULL,18,_binary '\0',_binary '\0',_binary '','2021-03-19 06:10:22',1,'2021-03-19 06:22:32',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(92183251954696192,NULL,'3DVisual','APP_BMxntZu3pjr4Y4lW','r8i5pp6wQbY5OxkwihNgWEEEiCTYh8','DATA_APP','application/img/1617152587836_3Dvisual.png','application/img/1617152590826_3Dvisual.png',NULL,'','','','//www.demo.uavcmlc.com:18000/splice-visual/#/result','//www.demo.uavcmlc.com:18000/splice-visual/#/oauth',NULL,16,_binary '\0',_binary '',_binary '\0','2021-03-31 01:03:20',89730635001757696,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(92552165171658752,NULL,'d','APP_FAiE5CmLnI1D5uSn','9IdmYZ9u6VIjPSKOuVSPpw06WpmNLW','VALUE_ADDED_APP','application/img/1617240544275_成都纵横-CW-30.png','application/img/1617240546826_成都纵横-CW-007.png',NULL,'','','','d','d',NULL,19,_binary '\0',_binary '\0',_binary '','2021-04-01 01:29:16',1,'2021-04-01 01:29:34',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(99827547520368640,NULL,'dd','APP_oL9KHzs8vLkCYgGO','gYFBfq0q3Wc4IAwqH8WPBxY2N6hx2r','VALUE_ADDED_APP','application/img/1618975136878_137.jpg','application/img/1618975139937_143.jpg',NULL,'','','','dsafa','sfa',NULL,19,_binary '\0',_binary '\0',_binary '','2021-04-21 03:19:02',1,'2021-04-21 03:19:19',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(112548763309965312,NULL,'test','APP_D9yHWNgGtayZnEUG','vnEnSMq7uMekBbAiBoQR24nlkKVZ8M','DATA_APP','application/img/1622008091889_成都纵横-CW-15.png','application/img/1622008100534_北方天途.jpg',NULL,'','','','test','test',NULL,19,_binary '\0',_binary '\0',_binary '','2021-05-26 05:48:36',292,'2021-05-26 05:48:48',292,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(171689982405115904,NULL,'tower','APP_gXFErCPp54rC0ase','z2ykMYeGH2QJYdoXuokrGeLmKg4mzU','INDUSTRY_APP','application/image/1f6823fcfac3493a93c21bdc800b2bfd/杆塔应用.jpg','application/image/2476e8dc6c534e09af29667ea3800057/杆塔应用.jpg',NULL,'','','about:blank','','about:blank',NULL,17,_binary '\0',_binary '\0',_binary '\0','2021-11-05 10:34:42',1,'2022-08-02 09:11:16',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(171690764403736576,NULL,'visualization','APP_Jc8i2wOQ1t73QEJS','\r\nkxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy','DATA_APP','application/image/ea52219cabea4166a495709af4ea35bf/立体-封面.jpg','application/image/7b6997c71e2e424eb365a4bac072626b/立体-封面.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000/visualization/#/flightMap3d','//www.demo.uavcmlc.com:18000/visualization/#/oauth',NULL,18,_binary '\0',_binary '\0',_binary '\0','2021-11-05 10:37:48',1,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(194515901263904768,NULL,'detection','APP_FDHW2VLVDWPnnOCy','R8PfcXU5xvCXfE3USeZ90Tbte6mZj3','DATA_APP','application/480265cd82b14840a19ef243d010bbbe/行业应用封面-低空探测.jpg','application/8296291f101e407881a5af3f35d884e2/行业应用封面-低空探测.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000/detection/#/home','//www.demo.uavcmlc.com:18000/detection/#/oauth',NULL,19,_binary '\0',_binary '\0',_binary '\0','2022-01-07 10:16:45',89730635001757696,'2024-04-22 08:22:40',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(198518344364589056,NULL,'sas','APP_b46KkuWDTE725RP3','qwmVdxxiW6sjcgeIDvx155VFICCPM1','VALUE_ADDED_APP','application/image/c3bd58e05c664a03a3076326bd137947/mode.png','application/image/bda1f3d97b3f4725ae7465d605db4fce/20130814104134302.jpg',NULL,'','','','s','as',NULL,22,_binary '\0',_binary '\0',_binary '','2022-01-18 11:21:02',188243415207510016,'2022-01-18 11:21:21',188243415207510016,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(216936325675220992,NULL,'logistics','APP_PvdfRRRBPL8xbIwl','F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','INDUSTRY_APP','application/cd4243b1a1844b8f8e4be7c4b813cb25/医疗物流.jpeg','application/f3c76b9c1b31463e85472ecb544c3b74/医疗物流.jpeg',NULL,'','','','//www.demo.uavcmlc.com/logistics/','//www.demo.uavcmlc.com/logistics/#/oauth',NULL,34,_binary '\0',_binary '\0',_binary '\0','2022-03-10 07:07:31',1,'2024-02-27 03:56:12',89730635001757696,_binary '',NULL,'{\n \"url\": \"/logistics/\", \n \"devUrl\": \"/logistics/\"\n}',_binary '\0',NULL,NULL),(217309254481084416,NULL,'base','APP_9LY41OaKSqk2btY0','jvFyQdjU6IzEiqyic5TaWYPTuwjQAX','INDUSTRY_APP','application/c5ae9a1480ab477c8ac9a35641cd23e2/base.jpg','application/5ff027f44d1041ca88f0d81264e93ef8/base.jpg',NULL,'','','','//www.demo.uavcmlc.com/base/#/','//www.demo.uavcmlc.com/base/#/oauth',NULL,43,_binary '\0',_binary '',_binary '\0','2022-03-11 07:49:24',1,'2024-07-09 01:45:09',188243415207510016,_binary '\0',NULL,'{\n \"url\": \"/base/\", \n \"devUrl\": \"/base/\"\n}',_binary '\0',NULL,NULL),(218767711973408768,NULL,'green','APP_VNsPETiwZpNBFmrT','ZOwPAnQKA1rByY2TabLfJsbGFYMS7T','INDUSTRY_APP','application/image/b54ee5088ef84bbf852bd0957acc0849/downloadFileByToken.png','application/image/c2f26e9baba84e6cb52565019e354f72/downloadFileByToken.png',NULL,'','','',' //www.demo.uavcmlc.com:18000/green/#/green',' //www.demo.uavcmlc.com/green/#/auth',NULL,36,_binary '\0',_binary '\0',_binary '\0','2022-03-15 08:24:47',1,'2024-01-31 05:56:57',188243415207510016,_binary '',NULL,'{\n \"url\": \"/green/\", \n \"devUrl\": \"/#/green\"\n}',_binary '\0',NULL,NULL),(224170096870817792,NULL,'supervision','APP_qqSu82THfexI8PLM','UJgOiLmMd4zk56Gy5Uw25MH91CijC5','INDUSTRY_APP','application/image/cce5cd8577804be3bd2a8d7d55235bde/政府监管.png','application/image/5c3029e90ba645459e8d7c62971043c1/政府监管.png',NULL,'','','','//www.demo.uavcmlc.com/supervision/#/screen','//www.demo.uavcmlc.com/supervision/#/oauth',NULL,41,_binary '\0',_binary '\0',_binary '\0','2022-03-30 06:11:56',1,'2024-02-22 07:11:15',188243415207510016,_binary '',NULL,'{\n \"url\": \"/supervision/\",\n \"devUrl\": \"/#/supervision\"\n}',_binary '\0','solution-supervision',NULL),(224558648645386240,NULL,'inspection','APP_1QeaPD3Kd90jPh88','ca3jizLkl984XmXbicRHqd2cA2pMxN','INDUSTRY_APP','application/c45542888e7d4f3aa3ac87de5dc36bcf/hot.png','application/7b79c9dacb8948c7891f54b84f12c9e2/hot.png',NULL,'','','',' //www.demo.uavcmlc.com:18000/inspection/#/inspection',' //www.demo.uavcmlc.com:18000/inspection/#/auth',NULL,30,_binary '\0',_binary '\0',_binary '\0','2022-03-31 07:55:54',1,'2022-09-22 01:27:24',199120334480211968,_binary '\0',NULL,'{\n \"url\": \"/inspection/\", \n \"devUrl\": \"/#/inspection\"\n}',_binary '\0',NULL,NULL),(239746594734342144,NULL,'tlcp','APP_pWf3ddV5e6HXrSVG','AFC8lDbSDIfXT7Zo499H9RT6blyV3y','DATA_APP','application/image/e9bceb123e6f4bbd8991686f78f2dda8/低空图像处理.png','application/image/2826e5ac6d1148ba966375a75b667e33/低空图像处理.png',NULL,'','','https://www.demo.uavcmlc.com:18000','','http://222.128.5.18:32092/tlcp/f/autoLogin',NULL,20,_binary '\0',_binary '\0',_binary '\0','2022-05-12 05:47:22',188243415207510016,'2024-04-23 03:00:10',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,'https://www.demo.uavcmlc.com:18000'),(244750226999476224,NULL,'park','APP_OoWgL4xwb2TJIAHv','SmKxxmZhV8ZwZ29zw2xI9XZ9GWhK8N','INDUSTRY_APP','application/6c212baaa8894fb6bd5e85a7e5a1c80b/park.png','application/76a501cd89414c12b7d8d91e8571df88/park.png',NULL,'','','','//www.demo.uavcmlc.com:18000/#/park','//www.demo.uavcmlc.com/#/park',NULL,37,_binary '\0',_binary '\0',_binary '\0','2022-05-26 01:10:01',1,'2024-01-31 05:56:39',188243415207510016,_binary '',NULL,'{\n \"url\": \"/park/\",\n \"devUrl\": \"/#/park\"\n}',_binary '\0',NULL,NULL),(245144849337024512,NULL,'tejin_tdoa','APP_3RmcJaecdbsvQwZn','t6Mix1LI30UjPWvx42KfrkAPVwxIm7','DATA_APP','application/image/a994d2cb701545bca2a390515f66cd49/无人机探测与反制.jpg','application/image/f9d2e188601148b3a05aba53c0f266a4/无人机探测与反制.jpg',NULL,'','','https://www.demo.uavcmlc.com','','https://demo.terjin.com:30043/api/v1/uavcmlc/callback',NULL,24,_binary '\0',_binary '\0',_binary '\0','2022-05-27 03:18:07',1,'2024-02-28 01:48:19',188243415207510016,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(249904145316708352,NULL,'RISK_CENSUS','APP_X4KkxRzeqPyE0b1f','GbXMOiR2UZt07VPLmPnJZJ3O5KGYNz','INDUSTRY_APP','application/1101a1d09b8f4749ad768cb3818b5ba8/行业应用封面-应急3.jpg','application/997c883960784da289c8cff054412669/行业应用封面-应急3.jpg',NULL,'','','https://www.demo.uavcmlc.com:18000/','','http://118.114.172.141:51103/#/autologin',NULL,31,_binary '\0',_binary '\0',_binary '\0','2022-06-09 06:29:51',188243415207510016,'2023-02-27 07:57:03',188243415207510016,_binary '',NULL,NULL,_binary '',NULL,NULL),(254620518227902464,NULL,'pangu','APP_YXXwlSJI0eIj0qoA','8Lipq3O6RGJRyyG97dfEBAEdLyDbJM','INDUSTRY_APP','application/57157877754b41278cf26aa1641a6c15/common.jpg','application/b6701999825646b18705055f39df67c4/common.jpg',NULL,'','','','pangu','pangu',NULL,44,_binary '\0',_binary '\0',_binary '\0','2022-06-22 06:51:02',188243415207510016,'2023-07-10 02:17:41',188243415207510016,_binary '','','{\n \"url\": \"/pangu/\", \n \"devUrl\": \"/\"\n}',_binary '\0','',''),(254624518264324096,NULL,'patrol','APP_aDxbkOxldQw2GW6h','c4StkfbInqvF67PMha18EY2L75Qdl5','INDUSTRY_APP','application/8aacc151bef24e729031702c91bea920/screenshot-1.png','application/854eb3581a6a476088244d17454047e6/screenshot-1.png',NULL,'','','http://yc.flision.com:9302/login','','http://yc.flision.com:9302/login',NULL,33,_binary '\0',_binary '\0',_binary '\0','2022-06-22 07:06:56',188243415207510016,'2023-07-10 02:17:41',188243415207510016,_binary '','','',_binary '\0','',''),(254659367012401152,NULL,'5G_linxot','APP_GggMNtv9QlP4c9Or','x9BhQATDco7PVJufPq2FCwe2Ond03b','DATA_APP','application/1be55b8ac7764e6689da4ae7c51747e7/sentry_T0BSL000AN.jpg','application/c9475aefc8e5485b9670f3ab7ae07895/sentry_T0BSL000AN.jpg',NULL,'','','home','','https://sentry.dev.linxot.com',NULL,23,_binary '\0',_binary '\0',_binary '\0','2022-06-22 09:25:24',199120334480211968,'2024-04-23 05:47:00',188243415207510016,_binary '\0','','',_binary '\0','',''),(256733978294222848,NULL,'tudou_sensing','APP_HqVAZZ55EWfLQ063','9oC7hnsHHJTo5PkO08XUBIWDRcxQPx','DATA_APP','application/da58389bec32438f8d6c94527ed70f8f/在线智能遥感.png','application/a1d37fcd97fc4951b75707f28311d170/在线智能遥感.png',NULL,'','','https://www.demo.uavcmlc.com:18000','','https://isv-rsi.i-tudou.com/login/oauth2/code/PANGU-RSI',NULL,22,_binary '\0',_binary '\0',_binary '\0','2022-06-28 02:49:10',188243415207510016,'2023-02-06 01:52:44',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000'),(257529594561691648,NULL,'emersupport','APP_aGsTAY1uMZrpKdfk','FFkDqqDLTIBwct6xHGOtQOEU6F8qM0','INDUSTRY_APP','application/image/c79a170efff94f66af723c4921afedf8/emergency.png','application/image/e87afae4eb044f8da4760d0ff4b4c3d5/emergency.png',NULL,'','','','//lab.uavcmlc.com/devflight/emersupport/','//lab.uavcmlc.com/devflight/emersupport/#/oauth',NULL,35,_binary '\0',_binary '\0',_binary '','2022-06-30 07:30:40',1,'2022-06-30 07:33:33',188243415207510016,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(257530550208692224,NULL,'communication','APP_pRD4netwRenuNWYt','1Ua2GLN3aaj2K6udJBtrLwuwnYOFOv','INDUSTRY_APP','application/92f33c996acb46d8b3bddaa9ea2d1437/行业应用封面-应急通信.jpg','application/ad29297ae731479bb9a3c204a55fb489/行业应用封面-应急通信.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000','//www.demo.uavcmlc.com/#/communication',NULL,39,_binary '\0',_binary '\0',_binary '\0','2022-06-30 07:34:28',1,'2024-01-31 05:56:22',188243415207510016,_binary '',NULL,'{\n \"url\": \"/communication/\", \n \"devUrl\": \"/#/communication\"\n}',_binary '\0','solution-communication',NULL),(262610103520198656,NULL,'fire_emergency','APP_sbp9mWGgvgmFVNKc','aW5nOiw7eXZltikAf7LJBAFPRXSvsB','DATA_APP','application/c3af5b396c1d4cbf8adc4ac59c0a3ba3/森林防火.jpg','application/13be206a483e4681aa71ac2a877bb902/森林防火.jpg',NULL,'','','https://www.demo.uavcmlc.com:18000','','http://117.139.13.157:25057/#/autologin',NULL,25,_binary '\0',_binary '\0',_binary '\0','2022-07-14 07:58:48',188243415207510016,'2022-09-23 03:05:51',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000'),(266603863711154176,NULL,'infrastructure','APP_kvVZWQ2VDP64l5Hk','53p01DcMIIiekFuGu33GC8wV34hd7A','INDUSTRY_APP','application/abc66ec5350c4424a8e8cb2922707b33/基础设施.jpeg','application/3730af9be6654e32b972184ddb9f5a5e/基础设施.jpeg',NULL,'','','','//www.demo.uavcmlc.com:18000/infrastructure/','//www.demo.uavcmlc.com:18000/infrastructure/#/oauth',NULL,42,_binary '\0',_binary '\0',_binary '\0','2022-07-25 08:28:34',1,'2023-07-10 02:17:41',199120334480211968,_binary '',NULL,'{\n \"url\": \"/infrastructure/\",\n \"devUrl\": \"/#/infrastructure/\"\n}',_binary '\0',NULL,NULL),(273132440472518656,NULL,'nematode','APP_OUrP03UOTECGIxH8','1o8wSV6iJyZZnx17tgTx54gPc4UKHu','DATA_APP','application/4465fd830cac43959a83f985788dd977/松材线虫病疫情普查平台.png','application/9445f6f4601447099e6372635d855c48/松材线虫病疫情普查平台.png',NULL,'','','http://47.96.112.120:8012','','http://47.96.112.120:8012/cyycallback',NULL,26,_binary '\0',_binary '\0',_binary '\0','2022-08-12 08:50:48',188243415207510016,'2023-02-06 01:52:34',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000/'),(275322748887105536,NULL,'HUB_ONE','APP_k5cbUcneptCuDAMM','AAKkMCTrtaQZgQqiFee3aH6CHd4haW','INDUSTRY_APP','application/79c2215a1f3a48d781ea8a8372e666d9/哈勃.png','application/16c51f88d47c44ce9bb52c6f094d6dc2/哈勃.png',NULL,'','','http://192.168.34.201:9527/#/redirect','','http://192.168.34.201:9527/callback.html',NULL,29,_binary '\0',_binary '',_binary '\0','2022-08-18 09:54:19',188243415207510016,'2023-02-08 03:09:16',188243415207510016,_binary '\0','','',_binary '','','https://www.demo.uavcmlc.com:18000/'),(275323102710202368,NULL,'TIANXUN','APP_z1aks5MqgKXJ9hry','gZu6imM4XZDlB9olasmX2tG5uczior','INDUSTRY_APP','application/8e02ce844efd456e9cfeb61a219d0ff8/低空组网.jpg','application/6b2561f559ba4837a1d59a1739abeaa8/低空组网.jpg',NULL,'','','/','','https://192.168.34.33:19092/callback.html',NULL,28,_binary '\0',_binary '',_binary '\0','2022-08-18 09:55:43',188243415207510016,'2023-02-08 03:09:23',188243415207510016,_binary '\0','','',_binary '','','http://192.168.34.37:18000'),(279567198865850368,NULL,'media','APP_4AU8lbifESQO4FD6','FK1BraFkJpsiN48GS3JuXtrxreWUrM','DATA_APP','application/05ce86581d584dab8bcee950429ad66f/视频流媒体.jpg','application/89a62061854747a1a0ca8593094ead5e/视频流媒体.jpg',NULL,'','','','//www.demo.uavcmlc.com/media/#/','//www.demo.uavcmlc.com/media/#/oauth',NULL,27,_binary '\0',_binary '\0',_binary '\0','2022-08-30 03:00:14',1,'2024-02-22 06:31:25',89730635001757696,_binary '','','',_binary '\0','',''),(287875985993367552,NULL,'tudou_3d','APP_uzUqFHEchpNE8ZwX','DnG3f9wUifQFZp5ypOsDaUfAf4ueGw','DATA_APP','application/271618f84345454da0ed5225c350554f/实景三维.png','application/0e284a1b295448f0af781ead91cb5433/实景三维.png',NULL,'','','https://www.demo.uavcmlc.com:18000','','https://isv-3dacqm.i-tudou.com/login/oauth2/code/PANGU-3DACQ',NULL,21,_binary '\0',_binary '\0',_binary '\0','2022-09-22 01:16:24',188243415207510016,'2023-04-19 01:41:23',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000'),(363014007424417792,NULL,'jiangsuwenlv','APP_Q61lT2i6zhnf5pvo','NKho6J808qIdljNDz9HlNPYzB40eeW','PARTNER_APP','application/58afe9313be64cbab6c3b3371c840ab4/test.jpg','application/c8c13a437fc14e4ebf951980866dba84/test.jpg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,45,_binary '\0',_binary '\0',_binary '\0','2023-04-17 09:28:04',89730635001757696,'2024-02-27 03:57:02',89730635001757696,_binary '\0','','{\"userId\":\"699\"}',_binary '\0','',''),(363327831185686528,NULL,'Jiangsu-Cultural-Tourism','APP_0gcpNH4hHhB3sSvK','tuv59VCiNkwj363JNudxU0Ou5HwGXX','PARTNER_APP','https://minio.ig-dev.uavcmlc.com/pub-cms/https://minio.ig-devflight.uavcmlc.com/pub-cms/application/c616cf89f43c4269b54e4918f21cb29d/green.png','https://minio.ig-dev.uavcmlc.com/pub-cms/https://minio.ig-devflight.uavcmlc.com/pub-cms/application/c76bff4815104e1d8ced72504df52a37/green.png',NULL,'','','','https://lab.uavcmlc.com/','https://lab.uavcmlc.com/',NULL,44,_binary '\0',_binary '\0',_binary '','2023-04-18 06:15:05',1,'2023-04-18 06:15:53',188243415207510016,_binary '\0','','{\"userId\":\"474\",\"checkTime\":\"false\"}',_binary '\0','',''),(363329215444549632,NULL,'QinghaiWenLv','APP_OqOQxwHnYizTFEu4','dUYZkHSL9KWAjyhIglrOXAHBkccq5h','PARTNER_APP','application/fa94bdfbf7664d9083dd5096e3f5f84e/青海湖.jpg','application/4e8bb4fee5124597860a1f5fb40ffa24/青海湖.jpg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,46,_binary '\0',_binary '\0',_binary '\0','2023-04-18 06:20:35',188243415207510016,'2024-02-27 03:56:53',89730635001757696,_binary '\0','','',_binary '\0','',''),(365173608686157824,NULL,'runtoint','APP_lkAjaqyoJIYqQhmc','pb5u74UdOMTKLfrQ2JgePuqKCrV4a6','DATA_APP','application/d4bdfcc2beef4d82b3e43411052bc9bf/润图智能.png','application/1dd517491af447a19e41280b70e571b5/润图智能.png',NULL,'','','https://runtoint.com:21800/ssoLogin','','https://runtoint.com:21800/ssoLogin',NULL,47,_binary '\0',_binary '',_binary '\0','2023-04-23 08:29:33',188243415207510016,'2023-08-08 09:02:10',188243415207510016,_binary '\0','','',_binary '\0','',''),(374257704400846848,NULL,'pilot_app','APP_aCOx0NkGTtMweRRL','QizpfQR5mfSkyUykMasBvSGW2HXbqt','CLIENT_APP','https://minio.ig-test.uavcmlc.com:31500/pub-cms/https://minio.ig-dev.uavcmlc.com/pub-cms/application/d8d70cda1027440e8efcd980bf914848/数据分级分类.png','https://minio.ig-test.uavcmlc.com:31500/pub-cms/https://minio.ig-dev.uavcmlc.com/pub-cms/application/ca186241a6274824a4d7114371f9f823/数据分级分类.png',NULL,'','','','https://lab.uavcmlc.com/','https://lab.uavcmlc.com/',NULL,48,_binary '\0',_binary '\0',_binary '\0','2023-05-18 10:06:30',1,'2023-07-10 02:17:41',1,_binary '','','',_binary '\0','',''),(375599197049585664,NULL,'fireRescue','APP_2O6gzQqdt1gVGByW','zkfiUzFLq5yvjyboWLtlUKMhqKNIeM','INDUSTRY_APP','application/80472b96e19a4876933b517a9ba0f070/poster.png','application/8944dfc54d75496fa3d512ef0e0d0aa9/poster.png',NULL,'','','','//www.demo.uavcmlc.com:18000/#/fireRescue','//www.demo.uavcmlc.com/#/fireRescue',NULL,32,_binary '\0',_binary '\0',_binary '\0','2023-05-22 02:57:07',1,'2024-01-31 05:57:18',188243415207510016,_binary '','','{ \"url\": \"/fireRescue/\", \"devUrl\": \"/#/fireRescue\" }',_binary '\0','',''),(389735663221211136,NULL,'armypeople','APP_UIegse6Lfou9pO1U','iCyoZXtzuTWR89BevVltbs5JnvXiGw','INDUSTRY_APP','application/71f392e20c2d46cfb981548c68821ecc/行业应用封面-军民融合.jpeg','application/8b41a71e7af9407eac5e8016267b2da9/行业应用封面-军民融合.jpeg',NULL,'','','','//www.demo.uavcmlc.com/armypeople/','//www.demo.uavcmlc.com/armypeople/#/oauth',NULL,40,_binary '\0',_binary '\0',_binary '\0','2023-06-30 03:10:23',1,'2024-07-22 07:08:42',188243415207510016,_binary '','','{ \"url\": \"/armypeople/\", \"devUrl\": \"/#/armypeople\" }',_binary '\0','',''),(403580659618807808,NULL,'heilongjiangtieta','APP_e98donoShXhPfUeb','9IJDL5qtV2h2z73WgQXJXqTM6smJoY','INDUSTRY_APP','application/9ae6e6d191a847978ccb4ee9c43c6b5c/test.jpg','application/9ef93a790bfc4a448c2a75f930b70f40/test.jpg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,49,_binary '\0',_binary '\0',_binary '\0','2023-08-07 08:05:27',89730635001757696,'2024-04-19 12:57:35',188243415207510016,_binary '\0','','{\"userId\":\"1170\",\"checkTime\":\"false\"}',_binary '\0','',''),(439357001011167232,NULL,'threedsimulation','APP_WXC98VROH3JWNUcw','u6CejHtLd124CSYSsoWtikhh02uaGA','DATA_APP','application/5984e33e1b5c465db9b164cad1148016/三维仿真.png','application/1bac566b6771460390363eec99e03af0/三维仿真.png',NULL,'','','',' //www.demo.uavcmlc.com/threedsimulation/',' //www.demo.uavcmlc.com/threedsimulation/',NULL,50,_binary '\0',_binary '\0',_binary '\0','2023-11-14 01:27:52',188243415207510016,'2024-02-27 03:56:44',89730635001757696,_binary '','','',_binary '\0','',''),(496451435245338624,NULL,'guangzhoucompany','APP_4pOYDvnA55Xupznq','HYEGIMQaOOe7gjrJ62naS52fRMACkA','INDUSTRY_APP','application/e61a366c169441b590a8f6aea9a62895/wu2.jpeg','application/9a322726ebbc471e8091edc6e86fcd7d/wu2.jpeg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,51,_binary '\0',_binary '\0',_binary '\0','2024-04-19 14:40:46',188243415207510016,'2024-04-19 14:41:26',188243415207510016,_binary '\0','中国移动通信集团广东有限公司广州分公司','{\"userId\":\"1170\",\"checkTime\":\"false\"}',_binary '\0','',''),(515946878100832256,NULL,'zhuhailianzhoucompany','APP_m524AblyDIK4I4QT','ryiieNsKBtU3PsqKk0RQaQzbCMIGjp','INDUSTRY_APP','application/0fb66500df85420fbbd9437aa9e5d27c/禅思 X5S.jpg','application/a4231ca5f8114f589cb010291d652510/禅思 X5S.jpg',NULL,'','','',' https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,52,_binary '\0',_binary '\0',_binary '\0','2024-06-12 09:48:42',188243415207510016,'2024-06-12 09:48:42',188243415207510016,_binary '\0','珠海莲洲机场5G-A通感演示','{\"userId\":\"1222\",\"checkTime\":\"false\"}',_binary '\0','',''),(559703013587156992,NULL,'sz_idea','APP_ezhJe6BZFIcWK52h','aRLMrU1j4sPWTxc4drusW6Idb52FIy','PARTNER_APP','application/8b4b6248ed064159a9b56d198c265f4f/行业应用封面-应急3.jpg','application/52f5fbb97b584375877a4da87be61474/行业应用封面-应急3.jpg',NULL,'','','','//','//',NULL,53,_binary '\0',_binary '\0',_binary '\0','2024-10-11 03:39:57',188243415207510016,'2024-10-12 02:44:58',188243415207510016,_binary '\0','','{\"userId\":\"915\"}',_binary '\0','',''); +INSERT INTO `sys_platform` VALUES (51691311031386112,NULL,'agriculture',NULL,NULL,'INDUSTRY_APP','application/img/1609729527261_agriculture.png','application/img/1609729534552_agriculture.png',NULL,'','','','about:blank','about:blank',NULL,5,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:22:49',1,'2022-06-22 07:08:16',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51691621233721344,NULL,'army',NULL,NULL,'INDUSTRY_APP','application/img/1609729544232_army.png','application/img/1609729548997_army.png',NULL,'','','','about:blank','about:blank1',NULL,2,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:24:03',1,'2022-06-22 07:08:38',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51691918639235072,NULL,'Inspect',NULL,NULL,'INDUSTRY_APP','application/img/1609729559481_inspect.png','application/img/1609729565019_inspect.png',NULL,'','','','about:blank','about:blank',NULL,3,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:25:14',1,'2022-06-22 07:08:33',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51692572485091328,NULL,'fire',NULL,NULL,'INDUSTRY_APP','application/img/1609729575146_fire.png','application/img/1609729579577_fire.png',NULL,'','','','about:blank','about:blank',NULL,4,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:27:50',1,'2022-06-22 07:08:25',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51692759530078208,NULL,'port',NULL,NULL,'INDUSTRY_APP','application/img/1609729590483_port.png','application/img/1609729595434_port.png',NULL,'','','','about:blank','about:blank',NULL,1,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:28:34',1,'2022-06-22 07:08:44',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51693249240236032,NULL,'emersupport','APP_aGsTAY1uMZrpKdfk','FFkDqqDLTIBwct6xHGOtQOEU6F8qM0','INDUSTRY_APP','application/79eb2d4cbe8541a9bd69815c333638a2/行业应用封面-森林防火.jpg','application/a8b6c122c86b486fb2c33748155d9ee9/行业应用封面-森林防火.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000/emersupport/','//www.demo.uavcmlc.com/emersupport/#/oauth',NULL,38,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:30:31',1,'2024-01-31 05:56:32',188243415207510016,_binary '',NULL,'{ \"url\": \"/emersupport/\", \"devUrl\": \"/#/emersupport/\" }',_binary '\0','solution-emersupport',NULL),(51693429796634624,NULL,'traffic','APP_GN6Mqzr6pCwZwtya','wGnfI6nsF0GkrpqiRq3k4UbVLEvYDs','INDUSTRY_APP','application/img/1609729656905_traffic.png','application/img/1609729661313_traffic.png',NULL,'','','','https://www.demo.uavcmlc.com:18000/traffic','https://www.demo.uavcmlc.com:18000/traffic',NULL,6,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:31:14',1,'2023-05-19 01:19:25',89730635001757696,_binary '','','{\n \"url\": \"/traffic/\", \n \"devUrl\": \"/#/traffic\"\n}',_binary '\0',NULL,NULL),(51694103410245632,NULL,'security','APP_JUSEMc7afyWXxvE7','2QTFZouJNhMYDwogLDCNUjivAWtwUv','INDUSTRY_APP','application/img/1609729672620_police.png','application/img/1609729677241_police.png',NULL,'','','','//www.demo.uavcmlc.com/security/','//www.demo.uavcmlc.com/security/#/oauth',NULL,35,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:33:55',1,'2024-07-22 07:08:51',188243415207510016,_binary '',NULL,'{\n \"url\": \"/security/\", \n \"devUrl\": \"/security/\"\n}',_binary '\0',NULL,NULL),(51694291109543936,NULL,'infrared',NULL,NULL,'DATA_APP','application/img/1609729715695_infrared.png','application/img/1609729720277_infrared.png',NULL,'','','','about:blank','test',NULL,7,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:34:39',1,'2022-08-02 09:11:16',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51694469166137344,NULL,'material','APP_MEeBJHp1fSVD1Wuw','Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','DATA_APP','application/32470bf21d064472b82eab310e072d07/素材仓库.jpg','application/efc72c9f31904ff3a34328ab8bba3da2/素材仓库.jpg',NULL,'','','','//www.demo.uavcmlc.com/mws/','//www.demo.uavcmlc.com/mws/#/oauth',NULL,12,_binary '',_binary '\0',_binary '\0','2020-12-09 07:35:22',1,'2024-02-27 03:55:29',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51695802510213120,NULL,'modelv2','APP_l4HIMixfIXhlCTi9','QJfg2lO9lOHzwsu11lDCjrR0MWkoa4','DATA_APP','application/image/2d_and_3d.png','application/image/2d_and_3d.png',NULL,'','','','//www.demo.uavcmlc.com/splice/#/result/view','//www.demo.uavcmlc.com/splice/#/oauth',NULL,9,_binary '\0',_binary '\0',_binary '\0','2020-12-09 07:40:40',1,'2024-02-27 03:55:48',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51700779089657856,NULL,'ai','APP_0BF17ayVaSpY89O4','xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV','DATA_APP','application/img/1609729731263_ai.png','application/img/1609729737667_ai.png',NULL,'','','','//www.demo.uavcmlc.com/ai-brain/#/image','//www.demo.uavcmlc.com/ai-brain/#/oauth',NULL,8,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:00:26',1,'2024-02-28 07:34:26',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51700961512521728,NULL,'simulation','APP_VDAsQoijztZcgcNl','hdDI4EJOFwnSmA2mdTt2sYaKcXEppX','DATA_APP','application/img/1609729768315_simulation.png','application/img/1609729772721_simulation.png',NULL,'','','','#/simulation','#/simulation',NULL,10,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:01:10',1,'2023-04-19 01:43:19',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(51701172477624320,NULL,'hyperspectral','APP_xtN9XF2L1J4IRHaB','F1Vt8vz9muVV8eJnjwMT0DbxnV8kuD','DATA_APP','application/img/1609729783075_hyperspectral.png','application/img/1609729793278_hyperspectral.png',NULL,'','','','//www.demo.uavcmlc.com:18000/hyper/','//www.demo.uavcmlc.com:18000/hyper/#/oauth',NULL,11,_binary '\0',_binary '',_binary '\0','2020-12-09 08:02:00',1,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51701358339817472,NULL,'e-commerce',NULL,NULL,'VALUE_ADDED_APP','application/img/1609729870848_3.png','application/img/1609729874595_3.png',NULL,'','','','about:blank','test',NULL,13,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:02:44',1,'2022-08-02 09:11:16',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51701528590811136,NULL,'qualification',NULL,NULL,'VALUE_ADDED_APP','application/img/1609729858606_2.png','application/img/1609729862431_2.png',NULL,'','','','about:blank','test',NULL,14,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:03:25',1,'2022-08-02 09:11:16',89730635001757696,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(51701711122726912,NULL,'data',NULL,NULL,'VALUE_ADDED_APP','application/img/1609729846680_1.png','application/img/1609729850733_1.png',NULL,'','','','about:blank','test',NULL,15,_binary '\0',_binary '\0',_binary '\0','2020-12-09 08:04:09',1,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(58589554315100160,NULL,'jasdas',NULL,NULL,'DATA_APP','application/img/1609143233475_u=2943767315,2930939798&fm=26&gp=0.jpg','application/img/1609143236021_u=2943767315,2930939798&fm=26&gp=0.jpg',NULL,'','','','baidu.com',NULL,NULL,18,_binary '\0',_binary '\0',_binary '','2020-12-28 08:13:58',58582660930338816,'2020-12-28 08:14:07',58582660930338816,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(85391985304666112,NULL,'test123',NULL,NULL,'DATA_APP','application/img/1615533430948_北方天途.jpg','application/img/1615533434677_北方天途.jpg',NULL,'','','','https://www.demo.uavcmlc.com:18000/mws/',NULL,NULL,18,_binary '\0',_binary '\0',_binary '','2021-03-12 07:17:16',70213995537104896,'2021-03-12 07:34:12',70213995537104896,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(87911866017251328,NULL,'超级大脑fwbs','APP_mOX7BPo2fRyS0SHk','9Wpd8XEHX9NPtNHAHKfrP48C69ZOfO','DATA_APP','application/img/1616134530493_成都纵横-CW-007.png','application/img/1616134219742_大疆-M6FA.png',NULL,'yy2','ii2','222','www.baidu.com2','ddsadfsf2',NULL,18,_binary '\0',_binary '\0',_binary '','2021-03-19 06:10:22',1,'2021-03-19 06:22:32',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(92183251954696192,NULL,'3DVisual','APP_BMxntZu3pjr4Y4lW','r8i5pp6wQbY5OxkwihNgWEEEiCTYh8','DATA_APP','application/img/1617152587836_3Dvisual.png','application/img/1617152590826_3Dvisual.png',NULL,'','','','//www.demo.uavcmlc.com:18000/splice-visual/#/result','//www.demo.uavcmlc.com:18000/splice-visual/#/oauth',NULL,16,_binary '\0',_binary '',_binary '\0','2021-03-31 01:03:20',89730635001757696,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(92552165171658752,NULL,'d','APP_FAiE5CmLnI1D5uSn','9IdmYZ9u6VIjPSKOuVSPpw06WpmNLW','VALUE_ADDED_APP','application/img/1617240544275_成都纵横-CW-30.png','application/img/1617240546826_成都纵横-CW-007.png',NULL,'','','','d','d',NULL,19,_binary '\0',_binary '\0',_binary '','2021-04-01 01:29:16',1,'2021-04-01 01:29:34',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(99827547520368640,NULL,'dd','APP_oL9KHzs8vLkCYgGO','gYFBfq0q3Wc4IAwqH8WPBxY2N6hx2r','VALUE_ADDED_APP','application/img/1618975136878_137.jpg','application/img/1618975139937_143.jpg',NULL,'','','','dsafa','sfa',NULL,19,_binary '\0',_binary '\0',_binary '','2021-04-21 03:19:02',1,'2021-04-21 03:19:19',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(112548763309965312,NULL,'test','APP_D9yHWNgGtayZnEUG','vnEnSMq7uMekBbAiBoQR24nlkKVZ8M','DATA_APP','application/img/1622008091889_成都纵横-CW-15.png','application/img/1622008100534_北方天途.jpg',NULL,'','','','test','test',NULL,19,_binary '\0',_binary '\0',_binary '','2021-05-26 05:48:36',292,'2021-05-26 05:48:48',292,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(171689982405115904,NULL,'tower','APP_gXFErCPp54rC0ase','z2ykMYeGH2QJYdoXuokrGeLmKg4mzU','INDUSTRY_APP','application/image/1f6823fcfac3493a93c21bdc800b2bfd/杆塔应用.jpg','application/image/2476e8dc6c534e09af29667ea3800057/杆塔应用.jpg',NULL,'','','about:blank','','about:blank',NULL,17,_binary '\0',_binary '\0',_binary '\0','2021-11-05 10:34:42',1,'2022-08-02 09:11:16',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(171690764403736576,NULL,'visualization','APP_Jc8i2wOQ1t73QEJS','\r\nkxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy','DATA_APP','application/image/ea52219cabea4166a495709af4ea35bf/立体-封面.jpg','application/image/7b6997c71e2e424eb365a4bac072626b/立体-封面.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000/visualization/#/flightMap3d','//www.demo.uavcmlc.com:18000/visualization/#/oauth',NULL,18,_binary '\0',_binary '\0',_binary '\0','2021-11-05 10:37:48',1,'2022-08-02 09:11:16',1,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(194515901263904768,NULL,'detection','APP_FDHW2VLVDWPnnOCy','R8PfcXU5xvCXfE3USeZ90Tbte6mZj3','DATA_APP','application/480265cd82b14840a19ef243d010bbbe/行业应用封面-低空探测.jpg','application/8296291f101e407881a5af3f35d884e2/行业应用封面-低空探测.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000/detection/#/home','//www.demo.uavcmlc.com:18000/detection/#/oauth',NULL,19,_binary '\0',_binary '\0',_binary '\0','2022-01-07 10:16:45',89730635001757696,'2024-04-22 08:22:40',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,NULL),(198518344364589056,NULL,'sas','APP_b46KkuWDTE725RP3','qwmVdxxiW6sjcgeIDvx155VFICCPM1','VALUE_ADDED_APP','application/image/c3bd58e05c664a03a3076326bd137947/mode.png','application/image/bda1f3d97b3f4725ae7465d605db4fce/20130814104134302.jpg',NULL,'','','','s','as',NULL,22,_binary '\0',_binary '\0',_binary '','2022-01-18 11:21:02',188243415207510016,'2022-01-18 11:21:21',188243415207510016,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(216936325675220992,NULL,'logistics','APP_PvdfRRRBPL8xbIwl','F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','INDUSTRY_APP','application/cd4243b1a1844b8f8e4be7c4b813cb25/医疗物流.jpeg','application/f3c76b9c1b31463e85472ecb544c3b74/医疗物流.jpeg',NULL,'','','','//www.demo.uavcmlc.com/logistics/','//www.demo.uavcmlc.com/logistics/#/oauth',NULL,34,_binary '\0',_binary '\0',_binary '\0','2022-03-10 07:07:31',1,'2024-02-27 03:56:12',89730635001757696,_binary '',NULL,'{\n \"url\": \"/logistics/\", \n \"devUrl\": \"/logistics/\"\n}',_binary '\0',NULL,NULL),(217309254481084416,NULL,'base','APP_9LY41OaKSqk2btY0','jvFyQdjU6IzEiqyic5TaWYPTuwjQAX','INDUSTRY_APP','application/c5ae9a1480ab477c8ac9a35641cd23e2/base.jpg','application/5ff027f44d1041ca88f0d81264e93ef8/base.jpg',NULL,'','','','//www.demo.uavcmlc.com/base/#/','//www.demo.uavcmlc.com/base/#/oauth',NULL,43,_binary '\0',_binary '',_binary '\0','2022-03-11 07:49:24',1,'2024-07-09 01:45:09',188243415207510016,_binary '\0',NULL,'{\n \"url\": \"/base/\", \n \"devUrl\": \"/base/\"\n}',_binary '\0',NULL,NULL),(218767711973408768,NULL,'green','APP_VNsPETiwZpNBFmrT','ZOwPAnQKA1rByY2TabLfJsbGFYMS7T','INDUSTRY_APP','application/image/b54ee5088ef84bbf852bd0957acc0849/downloadFileByToken.png','application/image/c2f26e9baba84e6cb52565019e354f72/downloadFileByToken.png',NULL,'','','',' //www.demo.uavcmlc.com:18000/green/#/green',' //www.demo.uavcmlc.com/green/#/auth',NULL,36,_binary '\0',_binary '\0',_binary '\0','2022-03-15 08:24:47',1,'2024-01-31 05:56:57',188243415207510016,_binary '',NULL,'{\n \"url\": \"/green/\", \n \"devUrl\": \"/#/green\"\n}',_binary '\0',NULL,NULL),(224170096870817792,NULL,'supervision','APP_qqSu82THfexI8PLM','UJgOiLmMd4zk56Gy5Uw25MH91CijC5','INDUSTRY_APP','application/image/cce5cd8577804be3bd2a8d7d55235bde/政府监管.png','application/image/5c3029e90ba645459e8d7c62971043c1/政府监管.png',NULL,'','','','//www.demo.uavcmlc.com/supervision/#/screen','//www.demo.uavcmlc.com/supervision/#/oauth',NULL,41,_binary '\0',_binary '\0',_binary '\0','2022-03-30 06:11:56',1,'2024-02-22 07:11:15',188243415207510016,_binary '',NULL,'{\n \"url\": \"/supervision/\",\n \"devUrl\": \"/#/supervision\"\n}',_binary '\0','solution-supervision',NULL),(224558648645386240,NULL,'inspection','APP_1QeaPD3Kd90jPh88','ca3jizLkl984XmXbicRHqd2cA2pMxN','INDUSTRY_APP','application/c45542888e7d4f3aa3ac87de5dc36bcf/hot.png','application/7b79c9dacb8948c7891f54b84f12c9e2/hot.png',NULL,'','','',' //www.demo.uavcmlc.com:18000/inspection/#/inspection',' //www.demo.uavcmlc.com:18000/inspection/#/auth',NULL,30,_binary '\0',_binary '\0',_binary '\0','2022-03-31 07:55:54',1,'2022-09-22 01:27:24',199120334480211968,_binary '\0',NULL,'{\n \"url\": \"/inspection/\", \n \"devUrl\": \"/#/inspection\"\n}',_binary '\0',NULL,NULL),(239746594734342144,NULL,'tlcp','APP_pWf3ddV5e6HXrSVG','AFC8lDbSDIfXT7Zo499H9RT6blyV3y','DATA_APP','application/image/e9bceb123e6f4bbd8991686f78f2dda8/低空图像处理.png','application/image/2826e5ac6d1148ba966375a75b667e33/低空图像处理.png',NULL,'','','https://www.demo.uavcmlc.com:18000','','http://222.128.5.18:32092/tlcp/f/autoLogin',NULL,20,_binary '\0',_binary '\0',_binary '\0','2022-05-12 05:47:22',188243415207510016,'2024-04-23 03:00:10',188243415207510016,_binary '\0',NULL,NULL,_binary '\0',NULL,'https://www.demo.uavcmlc.com:18000'),(244750226999476224,NULL,'park','APP_OoWgL4xwb2TJIAHv','SmKxxmZhV8ZwZ29zw2xI9XZ9GWhK8N','INDUSTRY_APP','application/6c212baaa8894fb6bd5e85a7e5a1c80b/park.png','application/76a501cd89414c12b7d8d91e8571df88/park.png',NULL,'','','','//www.demo.uavcmlc.com:18000/#/park','//www.demo.uavcmlc.com/#/park',NULL,37,_binary '\0',_binary '\0',_binary '\0','2022-05-26 01:10:01',1,'2024-01-31 05:56:39',188243415207510016,_binary '',NULL,'{\n \"url\": \"/park/\",\n \"devUrl\": \"/#/park\"\n}',_binary '\0',NULL,NULL),(245144849337024512,NULL,'tejin_tdoa','APP_3RmcJaecdbsvQwZn','t6Mix1LI30UjPWvx42KfrkAPVwxIm7','DATA_APP','application/image/a994d2cb701545bca2a390515f66cd49/无人机探测与反制.jpg','application/image/f9d2e188601148b3a05aba53c0f266a4/无人机探测与反制.jpg',NULL,'','','https://www.demo.uavcmlc.com','','https://demo.terjin.com:30043/api/v1/uavcmlc/callback',NULL,24,_binary '\0',_binary '\0',_binary '\0','2022-05-27 03:18:07',1,'2024-02-28 01:48:19',188243415207510016,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(249904145316708352,NULL,'RISK_CENSUS','APP_X4KkxRzeqPyE0b1f','GbXMOiR2UZt07VPLmPnJZJ3O5KGYNz','INDUSTRY_APP','application/1101a1d09b8f4749ad768cb3818b5ba8/行业应用封面-应急3.jpg','application/997c883960784da289c8cff054412669/行业应用封面-应急3.jpg',NULL,'','','https://www.demo.uavcmlc.com:18000/','','http://118.114.172.141:51103/#/autologin',NULL,31,_binary '\0',_binary '\0',_binary '\0','2022-06-09 06:29:51',188243415207510016,'2023-02-27 07:57:03',188243415207510016,_binary '',NULL,NULL,_binary '',NULL,NULL),(254620518227902464,NULL,'pangu','APP_YXXwlSJI0eIj0qoA','8Lipq3O6RGJRyyG97dfEBAEdLyDbJM','INDUSTRY_APP','application/57157877754b41278cf26aa1641a6c15/common.jpg','application/b6701999825646b18705055f39df67c4/common.jpg',NULL,'','','','pangu','pangu',NULL,44,_binary '\0',_binary '\0',_binary '\0','2022-06-22 06:51:02',188243415207510016,'2023-07-10 02:17:41',188243415207510016,_binary '','','{\n \"url\": \"/pangu/\", \n \"devUrl\": \"/\"\n}',_binary '\0','',''),(254624518264324096,NULL,'patrol','APP_aDxbkOxldQw2GW6h','c4StkfbInqvF67PMha18EY2L75Qdl5','INDUSTRY_APP','application/8aacc151bef24e729031702c91bea920/screenshot-1.png','application/854eb3581a6a476088244d17454047e6/screenshot-1.png',NULL,'','','http://yc.flision.com:9302/login','','http://yc.flision.com:9302/login',NULL,33,_binary '\0',_binary '\0',_binary '\0','2022-06-22 07:06:56',188243415207510016,'2023-07-10 02:17:41',188243415207510016,_binary '','','',_binary '\0','',''),(254659367012401152,NULL,'5G_linxot','APP_GggMNtv9QlP4c9Or','x9BhQATDco7PVJufPq2FCwe2Ond03b','DATA_APP','application/1be55b8ac7764e6689da4ae7c51747e7/sentry_T0BSL000AN.jpg','application/c9475aefc8e5485b9670f3ab7ae07895/sentry_T0BSL000AN.jpg',NULL,'','','home','','https://sentry.dev.linxot.com',NULL,23,_binary '\0',_binary '\0',_binary '\0','2022-06-22 09:25:24',199120334480211968,'2024-04-23 05:47:00',188243415207510016,_binary '\0','','',_binary '\0','',''),(256733978294222848,NULL,'tudou_sensing','APP_HqVAZZ55EWfLQ063','9oC7hnsHHJTo5PkO08XUBIWDRcxQPx','DATA_APP','application/da58389bec32438f8d6c94527ed70f8f/在线智能遥感.png','application/a1d37fcd97fc4951b75707f28311d170/在线智能遥感.png',NULL,'','','https://www.demo.uavcmlc.com:18000','','https://isv-rsi.i-tudou.com/login/oauth2/code/PANGU-RSI',NULL,22,_binary '\0',_binary '\0',_binary '\0','2022-06-28 02:49:10',188243415207510016,'2023-02-06 01:52:44',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000'),(257529594561691648,NULL,'emersupport','APP_aGsTAY1uMZrpKdfk','FFkDqqDLTIBwct6xHGOtQOEU6F8qM0','INDUSTRY_APP','application/image/c79a170efff94f66af723c4921afedf8/emergency.png','application/image/e87afae4eb044f8da4760d0ff4b4c3d5/emergency.png',NULL,'','','','//lab.uavcmlc.com/devflight/emersupport/','//lab.uavcmlc.com/devflight/emersupport/#/oauth',NULL,35,_binary '\0',_binary '\0',_binary '','2022-06-30 07:30:40',1,'2022-06-30 07:33:33',188243415207510016,_binary '',NULL,NULL,_binary '\0',NULL,NULL),(257530550208692224,NULL,'communication','APP_pRD4netwRenuNWYt','1Ua2GLN3aaj2K6udJBtrLwuwnYOFOv','INDUSTRY_APP','application/92f33c996acb46d8b3bddaa9ea2d1437/行业应用封面-应急通信.jpg','application/ad29297ae731479bb9a3c204a55fb489/行业应用封面-应急通信.jpg',NULL,'','','','//www.demo.uavcmlc.com:18000','//www.demo.uavcmlc.com/#/communication',NULL,39,_binary '\0',_binary '\0',_binary '\0','2022-06-30 07:34:28',1,'2024-01-31 05:56:22',188243415207510016,_binary '',NULL,'{\n \"url\": \"/communication/\", \n \"devUrl\": \"/#/communication\"\n}',_binary '\0','solution-communication',NULL),(262610103520198656,NULL,'fire_emergency','APP_sbp9mWGgvgmFVNKc','aW5nOiw7eXZltikAf7LJBAFPRXSvsB','DATA_APP','application/c3af5b396c1d4cbf8adc4ac59c0a3ba3/森林防火.jpg','application/13be206a483e4681aa71ac2a877bb902/森林防火.jpg',NULL,'','','https://www.demo.uavcmlc.com:18000','','http://117.139.13.157:25057/#/autologin',NULL,25,_binary '\0',_binary '\0',_binary '\0','2022-07-14 07:58:48',188243415207510016,'2022-09-23 03:05:51',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000'),(266603863711154176,NULL,'infrastructure','APP_kvVZWQ2VDP64l5Hk','53p01DcMIIiekFuGu33GC8wV34hd7A','INDUSTRY_APP','application/abc66ec5350c4424a8e8cb2922707b33/基础设施.jpeg','application/3730af9be6654e32b972184ddb9f5a5e/基础设施.jpeg',NULL,'','','','//www.demo.uavcmlc.com:18000/infrastructure/','//www.demo.uavcmlc.com:18000/infrastructure/#/oauth',NULL,42,_binary '\0',_binary '\0',_binary '\0','2022-07-25 08:28:34',1,'2023-07-10 02:17:41',199120334480211968,_binary '',NULL,'{\n \"url\": \"/infrastructure/\",\n \"devUrl\": \"/#/infrastructure/\"\n}',_binary '\0',NULL,NULL),(273132440472518656,NULL,'nematode','APP_OUrP03UOTECGIxH8','1o8wSV6iJyZZnx17tgTx54gPc4UKHu','DATA_APP','application/4465fd830cac43959a83f985788dd977/松材线虫病疫情普查平台.png','application/9445f6f4601447099e6372635d855c48/松材线虫病疫情普查平台.png',NULL,'','','http://47.96.112.120:8012','','http://47.96.112.120:8012/cyycallback',NULL,26,_binary '\0',_binary '\0',_binary '\0','2022-08-12 08:50:48',188243415207510016,'2023-02-06 01:52:34',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000/'),(275322748887105536,NULL,'HUB_ONE','APP_k5cbUcneptCuDAMM','AAKkMCTrtaQZgQqiFee3aH6CHd4haW','INDUSTRY_APP','application/79c2215a1f3a48d781ea8a8372e666d9/哈勃.png','application/16c51f88d47c44ce9bb52c6f094d6dc2/哈勃.png',NULL,'','','http://192.168.34.201:9527/#/redirect','','http://192.168.34.201:9527/callback.html',NULL,29,_binary '\0',_binary '',_binary '\0','2022-08-18 09:54:19',188243415207510016,'2023-02-08 03:09:16',188243415207510016,_binary '\0','','',_binary '','','https://www.demo.uavcmlc.com:18000/'),(275323102710202368,NULL,'TIANXUN','APP_z1aks5MqgKXJ9hry','gZu6imM4XZDlB9olasmX2tG5uczior','INDUSTRY_APP','application/8e02ce844efd456e9cfeb61a219d0ff8/低空组网.jpg','application/6b2561f559ba4837a1d59a1739abeaa8/低空组网.jpg',NULL,'','','/','','https://192.168.34.33:19092/callback.html',NULL,28,_binary '\0',_binary '',_binary '\0','2022-08-18 09:55:43',188243415207510016,'2023-02-08 03:09:23',188243415207510016,_binary '\0','','',_binary '','','http://192.168.34.37:18000'),(279567198865850368,NULL,'media','APP_4AU8lbifESQO4FD6','FK1BraFkJpsiN48GS3JuXtrxreWUrM','DATA_APP','application/05ce86581d584dab8bcee950429ad66f/视频流媒体.jpg','application/89a62061854747a1a0ca8593094ead5e/视频流媒体.jpg',NULL,'','','','//www.demo.uavcmlc.com/media/#/','//www.demo.uavcmlc.com/media/#/oauth',NULL,27,_binary '\0',_binary '\0',_binary '\0','2022-08-30 03:00:14',1,'2024-02-22 06:31:25',89730635001757696,_binary '','','',_binary '\0','',''),(287875985993367552,NULL,'tudou_3d','APP_uzUqFHEchpNE8ZwX','DnG3f9wUifQFZp5ypOsDaUfAf4ueGw','DATA_APP','application/271618f84345454da0ed5225c350554f/实景三维.png','application/0e284a1b295448f0af781ead91cb5433/实景三维.png',NULL,'','','https://www.demo.uavcmlc.com:18000','','https://isv-3dacqm.i-tudou.com/login/oauth2/code/PANGU-3DACQ',NULL,21,_binary '\0',_binary '\0',_binary '\0','2022-09-22 01:16:24',188243415207510016,'2023-04-19 01:41:23',188243415207510016,_binary '\0','','',_binary '\0','','https://www.demo.uavcmlc.com:18000'),(363014007424417792,NULL,'jiangsuwenlv','APP_Q61lT2i6zhnf5pvo','NKho6J808qIdljNDz9HlNPYzB40eeW','PARTNER_APP','application/58afe9313be64cbab6c3b3371c840ab4/test.jpg','application/c8c13a437fc14e4ebf951980866dba84/test.jpg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,45,_binary '\0',_binary '\0',_binary '\0','2023-04-17 09:28:04',89730635001757696,'2024-02-27 03:57:02',89730635001757696,_binary '\0','','{\"userId\":\"699\"}',_binary '\0','',''),(363327831185686528,NULL,'Jiangsu-Cultural-Tourism','APP_0gcpNH4hHhB3sSvK','tuv59VCiNkwj363JNudxU0Ou5HwGXX','PARTNER_APP','https://minio.ig-dev.uavcmlc.com/pub-cms/https://minio.ig-devflight.uavcmlc.com/pub-cms/application/c616cf89f43c4269b54e4918f21cb29d/green.png','https://minio.ig-dev.uavcmlc.com/pub-cms/https://minio.ig-devflight.uavcmlc.com/pub-cms/application/c76bff4815104e1d8ced72504df52a37/green.png',NULL,'','','','https://lab.uavcmlc.com/','https://lab.uavcmlc.com/',NULL,44,_binary '\0',_binary '\0',_binary '','2023-04-18 06:15:05',1,'2023-04-18 06:15:53',188243415207510016,_binary '\0','','{\"userId\":\"474\",\"checkTime\":\"false\"}',_binary '\0','',''),(363329215444549632,NULL,'QinghaiWenLv','APP_OqOQxwHnYizTFEu4','dUYZkHSL9KWAjyhIglrOXAHBkccq5h','PARTNER_APP','application/fa94bdfbf7664d9083dd5096e3f5f84e/青海湖.jpg','application/4e8bb4fee5124597860a1f5fb40ffa24/青海湖.jpg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,46,_binary '\0',_binary '\0',_binary '\0','2023-04-18 06:20:35',188243415207510016,'2024-02-27 03:56:53',89730635001757696,_binary '\0','','',_binary '\0','',''),(365173608686157824,NULL,'runtoint','APP_lkAjaqyoJIYqQhmc','pb5u74UdOMTKLfrQ2JgePuqKCrV4a6','DATA_APP','application/d4bdfcc2beef4d82b3e43411052bc9bf/润图智能.png','application/1dd517491af447a19e41280b70e571b5/润图智能.png',NULL,'','','https://runtoint.com:21800/ssoLogin','','https://runtoint.com:21800/ssoLogin',NULL,47,_binary '\0',_binary '',_binary '\0','2023-04-23 08:29:33',188243415207510016,'2023-08-08 09:02:10',188243415207510016,_binary '\0','','',_binary '\0','',''),(374257704400846848,NULL,'pilot_app','APP_aCOx0NkGTtMweRRL','QizpfQR5mfSkyUykMasBvSGW2HXbqt','CLIENT_APP','https://minio.ig-test.uavcmlc.com:31500/pub-cms/https://minio.ig-dev.uavcmlc.com/pub-cms/application/d8d70cda1027440e8efcd980bf914848/数据分级分类.png','https://minio.ig-test.uavcmlc.com:31500/pub-cms/https://minio.ig-dev.uavcmlc.com/pub-cms/application/ca186241a6274824a4d7114371f9f823/数据分级分类.png',NULL,'','','','https://lab.uavcmlc.com/','https://lab.uavcmlc.com/',NULL,48,_binary '\0',_binary '\0',_binary '\0','2023-05-18 10:06:30',1,'2023-07-10 02:17:41',1,_binary '','','',_binary '\0','',''),(375599197049585664,NULL,'fireRescue','APP_2O6gzQqdt1gVGByW','zkfiUzFLq5yvjyboWLtlUKMhqKNIeM','INDUSTRY_APP','application/80472b96e19a4876933b517a9ba0f070/poster.png','application/8944dfc54d75496fa3d512ef0e0d0aa9/poster.png',NULL,'','','','//www.demo.uavcmlc.com:18000/#/fireRescue','//www.demo.uavcmlc.com/#/fireRescue',NULL,32,_binary '\0',_binary '\0',_binary '\0','2023-05-22 02:57:07',1,'2024-01-31 05:57:18',188243415207510016,_binary '','','{ \"url\": \"/fireRescue/\", \"devUrl\": \"/#/fireRescue\" }',_binary '\0','',''),(389735663221211136,NULL,'armypeople','APP_UIegse6Lfou9pO1U','iCyoZXtzuTWR89BevVltbs5JnvXiGw','INDUSTRY_APP','application/71f392e20c2d46cfb981548c68821ecc/行业应用封面-军民融合.jpeg','application/8b41a71e7af9407eac5e8016267b2da9/行业应用封面-军民融合.jpeg',NULL,'','','','//www.demo.uavcmlc.com/armypeople/','//www.demo.uavcmlc.com/armypeople/#/oauth',NULL,40,_binary '\0',_binary '\0',_binary '\0','2023-06-30 03:10:23',1,'2024-07-22 07:08:42',188243415207510016,_binary '','','{ \"url\": \"/armypeople/\", \"devUrl\": \"/#/armypeople\" }',_binary '\0','',''),(403580659618807808,NULL,'heilongjiangtieta','APP_e98donoShXhPfUeb','9IJDL5qtV2h2z73WgQXJXqTM6smJoY','INDUSTRY_APP','application/9ae6e6d191a847978ccb4ee9c43c6b5c/test.jpg','application/9ef93a790bfc4a448c2a75f930b70f40/test.jpg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,49,_binary '\0',_binary '\0',_binary '\0','2023-08-07 08:05:27',89730635001757696,'2024-04-19 12:57:35',188243415207510016,_binary '\0','','{\"userId\":\"1170\",\"checkTime\":\"false\"}',_binary '\0','',''),(439357001011167232,NULL,'threedsimulation','APP_WXC98VROH3JWNUcw','u6CejHtLd124CSYSsoWtikhh02uaGA','DATA_APP','application/5984e33e1b5c465db9b164cad1148016/三维仿真.png','application/1bac566b6771460390363eec99e03af0/三维仿真.png',NULL,'','','',' //www.demo.uavcmlc.com/threedsimulation/',' //www.demo.uavcmlc.com/threedsimulation/',NULL,50,_binary '\0',_binary '\0',_binary '\0','2023-11-14 01:27:52',188243415207510016,'2024-02-27 03:56:44',89730635001757696,_binary '','','',_binary '\0','',''),(496451435245338624,NULL,'guangzhoucompany','APP_4pOYDvnA55Xupznq','HYEGIMQaOOe7gjrJ62naS52fRMACkA','INDUSTRY_APP','application/e61a366c169441b590a8f6aea9a62895/wu2.jpeg','application/9a322726ebbc471e8091edc6e86fcd7d/wu2.jpeg',NULL,'','','','https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,51,_binary '\0',_binary '\0',_binary '\0','2024-04-19 14:40:46',188243415207510016,'2024-04-19 14:41:26',188243415207510016,_binary '\0','中国移动通信集团广东有限公司广州分公司','{\"userId\":\"1170\",\"checkTime\":\"false\"}',_binary '\0','',''),(515946878100832256,NULL,'zhuhailianzhoucompany','APP_m524AblyDIK4I4QT','ryiieNsKBtU3PsqKk0RQaQzbCMIGjp','INDUSTRY_APP','application/0fb66500df85420fbbd9437aa9e5d27c/禅思 X5S.jpg','application/a4231ca5f8114f589cb010291d652510/禅思 X5S.jpg',NULL,'','','',' https://www.demo.uavcmlc.com/','https://www.demo.uavcmlc.com/',NULL,52,_binary '\0',_binary '\0',_binary '\0','2024-06-12 09:48:42',188243415207510016,'2024-06-12 09:48:42',188243415207510016,_binary '\0','珠海莲洲机场5G-A通感演示','{\"userId\":\"1222\",\"checkTime\":\"false\"}',_binary '\0','',''),(559703013587156992,NULL,'sz_idea','APP_ezhJe6BZFIcWK52h','aRLMrU1j4sPWTxc4drusW6Idb52FIy','PARTNER_APP','application/8b4b6248ed064159a9b56d198c265f4f/行业应用封面-应急3.jpg','application/52f5fbb97b584375877a4da87be61474/行业应用封面-应急3.jpg',NULL,'','','','//','//',NULL,53,_binary '\0',_binary '\0',_binary '\0','2024-10-11 03:39:57',188243415207510016,'2024-10-12 02:44:58',188243415207510016,_binary '\0','','{\"userId\":\"915\"}',_binary '\0','',''),(561943000960598016,NULL,'sz_scj','APP_Y3Y4WynWsFYtr14z','6OjNTpixXgENEwECiQEwHZsEbkCMXL','PARTNER_APP','application/2362e9fb06e14b78ac0db7b327e9c424/base.jpg','application/1b241d1bcd24401fba403304668963a1/base.jpg',NULL,'','','https://www.demo.uavcmlc.com/','','http',NULL,54,_binary '\0',_binary '\0',_binary '\0','2024-10-17 08:00:52',188243415207510016,'2024-10-17 08:00:52',188243415207510016,_binary '\0','','{\"userId\":\"915\"}',_binary '\0','',''); /*!40000 ALTER TABLE `sys_platform` ENABLE KEYS */; UNLOCK TABLES; @@ -42,7 +42,7 @@ UNLOCK TABLES; LOCK TABLES `sys_platform_attr` WRITE; /*!40000 ALTER TABLE `sys_platform_attr` DISABLE KEYS */; -INSERT INTO `sys_platform_attr` VALUES (51691311312404480,0,'agriculture','zh_CN','农林植保','2022-06-22 07:08:16','188243415207510016'),(51691311324987392,0,'agriculture','zh_TW','農林植保','2022-06-22 07:08:16','188243415207510016'),(51691311333376000,0,'agriculture','en_US','Agriculture','2022-06-22 07:08:16','188243415207510016'),(51691311350153216,1,'agriculture','zh_CN','实时监测农作物的生长情况,融合高管普遥感技术可分析病虫害险情,基于数据处理与分析系统,可实现农业信息长期监测,为估产提供有力依据。','2022-06-22 07:08:16','188243415207510016'),(51691311358541824,1,'agriculture','zh_TW','實時監測農作物的生長情況,融合高管普遙感技術可分析病蟲害險情,基於數據處理與分析系統,可實現農業信息長期監測,為估產提供有力依據。','2022-06-22 07:08:16','188243415207510016'),(51691311366930432,1,'agriculture','en_US','','2022-06-22 07:08:16','188243415207510016'),(51691621300830208,0,'army','zh_CN','军事管理','2022-06-22 07:08:38','188243415207510016'),(51691621305024512,0,'army','zh_TW','軍事管理','2022-06-22 07:08:38','188243415207510016'),(51691621313413120,0,'army','en_US','Army','2022-06-22 07:08:38','188243415207510016'),(51691621330190336,1,'army','zh_CN','无人机搭载光电、雷达等传感器,通过视频回传无人机扫描到的作战环境,可实现高速信息扫描,为军队提供实时情报支持。','2022-06-22 07:08:38','188243415207510016'),(51691621334384640,1,'army','zh_TW','無人機搭載光電、雷達等傳感器,通過視頻回傳無人機掃描到的作戰環境,可實現高速信息掃描,為軍隊提供實時情報支持。','2022-06-22 07:08:38','188243415207510016'),(51691621342773248,1,'army','en_US','','2022-06-22 07:08:38','188243415207510016'),(51691918702149632,0,'Inspect','zh_CN','巡查巡检','2022-06-22 07:08:33','188243415207510016'),(51691918710538240,0,'Inspect','zh_TW','巡查巡檢','2022-06-22 07:08:33','188243415207510016'),(51691918714732544,0,'Inspect','en_US','Inspect','2022-06-22 07:08:33','188243415207510016'),(51691918739898368,1,'Inspect','zh_CN','利用无人机搭载专业巡查设备,实时回传周边环境,利用图像识别技术,实现从锁定巡查目标、自动检测识别、自动出具报告的全流程闭环。','2022-06-22 07:08:33','188243415207510016'),(51691918748286976,1,'Inspect','zh_TW','利用無人機搭載專業巡查設備,實時回傳周邊環境,利用圖像識別技術,實現從鎖定巡查目標、自動檢測識別、自動報告的全流程閉環。','2022-06-22 07:08:33','188243415207510016'),(51691918756675584,1,'Inspect','en_US','','2022-06-22 07:08:33','188243415207510016'),(51692572552200192,0,'fire','zh_CN','城市消防','2022-06-22 07:08:25','188243415207510016'),(51692572556394496,0,'fire','zh_TW','城市消防','2022-06-22 07:08:25','188243415207510016'),(51692572564783104,0,'fire','en_US','fire','2022-06-22 07:08:25','188243415207510016'),(51692572589948928,1,'fire','zh_CN','以三维地图构建城市立体空间网,面对突发情况,第一时间迅速响应,远程调度最近的救援设备,实时追踪灾情变换情况、调整应急策略。','2022-06-22 07:08:25','188243415207510016'),(51692572602531840,1,'fire','zh_TW','以三維地圖構建城市立體空間網,面對突發情況,第一時間迅速響應,遠程調度最近的救援設備,實時追踪災情變換情況、調整應急策略。','2022-06-22 07:08:25','188243415207510016'),(51692572615114752,1,'fire','en_US','','2022-06-22 07:08:25','188243415207510016'),(51692759592992768,0,'port','zh_CN','智慧港口','2022-06-22 07:08:44','188243415207510016'),(51692759601381376,0,'port','zh_TW','智慧港口','2022-06-22 07:08:44','188243415207510016'),(51692759605575680,0,'port','en_US','Port','2022-06-22 07:08:44','188243415207510016'),(51692759622352896,1,'port','zh_CN','基于二三维GIS可视化管理港口区域环境和设备设施,应用于船舶管理、泊位管理、货物监管、人员监管、告警管理等作业任务。','2022-06-22 07:08:44','188243415207510016'),(51692759626547200,1,'port','zh_TW','基於二三維GIS可視化管理港口區域環境和設備設施,應用於船舶管理、泊位管理、貨物監管、人員監管、告警管理等作業任務。','2022-06-22 07:08:44','188243415207510016'),(51692759630741504,1,'port','en_US','','2022-06-22 07:08:44','188243415207510016'),(51693429863743488,0,'traffic','zh_CN','智慧交通','2023-05-19 01:19:25','89730635001757696'),(51693429872132096,0,'traffic','zh_TW','智慧交通','2023-05-19 01:19:25','89730635001757696'),(51693429876326400,0,'traffic','en_US','Intelligent Traffic','2023-05-19 01:19:25','89730635001757696'),(51693429893103616,1,'traffic','zh_CN','采用高空视频监控,实时抓拍取证、劝阻纠正交通违反行为,远程喊话指挥疏导拥堵路段,利用交通大数据优化道路红绿灯、摄像头等设置。','2023-05-19 01:19:25','89730635001757696'),(51693429901492224,1,'traffic','zh_TW','採用高空視頻監控,實時抓拍取證、勸阻糾正交通違反行為,遠程喊話指揮疏導擁堵路段,利用交通大數據優化道路紅綠燈、攝像頭等設置。','2023-05-19 01:19:25','89730635001757696'),(51693429905686528,1,'traffic','en_US','','2023-05-19 01:19:25','89730635001757696'),(51694291180847104,0,'infrared','zh_CN','红外遥感','2021-03-30 02:16:01','89730635001757696'),(51694291189235712,0,'infrared','zh_TW','紅外遙感','2021-03-30 02:16:01','89730635001757696'),(51694291193430016,0,'infrared','en_US','Infrared','2021-03-30 02:16:01','89730635001757696'),(51694291214401536,1,'infrared','zh_CN','基于物体辐射红外线的物理特性,来测得物体红外辐射强度、波段和温度,从而识别伪装并可进行夜间观察,用于寻找地下热源、发现森林火灾、监视农作物病虫害等。','2021-03-30 02:16:01','89730635001757696'),(51694291222790144,1,'infrared','zh_TW','基於物件輻射紅外線的物理特性,檢測物體紅外輻射強度、波段和溫度,從而識別偽裝並可進行夜間觀察,用於尋找地下熱源、發現森林火災、監視農作物病蟲害等。','2021-03-30 02:16:01','89730635001757696'),(51694291226984448,1,'infrared','en_US','','2021-03-30 02:16:01','89730635001757696'),(51694469224857600,0,'material','zh_CN','素材仓库','2024-02-27 03:55:29','89730635001757696'),(51694469229051904,0,'material','zh_TW','素材倉庫','2024-02-27 03:55:29','89730635001757696'),(51694469233246208,0,'material','en_US','Material','2024-02-27 03:55:29','89730635001757696'),(51694469250023424,1,'material','zh_CN','基于元数据的方式对文件分类管理,可将数据存储在安全的云端数据库中,可随时快速索引,也能便于网络分享中随时检索。','2024-02-27 03:55:29','89730635001757696'),(51694469254217728,1,'material','zh_TW','基於中繼資料的管道對檔案分類管理,可將資料存儲在安全的雲端資料庫中,可隨時快速索引,也能便於網絡分享中隨時檢索。','2024-02-27 03:55:29','89730635001757696'),(51694469312937984,1,'material','en_US','The file classification management based on metadata can store the data in a secure cloud database, which can be quickly indexed at any time, and can also be easily retrieved in network sharing at any','2024-02-27 03:55:29','89730635001757696'),(51700779177738240,0,'ai','zh_CN','AI大脑','2024-02-28 07:34:26','188243415207510016'),(51700779181932544,0,'ai','zh_TW','AI大腦','2024-02-28 07:34:26','188243415207510016'),(51700779190321152,0,'ai','en_US','AI','2024-02-28 07:34:26','188243415207510016'),(51700779207098368,1,'ai','zh_CN','基于强大的算法引擎与大数据处理能力,从数据接入到模型构建,从模型构建再到场景化应用。','2024-02-28 07:34:26','188243415207510016'),(51700779211292672,1,'ai','zh_TW','基於強大的算法引擎與大數據處理能力,從數據接入到模型構建,從模型構建再到場景化應用。','2024-02-28 07:34:26','188243415207510016'),(51700779215486976,1,'ai','en_US','','2024-02-28 07:34:26','188243415207510016'),(51700961588019200,0,'simulation','zh_CN','仿真规划','2023-04-19 01:43:19','188243415207510016'),(51700961596407808,0,'simulation','zh_TW','仿真規劃','2023-04-19 01:43:19','188243415207510016'),(51700961600602112,0,'simulation','en_US','Simulation','2023-04-19 01:43:19','188243415207510016'),(51700961617379328,1,'simulation','zh_CN','提供面向对象的图形化建模功能,可以快速构建与实际系统高度相似的组态画面,用于路径损耗计算、信号覆盖预测等。','2023-04-19 01:43:19','188243415207510016'),(51700961621573632,1,'simulation','zh_TW','提供面向對象的圖形化建模功能,可以快速構建與實際系統高度相似的組態畫面,用於路徑損耗計算、信號覆蓋預測等。','2023-04-19 01:43:19','188243415207510016'),(51700961629962240,1,'simulation','en_US','','2023-04-19 01:43:19','188243415207510016'),(51701172544733184,0,'hyperspectral','zh_CN','高光谱遥感','2021-08-16 08:51:58','1'),(51701172553121792,0,'hyperspectral','zh_TW','高光譜遙感','2021-08-16 08:51:58','1'),(51701172561510400,0,'hyperspectral','en_US','Hyperspectral','2021-08-16 08:51:58','1'),(51701172586676224,1,'hyperspectral','zh_CN','基于高精度 、高效率的图像分类与检测软件算法,识别弱指纹信息、精细区分相似地物 、检测识别弱目标、生成分类专题图,支持大部分环境监测和资源探测应用。','2021-08-16 08:51:58','1'),(51701172595064832,1,'hyperspectral','zh_TW','基於高精度、高效率的圖像分類與檢測軟件算法,識別弱指紋信息、精細區分相似地物、檢測識別弱目標、生成分類專題圖,支持大部分環境監測和資源探測應用。','2021-08-16 08:51:58','1'),(51701172607647744,1,'hyperspectral','en_US','','2021-08-16 08:51:58','1'),(51701358411120640,0,'e-commerce','zh_CN','电商平台','2021-03-30 02:19:41','89730635001757696'),(51701358419509248,0,'e-commerce','zh_TW','電商平臺','2021-03-30 02:19:41','89730635001757696'),(51701358423703552,0,'e-commerce','en_US','E-commerce','2021-03-30 02:19:41','89730635001757696'),(51701358436286464,1,'e-commerce','zh_CN','覆盖全行业全场景的软件产品及硬件设备的电商销售,线上全渠道开通订单服务,打造智慧无人机行业电商生态链。','2021-03-30 02:19:41','89730635001757696'),(51701358444675072,1,'e-commerce','zh_TW','覆蓋全行業全場景的軟件產品及硬件設備的電商銷售,線上全渠道開通訂單服務,打造智慧無人機行業電商生態鏈。','2021-03-30 02:19:41','89730635001757696'),(51701358448869376,1,'e-commerce','en_US','','2021-03-30 02:19:41','89730635001757696'),(51701528666308608,0,'qualification','zh_CN','资质认证','2021-03-30 02:19:26','89730635001757696'),(51701528674697216,0,'qualification','zh_TW','資質認證','2021-03-30 02:19:26','89730635001757696'),(51701528683085824,0,'qualification','en_US','Qualification','2021-03-30 02:19:26','89730635001757696'),(51701528699863040,1,'qualification','zh_CN','开设AOPA、UTC等培训的线上课堂,提供理论+实操+模拟的培训课程,助学员轻松通过各种无人机资质认证。','2021-03-30 02:19:26','89730635001757696'),(51701528704057344,1,'qualification','zh_TW','開設AOPA、UTC等培訓的線上課堂,提供理論+實操+模擬的培訓課程,助學員輕鬆通過各種無人機資質認證。','2021-03-30 02:19:26','89730635001757696'),(51701528708251648,1,'qualification','en_US','','2021-03-30 02:19:26','89730635001757696'),(51701711194030080,0,'data','zh_CN','数据运营','2021-04-01 01:28:37','1'),(51701711198224384,0,'data','zh_TW','數據運營','2021-04-01 01:28:37','1'),(51701711202418688,0,'data','en_US','Data','2021-04-01 01:28:37','1'),(51701711219195904,1,'data','zh_CN','提供多种数据源的实时采集与建模,深度洞察用户方案,帮企业用数据驱动产品改进及监控运营,可实现多维度,精细化的统计分析,让数据成为企业核心资产。','2021-04-01 01:28:37','1'),(51701711227584512,1,'data','zh_TW','提供多種數據源的實時採集與建模,深度洞察用戶方案,幫企業用數據驅動產品改進及監控運營,可實現多維度,精細化的統計分析,讓數據成為企業核心資產。','2021-04-01 01:28:37','1'),(51701711231778816,1,'data','en_US','','2021-04-01 01:28:37','1'),(92183252399292416,0,'3DVisual','zh_CN','三维可视化','2021-07-30 10:00:56','1'),(92183252407681024,0,'3DVisual','zh_TW','三維可視化','2021-07-30 10:00:56','1'),(92183252416069632,0,'3DVisual','en_US','ThreeD Visualization','2021-07-30 10:00:56','1'),(92183252437041152,1,'3DVisual','zh_CN','基于3D可视化技术,可对多源异构数据进行图层管理,从而构建包含GIS地图、点云数据、单体模型的三维空间,可应用于电力巡检、地形勘测等场景','2021-07-30 10:00:57','1'),(92183252445429760,1,'3DVisual','zh_TW','','2021-07-30 10:00:57','1'),(92183252449624064,1,'3DVisual','en_US','','2021-07-30 10:00:57','1'),(136168235488772096,0,'modelv2','zh_CN','二维建图与三维建模','2024-02-27 03:55:48','89730635001757696'),(136168235497160704,0,'modelv2','zh_TW','二維建圖與三維建模','2024-02-27 03:55:48','89730635001757696'),(136168235505549312,0,'modelv2','en_US','2D drafting and 3D modelling','2024-02-27 03:55:48','89730635001757696'),(136168235518132224,1,'modelv2','zh_CN','基于正射影像、倾斜摄影,运用图片结合建模技术,整合当前城市建筑、树木特征点,勾勒出属于城市的2D、3D信息,提供多源异构数据的可视化能力,可应用于电力巡检、地形勘测、矿山建模等场景。','2024-02-27 03:55:48','89730635001757696'),(136168235522326528,1,'modelv2','zh_TW','基於傾斜攝影,運用圖片結合信息技術,整合當前城市建築、樹木特徵,勾勒出屬於城市的3D信息。','2024-02-27 03:55:48','89730635001757696'),(136168235522326529,1,'modelv2','en_US','','2024-02-27 03:55:48','89730635001757696'),(171689982887460864,0,'tower','zh_CN','杆塔应用','2022-06-24 09:15:55','188243415207510016'),(171689982904238080,0,'tower','zh_TW','杆塔应用','2022-06-24 09:15:55','188243415207510016'),(171689982908432384,0,'tower','en_US','杆塔应用','2022-06-24 09:15:55','188243415207510016'),(171689983529189376,1,'tower','zh_CN',NULL,'2022-06-24 09:15:55','188243415207510016'),(171689983541772288,1,'tower','zh_TW',NULL,'2022-06-24 09:15:55','188243415207510016'),(171689983545966592,1,'tower','en_US',NULL,'2022-06-24 09:15:55','188243415207510016'),(171690764718309376,0,'visualization','zh_CN','航线规划-三维视角','2021-11-15 03:24:57','1'),(171690764730892288,0,'visualization','zh_TW','航线规划-三维视角','2021-11-15 03:24:57','1'),(171690764739280896,0,'visualization','en_US','visualization','2021-11-15 03:24:57','1'),(171690765280346112,1,'visualization','zh_CN','','2021-11-15 03:24:57','1'),(171690765297123328,1,'visualization','zh_TW','','2021-11-15 03:24:57','1'),(171690765309706240,1,'visualization','en_US','','2021-11-15 03:24:57','1'),(198518500359143424,0,'security','zh_CN','公安警务','2024-07-22 07:08:51','188243415207510016'),(198518500371726336,0,'security','zh_TW','公安警務','2024-07-22 07:08:51','188243415207510016'),(198518500375920640,0,'security','en_US','Police','2024-07-22 07:08:51','188243415207510016'),(198518500388503552,1,'security','zh_CN','覆盖巡逻侦查、应急处突、勘察取证、活动安保等作业任务。视频取证,有效补充传统监控盲区,第一时间接收异现场情报,以上帝视角辅助指挥决策。','2024-07-22 07:08:51','188243415207510016'),(198518500392697856,1,'security','zh_TW','覆蓋巡邏偵查、應急處突、勘察取證、活動安保等作業任務。視頻取證,有效補充傳統監控盲區,第一時間接收現場情報,以上帝視角輔助指揮決策。','2024-07-22 07:08:51','188243415207510016'),(198518500426252288,1,'security','en_US','','2024-07-22 07:08:51','188243415207510016'),(229244412956246016,0,'detection','zh_CN','低空探测','2024-04-22 08:22:40','188243415207510016'),(229244412968828928,0,'detection','zh_TW','低空探測','2024-04-22 08:22:40','188243415207510016'),(229244412977217536,0,'detection','en_US','Low altitude detection','2024-04-22 08:22:40','188243415207510016'),(229244412998189056,1,'detection','zh_CN','基于无人机探测基站实现对无人机的监测和管控功能,可用于侦测和管制一定范围内的无人机信号。','2024-04-22 08:22:40','188243415207510016'),(229244413006577664,1,'detection','zh_TW','','2024-04-22 08:22:40','188243415207510016'),(229244413014966272,1,'detection','en_US','','2024-04-22 08:22:40','188243415207510016'),(229244795288027136,0,'base','zh_CN','中移凌云基础版','2024-07-09 01:45:09','188243415207510016'),(229244795296415744,0,'base','zh_TW','中移凌云基础版','2024-07-09 01:45:09','188243415207510016'),(229244795300610048,0,'base','en_US','China Mobile Link-Cloud Basic','2024-07-09 01:45:09','188243415207510016'),(229244795308998656,1,'base','zh_CN','推出无人机超视距飞行控制体验,面向用户开放在线航线规划、基础飞行控制、实时数据回传等基础能力。','2024-07-09 01:45:09','188243415207510016'),(229244795313192960,1,'base','zh_TW','','2024-07-09 01:45:09','188243415207510016'),(229244795317387264,1,'base','en_US','','2024-07-09 01:45:09','188243415207510016'),(234316546422341632,0,'inspection','zh_CN','热成像巡检','2022-08-02 09:16:36','199120334480211968'),(234316546430730240,0,'inspection','zh_TW','热成像巡检','2022-08-02 09:16:36','199120334480211968'),(234316546434924544,0,'inspection','en_US','Hot imaging inspection','2022-08-02 09:16:36','199120334480211968'),(234316546443313152,1,'inspection','zh_CN','利用无人机+红外热成像摄像头对设备进行巡检视查,打破光线和空间限制,实现非接触式设备温度监测和高温警报','2022-08-02 09:16:36','199120334480211968'),(234316546447507456,1,'inspection','zh_TW','','2022-08-02 09:16:36','199120334480211968'),(234316546451701760,1,'inspection','en_US','','2022-08-02 09:16:36','199120334480211968'),(234316841260941312,0,'supervision','zh_CN','政府监管','2024-02-22 07:11:15','188243415207510016'),(234316841269329920,0,'supervision','zh_TW','政府監管','2024-02-22 07:11:15','188243415207510016'),(234316841269329921,0,'supervision','en_US','Government Regulation','2024-02-22 07:11:15','188243415207510016'),(234316841281912832,1,'supervision','zh_CN','基于5G网联无人机产品体系,面向低空空域监管用户,提供365×24h安全监管、空域申报与审核、业务可视化、无人机远程飞控、黑飞侦测与反制等低空空域规范管理与运营服务,构建统一的空域业务管理与对外服务平台','2024-02-22 07:11:15','188243415207510016'),(234316841281912833,1,'supervision','zh_TW','','2024-02-22 07:11:15','188243415207510016'),(234316841286107136,1,'supervision','en_US','','2024-02-22 07:11:15','188243415207510016'),(234316976711794688,0,'green','zh_CN','智慧环保','2024-01-31 05:56:57','188243415207510016'),(234316976715988992,0,'green','zh_TW','智慧环保','2024-01-31 05:56:57','188243415207510016'),(234316976720183296,0,'green','en_US','Environment Protection','2024-01-31 05:56:57','188243415207510016'),(234316976728571904,1,'green','zh_CN','专门针对环境监测研发的一套智慧环保云平台系统,配合无人机系统形成从数据采集到数据管理到数据分析的生态化系统。','2024-01-31 05:56:57','188243415207510016'),(234316976728571905,1,'green','zh_TW','','2024-01-31 05:56:57','188243415207510016'),(234316976732766208,1,'green','en_US','','2024-01-31 05:56:57','188243415207510016'),(234317141958983680,0,'logistics','zh_CN','医疗物流','2024-02-27 03:56:12','89730635001757696'),(234317141963177984,0,'logistics','zh_TW','醫療物流','2024-02-27 03:56:12','89730635001757696'),(234317141971566592,0,'logistics','en_US','medical logistics','2024-02-27 03:56:12','89730635001757696'),(234317141992538112,1,'logistics','zh_CN','实现医疗物资的快速应急投放,解决城市复杂交通场景下医疗物资的快速投递,达到城市内医疗物资运输的效果','2024-02-27 03:56:12','89730635001757696'),(234317141996732416,1,'logistics','zh_TW','','2024-02-27 03:56:12','89730635001757696'),(234317142000926720,1,'logistics','en_US','','2024-02-27 03:56:12','89730635001757696'),(239746594847588352,0,'tlcp','zh_CN','低空图像AI处理','2024-04-23 03:00:10','188243415207510016'),(239746594855976960,0,'tlcp','zh_TW','低空圖像AI處理','2024-04-23 03:00:10','188243415207510016'),(239746594860171264,0,'tlcp','en_US','Low-altitude image AI processi','2024-04-23 03:00:10','188243415207510016'),(239746594872754176,1,'tlcp','zh_CN','面向无人机的行业应用AI能力,支持电力、河道、道路、安检等场景。','2024-04-23 03:00:10','188243415207510016'),(239746594876948480,1,'tlcp','zh_TW','','2024-04-23 03:00:10','188243415207510016'),(239746594876948481,1,'tlcp','en_US','','2024-04-23 03:00:10','188243415207510016'),(244750227288883200,0,'park','zh_CN','园区管理','2024-01-31 05:56:39','188243415207510016'),(244750227305660416,0,'park','zh_TW','園區管理','2024-01-31 05:56:39','188243415207510016'),(244750227309854720,0,'park','en_US','Park Management','2024-01-31 05:56:39','188243415207510016'),(244750227439878144,1,'park','zh_CN','无人机+无人机全自动机库替代传统人工巡逻,可实时监控、自动报警,实现远程常规化高频自动园区巡逻作业','2024-01-31 05:56:39','188243415207510016'),(244750227448266752,1,'park','zh_TW','','2024-01-31 05:56:39','188243415207510016'),(244750227452461056,1,'park','en_US','','2024-01-31 05:56:39','188243415207510016'),(245144849488019456,0,'tejin_tdoa','zh_CN','无人机探测与反制','2024-02-28 01:48:19','188243415207510016'),(245144849496408064,0,'tejin_tdoa','zh_TW','無人機探測與反制','2024-02-28 01:48:19','188243415207510016'),(245144849500602368,0,'tejin_tdoa','en_US','UAV detection & countermeasues','2024-02-28 01:48:19','188243415207510016'),(245144849584488448,1,'tejin_tdoa','zh_CN','实时获取管控区域内无人机的身份信息和飞行轨迹,提供全天候的无人机监测预警、识别定位、敏捷处理、数据统计服务。','2024-02-28 01:48:19','188243415207510016'),(245144849588682752,1,'tejin_tdoa','zh_TW','','2024-02-28 01:48:19','188243415207510016'),(245144849592877056,1,'tejin_tdoa','en_US','','2024-02-28 01:48:19','188243415207510016'),(249904145522229248,0,'RISK_CENSUS','zh_CN','应急指挥','2023-02-27 07:57:03','188243415207510016'),(249904145530617856,0,'RISK_CENSUS','zh_TW','应急指挥','2023-02-27 07:57:03','188243415207510016'),(249904145534812160,0,'RISK_CENSUS','en_US','Emergency Command','2023-02-27 07:57:03','188243415207510016'),(249904145547395072,1,'RISK_CENSUS','zh_CN','面向应急行业,提供基于全国自然灾害综合风险普查成果数据的数据管理、数据共享交换、成果展示和成果应用,将普查成果纳入监测预警、应急指挥、避险转移等实战应用中,切实提升自然灾害能力防治和应急救援能力','2023-02-27 07:57:03','188243415207510016'),(249904145551589376,1,'RISK_CENSUS','zh_TW','','2023-02-27 07:57:03','188243415207510016'),(249904145555783680,1,'RISK_CENSUS','en_US','','2023-02-27 07:57:03','188243415207510016'),(254620518370508800,0,'pangu','zh_CN','中移凌云','2022-08-09 12:28:15','188243415207510016'),(254620518378897408,0,'pangu','zh_TW','中移凌雲','2022-08-09 12:28:15','188243415207510016'),(254620518378897409,0,'pangu','en_US','China Mobile Link-Cloud','2022-08-09 12:28:15','188243415207510016'),(254620518391480320,1,'pangu','zh_CN','面向无人机全行业,覆盖飞行前准备、飞行中监控、飞行后处理的端到端场景,依托5G网联技术,实现全流程的业务自动化闭环。','2022-08-09 12:28:15','188243415207510016'),(254620518395674624,1,'pangu','zh_TW','','2022-08-09 12:28:15','188243415207510016'),(254620518399868928,1,'pangu','en_US','','2022-08-09 12:28:15','188243415207510016'),(254624518327238656,0,'patrol','zh_CN','交通巡查','2022-06-22 07:06:56','188243415207510016'),(254624518331432960,0,'patrol','zh_TW','交通巡查','2022-06-22 07:06:56','188243415207510016'),(254624518335627264,0,'patrol','en_US','Traffic patrol','2022-06-22 07:06:56','188243415207510016'),(254624518344015872,1,'patrol','zh_CN','面向交通场景的无人机巡查数据管理平台,提供路政台账、事故管理、报告撰写等平台能力','2022-06-22 07:06:56','188243415207510016'),(254624518348210176,1,'patrol','zh_TW','','2022-06-22 07:06:56','188243415207510016'),(254624518352404480,1,'patrol','en_US','','2022-06-22 07:06:56','188243415207510016'),(255348325430067200,0,'5G_linxot','zh_CN','5G界桩平台','2024-04-23 05:47:00','188243415207510016'),(255348325434261504,0,'5G_linxot','zh_TW','5G界桩平台','2024-04-23 05:47:00','188243415207510016'),(255348325438455808,0,'5G_linxot','en_US','5G界桩平台','2024-04-23 05:47:00','188243415207510016'),(255348325446844416,1,'5G_linxot','zh_CN','可对界桩设备进行管理,包括查看设备状态、照片记录、传感器数据等。','2024-04-23 05:47:00','188243415207510016'),(255348325446844417,1,'5G_linxot','zh_TW','','2024-04-23 05:47:00','188243415207510016'),(255348325451038720,1,'5G_linxot','en_US','','2024-04-23 05:47:00','188243415207510016'),(257530550330327040,0,'communication','zh_CN','应急通信','2024-01-31 05:56:22','188243415207510016'),(257530550334521344,0,'communication','zh_TW','應急通信','2024-01-31 05:56:22','188243415207510016'),(257530550338715648,0,'communication','en_US','Emergency Communication','2024-01-31 05:56:22','188243415207510016'),(257530550636511232,1,'communication','zh_CN','针对各类灾害“三断”场景下应急通信保障的任务需求,快速提供灾害现场的通信保障,实现救援现场”看得见、呼得通、调得动”,并支持各灾种影响下的人口、经济、房屋、农作物、各类承灾体进行综合分析与评估。','2024-01-31 05:56:22','188243415207510016'),(257530550640705536,1,'communication','zh_TW','','2024-01-31 05:56:22','188243415207510016'),(257530550644899840,1,'communication','en_US','','2024-01-31 05:56:22','188243415207510016'),(259975027833700352,0,'emersupport','zh_CN','森林防火','2024-01-31 05:56:32','188243415207510016'),(259975027837894656,0,'emersupport','zh_TW','森林防火','2024-01-31 05:56:32','188243415207510016'),(259975027837894657,0,'emersupport','en_US','Forest-Fire Monitor','2024-01-31 05:56:32','188243415207510016'),(259975027850477568,1,'emersupport','zh_CN','基于5G网联无人机产品体系,建立覆盖森林防火的智能管控系统,提供林区日常动态巡检,火点快速精准定位,火情实时跟踪,提供气象监测和林区资源展示,进一步提高护林工作效率。','2024-01-31 05:56:32','188243415207510016'),(259975027854671872,1,'emersupport','zh_TW','應用於突發現場偵查,快速響應,遠程實時指揮。以應急事件為中心開展實時觀測,做到隨時響應,精準觀測,快速成像,實現對事故地點環境動態化時空立體監控。','2024-01-31 05:56:32','188243415207510016'),(259975027854671873,1,'emersupport','en_US','','2024-01-31 05:56:32','188243415207510016'),(262610103637639168,0,'fire_emergency','zh_CN','防火应急指挥平台-建设中','2022-09-23 03:05:51','188243415207510016'),(262610103646027776,0,'fire_emergency','zh_TW','防火應急指揮平台-建设中','2022-09-23 03:05:51','188243415207510016'),(262610103650222080,0,'fire_emergency','en_US','Fire Emergency','2022-09-23 03:05:51','188243415207510016'),(262610103662804992,1,'fire_emergency','zh_CN','','2022-09-23 03:05:51','188243415207510016'),(262610103666999296,1,'fire_emergency','zh_TW','','2022-09-23 03:05:51','188243415207510016'),(262610103666999297,1,'fire_emergency','en_US','','2022-09-23 03:05:51','188243415207510016'),(266603864029921280,0,'infrastructure','zh_CN','设施巡查','2022-08-02 09:19:16','199120334480211968'),(266603864046698496,0,'infrastructure','zh_TW','設施巡查','2022-08-02 09:19:16','199120334480211968'),(266603864050892800,0,'infrastructure','en_US','Infrastructure','2022-08-02 09:19:16','199120334480211968'),(266603864134778880,1,'infrastructure','zh_CN','实现巡检场景中基础设施位置坐标导入导出,以及地图可视化呈现以及基础信息维护、管理;为巡检任务提供设定、自动执行、定点拍摄照片并自动关联的一站式服务','2022-08-02 09:19:16','199120334480211968'),(266603864138973184,1,'infrastructure','zh_TW','','2022-08-02 09:19:16','199120334480211968'),(266603864147361792,1,'infrastructure','en_US','','2022-08-02 09:19:16','199120334480211968'),(273133149620273152,0,'nematode','zh_CN','线虫病疫情','2023-02-06 01:52:34','188243415207510016'),(273133149628661760,0,'nematode','zh_TW','線蟲病疫情','2023-02-06 01:52:34','188243415207510016'),(273133149628661761,0,'nematode','en_US','Nematode disease outbreak','2023-02-06 01:52:34','188243415207510016'),(273133149637050368,1,'nematode','zh_CN','','2023-02-06 01:52:34','188243415207510016'),(273133149641244672,1,'nematode','zh_TW','','2023-02-06 01:52:34','188243415207510016'),(273133149645438976,1,'nematode','en_US','','2023-02-06 01:52:34','188243415207510016'),(275323102785699840,0,'TIANXUN','zh_CN','低空组网','2023-02-08 03:09:23','188243415207510016'),(275323102789894144,0,'TIANXUN','zh_TW','低空组网','2023-02-08 03:09:23','188243415207510016'),(275323102794088448,0,'TIANXUN','en_US','低空组网','2023-02-08 03:09:23','188243415207510016'),(275323102840225792,1,'TIANXUN','zh_CN','通过优化现有地面5G网络,实现300米以下低空空域5G网络覆盖,满足无人机行业应用网络需求。','2023-02-08 03:09:23','188243415207510016'),(275323102848614400,1,'TIANXUN','zh_TW','','2023-02-08 03:09:23','188243415207510016'),(275323102857003008,1,'TIANXUN','en_US','','2023-02-08 03:09:23','188243415207510016'),(275323925620064256,0,'HUB_ONE','zh_CN','哈勃一号','2023-02-08 03:09:16','188243415207510016'),(275323925624258560,0,'HUB_ONE','zh_TW','哈勃一号','2023-02-08 03:09:16','188243415207510016'),(275323925628452864,0,'HUB_ONE','en_US','哈勃一号','2023-02-08 03:09:16','188243415207510016'),(275323925636841472,1,'HUB_ONE','zh_CN','该终端以5G网联为核心(兼容4G网络),实现无人机图传、数传、飞控的上下行数据传输,与中移凌云实现云端协同,支持多接口协议、轻量小型化设计,固态安全传输加密,适用于各类型无人机(固定翼、多旋翼、垂直复合翼)在应急保障、城市管理、巡查测绘、交通物流、农林应用、娱乐表演等行业应用场景的实时稳定无线传输。','2023-02-08 03:09:16','188243415207510016'),(275323925645230080,1,'HUB_ONE','zh_TW','','2023-02-08 03:09:16','188243415207510016'),(275323925649424384,1,'HUB_ONE','en_US','','2023-02-08 03:09:16','188243415207510016'),(279567199281086464,0,'media','zh_CN','流媒体服务','2024-02-22 06:31:25','89730635001757696'),(279567199289475072,0,'media','zh_TW','流媒體服務','2024-02-22 06:31:25','89730635001757696'),(279567199293669376,0,'media','en_US','Streaming media service','2024-02-22 06:31:25','89730635001757696'),(279567199687933952,1,'media','zh_CN','基于无人机的智能流媒体调度服务,通过流程编排框架,串联整个视频流媒体业务,以适配不同业务场景需求。','2024-02-22 06:31:25','89730635001757696'),(279567199692128256,1,'media','zh_TW','','2024-02-22 06:31:25','89730635001757696'),(279567199696322560,1,'media','en_US','','2024-02-22 06:31:25','89730635001757696'),(287874431844352000,0,'tudou_sensing','zh_CN','在线智能遥感','2023-02-06 01:52:44','188243415207510016'),(287874431852740608,0,'tudou_sensing','zh_TW','在線智能遙感','2023-02-06 01:52:44','188243415207510016'),(287874431852740609,0,'tudou_sensing','en_US','Online intelligent remote sens','2023-02-06 01:52:44','188243415207510016'),(287874431869517824,1,'tudou_sensing','zh_CN','提供了全在线、自动化的遥感影像处理及解译服务。基于云原生的遥感影像引擎,能够支持超大规模影像数据的高效处理,生成标准化的DOM / DSM成果,并无缝衔接针对DOM成果影像的自动化智能解译,满足地物识别、分类、变化监测等需求,挖掘遥感数据资产中的应用与商业价值。','2023-02-06 01:52:44','188243415207510016'),(287874431877906432,1,'tudou_sensing','zh_TW','','2023-02-06 01:52:44','188243415207510016'),(287874431882100736,1,'tudou_sensing','en_US','','2023-02-06 01:52:44','188243415207510016'),(287875986077253632,0,'tudou_3d','zh_CN','在线实景三维','2023-04-19 01:41:23','188243415207510016'),(287875986085642240,0,'tudou_3d','zh_TW','在線實景三維','2023-04-19 01:41:23','188243415207510016'),(287875986089836544,0,'tudou_3d','en_US','Online reality 3D','2023-04-19 01:41:23','188243415207510016'),(287875986106613760,1,'tudou_3d','zh_CN','集实景三维数据的云端采集、建模和展示等服务于一体。有别于传统本地化的服务方式,在线实景三维依托由软件定义的存储和计算能力,大幅提升三维数据的生产效率,降低行业的应用门槛,加速实景三维数据服务的普及,助力“实景三维中国”的建设。','2023-04-19 01:41:23','188243415207510016'),(287875986115002368,1,'tudou_3d','zh_TW','','2023-04-19 01:41:23','188243415207510016'),(287875986119196672,1,'tudou_3d','en_US','','2023-04-19 01:41:23','188243415207510016'),(363014007516692480,0,'jiangsuwenlv','zh_CN','江苏文旅','2024-02-27 03:57:02','89730635001757696'),(363014007525081088,0,'jiangsuwenlv','zh_TW','江蘇文旅','2024-02-27 03:57:02','89730635001757696'),(363014007529275392,0,'jiangsuwenlv','en_US','JiangSuWenLv','2024-02-27 03:57:02','89730635001757696'),(363014007596384256,1,'jiangsuwenlv','zh_CN','','2024-02-27 03:57:02','89730635001757696'),(363014007600578560,1,'jiangsuwenlv','zh_TW','','2024-02-27 03:57:02','89730635001757696'),(363014007600578561,1,'jiangsuwenlv','en_US','','2024-02-27 03:57:02','89730635001757696'),(363334849577615360,0,'QinghaiWenLv','zh_CN','青海文旅','2024-02-27 03:56:53','89730635001757696'),(363334849581809664,0,'QinghaiWenLv','zh_TW','青海文旅','2024-02-27 03:56:53','89730635001757696'),(363334849594392576,0,'QinghaiWenLv','en_US','Qinghai Cultural Tourism','2024-02-27 03:56:53','89730635001757696'),(363334849606975488,1,'QinghaiWenLv','zh_CN','','2024-02-27 03:56:53','89730635001757696'),(363334849615364096,1,'QinghaiWenLv','zh_TW','','2024-02-27 03:56:53','89730635001757696'),(363334849619558400,1,'QinghaiWenLv','en_US','','2024-02-27 03:56:53','89730635001757696'),(365173608770043904,0,'runtoint','zh_CN','润图智能','2023-08-08 09:02:10','188243415207510016'),(365173608774238208,0,'runtoint','zh_TW','润图智能','2023-08-08 09:02:10','188243415207510016'),(365173608778432512,0,'runtoint','en_US','润图智能','2023-08-08 09:02:10','188243415207510016'),(365173608786821120,1,'runtoint','zh_CN','集群化无人系统控制平台:可实现操作员坐在监控中心远程对无人机、无人船或机器人的智能化控制,并实时接收显示多架无人终端的运行状态、采集的数据。控制平台具有多任务的特点,一个平台可对多架无人机、无人船同时进行远程操控,同时执行不同的任务。也可以同一架无人机、无人船、机器人搭载不同任务设备,通过多次不同航线执行不同的任务。平台可实现多用户集群终端的集中管理、指挥、通讯、调度。','2023-08-08 09:02:10','188243415207510016'),(365173608791015424,1,'runtoint','zh_TW','','2023-08-08 09:02:10','188243415207510016'),(365173608795209728,1,'runtoint','en_US','','2023-08-08 09:02:10','188243415207510016'),(374257704543453184,0,'pilot_app','zh_CN','飞行家APP','2023-05-18 10:06:30','1'),(374257704551841792,0,'pilot_app','zh_TW','飛行家APP','2023-05-18 10:06:30','1'),(374257704556036096,0,'pilot_app','en_US','Pilot APP','2023-05-18 10:06:30','1'),(374257704694448128,1,'pilot_app','zh_CN','','2023-05-18 10:06:30','1'),(374257704698642432,1,'pilot_app','zh_TW','','2023-05-18 10:06:30','1'),(374257704702836736,1,'pilot_app','en_US','','2023-05-18 10:06:30','1'),(375599197158637568,0,'fireRescue','zh_CN','消防救援','2024-01-31 05:57:18','188243415207510016'),(375599197167026176,0,'fireRescue','zh_TW','消防救援','2024-01-31 05:57:18','188243415207510016'),(375599197171220480,0,'fireRescue','en_US','Fire rescue','2024-01-31 05:57:18','188243415207510016'),(375599197259300864,1,'fireRescue','zh_CN','无人机消防救援系统可实现全天候无人值守,有突发火情,无人机自动前往,并自动预测勘察火灾火情,辅助指挥,安全高效。','2024-01-31 05:57:18','188243415207510016'),(375599197263495168,1,'fireRescue','zh_TW','','2024-01-31 05:57:18','188243415207510016'),(375599197267689472,1,'fireRescue','en_US','','2024-01-31 05:57:18','188243415207510016'),(389735663351234560,0,'armypeople','zh_CN','通感一体化','2024-07-22 07:08:42','188243415207510016'),(389735663359623168,0,'armypeople','zh_TW','通感一體化','2024-07-22 07:08:42','188243415207510016'),(389735663368011776,0,'armypeople','en_US','Civil-military integration','2024-07-22 07:08:42','188243415207510016'),(389735663506423808,1,'armypeople','zh_CN','通过5G基站通感能力、5G机载终端,结合中移凌云打造低成本、大范围、超视距的无人机低空监管体系。','2024-07-22 07:08:42','188243415207510016'),(389735663510618112,1,'armypeople','zh_TW','','2024-07-22 07:08:42','188243415207510016'),(389735663514812416,1,'armypeople','en_US','','2024-07-22 07:08:42','188243415207510016'),(403580659702693888,0,'heilongjiangtieta','zh_CN','黑龙江铁塔','2024-04-19 12:57:36','188243415207510016'),(403580659711082496,0,'heilongjiangtieta','zh_TW','黑龙江铁塔','2024-04-19 12:57:36','188243415207510016'),(403580659711082497,0,'heilongjiangtieta','en_US','黑龙江铁塔','2024-04-19 12:57:36','188243415207510016'),(403580659719471104,1,'heilongjiangtieta','zh_CN','','2024-04-19 12:57:36','188243415207510016'),(403580659723665408,1,'heilongjiangtieta','zh_TW','','2024-04-19 12:57:36','188243415207510016'),(403580659727859712,1,'heilongjiangtieta','en_US','','2024-04-19 12:57:36','188243415207510016'),(440150589612883968,0,'threedsimulation','zh_CN','三维仿真','2024-02-27 03:56:44','89730635001757696'),(440150589621272576,0,'threedsimulation','zh_TW','三維仿真','2024-02-27 03:56:44','89730635001757696'),(440150589621272577,0,'threedsimulation','en_US','ThreeD Simulation','2024-02-27 03:56:44','89730635001757696'),(440150589629661184,1,'threedsimulation','zh_CN','无人机可在仿真场景(城市或近海)中模拟飞行任务,并产生大规模、高质量、多样化的图像数据,支撑Ai应用的落地。','2024-02-27 03:56:44','89730635001757696'),(440150589633855488,1,'threedsimulation','zh_TW','','2024-02-27 03:56:44','89730635001757696'),(440150589638049792,1,'threedsimulation','en_US','','2024-02-27 03:56:44','89730635001757696'),(496451435455053824,0,'guangzhoucompany','zh_CN','广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435463442432,0,'guangzhoucompany','zh_TW','广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435467636736,0,'guangzhoucompany','en_US','广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435480219648,1,'guangzhoucompany','zh_CN','中国移动通信集团广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435484413952,1,'guangzhoucompany','zh_TW','','2024-04-19 14:41:26','188243415207510016'),(496451435488608256,1,'guangzhoucompany','en_US','','2024-04-19 14:41:26','188243415207510016'),(515946878264410112,0,'zhuhailianzhoucompany','zh_CN','珠海莲洲机场5G-A通感','2024-06-12 09:48:42','188243415207510016'),(515946878276993024,0,'zhuhailianzhoucompany','zh_TW','珠海莲洲机场5G-A通感','2024-06-12 09:48:42','188243415207510016'),(515946878285381632,0,'zhuhailianzhoucompany','en_US','珠海莲洲机场5G-A通感','2024-06-12 09:48:42','188243415207510016'),(515946878297964544,1,'zhuhailianzhoucompany','zh_CN','珠海莲洲机场5G-A通感演示','2024-06-12 09:48:42','188243415207510016'),(515946878297964545,1,'zhuhailianzhoucompany','zh_TW','','2024-06-12 09:48:42','188243415207510016'),(515946878302158848,1,'zhuhailianzhoucompany','en_US','','2024-06-12 09:48:42','188243415207510016'),(559703013985615872,0,'sz_idea','zh_CN','深圳IDEA对接','2024-10-12 02:44:58','188243415207510016'),(559703013994004480,0,'sz_idea','zh_TW','深圳IDEA对接','2024-10-12 02:44:58','188243415207510016'),(559703013998198784,0,'sz_idea','en_US','深圳IDEA对接','2024-10-12 02:44:58','188243415207510016'),(559703014010781696,1,'sz_idea','zh_CN','对接深圳IDEA的系统,对方系统跳往至凌云平台的通感系统','2024-10-12 02:44:58','188243415207510016'),(559703014010781697,1,'sz_idea','zh_TW','','2024-10-12 02:44:58','188243415207510016'),(559703014014976000,1,'sz_idea','en_US','','2024-10-12 02:44:58','188243415207510016'); +INSERT INTO `sys_platform_attr` VALUES (51691311312404480,0,'agriculture','zh_CN','农林植保','2022-06-22 07:08:16','188243415207510016'),(51691311324987392,0,'agriculture','zh_TW','農林植保','2022-06-22 07:08:16','188243415207510016'),(51691311333376000,0,'agriculture','en_US','Agriculture','2022-06-22 07:08:16','188243415207510016'),(51691311350153216,1,'agriculture','zh_CN','实时监测农作物的生长情况,融合高管普遥感技术可分析病虫害险情,基于数据处理与分析系统,可实现农业信息长期监测,为估产提供有力依据。','2022-06-22 07:08:16','188243415207510016'),(51691311358541824,1,'agriculture','zh_TW','實時監測農作物的生長情況,融合高管普遙感技術可分析病蟲害險情,基於數據處理與分析系統,可實現農業信息長期監測,為估產提供有力依據。','2022-06-22 07:08:16','188243415207510016'),(51691311366930432,1,'agriculture','en_US','','2022-06-22 07:08:16','188243415207510016'),(51691621300830208,0,'army','zh_CN','军事管理','2022-06-22 07:08:38','188243415207510016'),(51691621305024512,0,'army','zh_TW','軍事管理','2022-06-22 07:08:38','188243415207510016'),(51691621313413120,0,'army','en_US','Army','2022-06-22 07:08:38','188243415207510016'),(51691621330190336,1,'army','zh_CN','无人机搭载光电、雷达等传感器,通过视频回传无人机扫描到的作战环境,可实现高速信息扫描,为军队提供实时情报支持。','2022-06-22 07:08:38','188243415207510016'),(51691621334384640,1,'army','zh_TW','無人機搭載光電、雷達等傳感器,通過視頻回傳無人機掃描到的作戰環境,可實現高速信息掃描,為軍隊提供實時情報支持。','2022-06-22 07:08:38','188243415207510016'),(51691621342773248,1,'army','en_US','','2022-06-22 07:08:38','188243415207510016'),(51691918702149632,0,'Inspect','zh_CN','巡查巡检','2022-06-22 07:08:33','188243415207510016'),(51691918710538240,0,'Inspect','zh_TW','巡查巡檢','2022-06-22 07:08:33','188243415207510016'),(51691918714732544,0,'Inspect','en_US','Inspect','2022-06-22 07:08:33','188243415207510016'),(51691918739898368,1,'Inspect','zh_CN','利用无人机搭载专业巡查设备,实时回传周边环境,利用图像识别技术,实现从锁定巡查目标、自动检测识别、自动出具报告的全流程闭环。','2022-06-22 07:08:33','188243415207510016'),(51691918748286976,1,'Inspect','zh_TW','利用無人機搭載專業巡查設備,實時回傳周邊環境,利用圖像識別技術,實現從鎖定巡查目標、自動檢測識別、自動報告的全流程閉環。','2022-06-22 07:08:33','188243415207510016'),(51691918756675584,1,'Inspect','en_US','','2022-06-22 07:08:33','188243415207510016'),(51692572552200192,0,'fire','zh_CN','城市消防','2022-06-22 07:08:25','188243415207510016'),(51692572556394496,0,'fire','zh_TW','城市消防','2022-06-22 07:08:25','188243415207510016'),(51692572564783104,0,'fire','en_US','fire','2022-06-22 07:08:25','188243415207510016'),(51692572589948928,1,'fire','zh_CN','以三维地图构建城市立体空间网,面对突发情况,第一时间迅速响应,远程调度最近的救援设备,实时追踪灾情变换情况、调整应急策略。','2022-06-22 07:08:25','188243415207510016'),(51692572602531840,1,'fire','zh_TW','以三維地圖構建城市立體空間網,面對突發情況,第一時間迅速響應,遠程調度最近的救援設備,實時追踪災情變換情況、調整應急策略。','2022-06-22 07:08:25','188243415207510016'),(51692572615114752,1,'fire','en_US','','2022-06-22 07:08:25','188243415207510016'),(51692759592992768,0,'port','zh_CN','智慧港口','2022-06-22 07:08:44','188243415207510016'),(51692759601381376,0,'port','zh_TW','智慧港口','2022-06-22 07:08:44','188243415207510016'),(51692759605575680,0,'port','en_US','Port','2022-06-22 07:08:44','188243415207510016'),(51692759622352896,1,'port','zh_CN','基于二三维GIS可视化管理港口区域环境和设备设施,应用于船舶管理、泊位管理、货物监管、人员监管、告警管理等作业任务。','2022-06-22 07:08:44','188243415207510016'),(51692759626547200,1,'port','zh_TW','基於二三維GIS可視化管理港口區域環境和設備設施,應用於船舶管理、泊位管理、貨物監管、人員監管、告警管理等作業任務。','2022-06-22 07:08:44','188243415207510016'),(51692759630741504,1,'port','en_US','','2022-06-22 07:08:44','188243415207510016'),(51693429863743488,0,'traffic','zh_CN','智慧交通','2023-05-19 01:19:25','89730635001757696'),(51693429872132096,0,'traffic','zh_TW','智慧交通','2023-05-19 01:19:25','89730635001757696'),(51693429876326400,0,'traffic','en_US','Intelligent Traffic','2023-05-19 01:19:25','89730635001757696'),(51693429893103616,1,'traffic','zh_CN','采用高空视频监控,实时抓拍取证、劝阻纠正交通违反行为,远程喊话指挥疏导拥堵路段,利用交通大数据优化道路红绿灯、摄像头等设置。','2023-05-19 01:19:25','89730635001757696'),(51693429901492224,1,'traffic','zh_TW','採用高空視頻監控,實時抓拍取證、勸阻糾正交通違反行為,遠程喊話指揮疏導擁堵路段,利用交通大數據優化道路紅綠燈、攝像頭等設置。','2023-05-19 01:19:25','89730635001757696'),(51693429905686528,1,'traffic','en_US','','2023-05-19 01:19:25','89730635001757696'),(51694291180847104,0,'infrared','zh_CN','红外遥感','2021-03-30 02:16:01','89730635001757696'),(51694291189235712,0,'infrared','zh_TW','紅外遙感','2021-03-30 02:16:01','89730635001757696'),(51694291193430016,0,'infrared','en_US','Infrared','2021-03-30 02:16:01','89730635001757696'),(51694291214401536,1,'infrared','zh_CN','基于物体辐射红外线的物理特性,来测得物体红外辐射强度、波段和温度,从而识别伪装并可进行夜间观察,用于寻找地下热源、发现森林火灾、监视农作物病虫害等。','2021-03-30 02:16:01','89730635001757696'),(51694291222790144,1,'infrared','zh_TW','基於物件輻射紅外線的物理特性,檢測物體紅外輻射強度、波段和溫度,從而識別偽裝並可進行夜間觀察,用於尋找地下熱源、發現森林火災、監視農作物病蟲害等。','2021-03-30 02:16:01','89730635001757696'),(51694291226984448,1,'infrared','en_US','','2021-03-30 02:16:01','89730635001757696'),(51694469224857600,0,'material','zh_CN','素材仓库','2024-02-27 03:55:29','89730635001757696'),(51694469229051904,0,'material','zh_TW','素材倉庫','2024-02-27 03:55:29','89730635001757696'),(51694469233246208,0,'material','en_US','Material','2024-02-27 03:55:29','89730635001757696'),(51694469250023424,1,'material','zh_CN','基于元数据的方式对文件分类管理,可将数据存储在安全的云端数据库中,可随时快速索引,也能便于网络分享中随时检索。','2024-02-27 03:55:29','89730635001757696'),(51694469254217728,1,'material','zh_TW','基於中繼資料的管道對檔案分類管理,可將資料存儲在安全的雲端資料庫中,可隨時快速索引,也能便於網絡分享中隨時檢索。','2024-02-27 03:55:29','89730635001757696'),(51694469312937984,1,'material','en_US','The file classification management based on metadata can store the data in a secure cloud database, which can be quickly indexed at any time, and can also be easily retrieved in network sharing at any','2024-02-27 03:55:29','89730635001757696'),(51700779177738240,0,'ai','zh_CN','AI大脑','2024-02-28 07:34:26','188243415207510016'),(51700779181932544,0,'ai','zh_TW','AI大腦','2024-02-28 07:34:26','188243415207510016'),(51700779190321152,0,'ai','en_US','AI','2024-02-28 07:34:26','188243415207510016'),(51700779207098368,1,'ai','zh_CN','基于强大的算法引擎与大数据处理能力,从数据接入到模型构建,从模型构建再到场景化应用。','2024-02-28 07:34:26','188243415207510016'),(51700779211292672,1,'ai','zh_TW','基於強大的算法引擎與大數據處理能力,從數據接入到模型構建,從模型構建再到場景化應用。','2024-02-28 07:34:26','188243415207510016'),(51700779215486976,1,'ai','en_US','','2024-02-28 07:34:26','188243415207510016'),(51700961588019200,0,'simulation','zh_CN','仿真规划','2023-04-19 01:43:19','188243415207510016'),(51700961596407808,0,'simulation','zh_TW','仿真規劃','2023-04-19 01:43:19','188243415207510016'),(51700961600602112,0,'simulation','en_US','Simulation','2023-04-19 01:43:19','188243415207510016'),(51700961617379328,1,'simulation','zh_CN','提供面向对象的图形化建模功能,可以快速构建与实际系统高度相似的组态画面,用于路径损耗计算、信号覆盖预测等。','2023-04-19 01:43:19','188243415207510016'),(51700961621573632,1,'simulation','zh_TW','提供面向對象的圖形化建模功能,可以快速構建與實際系統高度相似的組態畫面,用於路徑損耗計算、信號覆蓋預測等。','2023-04-19 01:43:19','188243415207510016'),(51700961629962240,1,'simulation','en_US','','2023-04-19 01:43:19','188243415207510016'),(51701172544733184,0,'hyperspectral','zh_CN','高光谱遥感','2021-08-16 08:51:58','1'),(51701172553121792,0,'hyperspectral','zh_TW','高光譜遙感','2021-08-16 08:51:58','1'),(51701172561510400,0,'hyperspectral','en_US','Hyperspectral','2021-08-16 08:51:58','1'),(51701172586676224,1,'hyperspectral','zh_CN','基于高精度 、高效率的图像分类与检测软件算法,识别弱指纹信息、精细区分相似地物 、检测识别弱目标、生成分类专题图,支持大部分环境监测和资源探测应用。','2021-08-16 08:51:58','1'),(51701172595064832,1,'hyperspectral','zh_TW','基於高精度、高效率的圖像分類與檢測軟件算法,識別弱指紋信息、精細區分相似地物、檢測識別弱目標、生成分類專題圖,支持大部分環境監測和資源探測應用。','2021-08-16 08:51:58','1'),(51701172607647744,1,'hyperspectral','en_US','','2021-08-16 08:51:58','1'),(51701358411120640,0,'e-commerce','zh_CN','电商平台','2021-03-30 02:19:41','89730635001757696'),(51701358419509248,0,'e-commerce','zh_TW','電商平臺','2021-03-30 02:19:41','89730635001757696'),(51701358423703552,0,'e-commerce','en_US','E-commerce','2021-03-30 02:19:41','89730635001757696'),(51701358436286464,1,'e-commerce','zh_CN','覆盖全行业全场景的软件产品及硬件设备的电商销售,线上全渠道开通订单服务,打造智慧无人机行业电商生态链。','2021-03-30 02:19:41','89730635001757696'),(51701358444675072,1,'e-commerce','zh_TW','覆蓋全行業全場景的軟件產品及硬件設備的電商銷售,線上全渠道開通訂單服務,打造智慧無人機行業電商生態鏈。','2021-03-30 02:19:41','89730635001757696'),(51701358448869376,1,'e-commerce','en_US','','2021-03-30 02:19:41','89730635001757696'),(51701528666308608,0,'qualification','zh_CN','资质认证','2021-03-30 02:19:26','89730635001757696'),(51701528674697216,0,'qualification','zh_TW','資質認證','2021-03-30 02:19:26','89730635001757696'),(51701528683085824,0,'qualification','en_US','Qualification','2021-03-30 02:19:26','89730635001757696'),(51701528699863040,1,'qualification','zh_CN','开设AOPA、UTC等培训的线上课堂,提供理论+实操+模拟的培训课程,助学员轻松通过各种无人机资质认证。','2021-03-30 02:19:26','89730635001757696'),(51701528704057344,1,'qualification','zh_TW','開設AOPA、UTC等培訓的線上課堂,提供理論+實操+模擬的培訓課程,助學員輕鬆通過各種無人機資質認證。','2021-03-30 02:19:26','89730635001757696'),(51701528708251648,1,'qualification','en_US','','2021-03-30 02:19:26','89730635001757696'),(51701711194030080,0,'data','zh_CN','数据运营','2021-04-01 01:28:37','1'),(51701711198224384,0,'data','zh_TW','數據運營','2021-04-01 01:28:37','1'),(51701711202418688,0,'data','en_US','Data','2021-04-01 01:28:37','1'),(51701711219195904,1,'data','zh_CN','提供多种数据源的实时采集与建模,深度洞察用户方案,帮企业用数据驱动产品改进及监控运营,可实现多维度,精细化的统计分析,让数据成为企业核心资产。','2021-04-01 01:28:37','1'),(51701711227584512,1,'data','zh_TW','提供多種數據源的實時採集與建模,深度洞察用戶方案,幫企業用數據驅動產品改進及監控運營,可實現多維度,精細化的統計分析,讓數據成為企業核心資產。','2021-04-01 01:28:37','1'),(51701711231778816,1,'data','en_US','','2021-04-01 01:28:37','1'),(92183252399292416,0,'3DVisual','zh_CN','三维可视化','2021-07-30 10:00:56','1'),(92183252407681024,0,'3DVisual','zh_TW','三維可視化','2021-07-30 10:00:56','1'),(92183252416069632,0,'3DVisual','en_US','ThreeD Visualization','2021-07-30 10:00:56','1'),(92183252437041152,1,'3DVisual','zh_CN','基于3D可视化技术,可对多源异构数据进行图层管理,从而构建包含GIS地图、点云数据、单体模型的三维空间,可应用于电力巡检、地形勘测等场景','2021-07-30 10:00:57','1'),(92183252445429760,1,'3DVisual','zh_TW','','2021-07-30 10:00:57','1'),(92183252449624064,1,'3DVisual','en_US','','2021-07-30 10:00:57','1'),(136168235488772096,0,'modelv2','zh_CN','二维建图与三维建模','2024-02-27 03:55:48','89730635001757696'),(136168235497160704,0,'modelv2','zh_TW','二維建圖與三維建模','2024-02-27 03:55:48','89730635001757696'),(136168235505549312,0,'modelv2','en_US','2D drafting and 3D modelling','2024-02-27 03:55:48','89730635001757696'),(136168235518132224,1,'modelv2','zh_CN','基于正射影像、倾斜摄影,运用图片结合建模技术,整合当前城市建筑、树木特征点,勾勒出属于城市的2D、3D信息,提供多源异构数据的可视化能力,可应用于电力巡检、地形勘测、矿山建模等场景。','2024-02-27 03:55:48','89730635001757696'),(136168235522326528,1,'modelv2','zh_TW','基於傾斜攝影,運用圖片結合信息技術,整合當前城市建築、樹木特徵,勾勒出屬於城市的3D信息。','2024-02-27 03:55:48','89730635001757696'),(136168235522326529,1,'modelv2','en_US','','2024-02-27 03:55:48','89730635001757696'),(171689982887460864,0,'tower','zh_CN','杆塔应用','2022-06-24 09:15:55','188243415207510016'),(171689982904238080,0,'tower','zh_TW','杆塔应用','2022-06-24 09:15:55','188243415207510016'),(171689982908432384,0,'tower','en_US','杆塔应用','2022-06-24 09:15:55','188243415207510016'),(171689983529189376,1,'tower','zh_CN',NULL,'2022-06-24 09:15:55','188243415207510016'),(171689983541772288,1,'tower','zh_TW',NULL,'2022-06-24 09:15:55','188243415207510016'),(171689983545966592,1,'tower','en_US',NULL,'2022-06-24 09:15:55','188243415207510016'),(171690764718309376,0,'visualization','zh_CN','航线规划-三维视角','2021-11-15 03:24:57','1'),(171690764730892288,0,'visualization','zh_TW','航线规划-三维视角','2021-11-15 03:24:57','1'),(171690764739280896,0,'visualization','en_US','visualization','2021-11-15 03:24:57','1'),(171690765280346112,1,'visualization','zh_CN','','2021-11-15 03:24:57','1'),(171690765297123328,1,'visualization','zh_TW','','2021-11-15 03:24:57','1'),(171690765309706240,1,'visualization','en_US','','2021-11-15 03:24:57','1'),(198518500359143424,0,'security','zh_CN','公安警务','2024-07-22 07:08:51','188243415207510016'),(198518500371726336,0,'security','zh_TW','公安警務','2024-07-22 07:08:51','188243415207510016'),(198518500375920640,0,'security','en_US','Police','2024-07-22 07:08:51','188243415207510016'),(198518500388503552,1,'security','zh_CN','覆盖巡逻侦查、应急处突、勘察取证、活动安保等作业任务。视频取证,有效补充传统监控盲区,第一时间接收异现场情报,以上帝视角辅助指挥决策。','2024-07-22 07:08:51','188243415207510016'),(198518500392697856,1,'security','zh_TW','覆蓋巡邏偵查、應急處突、勘察取證、活動安保等作業任務。視頻取證,有效補充傳統監控盲區,第一時間接收現場情報,以上帝視角輔助指揮決策。','2024-07-22 07:08:51','188243415207510016'),(198518500426252288,1,'security','en_US','','2024-07-22 07:08:51','188243415207510016'),(229244412956246016,0,'detection','zh_CN','低空探测','2024-04-22 08:22:40','188243415207510016'),(229244412968828928,0,'detection','zh_TW','低空探測','2024-04-22 08:22:40','188243415207510016'),(229244412977217536,0,'detection','en_US','Low altitude detection','2024-04-22 08:22:40','188243415207510016'),(229244412998189056,1,'detection','zh_CN','基于无人机探测基站实现对无人机的监测和管控功能,可用于侦测和管制一定范围内的无人机信号。','2024-04-22 08:22:40','188243415207510016'),(229244413006577664,1,'detection','zh_TW','','2024-04-22 08:22:40','188243415207510016'),(229244413014966272,1,'detection','en_US','','2024-04-22 08:22:40','188243415207510016'),(229244795288027136,0,'base','zh_CN','中移凌云基础版','2024-07-09 01:45:09','188243415207510016'),(229244795296415744,0,'base','zh_TW','中移凌云基础版','2024-07-09 01:45:09','188243415207510016'),(229244795300610048,0,'base','en_US','China Mobile Link-Cloud Basic','2024-07-09 01:45:09','188243415207510016'),(229244795308998656,1,'base','zh_CN','推出无人机超视距飞行控制体验,面向用户开放在线航线规划、基础飞行控制、实时数据回传等基础能力。','2024-07-09 01:45:09','188243415207510016'),(229244795313192960,1,'base','zh_TW','','2024-07-09 01:45:09','188243415207510016'),(229244795317387264,1,'base','en_US','','2024-07-09 01:45:09','188243415207510016'),(234316546422341632,0,'inspection','zh_CN','热成像巡检','2022-08-02 09:16:36','199120334480211968'),(234316546430730240,0,'inspection','zh_TW','热成像巡检','2022-08-02 09:16:36','199120334480211968'),(234316546434924544,0,'inspection','en_US','Hot imaging inspection','2022-08-02 09:16:36','199120334480211968'),(234316546443313152,1,'inspection','zh_CN','利用无人机+红外热成像摄像头对设备进行巡检视查,打破光线和空间限制,实现非接触式设备温度监测和高温警报','2022-08-02 09:16:36','199120334480211968'),(234316546447507456,1,'inspection','zh_TW','','2022-08-02 09:16:36','199120334480211968'),(234316546451701760,1,'inspection','en_US','','2022-08-02 09:16:36','199120334480211968'),(234316841260941312,0,'supervision','zh_CN','政府监管','2024-02-22 07:11:15','188243415207510016'),(234316841269329920,0,'supervision','zh_TW','政府監管','2024-02-22 07:11:15','188243415207510016'),(234316841269329921,0,'supervision','en_US','Government Regulation','2024-02-22 07:11:15','188243415207510016'),(234316841281912832,1,'supervision','zh_CN','基于5G网联无人机产品体系,面向低空空域监管用户,提供365×24h安全监管、空域申报与审核、业务可视化、无人机远程飞控、黑飞侦测与反制等低空空域规范管理与运营服务,构建统一的空域业务管理与对外服务平台','2024-02-22 07:11:15','188243415207510016'),(234316841281912833,1,'supervision','zh_TW','','2024-02-22 07:11:15','188243415207510016'),(234316841286107136,1,'supervision','en_US','','2024-02-22 07:11:15','188243415207510016'),(234316976711794688,0,'green','zh_CN','智慧环保','2024-01-31 05:56:57','188243415207510016'),(234316976715988992,0,'green','zh_TW','智慧环保','2024-01-31 05:56:57','188243415207510016'),(234316976720183296,0,'green','en_US','Environment Protection','2024-01-31 05:56:57','188243415207510016'),(234316976728571904,1,'green','zh_CN','专门针对环境监测研发的一套智慧环保云平台系统,配合无人机系统形成从数据采集到数据管理到数据分析的生态化系统。','2024-01-31 05:56:57','188243415207510016'),(234316976728571905,1,'green','zh_TW','','2024-01-31 05:56:57','188243415207510016'),(234316976732766208,1,'green','en_US','','2024-01-31 05:56:57','188243415207510016'),(234317141958983680,0,'logistics','zh_CN','医疗物流','2024-02-27 03:56:12','89730635001757696'),(234317141963177984,0,'logistics','zh_TW','醫療物流','2024-02-27 03:56:12','89730635001757696'),(234317141971566592,0,'logistics','en_US','medical logistics','2024-02-27 03:56:12','89730635001757696'),(234317141992538112,1,'logistics','zh_CN','实现医疗物资的快速应急投放,解决城市复杂交通场景下医疗物资的快速投递,达到城市内医疗物资运输的效果','2024-02-27 03:56:12','89730635001757696'),(234317141996732416,1,'logistics','zh_TW','','2024-02-27 03:56:12','89730635001757696'),(234317142000926720,1,'logistics','en_US','','2024-02-27 03:56:12','89730635001757696'),(239746594847588352,0,'tlcp','zh_CN','低空图像AI处理','2024-04-23 03:00:10','188243415207510016'),(239746594855976960,0,'tlcp','zh_TW','低空圖像AI處理','2024-04-23 03:00:10','188243415207510016'),(239746594860171264,0,'tlcp','en_US','Low-altitude image AI processi','2024-04-23 03:00:10','188243415207510016'),(239746594872754176,1,'tlcp','zh_CN','面向无人机的行业应用AI能力,支持电力、河道、道路、安检等场景。','2024-04-23 03:00:10','188243415207510016'),(239746594876948480,1,'tlcp','zh_TW','','2024-04-23 03:00:10','188243415207510016'),(239746594876948481,1,'tlcp','en_US','','2024-04-23 03:00:10','188243415207510016'),(244750227288883200,0,'park','zh_CN','园区管理','2024-01-31 05:56:39','188243415207510016'),(244750227305660416,0,'park','zh_TW','園區管理','2024-01-31 05:56:39','188243415207510016'),(244750227309854720,0,'park','en_US','Park Management','2024-01-31 05:56:39','188243415207510016'),(244750227439878144,1,'park','zh_CN','无人机+无人机全自动机库替代传统人工巡逻,可实时监控、自动报警,实现远程常规化高频自动园区巡逻作业','2024-01-31 05:56:39','188243415207510016'),(244750227448266752,1,'park','zh_TW','','2024-01-31 05:56:39','188243415207510016'),(244750227452461056,1,'park','en_US','','2024-01-31 05:56:39','188243415207510016'),(245144849488019456,0,'tejin_tdoa','zh_CN','无人机探测与反制','2024-02-28 01:48:19','188243415207510016'),(245144849496408064,0,'tejin_tdoa','zh_TW','無人機探測與反制','2024-02-28 01:48:19','188243415207510016'),(245144849500602368,0,'tejin_tdoa','en_US','UAV detection & countermeasues','2024-02-28 01:48:19','188243415207510016'),(245144849584488448,1,'tejin_tdoa','zh_CN','实时获取管控区域内无人机的身份信息和飞行轨迹,提供全天候的无人机监测预警、识别定位、敏捷处理、数据统计服务。','2024-02-28 01:48:19','188243415207510016'),(245144849588682752,1,'tejin_tdoa','zh_TW','','2024-02-28 01:48:19','188243415207510016'),(245144849592877056,1,'tejin_tdoa','en_US','','2024-02-28 01:48:19','188243415207510016'),(249904145522229248,0,'RISK_CENSUS','zh_CN','应急指挥','2023-02-27 07:57:03','188243415207510016'),(249904145530617856,0,'RISK_CENSUS','zh_TW','应急指挥','2023-02-27 07:57:03','188243415207510016'),(249904145534812160,0,'RISK_CENSUS','en_US','Emergency Command','2023-02-27 07:57:03','188243415207510016'),(249904145547395072,1,'RISK_CENSUS','zh_CN','面向应急行业,提供基于全国自然灾害综合风险普查成果数据的数据管理、数据共享交换、成果展示和成果应用,将普查成果纳入监测预警、应急指挥、避险转移等实战应用中,切实提升自然灾害能力防治和应急救援能力','2023-02-27 07:57:03','188243415207510016'),(249904145551589376,1,'RISK_CENSUS','zh_TW','','2023-02-27 07:57:03','188243415207510016'),(249904145555783680,1,'RISK_CENSUS','en_US','','2023-02-27 07:57:03','188243415207510016'),(254620518370508800,0,'pangu','zh_CN','中移凌云','2022-08-09 12:28:15','188243415207510016'),(254620518378897408,0,'pangu','zh_TW','中移凌雲','2022-08-09 12:28:15','188243415207510016'),(254620518378897409,0,'pangu','en_US','China Mobile Link-Cloud','2022-08-09 12:28:15','188243415207510016'),(254620518391480320,1,'pangu','zh_CN','面向无人机全行业,覆盖飞行前准备、飞行中监控、飞行后处理的端到端场景,依托5G网联技术,实现全流程的业务自动化闭环。','2022-08-09 12:28:15','188243415207510016'),(254620518395674624,1,'pangu','zh_TW','','2022-08-09 12:28:15','188243415207510016'),(254620518399868928,1,'pangu','en_US','','2022-08-09 12:28:15','188243415207510016'),(254624518327238656,0,'patrol','zh_CN','交通巡查','2022-06-22 07:06:56','188243415207510016'),(254624518331432960,0,'patrol','zh_TW','交通巡查','2022-06-22 07:06:56','188243415207510016'),(254624518335627264,0,'patrol','en_US','Traffic patrol','2022-06-22 07:06:56','188243415207510016'),(254624518344015872,1,'patrol','zh_CN','面向交通场景的无人机巡查数据管理平台,提供路政台账、事故管理、报告撰写等平台能力','2022-06-22 07:06:56','188243415207510016'),(254624518348210176,1,'patrol','zh_TW','','2022-06-22 07:06:56','188243415207510016'),(254624518352404480,1,'patrol','en_US','','2022-06-22 07:06:56','188243415207510016'),(255348325430067200,0,'5G_linxot','zh_CN','5G界桩平台','2024-04-23 05:47:00','188243415207510016'),(255348325434261504,0,'5G_linxot','zh_TW','5G界桩平台','2024-04-23 05:47:00','188243415207510016'),(255348325438455808,0,'5G_linxot','en_US','5G界桩平台','2024-04-23 05:47:00','188243415207510016'),(255348325446844416,1,'5G_linxot','zh_CN','可对界桩设备进行管理,包括查看设备状态、照片记录、传感器数据等。','2024-04-23 05:47:00','188243415207510016'),(255348325446844417,1,'5G_linxot','zh_TW','','2024-04-23 05:47:00','188243415207510016'),(255348325451038720,1,'5G_linxot','en_US','','2024-04-23 05:47:00','188243415207510016'),(257530550330327040,0,'communication','zh_CN','应急通信','2024-01-31 05:56:22','188243415207510016'),(257530550334521344,0,'communication','zh_TW','應急通信','2024-01-31 05:56:22','188243415207510016'),(257530550338715648,0,'communication','en_US','Emergency Communication','2024-01-31 05:56:22','188243415207510016'),(257530550636511232,1,'communication','zh_CN','针对各类灾害“三断”场景下应急通信保障的任务需求,快速提供灾害现场的通信保障,实现救援现场”看得见、呼得通、调得动”,并支持各灾种影响下的人口、经济、房屋、农作物、各类承灾体进行综合分析与评估。','2024-01-31 05:56:22','188243415207510016'),(257530550640705536,1,'communication','zh_TW','','2024-01-31 05:56:22','188243415207510016'),(257530550644899840,1,'communication','en_US','','2024-01-31 05:56:22','188243415207510016'),(259975027833700352,0,'emersupport','zh_CN','森林防火','2024-01-31 05:56:32','188243415207510016'),(259975027837894656,0,'emersupport','zh_TW','森林防火','2024-01-31 05:56:32','188243415207510016'),(259975027837894657,0,'emersupport','en_US','Forest-Fire Monitor','2024-01-31 05:56:32','188243415207510016'),(259975027850477568,1,'emersupport','zh_CN','基于5G网联无人机产品体系,建立覆盖森林防火的智能管控系统,提供林区日常动态巡检,火点快速精准定位,火情实时跟踪,提供气象监测和林区资源展示,进一步提高护林工作效率。','2024-01-31 05:56:32','188243415207510016'),(259975027854671872,1,'emersupport','zh_TW','應用於突發現場偵查,快速響應,遠程實時指揮。以應急事件為中心開展實時觀測,做到隨時響應,精準觀測,快速成像,實現對事故地點環境動態化時空立體監控。','2024-01-31 05:56:32','188243415207510016'),(259975027854671873,1,'emersupport','en_US','','2024-01-31 05:56:32','188243415207510016'),(262610103637639168,0,'fire_emergency','zh_CN','防火应急指挥平台-建设中','2022-09-23 03:05:51','188243415207510016'),(262610103646027776,0,'fire_emergency','zh_TW','防火應急指揮平台-建设中','2022-09-23 03:05:51','188243415207510016'),(262610103650222080,0,'fire_emergency','en_US','Fire Emergency','2022-09-23 03:05:51','188243415207510016'),(262610103662804992,1,'fire_emergency','zh_CN','','2022-09-23 03:05:51','188243415207510016'),(262610103666999296,1,'fire_emergency','zh_TW','','2022-09-23 03:05:51','188243415207510016'),(262610103666999297,1,'fire_emergency','en_US','','2022-09-23 03:05:51','188243415207510016'),(266603864029921280,0,'infrastructure','zh_CN','设施巡查','2022-08-02 09:19:16','199120334480211968'),(266603864046698496,0,'infrastructure','zh_TW','設施巡查','2022-08-02 09:19:16','199120334480211968'),(266603864050892800,0,'infrastructure','en_US','Infrastructure','2022-08-02 09:19:16','199120334480211968'),(266603864134778880,1,'infrastructure','zh_CN','实现巡检场景中基础设施位置坐标导入导出,以及地图可视化呈现以及基础信息维护、管理;为巡检任务提供设定、自动执行、定点拍摄照片并自动关联的一站式服务','2022-08-02 09:19:16','199120334480211968'),(266603864138973184,1,'infrastructure','zh_TW','','2022-08-02 09:19:16','199120334480211968'),(266603864147361792,1,'infrastructure','en_US','','2022-08-02 09:19:16','199120334480211968'),(273133149620273152,0,'nematode','zh_CN','线虫病疫情','2023-02-06 01:52:34','188243415207510016'),(273133149628661760,0,'nematode','zh_TW','線蟲病疫情','2023-02-06 01:52:34','188243415207510016'),(273133149628661761,0,'nematode','en_US','Nematode disease outbreak','2023-02-06 01:52:34','188243415207510016'),(273133149637050368,1,'nematode','zh_CN','','2023-02-06 01:52:34','188243415207510016'),(273133149641244672,1,'nematode','zh_TW','','2023-02-06 01:52:34','188243415207510016'),(273133149645438976,1,'nematode','en_US','','2023-02-06 01:52:34','188243415207510016'),(275323102785699840,0,'TIANXUN','zh_CN','低空组网','2023-02-08 03:09:23','188243415207510016'),(275323102789894144,0,'TIANXUN','zh_TW','低空组网','2023-02-08 03:09:23','188243415207510016'),(275323102794088448,0,'TIANXUN','en_US','低空组网','2023-02-08 03:09:23','188243415207510016'),(275323102840225792,1,'TIANXUN','zh_CN','通过优化现有地面5G网络,实现300米以下低空空域5G网络覆盖,满足无人机行业应用网络需求。','2023-02-08 03:09:23','188243415207510016'),(275323102848614400,1,'TIANXUN','zh_TW','','2023-02-08 03:09:23','188243415207510016'),(275323102857003008,1,'TIANXUN','en_US','','2023-02-08 03:09:23','188243415207510016'),(275323925620064256,0,'HUB_ONE','zh_CN','哈勃一号','2023-02-08 03:09:16','188243415207510016'),(275323925624258560,0,'HUB_ONE','zh_TW','哈勃一号','2023-02-08 03:09:16','188243415207510016'),(275323925628452864,0,'HUB_ONE','en_US','哈勃一号','2023-02-08 03:09:16','188243415207510016'),(275323925636841472,1,'HUB_ONE','zh_CN','该终端以5G网联为核心(兼容4G网络),实现无人机图传、数传、飞控的上下行数据传输,与中移凌云实现云端协同,支持多接口协议、轻量小型化设计,固态安全传输加密,适用于各类型无人机(固定翼、多旋翼、垂直复合翼)在应急保障、城市管理、巡查测绘、交通物流、农林应用、娱乐表演等行业应用场景的实时稳定无线传输。','2023-02-08 03:09:16','188243415207510016'),(275323925645230080,1,'HUB_ONE','zh_TW','','2023-02-08 03:09:16','188243415207510016'),(275323925649424384,1,'HUB_ONE','en_US','','2023-02-08 03:09:16','188243415207510016'),(279567199281086464,0,'media','zh_CN','流媒体服务','2024-02-22 06:31:25','89730635001757696'),(279567199289475072,0,'media','zh_TW','流媒體服務','2024-02-22 06:31:25','89730635001757696'),(279567199293669376,0,'media','en_US','Streaming media service','2024-02-22 06:31:25','89730635001757696'),(279567199687933952,1,'media','zh_CN','基于无人机的智能流媒体调度服务,通过流程编排框架,串联整个视频流媒体业务,以适配不同业务场景需求。','2024-02-22 06:31:25','89730635001757696'),(279567199692128256,1,'media','zh_TW','','2024-02-22 06:31:25','89730635001757696'),(279567199696322560,1,'media','en_US','','2024-02-22 06:31:25','89730635001757696'),(287874431844352000,0,'tudou_sensing','zh_CN','在线智能遥感','2023-02-06 01:52:44','188243415207510016'),(287874431852740608,0,'tudou_sensing','zh_TW','在線智能遙感','2023-02-06 01:52:44','188243415207510016'),(287874431852740609,0,'tudou_sensing','en_US','Online intelligent remote sens','2023-02-06 01:52:44','188243415207510016'),(287874431869517824,1,'tudou_sensing','zh_CN','提供了全在线、自动化的遥感影像处理及解译服务。基于云原生的遥感影像引擎,能够支持超大规模影像数据的高效处理,生成标准化的DOM / DSM成果,并无缝衔接针对DOM成果影像的自动化智能解译,满足地物识别、分类、变化监测等需求,挖掘遥感数据资产中的应用与商业价值。','2023-02-06 01:52:44','188243415207510016'),(287874431877906432,1,'tudou_sensing','zh_TW','','2023-02-06 01:52:44','188243415207510016'),(287874431882100736,1,'tudou_sensing','en_US','','2023-02-06 01:52:44','188243415207510016'),(287875986077253632,0,'tudou_3d','zh_CN','在线实景三维','2023-04-19 01:41:23','188243415207510016'),(287875986085642240,0,'tudou_3d','zh_TW','在線實景三維','2023-04-19 01:41:23','188243415207510016'),(287875986089836544,0,'tudou_3d','en_US','Online reality 3D','2023-04-19 01:41:23','188243415207510016'),(287875986106613760,1,'tudou_3d','zh_CN','集实景三维数据的云端采集、建模和展示等服务于一体。有别于传统本地化的服务方式,在线实景三维依托由软件定义的存储和计算能力,大幅提升三维数据的生产效率,降低行业的应用门槛,加速实景三维数据服务的普及,助力“实景三维中国”的建设。','2023-04-19 01:41:23','188243415207510016'),(287875986115002368,1,'tudou_3d','zh_TW','','2023-04-19 01:41:23','188243415207510016'),(287875986119196672,1,'tudou_3d','en_US','','2023-04-19 01:41:23','188243415207510016'),(363014007516692480,0,'jiangsuwenlv','zh_CN','江苏文旅','2024-02-27 03:57:02','89730635001757696'),(363014007525081088,0,'jiangsuwenlv','zh_TW','江蘇文旅','2024-02-27 03:57:02','89730635001757696'),(363014007529275392,0,'jiangsuwenlv','en_US','JiangSuWenLv','2024-02-27 03:57:02','89730635001757696'),(363014007596384256,1,'jiangsuwenlv','zh_CN','','2024-02-27 03:57:02','89730635001757696'),(363014007600578560,1,'jiangsuwenlv','zh_TW','','2024-02-27 03:57:02','89730635001757696'),(363014007600578561,1,'jiangsuwenlv','en_US','','2024-02-27 03:57:02','89730635001757696'),(363334849577615360,0,'QinghaiWenLv','zh_CN','青海文旅','2024-02-27 03:56:53','89730635001757696'),(363334849581809664,0,'QinghaiWenLv','zh_TW','青海文旅','2024-02-27 03:56:53','89730635001757696'),(363334849594392576,0,'QinghaiWenLv','en_US','Qinghai Cultural Tourism','2024-02-27 03:56:53','89730635001757696'),(363334849606975488,1,'QinghaiWenLv','zh_CN','','2024-02-27 03:56:53','89730635001757696'),(363334849615364096,1,'QinghaiWenLv','zh_TW','','2024-02-27 03:56:53','89730635001757696'),(363334849619558400,1,'QinghaiWenLv','en_US','','2024-02-27 03:56:53','89730635001757696'),(365173608770043904,0,'runtoint','zh_CN','润图智能','2023-08-08 09:02:10','188243415207510016'),(365173608774238208,0,'runtoint','zh_TW','润图智能','2023-08-08 09:02:10','188243415207510016'),(365173608778432512,0,'runtoint','en_US','润图智能','2023-08-08 09:02:10','188243415207510016'),(365173608786821120,1,'runtoint','zh_CN','集群化无人系统控制平台:可实现操作员坐在监控中心远程对无人机、无人船或机器人的智能化控制,并实时接收显示多架无人终端的运行状态、采集的数据。控制平台具有多任务的特点,一个平台可对多架无人机、无人船同时进行远程操控,同时执行不同的任务。也可以同一架无人机、无人船、机器人搭载不同任务设备,通过多次不同航线执行不同的任务。平台可实现多用户集群终端的集中管理、指挥、通讯、调度。','2023-08-08 09:02:10','188243415207510016'),(365173608791015424,1,'runtoint','zh_TW','','2023-08-08 09:02:10','188243415207510016'),(365173608795209728,1,'runtoint','en_US','','2023-08-08 09:02:10','188243415207510016'),(374257704543453184,0,'pilot_app','zh_CN','飞行家APP','2023-05-18 10:06:30','1'),(374257704551841792,0,'pilot_app','zh_TW','飛行家APP','2023-05-18 10:06:30','1'),(374257704556036096,0,'pilot_app','en_US','Pilot APP','2023-05-18 10:06:30','1'),(374257704694448128,1,'pilot_app','zh_CN','','2023-05-18 10:06:30','1'),(374257704698642432,1,'pilot_app','zh_TW','','2023-05-18 10:06:30','1'),(374257704702836736,1,'pilot_app','en_US','','2023-05-18 10:06:30','1'),(375599197158637568,0,'fireRescue','zh_CN','消防救援','2024-01-31 05:57:18','188243415207510016'),(375599197167026176,0,'fireRescue','zh_TW','消防救援','2024-01-31 05:57:18','188243415207510016'),(375599197171220480,0,'fireRescue','en_US','Fire rescue','2024-01-31 05:57:18','188243415207510016'),(375599197259300864,1,'fireRescue','zh_CN','无人机消防救援系统可实现全天候无人值守,有突发火情,无人机自动前往,并自动预测勘察火灾火情,辅助指挥,安全高效。','2024-01-31 05:57:18','188243415207510016'),(375599197263495168,1,'fireRescue','zh_TW','','2024-01-31 05:57:18','188243415207510016'),(375599197267689472,1,'fireRescue','en_US','','2024-01-31 05:57:18','188243415207510016'),(389735663351234560,0,'armypeople','zh_CN','通感一体化','2024-07-22 07:08:42','188243415207510016'),(389735663359623168,0,'armypeople','zh_TW','通感一體化','2024-07-22 07:08:42','188243415207510016'),(389735663368011776,0,'armypeople','en_US','Civil-military integration','2024-07-22 07:08:42','188243415207510016'),(389735663506423808,1,'armypeople','zh_CN','通过5G基站通感能力、5G机载终端,结合中移凌云打造低成本、大范围、超视距的无人机低空监管体系。','2024-07-22 07:08:42','188243415207510016'),(389735663510618112,1,'armypeople','zh_TW','','2024-07-22 07:08:42','188243415207510016'),(389735663514812416,1,'armypeople','en_US','','2024-07-22 07:08:42','188243415207510016'),(403580659702693888,0,'heilongjiangtieta','zh_CN','黑龙江铁塔','2024-04-19 12:57:36','188243415207510016'),(403580659711082496,0,'heilongjiangtieta','zh_TW','黑龙江铁塔','2024-04-19 12:57:36','188243415207510016'),(403580659711082497,0,'heilongjiangtieta','en_US','黑龙江铁塔','2024-04-19 12:57:36','188243415207510016'),(403580659719471104,1,'heilongjiangtieta','zh_CN','','2024-04-19 12:57:36','188243415207510016'),(403580659723665408,1,'heilongjiangtieta','zh_TW','','2024-04-19 12:57:36','188243415207510016'),(403580659727859712,1,'heilongjiangtieta','en_US','','2024-04-19 12:57:36','188243415207510016'),(440150589612883968,0,'threedsimulation','zh_CN','三维仿真','2024-02-27 03:56:44','89730635001757696'),(440150589621272576,0,'threedsimulation','zh_TW','三維仿真','2024-02-27 03:56:44','89730635001757696'),(440150589621272577,0,'threedsimulation','en_US','ThreeD Simulation','2024-02-27 03:56:44','89730635001757696'),(440150589629661184,1,'threedsimulation','zh_CN','无人机可在仿真场景(城市或近海)中模拟飞行任务,并产生大规模、高质量、多样化的图像数据,支撑Ai应用的落地。','2024-02-27 03:56:44','89730635001757696'),(440150589633855488,1,'threedsimulation','zh_TW','','2024-02-27 03:56:44','89730635001757696'),(440150589638049792,1,'threedsimulation','en_US','','2024-02-27 03:56:44','89730635001757696'),(496451435455053824,0,'guangzhoucompany','zh_CN','广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435463442432,0,'guangzhoucompany','zh_TW','广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435467636736,0,'guangzhoucompany','en_US','广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435480219648,1,'guangzhoucompany','zh_CN','中国移动通信集团广东有限公司广州分公司','2024-04-19 14:41:26','188243415207510016'),(496451435484413952,1,'guangzhoucompany','zh_TW','','2024-04-19 14:41:26','188243415207510016'),(496451435488608256,1,'guangzhoucompany','en_US','','2024-04-19 14:41:26','188243415207510016'),(515946878264410112,0,'zhuhailianzhoucompany','zh_CN','珠海莲洲机场5G-A通感','2024-06-12 09:48:42','188243415207510016'),(515946878276993024,0,'zhuhailianzhoucompany','zh_TW','珠海莲洲机场5G-A通感','2024-06-12 09:48:42','188243415207510016'),(515946878285381632,0,'zhuhailianzhoucompany','en_US','珠海莲洲机场5G-A通感','2024-06-12 09:48:42','188243415207510016'),(515946878297964544,1,'zhuhailianzhoucompany','zh_CN','珠海莲洲机场5G-A通感演示','2024-06-12 09:48:42','188243415207510016'),(515946878297964545,1,'zhuhailianzhoucompany','zh_TW','','2024-06-12 09:48:42','188243415207510016'),(515946878302158848,1,'zhuhailianzhoucompany','en_US','','2024-06-12 09:48:42','188243415207510016'),(559703013985615872,0,'sz_idea','zh_CN','深圳IDEA对接','2024-10-12 02:44:58','188243415207510016'),(559703013994004480,0,'sz_idea','zh_TW','深圳IDEA对接','2024-10-12 02:44:58','188243415207510016'),(559703013998198784,0,'sz_idea','en_US','深圳IDEA对接','2024-10-12 02:44:58','188243415207510016'),(559703014010781696,1,'sz_idea','zh_CN','对接深圳IDEA的系统,对方系统跳往至凌云平台的通感系统','2024-10-12 02:44:58','188243415207510016'),(559703014010781697,1,'sz_idea','zh_TW','','2024-10-12 02:44:58','188243415207510016'),(559703014014976000,1,'sz_idea','en_US','','2024-10-12 02:44:58','188243415207510016'),(561943001229033472,0,'sz_scj','zh_CN','深圳深城交','2024-10-17 08:00:52','188243415207510016'),(561943001237422080,0,'sz_scj','zh_TW','深圳深城交','2024-10-17 08:00:52','188243415207510016'),(561943001241616384,0,'sz_scj','en_US','深圳深城交','2024-10-17 08:00:52','188243415207510016'),(561943001258393600,1,'sz_scj','zh_CN','对接深圳深城交客户系统,对方系统跳往至凌云平台的通感系统','2024-10-17 08:00:52','188243415207510016'),(561943001262587904,1,'sz_scj','zh_TW','','2024-10-17 08:00:52','188243415207510016'),(561943001270976512,1,'sz_scj','en_US','','2024-10-17 08:00:52','188243415207510016'); /*!40000 ALTER TABLE `sys_platform_attr` ENABLE KEYS */; UNLOCK TABLES; @@ -62,7 +62,7 @@ UNLOCK TABLES; LOCK TABLES `sys_resource_api` WRITE; /*!40000 ALTER TABLE `sys_resource_api` DISABLE KEYS */; -INSERT INTO `sys_resource_api` VALUES (1,'API_a2fbec94a84e50e9540d7df7fdb8eb53','增加用户','','cmii-admin-user','/api/admin/user/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(2,'API_7405be329b1929632e39fa16621fc17e','修改用户信息','','cmii-admin-user','/api/admin/user/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(3,'API_bd1147301038043cf4469f3085c5e104','启用用户/解锁用户','','cmii-admin-user','/api/admin/user/enable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(4,'API_08f6ff378e58fdea11da9389d6ba954d','禁用用户/锁定用户','','cmii-admin-user','/api/admin/user/disable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(5,'API_a4a89846f89b0589eae57458eea0a9a4','用户列表','','cmii-admin-user','/api/admin/user/findPage','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(6,'API_457850c6e8b8647b0bde9c565be3c5df','获取用户角色','','cmii-admin-user','/api/admin/user/getUserRoles','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(7,'API_45afcd86be9dad0fae896696fc353782','根据token获取用户基本信息','','cmii-admin-user','/api/admin/user/getMyDetail','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(8,'API_33f2b0da3e8cfa2e17886559423672fc','获取用户详细信息','','cmii-admin-user','/api/admin/user/getUserDetail','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(9,'API_15e184ef09fbfd8acc9c084b8a4b3176','获取用户资源','','cmii-admin-user','/api/admin/user/getUserResources','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(10,'API_5a95440c2585b61632614f848037f770','以树形结构获取资源树','','cmii-admin-user','/api/admin/user/getUserResourceTree','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(11,'API_b534016a58c6a43563668c4ed76b3212','批量上传用户','','cmii-admin-user','/api/admin/user/userUpload','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(12,'API_fcbf80cada722ac002f464d3b3608e9a','用户重置密码','','cmii-admin-user','/api/admin/user/resetPassword','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(13,'API_40474a55aa0c2e17ef010f4f4831e66d','根据token获取用户基本信息','','cmii-admin-user','/api/admin/user/profile/getMyDetail','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(14,'API_bbcc09011b28e68b0ef18b04bdea4fc8','更新用户头像','','cmii-admin-user','/api/admin/user/profile/updateAvatar','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(15,'API_bcdf577bd1eecd0641386f6dd6b9f666','更新用户名称','','cmii-admin-user','/api/admin/user/profile/updateName','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(16,'API_17da63027d64f56a04000bfac6dae1fc','添加用户账号','','cmii-admin-user','/api/admin/user/profile/addAccount','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(17,'API_28e0104e8e85a6c1aea6fa87d9df980f','检查uri地址','','cmii-admin-user','/api/admin/resource/checkUri','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(18,'API_929cb1091d353ae1e30d7741fedd5a1d','获取平台(公司)的所有菜单以及按钮','','cmii-admin-user','/api/admin/resource/queryMenuAndAction','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(19,'API_5253c9e4ec5b0793657d7cd51ae27743','获取平台所有的资源列表(菜单,按钮)','','cmii-admin-user','/api/admin/resource/queryResourceList','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(20,'API_89e58517914b54923a7dbb1c4df91d65','获取平台所有的资源树(菜单,按钮)','','cmii-admin-user','/api/admin/resource/queryResourceTree','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(21,'API_ae3f020dd8a8b4ea9aeb45aec8cb4150','获取平台所有的资源树,并统计(菜单,按钮)','','cmii-admin-user','/api/admin/resource/queryResourceTreeStatistic','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(22,'API_bf39535961dd10ac41d2cf0b869309cf','增加菜单','','cmii-admin-user','/api/admin/resource/menu/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(23,'API_6c4dd1ba48e9d20aa238b7d15fef0c1d','更新菜单','','cmii-admin-user','/api/admin/resource/menu/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(24,'API_ae0149874d1be022d276a8f952a0964e','删除菜单','','cmii-admin-user','/api/admin/resource/menu/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(25,'API_89dce1246413a119fad48567c44aa8b9','查询所有菜单','','cmii-admin-user','/api/admin/resource/menu/queryAll','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(26,'API_2012728609d3f52f3361350310a41fe5','增加按钮','','cmii-admin-user','/api/admin/resource/action/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(27,'API_f45fa286ed39710c43ec96ad96cd6edd','增加按钮以及授权api','','cmii-admin-user','/api/admin/resource/action/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(28,'API_0239171cac0469d3ee785618b35d7387','更新按钮以及授权api','','cmii-admin-user','/api/admin/resource/action/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(29,'API_675d697d04ce1844ac695c4d5ee6cf14','更新按钮','','cmii-admin-user','/api/admin/resource/action/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(30,'API_937ad2f3950161c01a4f053882f794f6','删除按钮','','cmii-admin-user','/api/admin/resource/action/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(31,'API_87b728f12738c4847b4364212975b730','查询菜单下所有的按钮','','cmii-admin-user','/api/admin/resource/action/queryByMenuId','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(32,'API_5ba27d99fcd40c1004e1c2de76163e51','查询按钮下面的所有api','','cmii-admin-user','/api/admin/resource/action/queryApiByActionId','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(33,'API_f3e9c128565a214c1463ce79e845c362','给按钮授权api接口','','cmii-admin-user','/api/admin/resource/action/authorityApi','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(34,'API_e2f13b95ef2b36f92140ef9ea327aa0b','根据token获取用户基本信息','','cmii-admin-user','/system/checkPassword','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(35,'API_f23c87839a3c265235dd6981331cff2d','下载用户批量导入模版','','cmii-admin-user','/system/file/userTemplate','GET',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(36,'API_7e6275223c3020c7a9e88e2e325d0d74','预览excel','','cmii-admin-user','/system/file/preViewExcel','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(37,'API_3315ca0ac8e3b2eb199a5516ffe62936','验证校验码','','cmii-admin-user','/checkToken','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(38,'API_8977263daa16b2de73c5898a46dcec50','用户登出','','cmii-admin-user','/logout','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(39,'API_933205804ba2c448e43b396d14adeacf','获取图片验证码','','cmii-admin-user','/getVerifyCodeImg','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2020-08-18 03:24:15',NULL),(40,'API_7940b56334acfb78c2ddb8b85326ae78','用户登录','用户登陆','cmii-admin-user','/login','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(41,'API_319c415fb6272df6a8bb3ffc8b50c61e','新增角色','','cmii-admin-user','/api/admin/role/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(42,'API_30cc33511db6a38f36a93f56b156276f','修改角色','','cmii-admin-user','/api/admin/role/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(43,'API_043fa21fa09400799b7853ec9fde6455','有效角色的列表','','cmii-admin-user','/api/admin/role/query','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(44,'API_e194a3d9dbb99425d0e763080195729a','启用角色/解锁角色','','cmii-admin-user','/api/admin/role/enable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(45,'API_c8239bca952628c7a6896a81584e690d','禁用角色/锁定角色','','cmii-admin-user','/api/admin/role/disable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:20',NULL),(46,'API_452d9a42e9a398b2956fa860b2d3a910','删除角色','删除角色','cmii-admin-user','/api/admin/role/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(47,'API_f57c5ea104ee4d7fbc1007f9c945217d','为用户赋予角色','为用户赋予角色','cmii-admin-user','/api/admin/role/saveUserRoles','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(48,'API_96d2d21138aacde61322f49dbf4a1668','为角色增加用户','为角色增加用户','cmii-admin-user','/api/admin/role/saveRoleUsers','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:20',NULL),(49,'API_c7af002522a5cf4ec9dad0d1cb2b0d4c','角色授权资源(菜单以及按钮)','角色授权资源(菜单以及按钮)','cmii-admin-user','/api/admin/role/authorityResource','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(50,'API_d2b298d66f9a5fae4bc9f6d453bdf6bb','角色分页查询','','cmii-admin-user','/api/admin/role/queryPage','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(51,'API_5314dc15b5c3ef79095b36f921bdc13b','获取角色详细信息包括资源','','cmii-admin-user','/api/admin/role/getRoleWithResource','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:19',NULL),(52,'API_c4a2d6a367e53051a28cf43f35d09e3e','获取角色资源树','','cmii-admin-user','/api/admin/role/getRoleResourceTree','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:21',NULL),(53,'API_e6d2a6d76105df0d012f5b9af71791af','新增角色并授权','','cmii-admin-user','/api/admin/role/addAndAuthority','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:16',NULL),(54,'API_7da2efd424153cd8b6047cb9ef54ee47','修改角色','','cmii-admin-user','/api/admin/role/updateAndAuthority','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:19',NULL),(55,'API_747758b4cbedec7904cf83165fd5c26a','删除api','','cmii-admin-user','/api/admin/resource/api/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:16',NULL),(56,'API_8f71720903e3266139d5febe808bd1c2','查询出所有的api','','cmii-admin-user','/api/admin/resource/api/queryAll','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:19',NULL),(57,'API_cc1a6c3dd221a04d88225e5d9a6aefb1','查询出符合条件的API','','cmii-admin-user','/api/admin/resource/api/queryBy','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:17',NULL),(58,'API_6da30267aedd8a97e8476d1db9d58f8b','增加api','','cmii-admin-user','/api/admin/resource/api/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:20',NULL),(59,'API_d325a940ef158f6eb3bf9d59ccdef59a','更新api','','cmii-admin-user','/api/admin/resource/api/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:17',NULL),(60,'API_b1feb54cd3eb78715046aaa92c2d6469','securityConfiguration','','cmii-admin-user','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2022-03-11 06:17:40',NULL),(61,'API_dddbc667725f7e9fa31c051c1e3ad9f6','uiConfiguration','','cmii-admin-user','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2022-03-11 06:17:40',NULL),(62,'API_bdb0db0e3417506e3dc8076ea0013be8','swaggerResources','','cmii-admin-user','/swagger-resources','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2022-03-11 06:17:40',NULL),(63,'API_955f59a3b08431afd7c60aa3adbad203','error','','cmii-admin-user','/error','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:21',NULL),(64,'API_eff815d75adeab75266d51f19c4eaa5c','查询出已经使用过的角色','','cmii-admin-user','/api/admin/role/querySelected','POST',_binary '\0',_binary '\0','2020-08-18 03:24:15',1,'2024-09-09 09:14:16',NULL),(65,'API_f5997fc0f6a7c23ff37a5097bcd815f2','获取图片验证码(文字)','','cmii-admin-user','/getImgCode','POST',_binary '\0',_binary '\0','2020-08-18 08:13:33',1,'2024-09-09 09:14:16',NULL),(66,'API_6bfcbe695515a46e5092c7d6496e901d','删除用户','','cmii-admin-user','/api/admin/user/delete','POST',_binary '\0',_binary '\0','2020-08-20 09:10:14',1,'2024-09-09 09:14:20',NULL),(67,'API_623a97adf1787f657b4bfaee2f096e72','管理查看流程列表【租户下所有流程】','管理查看流程列表【租户下所有流程】','cmii-uav-process','/process/list/processList','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(68,'API_1114d8041ccfb8339eb7935fc8ba9282','个人查看流程列表【个人关联流程】','个人查看流程列表【个人关联流程】','cmii-uav-process','/process/list/personalList','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(69,'API_e06ce07e7c5675b08857625d167bd512','重新提交驳回流程【驳回流程修改后重新提交接口】','','cmii-uav-process','/client/process/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(70,'API_f7955f527ba9e2bcdda3bb9baa0a7d75','启动新流程【流程实例创建接口】','启动新流程,业务端后台程序发起流程创建【流程实例创建接口】','cmii-uav-process','/client/process/startProcess','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(71,'API_70b3d400eb80a1b9690b4dd1decb56a2','获取某个流程类型定义信息【流程配置信息获取接口】','','cmii-uav-process','/client/process/client/process/procDef/get','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(72,'API_46e8d02d8764d540469cc53b96d010e1','获取某个流程类型的详细信息','获取某个流程类型的详细信息','cmii-uav-process','/process/start/procDef/get','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(73,'API_e37ad640561369415c8d63df72d05c38','新增流程模板实例','新增流程模板实例','cmii-uav-process','/process/config/add','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(74,'API_9a18721b0c11d492ee2ac765d434888e','查看流程模板详情','查看流程模板详情','cmii-uav-process','/process/config/get','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(75,'API_542c619f1d5f824e4f42b06dd28fdf98','修改流程模板信息','修改流程模板信息','cmii-uav-process','/process/config/update','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(76,'API_b282c4114f84b51c2969e4f4ebce1b9c','删除流程模板','删除流程模板','cmii-uav-process','/process/config/delete','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(77,'API_89afc8df9b924aaa9c5d141aed3466f0','查看流程模板列表','查看流程模板列表','cmii-uav-process','/process/config/list','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:54',NULL),(78,'API_3b39bdb3a9a386ee0ae0e50602ade9b1','查看流程列表【流程自动初始化】','查看流程列表【流程自动初始化】','cmii-uav-process','/process/manage/list','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(79,'API_b2b42ab1c418280a557fef46840e82fe','修改流程基础信息','修改流程基础信息','cmii-uav-process','/process/manage/update/baseInfo','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:56',NULL),(80,'API_75ba8f1ce8192c75ee9f3226e6f25846','查看流程配置详细信息','查看流程配置详细信息','cmii-uav-process','/process/manage/get/detail','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(81,'API_ec991d995a5d80b1eb62b255d012c7d4','修改流程节点配置信息','修改流程节点配置信息','cmii-uav-process','/process/manage/update/node','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:56',NULL),(82,'API_496eb853a337e034b54ff1e95a079d4a','查看流程节点配置信息','查看流程节点配置信息','cmii-uav-process','/process/manage/get/node','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(83,'API_bf6acf6806f9fbb0b11c38c61ec43780','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:56',NULL),(84,'API_e3fc55528e271f4dbb271d746a073737','模糊搜索用户列表接口[审批管理获取审批用户]','模糊搜索用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/search','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(85,'API_1703f5219dad8f4996685c38fdc268f0','审批流程任务接口【页面接口】','审批流程任务接口,用户对任务发起审批','cmii-uav-process','/process/audit/audit','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:54',NULL),(86,'API_7530ee2404647eb8c11d70182c8a39ce','流程审核明细接口【页面接口】','流程审批明细接口,展示流程审批过程信息','cmii-uav-process','/process/audit/procInst/node/detail','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:54',NULL),(87,'API_d7009156f7913b2002131e2560c45832','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/detail','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(88,'API_e0f17baadc09281bc2a44d8c94887c8b','生成流程图接口','生成流程图接口','cmii-uav-process','/process/audit/processDiagram','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(89,'API_369c1f6c5f1d82ffe2022eae2c49421e','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(90,'API_68668fe8c1c836b50875801ff65d1ca0','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(91,'API_c58cc36656b780acc71fe379a6ed895c','swaggerResources','','cmii-uav-process','/swagger-resources','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(92,'API_5afe9893f53f3bec6fff6fc1b30ca37b','error','','cmii-uav-process','/error','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(93,'API_bed26233fb97b8d186bc1955883ad00f','设置Redis的数据字典','设置Redis的数据字典','cmii-admin-data','/api/admin/dictionary/setDictRedis','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:44',NULL),(94,'API_ae31ca2fc44fd14b3e8e494cb6faca5c','从Redis获取类别对应的字典明细','从Redis获取类别对应的字典明细','cmii-admin-data','/api/admin/dictionary/getDictRedisByType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:46',NULL),(95,'API_2feb437ab841ebce098c4a071d84aadb','从Redis获取类别对应的有效的字典明细','从Redis获取类别对应的有效的字典明细','cmii-admin-data','/api/admin/dictionary/getValiableDictRedisByType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:46',NULL),(96,'API_f0d603eba30e16a56b72d312dcee2b78','从Redis获取所有的编码对应的所有语言值','从Redis获取所有的编码对应的所有语言值','cmii-admin-data','/api/admin/dictionary/getAllValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:45',NULL),(97,'API_5c8b4d4a2969efea39ddfffa0cfe2e75','从Redis获取所有的语言对应的字典明细的K-V','从Redis获取所有的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:41',NULL),(98,'API_930f5e5c7fbe6e30b57944ff17b8831e','从Redis获取所有的编码对应的本地语言的值','从Redis获取所有的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:44',NULL),(99,'API_cb86e886050ae21f962df8b9bb6d8530','check在Redis里面明细是否有效','check在Redis里面明细是否有效','cmii-admin-data','/api/admin/dictionary/checkValiableInRedis','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:44',NULL),(100,'API_31b549a1139985fc1c0dbc21eb6b24a6','check在Redis里面编码和名称是否一致','check在Redis里面编码和名称是否一致','cmii-admin-data','/api/admin/dictionary/checkMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:44',NULL),(101,'API_6267772257b61cefe234f9a5f2a89a96','查询某个区域详细属性信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/detail','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:41',NULL),(102,'API_d50850d131ccdbe9c070cebb638b31ec','查询省份信息列表','','cmii-admin-data','/public/api/admin/area/province/list','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:45',NULL),(103,'API_89cf3952de0bd4ae4b102d3b0ec04730','查询区域下面子区域列表','','cmii-admin-data','/public/api/admin/area/subarea/list','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:42',NULL),(104,'API_b3236d962e0982bef6ab9da493517f6c','主动触发更新(从高德地图)区域信息','','cmii-admin-data','/public/api/admin/area/refresh','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:45',NULL),(105,'API_5ee8bb154057edbb9a533bb0de8f2616','修改无人机类型信息','','cmii-admin-data','/api/admin/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:41',NULL),(106,'API_184313ace3c86c6b91ec302f3ff0524e','删除无人机类型信息','','cmii-admin-data','/api/admin/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:41',NULL),(107,'API_221340c1980b4ab2dcbac65d825bc27c','从无人机类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:41',NULL),(108,'API_d4198c9b8c990c36cf8d69bf82d25935','从无人机类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:44',NULL),(109,'API_b4bff552477e5c6b1af717cf54c1b2de','根据类型查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:46',NULL),(110,'API_cc7275a27199de74744502db1dd45d42','模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:43',NULL),(111,'API_03b7fa585f860fa5933f91be4a811e0b','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:42',NULL),(112,'API_76d5d4b2c2f147587b07cd432e8ca456','查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:41',NULL),(113,'API_46126a9079c1e989640b27f24723f897','模糊查询无人机型号列表','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:44',NULL),(114,'API_add4ec5281842a91f27e12737122676d','查询无人机形态列表','','cmii-admin-data','/api/admin/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:41',NULL),(115,'API_88d1e620f01eae55406970adea9275d2','查询无人机尺度列表','','cmii-admin-data','/api/admin/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-09-09 09:14:46',NULL),(116,'API_b0241abc0a3d6ce1ee149c7cab0e834a','查询无人机材料列表','','cmii-admin-data','/api/admin/model/plane/queryUavMat','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(117,'API_3e9f4b6e52461b3aa27a2ad8f9a8fde6','查询无人机接口列表','','cmii-admin-data','/api/admin/model/plane/queryUavInf','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(118,'API_7c5b59bfff93797cba7ce89bdd1d0aac','新增无人机类型信息','','cmii-admin-data','/api/admin/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(119,'API_eb31be32d9c3a40adbb4f12b63e02300','从机库类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(120,'API_d3f1a51c788084a2a74ec83331dcca34','从机库类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/hangar/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(121,'API_dccbf2a46c478eee49c61c16c772e472','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(122,'API_9f361f9fb967f4e757da4452ca730a1d','通过类型ID查询机库类型详情','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(123,'API_90760f07c8b56ff5094c6b7f8a9a61a4','模糊查询机库型号列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(124,'API_762f968c368fbd2c9d98a1b9cacbc25b','查询机库类型列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(125,'API_bc038b9711ca6bab9e1b557b57a2ff07','查询机库保护等级表','','cmii-admin-data','/api/admin/model/hangar/queryUavProtLevel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(126,'API_6e1e3b576ed81cfbe301f4b19c131c3a','新增机库类型信息','','cmii-admin-data','/api/admin/model/hangar/addUavHangarModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(127,'API_2df7cfdd028644189fb39c1fbfb8e5fe','修改机库类型信息','','cmii-admin-data','/api/admin/model/hangar/updateUavHangarModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(128,'API_f9dab58050666d3f087b5bd13906b4db','删除机库类型信息','','cmii-admin-data','/api/admin/model/hangar/deleteUavHangarModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(129,'API_a857b8606d5df8359d9fd8f319524902','根据型号查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,NULL,NULL),(130,'API_ef00e5ef79faaeea98b7dc1377cbcd99','根据生产厂家查询型号列表','','cmii-admin-data','/api/admin/model/hangar/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,NULL,NULL),(131,'API_0e34c8eca4382d7106b98f33f0e40550','提供机库型号查询机库型号信息','','cmii-admin-data','/api/admin/model/hangar/queryDetailByHungarModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(132,'API_f7f835d6b5b5414a15e9367bfa686402','模糊查询机库生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(133,'API_d0a8b82a53afe76c478d1010dfe1ff01','添加字典类型','','cmii-admin-data','/api/admin/dictionaryType/add','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(134,'API_c5d7432a0e3bae534a3d6ea3665237e2','修改字典类型','','cmii-admin-data','/api/admin/dictionaryType/update','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(135,'API_f404be3fc6b1ecb26eaad3ab924efbb9','删除字典类型','','cmii-admin-data','/api/admin/dictionaryType/delete','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(136,'API_f3a90193680fa0f62a2ebf52db9c4fb4','字典类型列表','','cmii-admin-data','/api/admin/dictionaryType/query','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(137,'API_bb8f9d5366516b7bd1fd68b8871ba966','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/getDictName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(138,'API_4d0a53a39c735aa8ad90f5d3b268e245','类型对应的数据字典名称对应的key','类型对应的数据字典名称对应的key','cmii-admin-data','/api/admin/dictionary/getDictKey','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(139,'API_24d80fbba26c87978550f0e74599c525','获取字典里面语言对应的某个值','获取字典里面语言对应的某个值','cmii-admin-data','/api/admin/dictionary/getValueByLang','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(140,'API_52723d911feedd347c2c4dfea68a8c1d','字典属性上移动','字典属性上移动','cmii-admin-data','/api/admin/dictionary/moveUp','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(141,'API_3a03a398c5b5aca2112cc1ee26ea1ca7','字典属性下移动','字典属性下移动','cmii-admin-data','/api/admin/dictionary/moveDown','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(142,'API_5d077f1daf3a374171468eb52ba961f1','查询类别对应的字典code映射','查询类别对应的字典code映射','cmii-admin-data','/api/admin/dictionary/queryByTypeCode','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(143,'API_9cf77bb58c5a9447a714eb5c9310472d','查询数据字典明细','查询数据字典明细','cmii-admin-data','/api/admin/dictionary/queryDictDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(144,'API_a6f13db5c1b993222e0289ebd55fa29b','查询有效的字典code映射','查询有效的字典code映射','cmii-admin-data','/api/admin/dictionary/queryValiableByTypeCode','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(145,'API_c47c8080645f5ea74237a65f6b8cd3a6','模糊查询有效code映射','模糊查询有效code映射','cmii-admin-data','/api/admin/dictionary/queryValiableList','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(146,'API_cbb5da8278aa4a91e9aea8d93a3967de','模糊查询本地语言对应的数据字典属性','模糊查询本地语言对应的数据字典属性','cmii-admin-data','/api/admin/dictionary/queryLocalByKeyWords','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(147,'API_5494210933a8193ffd84f6bb1f731ced','添加字典属性','添加字典属性','cmii-admin-data','/api/admin/dictionary/add','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(148,'API_0ccdea8c8d91095fcea830b9be8b6605','更新字典属性','更新字典属性','cmii-admin-data','/api/admin/dictionary/update','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(149,'API_279c3912b0662a0b7d24b188c8278c8b','删除字典属性','删除字典属性','cmii-admin-data','/api/admin/dictionary/delete','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(150,'API_cc5d51f761b86e43c71192ad16c8ed10','字典check','字典check','cmii-admin-data','/api/admin/dictionary/check','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(151,'API_99cd090ae437761a844e1366239bafc8','字典查询','字典查询','cmii-admin-data','/api/admin/dictionary/query','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(152,'API_7c1af759105a09feac5129c0a5749699','恢复可用字典属性','恢复可用字典属性','cmii-admin-data','/api/admin/dictionary/enable','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(153,'API_7cf67447d82dbc2aae3f58416b95d6cf','禁用字典属性','禁用字典属性','cmii-admin-data','/api/admin/dictionary/disable','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(154,'API_73ee94cc1a1fe118747c0e4ffb98715e','查询高度和时间有重叠部分的空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(155,'API_d925816c859b55482ee818f05cc3b44a','查询空域类型','','cmii-admin-data','/api/admin/arealimit/queryAreaType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2021-09-22 20:09:11',NULL),(156,'API_75ff1fc1f584bf9005b24b375054d6f5','按空域类型查询空域限制-n','传入参数为空域类型 多个请用,相隔','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByAreaType.do','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(157,'API_a3fab050851c9041a920021ec3a2d362','新增空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/insertZydAreaLimit.do','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(158,'API_f995cda2241b426c6983e9d3fcf5893c','修改空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/updateZydAreaLimit.do','PUT',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(159,'API_7142cc769bff4f9fb3ea9b6172637be8','按id删除空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/deleteZydAreaLimitById.do','DELETE',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(160,'API_82d09530b6c97ea16a33a5ede527adbf','按id查询空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitById.do','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(161,'API_79aa85dad2686c8be8398fc686fe2d76','为监视提供的接口,用于查询告警','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitBySurveillance.do','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(162,'API_78f934171b8fbc2900b04258a35d7a95','从摄像头类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/cam/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(163,'API_ad8d42ba2aee3e2d138b3950cee78fc8','从摄像头类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/cam/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(164,'API_ab0e57a46420e4534b5c7997aa0a0b1b','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/cam/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(165,'API_ea0004e0d1c3324340cddceec50c61f6','查询曝光模式列表','','cmii-admin-data','/api/admin/model/cam/queryExpModeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(166,'API_7984c09b224b5e860f7fe8958a758dcb','查询工作模式列表','','cmii-admin-data','/api/admin/model/cam/queryWorkModeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(167,'API_4899d9a41838c726a75f0a72a6122290','查询曝白平衡列表','','cmii-admin-data','/api/admin/model/cam/queryBalanName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(168,'API_bbe3f8c129c82cbe71ed35a41a282599','查询图像存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryImgFmtName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(169,'API_6732fadadc52936af9a6a9687cce7a1e','查询图标尺寸列表','','cmii-admin-data','/api/admin/model/cam/queryImgSizeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(170,'API_7bec2a8dfa9aca7159523dbe9e18326f','查询拍照模式列表','','cmii-admin-data','/api/admin/model/cam/queryCamModeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(171,'API_a1d168be5031dc1dd0e4fbc2505be60b','查询快门速度列表','','cmii-admin-data','/api/admin/model/cam/queryCamShutName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(172,'API_dd46071112769417386194ce7c86e967','查询照片ISO列表','','cmii-admin-data','/api/admin/model/cam/queryImgISOName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(173,'API_6ada96027958ab3c87a1610d3d91397a','查询视频存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryVideoFmtName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(174,'API_d01e0d54b5b7202eafc7d1a2231876b8','查询视频分辨率列表','','cmii-admin-data','/api/admin/model/cam/queryVideoDisName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(175,'API_097cdf6975ebe29f15f2ddcc4681415a','查询视频ISO列表','','cmii-admin-data','/api/admin/model/cam/queryVideoISOName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(176,'API_7addf0dc3c91ea72e107cf07b21f5794','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(177,'API_bc60df3df11353c5e51941e33d6a8a79','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(178,'API_114055c06825f48f1103858a5b4e5243','模糊查询型号列表','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(179,'API_445b19de6f7aa6fdb994c62ac18b8f5a','新增摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(180,'API_cf6a3aa36a679cec602ea02152b324af','修改摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(181,'API_8b110561027e6075cbc784f5245c0344','删除摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(182,'API_2a38ba8b44f9227276e556d1b4fdcdea','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(183,'API_dd9a0a34900527d19fa9e51602bd8c66','模糊查询设备型号列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(184,'API_6de3e13765d806e95b54edba5c8ba7fa','设备动作列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevAction','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(185,'API_1027e0154b2cabcfcd03f2705aae31c9','新增设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(186,'API_45f69de95496f9503fe5da237bee773d','设备动作匹配详情查询','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(187,'API_6950169e9ca9384217f431e1c5459aa4','修改设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(188,'API_88494eb1755e09d138b8e16c5121cfb4','删除设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(189,'API_f3a3bbb16e9d784a4baa1e7f7a1cc432','根据类型查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionMatchByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(190,'API_7999fb512373545428a904f2a93126c5','查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(191,'API_f0bb4d4149221532cbdfd93f6f70867c','模糊查询设备类别列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(192,'API_3e2410bdbc010bebf06c9c183b04f0d3','从喊话器类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/spk/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(193,'API_25e8361bc244a0699cededd54ae0f8ed','从喊话器类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/spk/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(194,'API_03a697de6910c8d3d8ae2f4c962e51d0','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/spk/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(195,'API_63d52b1a7520b2c088573d92931d3404','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(196,'API_ca5a964fe634a07d0bd320d964cb3ee5','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(197,'API_d30cca23905217ae8b0a17b4ee2c1018','模糊查询型号列表','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(198,'API_49b0224bc641ca32510894821e03636b','新增喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(199,'API_6585ce453fd0e6dff8e03a24bcc649c1','修改喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(200,'API_6558552d0cbcd975a333ec6d718e1ed9','删除喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(201,'API_df28049d91b12b12cb0b160d7fb49f07','查询所有的语言','查询所有的语言','cmii-admin-data','/api/admin/language/queryAll','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(202,'API_d3e06bfbed9a266753cbde23e4fff04a','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(203,'API_0bdef64520190b16672dbb06d7715e2a','设备型号匹配详情查询','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:41',NULL),(204,'API_4ed187c7ced82ab26132997c81859a3e','载荷型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavLoadModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:45',NULL),(205,'API_46093c9fecf9308045914611b99a23bb','新增设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(206,'API_21ef9d5cf72e0d3d2b66f96ce3f89422','修改设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(207,'API_0b760cde3e65475e19f8a99ed388db38','删除设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(208,'API_586c0c599b75290c598925596bc1014b','根据无人机查询设备类型匹配編碼列表','','cmii-admin-data','/api/admin/model/match/type/queryMatchListByUav','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(209,'API_a8f653f1e5fd6fe95c54523511ee5d47','根据无人机查询设备类型匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByUav','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:42',NULL),(210,'API_0fad73ed918548c3826f85283e31366c','根据机库查询无人机匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByHangar','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:43',NULL),(211,'API_21aa3d9fac7d93666bca6833bf5568b9','查询机库型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(212,'API_670ee49175328b4484f621bcd5770198','无人机型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:46',NULL),(213,'API_3f2d5ac4692a6e334f1803d6e43b1b1f','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2022-04-25 02:50:19',NULL),(214,'API_e91843e6c80f66232751894ca6daab2a','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2022-04-25 02:50:19',NULL),(215,'API_73a8cc79afcfb72994c36e356120d1b6','swaggerResources','','cmii-admin-data','/swagger-resources','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2022-04-25 02:50:19',NULL),(216,'API_722c394501c759be1a1615c1195dce7e','errorHtml','','cmii-admin-data','/error','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-09-09 09:14:44',NULL),(37129158911852544,'API_4af205f553090073657fd3225909fca0','预览excel','','cmii-uav-user','/system/file/preViewExcel','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:10',NULL),(37129159230619648,'API_cd482e686ebdeb7f999493b5b5d8a462','下载用户批量导入模版','','cmii-uav-user','/system/file/userTemplate','GET',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:13',NULL),(37129159444529152,'API_caefde2c04ac0eda6a284d1edbb1152f','创建一个公司','','cmii-uav-user','/api/uav/org/createCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:11',NULL),(37129160321138688,'API_0dd8e9d343c3ad19ac127ac1956a7990','分页查询公司','','cmii-uav-user','/api/uav/org/pageCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:16',NULL),(37129160543436800,'API_c12b6c34d3573bd5537e9b2cd2b1617e','查询公司详细信息','','cmii-uav-user','/api/uav/org/getCompanyDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:10',NULL),(37129160723791872,'API_8d221aca42139bdc4a70ae46c50e14be','查询所有公司','','cmii-uav-user','/api/uav/org/queryCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:15',NULL),(37129160908341248,'API_b19957e6c9ef266e975453a9f56f171a','删除一个公司','','cmii-uav-user','/api/uav/org/delCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:14',NULL),(37129161151610880,'API_952348d1fc4fc0fdfd58d2b87d952264','更新公司','','cmii-uav-user','/api/uav/org/updateCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:19',NULL),(37129161369714688,'API_f4cad236d06712a0c44987ebb502faf1','关停一个公司','','cmii-uav-user','/api/uav/org/disableCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-10-11 15:37:15',NULL),(37129161768173568,'API_f8575d0d0d6138ed277f0339a0d561ee','恢复一个公司','','cmii-uav-user','/api/uav/org/enableCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:11',NULL),(37129161973694464,'API_94606acf6f83c2ac28918281f85b22a0','创建一个机构','','cmii-uav-user','/api/uav/org/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:19',NULL),(37129162158243840,'API_9a61edcd78864d7bcc25913e5c208c23','查询公司所有的机构','','cmii-uav-user','/api/uav/org/queryOrg','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:19',NULL),(37129162380541952,'API_38c2422dda1213e31ccdc2f5879fe670','删除一个机构','','cmii-uav-user','/api/uav/org/delOrg','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:13',NULL),(37129162594451456,'API_575b68b670980029e5e067d4200ec727','更新一个机构','','cmii-uav-user','/api/uav/org/updatOrg','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:09',NULL),(37129162774806528,'API_d444a24f9fccc8576073243433916bf0','查询出所有的api','','cmii-uav-user','/api/uav/resource/api/queryAll','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:14',NULL),(37129163055824896,'API_9a2e98241817ae6c0fe3ea4fc2261721','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryBy','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:08',NULL),(37129163240374272,'API_b84b0f5eda8a0541bbb9bab629280d8d','增加api','','cmii-uav-user','/api/uav/resource/api/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:09',NULL),(37129163441700864,'API_3dd1062f863d72d28cbd6bdc31e272fa','更新api','','cmii-uav-user','/api/uav/resource/api/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:19',NULL),(37129163626250240,'API_5f500603a8f4a9b7c5ab637961035338','删除api','','cmii-uav-user','/api/uav/resource/api/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:08',NULL),(37129163814993920,'API_40a8afb36e4bf19fb6800cc07f0c5fcb','增加菜单','','cmii-uav-user','/api/uav/resource/menu/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:15',NULL),(37129164049874944,'API_c5247f54f028dc8bf62526cdc67f9f68','更新菜单','','cmii-uav-user','/api/uav/resource/menu/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:09',NULL),(37129164284755968,'API_eddc9be54517ea76417f8fbf05632e81','删除菜单','','cmii-uav-user','/api/uav/resource/menu/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:14',NULL),(37129164465111040,'API_a9d5998b2842d008bceefd9bdc989687','查询所有菜单','','cmii-uav-user','/api/uav/resource/menu/queryAll','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:20',NULL),(37129164616105984,'API_ab1152801e84b0bf7aab84807ac549dd','增加按钮','','cmii-uav-user','/api/uav/resource/action/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:12',NULL),(37129164796461056,'API_4ed629ddc7b9bec753d6bddae509ecdc','增加按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:13',NULL),(37129164981010432,'API_5b6f4c01e1bff1411ed5f15ca3a77b73','更新按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:12',NULL),(37129165169754112,'API_9643432bc3144a39764ef1e4b95a960c','更新按钮','','cmii-uav-user','/api/uav/resource/action/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:08',NULL),(37129165333331968,'API_3e884720cec333d70c19325e8edde54d','删除按钮','','cmii-uav-user','/api/uav/resource/action/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:11',NULL),(37129165555630080,'API_f1f84b1ad3430fd333764f0ab2ce5f8b','查询菜单下所有的按钮','','cmii-uav-user','/api/uav/resource/action/queryByMenuId','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:10',NULL),(37129165786316800,'API_696e439d468de4625840fce37d60a36e','查询按钮,菜单下面的所有api','','cmii-uav-user','/api/uav/resource/action/queryApiByActionId','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:13',NULL),(37129165983449088,'API_dfc472e5b9c3816de93be86120cc6baf','给按钮授权api接口','','cmii-uav-user','/api/uav/resource/action/authorityApi','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-10-11 15:37:19',NULL),(37129166126055424,'API_bcee59f2103818a5f37eeb7c35a6898e','获取平台(公司)的所有菜单以及按钮','','cmii-uav-user','/api/uav/resource/queryMenuAndAction','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:20',NULL),(37129166285438976,'API_37772fbb1a5f9246c6fa2dc533b55526','获取平台所有的资源列表(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceList','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:15',NULL),(37129166537097216,'API_03e1a0b6cbedccfd749d336239e1c653','获取平台所有的资源树(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTree','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:19',NULL),(37129166742618112,'API_2f792ba68267c0e9802e2a3ff75ff56d','获取平台所有的资源树,并统计(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTreeStatistic','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:09',NULL),(37129166956527616,'API_32e11ca32ec273ec4a78bca3dd85f9e3','根据code获取资源的多语言版本','','cmii-uav-user','/api/uav/resource/queryResourceLanguage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:13',NULL),(37129167124299776,'API_db073aa081d2ffe613ebc3cf56876ab9','根据编码导出资源信息','','cmii-uav-user','/api/uav/resource/syncExportResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:12',NULL),(37129167287877632,'API_144cb3ab17945c8b50b0c5b2fa20dae0','根据编码导入资源信息','','cmii-uav-user','/api/uav/resource/syncImportResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:09',NULL),(37129167451455488,'API_a62023d9956bd0c0d5a5bce050a744ec','有效角色的列表','','cmii-uav-user','/api/uav/role/query','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:13',NULL),(37129167686336512,'API_952d06cbfdc5cd71b09f941194c76b92','角色分页查询','','cmii-uav-user','/api/uav/role/queryPage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:15',NULL),(37129168013492224,'API_83cc6276385c5454f8a555d9b0843c21','获取角色详细信息包括资源','','cmii-uav-user','/api/uav/role/getRoleWithResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:15',NULL),(37129168189652992,'API_bc97a2e4a906e69ba0a38961e61dd1c2','获取角色资源树','','cmii-uav-user','/api/uav/role/getRoleResourceTree','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:10',NULL),(37129168349036544,'API_6b3707c0d9075a6e1d5e446886eae8d0','新增角色','','cmii-uav-user','/api/uav/role/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:11',NULL),(37129168533585920,'API_c14ab57512e6e3351e3e0e0a9730b2e7','新增角色并授权','','cmii-uav-user','/api/uav/role/addAndAuthority','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:10',NULL),(37129168722329600,'API_187627f031d0a65bed30f74d7878b90a','修改角色','','cmii-uav-user','/api/uav/role/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:18',NULL),(37129168923656192,'API_9711fedd69da15347a54ba6cefa7b29b','修改角色并授权','','cmii-uav-user','/api/uav/role/updateAndAuthority','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:11',NULL),(37129169154342912,'API_fb0cc52e402afe1bec8994793a2ee376','删除角色','删除角色','cmii-uav-user','/api/uav/role/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:10',NULL),(37129169368252416,'API_e66b38c75630b4a737829f4a679b36a4','为用户赋予角色','为用户赋予角色','cmii-uav-user','/api/uav/role/saveUserRoles','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:13',NULL),(37129169536024576,'API_e9e81aa05a3a5fece29adee9de94ad7d','为角色增加用户','为角色增加用户','cmii-uav-user','/api/uav/role/saveRoleUsers','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:08',NULL),(37129169712185344,'API_01c42d1241684992ce0d0994e949f353','角色授权资源(菜单以及按钮)','角色授权资源(菜单以及按钮)','cmii-uav-user','/api/uav/role/authorityResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:20',NULL),(37129169875763200,'API_1c85326fbb19ed42d341591ef931d823','禁用角色/锁定角色','','cmii-uav-user','/api/uav/role/disable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:15',NULL),(37129170081284096,'API_b2f652e930b07177f12b7fd87fb5ea40','启用角色/解锁角色','','cmii-uav-user','/api/uav/role/enable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-10-11 15:37:16',NULL),(37129170253250560,'API_13df7b0a05472e0a9a51488dfbf05876','用户列表','','cmii-uav-user','/api/uav/user/findPage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:13',NULL),(37129170437799936,'API_3e5c403e4b7f1c602ac3e28951955783','增加用户','','cmii-uav-user','/api/uav/user/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:08',NULL),(37129170609766400,'API_3740f38f36c26a50c0e0a3fd4c9e51f1','修改用户信息','','cmii-uav-user','/api/uav/user/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:19',NULL),(37129170777538560,'API_bdf05b037740ee590e3b6864e5163ab1','获取用户角色','','cmii-uav-user','/api/uav/user/getUserRoles','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:20',NULL),(37129170936922112,'API_4a45eb5cf116d6304ccd6c4d7c617356','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/getMyDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:16',NULL),(37129171079528448,'API_f8bdaff975e38f1088ea7130e2cd0fde','获取用户详细信息','','cmii-uav-user','/api/uav/user/getUserDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:17',NULL),(37129171272466432,'API_d4e2a13d9077aa75aeb94bc7b20aae07','获取用户资源','','cmii-uav-user','/api/uav/user/getUserResources','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:19',NULL),(37129171427655680,'API_78f9684cf1948d9fa7ac822f808dda10','以树形结构获取资源树','','cmii-uav-user','/api/uav/user/getUserResourceTree','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:17',NULL),(37129171608010752,'API_a869a436cd0be4fee43ca50af78d2e5c','禁用用户/锁定用户','','cmii-uav-user','/api/uav/user/disable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:12',NULL),(37129171784171520,'API_20ed92bcb1ab21bb4387511221772bee','启用用户/解锁用户','','cmii-uav-user','/api/uav/user/enable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:13',NULL),(37129171947749376,'API_707c71b10a1cc38fcc6fa499c4da6514','添加飞手','','cmii-uav-user','/api/uav/user/addFlyer','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:17',NULL),(37129172115521536,'API_4ea6212bfc023bb48de804b2d1a55b81','生成邀请地址','','cmii-uav-user','/api/uav/user/createInviteUrl','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:13',NULL),(37129172304265216,'API_4600ad4f0e176d556393a65c04510e51','批量上传用户','','cmii-uav-user','/api/uav/user/userUpload','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:17',NULL),(37129172497203200,'API_f7cf343ee9bc0f36c04b885ae5994458','管理员重置密码','','cmii-uav-user','/api/uav/user/resetPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:17',NULL),(37129172644003840,'API_f90b75a4827a5f681dd9dde40c97f66d','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/profile/getMyDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:17',NULL),(37129172828553216,'API_eaae5f9cc6fad74e1d9a525f33d26856','更新用户头像','','cmii-uav-user','/api/uav/user/profile/updateAvatar','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:20',NULL),(37129172983742464,'API_2a3d43803567789ca45f6c0f0fc4e1aa','更新用户名称','','cmii-uav-user','/api/uav/user/profile/updateName','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:09',NULL),(37129173147320320,'API_69b54b15bedcabdc884571bc8971b3c7','申请更新邮箱','','cmii-uav-user','/api/uav/user/profile/updateEmail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:12',NULL),(37129173315092480,'API_951214eab30adc7578fdde049514ce4e','执行更新邮箱','','cmii-uav-user','/api/uav/user/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:13',NULL),(37129173512224768,'API_1032f1f983c37cd32e5b7381c4cbca9d','重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:10',NULL),(37129173726134272,'API_deda391c18ef00ea6a63865be14310fc','通过身份证重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephoneWithIdentity','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:10',NULL),(37129173948432384,'API_feba8e8d58c5347eb929af17138838f9','添加用户账号','','cmii-uav-user','/api/uav/user/profile/addAccount','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:14',NULL),(37129174258810880,'API_2ee55d087127129a3a6d29dbf9b6469f','重置','','cmii-uav-user','/api/uav/user/profile/resetPwd','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-10-11 15:37:17',NULL),(37129174560800768,'API_257d9acdae4652fdef4795d11de4b411','找回密码','','cmii-uav-user','/api/uav/user/profile/findPwd','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:10',NULL),(37129174774710272,'API_fa2680a92192033899a2481e8fb3bb6e','根据token获取用户基本信息','','cmii-uav-user','/system/checkPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:12',NULL),(37129175005396992,'API_150ba1da1f4a174b132167b3b252d670','测试获取单个','','cmii-uav-user','/api/uav/uavTestPO/testGet','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:16',NULL),(37129175177363456,'API_56e5cefafdd168386d7f30b5b1219454','测试','','cmii-uav-user','/api/uav/uavTestPO/','POST,GET',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:12',NULL),(37129175340941312,'API_622b954009a914f7c3f5b4dae6c5a722','测试异常','','cmii-uav-user','/api/uav/uavTestPO/testException','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:12',NULL),(37129175517102080,'API_9d8416f00194ce3c7cd9ac0366e70e2d','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:14',NULL),(37129175672291328,'API_9da6a0c63553bbd633a55d9ac60a4227','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPageByCustom','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:15',NULL),(37129175873617920,'API_1a735ffddfa640ed742d282018370fc4','测试添加','','cmii-uav-user','/api/uav/uavTestPO/testAdd','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:16',NULL),(37129176074944512,'API_568f7d141e21dda80d1ff2bcdfd058b8','用户注册','','cmii-uav-user','/registry','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:14',NULL),(37129176242716672,'API_e9678de1af14b0753155ffab173a0613','用户邀请注册','','cmii-uav-user','/inviteRegistry','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:19',NULL),(37129176427266048,'API_452d66110157d297ffe6356f2fbb9107','根据邀请码,查询邀请信息','','cmii-uav-user','/registry/getInvitedInfo','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:09',NULL),(37129176607621120,'API_a70d9ba7a909c0d00734632f09a2ded1','发送绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:11',NULL),(37129176787976192,'API_41b4ab1a493b21a94ca77fddff40af63','验证绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:08',NULL),(37129176938971136,'API_383e669ef441f9f9d20d7c07299cfb4a','发送解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:12',NULL),(37129177110937600,'API_92e42e7981b90482b33b9ddf7db4cd95','验证解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:15',NULL),(37129177270321152,'API_28b67fe2833bef7e732dbd5d89829618','发送登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:20',NULL),(37129177450676224,'API_5dc51c889fa6be6bd5235d4059a4294f','检测登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:15',NULL),(37129177631031296,'API_e58796bbb5570d9441ebc7e81e8599ab','发送注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:18',NULL),(37129177811386368,'API_ba2f464c282b3a0553bd99165d06d783','检测注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:13',NULL),(37129178016907264,'API_98b17ab44f353e164355f455a423419b','发送找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:13',NULL),(37129178193068032,'API_0aeba2b421ca15f92cd5428c886d485b','检测找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:15',NULL),(37129178419560448,'API_40dff29929d118e208b634b4cf41ff6d','根据用户名获取账号信息','','cmii-uav-user','/account/getByUsername','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-10-11 15:37:14',NULL),(37129178599915520,'API_a8c6a4ffabfb0a9d79f36db5a147e723','根据手机号获取账号信息','','cmii-uav-user','/account/getByTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:14',NULL),(37129178763493376,'API_9a77fc28815a543625cc1da15f122326','根据用户id获取信息,未被删除用户','','cmii-uav-user','/user/getById','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:18',NULL),(37129178927071232,'API_92c73e3d40fab73a5aac050b6022394c','根据用户id获取用户详细信息','','cmii-uav-user','/user/getDetailById','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:09',NULL),(37129179086454784,'API_ce779d357be0d8577ce7af6ac166c639','根据用户id集合获取用户信息','','cmii-uav-user','/user/getByIds','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:10',NULL),(37129179266809856,'API_dfbef905b3129b45341a9690102968e9','检测用户是否拥有权限','','cmii-uav-user','/user/checkUri','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:10',NULL),(37129179455553536,'API_fbaaeb1dc35e086b1fe493193046f746','获取公司所有用户','','cmii-uav-user','/user/getByCId','GET',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:09',NULL),(37129179652685824,'API_f5ec0b9a99300481ff676e3fd1ec326f','根据公司id,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId','GET',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:19',NULL),(37129179824652288,'API_98c7ec3ba0ce3553bb0c52272f29cee7','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2022-03-11 06:17:28',NULL),(37129180063727616,'API_2c5059bcb5b737dfc1f69fc4897d587f','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2022-03-11 06:17:28',NULL),(37129180252471296,'API_7ac275e7b208b86b6bae996e6305f86f','swaggerResources','','cmii-uav-user','/swagger-resources','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2022-03-11 06:17:28',NULL),(37129180432826368,'API_9f707b4364462c082b59c5dd00240592','errorHtml','','cmii-uav-user','/error','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-10-11 15:37:17',NULL),(37183520250003456,'API_89dba7a6eb9a2cfacedfd80f9ac039c7','添加一个问题反馈','','cmii-uav-feedback','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520304529408,'API_425ee952c02aa238fed24797554ac6f2','导出查询结果','','cmii-uav-feedback','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520342278144,'API_e4a55343c032ef4fc49727f482e7eb67','查询反馈类型','','cmii-uav-feedback','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520396804096,'API_dc560856289d3a9211012dbabb79ef29','查询应用列表','','cmii-uav-feedback','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520430358528,'API_772d54d06ec5de08c748ab474f5ed449','查询问题反馈','','cmii-uav-feedback','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520463912960,'API_92bc10538452e5059980a0a68ff57611','uiConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520493273088,'API_38e7b789c679b2e181a351ba0c48f3e4','swaggerResources','','cmii-uav-feedback','/swagger-resources','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520518438912,'API_64552bbf0983e08276afbdd6c20fe8f1','securityConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520564576256,'API_9e1361a03705c615f98b19b4e7e3b5bd','errorHtml','','cmii-uav-feedback','/error','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,'2020-10-30 06:34:02',NULL),(58561731424681984,'API_f651acd4a2ca63a5a85bd65d538e6d56','上移','','cmii-admin-user','/v1/platforms/moveUp','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561731667951616,'API_0761d6ce9fbcd1be78d773c6a3dec4ea','下移','','cmii-admin-user','/v1/platforms/moveDown','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561731735060480,'API_bf87d11dde1366c85d789042d1b2bea2','获取应用的多语言信息','','cmii-admin-user','/v1/platforms/getMultiLangInfo','GET',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561731797975040,'API_b38727b89c79684eb2cafe62fecae20a','获取应用的类型列表','','cmii-admin-user','/v1/platforms/getAppTypes','GET',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:16',NULL),(58561731860889600,'API_fec02d68c648dcc4af562ed5ead02ec4','查询出所有的平台','','cmii-admin-user','/v1/platforms/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:18',NULL),(58561731911221248,'API_4ef3066dd638ad959fb7cfddf6c64b91','添加一个平台','','cmii-admin-user','/v1/platforms/add','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561732129325056,'API_864ea05bbc0d088201963cf373d3f881','更新一个平台','','cmii-admin-user','/v1/platforms/update','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:20',NULL),(58561732217405440,'API_bbf397c46b80730307463c3d61109e7d','删除一个平台','','cmii-admin-user','/v1/platforms/delete','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:21',NULL),(58561732276125696,'API_891e0005b40375d75c15e7eb477f8ebf','平台应用排序接口','','cmii-admin-user','/v1/platforms/sort','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:21',NULL),(58561735501545472,'API_2ba63fb372f16083de12479c190b5bdd','根据code获取资源的多语言版本','','cmii-admin-user','/api/admin/resource/queryResourceLanguage','POST',_binary '\0',_binary '\0','2020-12-28 06:23:26',1,'2024-09-09 09:14:20',NULL),(58561735564460032,'API_d790efb6a202199c3c4a56acfd5a442e','根据编码导出资源信息','','cmii-admin-user','/api/admin/resource/syncExportResource','POST',_binary '\0',_binary '\0','2020-12-28 06:23:26',1,'2024-09-09 09:14:20',NULL),(58561735883227136,'API_f7b4a6e2224b785452726522372bee1c','根据编码导入资源信息','','cmii-admin-user','/api/admin/resource/syncImportResource','POST',_binary '\0',_binary '\0','2020-12-28 06:23:26',1,'2024-09-09 09:14:17',NULL),(58561740488572928,'API_c9357191da23b642049ee7ca98d9da24','根据应用编码获取应用信息','','cmii-admin-user','/client/v1/platforms/getByCode','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:20',NULL),(58561740547293184,'API_b58b29f3ba4ebd330e72037398cf0fc3','根据应用id获取应用信息','','cmii-admin-user','/client/v1/platforms/getById','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:20',NULL),(58561740597624832,'API_cd6541bfbf0324207b9576b657bf15df','根据分组获取改组的应用列表','','cmii-admin-user','/client/v1/platforms/queryByGroup','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:16',NULL),(58561740652150784,'API_ea352797acce077f14e2a1ed82929639','查询所有的应用列表','','cmii-admin-user','/client/v1/platforms/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:19',NULL),(58561740916391936,'API_2fe6563784e99c37b770c2fb1a193b82','接口扫描','','cmii-admin-user','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:18',NULL),(58562518972366848,'API_8273362a82640f68d9061f967d5ea3cb','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/cam/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-09-09 09:14:43',NULL),(58562520306155520,'API_66476ec9921485b64010dd50885985e5','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/spk/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-09-09 09:14:44',NULL),(58562521363120128,'API_558bd45f421ad0fc6bd325ad037809e5','从Redis获取有效的本地语言值对应的key','类型对应的本地语言值对应的key','cmii-admin-data','/api/admin/dictionary/getLangKeyFromRedisByValue','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-09-09 09:14:45',NULL),(58562521430228992,'API_c34e31bdefebec7afca0c28a4ce25655','从Redis模糊查询有效数据字典列表','从Redis模糊查询有效数据字典列表','cmii-admin-data','/api/admin/dictionary/getDictListFromRedis','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-09-09 09:14:46',NULL),(58562523040841728,'API_e4151a02daecf76311cc8baaebe27ede','为区块链提供接口,查询空域限制数量','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitCount.do','GET',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-09-09 09:14:45',NULL),(58562523661598720,'API_e2c418b0d87cdb39a51448d12818b727','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/plane/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-09-09 09:14:42',NULL),(58562525230268416,'API_7d5d4aa167650e78febf5e176e2ff7c0','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/hangar/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-09-09 09:14:42',NULL),(58562525238657024,'API_7d5d4aa167650e78febf5e176e2ff7c0','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/hangar/checkNotFrozen','GET',_binary '\0',_binary '','2020-12-28 06:26:34',1,'2022-01-18 11:06:28',NULL),(58562526912184320,'API_a0dbde8cd3176b28b139ea6c067e614b','接口扫描','','cmii-admin-data','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-09-09 09:14:46',NULL),(58586579525959680,'API_15665441f1d1635587fd6f016058f3f6','分组获取平台应用列表','','cmii-uav-user','/api/uav/platform/queryPlatformsByGroup','GET',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-10-11 15:37:10',NULL),(58586580436123648,'API_e4d855c1d7897b6b87fea71e8e06abc0','管理员获取全平台的所有树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-10-11 15:37:11',NULL),(58586580478066688,'API_aea793965a6dccffb67f9c19b0e5c69c','获取某个角色的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForRole','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-10-11 15:37:08',NULL),(58586580520009728,'API_48c8cb8f97e22a0f4b2ac1861f31c9dd','获取某个公司的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForCompany','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-10-11 15:37:20',NULL),(58586580557758464,'API_39112b4382df2b946e30b59c784aa817','获取某个用户的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForUser','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-10-11 15:37:16',NULL),(58586580717142016,'API_d83e61c4ac50aa7d9ec1091ed56ab8a3','获取某个用户的某个平台菜单树','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForUser','GET',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-10-11 15:37:19',NULL),(58586580759085056,'API_afd411eb8654953e857666530e88321a','获取应用的类型列表','','cmii-uav-user','/api/uav/resource/getAppTypes','GET',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-10-11 15:37:18',NULL),(58586581765718016,'API_ee6751fb2a2628f5c66cd8085cdbbcb2','管理员获取某一个平台的全部资源','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-10-11 15:37:19',NULL),(58586583409885184,'API_33b24d37f02f7e07cd5ca451bf432b99','查询所有的用户','','cmii-uav-user','/user/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-10-11 15:37:13',NULL),(58586583808344064,'API_1fb0a000cc6507b937c31b6886142cc3','更具公司id查询公司管理员','','cmii-uav-user','/user/getCompanyAdminByCId','GET',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-10-11 15:37:09',NULL),(58586583850287104,'API_aa858a3fc95f5d17248bff767175f1dc','查询用户和公司统计','','cmii-uav-user','/user/getStatistic','GET',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-10-11 15:37:11',NULL),(58586584257134592,'API_e754afcf7b88439c5aacd7ba36e18d9b','接口扫描','','cmii-uav-user','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-10-11 15:37:21',NULL),(70169537223327744,'API_9f10b1349eb7299406c94a7eae1fc212','按类型导入字典明细','','cmii-admin-data','/api/admin/dictionary/dictImport','POST',_binary '\0',_binary '\0','2021-01-29 07:08:41',1,'2024-09-09 09:14:45',NULL),(70169540008345600,'API_7487d41441eaff5b202a6cc54e48b362','从Redis获取有效的编码对应的所有语言的值','从Redis获取有效的编码对应的所有语言的值','cmii-admin-data','/api/admin/dictionary/getAllLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-01-29 07:08:42',1,'2024-09-09 09:14:43',NULL),(70169646002601984,'API_586ad6cbe725e05d7f9c7e2fd04325cf','禁用三月未登录过的用户','','cmii-uav-user','/api/uav/user/disableInactiveUsers','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-10-11 15:37:12',NULL),(70169646673690624,'API_8c4df51ed65d15b261daf2bca465eaaf','导出查询结果','','cmii-uav-user','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-10-11 15:37:17',NULL),(70169646711439360,'API_370e298f167c80ef222770b53b25f05d','查询应用列表','','cmii-uav-user','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-10-11 15:37:12',NULL),(70169646765965312,'API_3ea32b425fd30e8ed7d124fe062c72ef','查询问题反馈','','cmii-uav-user','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-10-11 15:37:21',NULL),(70169646799519744,'API_1b93c3aae168c8efd6dad138874bded8','查询反馈类型','','cmii-uav-user','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-10-11 15:37:19',NULL),(70169646841462784,'API_d6260990e96ba28ae65e0420311ada19','添加一个问题反馈','','cmii-uav-user','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-10-11 15:37:20',NULL),(70169649957830656,'API_04983dfe29b27883bf6a799d0fed60e8','查询某个应用中的全部用户','','cmii-uav-user','/user/queryByPlatformCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:15',NULL),(70169650339512320,'API_f889240e74c75cb3f13ce1144103d411','根据平台应用id,删除资源','','cmii-uav-user','/resource/deleteByPlatformId','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:14',NULL),(70169650385649664,'API_d6925d7290ed8ce694423daa048ca1db','查询用户某个平台的菜单','','cmii-uav-user','/resource/queryPlatformResourceTreeForUser','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:15',NULL),(70170025335455744,'API_15c789ca0bd24b3733452f1699151935','根据用户id获取用户信息','','cmii-admin-user','/client/v1/user/getById','GET',_binary '\0',_binary '\0','2021-01-29 07:10:38',1,'2024-09-09 09:14:19',NULL),(82871897502515200,'API_41e1f6d85f2724a89061a30a00b199d9','按类型导出字典明细','','cmii-admin-data','/api/admin/dictionary/dictExport','GET',_binary '\0',_binary '\0','2021-03-05 08:23:20',1,'2024-09-09 09:14:46',NULL),(87906817379663872,'API_b6d1d81c0c2404807f08b8e72affc1bd','添加或者更新回调地址(无需测试,内部使用)','','cmii-admin-user','/v1/platforms/mergeClientRedirectUri','POST',_binary '\0',_binary '\0','2021-03-19 05:50:18',1,'2024-09-09 09:14:20',NULL),(87906817488715776,'API_a5e0eab085d59b1e21af9f5436996cf9','为平台创建密钥','','cmii-admin-user','/v1/platforms/createSecurity','POST',_binary '\0',_binary '\0','2021-03-19 05:50:19',1,'2024-09-09 09:14:17',NULL),(87906820307288064,'API_4fd1f7876844841d9c65d71b111c2f3e','根据token获取用户基本信息(数据回填专用)','','cmii-admin-user','/api/admin/user/getMyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:50:19',1,'2024-09-09 09:14:19',NULL),(87906820366008320,'API_1502ec4efc60177403b8e952e478f958','获取用户详细信息(数据回填专用)','','cmii-admin-user','/api/admin/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:50:19',1,'2024-09-09 09:14:17',NULL),(87907068408758272,'API_edb896c8f7a949895d9d28aa9a5950c6','查询公司详细信息(数据回填专用)','','cmii-uav-user','/api/uav/org/getCompanyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-10-11 15:37:11',NULL),(87907069763518464,'API_c727602364100d70015a5ce2f3b30493','根据token获取用户基本信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getMyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-10-11 15:37:15',NULL),(87907069859987456,'API_0755f3279b5bf809dcfb81600e4c7310','获取用户详细信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-10-11 15:37:10',NULL),(87907071206359040,'API_1b7015d5a94be8c6f1fa73ce08a46c25','删除用户','','cmii-uav-user','/api/uav/user/delete','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-10-11 15:37:19',NULL),(87907071332188160,'API_4de3b611f4460f38f9a8a8b2be70a663','是否还有配额','','cmii-uav-user','/quota/personal/hasQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-10-11 15:37:10',NULL),(87907078273761280,'API_55940e0a645db648b082a2bdc29b956b','获取配置项目历史记录','','cmii-uav-user','/api/admin/system/quota/getQuotaHistory','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:09',NULL),(87907078361841664,'API_bde567dcccb5a9ace49be8f1c7d3d37f','查询所有组织信息','','cmii-uav-user','/api/admin/system/quota/getAllCompany','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:11',NULL),(87907078508642304,'API_f096c70213c5df875be07f0c8386e247','修改配额配置(配置或批量配置)','','cmii-uav-user','/api/admin/system/quota/updCompanyQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:08',NULL),(87907078584139776,'API_91792e840f0d594a77e2579be356f4d8','获取组织配额信息','','cmii-uav-user','/api/admin/system/quota/getCompanyQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:18',NULL),(87907078659637248,'API_d831b068209afa75fae95362539c5248','获取组织配额使用信息(不包含子组织配额)','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfo','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:15',NULL),(87907078739329024,'API_138d1f792e8c7ef2953118f03055b18e','查询组织历史记录时配额信息展示','','cmii-uav-user','/api/admin/system/quota/getQuotaInfoByCompany','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:09',NULL),(87907078978404352,'API_272b4d0242a68b45577015e3eebead94','根据用户id获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryById','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:09',NULL),(87907079381057536,'API_b94a08818c65730154aa7f594172708f','根据姓名和电话号码 模糊查询公司用户','','cmii-uav-user','/user/queryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:20',NULL),(87907079938899968,'API_f39b0513e65e7867e3bf63660694369d','查询组织配额信息','','cmii-uav-user','/client/quota/getQuotaInfoByType','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-10-11 15:37:17',NULL),(87907135358238720,'API_e158024b9d2170b4cc3c16e7c18c2a26','获取机场区域以及禁飞区','','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2021-03-19 05:51:34',1,'2024-09-09 09:14:45',NULL),(92316693031813120,'API_07d043b4ba8f56b040507689a132f59b','getRequestKpi','','cmii-admin-user','/client/v1/kpi/requestKpi','GET',_binary '\0',_binary '\0','2021-03-31 09:53:35',1,'2024-09-09 09:14:21',NULL),(99555581483810816,'API_acebee45653d893e76a60a1d75cd0a3c','queryCompany','','cmii-uav-user','/clients/org/queryCompany','GET',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-10-11 15:37:20',NULL),(99555581978738688,'API_65816ac1a814c3251864b2a34e8c0886','根据id查询公司信息','','cmii-uav-user','/clients/org/getById','GET',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-10-11 15:37:20',NULL),(99555650970845184,'API_ae6e5100bf8e72ab99c0c574e8a8ad96','校验指定公司的无人机类型编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkUavModelMapingInRedis','GET',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-10-11 01:36:45',NULL),(99555651562242048,'API_1a018778504fa7a76012d85ea20ac016','校验指定公司设备类型的编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-10-11 01:36:48',NULL),(99555652245913600,'API_e721a9dee48586a6f9e14acf4f6a0263','校验指定公司的设备类型是否匹配','','cmii-uav-device','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-10-11 01:36:45',NULL),(99555652828921856,'API_ce5ec1b31cc777129860ddee19de9f62','校验指定公司的设备动作是否匹配','','cmii-uav-device','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-10-11 01:36:51',NULL),(99555653369987072,'API_90486be4c33795d2c75c471f947c41b5','校验指定公司的设备数据是否匹配','','cmii-uav-device','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-10-11 01:36:50',NULL),(99555653760057344,'API_2339020a7c07baff4815ee31740f7176','查询公司/机构范围的无人机类型列表','','cmii-uav-device','/api/uav/plane/queryUavModelByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-10-11 01:36:46',NULL),(99555654292733952,'API_f4ff4a0253654d04df20e0fe9ad84b5d','根据无人机类型查询公司范围的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-10-11 01:36:46',NULL),(99555654951239680,'API_e4c6dfa5b05761de0eb255769cf60dcc','根据设备类型和编码查询公司范围的可用状态信息','','cmii-uav-device','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-10-11 01:36:48',NULL),(99555655521665024,'API_40a64df7cb84eea605f73dde15d98668','通过无人机设备号查询无人机编码','','cmii-uav-device','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-10-11 01:36:47',NULL),(99555656113061888,'API_7704177d2ecb71fb7bb4068333033d01','通过无人机编码查询无人机设备号','','cmii-uav-device','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-10-11 01:36:50',NULL),(99555656469577728,'API_4e0df8f7b53399e937cd1d77e87ffc4f','模糊指定公司的在线无人机编码和机库编码列表','','cmii-uav-device','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-10-11 01:36:54',NULL),(99555658050830336,'API_55bf600f383be27938a4428907c0e6f5','查詢公司范围内在线无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:46',NULL),(99555658373791744,'API_fcbfa36a859f563459e4070a5d5734a8','查詢用户关注无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:45',NULL),(99555658805805056,'API_e1ec0ca36f9bcc44b55415c5f0043145','模糊查詢待关注的无人机列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:51',NULL),(99555659619500032,'API_94d0907cd83bdda66ce2d15eaaf1875c','模糊查询包括子公司的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:43',NULL),(99555660080873472,'API_8138e0c7ce00c4dd9aea4f7f624e5f98','查询所有无人机编码列表','','cmii-uav-device','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:44',NULL),(99555660592578560,'API_cd21a0064744a96ef11a1766255eb95e','统计公司/所属机构范围内的无人机数量','','cmii-uav-device','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:45',NULL),(99555660886179840,'API_d307152526c45f79fd4e8d95caed9060','模糊查询包括子公司的生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:46',NULL),(99555661095895040,'API_502815d9c4439f38b83309b3c124a511','查询包括子公司的无人机形态列表','','cmii-uav-device','/api/uav/plane/queryUavShapeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:51',NULL),(99555661402079232,'API_e2c4e3bb23d0d892004fd7f0fc2e9f70','查询包括子公司的无人机尺度列表','','cmii-uav-device','/api/uav/plane/queryUavSizeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:43',NULL),(99555661653737472,'API_9923170469d9fe3e5b24d8610be192ab','查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:52',NULL),(99555662006059008,'API_01cf9be91d4536f51fc882230a27eef1','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-10-11 01:36:53',NULL),(99555662303854592,'API_0cfa74fce5f680fc926301b0857cf378','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavMode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:44',NULL),(99555662597455872,'API_8a96f6bda4172a6945cb2924b6c6bf70','模糊查询可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:43',NULL),(99555662953971712,'API_0739754e32b2127016a920b0cb80a3d7','模糊查询包括子公司的机库列表','','cmii-uav-device','/api/uav/plane/queryHangar','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:44',NULL),(99555663104966656,'API_0de4d92e1aa64c8c1800879290c3b3ac','模糊视频线路列表','','cmii-uav-device','/api/uav/plane/queryVideoLine','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:51',NULL),(99555663281127424,'API_53b3b597f778587f08f78086299c4ceb','按条件分页查询包括子公司的无人列表','','cmii-uav-device','/api/uav/plane/queryUavPlanePage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:44',NULL),(99555663469871104,'API_299ba405af4b7dc97e0856e0d0d4a124','按无人机编码查询指定公司范围内的无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:51',NULL),(99555663700557824,'API_f4cdb7ba93755daf91e3494414279a5c','按无人机设备号查询指定公司范围内无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:53',NULL),(99555664199680000,'API_34a7fb8da64e22199f82369e7e594276','查询指定公司的无人机类型匹配的載荷和机库类型类别','','cmii-uav-device','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:45',NULL),(99555664505864192,'API_31151a2ae3f60864f0184a3e4b73a1f3','获取无人机照片','','cmii-uav-device','/api/uav/plane/queryUavPicByCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:54',NULL),(99555664853991424,'API_aaa3bdb2ba087941f88cc48a55f4f003','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:52',NULL),(99555665021763584,'API_75faa10f56c898c1e76b50cf283a4a3d','查询指定公司/机构范围内的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:45',NULL),(99555665457971200,'API_030e4547e850834c14fd61077634881a','查询指定公司/机构范围内的在线无人机列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:50',NULL),(99555665843847168,'API_1c2e464bff9399f17f039d6b53831215','模糊查询包括子公司的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:52',NULL),(99555666162614272,'API_ab559f97c2b1ae1a8216fcf3c90f0fba','统计指定公司的(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-10-11 01:36:47',NULL),(99555666531713024,'API_48aebb5ffd9166b9bc64f57909492a08','统计所有无人机数量','','cmii-uav-device','/api/uav/plane/queryAllUavCount','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:44',NULL),(99555666896617472,'API_b90518a6151aaf568edc63b43d601817','根据无人机编码查询该无人机是否存在','','cmii-uav-device','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:53',NULL),(99555666938560512,'API_568f82c0cf471afce1d89200350d9879','查询区|县对应的区域信息','','cmii-admin-data','/public/api/admin/area/district/detail','GET,POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-09-09 09:14:44',NULL),(99555667194413056,'API_dab95364a57d89e51d76193f66810c55','生成新无人机编码','','cmii-uav-device','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:54',NULL),(99555667722895360,'API_6b6d6d9e3ab6685d17548baf4822a486','查询无人机是否可用','','cmii-uav-device','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:45',NULL),(99555668167491584,'API_d06ee272c26f99d194aa9da2a4aede6d','设置无人机在线状态','','cmii-uav-device','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:47',NULL),(99555668549173248,'API_4a03921d3a436f3b7b513cd1b239e7ee','查询无人机在线状态','','cmii-uav-device','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:44',NULL),(99555669090238464,'API_ec46fc3387def0b5374b28ec21e4fd40','查询无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:46',NULL),(99555669660663808,'API_0c36d2f6044a28e11a500996c44393ba','查询指定公司的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:51',NULL),(99555670105260032,'API_a0ebba8fe10fc7ff7068af1c74331a32','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 01:36:42',NULL),(99555670528884736,'API_106a918609df946aca1a53655d32fb49','修改无人机','','cmii-uav-device','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:48',NULL),(99555670772154368,'API_6fcb86dbb2501707e5ddbbb76c7668e7','删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:46',NULL),(99555671225139200,'API_6fd9ffa6039d98a39b7ffe156d060d94','批量删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:49',NULL),(99555671648763904,'API_ffe81557303b1ffb8a3a1a2493d5454e','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-device','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:53',NULL),(99555671959142400,'API_956154abe8979ccd6b222d73f2b2302b','模糊查询公司范围的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModelList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:47',NULL),(99555672261132288,'API_cd990af8afd653c1f5342d6b22700c09','查询公司范围的设备在线状态','','cmii-uav-device','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:43',NULL),(99555672810586112,'API_2b8c110cfd855d55f49cfe401e3ab5af','添加用户关注的无人机','','cmii-uav-device','/api/uav/plane/addAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:53',NULL),(99555673095798784,'API_820e1c6b166145e0ecf7669bddf62dc0','取消用户关注的无人机','','cmii-uav-device','/api/uav/plane/cancelAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:53',NULL),(99555673506840576,'API_e02756ce1d268f6ac8698ac81b2826db','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:47',NULL),(99555673833996288,'API_c37e85a2913e4b824564a34721e7960e','查询公司/机构所属的机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:49',NULL),(99555674182123520,'API_c9694ccb1c665a04fec72ee10fe68561','查询公司/机构所属的机库类型','','cmii-uav-device','/api/uav/hangar/queryHangarModelByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:44',NULL),(99555674492502016,'API_8b67f52396c9b4998d9eca80309a6300','查询机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetail','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-10-11 01:36:50',NULL),(99555674895155200,'API_ab7b50dd0de2b4aecab4c057a1339253','查询该公司的机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:46',NULL),(99555675398471680,'API_1d3dde17bde2cda631d9e36fd71399e5','生成新机库编码','','cmii-uav-device','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:43',NULL),(99555675834679296,'API_609cf7baddd46be1f9ef360af88c8b30','生成新视频编码','','cmii-uav-device','/api/uav/hangar/newHangarVideoCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:51',NULL),(99555676182806528,'API_7270af0fb5d2fcb6534ee62f6bc42ab1','新增机库','','cmii-uav-device','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:52',NULL),(99555676547710976,'API_88b554c90ec24df24a4ee90dd651f12d','修改机库','','cmii-uav-device','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:52',NULL),(99555676916809728,'API_77e3faf92b7a34862394232d003ef579','删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:45',NULL),(99555677285908480,'API_eb1ee4f15076193c2a982a515af3bdae','绑定无人机','','cmii-uav-device','/api/uav/hangar/bindUav','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:52',NULL),(99555677705338880,'API_1f515aef9beec6efa8c04dac816e7d93','check在数据字典里面机库类型编码和名称是否一致','check在数据字典里面机库类型编码和名称是否一致','cmii-uav-device','/api/uav/hangar/checkHngModelMapingInRedis','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:47',NULL),(99555678175100928,'API_2c581c80620f2c6f54d128033e9eccc5','通过机库设备号查询机库编码','','cmii-uav-device','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:48',NULL),(99555678653251584,'API_9df19cad9a1ba451241223ecdfa09ead','通过机库编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-10-11 01:36:51',NULL),(99555678934269952,'API_18fac9d5bf04444272c88e747b034bd7','根据机库编码获取公司信息','','cmii-uav-device','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:53',NULL),(99555679315951616,'API_44d84d7abd329c04504d8bed451d84f3','查詢公司范围内在线机库视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:53',NULL),(99555679689244672,'API_8d7d22a58611547e13e523708a94ebec','查詢用户关注机库机视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:44',NULL),(99555680175783936,'API_e6e54cd2384bcac8277698847d832911','模糊查詢待关注的机库列表','','cmii-uav-device','/api/uav/hangar/queryUavHangarInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:54',NULL),(99555680586825728,'API_f3b616b38914d9d7253166928c0e63f6','添加用户关注的机库','','cmii-uav-device','/api/uav/hangar/addAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:48',NULL),(99555681052393472,'API_55a336058652952f4e79a969053d8673','取消用户关注的机库','','cmii-uav-device','/api/uav/hangar/cancelAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:45',NULL),(99555681408909312,'API_f3d6636ea76a96217c0a41b2411ea5eb','通过机库型号查询机库实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/hangar/queryHangarInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:47',NULL),(99555681815756800,'API_089d3e2f3a245c5c424d6370223b5f98','模糊查询机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarMode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:48',NULL),(99555682000306176,'API_a59f14f77c781d6c32e045a162f33c96','模糊查询公司所属的生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:44',NULL),(99555682331656192,'API_90cd80a446b293444ba189243f4afa21','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:50',NULL),(99555682763669504,'API_2736b2c4a2ac36f2a824c6f21c42f29f','模糊查询公司所属的可用状态列表','','cmii-uav-device','/api/uav/hangar/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-10-11 01:36:49',NULL),(99555683183099904,'API_123a5d1073846eb9df7de02ea5362647','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:52',NULL),(99555683686416384,'API_4b641b03323c7aba2e2afbab6ea01589','按机库设备号查询机库详情','','cmii-uav-device','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:44',NULL),(99555684147789824,'API_6386b9fbf4e62a8d7fa9a024b1d39f82','解绑无人机','','cmii-uav-device','/api/uav/hangar/unBindUav','POST',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:49',NULL),(99555684537860096,'API_42812137eeb9fa9eac3dbccc1fff0fec','获取可绑定无人机','','cmii-uav-device','/api/uav/hangar/getUav','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:44',NULL),(99555684932124672,'API_ff5494e0727b58b829f6c84243f99f05','获取绑定无人机信息','','cmii-uav-device','/api/uav/hangar/getBoundUav','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:42',NULL),(99555685414469632,'API_b13c315af9e3ffdbeffa2a36f5626c20','设置机库在线状态','','cmii-uav-device','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:43',NULL),(99555685783568384,'API_d1a48771ee63cc754b1248c85ec39276','批量删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:47',NULL),(99555686156861440,'API_326a1a3ab9812751b8120495bfdc0342','模糊查询公司所属的机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarTypeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:48',NULL),(99555686572097536,'API_f3c7db7eed20640a751a78bc81341543','模糊查询机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:52',NULL),(99555686999916544,'API_e880f6790e3880dfdf832a77d34f994d','模糊查询公司所属的机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarModeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-10-11 01:36:43',NULL),(99555687582924800,'API_08b791104d5cf534913d2c6a182ef330','模糊查询可用状态列表','','cmii-uav-device','/api/uav/hangar/queryHangarUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:47',NULL),(99555687998160896,'API_c674128d738505b1b654dcc556aca6b3','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangarPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:51',NULL),(99555688547614720,'API_1f16142b30891e5a07fe19c92d819199','按机库编码查询机库详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:50',NULL),(99555688996405248,'API_9c9693f0afde811d434735fa9aea64ed','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavLoadBound','POST',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:48',NULL),(99555689432612864,'API_e83782efad13b139f36f5d86c23dec92','无人机解绑载荷','','cmii-uav-device','/api/uav/plane/unboundLoadFromUav','POST',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:53',NULL),(99555689965289472,'API_00e86bc45ada098ed656617ed9b4db3e','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/plane/checkLoadBoundRelations','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:44',NULL),(99555690359554048,'API_f4ef3d19d207ce810b185378ccea62ae','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:54',NULL),(99555690913202176,'API_a7be376e5ee861d385187b9ae5748c39','无人机列表绑定的载荷列表详情查询','','cmii-uav-device','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-10-11 01:36:50',NULL),(99555691471044608,'API_4c6e476755cf391fcd3eea11b94fae64','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByLoadCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-10-11 01:36:50',NULL),(99555692133744640,'API_4070abaa8f7d2bc1c2e397869193e031','通过公司名称或者管理员名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-10-11 01:36:46',NULL),(99555692695781376,'API_1499a2ebdf5c01b2627e57e15b472b07','通过公司名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyListByName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2021-09-22 20:09:10',NULL),(99555693215875072,'API_2d7d72bd1cc847e50266ed214e1ea617','分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-10-11 01:36:42',NULL),(99555693626916864,'API_2b08ca467289bca513d1e9084cd26eda','批量分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-10-11 01:36:48',NULL),(99555694214119424,'API_74ee723d3e114b0eb4ada9edd7bf35ae','删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-10-11 01:36:46',NULL),(99555694784544768,'API_a5f3677ccd73b6c21a7b44b2301c5fd7','批量删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-10-11 01:36:54',NULL),(99555695350775808,'API_4bcd4faf8c1cf35844576b637c92fed0','获取设备详情','','cmii-uav-device','/api/uav/devAllocate/getDevDetail','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-10-11 01:36:48',NULL),(99555695858286592,'API_310c46f834d022a74e0e9c3d5c0b1327','按条件分页查询自动上报的设备型号信息','','cmii-uav-device','/api/uav/devAllocate/queryUavDevPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:53',NULL),(99555696328048640,'API_f392e8e611abd392c111b1733bf01c2e','getUsedQuotaNumByType','','cmii-uav-device','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:44',NULL),(99555696789422080,'API_106489797c47bd108d4818ba4fd67d4d','模糊查询包括子公司的载荷类型列表','','cmii-uav-device','/api/uav/load/queryModelNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:50',NULL),(99555697267572736,'API_0c134f0811252de9350517aa4947b116','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadType','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:42',NULL),(99555697674420224,'API_e595767d8cd18cc6f7c48e77346699b7','模糊查询载荷类型列表','','cmii-uav-device','/api/uav/load/queryLoadModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:46',NULL),(99555698165153792,'API_cdd9560d32de928dad673d67accca023','模糊查询可用状态列表','','cmii-uav-device','/api/uav/load/queryLoadUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:49',NULL),(99555698542641152,'API_b677cb684036a17ab6c3ec7a308c876f','模糊查询包括子公司的所属无人机编码列表','','cmii-uav-device','/api/uav/load/queryUavCodeBound','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:51',NULL),(99555698991431680,'API_d3f5df26ecf060c6ac3e7f88391afd06','获取载荷分页列表','','cmii-uav-device','/api/uav/load/queryUavLoadPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:52',NULL),(99555699616382976,'API_009b9f297e6d324bdb9868996eeab36f','新增载荷','','cmii-uav-device','/api/uav/load/addUavLoad','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-10-11 01:36:43',NULL),(99555700094533632,'API_2734ea96b050f2deae5883c82d4ae2e5','修改载荷','','cmii-uav-device','/api/uav/load/updateUavLoad','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:47',NULL),(99555700446855168,'API_e35c03761aa95413b9dadbf0ae476334','删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoad','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:51',NULL),(99555700975337472,'API_438e3f86a59e35e254ea26df38c6602a','批量删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoadBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:45',NULL),(99555701503819776,'API_71a05e7ee9a717501af4d030b9012e2d','查询包括子公司的载荷详情','','cmii-uav-device','/api/uav/load/queryUavLoadDetail','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:43',NULL),(99555702044884992,'API_36ee06627f1db4aecff47d210338e5d9','查询包括子公司的载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryLoadModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:47',NULL),(99555702476898304,'API_fa94e8c4624b01ed2c276ab10dac7d3f','获取新载荷编码','','cmii-uav-device','/api/uav/load/newLoadCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:51',NULL),(99555703160569856,'API_2754c22a1a1fd50c30be4bc58a5b1400','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavLoadList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:43',NULL),(99555703647109120,'API_cb035007aa42d351c7f84144528adade','通过载荷型号查询载荷实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/load/queryLoadInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:51',NULL),(99555704108482560,'API_1dffdd6514c4517fdc2339c931fdc1f9','查詢包括子公司的載荷類型','','cmii-uav-device','/api/uav/load/queryLoadModelByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:54',NULL),(99555704444026880,'API_c666353987c2e7f3d3fe966ba63acd2c','check在数据字典里面载荷类型编码和名称是否一致','check在数据字典里面载荷类型编码和名称是否一致','cmii-uav-device','/api/uav/load/checkLoadModelMapingInRedis','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:48',NULL),(99555704838291456,'API_2a6eaa070ef40bfe23947d9660ca996e','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:50',NULL),(99555705219973120,'API_95f6f70e43ae56ae811aae121ce27a1b','模糊查询包括子公司的载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:54',NULL),(99555705647792128,'API_6a05eaa7341ed42348a119d0d5098cea','模糊查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/load/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:46',NULL),(99555705958170624,'API_31dc801d5ac42388d0925a531fab0d45','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:49',NULL),(99555706524401664,'API_2b270bd6499910cae38f0fda79e608b9','查询载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:45',NULL),(99555706885111808,'API_cfa14462d7844b50d869d454a6db494a','模糊查询包括子公司的载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadTypeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:52',NULL),(99555707233239040,'API_4c67d80c9f6c7ed11355e3170571f851','接口扫描','','cmii-uav-device','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:42',NULL),(99555707526840320,'API_b8ff7a2544bb4e8c6e7b79f324083dab','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2022-04-25 02:49:48',NULL),(99555707879161856,'API_7d444eaa2f15f8b184dd1855415e4446','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2022-04-25 02:49:47',NULL),(99555708315369472,'API_603ce91dec93cfb4063c1926d38cf572','swaggerResources','','cmii-uav-device','/swagger-resources','',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2022-04-25 02:49:47',NULL),(99555708583804928,'API_051cfba46414c56f1b4537687f89833d','errorHtml','','cmii-uav-device','/error','',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:50',NULL),(107479689374728192,'API_5a02b551720c04670f3b129cee25c013','从Redis模糊查询数据字典列表','从Redis模糊查询数据字典列表','cmii-admin-data','/api/admin/dictionary/getSimpleDictListFromRedis','GET',_binary '\0',_binary '\0','2021-05-12 06:05:55',1,'2024-09-09 09:14:42',NULL),(107479693967491072,'API_607f5d4328ad8185009002e624007294','获取图片验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/getImageCode','GET',_binary '\0',_binary '\0','2021-05-12 06:05:56',1,'2024-10-11 15:37:12',NULL),(112489002929487872,'API_2a430ee51c505de318a1880a0d441485','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:08',1,'2024-10-11 01:36:48',NULL),(112489044725727232,'API_19d8d6fc3205ac1b33a4b11e960579d1','下载','','cmii-uav-user','/api/uav/uavTestPO/download','GET',_binary '\0',_binary '\0','2021-05-26 01:51:18',1,'2024-10-11 15:37:19',NULL),(112489045325512704,'API_0fd8148ac05f2e3a9a399c84280d224a','测his','','cmii-uav-user','/api/uav/uavTestPO/test/{id}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:18',1,'2024-10-11 15:37:19',NULL),(114775736753061888,'API_33cf21309cfafc77bc2a278177d5815d','获取请求时间列表','','cmii-uav-developer','/admin/appInterfaceLog/getReqTimeList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:34',NULL),(114775737096994816,'API_e3e6aa9fbae21f88cffe36a56fb105e1','获取请求结果列表','','cmii-uav-developer','/admin/appInterfaceLog/getReqResultList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:36',NULL),(114775737273155584,'API_e8184e08ee36f67161fb2c913d8c1701','查询应用日志','','cmii-uav-developer','/admin/appInterfaceLog/queryAppLog','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:36',NULL),(114775737503842304,'API_5f6d8b66ed77d967aa94e8599ec7afc6','查询开发者应用接口日志','','cmii-uav-developer','/admin/appInterfaceLog/queryAppInfLogDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:36',NULL),(114775737763889152,'API_9152b399f21d6cdaac4fe037283aeac5','开发者状态设置','','cmii-uav-developer','/admin/developer/updateDeveloperStat','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:37',NULL),(114775737956827136,'API_c38d4b559610d49635564a827523f9c4','删除开发者','','cmii-uav-developer','/admin/developer/deleteDeveloper','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:34',NULL),(114775738162348032,'API_b6eef0dc086d249e13ed52966da47607','查询开发者详情','','cmii-uav-developer','/admin/developer/queryDeveloperDetail','GET',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:33',NULL),(114775738367868928,'API_f7ec0045ec1ff03c9065be8c2819c88d','按条件分页查询开发者信息','','cmii-uav-developer','/admin/developer/queryDeveloperPage','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-10-09 19:48:36',NULL),(114775738682441728,'API_45cbbbd675a3ae136e82db7288bf576e','查询接口详情','','cmii-uav-developer','/admin/interface/queryInterfaceDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:35',NULL),(114775738871185408,'API_96b2e79a4f477b37387f3b8e16a22efb','按限制类型查询接口列表','','cmii-uav-developer','/admin/interface/queryOpenInfListByLimit','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:34',NULL),(114775739055734784,'API_d5c826f7b6d82230a5eb467e19a79169','查询接口默认额度','','cmii-uav-developer','/admin/interface/queryInterfaceQuota','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:36',NULL),(114775739303198720,'API_a8cd003caa67a5a921f2256944634d8b','设置开放接口的默认额度','','cmii-uav-developer','/admin/interface/updateInfDefaultQuality','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:35',NULL),(114775739609382912,'API_aee816e1107fa7ae402bbf3337458f60','获取所有接口列表','','cmii-uav-developer','/admin/interface/getAllInfList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:35',NULL),(114775739793932288,'API_1cd5f43b0c83e48786da0e77fcc13415','获取接口的版本列表','','cmii-uav-developer','/admin/interface/queryInfVerList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:36',NULL),(114775739999453184,'API_40df37a92434235aa84b62d3e916b928','查询开放的接口列表','','cmii-uav-developer','/admin/interface/queryOpenInfList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:37',NULL),(114775740204974080,'API_a8c80d112f1d2f253cdc06425f3ed5d1','新建开放的接口','','cmii-uav-developer','/admin/interface/addOpenInf','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:33',NULL),(114775740351774720,'API_48ef3516a827d0dae65d097502eb10eb','获取接口所属列表','','cmii-uav-developer','/admin/interface/getInfGroupList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:36',NULL),(114775740523741184,'API_0bb0810c0a67f508c8d945cdcf7e347f','获取接口类型列表','','cmii-uav-developer','/admin/interface/getInfTypeList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:34',NULL),(114775740712484864,'API_ef3a2ce0a515714355090535f448640e','获取限制类型列表','','cmii-uav-developer','/admin/interface/getLimitTypeList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:33',NULL),(114775740867674112,'API_fa303ccf7b5c0a80b205be4b9b556ab3','获取接口未开放的版本列表','','cmii-uav-developer','/admin/interface/getOpenInfFilterVer','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2022-03-11 06:16:52',NULL),(114775741035446272,'API_95bf37804284299d3614f994e10dd454','获取版本列表','','cmii-uav-developer','/admin/interface/getVerFilterOpenInf','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:36',NULL),(114775741199024128,'API_df311855dff579c0fef6c1c93f24466e','查询接口服务信息','','cmii-uav-developer','/admin/interface/queryInfServie','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:34',NULL),(114775741345824768,'API_f74685713e06e2f53935f031d1206624','更新开放的接口','','cmii-uav-developer','/admin/interface/updateOpenInf','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:33',NULL),(114775741521985536,'API_1f054025f12fbed5ba28935536653867','删除开放的接口','','cmii-uav-developer','/admin/interface/deleteOpenInf','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2022-03-11 06:16:52',NULL),(114775741698146304,'API_05be7250e83854cabac33aa8481d73ee','接口版本状态设置','','cmii-uav-developer','/admin/interface/updateInfOpenStat','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:33',NULL),(114775741903667200,'API_b35c695bd85db06b9bc745a5d2ddce5a','获取应用对应的所有接口列表','','cmii-uav-developer','/admin/appInterface/getAllInfListByAppId','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:35',NULL),(114775742142742528,'API_b33aa731bbc196421f34a59457e34bfe','查询开发者应用的接口列表','','cmii-uav-developer','/admin/appInterface/queryDeveloperAppInfList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:34',NULL),(114775742453121024,'API_7be7cbb549fd7b555fcb2be309b98550','按条件分页查询开发者应用接口信息','','cmii-uav-developer','/admin/appInterface/queryDevAppInfPage','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-10-09 19:48:35',NULL),(114775742755110912,'API_487c8a3ede44d2ac0c414acc33cfe284','查询开发者的接口额度','','cmii-uav-developer','/admin/appInterface/queryDevAppInfQuality','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:36',NULL),(114775742922883072,'API_a71eec4d01d4e5bc2e57c39f4192232b','更新开发者的接口额度','','cmii-uav-developer','/admin/appInterface/updateDevAppInfQuality','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:36',NULL),(114775743140986880,'API_040ed67e904a52402a3f4c4c6715c039','获取接口选择列表','','cmii-uav-developer','/admin/appInterface/getInterfaceList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:36',NULL),(114775743409422336,'API_631781eb52b3ec03cf0d4df732276fd2','查询应用接口列表','','cmii-uav-developer','/admin/appInterface/queryAppInterfaceList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775743656886272,'API_a4067fb9e114a3a794f891f7063777e0','查询开发者应用列表','','cmii-uav-developer','/admin/app/queryDeveloperAppList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:37',NULL),(114775743807881216,'API_ed8b5ed28cbe4f05b2d5cc4a11437e3a','查询开发者应用详情','','cmii-uav-developer','/admin/app/queryDeveloperAppDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:35',NULL),(114775743992430592,'API_8a87f4853cb59b48c8aed60c8c607bef','开发者应用状态设置','','cmii-uav-developer','/admin/app/updateDeveloperAppStat','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:33',NULL),(114775744114065408,'API_48aff8af0a1d840c244918ad67946d1a','模糊查詢有效的公司列表','','cmii-uav-developer','/admin/app/queryCompanyList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775744311197696,'API_3d6d75d0268e2fa743870d2fe858a80c','公司配置','','cmii-uav-developer','/admin/app/updateAppCompany','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:33',NULL),(114775744537690112,'API_ff9370f69f7aac079bb51c911abe2618','即将超额接口查询','','cmii-uav-developer','/open/appInterface/exceed/soon','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775744646742016,'API_54b489bcf3d2cc909b03eb30a099f1ed','应用中心接口管理','','cmii-uav-developer','/open/appInterface/query/allInterface','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775744789348352,'API_2605820b04fb1faa72101bbd0db55f95','应用中心单接口详情及调用情况查询','','cmii-uav-developer','/open/appInterface/query/oneInterface','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:35',NULL),(114775744990674944,'API_9473fe369c7f260a94908881e2dc6dfe','应用中心配置应用接口','','cmii-uav-developer','/open/appInterface/configure/appInterface','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775745145864192,'API_a881b50a293cd74e76fb788a73986c77','过期接口查询','','cmii-uav-developer','/open/appInterface/expire','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:33',NULL),(114775745301053440,'API_49924878445637328fed6f6859571992','即将过期接口查询','','cmii-uav-developer','/open/appInterface/expire/soon','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775745439465472,'API_111b36f22552e11926d50b76065d93ab','超额接口查询','','cmii-uav-developer','/open/appInterface/exceed','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:33',NULL),(114775745586266112,'API_bb5eef9e25fc59ed9691c6c0e5f0e9bd','测试的一个接口','','cmii-uav-developer','/open/developer/test','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:37',NULL),(114775745737261056,'API_231f1e368cc91d254bbefdc01aba07f9','注册一个开发者','','cmii-uav-developer','/registry','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:35',NULL),(114775745825341440,'API_ef95508257e21f940c563388b9e05882','账号退出登录','','cmii-uav-developer','/logout','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:37',NULL),(114775745946976256,'API_a317338ad8a20bde2a6527687a891130','手机验证码登录','','cmii-uav-developer','/code/login','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:36',NULL),(114775746127331328,'API_1f297c5a95ded589eba1165c093afa62','账号手机号密码登录','','cmii-uav-developer','/login','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775746223800320,'API_ef00199351a8c2ecc84208b618cb3590','验证token','','cmii-uav-developer','/checkToken','GET,POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:35',NULL),(114775746324463616,'API_9a0b8e02b5911e297f47dfdf7c235d6d','发送绑定手机号验证码','','cmii-uav-developer','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:33',NULL),(114775746429321216,'API_cc8bcdba1fe596734701165f96a335a8','验证绑定手机号验证码','','cmii-uav-developer','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:33',NULL),(114775746588704768,'API_31fcaa9533a4cd54ef0938cd820d1cda','发送解绑手机号验证码','','cmii-uav-developer','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:33',NULL),(114775746735505408,'API_7afb559213ac69778d66e897561f21ca','验证解绑手机号验证码','','cmii-uav-developer','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:37',NULL),(114775746903277568,'API_6c626d365f7d5d4b1417f6f538bcd701','发送登陆验证码','','cmii-uav-developer','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-10-09 19:48:34',NULL),(114775747075244032,'API_342ddbb0d279c86609ee179ddb70a154','发送注册验证码','','cmii-uav-developer','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775747184295936,'API_2ec694ff0087eed8688c02dab94ab2e3','发送找回密码验证码','','cmii-uav-developer','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:37',NULL),(114775747326902272,'API_d573de42f6e958b142ecb17b99fef53e','检测找回密码验证码','','cmii-uav-developer','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775747494674432,'API_7ec8bf6dd5bc170b196448639ac635a6','获取登录图片验证码','','cmii-uav-developer','/verifyCode/getImgCode','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775747620503552,'API_332a97fd9c60506a41d49cfa74425943','获取登录图片验证码','','cmii-uav-developer','/verifyCode/getImageCode','GET,POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775747708583936,'API_72d46bc1b3c2c3fbb706ccf90c1c5045','检测登录图片验证码','','cmii-uav-developer','/verifyCode/checkImgCode','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:35',NULL),(114775747796664320,'API_5f9be3005b1ee159151109a589a4be2e','通过接口ID查询接口版本信息','','cmii-uav-developer','/open/interface/queryVersion/interfaceId','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:37',NULL),(114775747935076352,'API_7b5fb8d7cdaa937451785f18b8bca47d','应用信息接口统计查询','','cmii-uav-developer','/open/interface/statistic','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775748086071296,'API_97fa0b21a6e0582ebbc6b4a4c3cc73dc','开发者应用接口调用统计表查询','','cmii-uav-developer','/open/interface/invoke/statistic','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:35',NULL),(114775748169957376,'API_ba57288cf5da506f10139ef21a9a0516','通过应用ID查询接口信息','','cmii-uav-developer','/open/interface/queryBy/appId','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775748274814976,'API_dbdcf5039369a1e54620efb8dc657594','开发者应用接口仓库查询','','cmii-uav-developer','/open/interface/query/repository','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775748362895360,'API_e017c3a39f2e5a4b7ab9db3f8a7ce7d5','查询支持的接口','','cmii-uav-developer','/open/interface/querySupported','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:37',NULL),(114775748450975744,'API_64482ab93c5b16eeae0eb528d3115752','应用日志查询','','cmii-uav-developer','/open/appInterfaceLog/query/appLog','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775748526473216,'API_fc5e76c7ce397a90a8be90095a032fee','单个应用日志查询','','cmii-uav-developer','/open/appInterfaceLog/queryById/appLog','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775748601970688,'API_9c09e0ae79e6132847ff0d08068f309c','接口日志查询','','cmii-uav-developer','/open/appInterfaceLog/query/interfaceLog','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:35',NULL),(114775748694245376,'API_1f48a95dd65cce7ff27ce43753f66aec','应用中心重置秘钥','','cmii-uav-developer','/open/app/reset/appSecret','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775748778131456,'API_04859c1c4490a753c9439731b21841d8','应用中心设置回调地址','','cmii-uav-developer','/open/app/redirect/setUrl','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:35',NULL),(114775748916543488,'API_1148cb3b20820ef05f8a558696302379','应用中心主页查询','','cmii-uav-developer','/open/app/homePage','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775749013012480,'API_2de76be60959a99df15b416b5b275259','应用中心应用详情查询','','cmii-uav-developer','/open/app/queryAppById','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:37',NULL),(114775749113675776,'API_b13fbe397ab9a1023a9bd894c653b08a','应用中心新建应用','','cmii-uav-developer','/open/app/add/oneApp','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:37',NULL),(114775749180784640,'API_6ba28024143f2b7d0ddfc8fdac0ecd14','应用中心编辑应用','','cmii-uav-developer','/open/app/edit/oneApp','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775749310808064,'API_7bceb7e7f10078bb3c9e2bea08593a71','应用中心删除应用','','cmii-uav-developer','/open/app/delete/oneApp','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775749390499840,'API_1d199fe0c43da6bed731fdad8fe82450','分组获取接口','','cmii-uav-developer','/docs/list','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775749465997312,'API_1f9ec5a9e39217e30d438af932b0da02','获取单个接口文档','','cmii-uav-developer','/docs/getDoc','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775749528911872,'API_3980d89d5a050eafabd5c4ad7a9e503e','接口文档接口','','cmii-uav-developer','/docs/queryList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775749600215040,'API_043697a415dbb19c06b7c8f07a93573f','重新绑定手机','','cmii-uav-developer','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775749696684032,'API_0374fe162425851f581647c1b556924e','申请更新邮箱','','cmii-uav-developer','/profile/updateEmail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775749763792896,'API_0b818065cdd6ac86f7a584e50938a2e7','执行更新邮箱','','cmii-uav-developer','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775749822513152,'API_1e8b6083301def32a91ecd0dc8cc1aa3','根据token获取用户基本信息-敏感信息脱敏','','cmii-uav-developer','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775749889622016,'API_98c910ac1ef58a7c3e0cd365b6c7e248','重置密码','','cmii-uav-developer','/profile/resetPwd','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775749977702400,'API_3c96913dfbf3f6870171165f71924ddd','找回密码','','cmii-uav-developer','/profile/findPwd','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775750061588480,'API_d366cbd537da89f207cc8bcb6f6501ac','删除(测试接口),不暴露','','cmii-uav-developer','/profile/test/delete','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775750149668864,'API_3ba132a228592611918185541361adde','冻结(测试接口),不暴露','','cmii-uav-developer','/profile/test/freeze','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775750220972032,'API_a5de7864126d4284160343a11491901e','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-developer','/oapi/surveillance/querySinglePlaneTrack/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:37',NULL),(114775750283886592,'API_b29cc957df88bc0cadf3663dd0f0ac90','查询单个飞机目前最新航迹数据','','cmii-uav-developer','/oapi/surveillance/queryRealTimeInfo/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775750359384064,'API_43d251bdbb2b70e01443db39187ce73d','查询公司下所有无人机7日内作业记录','','cmii-uav-developer','/oapi/surveillance/queryHistoryTotal/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775750447464448,'API_286e75875ff01df2cc468548ad5a6260','上传无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/batchUpload/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775750602653696,'API_b03eae6c9b63a9effe9ebea71bf0242f','上传无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/upload/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775750682345472,'API_2bcc60637aaab8d71c94a24c0b9e5b9c','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/flight/uploadDefault/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775750757842944,'API_3a4cbac29ee3a1639e96dab55a9d65c3','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/flight/batchUploadDefault/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:36',NULL),(114775750829146112,'API_a68a8f034580119f51e256a7e5d29eed','上传航线航点数据','上传单架次无人机航线航点数据','cmii-uav-developer','/oapi/waypoint/upload/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:34',NULL),(114775750959169536,'API_aec238a0f5bfc10cf870ab56f4fe5c7e','查询公司/所属机构获取无人机数量','','cmii-uav-developer','/oapi/uav/queryUavCountByCompanyId/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-10-09 19:48:33',NULL),(114775751043055616,'API_db7379f32f6ccfd30af93ecd0476aac0','getExecute','','cmii-uav-developer','/oapi/execute','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2022-03-11 06:16:53',NULL),(114775751143718912,'API_77ed8e04aae416afa070c8ae5e78fa05','postExecute','','cmii-uav-developer','/oapi/execute','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:53',NULL),(114775751210827776,'API_2c659b9c896f283885ebe6e969f16692','查询开发者可用的开放接口','','cmii-uav-developer','/api/uav/developer/resource/queryOpenApi','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:37',NULL),(114775751269548032,'API_a29bbb1ac7dd5aa19287edfc634fd7e4','添加一个接口','','cmii-uav-developer','/api/uav/developer/resource/add','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775751345045504,'API_4350bb89a028e49cca04fa544c649749','删除一个接口','','cmii-uav-developer','/api/uav/developer/resource/delete','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:34',NULL),(114775751416348672,'API_428becdef4fe192ba52703181366a717','检查是否有访问权限','','cmii-uav-developer','/api/uav/developer/resource/check','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:36',NULL),(114775751496040448,'API_628feaeb078b0fe346c4beb1ab4b9f4f','创建密钥','','cmii-uav-developer','/api/uav/developer/createSecret','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775751588315136,'API_248e7844facb9784a8a7b40fe477795d','查询所有的开发者','','cmii-uav-developer','/api/uav/developer/queryAll','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:36',NULL),(114775751647035392,'API_14fde70f6213be071957fb84d7c65a0b','创建一个开发者','','cmii-uav-developer','/api/uav/developer/add','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:37',NULL),(114775751739310080,'API_78bb4d1993d778875f027860d9fe00e5','删除一个开发者','','cmii-uav-developer','/api/uav/developer/delete','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:36',NULL),(114775751819001856,'API_802eb37a0b62af352fc056205e04d17d','设备统计接口','设备统计接口','cmii-uav-developer','/oapi/device/uav/count/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:34',NULL),(114775751911276544,'API_2a7c176a3aecc330896abe3775282536','上传多架次无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/info/batchupload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775752066465792,'API_cb10ebf50595eff8cafe5b005035cf61','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/device/default/batchupload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:37',NULL),(114775752150351872,'API_69db333b53a45ccc0f08a027753b011f','上传单架次无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/info/upload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:37',NULL),(114775752230043648,'API_84aaff6bf2227a5a2134408ccff5f747','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/device/default/upload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775752339095552,'API_c664faa2b0378e48c80dbab68ea27bca','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-developer','/oapi/waypoint/airline/update/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2021-06-03 09:34:28',NULL),(114775752464924672,'API_36e05ad94c93486dc79203a54da8d8f3','hellobody服务接口','hello','cmii-uav-developer','/oapi/test/hellobody','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:33',NULL),(114775752565587968,'API_f5374accc2cc2fee2b9e3ee00bd851b1','hello服务接口','hello','cmii-uav-developer','/oapi/test/test','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:37',NULL),(114775752683028480,'API_50e1d0dcb74e0ec9fbbcc1c41bab122d','helloOMS服务接口','hello','cmii-uav-developer','/oapi/test/helloOMS','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:33',NULL),(114775752754331648,'API_a9bf2ce1a121ae9f008404ec515f6c2c','hello服务接口','hello','cmii-uav-developer','/oapi/test/test2.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:34',NULL),(114775752846606336,'API_2e845daf100907e81f7e6fc78e62b2fa','hello服务接口','hello','cmii-uav-developer','/oapi/test/hello','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775752930492416,'API_e917bfbfc2f36931ec9dce07e3553b44','hello服务接口','hello','cmii-uav-developer','/oapi/test/hello3.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775752993406976,'API_000edb8f1f238c4c68fa990c5c3e60c0','hellobody服务接口','hello','cmii-uav-developer','/oapi/test/hellobody2.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775753056321536,'API_afa3a82d93f818182fac6356d11827f0','collect服务接口','collect','cmii-uav-developer','/oapi/test/collect','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:36',NULL),(114775753136013312,'API_f145b379ea43368edc5c303dfaa3aac1','hellobody服务接口','hello','cmii-uav-developer','/oapi/test/hellobody3.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775753224093696,'API_4cfe82249df6e31767ee4c80705f556c','hello服务接口','hello','cmii-uav-developer','/oapi/test/hello2.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:37',NULL),(114775753324756992,'API_a9ea0073d6597754c45d70977a962fef','查询公司下所有无人机7日内作业记录','查询公司下所有无人机7日内作业记录','cmii-uav-developer','/oapi/surveillance/fly/history/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:35',NULL),(114775753433808896,'API_e857ececd7d8c4dc95c954057afbb94a','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-developer','/oapi/surveillance/plane/single/track/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2021-06-03 09:34:29',NULL),(114775753509306368,'API_88b517ded43c0722f4d2f15f0ffcc928','查询单个飞机目前最新航迹数据','查询单个飞机目前最新航迹数据','cmii-uav-developer','/oapi/surveillance/info/realtime/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2021-06-03 09:34:29',NULL),(114775753597386752,'API_e56479ab411bf3bd896f0a0ef0f734e5','接口扫描','','cmii-uav-developer','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-10-09 19:48:37',NULL),(114775753672884224,'API_6364c013c03d1b8f7825cc34661d5b8a','swaggerResources','','cmii-uav-developer','/swagger-resources','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775753748381696,'API_8c223d1e34dc560d0f463b4813520c03','uiConfiguration','','cmii-uav-developer','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775753823879168,'API_b55012ce8c25d4e88713f063b8479bc7','securityConfiguration','','cmii-uav-developer','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775753899376640,'API_4621b34a9c51fd6d370e9bf2ab3ac11c','errorHtml','','cmii-uav-developer','/error','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775767862214656,'API_b99e8fb53bca58fa8ff57ceb3e14fb13','ping','','cmii-uav-device','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:17:55',1,'2024-10-11 01:36:45',NULL),(114775767988043776,'API_49e1eb08d9cbad20d0dcfe5ba7d0d0fa','health','','cmii-uav-device','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:17:56',1,'2024-10-11 01:36:48',NULL),(114775789718732800,'API_100a284ed1d1ae4ab3b90991239af961','ping','','cmii-uav-user','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:18:01',1,'2024-10-11 15:37:12',NULL),(114775789769064448,'API_ffc94b12cc6152ed1ebd0dadf788eba4','health','','cmii-uav-user','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:18:01',1,'2024-10-11 15:37:08',NULL),(115504634864336896,'API_5abb294cc21f30cdcbc9ee8a93f5285a','ping','','cmii-admin-user','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:11',1,'2024-09-09 09:14:21',NULL),(115504635405402112,'API_07922b27b56679c96068e94db1bbeabc','health','','cmii-admin-user','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:11',1,'2024-09-09 09:14:16',NULL),(115504694616391680,'API_61a891fd99cc79fe9b31195836bd7ac3','health','','cmii-uav-developer','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:25',1,'2024-10-09 19:48:35',NULL),(115504694830301184,'API_22d674c3b28f20984ce30188896c1e2c','ping','','cmii-uav-developer','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:25',1,'2024-10-09 19:48:34',NULL),(118346823118094336,'API_49161f40c3b80954b51c002e0f21e978','根据设备号获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:01',1,'2024-10-11 01:36:45',NULL),(118346824040841216,'API_cc680d9c43972b032c1413b3f0bfce0d','公司添加用户','公司添加用户描述','cmii-uav-developer','/oapi/test/company_user_add','POST',_binary '\0',_binary '\0','2021-06-11 05:48:02',1,'2024-10-09 19:48:36',NULL),(118346824321859584,'API_8dc88284610210adf60a770607c5e183','添加公司','添加公司秒速','cmii-uav-developer','/oapi/test/company_add','POST',_binary '\0',_binary '\0','2021-06-11 05:48:02',1,'2024-10-09 19:48:35',NULL),(118346827232706560,'API_74ec2a0cb0446beb24de6c39e87ac38f','获取公司','获取公司','cmii-uav-developer','/oapi/test/company_get','POST',_binary '\0',_binary '\0','2021-06-11 05:48:02',1,'2024-10-09 19:48:36',NULL),(118346828033818624,'API_f2ec2ffe515df2cc8a95d030fc71ff70','查询单个飞机最新数据','','cmii-uav-developer','/oapi/surveillance/info/realtimeInfo/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-10-09 19:48:37',NULL),(118346828344197120,'API_dceb7cc5ef051cbb94a76d3d5ef9b0e2','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-developer','/oapi/surveillance/plane/single/allTrack/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-10-09 19:48:35',NULL),(118346829044645888,'API_6a6ce3c5e188d191199c647cf201626c','全局统计本公司设备在线及简略详情','全局统计本公司设备在线及简略详情','cmii-uav-developer','/oapi/surveillance/fly/total/1.0','GET',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-10-09 19:48:36',NULL),(118346829359218688,'API_712dc09d92bebebb23d5d9227ea673ff','查询无人机的拉流信息','','cmii-uav-developer','/oapi/surveillance/uav/steamAddrs/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-10-09 19:48:37',NULL),(118346829602488320,'API_543cb477e2336f1150721d559fa46c84','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-developer','/oapi/waypoint/airline/upload/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-10-09 19:48:36',NULL),(118346829979975680,'API_bb8e0b03ce9688636392da54ccaeef8b','复亚作业上传文件','复亚作业上传文件','cmii-uav-developer','/oapi/mission/oss/foiaUpload/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-10-09 19:48:34',NULL),(118346830386823168,'API_34d2ea0e32fd6c9ed6f2c59dd5fe707b','普通作业上传文件','普通作业上传文件','cmii-uav-developer','/oapi/mission/oss/normalUpload/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-10-09 19:48:34',NULL),(118346855896580096,'API_9aa7ec1c77b2f1e32778d663f5c3898e','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-device','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:09',1,'2024-10-11 01:36:52',NULL),(118349371417821184,'API_289464e10fe2a7ce4a6b8d0bc171cb37','视频回放','视频回放','cmii-uav-cloud-live','/public/his/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:35',NULL),(118349371828862976,'API_54a5348ac671626c43c764324d188f45','回放视频封面','回放视频封面','cmii-uav-cloud-live','/public/his/playback/cover','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:37',NULL),(118349371887583232,'API_9d28fbc7c7784e8ec68d13bb1e2b5342','获取时间戳(yyyyMMddHHmmss)','获取时间戳','cmii-uav-cloud-live','/client/live/playback/timestamp','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:35',NULL),(118349371954692096,'API_afb234620493d3bacd41c8856967fa2a','获取视频流地址信息','通过设备号获取视频流地址信息','cmii-uav-cloud-live','/client/live/create','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:37',NULL),(118349372009218048,'API_be4e01864c39805f1642134d888b02c4','启动AI流任务','启动AI流任务','cmii-uav-cloud-live','/client/live/ai/start','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-05-07 08:33:48',NULL),(118349372067938304,'API_f5c35f28acc1868831a3bcc2e7b16389','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/client/live/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:32',NULL),(118349372118269952,'API_f786e0a615e81b944c0ba70449453da6','获取回放信息(包括封面)','获取回放信息(包括封面)','cmii-uav-cloud-live','/client/live/playback/m3u8Info','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:31',NULL),(118349372202156032,'API_8ff849043d0e3a1dde9612ba3b707605','获取回放视频token','获取回放视频token','cmii-uav-cloud-live','/client/live/playback/token','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:38',NULL),(118349372265070592,'API_5cd7b62f7857e1c41eb2389a64843169','查询视频流通道ID','查询设备对应的视频流通道ID','cmii-uav-cloud-live','/client/live/getStreamId','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:31',NULL),(118349372332179456,'API_cebe3ea38fd5de661fb7169955872bf5','查询具体视频流地址','查询设备对应的某种视频流地址','cmii-uav-cloud-live','/client/live/get','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:33',NULL),(118349372390899712,'API_64d5ee764973e82287d15d96289f0974','health','','cmii-uav-cloud-live','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:33',NULL),(118349372449619968,'API_11d6b101a37aee3d2968d5befdba397b','ping','','cmii-uav-cloud-live','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:37',NULL),(118349372508340224,'API_a9934d326aaa2d148734d9ef6bd86b72','接口扫描','','cmii-uav-cloud-live','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:32',NULL),(118349372575449088,'API_b7e2958940688b9536c45ef455cbb00f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:31',NULL),(118349372634169344,'API_9cc1caf8776d669aae36e19adc19f4ec','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:31',NULL),(118349372688695296,'API_a7a93d6bfc9b6112cb5dd2d20d51bb92','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:31',NULL),(118349372797747200,'API_7b5c8e9b95934d385fc84a301156e020','第一次上传项目','第一次上传项目,返回projId','cmii-uav-cloud-live','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349372856467456,'API_690036470ac7133066e45b60b5353ecd','项目文件上传','上传项目文件 ','cmii-uav-cloud-live','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349372994879488,'API_0397f90389582c696a60ba0c32f34110','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-cloud-live','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349373053599744,'API_398c21859fb437ac1e6edb2892a59fef','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-cloud-live','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349373124902912,'API_10a9d10e5455fb2ff0d8434e0d5a4c6f','删除项目的文件','删除项目的文件,支持批量','cmii-uav-cloud-live','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11',NULL),(118349373192011776,'API_150e23b0c5fbf84f07cac8933516682c','errorHtml','','cmii-uav-cloud-live','/error','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:36',NULL),(127035382402383872,'API_455c35e7821e0af2222a0b32989d1c99','获取接口的示例语言','','cmii-uav-developer','/admin/interface/querySampleLanguages','GET',_binary '\0',_binary '\0','2021-07-05 05:13:15',1,'2024-10-09 19:48:33',NULL),(127035382788259840,'API_5158f8f7df0b3966067e53c698098159','添加或更新多语言示例代码','','cmii-uav-developer','/admin/interface/mergeSampleCodes','POST',_binary '\0',_binary '\0','2021-07-05 05:13:15',1,'2024-10-09 19:48:35',NULL),(127035482902102016,'API_b127e8d74c7d88572818a6767e1f4a9a','获取某个kpi最新取值','获取某个kpi最新取值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:37',NULL),(127035482994376704,'API_ee187d2d5b861acf87c99c0f03bc0aeb','采集所有配置kpi值','集所有配置kpi值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpis','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:36',NULL),(127035483065679872,'API_a74e30325f9fc3ada840c47319f571e8','测试采集并推送所有KPI值【测试】','测试采集并推送所有KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/allKpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:36',NULL),(127035483136983040,'API_695c96c4e4b60e41e4b170d18a8207a4','推送某个KPI值【测试】','推送某个KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:37',NULL),(127035483199897600,'API_ba49cb37fe53a50feed5ee2e2721fe4e','解析配置文件并测试kpi取值【测试】','解析配置文件并测试kpi取值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/parse/file','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:36',NULL),(127035483254423552,'API_f4b801b6f4f6eabff1eade6ffe536c47','更新指标配置信息【管理员用】','更新指标配置信息【管理员用】','cmii-uav-kpi-monitor','/kpi/monitor/config/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:36',NULL),(127035483308949504,'API_9de68788e8519966581f78f8b3da56c6','获取每个用户访问时长','获取每个用户访问时长','cmii-uav-kpi-monitor','/user/accessAnalysis/userAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:36',NULL),(127035483363475456,'API_3545158a96ea145fcd03285b42c18f42','获取每个公司用户访问行为','获取每个公司用户访问行为','cmii-uav-kpi-monitor','/user/accessAnalysis/companyAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:36',NULL),(127035483455750144,'API_a31391fcf55f7c3dc7a9586f344415af','下载单用户访问情况','下载单用户访问情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/accessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:37',NULL),(127035483506081792,'API_b7bc47b7b77ffe63ba428eb36d280afd','下载公司用户使用情况','下载公司用户使用情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/companyAccessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:37',NULL),(127035483560607744,'API_9f9cdb82fba2247dbc894ad15411e0c2','health','','cmii-uav-kpi-monitor','/cmii/health','GET',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-10-11 01:37:37',NULL),(127035483619328000,'API_a1c7ba561fb4fa48452235a4cbf206b3','ping','','cmii-uav-kpi-monitor','/cmii/ping','GET',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-10-11 01:37:36',NULL),(127035483678048256,'API_a02eee36bdea730c9b24dfa944cc6bc5','接口扫描','','cmii-uav-kpi-monitor','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-10-11 01:37:37',NULL),(127035483732574208,'API_e9c7f41a1163a4d02cb3da23ab6cc254','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-07-29 15:58:27',NULL),(127035483791294464,'API_a57b76ba92218fdf8c0711a3975bf6a4','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-07-29 15:58:27',NULL),(127035483858403328,'API_76d19d64565237e2591fc5b5ecc488fb','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-07-29 15:58:27',NULL),(127035483917123584,'API_86a09a2be1661d38daa754f5ce91e913','error','','cmii-uav-kpi-monitor','/error','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-10-11 01:37:37',NULL),(132527468161531904,'API_8de4801e5e53f51580b6ead79e00fca6','重新保存失败视频文件','重新保持失败视频文件','cmii-uav-cloud-live','/video/reSaveFailedFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-10-12 09:42:36',NULL),(132527468367052800,'API_7e49e7ff34f254a4df5d1d70101a7c30','获取视频分片文件列表','获取视频分片文件列表','cmii-uav-cloud-live','/video/file/partList','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-10-12 09:42:32',NULL),(132527468455133184,'API_56cc6cc9afb762bdcf5326e7c41d0dc0','重置视频同步时间','重置视频同步时间','cmii-uav-cloud-live','/video/resetSyncTime','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-10-12 09:42:39',NULL),(132527468522242048,'API_a1029d20b60b6b56f72d27c121cfff58','同步视频文件','同步视频文件','cmii-uav-cloud-live','/video/syncPartFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-10-12 09:42:37',NULL),(132865491239698432,'API_4f8f8c3c7476f108657f2dae1ee7d5f7','公司所属无人机分页查询','公司所属无人机分页查询','cmii-uav-developer','/oapi/device/uav/page/1.0','POST',_binary '\0',_binary '\0','2021-07-21 07:20:02',1,'2024-10-09 19:48:35',NULL),(132865491407470592,'API_b6de44f432e4656938b964a94342b817','查询无人机视频回放','查询无人机视频回放','cmii-uav-developer','/oapi/mission/uav/video/1.0','POST',_binary '\0',_binary '\0','2021-07-21 07:20:02',1,'2024-10-09 19:48:33',NULL),(133267087639445504,'API_05684b732792a350983cc6ebb2066ac5','获取类别最新应急指标列表(分类,job:作业信息;bss:基站&卫星信息;summary:概况)','获取某个kpi最新取值','cmii-uav-kpi-monitor','/personal/emergency/sos/category','GET',_binary '\0',_binary '\0','2021-07-22 09:55:50',1,'2024-10-11 01:37:36',NULL),(136161781507686400,'API_44daf24fb4cf68ed9db2f3d631de795c','轨迹视频回放接口','轨迹视频回放接口','cmii-uav-cloud-live','/client/live/playback/detailToken','POST',_binary '\0',_binary '\0','2021-07-30 09:38:18',1,'2024-10-12 09:42:32',NULL),(136161872553443328,'API_2c7b0a08d1daa06561c79bf498e6e25d','统计','','cmii-admin-user','/chartInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:38:40',1,'2024-09-09 09:14:21',NULL),(136161872649912320,'API_fa535023c079bce929fa1c2b1709fcd4','运行报表','','cmii-admin-user','/runningReport','GET',_binary '\0',_binary '\0','2021-07-30 09:38:40',1,'2024-09-09 09:14:19',NULL),(136161873673322496,'API_9370ffdd40b5840b0598f769e9eb1627','获取图片验证码(图片)','','cmii-admin-user','/getImageCode','GET,POST',_binary '\0',_binary '\0','2021-07-30 09:38:40',1,'2024-09-09 09:14:17',NULL),(136161874029838336,'API_c5881dfec33ece1e47dd2ce0fb27b251','更具图片id获取图片code','','cmii-admin-user','/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:20',NULL),(136161875984384000,'API_a4428a7f77c1d979aa25cd335dc1db50','api','','cmii-admin-user','/api/{uri}','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:16',NULL),(136161876085047296,'API_2652c42ce633640cd35b7ecbcf40f8f9','任务日志管理-查询执行器的日志','','cmii-admin-user','/joblog/getJobsByGroup','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:21',NULL),(136161876189904896,'API_14dd901e124793e845e5fb23863ad219','任务日志管理-分页查询日志','','cmii-admin-user','/joblog/pageList','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:20',NULL),(136161876298956800,'API_740e764859f3a40d9c207d4eb97474ff','任务日志管理-查询日志详情','','cmii-admin-user','/joblog/logDetailCat','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:19',NULL),(136161876395425792,'API_24893b2c8b86de1c3c478dc9ba96e77b','任务日志管理-清楚日志','','cmii-admin-user','/joblog/clearLog','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:17',NULL),(136161876483506176,'API_1ea32d8384469c149399a5a541ff7197','任务执行器-分页查询','','cmii-admin-user','/jobgroup/pageList','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:20',NULL),(136161876575780864,'API_e56aabbd072e6504158310aa3ea75a15','任务执行器-查询单个','','cmii-admin-user','/jobgroup/loadById','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:17',NULL),(136161876663861248,'API_1ca2054ac0536146b89bf0648521b250','任务执行器-删除','','cmii-admin-user','/jobgroup/remove','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:21',NULL),(136161876785496064,'API_125089374bd8a86e128b04b4366bed50','任务执行器-更新','','cmii-admin-user','/jobgroup/update','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:18',NULL),(136161876873576448,'API_1f4ef36fd959340698ee0201d37fb0d0','任务执行器-添加','','cmii-admin-user','/jobgroup/save','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:17',NULL),(136161881931907072,'API_dddf8ad3442dcb4cc73e32e1e22e0675','任务执行脚本-脚本类型列表','','cmii-admin-user','/jobcode/glueTypes','GET',_binary '\0',_binary '\0','2021-07-30 09:38:42',1,'2024-09-09 09:14:17',NULL),(136161882061930496,'API_bc6b4d9288f5282c5840eea30565bf81','任务执行脚本-脚本类型列表','','cmii-admin-user','/jobcode/jobLogglueHistory','GET',_binary '\0',_binary '\0','2021-07-30 09:38:42',1,'2024-09-09 09:14:20',NULL),(136161882225508352,'API_bfdfb1ee8e1376f4dc1e1f6ad5b5dcae','任务执行脚本-添加脚本','','cmii-admin-user','/jobcode/add','POST',_binary '\0',_binary '\0','2021-07-30 09:38:42',1,'2024-09-09 09:14:18',NULL),(136161882330365952,'API_d2d21528ebfbfe9b3387b6f785284970','任务管理-停止','','cmii-admin-user','/jobinfo/stop','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161882472972288,'API_c974f70ca7ebe98820999f986f0ef200','任务管理-立即执行','','cmii-admin-user','/jobinfo/trigger','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:18',NULL),(136161882577829888,'API_c439e4c75c067b0fc30fca5ae9d6a6b1','任务管理-下次执行时间','','cmii-admin-user','/jobinfo/nextTriggerTime','GET',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:19',NULL),(136161882686881792,'API_eca5c0ba88d555f86467325f491de93f','任务管理-分页列表','','cmii-admin-user','/jobinfo/pageList','GET',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:17',NULL),(136161882791739392,'API_9d92886a872bc1a3b8c03be8667215d1','任务管理-任务添加','','cmii-admin-user','/jobinfo/add','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161882938540032,'API_7aa023ee87f1ee721824c4760685137f','任务管理-删除','','cmii-admin-user','/jobinfo/remove','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:18',NULL),(136161883026620416,'API_f9900d456fe4e648ebb0f505f6e04048','任务管理-更新','','cmii-admin-user','/jobinfo/update','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:21',NULL),(136161883173421056,'API_8d81b83bec910f424529aa0e1c17fec1','任务管理-测试','','cmii-admin-user','/jobinfo/test','GET',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161883265695744,'API_77334174f0a5e3ca46b78424ed1e1775','任务管理-开始','','cmii-admin-user','/jobinfo/start','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161884054224896,'API_d4d80087f69bb270e3a10a0a72bd0faa','triggerJob','','cmii-admin-user','/client/v1/xxljob/trigger','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:18',NULL),(136161884209414144,'API_d451888076412990f21f0c9006fe88eb','addAndStart','','cmii-admin-user','/client/v1/xxljob/addAndStart','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161884322660352,'API_102c4d46bd0840c81c6e2493004f360c','add','','cmii-admin-user','/client/v1/xxljob/add','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161884461072384,'API_1cdbdb163b9724bfab14abd92d13a5b4','remove','','cmii-admin-user','/client/v1/xxljob/remove','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:19',NULL),(136161884616261632,'API_d881810e3a3c61966d04a0eb370b8b0a','update','','cmii-admin-user','/client/v1/xxljob/update','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161884763062272,'API_0d1de4119d0666c24db6f6d60edf30b2','start','','cmii-admin-user','/client/v1/xxljob/start','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161884893085696,'API_3e67c2b4289e47828705d49c26e440ca','stop','','cmii-admin-user','/client/v1/xxljob/stop','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136166412912689152,'API_03cd30425f552e7e5ae322bfd03e269c','应急数据修改接口','应急数据修改接口','cmii-uav-kpi-monitor','/personal/emergency/sos_data/update','GET',_binary '\0',_binary '\0','2021-07-30 09:56:43',1,'2024-10-11 01:37:37',NULL),(136166413076267008,'API_858feecbcc679d7e7f65039c0089cdff','获取每个公司无人机实例信息','获取每个公司无人机实例信息','cmii-uav-kpi-monitor','/user/accessAnalysis/planeInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:56:43',1,'2024-10-11 01:37:36',NULL),(171683410652168192,'API_d1568db90a52026907f43d635e6ef310','env','','cmii-uav-kpi-monitor','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:35',1,'2024-10-11 01:37:36',NULL),(171683418445185024,'API_5f406ee1cd13e3451ef8f25ef51067b1','env','','cmii-uav-developer','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:37',1,'2024-10-09 19:48:36',NULL),(171683474053267456,'API_340fe139abee2fde75289994adff7ec1','env','','cmii-uav-cloud-live','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:50',1,'2024-10-12 09:42:34',NULL),(171683476808925184,'API_0bb20ef1840be51455dbad528597652b','下载指定时长mp4文件','下载制定时长mp4文件','cmii-uav-cloud-live','/video/download/mp4file','GET',_binary '\0',_binary '\0','2021-11-05 10:08:51',1,'2024-10-12 09:42:35',NULL),(171683477194801152,'API_9a239d269204b50e4d66d2cce1dea7e0','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','/public/his/playback/ts/{fileName}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:51',1,'2024-10-12 09:42:37',NULL),(171683481716260864,'API_24ffe32cac865b59c4824b21954438ac','开始一个新的workflow','开始一个新的workflow','cmii-uav-cloud-live','/orchestrate/init','POST',_binary '\0',_binary '\0','2021-11-05 10:08:52',1,'2022-03-08 07:20:03',NULL),(171683485000400896,'API_1b3f2d7c00669e0d02e448b75e3e6bfe','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2023-03-29 10:20:12',NULL),(171683485386276864,'API_648ec3173582226c50adabdef7640f36','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2023-03-29 10:20:11',NULL),(171683488083214336,'API_f9c07c14cdd4bcfe3034e65dbf0e63b2','env','','cmii-admin-user','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2024-09-09 09:14:18',NULL),(171683495196753920,'API_ce4958dc010425235d4e3482f841610b','根据编码集合查询出接口信息','','cmii-admin-user','/api/admin/resource/api/queryByCodes','POST',_binary '\0',_binary '\0','2021-11-05 10:08:55',1,'2024-09-09 09:14:21',NULL),(171683523713826816,'API_315b612a067b9282f2f8d4ecc2d84043','菜单资源同步','','cmii-admin-user','/api/admin/resource/sync','POST',_binary '\0',_binary '\0','2021-11-05 10:09:02',1,'2024-09-09 09:14:18',NULL),(171683527077658624,'API_a5c01e415168182b56c9f1b191902312','导出应用数据','','cmii-admin-user','/v1/platforms/syncExportPlatform','GET',_binary '\0',_binary '\0','2021-11-05 10:09:03',1,'2024-09-09 09:14:19',NULL),(171683527425785856,'API_d960b7966ae734022d6d73c1eb1d48d2','导入应用数据','','cmii-admin-user','/v1/platforms/syncImportPlatform','POST',_binary '\0',_binary '\0','2021-11-05 10:09:03',1,'2024-09-09 09:14:19',NULL),(171683527799078912,'API_35d6a2526c3fc01c073fbfa22bb11852','同步子系统信息','','cmii-admin-user','/v1/platforms/syncPlatform','POST',_binary '\0',_binary '\0','2021-11-05 10:09:03',1,'2024-09-09 09:14:19',NULL),(171683549794009088,'API_371627ad81634fcc7c8cd5e38f09562f','菜单资源同步','','cmii-uav-user','/api/uav/resource/sync','POST',_binary '\0',_binary '\0','2021-11-05 10:09:08',1,'2024-10-11 15:37:16',NULL),(171683565119995904,'API_e6410cd8083ec77c856dbeac9282364e','公司支持的多语言','','cmii-uav-user','/api/uav/user/profile/querySupportedLanguages','POST',_binary '\0',_binary '\0','2021-11-05 10:09:12',1,'2024-10-11 15:37:17',NULL),(171683567418474496,'API_9592623ab1b1e0bf43fa57eeaf7a978e','根据编码集合查询出接口信息','','cmii-uav-user','/api/uav/resource/api/queryByCodes','POST',_binary '\0',_binary '\0','2021-11-05 10:09:12',1,'2024-10-11 15:37:14',NULL),(171683574255190016,'API_ef1392e9af777173a7d22a9a2dd896fc','用户修改密码(验证旧密码)','','cmii-uav-user','/api/uav/user/modifyPwd','POST',_binary '\0',_binary '\0','2021-11-05 10:09:14',1,'2024-10-11 15:37:13',NULL),(171683574620094464,'API_3d2e58aa2ed872cc0efb748d14cd2e5d','验证账号密码','','cmii-uav-user','/api/uav/user/checkAccountPwd','POST',_binary '\0',_binary '\0','2021-11-05 10:09:14',1,'2024-10-11 15:37:19',NULL),(171683591451836416,'API_3dc66cc39026e1523fab47ab17028019','根据用户id获取用户详细信息','','cmii-uav-user','/user/getUpdateById','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 15:37:17',NULL),(171683594895360000,'API_9139c0e2f4ff19be2ee015f851dea540','更新检查密码过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdExpire','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 15:37:09',NULL),(171683595289624576,'API_6beea8e80ff08ac650cf234507edd315','更新检查密码即将过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdWillExpire','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 15:37:09',NULL),(171683595671306240,'API_412903050f7d31bec581858540eec30a','向用户发送短信','','cmii-uav-user','/user/pwd/notice/startSendSms','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 15:37:13',NULL),(171683596111708160,'API_da4d4460e5d246a7e2e5bcc23912ceb9','向用户发送Email','','cmii-uav-user','/user/pwd/notice/startSendEmail','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 15:37:11',NULL),(171683598380826624,'API_41a5a4ad4c33ecaa64d42329d150bb2e','env','','cmii-uav-user','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:20',1,'2024-10-11 15:37:18',NULL),(171683603313328128,'API_deff3745dfbb0fbff07bba51cf8ccece','从Redis获取有效的编码对应的本地语言的值','从Redis获取有效的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getValLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-11-05 10:09:21',1,'2024-09-09 09:14:44',NULL),(171683606232563712,'API_a62e0e5af0aa671e90aa30bee955bb38','从Redis获取有效的语言对应的字典明细的K-V','从Redis获取有效的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2021-11-05 10:09:21',1,'2024-09-09 09:14:45',NULL),(171683612331081728,'API_719e33488c94c692a8a6194044a9226a','查询指定限制空域','','cmii-admin-data','/api/admin/arealimit/querySpecifiedZydAreaLimit','POST',_binary '\0',_binary '\0','2021-11-05 10:09:23',1,'2024-09-09 09:14:42',NULL),(171683618735783936,'API_17e92ba3f3254c5de0a373d75bedfbb9','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2021-11-05 10:09:24',1,'2024-10-11 05:48:25',NULL),(171683618979053568,'API_526b934847d50eb05602fd611b9e5dcc','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2021-11-05 10:09:24',1,'2024-10-11 05:48:25',NULL),(171683619281043456,'API_d826dc52a480d92cce72a9b9477221c6','通过告警对象查询指定公司的在线告警事件列表','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683619511730176,'API_e6e68e310194d4af876a4ad5f8362cb0','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:27',NULL),(171683619759194112,'API_e8a1ae1477cca15626192ae0c8edc535','查询告警配置对应的事件信息','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByAlrmId','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:26',NULL),(171683620061184000,'API_1e77ab6a913b79833e87b67f02f57aab','告警触发器','','cmii-uav-alarm','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683620312842240,'API_79b01188af4e7022c61720c36d77a31d','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byId','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683620543528960,'API_3b185cd3d02b8d675047b4d85e977c92','通过关联作业处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:27',NULL),(171683620765827072,'API_ee029c84f67993e91d0455d40e9a36c0','通过事件标识处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmByIdentity','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:27',NULL),(171683621000708096,'API_8821ef843ad5e6ab28249bca8b816996','通过告警对象处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:26',NULL),(171683621239783424,'API_b8fd251faf2dc9c5e93a71d69a643444','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/onLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683621466275840,'API_a2475abfb5028b323c9b422abb307769','查询历史在告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/offLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683621696962560,'API_780123db4080c80b7dfa636d0799878b','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:27',NULL),(171683621923454976,'API_894992c55afc4f4cd771e603af0142c3','查询包括子公司的指定告警配置的详情','','cmii-uav-alarm','/api/uav/alarm/query/configurationById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:26',NULL),(171683622149947392,'API_1d9708f43fe32a30e441a63e750063c9','查询指定公司的监控对象告警触发条件','','cmii-uav-alarm','/api/uav/alarm/queryAlarmTriggerByObj','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683622384828416,'API_b4647e28e3da8db818e570a626b27ca7','新增告警配置','','cmii-uav-alarm','/api/uav/alarm/add/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683622653263872,'API_e8aefd2952a4b43dcb8064e8b703d879','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:26',NULL),(171683622913310720,'API_5836f54818af59d88aff1ee225d3ee3a','查询包括子公司的告警名称','','cmii-uav-alarm','/api/uav/alarm/queryAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:24',NULL),(171683623160774656,'API_94ab8f3eeb3b5ccd94f6b7d9fe575b9f','查询包括子公司的监控对象','','cmii-uav-alarm','/api/uav/alarm/queryAlarmObject','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-11 05:48:25',NULL),(171683623387267072,'API_ddd29fd3c17dbc04e47ad11a617656e8','查询包括子公司的监控指标','','cmii-uav-alarm','/api/uav/alarm/queryAlarmIndex','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:26',NULL),(171683623622148096,'API_8a110d05ceda064d14bc186c840ffd26','分页查询包括子公司的告警配置','','cmii-uav-alarm','/api/uav/alarm/query/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:25',NULL),(171683623869612032,'API_e19ec127d1af0072905a7f7080bcf5e6','数据字典下拉列表查询','','cmii-uav-alarm','/api/uav/alarm/getDictValue','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:26',NULL),(171683624112881664,'API_1e54a11defb3f33db2e73db82c28d95f','查询当前公司所属用户列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userInfo','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:26',NULL),(171683624398094336,'API_338ce979c6c54127e5c0c8f8658665fb','根据用户名称或者手机号查询当前公司所属用户id列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userIds','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:27',NULL),(171683624628781056,'API_6b46feb15dfd928bd5dae31533e09ebc','启用禁用操作','','cmii-uav-alarm','/api/uav/alarm/update/available','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:25',NULL),(171683624913993728,'API_34e3288ab4eda30bb0fd075d007d625d','校验告警名称','','cmii-uav-alarm','/api/uav/alarm/checkAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:25',NULL),(171683625140486144,'API_77adff0510203563ce13a51a32e15130','删除操作','','cmii-uav-alarm','/api/uav/alarm/delete/configure','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:25',NULL),(171683625366978560,'API_065f442334b312950a67b874f2a123e5','批量删除操作','','cmii-uav-alarm','/api/uav/alarm/deleteBatch','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:27',NULL),(171683625593470976,'API_bbd18c44e5cb04c6c87ed506b4ededeb','接口扫描','','cmii-uav-alarm','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:25',NULL),(171683625819963392,'API_e6bc5e82583f7c2795398a90caaab35e','health','','cmii-uav-alarm','/cmii/health','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:27',NULL),(171683626033872896,'API_5e7e12e67d378030dd3edcb30ab70ff8','ping','','cmii-uav-alarm','/cmii/ping','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:27',NULL),(171683626268753920,'API_df5241d77cce8bc64906586cad2227f2','env','','cmii-uav-alarm','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:26',NULL),(171683626549772288,'API_ba16ebc000ef650d05bc45e632378065','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2022-04-25 02:49:08',NULL),(171683626784653312,'API_30b7c6431967cc689a963de5862cf0c1','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2022-04-25 02:49:08',NULL),(171683627027922944,'API_c8a54dba9e0394eaa8fa54f5712d33d3','swaggerResources','','cmii-uav-alarm','/swagger-resources','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2022-04-25 02:49:08',NULL),(171683627262803968,'API_bbc39447c2bf5f77ceceba22c9f39878','error','','cmii-uav-alarm','/error','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-11 05:48:27',NULL),(183145143220568064,'API_80af42f9663ccb84f0c6166e0aef27c7','结束火警信息','','cmii-uav-developer','/oapi/mission/caseinfo/newcase/1.0','POST',_binary '\0',_binary '\0','2021-12-07 01:13:25',1,'2024-10-09 19:48:36',NULL),(183145143455449088,'API_9b9ce6308ece3f26b8de0ee1bbd99777','上传火警信息','','cmii-uav-developer','/oapi/mission/caseinfo/casefinish/1.0','POST',_binary '\0',_binary '\0','2021-12-07 01:13:25',1,'2024-10-09 19:48:37',NULL),(198514140900229120,'API_1ffec58e04373a7c741a9735867d0e83','增加菜单并授权接口','','cmii-admin-user','/api/admin/resource/menu/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:04:19',1,'2024-09-09 09:14:16',NULL),(198514141063806976,'API_64719445d25844884a3cf60f056c5ce4','更新菜单并授权接口','','cmii-admin-user','/api/admin/resource/menu/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:04:19',1,'2024-09-09 09:14:17',NULL),(198514635932958720,'API_dbfb1b62084df886d44195e74a470609','根据图片id获取图片code','','cmii-uav-developer','/verifyCode/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2022-01-18 11:06:17',1,'2024-10-09 19:48:35',NULL),(198514636142673920,'API_9326301857747c262523a25e16e6e76a','注册一个开发者','','cmii-uav-developer','/registry-for-test','POST',_binary '\0',_binary '\0','2022-01-18 11:06:17',1,'2024-10-09 19:48:35',NULL),(198514640806739968,'API_8586517c85e5eb62e0444e55ef223d76','通过设备号查询公司ID接口','通过设备号查询公司ID接口','cmii-uav-developer','/oapi/device/uav/company/1.0','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-09 19:48:33',NULL),(198514640844488704,'API_da0049332dda52267e16e56d24f7b045','通过设备号列表查询绑定信息接口','通过设备号列表查询绑定信息接口','cmii-uav-developer','/oapi/device/uav/bound/1.0','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-09 19:48:34',NULL),(198514642245386240,'API_c7362388408bfca8e7cc15ca5592d0d5','搜索日志','','cmii-uav-logger','/bizLog/searchLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:48',NULL),(198514642283134976,'API_76300389360c13a81bdbdfd9ecb79f93','搜索对象关联日志','','cmii-uav-logger','/bizLog/searchOpIdentityLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:47',NULL),(198514642316689408,'API_db065b5d3b83b61eaefa2a4b50836f78','模糊搜索用户列表接口','模糊搜索用户列表接口','cmii-uav-logger','/personal/search/userList','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:47',NULL),(198514642350243840,'API_796a09c0bc084f600504c3bcd4abf532','模糊搜索设备列表接口','模糊搜索设备列表接口','cmii-uav-logger','/personal/search/deviceList','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:47',NULL),(198514642387992576,'API_d0c6d1f5bf828187a559fbab169bdcb4','设备类别列表接口','设备类别列表接口接口','cmii-uav-logger','/personal/config/category/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:47',NULL),(198514642421547008,'API_2fc811bd78563bfd029726034e5b277a','搜索业务日志【通用检索接口】','','cmii-uav-logger','/logger/searchBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:48',NULL),(198514642463490048,'API_22efa37fc10586896a1e2c931e33a65e','写一条业务日志【日志埋点使用】','','cmii-uav-logger','/logger/saveBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:48',NULL),(198514642497044480,'API_a7e9511e581d19131d2c36db53502b78','接口扫描','','cmii-uav-logger','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:48',NULL),(198514642538987520,'API_bc273903671185a43d1dad89c944b981','health','','cmii-uav-logger','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:48',NULL),(198514642576736256,'API_72f1ed0d5cf4e0b1979085f43465fde6','ping','','cmii-uav-logger','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:48',NULL),(198514642610290688,'API_b16f39ced33dbbd4773db4915e4f2386','env','','cmii-uav-logger','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:48',NULL),(198514642648039424,'API_8656bcac6b04d4b5f95c971afef1fe09','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2022-03-11 06:17:22',NULL),(198514642685788160,'API_e2804c450c1aa20fcab278f7590f4351','swaggerResources','','cmii-uav-logger','/swagger-resources','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2022-03-11 06:17:22',NULL),(198514642727731200,'API_7dbad5674586f150ad7ecb021f2b88a9','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2022-03-11 06:17:22',NULL),(198514642765479936,'API_fd1762c99da1c9cf1cc14970e7a2817a','error','','cmii-uav-logger','/error','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-10-15 02:44:47',NULL),(198514650772406272,'API_6cf23bdae74602c793a65ca87b97b4c8','查询支持的算子列表(可选)','查询支持的算子列表','cmii-uav-cloud-live','/config/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2022-03-08 07:20:02',NULL),(198514650810155008,'API_57b11d3699ec917da49f417693309a23','查询算子配置标准(可选)','查询算子配置标准','cmii-uav-cloud-live','/config/task/info','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:35',NULL),(198514650864680960,'API_aa851340e8516d5394f1a733f1a3fa21','算子上报任务状态接口(可选)','算子上报任务状态接口','cmii-uav-cloud-live','/config/report/status','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2022-03-08 07:20:02',NULL),(198514650902429696,'API_7bdd1e253db690eae958770109d4df8b','插件需要运行任务列表','插件需要运行任务列表','cmii-uav-cloud-live','/task/run/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:38',NULL),(198514650944372736,'API_f9ecea55f0f0ddaa5b5d798451b6c3dd','启动算子任务','启动算子任务','cmii-uav-cloud-live','/task/start','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:37',NULL),(198514650982121472,'API_2c7807e4baef26561f779a78aa9b38c4','停止算子任务','停止算子任务','cmii-uav-cloud-live','/task/stop','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:36',NULL),(198514651015675904,'API_fae85f9df895d5904e0e9f2bb3a6ca59','查询微服务下运行的任务列表','查询微服务运行的任务列表','cmii-uav-cloud-live','/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:38',NULL),(198514651053424640,'API_b61133abe3f5660483655646b25afdd6','查询容量','查询容量','cmii-uav-cloud-live','/task/summary','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2022-03-08 07:20:02',NULL),(198514651095367680,'API_72621d9d7f3fd3d8da551e852539d260','查询算子任务状态','查询算子任务状态','cmii-uav-cloud-live','/task/status/get','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:35',NULL),(198514651133116416,'API_bfe511b393227902e718f34fc9f913ec','查询视频流状态','查询视频流','cmii-uav-cloud-live','/video/stream','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:38',NULL),(198514651179253760,'API_a53504f49cf4641453c2137943dd1539','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','/video/stream/{streamId}','DELETE',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:33',NULL),(198514651221196800,'API_1df86d39f377967622f7cbdbb5b9c4d5','获取视频流状态信息','获取视频流状态信息','cmii-uav-cloud-live','/video/stream/getStreamStatus','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:39',NULL),(198514651258945536,'API_38b1c5cd2a964df55a41fd64d0aa2301','创建工作流任务','创建工作流任务','cmii-uav-cloud-live','/workflow/task','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:32',NULL),(198514651296694272,'API_664a461473515cd35686976d146ef20e','查询工作流状态','查询工作流状态','cmii-uav-cloud-live','/workflow/status','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:36',NULL),(198514651338637312,'API_eb30f6388b9304ed0f36191557e3d5ce','查询视频信息','查询视频信息','cmii-uav-cloud-live','/client/video/queryVideoInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:33',NULL),(198514651372191744,'API_9e0d5bc96a5945702af710adf71bddba','合并完成通知','合成完成通知','cmii-uav-cloud-live','/client/video/mergeComplete','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:33',NULL),(198514651409940480,'API_deeadfe980021944cf2eb95105eca865','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/client/video/applyMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:31',NULL),(198514651451883520,'API_3aa94cb231afe3b4dc74cc434ac5b960','通知视频插件合并视频【调试接口】','通知视频插件合并视频【调试接口】','cmii-uav-cloud-live','/client/video/noticeMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:39',NULL),(198514651489632256,'API_bb719bbe92cdfec83c452f2b0940ee61','通知任务执行【调试接口】','通知任务执行【调试接口】','cmii-uav-cloud-live','/client/video/startTask','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:32',NULL),(198514651527380992,'API_77ce20cbcf31364a347a9ee9ad913eef','查询已启动的算子服务','查询已启动的算子服务','cmii-uav-cloud-live','/aibrain/task/list','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:31',NULL),(198514651560935424,'API_3bf7a24c21a7a87e06bcdd0a481c257b','查询受支持的算子','查询受支持的算子','cmii-uav-cloud-live','/aibrain/module','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:33',NULL),(198514651602878464,'API_a5354dd8a32cec260b29ef9064103626','检查过期任务','检查过期任务','cmii-uav-cloud-live','/aibrain/task/checkExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:34',NULL),(198514651636432896,'API_aefa630cfc259cc50feacfb468747142','创建AI Token','创建AI Token','cmii-uav-cloud-live','/aibrain/createAiToken','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:35',NULL),(198514651678375936,'API_f76287aae226e3f42feda5d6347b3393','启动算子服务','启动算子服务','cmii-uav-cloud-live','/aibrain/task','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:32',NULL),(198514651711930368,'API_e7cd9c3a32b93dccd073b593ab94a948','停止算子服务','停止算子服务','cmii-uav-cloud-live','/aibrain/task','DELETE',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:31',NULL),(198514652114583552,'API_4c293733864102529b24ce2e8aca7c5d','查询视频分片文件列表','查询视频分片文件列表','cmii-uav-cloud-live','/client/live/queryPartFiles','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:37',NULL),(198514652156526592,'API_4ce3713dcd9407e532b36fc2222e86c7','申请视频流','申请视频流','cmii-uav-cloud-live','/client/live/stream/createStream','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:31',NULL),(198514652211052544,'API_95cc9e770062fe4aa202821d013ff0d2','查询视频流信息','查询视频流信息','cmii-uav-cloud-live','/client/live/stream/getStreamInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:33',NULL),(198514652261384192,'API_d08c958d9a9b0f498e57ed074618bb69','查询视频流地址','查询视频流地址','cmii-uav-cloud-live','/client/live/stream/getStreamUrl','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:38',NULL),(198514652303327232,'API_44886cade0b7fa437e5d7955306ff6f9','创建临时视频流','创建临时视频流','cmii-uav-cloud-live','/client/live/stream/createTempStream','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:34',NULL),(198514652341075968,'API_ddf5b7086132de055d3ef2c1be7d51ba','删除视频流','删除视频流','cmii-uav-cloud-live','/client/live/stream/deleteStream','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:31',NULL),(198514652508848128,'API_9b7392d77b4fc497ddcc5bd67e6d4c2a','getStreamUrls','','cmii-uav-cloud-live','/streams/urls','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-10-12 09:42:33',NULL),(198514665808986112,'API_e8644287d106974dd3abd2b2e63e129b','更新菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:06:25',1,'2024-10-11 15:37:20',NULL),(198514666299719680,'API_1f14a61350bd9787496d64e9df5f5639','增加菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:06:25',1,'2024-10-11 15:37:19',NULL),(198514685367025664,'API_544d535cbc76e0b0128e76922d3afd9f','ping','','cmii-admin-data','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:06:29',1,'2024-09-09 09:14:43',NULL),(198514685417357312,'API_ccb853f58fbf416685be2a8c73f5aaf9','health','','cmii-admin-data','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:06:29',1,'2024-09-09 09:14:45',NULL),(198514685505437696,'API_d60359bb5ed6fe0e2e7b0ff830a92c4e','env','','cmii-admin-data','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:06:29',1,'2024-09-09 09:14:41',NULL),(217238202652557312,'API_3b87b350b693887af09016e27cbdb1e3','验证区域信息是否正确[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/checkArea','POST',_binary '\0',_binary '\0','2022-03-11 03:07:04',1,'2024-09-09 09:14:44',NULL),(217238212756635648,'API_d4f2e185163e0755673448c0ee376ea6','按条件分页查询载荷型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelPage','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:43',NULL),(217238212895047680,'API_71b99303d880eb9226fbca6dc38cdcd7','从载荷类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/load/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:42',NULL),(217238213004099584,'API_c422092cc68cc976c1ffe774ef338788','从载荷类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/load/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:41',NULL),(217238213087985664,'API_5c729fae887038eb3b4814dcb549c305','根据类型查询载荷类型详情','','cmii-admin-data','/api/admin/model/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:46',NULL),(217238213226397696,'API_4a071fe963d52832096c7867ca6409d6','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/load/checkNotFrozen','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:43',NULL),(217238213314478080,'API_e9d4c1b8190381c4f9ad256471c4a981','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:44',NULL),(217238213482250240,'API_e4a11a7c3bf95fbfe1a8d22a16f328e0','载荷载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:41',NULL),(217238213809405952,'API_59d2893cc2ab37fba1b6cbde2d2f1bdc','新增载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:44',NULL),(217238214082035712,'API_cb684243191e595a7401409f0db91594','修改载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:43',NULL),(217238214308528128,'API_254694c31ab18704e4f225c7aeebab06','删除载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:14:41',NULL),(217238223301115904,'API_90706ff810c24e4966aed2e0b8863be6','通过告警对象列表批量处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2022-03-11 06:16:48',NULL),(217238225360519168,'API_f0c1ce7c546a0e0d48037eb8081c0ed5','upload','','cmii-uav-alarm','/api/uav/common/event/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-11 05:48:27',NULL),(217238225519902720,'API_389ebdff8f8c553a5306d9c71122b7f2','excel导入指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/importExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-11 05:48:25',NULL),(217238225620566016,'API_b9cd4732193d41fb9b1aebc8db6eda5b','excel导入所以sheet','','cmii-uav-alarm','/api/uav/common/event/importAllExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-11 05:48:25',NULL),(217238225725423616,'API_13ff192cb0e53b481a648a39708a6adc','导出到指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/exportExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-11 05:48:27',NULL),(217238229986836480,'API_b0e6af44f389fbb5d5bc6f0b10c54646','是否存储配额告警','','cmii-uav-user','/personal/quota/hasWarn','POST',_binary '\0',_binary '\0','2022-03-11 03:07:10',1,'2024-10-11 15:37:14',NULL),(217238270981963776,'API_71106634d3cde1cfbdfc2bd2bcbc81d0','是否是弱密码','','cmii-admin-user','/system/isWeakPassword','POST',_binary '\0',_binary '\0','2022-03-11 03:07:20',1,'2024-09-09 09:14:18',NULL),(217238362170327040,'API_4e26137db92324caad958954feb17d65','停止流程','停止流程','cmii-uav-cloud-live','/workflow/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:35',NULL),(217238362237435904,'API_9cc4b7cdd1f1653b79b73c7b31080c26','保持流程心跳','保持流程心跳','cmii-uav-cloud-live','/workflow/keepAlive','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:37',NULL),(217238362438762496,'API_6416958a39d25fee2b1f75951e86a9ea','完结超时流程','完结超时流程','cmii-uav-cloud-live','/workflow/cleanExpireFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:34',NULL),(217238362501677056,'API_72ee70869742bb1f700fa9e59f61a48e','查询插件输入输出流信息','查询插件输入输出流信息','cmii-uav-cloud-live','/workflow/queryStreamInfo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:31',NULL),(217238362753335296,'API_6afe7df38923488b2b390d9093cfd30b','更新流程','更新流程','cmii-uav-cloud-live','/workflow/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:34',NULL),(217238362833027072,'API_26133f68affa7c39f380555c6de8fcb2','通过启动参数停止流程','通过多参数停止流程','cmii-uav-cloud-live','/workflow/stopFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:37',NULL),(217238364015820800,'API_17d4e0fbfc4d4f45eed4a9644711e08c','释放作业关联视频分片','释放作业关联视频分片','cmii-uav-cloud-live','/client/live/stream/releaseVideo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:38',NULL),(217238364066152448,'API_3e601d5862ffe674019e072d71533b17','执行删除视频任务','执行删除视频任务','cmii-uav-cloud-live','/client/live/stream/executeDeleteVideoTask','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:34',NULL),(217238364930179072,'API_38b45d1b9390779f52cef09b5c3ad313','更新算子任务','更新算子任务','cmii-uav-cloud-live','/task/update','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:38',NULL),(217238365186031616,'API_8edd6ae82ca26b01230a32aecfa1b6c4','服务实例注册(必选)','服务实例注册','cmii-uav-cloud-live','/config/service/registerInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:33',NULL),(217238365332832256,'API_83a60e43cda23ce35d88b317a92b27ab','服务实例注销(可选,3分钟无新注册心跳自动注销)','服务实例注销','cmii-uav-cloud-live','/config/service/deregisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:35',NULL),(217238365395746816,'API_e028a848bd2749a1fe46565255ffa9b1','查看注册服务实例信息','查看注册服务实例信息','cmii-uav-cloud-live','/config/service/getRegisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:38',NULL),(217238365538353152,'API_b94a39e945b2d15a5a94ff0e4b2ba5d1','是否还有存储配额(true.有, false. 无','','cmii-uav-cloud-live','/personal/quota/canSave','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-10-12 09:42:34',NULL),(217238366201053184,'API_962e612d2f3b78893a9d1f02f674eb3c','添加流程','添加流程','cmii-uav-cloud-live','/workflow/config/addFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-10-12 09:42:31',NULL),(217238366276550656,'API_3648534a1cf81e18d7b142149b7841fc','更新流程','更新流程','cmii-uav-cloud-live','/workflow/config/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-10-12 09:42:37',NULL),(217238366352048128,'API_85c7a757a263542774515c3b3fe4602e','锁定流程','锁定流程','cmii-uav-cloud-live','/workflow/config/lockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-10-12 09:42:34',NULL),(217238366423351296,'API_14d45933e60b70fad979158b8876d1ec','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unLockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2022-08-29 01:34:54',NULL),(217238366482071552,'API_d0177bec91de61c3940949dcefe74080','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/reMoveFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2022-08-29 01:34:54',NULL),(217238366549180416,'API_16c3eec5c21c4d0e3c48b60063a032d4','查询流程定义列表','查询流程定义列表','cmii-uav-cloud-live','/workflow/config/queryFlowList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-10-12 09:42:37',NULL),(217238366616289280,'API_3691fbe7f7e8d3094727c3fc74a1575c','重新加载流程','重新加载流程','cmii-uav-cloud-live','/workflow/config/reloadFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-10-12 09:42:32',NULL),(218661015724752896,'API_c452e0b6b1d8aa5d63610aad4f58bb4f','通过告警对象列表删除已经处理的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/deleteAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-15 01:20:49',1,'2024-10-11 05:48:26',NULL),(218686095754264576,'API_6702c13bc2c962e6a1d294f5b4dd96a1','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2022-09-29 06:35:44',NULL),(218686095812984832,'API_68c3e0f14d1c550c78f80c6ca1db9f56','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryUav','POST',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-10-11 01:36:54',NULL),(218686096135946240,'API_6407aa74d4efa63e3035e136c6b46103','获取游客的无人机设备列表','','cmii-uav-device','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-10-11 01:36:47',NULL),(218686096182083584,'API_621b76dbfc0820c65c659ac94b91d6bb','设置无人机上线','','cmii-uav-device','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-10-11 01:36:42',NULL),(218686096282746880,'API_1b82fd20fc26e41f5631420a8d472dbd','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-10-11 01:36:53',NULL),(218686097222270976,'API_37ed874b03a209ba9a2e3ba730f524bd','查询无人机总飞行时长','','cmii-uav-device','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:49',NULL),(218686097733976064,'API_a3e9bbaa35d07d89747c7744316f9971','查询包括子公司的真实无人机和模拟机列表','','cmii-uav-device','/api/uav/plane/queryUavRealByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:42',NULL),(218686097989828608,'API_ab3e284739e564c16d2c808d62484669','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/plane/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:49',NULL),(218686098233098240,'API_cd517d91bed3c4b36218eab52cc53e7c','按无人机编码查询无人机是否是真机','','cmii-uav-device','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:46',NULL),(218686099189399552,'API_ec24af9abdf24b7570567ee12819e635','无人机绑定的摄像头推流信息','','cmii-uav-device','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:45',NULL),(218686099336200192,'API_e241a61f309072d11f33960bdb86dab7','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:52',NULL),(218686099516555264,'API_0bbb96c440960337f67ff1c7797a7117','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:44',NULL),(218686099671744512,'API_b45434946f5350bd8184415958a3fedc','更新无人机绑定载荷类型','','cmii-uav-device','/api/uav/plane/updateLoadTypeByUavCode','POST',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:49',NULL),(218686099919208448,'API_24e056f03f5fd2570962541216c45bc2','获取视频推拉流地址','','cmii-uav-device','/api/uav/load/getVideoAddress','POST',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:50',NULL),(218686099982123008,'API_f3a796075590fc75cdec6c8ef419602d','查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:44',NULL),(218686100296695808,'API_ec35e84853c188e3e7fc65fb7d805943','查询载荷类型','','cmii-uav-device','/api/uav/load/queryUavLoadType','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-10-11 01:36:53',NULL),(218686101311717376,'API_fa3a657597b9619499202054581160aa','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/load/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-10-11 01:36:43',NULL),(218686101412380672,'API_5c3eb73c8182fd8e34cc894951232f6b','基础版根据code获取用户Token','基础版根据code获取用户Token','cmii-uav-device','/api/uav/permission/user/getUavFreeTokenByCode','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-10-11 01:36:46',NULL),(218686101785673728,'API_dd49c05d52607d775525836a8b3b15bf','模糊查詢游客列表','','cmii-uav-device','/api/uav/devAllocate/queryVisitorList','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-10-11 01:36:47',NULL),(218686103706664960,'API_d03e108b238192592ee649a23a974313','模糊查询公司所属的设备号列表','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-10-11 01:36:53',NULL),(218686104033820672,'API_fbbd4ef17066a99a51693c642748652a','env','','cmii-uav-device','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-10-11 01:36:52',NULL),(224126424296980480,'API_1292d5a7bbfa8b1852c5190453a5c8ec','配置租户的时间','','cmii-admin-user','/tenant/config/tenantTime','POST',_binary '\0',_binary '\0','2022-03-30 03:18:24',1,'2024-09-09 09:14:20',NULL),(224126424385060864,'API_91ad995dd28c302c4fb839e0129866f4','获取租户的时间','','cmii-admin-user','/tenant/config/getTenantTime','GET',_binary '\0',_binary '\0','2022-03-30 03:18:24',1,'2024-09-09 09:14:18',NULL),(224126433864187904,'API_d943f1daf6f5cd7b1d6e697111eeb361','getDocumentation','','cmii-admin-user','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:17',NULL),(224126433931296768,'API_fb5398a6e4572330369f788ffc3a19eb','uiConfiguration','','cmii-admin-user','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:17',NULL),(224126433994211328,'API_1b807cafc277cdfaaaf8042378ff5f36','swaggerResources','','cmii-admin-user','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:20',NULL),(224126434052931584,'API_b720183584a0b124c40a464e63088e00','securityConfiguration','','cmii-admin-user','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:16',NULL),(224126434124234752,'API_57013716563634738503099987316004','getDocumentation','','cmii-admin-user','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:16',NULL),(224126439539081216,'API_da7c6dc8eeb3f5670a407941f7834e2f','list文档','','cmii-uav-developer','/docs/docList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-10-09 19:48:36',NULL),(224126440256307200,'API_41bc8ca9a144d26b13cc4a7d2b7359fe','接口版本列表','','cmii-uav-developer','/admin/interfaceVersion/infVersionList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-10-09 19:48:33',NULL),(224126440315027456,'API_8995fce1018309eeb7dc4a4a189250ee','创建接口版本','','cmii-uav-developer','/admin/interfaceVersion/createInfVersion','POST',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-10-09 19:48:37',NULL),(224126440382136320,'API_45f7b3d54a030265f2ceab99dbd5c0e4','设置接口版本号','','cmii-uav-developer','/admin/interfaceVersion/updateInfVersion','PUT',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-10-09 19:48:36',NULL),(224126440507965440,'API_746aa4cfdd14c54412de1adea26fbfe7','查询所有实体','','cmii-uav-developer','/admin/model/all','GET',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-10-09 19:48:37',NULL),(224126440579268608,'API_fc680a6f0031ec8c2610c94a05a2a942','批量删除实体','','cmii-uav-developer','/admin/model/deleteBatch','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:34',NULL),(224126440642183168,'API_a94c2bfb2e49ac38b2baed4bc3079b9c','获取实体详细信息','','cmii-uav-developer','/admin/model/getModelDetail','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:35',NULL),(224126440696709120,'API_4e13e554c9dfd5c9085a892abf5059a2','添加实体','','cmii-uav-developer','/admin/model/add','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:34',NULL),(224126440751235072,'API_b5245afafad959bf0e12e0269a4915ea','更新实体','','cmii-uav-developer','/admin/model/update','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:35',NULL),(224126440822538240,'API_6224629a874192092fe10bdd1c40c30c','删除实体','','cmii-uav-developer','/admin/model/delete','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:35',NULL),(224126441057419264,'API_ce46b4b0ac7b98600ad3055d07159c2a','实体分页查询','','cmii-uav-developer','/admin/model/query','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:35',NULL),(224126441124528128,'API_cc0ebd201a03ce5407d81ff01aa6d914','配置接口','','cmii-uav-developer','/admin/params/configInterface','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:33',NULL),(224126441208414208,'API_0357d4e6d07f60589b0c557a97dd7eed','根据参数的请求类型,获取参数支持的属性类型','','cmii-uav-developer','/admin/params/getTypesByParamType','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:33',NULL),(224126441267134464,'API_79787b41513103d1fffe97754ba2483e','查询脱敏规则','','cmii-uav-developer','/admin/params/getBlurRuleList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:36',NULL),(224126441321660416,'API_2fa3e7777c1eb125281f29b4b7603194','查询支持的文件类型','','cmii-uav-developer','/admin/params/getFileTypeList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:36',NULL),(224126441422323712,'API_dbf5049ee7059051b6442a537091b1a1','根据属性类型,获取属性的限制类型','','cmii-uav-developer','/admin/params/getLimitsByPropertyType','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:35',NULL),(224126441489432576,'API_9dde8401eb675a61e6b175d0739e62e9','根据接口版本ID,获取接口配置','','cmii-uav-developer','/admin/params/getParamsConfigByVerId','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:34',NULL),(224126443121016832,'API_8423ec956c78748a978026a1d25f1e35','更新接口缓存数据','','cmii-uav-developer','/admin/interface/refresh','PUT',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:35',NULL),(224126443313954816,'API_5f7969e918879b1d63588a1eda7a629b','删除开放的接口版本','','cmii-uav-developer','/admin/interface/deleteInfVer','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:33',NULL),(224126443884380160,'API_53cad9336d53101f65fb413acd494f71','接口详情,版本列表V2','','cmii-uav-developer','/admin/interface/v2/infVersionList','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:35',NULL),(224126444131844096,'API_e36cf979b48bc8e24c352da1278af7bb','新建接口V2','','cmii-uav-developer','/admin/interface/v2/createOpenInf','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:33',NULL),(224126444194758656,'API_cf1f836a84a786cd42b68b58066af1f1','查询接口列表V2','','cmii-uav-developer','/admin/interface/v2/openInfList','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:33',NULL),(224126444253478912,'API_cce99bfe756e8843fcb8ccb477e4137b','查询内部接口标识','','cmii-uav-developer','/admin/interface/v2/infCodeList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:36',NULL),(224126444308004864,'API_8feca655b4122c74026e30adc3e600b9','查询接口详情v2','','cmii-uav-developer','/admin/interface/v2/interfaceDetail','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:36',NULL),(224126444375113728,'API_5e7cfc3ea11272d3a3d4171d9e95e009','删除接口','','cmii-uav-developer','/admin/interface/v2/deleteInf','DELETE',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:33',NULL),(224126444438028288,'API_0f61ba4cdb647adbf6a4a3315fe1e897','接口状态设置','','cmii-uav-developer','/admin/interface/v2/updateInfStat','PUT',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-10-09 19:48:33',NULL),(224126444966510592,'API_e9e7a4bcef30ff2050f4aef145c07143','获取接口未开放的版本列表','','cmii-uav-developer','/admin/interface/','GET',_binary '\0',_binary '\0','2022-03-30 03:18:29',1,'2024-10-09 19:48:33',NULL),(224126449018208256,'API_270e242bc9177247d4881d8df556376b','ping','','cmii-uav-developer','/cmii/ping','',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2022-07-25 08:10:21',NULL),(224126449097900032,'API_4a304bb83ea60c25198a7df81c9a90b6','health','','cmii-uav-developer','/cmii/health','',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2022-07-25 08:10:21',NULL),(224126449311809536,'API_4c4b0e3590f8e3fa419fdc149bcab38f','getDocumentation','','cmii-uav-developer','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-10-09 19:48:34',NULL),(224126449362141184,'API_28f30e7f05f61b08f1902d5b0df0716d','uiConfiguration','','cmii-uav-developer','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-10-09 19:48:35',NULL),(224126449416667136,'API_97f727abdbf178811c77965790a30a9b','swaggerResources','','cmii-uav-developer','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-10-09 19:48:34',NULL),(224126449622188032,'API_690c6d944d234ed45403f281c515f8b3','securityConfiguration','','cmii-uav-developer','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-10-09 19:48:36',NULL),(224126449685102592,'API_c5f007cc65bdbcbd5c3a29e4a903f528','getDocumentation','','cmii-uav-developer','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-10-09 19:48:35',NULL),(224126489325469696,'API_6119ee0b87e868a20c9e08899357e6d7','getQuotaInfoUseByType','','cmii-uav-user','/client/quota/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-03-30 03:18:39',1,'2022-04-25 02:50:18',NULL),(224126491607171072,'API_284e320c6a841710d98e01292da09c18','getDocumentation','','cmii-uav-user','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-10-11 15:37:14',NULL),(224126491728805888,'API_728b8c57db4c6c0b705d5530ac9a9511','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-10-11 15:37:15',NULL),(224126491787526144,'API_05f507cccc8b8e92bd008fc09d4c71ce','swaggerResources','','cmii-uav-user','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-10-11 15:37:11',NULL),(224126491858829312,'API_6dbae71c90d3b3330ff3cbdcd488fdff','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-10-11 15:37:11',NULL),(224126491913355264,'API_4557b0cbb4b7d06a2eab089c66cc0c7e','getDocumentation','','cmii-uav-user','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-10-11 15:37:17',NULL),(224126523731345408,'API_409093c7159def23cec4d0055fd04d04','getDocumentation','','cmii-uav-logger','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-10-15 02:44:47',NULL),(224126523798454272,'API_b18a9fe72e9a7d19d9e5a57da928c016','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-10-15 02:44:48',NULL),(224126523869757440,'API_97dce13d5d2d27ead51a858ba3739145','swaggerResources','','cmii-uav-logger','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-10-15 02:44:47',NULL),(224126523941060608,'API_3a3e4f9b7f08645f3974540b65c204c9','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-10-15 02:44:48',NULL),(224126524087861248,'API_75ab987af8c4c64c61b7a38949275afb','getDocumentation','','cmii-uav-logger','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-10-15 02:44:48',NULL),(224126562805481472,'API_5d01133a91598b434cf3ffce3baf9550','获取回放AI视频token','获取回放AI视频token接口','cmii-uav-cloud-live','/client/live/playbackAi/token','POST',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:38',NULL),(224126562872590336,'API_7cfc25f15a47c4567c5d1bbae53690f3','获取回放AI视频token列表','获取回放AI视频token列表接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens','POST',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:36',NULL),(224126565586305024,'API_a15968b980c85a0ff2c44091096ae066','getDocumentation','','cmii-uav-cloud-live','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:37',NULL),(224126565657608192,'API_f78d3ef6fc559f0a6dfcfe7b80751af4','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:38',NULL),(224126565707939840,'API_686c9a27044cbeb2e932628006b22022','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:36',NULL),(224126565749882880,'API_871a9156aa421a1b37b481fdf8fb936f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:37',NULL),(224126565808603136,'API_e0a09b08d3699ce5a5c4d6d8e487c541','getDocumentation','','cmii-uav-cloud-live','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:33',NULL),(234264837402656768,'API_4f3edd9a9b52293c8274039d18a15002','重载业务参数','','cmii-uav-alarm','/api/uav/alarm/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-11 05:48:26',NULL),(234264838610616320,'API_7c1f11ca6aa894a3225f9a8d4145c557','getDocumentation','','cmii-uav-alarm','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-11 05:48:27',NULL),(234264838673530880,'API_e0be1e447ee76257d0a1e151fc603fd5','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-11 05:48:26',NULL),(234264838761611264,'API_9111eef1a24129edea603beca94e3e02','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-11 05:48:25',NULL),(234264838828720128,'API_57166349726e8361c53f41e89d093ff3','swaggerResources','','cmii-uav-alarm','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-11 05:48:25',NULL),(234264838900023296,'API_71c9b1d72ea78199e17cc83a875f9aa6','getDocumentation','','cmii-uav-alarm','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-11 05:48:24',NULL),(234264840103788544,'API_ed54eecf59da12c360a0c7769a36dd26','获取GPS坐标地址信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeo','POST',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-09-09 09:14:43',NULL),(234264841840230400,'API_c9409405699c91590c7dabf9e63db87d','文件导入字典明细','','cmii-admin-data','/api/admin/dictionary/fileImport','POST',_binary '\0',_binary '\0','2022-04-27 02:44:51',1,'2024-09-09 09:14:43',NULL),(234264841915727872,'API_f19dff044b68e536ce8df43f8dac84dd','文件导出字典明细','','cmii-admin-data','/api/admin/dictionary/fileExport','GET',_binary '\0',_binary '\0','2022-04-27 02:44:51',1,'2024-09-09 09:14:45',NULL),(234264848936992768,'API_c3afa707108b58d9cb6b68ae5c7ed283','根据无人机类型查询设备类型匹配列表','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchListByUav','GET',_binary '\0',_binary '\0','2022-04-27 02:44:52',1,'2024-09-09 09:14:46',NULL),(234264852187578368,'API_4cb882103bc6f97c2fe3c31dfb8eb6c8','getDocumentation','','cmii-admin-data','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-09-09 09:14:45',NULL),(234264852300824576,'API_47a8e3e0d37ca77be1ac9934fe039256','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-09-09 09:14:46',NULL),(234264852363739136,'API_f6bb5dd6d167aecdf23c473da3dfd63d','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-09-09 09:14:46',NULL),(234264852435042304,'API_e0c615762e25ee05a6397222aefe8457','swaggerResources','','cmii-admin-data','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-09-09 09:14:46',NULL),(234264852539899904,'API_6b0dd054428ea6530ce4a388e6d0fb3e','getDocumentation','','cmii-admin-data','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-09-09 09:14:45',NULL),(234264859359838208,'API_8024ca66cad2d32c3909c279f0f322d1','新增角色并授权资源组','','cmii-admin-user','/api/admin/role/addAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:17',NULL),(234264859569553408,'API_e18aa877282e0ae8b6674a142eecc980','修改角色并授权资源组','','cmii-admin-user','/api/admin/role/updateAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:18',NULL),(234264860265807872,'API_a5e350719597b399b228d220bda2f9ae','查询权限组详细列表','','cmii-admin-user','/api/admin/group-template/list','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:18',NULL),(234264860362276864,'API_d246a9e5572ae8b0d15770ad42e5a30a','添加演示模板','','cmii-admin-user','/api/admin/group-template/add','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:19',NULL),(234264860483911680,'API_d720c8370f830a21087b30e86313a0a4','根据编码导出资源信息XML','','cmii-admin-user','/api/admin/resource/syncExportResourceXML','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:21',NULL),(234264860597157888,'API_2e86d7de9693e84679d52d2cfbce9245','根据编码导入资源信息XML','','cmii-admin-user','/api/admin/resource/syncImportResourceXML','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:19',NULL),(234264861138223104,'API_3bca44ef334d75c7e1b30cfc004f2dcd','给资源组赋予菜单按钮','','cmii-admin-user','/api/admin/group/authorityResource','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861188554752,'API_37ce1ac8668582c284c35e3220b2ddc6','查询权限组树型结构','','cmii-admin-user','/api/admin/group/trees','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:19',NULL),(234264861339549696,'API_5c00bbfebb8e6a778c97dae9c94c4f00','查询权限组详细列表','','cmii-admin-user','/api/admin/group/list','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:17',NULL),(234264861423435776,'API_386306a920863cf94e374135813339a2','查询权限组资源树型结构','','cmii-admin-user','/api/admin/group/resourceTrees','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861498933248,'API_7f8c523b6ab803a8b6db4f36017ac179','查找出未选择的权限组','','cmii-admin-user','/api/admin/group/dependsUnChecked','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861587013632,'API_b44088b97a9aaec6cf9eb9ae4d275d8d','管理员获取全平台的所有权限组树','','cmii-admin-user','/api/admin/group/queryAllPlatformsResourceGroupTreeForAdmin','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:17',NULL),(234264861649928192,'API_884588d7a38d2eac5329928e6503011d','获取某个角色的全平台权限组树','','cmii-admin-user','/api/admin/group/queryAllPlatformsResourceGroupTreeForRole','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861729619968,'API_9ab5b97158233ebcbd4854b4664e26bd','获取某个用户的全平台权限组树','','cmii-admin-user','/api/admin/group/queryAllPlatformsResourceGroupTreeForUser','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:18',NULL),(234264865366081536,'API_815e605ea70a685c166a0ba5b58c26bf','查询按钮,菜单所属的资源组集合','','cmii-admin-user','/api/admin/resource/queryResouceGroups','GET',_binary '\0',_binary '\0','2022-04-27 02:44:56',1,'2024-09-09 09:14:18',NULL),(234264867345793024,'API_f822bf4437d536e9df9cbc321bfd3622','数据权限升级','','cmii-admin-user','/api/uav/group-sync/dbMygration','PUT',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:20',NULL),(234264867387736064,'API_3337904b21bed1b42ee50552a11b5f5f','导出权限组,权限组与资源的关系XML','','cmii-admin-user','/api/uav/group-sync/syncExportGroupsAndGroupResourceMappingXML','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867438067712,'API_09a7eaf7f593610102affae7135ee205','导入权限组,权限组与资源的关系XML','','cmii-admin-user','/api/uav/group-sync/syncImportGroupsAndGroupResourceMappingXML','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867500982272,'API_7b17a2167f29db04b95eae0502c37644','同步资源组与资源的映射关系','','cmii-admin-user','/api/uav/group-sync/syncGroupsAndGroupResourceMapping','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:21',NULL),(234264867580674048,'API_4b64582818ddc5776401e2f9505acda2','导出资源组模板','','cmii-admin-user','/api/uav/group-sync/syncExportGroupTemplatesXML','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867761029120,'API_3116f3e564725e8992fd661204c4e1eb','导入资源组模板','','cmii-admin-user','/api/uav/group-sync/syncImportGroupTemplatesXML','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867819749376,'API_2d33d02a7af0a801320c4671e7f2ae5f','多环境之间同步资源组模板','','cmii-admin-user','/api/uav/group-sync/syncGroupTemplates','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:17',NULL),(234264869677826048,'API_68753bdacc315e6581975c33647880e7','查詢包括子公司的设备列表','','cmii-uav-device','/api/uav/dev/queryDeviceList','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:52',NULL),(234264869749129216,'API_2aaaede1b5563b0a4fa5c87d5059c072','新增设备','','cmii-uav-device','/api/uav/dev/addDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:44',NULL),(234264869824626688,'API_f333962bf1352ae3f443309395496c10','修改设备','','cmii-uav-device','/api/uav/dev/updateDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:45',NULL),(234264869895929856,'API_5164cba6d601963304a354d348afc6ec','删除设备','','cmii-uav-device','/api/uav/dev/deleteDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:46',NULL),(234264869996593152,'API_8652cf7850b6724027c40bd1f128b3c1','批量删除设备','','cmii-uav-device','/api/uav/dev/deleteDevBatch','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:45',NULL),(234264870046924800,'API_841b6fca6859d319a9b08c93ec1f5e43','无人机实例总数接口','','cmii-uav-device','/api/open/plane/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:43',NULL),(234264870168559616,'API_07a9053b3d7e250fc90ebc87ec5fceab','无人机实例总数接口','','cmii-uav-device','/api/open/planeArea','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:42',NULL),(234264870218891264,'API_8c2b4339a58ddd7961bfcef40afd52cf','修改仓库','','cmii-uav-device','/api/uav/house/updateHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-10-11 01:36:44',NULL),(234264870290194432,'API_0d92af5e0d766243ee4b1e58cdc684d5','删除仓库','','cmii-uav-device','/api/uav/house/deleteHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-10-11 01:36:49',NULL),(234264870336331776,'API_fb599dc78672805305ea6002de13ce45','仓库关联设备信息','','cmii-uav-device','/api/uav/house/queryHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-10-11 01:36:45',NULL),(234264870382469120,'API_458baa7426dc09bc3a1327579edded9a','仓库可关联设备信息','','cmii-uav-device','/api/uav/house/queryValHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-10-11 01:36:49',NULL),(234264870441189376,'API_6a5a45853293d08ba87ac3827cbcf66a','查詢包括子公司的仓库列表','','cmii-uav-device','/api/uav/house/queryHouseList','GET',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-10-11 01:36:49',NULL),(234264870499909632,'API_9c0f321db584d3d813a281f25cfe2df3','新增仓库','','cmii-uav-device','/api/uav/house/addHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-10-11 01:36:47',NULL),(234264871040974848,'API_7bb2b50110c6fb4815372f2bdcba0134','统计子公司范围内的设备(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCount','GET',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-10-11 01:36:47',NULL),(234264873897295872,'API_a086ecddc9771b681e4061815fbb8e63','重载业务参数','','cmii-uav-device','/api/uav/plane/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-10-11 01:36:51',NULL),(234264876963332096,'API_2ca0106de89e47edf77400b05936d135','取消设备绑定','','cmii-uav-device','/api/uav/dev/unBoundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:59',1,'2024-10-11 01:36:50',NULL),(234264877013663744,'API_479f78171081bed9faca2e8ca745fe6b','绑定设备列表查询','','cmii-uav-device','/api/uav/dev/queryBoundBydevCode','GET',_binary '\0',_binary '\0','2022-04-27 02:44:59',1,'2024-10-11 01:36:47',NULL),(234264877063995392,'API_ef7895bb33af75327d8df6695c0e64da','添加设备绑定','','cmii-uav-device','/api/uav/dev/boundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:59',1,'2024-10-11 01:36:46',NULL),(234264880138420224,'API_f78c01a72c762ad505c90da48cd93402','getDocumentation','','cmii-uav-device','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-10-11 01:36:43',NULL),(234264880213917696,'API_5977f2474e6ec130e76828bfd7286930','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-10-11 01:36:43',NULL),(234264880260055040,'API_54fd717c1af7b96a999fff84fe3276d7','swaggerResources','','cmii-uav-device','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-10-11 01:36:50',NULL),(234264880331358208,'API_5fbdf0b1cdd87a9fd62f3e44742b385e','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-10-11 01:36:51',NULL),(234264880415244288,'API_a3a532a479e924acb0242a6b717c61cd','getDocumentation','','cmii-uav-device','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-10-11 01:36:42',NULL),(234264891148468224,'API_9e5344b5c9206e194df69db441b96aba','查询平台最近12月每月飞行时长接口','查询平台最近12月每月飞行时长接口','cmii-uav-developer','/oapi/mission/fly_duration/month/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:02',1,'2024-10-09 19:48:37',NULL),(234264891484012544,'API_5489b92f3747a4648bf1ae9d7616c301','查询无人机实例总数接口','设备统计接口','cmii-uav-developer','/oapi/device/uav/plane/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-09 19:48:36',NULL),(234264891605647360,'API_9c165b372d9b928ce3a71760b2f1a3f6','查询无人机分布情况','查询无人机分布情况','cmii-uav-developer','/oapi/device/uav/plane/area/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-09 19:48:33',NULL),(234264892830384128,'API_24b5d6948b9b84d40e1108b37cfd0129','查询平台基础指标接口','查询平台基础指标接口','cmii-uav-developer','/oapi/basic/plat/bizInfo/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-09 19:48:35',NULL),(234264893103013888,'API_812e133c8be265452d6599f47f411f71','查询平台最近12月每月无人机作业执行次数','查询平台最近12月每月无人机作业执行次数','cmii-uav-developer','/oapi/mission/job/month/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-09 19:48:34',NULL),(234264893157539840,'API_a54fc0df96ba7af30b688e1d48030d78','查询每款无人机对应作业执行次数','查询每款无人机对应作业执行次数','cmii-uav-developer','/oapi/mission/job/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-09 19:48:33',NULL),(234264894092869632,'API_f08af7cadbcf20737dba8ea8bd780fd3','用户数概况(总用户数&在线用户数)','','cmii-uav-developer','/api/open/user/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2023-11-25 14:12:58',NULL),(234264908202508288,'API_5574ca8695086e09a34dc22ddec566a8','新增角色并授权资源组','','cmii-uav-user','/api/uav/role/addAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:13',NULL),(234264908433195008,'API_b37d58bf331f4f76dc7b19c2f0c8401a','修改角色并授权资源组','','cmii-uav-user','/api/uav/role/updateAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:11',NULL),(234264909221724160,'API_1840f89179ef93cd9a6550c61c0a2b32','查询某公司有效角色的列表','','cmii-uav-user','/api/uav/role/queryOneCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:18',NULL),(234264909695680512,'API_093f51549470c1f5d78593100e7ff71b','查询组织已用配额','','cmii-uav-user','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:09',NULL),(234264910861697024,'API_53146fed117f8c89cc11e8a012c97b69','查找出未选择的权限组','','cmii-uav-user','/api/uav/group/dependsUnChecked','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:16',NULL),(234264910907834368,'API_a7a4ccbfd3aff2d60b958ce3355e4bf7','管理员获取全平台的所有权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForAdmin','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:14',NULL),(234264910974943232,'API_32475e5852084a6f2a18e9277bf161cd','获取某个角色的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForRole','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:19',NULL),(234264911063023616,'API_949caf693b72457471529fc1a359c6aa','获取自己所在公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForMyCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:12',NULL),(234264911146909696,'API_01fd6de539cb9f9aa5668922a0ace4ff','查询权限组详细列表','','cmii-uav-user','/api/uav/group/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:19',NULL),(234264911188852736,'API_74db49217ba70f4dd0bd402d840bb72c','给资源组赋予菜单按钮','','cmii-uav-user','/api/uav/group/authorityResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:15',NULL),(234264911272738816,'API_88de3838653107ec360b2c7b17e3c12c','查询权限组资源树型结构','','cmii-uav-user','/api/uav/group/resourceTrees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:18',NULL),(234264911335653376,'API_e7d98c8b1405680df0a72fd712e57290','查询权限组树型结构','','cmii-uav-user','/api/uav/group/trees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:10',NULL),(234264911394373632,'API_107f9069a3f501b65fdfcd791c0062dc','获取某个用户的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForUser','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:17',NULL),(234264911469871104,'API_7eed6e744998919c9c8231c58069ee2f','获取某个公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:10',NULL),(234264911524397056,'API_706b176b853fc3850409aed6aca58d40','分页查询公司的子公司','','cmii-uav-user','/api/uav/org/pageChildrenCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:10',NULL),(234264911587311616,'API_94ab3b50003fb911a0ac2c2bcf2f7d9f','分页查询公司树型结构','','cmii-uav-user','/api/uav/org/pageCompanyTree','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:18',NULL),(234264911650226176,'API_d590165e9ffcba5c3ab549087a8517a5','查询公司的子孙公司(包括自己公司)','','cmii-uav-user','/api/uav/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:13',NULL),(234264911797026816,'API_9ab9fe4b26b4c290781e3796906f7af0','查询自己公司的子孙公司,普通管理员仅自己公司','','cmii-uav-user','/api/uav/org/company_scopes','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:11',NULL),(234264911956410368,'API_433629c1f4512e6f7cfd5e45efc0d848','查询公司的子孙公司(不包括自己公司)','','cmii-uav-user','/api/uav/org/descendants','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:08',NULL),(234264912040296448,'API_fa8e6a48b33398f42e01ba89b8434a0e','查询公司所在的族谱,所在树的全部节点','','cmii-uav-user','/api/uav/org/genealogy','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:18',NULL),(234264912577167360,'API_96c010936d0212bc2e6a96ae0df4c9c1','查询公司性质列表','','cmii-uav-user','/api/uav/org/companyNatures','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 15:37:18',NULL),(234264914015813632,'API_1e7067f999bef83d2f1006ae1ae356a0','查询按钮,菜单所属的资源组集合','','cmii-uav-user','/api/uav/resource/queryResouceGroups','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 15:37:11',NULL),(234264915022446592,'API_09572688f3ed468db68e104ac7e6ac99','根据资源id,获取所有的父资源','','cmii-uav-user','/api/uav/resource/queryParentsById','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 15:37:16',NULL),(234264915290882048,'API_46cdaf99ebad4e635a0b5b61fb509c50','根据编码导出资源信息XML','','cmii-uav-user','/api/uav/resource/syncExportResourceXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 15:37:15',NULL),(234264915362185216,'API_8a2fcdbeba25a9f8e605f78da7b668fa','根据编码导入资源信息XML','','cmii-uav-user','/api/uav/resource/syncImportResourceXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 15:37:08',NULL),(234264915429294080,'API_eababd8d641858ec0dc94a96b119fc2e','菜单资源同步XML','','cmii-uav-user','/api/uav/resource/syncResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 15:37:17',NULL),(234264916595310592,'API_aafaa3624ccfca4434946824ffa8c688','获取公司gis信息','','cmii-uav-user','/api/uav/user/profile/companyGisInfo','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 15:37:20',NULL),(234264917966848000,'API_52c1eb609c16345d337004d08500ee34','测试List对象','','cmii-uav-user','/api/uav/uavTestPO/listObject','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 15:37:12',NULL),(234264918059122688,'API_9e55f6b9c8d021b29c831f91df9688fa','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/listInt','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 15:37:16',NULL),(234264918122037248,'API_0138862efbd1381847bc149173fadfb1','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/int','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 15:37:12',NULL),(234264918193340416,'API_7c46c892a835c386f5491d57086e1b78','testPath','','cmii-uav-user','/api/uav/uavTestPO/testPath','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 15:37:18',NULL),(234264918994452480,'API_e7a568f15bc9f756091c84492f47d320','查询某公司的用户列表','','cmii-uav-user','/api/uav/user/findOneCompanyPage','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 15:37:12',NULL),(234264920634425344,'API_40a85440b0431a8aaf4ce0266653f075','新建&更新组织最大可用配额查询接口','','cmii-uav-user','/api/admin/system/quota/getMaxQuotaInfo','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:09',NULL),(234264920814780416,'API_d25daf1a7f47e18058fddb9cfd58fd95','导出权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncExportGroupsAndGroupResourceMappingXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:17',NULL),(234264920860917760,'API_342d642b2fa1a417bb82509b6ae66a30','导出资源组模板','','cmii-uav-user','/api/uav/group-sync/syncExportGroupTemplatesXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:19',NULL),(234264920953192448,'API_5525d2fef1a7dfd03ce6ae26df0aa195','导入资源组模板','','cmii-uav-user','/api/uav/group-sync/syncImportGroupTemplatesXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:14',NULL),(234264920995135488,'API_bf0b1ee8a98d585edee95dafee344142','多环境之间同步资源组模板','','cmii-uav-user','/api/uav/group-sync/syncGroupTemplates','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:16',NULL),(234264921049661440,'API_5ea94a0889354836cbd1cc9f3b672ad6','更新rootId为空的公司','','cmii-uav-user','/api/uav/group-sync/correctCompanyRootId','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:12',NULL),(234264921108381696,'API_1adca4c2f75642b528e15166f4d0525a','数据权限升级','','cmii-uav-user','/api/uav/group-sync/dbMygration','PUT',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:16',NULL),(234264921154519040,'API_dc1325fbbf764825474bdab8eb1f82ba','导ru权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncImportGroupsAndGroupResourceMappingXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:16',NULL),(234264921213239296,'API_60b09fb94ce3496ff90a4857ef89785b','同步资源组与资源的映射关系','','cmii-uav-user','/api/uav/group-sync/syncGroupsAndGroupResourceMapping','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:08',NULL),(234264921787858944,'API_4ba19a8bb7bd5f99724b7e66a55b2495','查询权限组所有详细列表','','cmii-uav-user','/api/uav/group-template/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:17',NULL),(234264921867550720,'API_581fdd0ea099d6547069e61de1c5a5cf','添加演示模板','','cmii-uav-user','/api/uav/group-template/add','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:17',NULL),(234264922052100096,'API_80ea13663650435d1a73ce828652d6bd','查询组织已使用配额信息','','cmii-uav-user','/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:17',NULL),(234264922102431744,'API_827bb9e60c72d56401c772a130934563','用户数概况(总用户数&在线用户数)','','cmii-uav-user','/api/open/user/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:14',NULL),(234264923218116608,'API_de4d740768d7847768e4bb45baa338c4','根据公司范围查询公司的用户列表','','cmii-uav-user','/user/queryByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:12',NULL),(234264923318779904,'API_76874d731f956a8bc21b90b4c151995d','根据公司范围,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:18',NULL),(234264923373305856,'API_92a248782383d5a4151df2f079f62979','根据公司范围,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId/namePhoneScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:13',NULL),(234264923880816640,'API_4153d0d6ef5046411dedba0a0434135c','获取公司集合','','cmii-uav-user','/clients/org/queryByIds','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:16',NULL),(234264923947925504,'API_2fff43c8902b7f5982987580fc098270','获取公司的子孙公司包括自己','','cmii-uav-user','/clients/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-10-11 15:37:09',NULL),(234272917049835520,'API_3c48518686f7e3bc1485eb1aff1e2ff9','获取回放视频token1','获取回放视频token1接口','cmii-uav-cloud-live','/client/live/playback/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-10-12 09:42:38',NULL),(234272917205024768,'API_d25e1e1c0fa3f13e191c801e18d8941d','获取回放AI视频token1','获取回放AI视频token1接口','cmii-uav-cloud-live','/client/live/playbackAi/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-10-12 09:42:36',NULL),(234272918429761536,'API_732ef4f6817583a25459c7fb874f5b5a','获取视频流存储信息','','cmii-uav-cloud-live','/video/storage/getStorageInfo','GET',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-10-12 09:42:34',NULL),(237976515927605248,'API_b5203cfafccff79ddd6ef3658a490aa8','获取回放AI视频token列表1','获取回放AI视频token列表1接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens1','POST',_binary '\0',_binary '\0','2022-05-07 08:33:43',1,'2024-10-12 09:42:32',NULL),(244499731286327296,'API_62f98911a42248cb190b4b166d58e354','查询公司/机构范围的无人机名称列表','','cmii-uav-device','/api/uav/plane/queryUavNameByCompanyId','GET',_binary '\0',_binary '\0','2022-05-25 08:34:39',1,'2024-10-11 01:36:54',NULL),(244499732867579904,'API_cb3d59b848074a115a1e0c7cc26a5eac','查询公司范围下的在线无人机,返回map','','cmii-uav-device','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:39',1,'2024-10-11 01:36:44',NULL),(244499734151036928,'API_5650997fb36ac4227d6dab55afac6050','查询不同时间段所有的无人机行时长','','cmii-uav-device','/api/uav/plane/queryAllFlyTotal','GET',_binary '\0',_binary '\0','2022-05-25 08:34:39',1,'2024-10-11 01:36:42',NULL),(244499736898306048,'API_142e6a2f1b1c5821b138d6c39e1cff7b','模糊查询包括子公司的仓库列表','','cmii-uav-device','/api/uav/plane/queryHouse','GET',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-10-11 01:36:53',NULL),(244499753054765056,'API_64415b4d0e44e202dda0581a0ebbd77b','获取GPS坐标地址列表信息,地址数不能超过200个[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeos','POST',_binary '\0',_binary '\0','2022-05-25 08:34:44',1,'2024-09-09 09:14:42',NULL),(244500019200131072,'API_a1ef2aa9d6c09ba78cbd8bfa1442dec4','上报设备位置','上报设备位置','cmii-uav-cloud-live','/client/live/stream/reportPosition','POST',_binary '\0',_binary '\0','2022-05-25 08:35:47',1,'2024-10-12 09:42:32',NULL),(244500019556646912,'API_4a29f59c53ba76b36ba5785cac04774d','上报视频流事件','上报视频流事件','cmii-uav-cloud-live','/client/live/stream/reportVideoEvent','POST',_binary '\0',_binary '\0','2022-05-25 08:35:47',1,'2024-10-12 09:42:31',NULL),(244500032932282368,'API_8fac5b9b410c904a26af1fae7b53263a','视频数据回放-获取视频片段列表','视频数据回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/videoList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:50',1,'2024-10-12 09:42:33',NULL),(244500033217495040,'API_1fa6f8a0787d98b0718a18520a5835c3','视频数据回放-播放M3U8文件','视频数据回放-播放M3U8文件','cmii-uav-cloud-live','/public/his/videoPlay/playM3u8','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-10-12 09:42:31',NULL),(244500033842446336,'API_96d29c6f9142d88a2c5d0673bad041f4','视频数据回放-获取Token','视频数据回放-获取Token','cmii-uav-cloud-live','/video/playback/createToken','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-10-12 09:42:38',NULL),(244500034182184960,'API_4a4413b74f7ea53fa4a81a79abbf5cce','视频数据回放-获取设备编号列表','视频数据回放-获取设备编号列表','cmii-uav-cloud-live','/video/playback/getDeviceList','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-10-12 09:42:32',NULL),(244500034513534976,'API_cb47492784522c21d3ca7e46dd3749ab','视频数据回放-生成回放片段','视频数据回放-生成回放片段','cmii-uav-cloud-live','/video/playback/generateList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-10-12 09:42:31',NULL),(244500034597421056,'API_9230ba3e7a8a8507a4a6e378159067a6','视频数据回放-生成回放片段2','视频数据回放-生成回放片段2','cmii-uav-cloud-live','/video/playback/generateList2','POST',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-10-12 09:42:39',NULL),(244500034828107776,'API_f2daace874086ea979701b88fb223f39','视频数据回放-获取视频数据日期分布','视频数据回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/getDataDistribution','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-10-12 09:42:38',NULL),(249490599617495040,'API_f80c802fef4e5f571069e5c95206e99c','根据无人机code列表查询无人机名称详情','','cmii-uav-device','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-08 03:06:34',1,'2024-10-11 01:36:52',NULL),(249490607842525184,'API_467888d231fd342e1091a6bec97d4344','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-device','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:36',1,'2024-10-11 01:36:53',NULL),(249490698166861824,'API_538a5f3c59889aa1c96a2776b001b4b5','视频数据回放-获取设备编号名称列表','视频数据回放-获取设备编号名称列表','cmii-uav-cloud-live','/video/playback/getDeviceInfoList','GET',_binary '\0',_binary '\0','2022-06-08 03:06:58',1,'2024-10-12 09:42:32',NULL),(249916736613122048,'API_a7564eea3f085d0f3580037297f7cb23','视频数据回放-获取无人机坐标','视频数据回放-获取无人机坐标','cmii-uav-cloud-live','/video/playback/getPlanePosition','GET',_binary '\0',_binary '\0','2022-06-09 07:19:53',1,'2024-10-12 09:42:36',NULL),(249916736701202432,'API_af222ac23f8ce4c94137d994714ec5d6','视频数据回放-更新视频坐标','视频数据回放-更新视频坐标','cmii-uav-cloud-live','/video/playback/updateVideoAddress','GET',_binary '\0',_binary '\0','2022-06-09 07:19:53',1,'2024-10-12 09:42:34',NULL),(260412139431264256,'API_81c1e08421ec5908880a0d858f65a383','飞手-新增飞手信息','飞手-新增飞手信息','cmii-uav-user','/flyer/addFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:10',NULL),(260412139494178816,'API_85eb4f45e9968afe2a983c95ebcd8858','飞手-编辑飞手信息','飞手-编辑飞手信息','cmii-uav-user','/flyer/updateFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:12',NULL),(260412139544510464,'API_bdccda43feeb0bd3450fa97882968d44','飞手-分页查询飞手信息','飞手-分页查询飞手信息','cmii-uav-user','/flyer/queryPageFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:09',NULL),(260412139615813632,'API_910d5ed8cccbe03c2627d001dd126e6b','飞手-注销飞手信息','飞手-注销飞手信息','cmii-uav-user','/flyer/cancellationFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:08',NULL),(260412139687116800,'API_e9ad7513848fe2abf3898c8893766e01','飞手数据字典-查询合格证等级','飞手数据字典-查询合格证等级','cmii-uav-user','/flyer/queryCertificateLevel','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:20',NULL),(260412139737448448,'API_ff107246c0528de2d6e8ca2611de5659','飞手数据字典-查询飞手违规类型','飞手数据字典-查询飞手违规类型','cmii-uav-user','/flyer/queryViolationType','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:16',NULL),(260412139787780096,'API_f6d98f98ddf021b4e68e5ee6cf485f29','飞手数据字典-查询飞手违规处罚','飞手数据字典-查询飞手违规处罚','cmii-uav-user','/flyer/queryViolationPenalty','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:08',NULL),(260412139892637696,'API_1090f162960dd6510daacf0fa4cd82b7','飞手-手动验证飞手信息','飞手-手动验证飞手信息','cmii-uav-user','/flyer/checkFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:15',NULL),(260412139963940864,'API_6dec08acb3a67d9891f580acced31157','飞手-根据id查询飞手信息','飞手-根据id查询飞手信息','cmii-uav-user','/flyer/getFlyerById','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:14',NULL),(260412140026855424,'API_0026ba25d9100c225ea798b6406e92e3','飞手-根据id查询飞手信息用于编辑','飞手-根据id查询飞手信息用于编辑','cmii-uav-user','/flyer/getFlyerForEdit','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:20',NULL),(260412140081381376,'API_d7e9c45b91a5dbfed4e918e6d9351af3','飞手违规-录入飞手的违规记录','飞手违规-录入飞手的违规记录','cmii-uav-user','/flyer/addIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:16',NULL),(260412140148490240,'API_bf9d49687be6013694a2003c833c940b','飞手违规-编辑飞手的违规记录','飞手违规-编辑飞手的违规记录','cmii-uav-user','/flyer/updateFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:09',NULL),(260412140203016192,'API_2f3ee3aa76f7fd716d136764c9f24951','飞手违规-分页查询飞手的违规信息','飞手违规-分页查询飞手的违规信息','cmii-uav-user','/flyer/queryPageIllegal','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:20',NULL),(260412140320456704,'API_49d7922291aa900378bb7a8dc75a2a11','飞手违规-根据id查询飞手违规信息','飞手违规-根据id查询飞手违规信息','cmii-uav-user','/flyer/queryFlyerIllegalById','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:13',NULL),(260412140383371264,'API_f3b016b098a0ff37dca34b05ee67aef3','飞手违规-手动处理飞手违规信息','飞手违规-手动处理飞手违规信息','cmii-uav-user','/flyer/dealFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-10-11 15:37:12',NULL),(266596666918830080,'API_43a6d9d4648b716b6e4952b20eb2a04b','测试锁与事物','','cmii-uav-user','/api/uav/uavTestPO/testLockAndTrans','POST',_binary '\0',_binary '\0','2022-07-25 07:59:59',1,'2024-10-11 15:37:12',NULL),(266596673503887360,'API_3148113e1fd6e767775edbc659344963','数据权限升级3.2.6','','cmii-uav-user','/api/uav/group-sync/dbMygration3_2_6','PUT',_binary '\0',_binary '\0','2022-07-25 08:00:00',1,'2024-10-11 15:37:08',NULL),(266596675139665920,'API_f6a5aeaac5b06b81000a77d71f23a474','查询权限组应用范围的详细列表','','cmii-uav-user','/api/uav/group-template/listScopeTemplates','POST',_binary '\0',_binary '\0','2022-07-25 08:00:00',1,'2024-10-11 15:37:11',NULL),(266596675202580480,'API_62f0c326f1123b42b06be36add8eed87','删除默认模板模板','','cmii-uav-user','/api/uav/group-template/deleteDefault','POST',_binary '\0',_binary '\0','2022-07-25 08:00:00',1,'2024-10-11 15:37:16',NULL),(266596675328409600,'API_5dfe79389effe7386b69be9f0b878478','删除模板','','cmii-uav-user','/api/uav/group-template/delete','POST',_binary '\0',_binary '\0','2022-07-25 08:00:01',1,'2024-10-11 15:37:15',NULL),(277737138605260800,'API_f67fe93ff0be5659f0252b9d3b6143e8','根据token获取用户完整信息','','cmii-uav-user','/api/uav/user/profile/completeInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:14',1,'2024-10-11 15:37:10',NULL),(277737138672369664,'API_59a73dfca0fffd4fe3d3a4fae3a81a41','根据token获取公司完整信息','','cmii-uav-user','/api/uav/user/profile/completeCompanyInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:14',1,'2024-10-11 15:37:18',NULL),(279275635531055104,'API_9367f8184a28af4bad1898638fbb79ab','生成接口版本的语言示例代码','','cmii-uav-developer','/admin/interfaceVersion/buildLanguageSample','GET',_binary '\0',_binary '\0','2022-08-29 07:41:40',1,'2024-10-09 19:48:34',NULL),(279275757723713536,'API_73af129ee1e6ed88be893161a74d82a9','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:42:09',1,'2024-10-11 01:36:47',NULL),(279275758248001536,'API_30b2f1bcb26caed129daa7d90ad3e1f7','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:42:09',1,'2024-10-11 01:36:54',NULL),(279275775566282752,'API_19ad0f424e8a0438e9601bc48ae29c37','获取插件配置列表','获取插件配置列表','cmii-uav-cloud-live','/plugin/config/list','GET',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-10-12 09:42:38',NULL),(279275775985713152,'API_26f3af4bc58af3cc074a66f40178f27a','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unlockFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-10-12 09:42:38',NULL),(279275776040239104,'API_a3428ce9d39cc8869562f7e35a64751c','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/removeFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-10-12 09:42:36',NULL),(279275776216399872,'API_61d24cd62573c5ab961430663885f8be','模糊查询流程定义','模糊查询流程定义','cmii-uav-cloud-live','/workflow/config/fuzzySearchFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-10-12 09:42:35',NULL),(279275776300285952,'API_fea3d3fd980a01a918dc11d5929793b3','查询流程定义详情','查询流程定义详情','cmii-uav-cloud-live','/workflow/config/getFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-10-12 09:42:38',NULL),(279275776501612544,'API_62dea4b7dfe4a98e7e694e5eb202901f','校验是否存在','校验是否存在','cmii-uav-cloud-live','/workflow/config/checkIfExist','POST',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-10-12 09:42:35',NULL),(279275780792385536,'API_4fa6c28d58725e69b445a85b697bfb6a','根据code获取用户Token','根据code获取用户Token','cmii-uav-cloud-live','/user/getToken','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:31',NULL),(279275781748686848,'API_f7028ddc90bfea28a88864ef7323f4ef','删除视频分片','删除视频分片','cmii-uav-cloud-live','/video/part/delete','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:32',NULL),(279275781840961536,'API_d49ce826c20e30b16e6d088667263c91','查询视频分片列表','查询视频分片列表','cmii-uav-cloud-live','/video/part/list','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:32',NULL),(279275781908070400,'API_2335ee71c9d71a9303da6ce6d10a1b28','模糊查询视频分片','模糊查询视频分片','cmii-uav-cloud-live','/video/part/fuzzySearch','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:36',NULL),(279275781975179264,'API_78bc33e450c01a13ead3a9c468aa1680','流程任务管理-停止任务','流程任务管理-停止任务','cmii-uav-cloud-live','/video/process/task/manage/stopTask','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:35',NULL),(279275782046482432,'API_52875ec7bda206cb84a7156a04c5e722','流程任务管理-流程实例列表','流程任务管理-流程实例列表','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceList','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:32',NULL),(279275782105202688,'API_95003de040144226d1ef4b9147ca19b0','流程任务管理-流程实例详情','流程任务管理-流程实例详情','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:39',NULL),(279275782168117248,'API_ea93128efe8d3e791f52e973041eccbe','流程任务管理-插件任务详情','流程任务管理-插件任务详情','cmii-uav-cloud-live','/video/process/task/manage/getPluginTaskDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:39',NULL),(279275782235226112,'API_8573a8935dce7f3a3057e9384878171d','流程任务管理-批量删除任务','流程任务管理-批量删除任务','cmii-uav-cloud-live','/video/process/task/manage/deleteProcList','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:38',NULL),(279275782289752064,'API_02dc6ee1eecd13a66bdbaec47a2badd0','流程任务管理-重启任务','流程任务管理-重启任务','cmii-uav-cloud-live','/video/process/task/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:34',NULL),(279275782390415360,'API_bf6926013144f012735e0be3414cd02a','流程任务管理-插件任务重新启动','流程任务管理-插件任务重新启动','cmii-uav-cloud-live','/video/process/pluginTask/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:35',NULL),(279275782465912832,'API_04f140baa805dc6049da1f9f04ae1135','流程任务管理-插件任务停止','流程任务管理-插件任务停止','cmii-uav-cloud-live','/video/process/pluginTask/manage/stop','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:38',NULL),(279275782654656512,'API_33604007245ea6cb14132a321ebe459a','流程任务管理-获取流程启动参数样例','流程任务管理-获取流程启动参数样例','cmii-uav-cloud-live','/video/process/task/manage/getWorkFlowParam','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:33',NULL),(279275782797262848,'API_577f25983223517c7194672524ae7acb','流程任务管理-实例ID下拉列表','流程任务管理-实例ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getInstanceIds','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:33',NULL),(279275782914703360,'API_f8dcca1d25448eb817c485f82df8de75','流程任务管理-关联流程ID下拉列表','流程任务管理-关联流程ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getChainIds','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:33',NULL),(279275782994395136,'API_364708d86dc832dcdfc00084859e6ae4','流程任务管理-关联设备ID下拉列表','流程任务管理-关联设备ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getDevices','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:32',NULL),(279275783082475520,'API_7318e7634544cf7d9f84c55cdf5f4b26','流程任务管理-创建工作流任务','流程任务管理-创建工作流任务','cmii-uav-cloud-live','/video/process/task/manage/startWorkflow','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:31',NULL),(279275783137001472,'API_d0cda40fdae23a056c3d311897a3000c','视频回放-获取视频数据日期分布','视频回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/manage/getDataDistribution','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:38',NULL),(279275783191527424,'API_61c50d8ae3119b2ec8afd1df6ac3176f','视频回放-获取设备用途列表','视频回放-获取设备用途列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceCategoryList','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:36',NULL),(279275783388659712,'API_155bc2bc2165563313f00c1ee11823b1','视频回放-播放M3U8文件','视频回放-播放M3U8文件','cmii-uav-cloud-live','/public/video/playback/manage/playM3u8','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:32',NULL),(279275783485128704,'API_70b1e201caeb8a00969a8ba09f987c67','视频回放-通过分享码获取回放Token','视频回放-通过分享码获取回放Token','cmii-uav-cloud-live','/public/video/playback/manage/createToken','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:34',NULL),(279275783535460352,'API_4bef90d6e3b82b7530842847039b9e00','视频回放-获取视频设备名称列表','视频回放-获取视频设备名称列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceList','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-10-12 09:42:37',NULL),(279275783594180608,'API_0ee85dc3be7876299bfe6590c172eae2','视频回放-获取视频片段列表','视频回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/manage/videoList','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:31',NULL),(279275783715815424,'API_dd808e40342182fecdcdef172fe18129','视频回放-视频下载','视频回放-视频下载','cmii-uav-cloud-live','/video/playback/manage/download','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:38',NULL),(279275783778729984,'API_50065eb835309bf5700e90751a6e8926','视频回放-获取分享码&提取码','视频回放-获取分享码&提取码','cmii-uav-cloud-live','/video/playback/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:30',NULL),(279275784718254080,'API_353c4c8462864ce53cc49200b431d42f','删除设备','删除设备','cmii-uav-cloud-live','/device/manage/delete','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:37',NULL),(279275784802140160,'API_b68ef2fb20dc815309394b31cc4ab8ec','设备ID列表','设备Id列表','cmii-uav-cloud-live','/device/manage/getDeviceCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:38',NULL),(279275784865054720,'API_3f4e598f3a16bce2dfb7232a349ffb29','设备名称列表','设备名称列表','cmii-uav-cloud-live','/device/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:34',NULL),(279275784965718016,'API_58fd2384f6e1dc187c559b3468c0f84d','设备分类列表','设备分类列表','cmii-uav-cloud-live','/device/manage/getDeviceCategorys','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:34',NULL),(279275785049604096,'API_1a70b9f6e7b28467f52012eb73a879d0','设备列表','设备列表','cmii-uav-cloud-live','/device/manage/list','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:35',NULL),(279275785322233856,'API_056744ad78b99b838ea7681cbe7bfc12','设备管理-获取分享码&提取码','设备管理-获取分享码&提取码','cmii-uav-cloud-live','/device/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:36',NULL),(279275785393537024,'API_29894462ea9fbe104104c74868677dfd','设备新建','设备新建','cmii-uav-cloud-live','/device/manage/create','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:35',NULL),(279275785456451584,'API_b68f84751591de0772e63e54428e1bd8','设备编辑','设备编辑','cmii-uav-cloud-live','/device/manage/edit','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:37',NULL),(279275785544531968,'API_1d50bbd5d1d01cec51b37cd60469f543','设备详情','设备详情','cmii-uav-cloud-live','/device/manage/detail','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:31',NULL),(279275785678749696,'API_0765de93ae28fec1a6779fa040da8b88','批量删除设备','批量删除设备','cmii-uav-cloud-live','/device/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:37',NULL),(279275785745858560,'API_5b52fce29f871d36fc05a8b6afb042b8','设备管理-分享码获取直播地址','设备管理-获取直播地址','cmii-uav-cloud-live','/public/device/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-10-12 09:42:31',NULL),(279277290670522368,'API_ea0f320f2901ba1ebabde0585c4272e1','测试Path','','cmii-uav-user','/api/uav/open/test/path/{id}/{name}','GET',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:13',NULL),(279277290733436928,'API_7e60af46b731c179e5188f9c0188680d','测试POSTNONE','','cmii-uav-user','/api/uav/open/test/post-none','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:18',NULL),(279277290792157184,'API_5cc56cc9afa7bf9e2ec54352f382ada4','测试FORMDATA','','cmii-uav-user','/api/uav/open/test/post-formdata','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:11',NULL),(279277290859266048,'API_964ba6c9abf68c6ace77e84cbbfd14f9','测试urlencoded','','cmii-uav-user','/api/uav/open/test/post-urlencoded','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:15',NULL),(279277290922180608,'API_5c7f2d3d72c39db6a34cb156ded9b918','测试POST RAW','','cmii-uav-user','/api/uav/open/test/post-raw','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:16',NULL),(279277291010260992,'API_f67edf288f69ba95fdc77651546c81ff','测试文件','','cmii-uav-user','/api/uav/open/test/file','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:09',NULL),(279277291110924288,'API_f1634b099f9554ea1c89718d80d48ce7','测试文件集合','','cmii-uav-user','/api/uav/open/test/files','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:19',NULL),(279277291215781888,'API_830e06b0ffab162b8098cf8fa123db8c','测试Get','','cmii-uav-user','/api/uav/open/test/get','GET',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-10-11 15:37:11',NULL),(282075311133163520,'API_3d6c07168fd0f82833abc7a14956160a','视频回放-播放MP4文件','视频回放-播放MP4文件','cmii-uav-cloud-live','/public/video/playback/manage/playMp4','GET',_binary '\0',_binary '\0','2022-09-06 01:06:35',1,'2024-10-12 09:42:39',NULL),(287236864056754176,'API_ff03f13970f20c0e51449949e927e4d5','新增监管c端用户','','cmii-uav-user','/suav/user/addSuavUser','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:12',NULL),(287236864140640256,'API_a0b65682063c35efd520b44995097ed8','修改监管c端用户状态','','cmii-uav-user','/suav/user/updateStatus','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:20',NULL),(287236864249692160,'API_d09b9be867388010f4c94a0127646390','申请认证','','cmii-uav-user','/suav/user/applyCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:20',NULL),(287236864367132672,'API_c90bd0cbee2ae40d2715645334a50099','同意认证申请','','cmii-uav-user','/suav/user/accessCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:14',NULL),(287236864421658624,'API_767865024b31f2cc03953ddc45cb9986','c端用户列表查询','','cmii-uav-user','/suav/user/query','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:11',NULL),(287236864480378880,'API_5e588f2d947d9cb90f1cdb7244895d33','给C端用户重置密码','','cmii-uav-user','/suav/user/updateUserPassword','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:16',NULL),(287236864555876352,'API_bd5c59c02d7670b42f87a39c5f58ba4d','生成公司的临时编码','','cmii-uav-user','/suav/user/companyTempCode','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:16',NULL),(287236864799145984,'API_443053f0d52c871c8809c1210ffbc30c','数据字典,获取认证状态','','cmii-uav-user','/suav/user/certificationStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:10',NULL),(287236865084358656,'API_415be5b2e4186edf2a5ba6421a8967d9','数据字典,获取用户状态','','cmii-uav-user','/suav/user/userStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:19',NULL),(287236865155661824,'API_f0e478dab04650e2e027f8c8f30035b9','获取c端用户详细信息(用户id与公司编码)','','cmii-uav-user','/suav/user/getUserDetail','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:17',NULL),(287236865218576384,'API_ff389cb2e6843421dc7f59b66a8388e8','获取c端用户详细信息','','cmii-uav-user','/suav/user/getUserInfo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-10-11 15:37:17',NULL),(287236872168538112,'API_69fa4c56baaa3a151d8a3daf2a3cb598','根据公司id查询公司下面的子公司','','cmii-uav-user','/clients/org/children','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-10-11 15:37:18',NULL),(287236872504082432,'API_b7e269c10d3ab76b12a3038fc9e22522','根据公司id查询公司的第一级公司','','cmii-uav-user','/clients/org/getRoot','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-10-11 15:37:09',NULL),(287236872705409024,'API_393129d75226ae65ec07e5a15b387e30','根据用户名获取账号信息','','cmii-uav-user','/clients/suav/user/getUserDetail','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-10-11 15:37:17',NULL),(287236875662393344,'API_ba95daa3c52411b9096d22762ce4a16a','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2024-09-09 09:14:41',NULL),(287236875771445248,'API_d842a15fca6ec652fce80b67e839520b','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2024-09-09 09:14:45',NULL),(287236879529541632,'API_6f49cba78d3c4c873caff17cda442ea4','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2024-09-09 09:14:41',NULL),(287236879596650496,'API_a0fc4192b4bce535e26df2633ea71d6a','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2024-09-09 09:14:43',NULL),(287236964317396992,'API_624966db1edb3998c42b0a5c44e20555','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:09',1,'2024-10-11 01:36:53',NULL),(289756396184928256,'API_96001fd396737409f22416d94595c14d','根据应用编码集合,获取集合详情','','cmii-admin-user','/client/v1/platforms/queryAppsByCodes','POST',_binary '\0',_binary '\0','2022-09-27 05:48:28',1,'2024-09-09 09:14:18',NULL),(295229834448601088,'API_03e838c9e174bfcceda31e3ea9779b28','校验指定公司是否有无人机','','cmii-uav-device','/api/uav/plane/checkUavExit','GET',_binary '\0',_binary '\0','2022-10-12 08:17:58',1,'2024-10-11 01:36:42',NULL),(295229837829210112,'API_acf5017faf804920b87979e00de84171','根据无人机编码和名称模糊查询无人机列表','','cmii-uav-device','/api/uav/plane/queryUavList','GET',_binary '\0',_binary '\0','2022-10-12 08:17:58',1,'2024-10-11 01:36:52',NULL),(295229845899051008,'API_2dc30254053a86e7e8a7444b6d51fd4a','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-10-12 08:18:00',1,'2024-10-11 01:36:48',NULL),(295251616305643520,'API_e59ebfad16bcaff422ec9a8a61d29821','download','','cmii-uav-device','/api/uav/plane/download','GET',_binary '\0',_binary '\0','2022-10-12 09:44:31',1,'2022-11-09 07:20:48',NULL),(299943703282319360,'API_6deb1974a304cbd0b6467f899bbded96','删除视频合成任务','删除视频合成任务','cmii-uav-cloud-live','/video/merge/delete','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:34',NULL),(299943703370399744,'API_4ccf219211d38ebd68e9c6e368087db1','查询视频合成任务列表','查询视频合成任务列表','cmii-uav-cloud-live','/video/merge/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:35',NULL),(299943703445897216,'API_f02265768ee60978134eb6c0fdd4c591','模糊查询视频合成任务','模糊查询视频合成任务','cmii-uav-cloud-live','/video/merge/fuzzySearch','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:34',NULL),(299943703521394688,'API_d1df2700051f54772ade26acea82227f','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/video/merge/applyMerge','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:36',NULL),(299943703622057984,'API_3e0895207c7be89015bcefde78eb9a57','视频合成任务-获取m3u8回放Token','视频合成任务-获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/video/merge/getPlaybackM3u8Token','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:37',NULL),(299943704062459904,'API_43e420d3de8c15d1d0617823b0f9a59e','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/video/part/getM3U8','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:35',NULL),(299943706553876480,'API_36d9b4a4c15f6443b5dd71dbb4ffe523','结束直播','结束直播','cmii-uav-cloud-live','/broadcast/manage/stop','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:32',NULL),(299943706620985344,'API_9693ba0fd7e96c9569226e16649b4ad1','新建直播','新建直播','cmii-uav-cloud-live','/broadcast/manage/create','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:32',NULL),(299943706746814464,'API_d044fdf2df50285e3213d06fa76d0264','新建直播-直播名称是否存在','新建直播-直播名称是否存在','cmii-uav-cloud-live','/broadcast/manage/isExistActivityName','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:32',NULL),(299943706809729024,'API_f7fda7e00fd5eddd7e5957f71098cdb1','直播列表','直播列表','cmii-uav-cloud-live','/broadcast/manage/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:31',NULL),(299943706885226496,'API_addbaad28b1c82af748d923725cea518','直播管理-获取直播分享码&提取码','直播管理-获取直播分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:37',NULL),(299943706990084096,'API_06551f7a0896b0e26721db1c5b930ab3','直播管理-分享回放(MP4文件)','直播管理-分享回放(MP4文件)','cmii-uav-cloud-live','/public/broadcast/manage/playMp4','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:37',NULL),(299943707078164480,'API_49da91b3d7b83dd3fd38463f5440fdd9','进入直播','进入直播(获取直播地址)','cmii-uav-cloud-live','/broadcast/manage/getBroadcastPlay','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:34',NULL),(299943707149467648,'API_076b223b478afbc1891bd276ccc64f99','直播名称列表','直播名称列表','cmii-uav-cloud-live','/broadcast/manage/getActivityNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:32',NULL),(299943707212382208,'API_12175cae1b75bda31a1fc2b2bd812714','直播列表-直播设备下拉列表','直播列表-直播设备下拉列表','cmii-uav-cloud-live','/broadcast/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:36',NULL),(299943707275296768,'API_3db55c96df43c268cba13f78a16f9205','批量删除直播','批量删除直播','cmii-uav-cloud-live','/broadcast/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-10-12 09:42:32',NULL),(299943707342405632,'API_7128d138344e76efe5cee8d4ad8c2f3c','直播管理-分享码获取直播地址','直播管理-获取直播地址','cmii-uav-cloud-live','/public/broadcast/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-10-12 09:42:31',NULL),(299943707396931584,'API_b3f1bbc5d260a69bc4c684110aafdeed','直播管理-获取回放分享码&提取码','直播管理-获取回放分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getPlaybackShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-10-12 09:42:33',NULL),(299943707459846144,'API_7306ef570af18081e81ed62c8561aff3','通过分享码获取m3u8回放Token','通过分享码获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/public/broadcast/manage/getSharePlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-10-12 09:42:34',NULL),(299943707556315136,'API_2f6e07d9525594c82888280793c4edf9','新建直播-选择视频流设备列表','新建直播-选择视频流设备列表','cmii-uav-cloud-live','/broadcast/manage/create/getDeviceList','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-10-12 09:42:37',NULL),(299943707631812608,'API_d77aa62e4ba0c8f547adfe98b1ee194c','获取m3u8回放Token','获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/broadcast/manage/getPlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-10-12 09:42:31',NULL),(305383349274411008,'API_0cb8a3873ab09e2ac420f0792855a5e2','download','','cmii-uav-device','/api/uav/plane/download','POST',_binary '\0',_binary '\0','2022-11-09 08:44:24',1,'2024-10-11 01:36:49',NULL),(305387000961302528,'API_ce4c361afa82c394716734aaa1ddbd4a','查询自己以及祖先公司以及公司的用户','','cmii-uav-user','/api/uav/org/ancestorsAndOwn','POST',_binary '\0',_binary '\0','2022-11-09 08:58:55',1,'2024-10-11 15:37:19',NULL),(305387005512122368,'API_f11240b92cee5d159e4f5eabe1e8a796','上级和下级公司的用户','','cmii-uav-user','/api/uav/user/getSuperiorAndSubordinatetUser','GET',_binary '\0',_binary '\0','2022-11-09 08:58:56',1,'2024-10-11 15:37:16',NULL),(305387017755295744,'API_22bd7ab297fcbef4e8289342d128eed0','createRSA','','cmii-uav-user','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-09 08:58:59',1,'2024-10-11 15:37:14',NULL),(307566664328806400,'API_a6898c161b0e2ea04598bd6dc11321f4','createRSA','','cmii-uav-cloud-live','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-15 09:20:07',1,'2024-10-12 09:42:37',NULL),(315901980064481280,'API_bd1bab05f21fe3c727fcaa9aa699120a','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:21:41',1,'2024-10-11 01:36:46',NULL),(315909514628300800,'API_63c29781cb102bf657cf7ee5a06fdfe3','飞手-查询飞手列表','飞手-查询飞手列表','cmii-uav-user','/clients/flyer/queryFlyers','POST',_binary '\0',_binary '\0','2022-12-08 09:51:38',1,'2024-10-11 15:37:11',NULL),(315911089048387584,'API_c369a480eca1568a1a64edeabc8203a9','从Redis获取类别对应的加密字典明细','从Redis获取类别对应的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-09-09 09:14:42',NULL),(315911089178411008,'API_e79c6c19893996625cb977f371b7727c','从Redis获取类别对应的有效的加密字典明细','从Redis获取类别对应的有效的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeValiableDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-09-09 09:14:43',NULL),(315911089262297088,'API_b8c0b1ce047e9f177879294e1176f46d','从Redis获取所有的语言对应的加密字典明细的K-V','从Redis获取所有的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-09-09 09:14:46',NULL),(315911089341988864,'API_3f6a19076e18fa7acce0d74cec04af81','从Redis获取有效的语言对应的加密字典明细的K-V','从Redis获取有效的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-09-09 09:14:44',NULL),(315911089409097728,'API_21c78db35d528159ea148190f80e91fc','从Redis获取所有的编码对应的本地语言的加密值','从Redis获取所有的编码对应的本地语言的加密值','cmii-admin-data','/api/admin/dictionary/getEnCodeLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-09-09 09:14:44',NULL),(315911099785805824,'API_7af6be80b3bcb05b36fa95631144343a','查询天气综合接口','','cmii-admin-data','/api/admin/atmosphere/weather/{coordinate}/{level}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-09-09 09:14:41',NULL),(315911099848720384,'API_656295455a26635f330d23b130ddb013','获取彩云天气雷达图','','cmii-admin-data','/api/admin/atmosphere/radar','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-09-09 09:14:45',NULL),(315911099915829248,'API_cf65071f9d16a72591016a32567bbd2e','获取彩云天气历史累计图','','cmii-admin-data','/api/admin/atmosphere/historicalImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-09-09 09:14:43',NULL),(315911099978743808,'API_e5246134c4a313c2abdc72ab662f3cf7','获取彩云天气卫星图像数据','','cmii-admin-data','/api/admin/atmosphere/satelliteImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-09-09 09:14:44',NULL),(315911100041658368,'API_bd6a14bc94eaf8a55a8ecbdcacc9c5b0','获取彩云天气小时级数据图层','','cmii-admin-data','/api/admin/atmosphere/originImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-09-09 09:14:42',NULL),(315911100129738752,'API_3376edd154d5e642eaaa1a31c7ddb76c','获取彩云天气预测累计图','','cmii-admin-data','/api/admin/atmosphere/forecastImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-09-09 09:14:45',NULL),(315911100217819136,'API_20a4aa74a7bbd084fb5cf120a8dcc60c','导出报告接口','','cmii-admin-data','/api/admin/atmosphere/export/{coordinate}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-09-09 09:14:45',NULL),(316180559729917952,'API_dea45900d60b73c855a3db6810628775','设置机库额外信息','','cmii-uav-device','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 03:48:40',1,'2024-10-11 01:36:53',NULL),(330366742883205120,'API_1d407fdf42a15342204587254bbec655','设置地图配置','','cmii-uav-user','/api/uav/org/mergeMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:29',1,'2024-10-11 15:37:18',NULL),(330366743000645632,'API_47979857f71ab7739fbbb3d1d10c59b8','删除地图配置','','cmii-uav-user','/api/uav/org/delMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:29',1,'2024-10-11 15:37:17',NULL),(330366743105503232,'API_fb4aefe0ad2483a442075ebded82acca','获取指定组织的地图配置','','cmii-uav-user','/api/uav/org/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:29',1,'2024-10-11 15:37:13',NULL),(330366747631157248,'API_10eba035deca93be164f1ad3f808311b','获取自己组织的地图配置','','cmii-uav-user','/api/uav/user/profile/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:31',1,'2024-10-11 15:37:09',NULL),(338350551701520384,'API_2ddec9b0a6c6ddb7972bb3a4b7cb19b5','测his','','cmii-uav-user','','GET',_binary '\0',_binary '\0','2023-02-08 08:04:18',1,'2023-08-07 06:29:38',NULL),(338350558588567552,'API_595b33682c3f519aaf3572b88817b432','飞手-查询飞手','飞手-查询飞手','cmii-uav-user','/clients/flyer/getRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:19',1,'2024-10-11 15:37:19',NULL),(338350574497562624,'API_e495283cfa185294b0ac99f8c3afbfa5','飞手-查询历史飞手列表','飞手-查询历史飞手列表','cmii-uav-user','/clients/flyer/queryHistoryRpcsByIds','POST',_binary '\0',_binary '\0','2023-02-08 08:04:23',1,'2024-10-11 15:37:11',NULL),(338350582655483904,'API_b1e7b0038cbcbdde48ab92395a49fc77','飞手-查询历史飞手信息','飞手-查询历史飞手信息','cmii-uav-user','/clients/flyer/getHistoryRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:25',1,'2024-10-11 15:37:18',NULL),(338350582848421888,'API_ea461e10014bb0021824cd9983557961','查询组织自身实际分配给自己配额','','cmii-uav-user','/client/quota/getQuotaConfigByType','POST',_binary '\0',_binary '\0','2023-02-08 08:04:25',1,'2024-10-11 15:37:18',NULL),(338350593602617344,'API_16f8fa42e4aaf03d75116f4c3e60a035','createRSA','','cmii-uav-device','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-02-08 08:04:28',1,'2024-10-11 01:36:42',NULL),(338679572989607936,'API_c64fa9a54063c392bc7ae9abfdecf20f','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryFlyTotalByCmpScope','GET',_binary '\0',_binary '\0','2023-02-09 05:51:43',1,'2024-10-11 01:36:54',NULL),(338679575007068160,'API_e948d384436ebdf4111fcaed655e4adf','获取公司范围内的飞手列表','','cmii-uav-device','/api/uav/plane/queryFlyerList','GET',_binary '\0',_binary '\0','2023-02-09 05:51:43',1,'2024-10-11 01:36:52',NULL),(356113915359920128,'API_39a880167c8614f8e12466d50933a1c4','api','','cmii-admin-user','','POST',_binary '\0',_binary '\0','2023-03-29 08:29:34',1,'2023-09-10 12:26:26',NULL),(356113915787739136,'API_05fc13f05472604a588d72cda015a304','createRSA','','cmii-admin-user','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-03-29 08:29:34',1,'2024-09-09 09:14:17',NULL),(356142464401801216,'API_b45ae6e6540f1c26f30f6821db701f94','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','','DELETE',_binary '\0',_binary '\0','2023-03-29 10:23:00',1,'2023-06-12 07:07:34',NULL),(356142467799187456,'API_917d79d5fe966b35d589931c2624c15b','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','','GET',_binary '\0',_binary '\0','2023-03-29 10:23:01',1,'2023-06-12 07:07:34',NULL),(360020852111704064,'API_6382c442feffdb99d380fc509b8d8cdf','机库绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/hangar/queryBoundVideoByHgrDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:20',1,'2024-10-11 01:36:51',NULL),(360020866523332608,'API_74382abbc96293ea3031fda83c1dabfc','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:23',1,'2024-10-11 01:36:46',NULL),(360105954854436864,'API_ef18e28046f8823ce9871074c311d87c','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/plane/checkUavExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:30',1,'2024-10-11 01:36:50',NULL),(360105956142088192,'API_3759ecb4da461b7ed9a15788a63b802e','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/hangar/checkHgrExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:30',1,'2024-10-11 01:36:51',NULL),(361439235510108160,'API_182ee7baff979a8cb4e801ee17150214','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryCamVideoByUavCode','GET',_binary '\0',_binary '\0','2023-04-13 01:10:29',1,'2024-10-11 01:36:49',NULL),(363322689011187712,'API_887e0119125f20dc5762035c7a34e9a7','根据应用编码获取应用详细信息','','cmii-admin-user','/client/v1/platforms/getDetailByCode','GET',_binary '\0',_binary '\0','2023-04-18 05:54:39',1,'2024-09-09 09:14:17',NULL),(366266834935480320,'API_c08789b2c3cf169b1b8a2a6391aa014e','获取视频HLS回放url','获取视频HLS回放url','cmii-uav-cloud-live','/personal/his/playback/hls/getPlayUrl','POST',_binary '\0',_binary '\0','2023-04-26 08:53:38',1,'2024-10-12 09:42:36',NULL),(366266837636612096,'API_4cd087acea12e9df6dadc85a13d81647','上报已存储的视频分片','上报已存储的视频分片','cmii-uav-cloud-live','/client/live/stream/reportPartFile','POST',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-10-12 09:42:36',NULL),(366266838521610240,'API_2ace9d2a26489c0b6c0461b6716d1df0','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/client/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-10-12 09:42:35',NULL),(366266839138172928,'API_6099fa9109dc842a151d9090663330c2','视频HLS回放','视频HLS回放','cmii-uav-cloud-live','/public/his/playback/hls.m3u8','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-10-12 09:42:35',NULL),(366266841294045184,'API_2679f7b8474fc8ef2d2ea59f71b2d6aa','获取HLS直播回放地址','获取HLS直播回放地址','cmii-uav-cloud-live','/client/live/stream/getHlsPlayInfo','POST',_binary '\0',_binary '\0','2023-04-26 08:53:40',1,'2024-10-12 09:42:38',NULL),(369073521807458304,'API_2f576b4aa4334399d4a68ef04f3b7d0d','查询走廊信息','','cmii-uav-grid-datasource','/corridor/corridorQuery','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073521887150080,'API_ec475feef48ac52bb568bad1b59dceeb','检查url是否已经使用','','cmii-uav-grid-datasource','/terrain/checkRepeatUrl','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073521954258944,'API_5b8f1dc3f3ecadbc8cc614e907ac76a3','env','','cmii-uav-grid-datasource','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522080088064,'API_a233f3b210c54d7fe244188c06a7c4a4','ping','','cmii-uav-grid-datasource','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522168168448,'API_3dd7916d2570ad77f5f0a4a36a81e43f','保存执行计划','','cmii-uav-grid-datasource','/dataImport/saveCron','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073522273026048,'API_8f8558323e61097a2b8c8d52aae45a22','已接入服务列表','','cmii-uav-grid-datasource','/dataImport/serviceList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073522340134912,'API_5050c3adce00b0029e7b454a77f2f927','飞行计划相交集合','','cmii-uav-grid-datasource','/fightPlan/fightPlanIntersect','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522449186816,'API_863e3233dd2fb0dfead2b5ae873204d1','立即同步','','cmii-uav-grid-datasource','/dataImport/sync','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522524684288,'API_37e909b2fefde1d03603324339350050','新增地形数据','','cmii-uav-grid-datasource','/terrain/addTerrain','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073522587598848,'API_e1e529b85d096ca15c079328efd9aad4','查询默认地形数据','','cmii-uav-grid-datasource','/terrain/queryDefaultTerrain','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073522642124800,'API_72bc4178dda49853316a0e3a7bdd8ce8','打码航线','','cmii-uav-grid-datasource','/coding/codingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522709233664,'API_894b58fcd4bf77172cf7aea9ee666e09','获取网格编码','','cmii-uav-grid-datasource','/grid/manager/getGrid','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073522776342528,'API_ce37696c8ec4641de8ea62167d8dc1b3','根据网格码查询标注信息','','cmii-uav-grid-datasource','/mark/queryMarkList','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073523036389376,'API_bec34ea6ec4eeffc887efdc8146339ed','存储指定网格码的外包矩形','','cmii-uav-grid-datasource','/custom/saveGrid3dScope','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073523099303936,'API_64bc026764f6c25b42c69a8606a07a94','getDocumentation','','cmii-uav-grid-datasource','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073523170607104,'API_c9ddccbad8fa8784cdaf1991b097fe33','设置默认地形','','cmii-uav-grid-datasource','','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2023-07-18 04:06:48',NULL),(369073523258687488,'API_29afb846adb55f238910d05afbe2e761','createRSA','','cmii-uav-grid-datasource','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073523434848256,'API_d279ca67575d122ef0f61ff81cbe7a8d','多边形打码','','cmii-uav-grid-datasource','/corridor/polygonCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073523501957120,'API_b1608c283d9b041b452a7a559e608496','批量获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeights','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073523640369152,'API_b049cf657a5c0a8e9096e440ca661d02','securityConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073523715866624,'API_4aaa777469e72d7417e378e630b5bd8f','生成走廊网格码','','cmii-uav-grid-datasource','/corridor/corridorCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073524072382464,'API_59448bffb78439636d0b4d3f16ca48f2','航线在线打码','','cmii-uav-grid-datasource','/custom/onlineCodingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524135297024,'API_56b94ed05c688dfa4f3bd071967f7fca','打码可飞行区域','','cmii-uav-grid-datasource','/coding/codingFlyableAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073524294680576,'API_91bd981c8e68b461bf325839da3f0413','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeightToRpc','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524370178048,'API_37e8361e9f18210f188b9312f0edb357','打码单个空域','','cmii-uav-grid-datasource','/custom/gridCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524475035648,'API_8a1741a83cb91167bd83059338e69dfa','条件查询地形数据','','cmii-uav-grid-datasource','/terrain/queryTerrainByCondition','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524558921728,'API_e6311bd8b4857f003d5ae41ddc1b9fa8','保存已通过飞行计划','','cmii-uav-grid-datasource','/fightPlan/savePassFightPlan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524651196416,'API_3c1ff288ca2fbf810ccd69e351235542','swaggerResources','','cmii-uav-grid-datasource','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524722499584,'API_ecbc7c4dce2a7addfbb0169537a09e06','health','','cmii-uav-grid-datasource','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524793802752,'API_4fbd74c072343df88b232fbe31a59b04','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeight','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524848328704,'API_025c2238b894f0a0f96b1cd192067bbe','error','','cmii-uav-grid-datasource','/error','',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073525024489472,'API_a3ad8f8222c9436057a777a55faf8a7c','获取地形数据列表','','cmii-uav-grid-datasource','/terrain/getTerrainList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073525087404032,'API_130f26dd451d2a049d5d834b0b0a17de','删除标注信息','','cmii-uav-grid-datasource','/mark/deleteMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073525418754048,'API_c7a327fe84d6d10b54e0de34b9e1ea19','接口扫描','','cmii-uav-grid-datasource','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073525863350272,'API_2447fe8d41a35c4fee51f7b369d7fd12','保存/更新标注信息','','cmii-uav-grid-datasource','/mark/saveOrUpdateMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073525922070528,'API_d811537b42ba578dbc6be1586739193d','getDocumentation','','cmii-uav-grid-datasource','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073525976596480,'API_aaacdcec734a7703cdcf345d3ed75d5c','飞行冲突判断','','cmii-uav-grid-datasource','/fightConflict/fightConflict','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073526035316736,'API_ad3946fa86a26f16ffa9052e13bc40bf','走廊删除','','cmii-uav-grid-datasource','/corridor/deleteCorridor','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073526186311680,'API_b0210debfbccada2fc2ddcb13cf64b84','uiConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:31',NULL),(369073526249226240,'API_33b1d75edb6c55c345002a8a44808880','根据ID删除地形数据','','cmii-uav-grid-datasource','','DELETE',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2023-07-18 04:06:46',NULL),(369073526312140800,'API_a935d01ed0b7168651291ee04b37894d','打码禁飞区','','cmii-uav-grid-datasource','/coding/codingNoFlyAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369176334815592448,'API_d52162a5cd1e62dfa714b1bccb31408a','createRSA','','cmii-admin-data','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-09-09 09:14:42',NULL),(369176338061983744,'API_7fd046a59194d2af54f3fcdd4bf15887','查询天气综合接口','','cmii-admin-data','','GET',_binary '\0',_binary '\0','2023-05-04 09:34:58',1,'2023-09-10 12:25:47',NULL),(369176357305450496,'API_e4e6d4125de70b6463d08fbf9d71c47f','查询指定编号的无人机视频流','','cmii-uav-device','/api/uav/stream/querySpecUavStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2024-10-11 01:36:53',NULL),(369176359717175296,'API_be6e682bd0a2cdcf659f1d317e142227','查询无人机基础信息','','cmii-uav-device','/api/uav/stream/queryPlaneInfo','GET',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2024-10-11 01:36:42',NULL),(369176379291992064,'API_e4ea6bcadcc2e15b59c9bf580bec561c','查询公司下的在线无人机列表','','cmii-uav-device','/api/uav/stream/queryOnlineList','GET',_binary '\0',_binary '\0','2023-05-04 09:35:08',1,'2024-10-11 01:36:46',NULL),(369176379791114240,'API_788c7ac27d69d34507ec569755221c6a','查询公司下的在线无人机','','cmii-uav-device','/api/uav/stream/queryStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:08',1,'2024-10-11 01:36:48',NULL),(371949603785146368,'API_1a0fc2b7d3fb9a8c702019ecc6482ca0','按设备号查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNoWithoutCompanyId','GET',_binary '\0',_binary '\0','2023-05-12 01:14:56',1,'2024-10-11 01:36:44',NULL),(373763042475900928,'API_0f959d8a065bba9b54784b8c848a586c','根据载荷编码查对应的设备号','','cmii-uav-device','/api/uav/load/queryDeviceNoByCode','POST',_binary '\0',_binary '\0','2023-05-17 01:20:54',1,'2024-10-11 01:36:43',NULL),(374253516313985024,'API_48978d5ef090d81630fb3605f57903b7','解密服务','','cmii-uav-user','/public/cipher/decrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:52',1,'2024-10-11 15:37:09',NULL),(374253522177622016,'API_dcd9bfc9f9145fd7fa2f86f84b0fe4dd','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryInterfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 09:49:53',1,'2024-10-11 15:37:16',NULL),(374253523834372096,'API_c5421137b351c6ead103badcff054086','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryTopN','GET',_binary '\0',_binary '\0','2023-05-18 09:49:53',1,'2024-10-11 15:37:13',NULL),(374253524253802496,'API_fd18a7dcada967185912d83f28c9d074','加密服务','','cmii-uav-user','/public/cipher/encrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:53',1,'2024-10-11 15:37:11',NULL),(374268309527330816,'API_b4b7083a6db8e45193495a859dc1b01a','创建公司密钥配置','','cmii-admin-data','/personal/cipher/interfaceAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-09-09 09:14:46',NULL),(374268310672375808,'API_d6f08ecdcb3267c96d5f438151bc7c9b','公司密钥配置编辑','','cmii-admin-data','/api/admin/cipher/config/edit','POST',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-09-09 09:14:41',NULL),(374268310794010624,'API_0f3ebffc0b074339cf0bcbd6f1df19bf','查询返回编码','','cmii-admin-data','/api/admin/cipher/params/returnCode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-09-09 09:14:46',NULL),(374268311016308736,'API_74f1e5f507799e1e3205749b034cde0e','创建公司密钥配置','','cmii-admin-data','/api/admin/cipher/config/add','POST',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-09-09 09:14:41',NULL),(374268311792254976,'API_2741dec94ddea0833a4316fd252e0276','查询可以加密的接口列表','','cmii-admin-data','/api/admin/cipher/params/interfaces','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-09-09 09:14:43',NULL),(374268315164475392,'API_b5e9ffbb47525729bc78c01fdf228567','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/mgfHashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:14:42',NULL),(374268316204662784,'API_2417860ccff3359fe9dba9edfaac5f42','密钥配置详情','','cmii-admin-data','/rpc/cipher/encryptDetail','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:14:42',NULL),(374268317043523584,'API_9b1451f70e44b613594e017f2628a13a','根据接口编码集合查询接口信息','','cmii-admin-data','/api/admin/cipher/params/interfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:14:45',NULL),(374268317685252096,'API_bd0024ecbe647e014a449bc9d5f729c7','查询加密的参数以及参数值列表','','cmii-admin-data','/api/admin/cipher/params/cipherTypeParams','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:44',NULL),(374268318326980608,'API_4f43715ed81ec4c9a0acee6c1bb84781','查询工作模式列表','','cmii-admin-data','/api/admin/cipher/params/workMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:41',NULL),(374268318897405952,'API_694d36068c38eb981742a7ae6ba5d0f4','对称加密的类型','','cmii-admin-data','/api/admin/cipher/params/symmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:44',NULL),(374268319501385728,'API_d64b38a2d894d23426dbbfb9128d0c07','未全部配置过的组织列表','','cmii-admin-data','/api/admin/cipher/unRelatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:41',NULL),(374268319610437632,'API_d52a332a6946771c1f169d5066187469','密钥配置详情','','cmii-admin-data','/api/admin/cipher/configDetail','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:46',NULL),(374268321032306688,'API_84f91b64d5bfd02bb04aa626edf1d6dd','查询填充模式列表','','cmii-admin-data','/api/admin/cipher/params/paddingMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:46',NULL),(374268321388822528,'API_644f2dab52b418e265238fa68e275c48','查询密钥长度','','cmii-admin-data','/api/admin/cipher/params/keyLength','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:41',NULL),(374268321770504192,'API_c9de66fbe7350603d416b0a83ed42dc6','已经配置过的组织列表','','cmii-admin-data','/api/admin/cipher/relatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:14:46',NULL),(374268322626142208,'API_4eb7e9b4d6471bbd1d931e39a14f0f8b','密钥配置历史版本','','cmii-admin-data','/api/admin/cipher/history','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:14:44',NULL),(374268323888627712,'API_b7035bcdcc081a0ce8c2444d57f99b45','非对称加密类型','','cmii-admin-data','/api/admin/cipher/params/asymmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:14:42',NULL),(374268324433887232,'API_8529eee665f795dfecf3af378fba2cd1','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/hashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:14:42',NULL),(374268324597465088,'API_cb24eaf17427b8969c7410c32143a00c','查询RSA密钥格式','','cmii-admin-data','/api/admin/cipher/params/keyFormat','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:14:44',NULL),(374268325209833472,'API_d540393b2029950246fcff435da75cd7','公司密钥配置删除','','cmii-admin-data','/api/admin/cipher/config/delete','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:14:45',NULL),(374268325750898688,'API_1c97a7512a978a1d4698c682f4941eca','密钥配置列表','','cmii-admin-data','/api/admin/cipher/configs','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:14:43',NULL),(374518913453522944,'API_b9e0e052b103a3257f3e6d4677df5692','批量判断是否有冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersect','POST',_binary '\0',_binary '\0','2023-05-19 03:24:27',1,'2024-06-18 01:15:31',NULL),(374595432532410368,'API_9af09cb0b05436d31116614ec5082063','通过视频编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByVideoCode','GET',_binary '\0',_binary '\0','2023-05-19 08:28:31',1,'2024-10-11 01:36:54',NULL),(374595434877026304,'API_83501b10768effef0eab0ec0fe8eec4c','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-19 08:28:31',1,'2023-05-19 08:28:38',NULL),(376069404713287680,'API_7aeff08ab35ce893c4625b166660f6fe','按无人机设备号查询无人机详情查询无需公司隔离','','cmii-uav-device','/api/uav/plane/queryDetailByUavSn','GET',_binary '\0',_binary '\0','2023-05-23 10:05:33',1,'2024-10-11 01:36:53',NULL),(376069405833166848,'API_4ab35aed02383cead8315ecf74959f84','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-23 10:05:33',1,'2024-10-11 01:36:47',NULL),(376308875023089664,'API_40b7feeb871b38ee80243ea6b9b87a1f','删除数据','','cmii-uav-grid-datasource','/fightPlan/deleteData','GET',_binary '\0',_binary '\0','2023-05-24 01:57:07',1,'2024-06-18 01:15:30',NULL),(376308876080054272,'API_525c8cdfcd0e5428eab20ce710e9ab59','更新状态','','cmii-uav-grid-datasource','/fightPlan/updateStatus','GET',_binary '\0',_binary '\0','2023-05-24 01:57:08',1,'2024-06-18 01:15:31',NULL),(383272346463240192,'API_23013111b0eb52f8adfb5699bc4561f7','视频数据回放-批量删除视频片段','视频数据回放-批量删除视频片段','cmii-uav-cloud-live','/video/playback/batchDeleteSegment','POST',_binary '\0',_binary '\0','2023-06-12 07:07:28',1,'2024-10-12 09:42:32',NULL),(384034751742345216,'API_16eb6d9fda49c60a76fab1754a31ba25','获取设备视频流地址信息','获取设备视频流地址信息(包括播放地址和推流地址)','cmii-uav-cloud-live','/client/live/open/queryDeviceStreamInfo','POST',_binary '\0',_binary '\0','2023-06-14 09:37:00',1,'2024-10-12 09:42:36',NULL),(384034753399095296,'API_6325d24763533b2cb36ffb1342f7c4b4','配置设备视频流来源地址','配置设备视频流来源地址,并默认启动拉流服务','cmii-uav-cloud-live','/client/live/open/configDevicePullStream','POST',_binary '\0',_binary '\0','2023-06-14 09:37:00',1,'2024-10-12 09:42:35',NULL),(384034757761171456,'API_2f53a483eabc8d6dd865a1a94cf4ddc9','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','cmii-uav-cloud-live','/client/live/open/startDevicePullStream','GET',_binary '\0',_binary '\0','2023-06-14 09:37:01',1,'2024-10-12 09:42:35',NULL),(392026422140731392,'API_75a92385064a14c92617dcbb7b0d3dfb','根据用户id集合获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryByIds','POST',_binary '\0',_binary '\0','2023-07-06 10:53:03',1,'2024-10-11 15:37:08',NULL),(392026652389801984,'API_e72e93182f82f69b3d90abd268138157','任务列表','任务列表','cmii-uav-process','/process/task/mytask/queryTaskOrderList','POST',_binary '\0',_binary '\0','2023-07-06 10:53:57',1,'2024-09-12 02:46:55',NULL),(392026652746317824,'API_6e4f3e159310433aa6f76aa0d407844e','任务配置列表','任务配置列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskDefList','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026653027336192,'API_9b0a86c18bd339d27a2b89ab98815f3e','查询任务类型列表','查询任务类型列表','cmii-uav-process','/client/taskdispatch/queryTaskTypes','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026653199302656,'API_3b6db47197b1889d76320c549c7c4a5f','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/flowdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026653375463424,'API_c3db4807ee66876f7ec2ece9207d1500','查看周期工作流任务详情','看周期工作流任务详情','cmii-uav-process','/process/bizengine/manage/periodflowinst/gePeriodFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026653576790016,'API_d4bb356f3b244688eeb50b3590d42feb','修改接口人','修改接口人','cmii-uav-process','/process/task/config/modifyContactPerson','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026653870391296,'API_675b982c8fa99f1d578dfbbfa1ffd8a5','任务信息列表','任务信息列表','cmii-uav-process','/process/task/config/queryTaskInfoList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026654050746368,'API_5e6ebf3a52b9c513518de86b3c5e3d31','查询工单状态下拉列表','查询工单状态下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654222712832,'API_d96009d0d398cf79b03530f0bfe2cebc','模糊搜索用户列表','模糊搜索用户列表(详情-查询关联作业列表-用户列表)','cmii-uav-process','/process/task/mytask/fuzzySearchUsers','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654398873600,'API_0c896719736a178e9edf4670291c333e','新建任务-单位下拉列表','新建任务-单位下拉列表(自身及子公司)','cmii-uav-process','/process/task/manage/queryChildWithOwnUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654554062848,'API_34920ec007c3ac277370bdb9532f2a2a','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list/vague','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654734417920,'API_4787f525e4b9b3e880a13fa6c815b231','编辑任务定义','编辑任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/modifyTask','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026655053185024,'API_afed7c0365d6055c6c9c6de659b0b164','删除流程实例','删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/deleteProcInst','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026655397117952,'API_5d425c1dcb7e4c5e5f21f611a678bf72','getDocumentation','','cmii-uav-process','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026655548112896,'API_a7a60c72d8d6084bbe91152a3b456139','批量删除任务实例','批量删任务程实例','cmii-uav-process','/process/bizengine/manage/taskInst/batchDeleteTaskInst','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026655724273664,'API_22efdcedf5b1c33ae42e24c4b3c8574f','新建接口人','新建接口人','cmii-uav-process','/process/task/config/createContactPerson','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026655904628736,'API_00faed59b54dd5d393df5697b073d2a1','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026656508608512,'API_badf434ff9d68bed3167b2281e985f9f','新建任务-任务名称是否已存在','新建任务-任务名称是否已存在','cmii-uav-process','/process/task/manage/isExistTaskName','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026656705740800,'API_4de1bec4b470d64f0533261cf217d04a','修改流程实例节点审批人接口【页面接口】','修改节点审批人接口,修改流程后续审批人','cmii-uav-process','/process/audit/modifyNodeAssignee','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026656881901568,'API_27481bc15fdac3ed8bd4aaf9b0367270','查询任务类型集合','查询任务类型集合','cmii-uav-process','/client/taskdispatch/queryTaskTypeMap','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026657171308544,'API_f311697d40d6259884b4bca181888973','页面调试启动新流程','页面调试启动新流程','cmii-uav-process','/process/bizengine/manage/flowinst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026657716568064,'API_59c2e318823d1cd11b630c3935fed60f','工作流实例ID列表','工作流实例ID列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryProcInstIds','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026658161164288,'API_00e6210b02681a766e9d52b3b4030107','查询用户剩余年假天数','查询用户剩余年假天数','cmii-uav-process','/process/bizengine/testTask/leave/queryAvailableDay','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026658471542784,'API_66e293664ad8ca26a8a87bc640a175bd','批量删除流程实例','批量删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/batchDeleteProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:54',NULL),(392026658731589632,'API_6ac0ce1d6d36e7d4974f2245170da367','详情-查询关联作业列表','详情-查询关联作业列表(用于选择作业)','cmii-uav-process','/process/task/mytask/queryRelateMissions','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:56',NULL),(392026658991636480,'API_bb6f9709c5d46299110e10895eb80622','health','','cmii-uav-process','/cmii/health','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026659432038400,'API_0cf1476dfee47c99bc516adfdbf06f49','改派任务审批人接口【页面接口】','改派任务审批人接口,修改当前任务审批人','cmii-uav-process','/process/audit/modifyAssignee','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026659654336512,'API_90addc53fb012539245f320c350821cf','getDocumentation','','cmii-uav-process','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026659905994752,'API_30bf98218376680d09033fb90c863194','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/batchDeleteTaskDef','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026660367368192,'API_b534eac3ef1568a0825fae7799621e66','接口单位列表','接口单位列表(company-scope)','cmii-uav-process','/process/task/config/queryUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026660681940992,'API_9e5206d846fbbb230ed08eafcdfe6eee','填写请假信息','填写请假信息','cmii-uav-process','/process/bizengine/testTask/leave/fillLeaveInfo','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:56',NULL),(392026660925210624,'API_07aee7fc15102bcbd91d5fbe329c44eb','转换为系统流程','转换为系统流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2SysProcess','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:56',NULL),(392026661151703040,'API_324cbc3392d368a7ca5105ea91eba7b8','转换为自定义任务','转换为自定义任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2CustomTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:54',NULL),(392026661327863808,'API_7b149af39d0c6d9a095694909dcde07e','创建作业与任务关联关系','创建作业与任务关联关系','cmii-uav-process','/client/taskdispatch/createRelateMission','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026661625659392,'API_4c1fe164e334b4f74359a66329dca6d0','查询任务运行状态列表','查询任务运行状态列表','cmii-uav-process','/process/bizengine/manage/taskInst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026661868929024,'API_bd48906e98f8465f993763426f36c79c','查看任务运行日志详情','查看任务运行日志详情','cmii-uav-process','/process/bizengine/manage/taskInst/getTaskLogDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026662296748032,'API_960696a7d3e59da77231e92e121b868b','我的待办-派发单位下拉列表','我的待办-派发单位下拉列表','cmii-uav-process','/process/task/mytask/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026662472908800,'API_9559cc99e0361bce3a3151a398003521','流程图展示','流程图展示','cmii-uav-process','/process/bizengine/manage/flowinst/getflowchartInfo','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026662711984128,'API_9309bfc518f9f0efe6bd31aebf038617','部署工单模型','部署工单模型型','cmii-uav-process','/client/taskdispatch/deployeeTaskorder','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:58',NULL),(392026663257243648,'API_999cad19905bb05d78aff49f33cf5602','任务运行记录列表','任务运行记录列表','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:54',NULL),(392026663928332288,'API_5502a36a40c778b245ae28c6fda8e208','获取分享码','获取分享码','cmii-uav-process','/process/task/manage/getShareCode','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026664272265216,'API_159bc7fdcddcf6e4797d6e2f3858788b','取消关联作业','取消关联作业','cmii-uav-process','/process/task/mytask/deleteRelateMission','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:54',NULL),(392026664465203200,'API_3a877970f526e0030b3010e086d4f267','查询调用组织信息(选择公司)','查询调用组织信息(选择公司)','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartTenantInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026664653946880,'API_ab7a976cd1a7d4d60097caea1b4d22d4','新建任务-任务类型下拉列表','新建任务-任务类型下拉列表','cmii-uav-process','/process/task/manage/queryTaskTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026664968519680,'API_f58ad6540ac37ed06aa849814e36d2dd','重新提交驳回流程【驳回流程修改后重新提交接口】','业务端后台重新提交驳回流程【驳回流程修改后重新提交接口】','cmii-uav-process','/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026665144680448,'API_4bd306322678108e17076c6f48fa5ee3','周期工作流任务-执行记录','周期工作流任务-执行记录','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowHisList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:55',NULL),(392026665371172864,'API_c18ab41099e26fb9ac52c44df14136c0','swaggerResources','','cmii-uav-process','/swagger-resources','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026665543139328,'API_6ec142d4ef3bb75c68be9a88b5474977','任务名称列表','任务名称列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026665736077312,'API_6ebd19fa69f437d23e937843a2298104','查看用户对某个流程的权限【个人关联流程】','查看用户是否具有访问某个流程的权限【个人关联流程】','cmii-uav-process','/process/power/getPermission','GET,POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026665983541248,'API_7b8131ac7fc3599b06be6bc2d6b1de5c','撤回','撤回','cmii-uav-process','/process/task/mytask/revokeTasOrder','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026666231005184,'API_6bd7bc3ccf337d76a3f5d7519a5c8797','查看工作流实例详情','查看工作流实例详情','cmii-uav-process','/process/bizengine/manage/flowinst/getFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026666407165952,'API_da39b0086c93277f985f32d6a2f37b9b','重跑(重跑流程实例中的任务)','重跑(重跑流程实例中的任务)','cmii-uav-process','/process/bizengine/manage/flowinst/reRunTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:57',NULL),(392026666910482432,'API_64439cca335e9e460770b8a05dd7ca64','流程ID&名称列表','流程ID&名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypeInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026667166334976,'API_9ca9fe3f5e324443156cbcfdb1936ac8','工作流实例列表','工作流实例列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026667397021696,'API_20cb5b6e7d41633b1bc95f83fb54b737','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/flowdef/batchDeleteProcessDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026667782897664,'API_779f024ff303fa04f91b3bf87bd09c52','发送告警短信','发送告警短信','cmii-uav-process','/process/bizengine/tools/sendWarnSms','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026668139413504,'API_1655e22e5646825c5fbd6e9c4f0a8d6e','通过分享码获取工单信息','通过分享码获取工单信息','cmii-uav-process','/public/process/task/manage/getTaskInfoByShareCode','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026668311379968,'API_e183c185836be177513c41d6246c471d','任务名称下拉列表','任务名称下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderNameList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026668495929344,'API_62b89922617c45d15aa148b25e447ea3','周期工作流任务列表','周期工作流任务列表','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:59',NULL),(392026668969885696,'API_4d03daa6fa787ec9e294503d00abb7e4','删除流程定义','删除流程定义','cmii-uav-process','/process/bizengine/manage/flowdef/deleteProcessDef','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026669141852160,'API_c803dba959c31a6a1dcd5b0db3815f55','任务转派','任务转派','cmii-uav-process','/process/task/mytask/assignTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026669552893952,'API_48730966a2b25b53f7bb703b48b202a2','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026669737443328,'API_2cd52ff401214bba6a8bcb3c0ee37e71','转换为自定义流程','转换为自定义流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2CustomFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026669913604096,'API_c8a558c4664e0aa2c44aa4c35555355f','任务详情','任务详情','cmii-uav-process','/process/task/manage/queryTaskOrderDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026670081376256,'API_d4f43279aa43f3fbed1af1c41981a2b8','获取资源锁','获取资源锁','cmii-uav-process','/process/bizengine/tools/lock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026670370783232,'API_ec9fb300367fadba871b6a400f41531d','任务ID列表','任务ID列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026670567915520,'API_a9080f5832e65d0d77c22391c8dc4781','关联作业','关联作业','cmii-uav-process','/process/task/mytask/createRelateMission','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:59',NULL),(392026670949597184,'API_549d96a51fd03d65c5403a7119c4b462','任务操作','任务操作','cmii-uav-process','/process/task/mytask/operateTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026671247392768,'API_7a72800e4a72398506e07780bbc11d2b','微服务名列表','微服务名列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryServiceNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026671431942144,'API_2d79c7a7000e43219ef3d42df281edd2','新增任务类型','新增任务类型','cmii-uav-process','/process/task/config/addTaskInfo','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026671599714304,'API_853387ffa0d8144515d87609a27066ea','流程进度','流程进度','cmii-uav-process','/process/task/manage/queryProgress','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026671784263680,'API_c68009430dc1db2573d96872c0602437','可选接口人列表','可选接口人列表','cmii-uav-process','/process/task/config/queryOpContactPersonList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026672249831424,'API_15bd50e9ea74e908cd6e9d785ea91a53','env','','cmii-uav-process','/cmii/env','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:56',NULL),(392026672392437760,'API_85231ad75fadd028dc3bd7bfb4341711','工作流配置列表','工作流配置列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryFlowDefList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:59',NULL),(392026672920920064,'API_12469c1465e7f5a432fe945abff7fa90','批量删除周期任务实例','批量删除周期任务实例','cmii-uav-process','/process/bizengine/manage/periodflowinst/batchDeletePeriodProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026673206132736,'API_b00e0773a4350108b4aff52efa5dc2cd','查询任务类型列表','查询任务类型列表','cmii-uav-process','/process/task/common/queryTaskTypeList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026673382293504,'API_f72569f8e318eddf19bf06a2312862a0','经理审批请假信息','经理审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/managerApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:56',NULL),(392026673583620096,'API_b9537d878adaaca679fc4ac238750692','流程ID列表','流程ID列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026674204377088,'API_1acf2555d6ebfc1e9e85735c3e723a63','选择用户信息','选择用户信息','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartUserInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:58',NULL),(392026674376343552,'API_4fdcf1f07680752edcbca7c4029669b9','新建工作流基础信息','新建工作流基础信息','cmii-uav-process','/process/bizengine/manage/flowdef/createFlow','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026674539921408,'API_b67caf989c8a32e44b8ccb65f1f5878d','释放资源锁','释放资源锁','cmii-uav-process','/process/bizengine/tools/unLock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026674829328384,'API_6305f358e44e33a38c3dec5fc6856c0b','查询某个任务类型关联任务列表(未完结任务)','查询某个任务类型关联任务列表','cmii-uav-process','/process/task/common/queryTaskList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026675022266368,'API_bbce007ee3dd32937395e37735db180d','queryTaskStatus','','cmii-uav-process','/client/taskdispatch/queryTaskStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026675689160704,'API_1277cd8e52f72e5a36744d05d33903bf','系统审批请假信息','系统审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/sysApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026675953401856,'API_558988e49b55fce10211c60d44cebc32','接口人列表','分页查询接口人列表','cmii-uav-process','/process/task/config/queryContactPersonList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026676200865792,'API_4ad2f392cff40a2cfe270918610ad891','查询流程实例运行状态列表','查询流程实例运行状态列表','cmii-uav-process','/process/bizengine/manage/flowinst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026676431552512,'API_94bdafc4561a0552cf36d934525dd6ea','queryTaskTypesMap','','cmii-uav-process','/client/taskdispatch/queryTaskTypesMap','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:58',NULL),(392026676788068352,'API_9428c59c4623f75b69d774d388e5a51f','ping','','cmii-uav-process','/cmii/ping','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026676968423424,'API_9b4c8009e239130dc492da82723dc1c3','活动日志列表','活动日志列表','cmii-uav-process','/process/task/manage/queryActivityLog','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026677152972800,'API_fc41db81d059e506876bbc207dff8dc1','查看流程定义详情','查看流程定义详情','cmii-uav-process','/process/bizengine/manage/flowdef/geFlowDefDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026677324939264,'API_558d40251bfea3942739f3eaa844947f','流程名称列表','流程名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026677614346240,'API_0614844af2518673e07aeaee51772b5e','新建任务定义','新建任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/createTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026677811478528,'API_94739fe015051a70b1d8206027c62574','修改工作流任务状态','修改工作流任务状态','cmii-uav-process','/process/bizengine/manage/periodflowinst/updatePeriodInstStatus','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026677970862080,'API_f227179e3d0427c0851d0b1263f915f3','备注','备注(备注任务工单)','cmii-uav-process','/process/task/mytask/remarkTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026678126051328,'API_4c3c7e261f5d40feb0f4567886cd3737','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/getProcessIsExist','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026678398681088,'API_50c5db92bdedc354bdbd39b4b4f347a2','下级单位列表','下级单位列表(任务转派)','cmii-uav-process','/process/task/common/queryChildUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026678583230464,'API_76f8502def5fb81ba61d84ea5ca3d1ca','编辑工作流定义','编辑工作流定义','cmii-uav-process','/process/bizengine/manage/flowdef/modifyFlowDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:54',NULL),(392026678759391232,'API_cb806b5622e15dfbe269203c9ef12f5a','通过流程实例ID删除流程实例【测试使用】','通过流程实例ID删除流程实例【测试使用】','cmii-uav-process','/client/process/deleteProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026678918774784,'API_b0554c7914636666aaf2d0672458a6cd','获取某个流程类型定义信息【流程配置信息获取接口】','获取某个流程类型定义信息,业务后台查询某个流程的定义信息','cmii-uav-process','/client/process/procDef/get','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:55',NULL),(392026679203987456,'API_b17cfa9e77b14474c016864348f42f8d','停止(停止流程及任务,传递任务记录id)','停止(停止流程及任务,传递任务记录id)','cmii-uav-process','/process/bizengine/manage/flowinst/stopFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:54',NULL),(392026679388536832,'API_4d3a4baeb1ac5ae600435063a101ef59','转换为系统任务','转换为系统任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2SysTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026679715692544,'API_63a129347e547aa26eaa88996cab12f1','查看详情','查看详情','cmii-uav-process','/process/bizengine/manage/taskdef/geTaskDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:58',NULL),(392026679879270400,'API_0c81f12bd0f555fe2eb9f25f0904ab15','查询流程状态【业务系统查询流程状态接口】','查询某个流程实例状态【业务系统查询流程状态接口】','cmii-uav-process','/client/process/getProcessStatus','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026680474861568,'API_169275344ae8193f7e3f3f39001776de','接口扫描','','cmii-uav-process','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026680692965376,'API_62e21c821e3740f2918b086b71cc2d57','任务管理-派发单位下拉列表','任务管理-派发单位下拉列表','cmii-uav-process','/process/task/manage/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026681015926784,'API_f4f6b5e0af2bae6f6e929d2ebe26e246','搜索任务实例ID','搜索任务实例ID','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskIds','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:54',NULL),(392026681204670464,'API_2c13bc5552897be9ee785e9c59eafb4a','待办任务-任务名称下拉列表','待办任务-任务名称下拉列表','cmii-uav-process','/process/task/mytask/queryMyTaskOrderNameList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026681510854656,'API_86160a1efa6f90824c0e01f7447d8649','任务类型列表','任务类型列表','cmii-uav-process','/process/task/config/queryTaskTypeList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:59',NULL),(392026681724764160,'API_cf33d53097f1c8df6caf8c970b6e5cf8','任务列表','任务列表','cmii-uav-process','/process/task/manage/queryTaskOrderList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026682119028736,'API_eefe61309016362694f2043f29bf5f7c','启停任务类型','启停任务类型','cmii-uav-process','/process/task/config/updateTaskStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:59',NULL),(392026682353909760,'API_0f10dcdb82f9057af49482767f33d284','备注列表','备注列表','cmii-uav-process','/process/task/manage/queryRemarkList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:59',NULL),(392026682538459136,'API_efea46ab4702f2c09a4b662bb4e4ccc3','createRSA','','cmii-uav-process','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(392026682685259776,'API_69aab0216c9b217b1d957ed16ce35500','删除任务定义','删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/deleteTaskDef','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(392026682962083840,'API_10f490ebe891b22cee598c79f627cbfa','查询任务名集合','查询任务名集合','cmii-uav-process','/client/taskdispatch/queryTaskNameMap','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:56',NULL),(392026683134050304,'API_2fec2f93fde350a2d1262ab45e9060cd','启动新流程(Feign接口)','启动新流程(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:56',NULL),(392026683314405376,'API_5f619b28121b671745531c411f10d367','查询某个任务类型关联任务列表','查询某个任务类型关联任务列表','cmii-uav-process','/client/taskdispatch/queryTaskList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:55',NULL),(392026683775778816,'API_5f79d730928c488904fbd3fbb907d8fa','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/taskdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(392026684421701632,'API_c1d8b8f5139a674e8d5bce56b3ea9bf6','新建任务','新建任务','cmii-uav-process','/process/task/manage/createTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:55',NULL),(392026685008904192,'API_4c015162fbae6652dcf6591bec42b08f','删除任务实例','删除任务实例','cmii-uav-process','/process/bizengine/manage/taskInst/deleteTaskInst','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:59',NULL),(392026685185064960,'API_ba6c8739137a398a525cb5c0ce178924','接收单位下拉列表','接收单位下拉列表','cmii-uav-process','/process/task/manage/queryAcceptUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(397389423609380864,'API_fb535e6a5f8446b3c70233964ca3a714','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 06:03:42',1,'2023-07-21 06:06:56',NULL),(397403890686623744,'API_70451de6f2d237212ae05cf3d3af09ad','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 07:01:11',1,'2024-10-11 01:36:47',NULL),(403509268532953088,'API_c74077f23db45b670d2c57bd1b160bba','获取所有站址名称','','cmii-uav-tower','/station/queryAll','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-01-23 07:57:53',NULL),(403509268621033472,'API_2930d5b363671b708f2572459d4caa1b','securityConfiguration','','cmii-uav-tower','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-01-23 07:57:53',NULL),(403509268704919552,'API_706c1f8f43c24efa2f935c23fd33c520','接口扫描','','cmii-uav-tower','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-01-23 07:57:53',NULL),(403509268788805632,'API_415d7a5a95b463833f9aec4196dab4a5','删除质检记录','','cmii-uav-tower','/app/task/delete/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509268881080320,'API_73c9c8d846ba0d1f4c9a4b7ed0e48e84','新增任务','','cmii-uav-tower','/task/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509268960772096,'API_0198fd9efdd703c970944757226e0bcd','修改整改记录','','cmii-uav-tower','/app/task/edit/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269040463872,'API_395c8121e66868a4ec9a7558768e9736','任务详情','','cmii-uav-tower','/app/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509269124349952,'API_343451246b698c816953c1df3bf7e182','获取所有基站','','cmii-uav-tower','/station/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269212430336,'API_c266bcc6a1030a108bb299c972cc721c','整改指派','','cmii-uav-tower','/app/task/assign','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509269308899328,'API_420b55e9a01e7d8e7e0be190d86c4c73','createRSA','','cmii-uav-tower','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509269401174016,'API_45e1bf1255999164b78f8c6e285e5a9c','getDocumentation','','cmii-uav-tower','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509269480865792,'API_f9f15d2d759370d78bd1b4b27d7e2f9c','获取我的所有任务','','cmii-uav-tower','/app/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269564751872,'API_d95d29380c0dd15ef2695dc49d68ec69','获取所有质检人员','','cmii-uav-tower','/task/queryMan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269640249344,'API_7bb8b4622c154ce1a35e506f6e4a4a33','uiConfiguration','','cmii-uav-tower','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269728329728,'API_1eed62e68c5aa0238a654069983e5d70','修改质检记录','','cmii-uav-tower','/app/task/edit/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509269858353152,'API_e62f5d103a8aa2493d10eb9678cdec32','ping','','cmii-uav-tower','/cmii/ping','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509269938044928,'API_3cac512eccbfe61733175de852a1cd4a','获取我的整改记录','','cmii-uav-tower','/app/task/query/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270017736704,'API_08d1e7bfd25e6dc163bb596e409ae7bd','质检任务详情','','cmii-uav-tower','/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270093234176,'API_135fce405752689bb0a0fcf89de5d156','提交整改记录','','cmii-uav-tower','/app/task/add/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270172925952,'API_fc99ac31dca1e0d7e2e868dc354b672d','新增基站','','cmii-uav-tower','/station/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509270252617728,'API_63ac34f2d4d986397c0d5fc3f62c59fb','获取所有任务','','cmii-uav-tower','/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270336503808,'API_ebc11a24893b5b3d7551034b50c2f84e','编辑基站','','cmii-uav-tower','/station/edit','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270420389888,'API_59a84d2067daee031063a030ba5d318e','评论','','cmii-uav-tower','/task/comment','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509270495887360,'API_19b669a507e8eb1ab723751ad90b9bcd','整改任务详情','','cmii-uav-tower','/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509270621716480,'API_7e7d285262ddfd6de5e175f8241754b9','批量删除','传入主键','cmii-uav-tower','/station/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270697213952,'API_1252e593ebfc52448b59cd89eb6f7439','导出模板','','cmii-uav-tower','/station/exportTemp','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270776905728,'API_317ee8f3a83a3405c3f55d54d87048bc','error','','cmii-uav-tower','/error','',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270852403200,'API_d9ce908e367a68f422997efe7be52024','批量删除','传入主键','cmii-uav-tower','/task/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271011786752,'API_78ab9d475443f5c3fa79d36bb8bb0f19','获取我的质检记录','','cmii-uav-tower','/app/task/query/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509271091478528,'API_5871d2a5cebf299366cbec6ca838c79d','整改任务详情','','cmii-uav-tower','/app/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271234084864,'API_09afc31f49ba2a1420353d6f4d0aa39d','env','','cmii-uav-tower','/cmii/env','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509271313776640,'API_1dca133eca446b1ba61966d7592dc86d','getDocumentation','','cmii-uav-tower','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271519297536,'API_e07a98dd6644cde4e9410c14e2de4b6f','任务详情','','cmii-uav-tower','/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509271615766528,'API_9036e925e1c9af5ac40828d0bbc09a23','质检任务详情','','cmii-uav-tower','/app/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271691264000,'API_4a29f52f1d17a77aff3f7afa930190ba','health','','cmii-uav-tower','/cmii/health','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271775150080,'API_ddd9b90e3b5204e2d233187b91575d0f','删除整改记录','','cmii-uav-tower','/app/task/delete/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509271854841856,'API_60f55901bffbc7870b7f33e66e8fe63a','获取站址编码','','cmii-uav-tower','/station/queryCode','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509271934533632,'API_0f4c6d80f7a4846faef0085ce842ca2b','批量导出','','cmii-uav-tower','/station/export','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509272010031104,'API_51db34eff4456809f897fabcd13cb19c','是否接受整改','','cmii-uav-tower','/app/task/accept','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509272093917184,'API_691f10062842de100da49fcde8cf18b8','swaggerResources','','cmii-uav-tower','/swagger-resources','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509272211357696,'API_a397420224a67da28a8364430f9e72b5','提交质检记录','','cmii-uav-tower','/app/task/add/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509272303632384,'API_74093124089103f5d2669ed5dade38a4','导入','','cmii-uav-tower','/station/import','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403556497093296128,'API_816eeb506e5b54fb43ea92a1046ebf14','导出模板','','cmii-uav-user','/tower/user/export','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-10-11 15:37:13',NULL),(403556498750046208,'API_7d4711985b4ebadc120b8285f95dc130','用户列表查询','','cmii-uav-user','/tower/user/query','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-10-11 15:37:10',NULL),(403556499337248768,'API_b65eed5c0995ef8f97fb84f9cbe2038c','根据平台用户id获取用户详情','','cmii-uav-user','/tower/user/detail','GET',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-10-11 15:37:16',NULL),(403556500566179840,'API_94b2412b4d79336a22bc8933b3bea069','编辑用户','','cmii-uav-user','/tower/user/edit','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-10-11 15:37:15',NULL),(403556502625583104,'API_b64dcce937a6286e2a94d12a52d8ba72','删除用户','','cmii-uav-user','/tower/user/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-10-11 15:37:10',NULL),(403556504508825600,'API_c8367a0b0568ba4317e062c11c4b40da','导入用户','','cmii-uav-user','/tower/user/import','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-10-11 15:37:20',NULL),(403556508610854912,'API_9f1674c7927db03d091990f80d059736','铁塔用户注册','','cmii-uav-user','/tower/registry','POST',_binary '\0',_binary '\0','2023-08-07 06:29:29',1,'2024-10-11 15:37:12',NULL),(403556509030285312,'API_36840014be767bd1a9e9d2e6c45584a2','修改用户状态','','cmii-uav-user','/tower/user/updateStatus','POST',_binary '\0',_binary '\0','2023-08-07 06:29:29',1,'2024-10-11 15:37:10',NULL),(403556513455276032,'API_106d243cfb467c75e3a400be4b1496a1','获取所有用户','','cmii-uav-user','/tower/user/queryAll','GET',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-10-11 15:37:11',NULL),(403556516525506560,'API_eccff7373efd6a8f423c330bbd65efa2','新增分组','','cmii-uav-user','/tower/group/add','POST',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-10-11 15:37:15',NULL),(403556519297941504,'API_3760590b0cb1cad45077644dda1a59fc','删除分组','','cmii-uav-user','/tower/group/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:32',1,'2024-10-11 15:37:13',NULL),(403556519843201024,'API_c5e5023cd30f56ae42da979d135ca534','分组列表查询','','cmii-uav-user','/tower/group/query','GET',_binary '\0',_binary '\0','2023-08-07 06:29:32',1,'2024-10-11 15:37:15',NULL),(410005102455947264,'API_f223464a7cc50cd0acf9f5f76dc71302','查詢文旅景区仓库列表','','cmii-uav-device','/api/uav/house/queryHouseListForWenlv','GET',_binary '\0',_binary '\0','2023-08-25 01:33:54',1,'2024-10-11 01:36:53',NULL),(410077450110500864,'API_52a6391550538261f4538c55f116bb70','按id打码航线','','cmii-uav-grid-datasource','/coding/codingAirlineById','POST',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:25:27',NULL),(410077450580262912,'API_b7cfc8326098848ff43e813305e0a39d','根据ID删除地形数据','','cmii-uav-grid-datasource','/terrain/deleteTerrainById/{id}','DELETE',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:15:31',NULL),(410077450647371776,'API_f62ca4ccc54ee41be6f35f0bca7571c3','按id查询航线网格','','cmii-uav-grid-datasource','/coding/getAirlineById','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:25:28',NULL),(410077450882252800,'API_9e0177ac1b4c966a45aa5daccf81ff2d','设置默认地形','','cmii-uav-grid-datasource','/terrain/setDefaultTerrain/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:15:31',NULL),(410077451008081920,'API_7345f93556954bf9dae3c96c76cc89fa','获取网格编码','','cmii-uav-grid-datasource','/grid/point/getGrid','POST',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:25:28',NULL),(410077452513837056,'API_05928b9dccdc789fc96078721d011a19','检查是否有重名','','cmii-uav-grid-datasource','/terrain/checkRepeatName/{name}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:24',1,'2024-06-18 01:15:31',NULL),(410077452589334528,'API_74a3007ac1c1748d1d11816386f4ca0b','获取指定区域的外包矩形','','cmii-uav-grid-datasource','/custom/getGrid3dScope/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:24',1,'2024-06-18 01:15:30',NULL),(411119034113458176,'API_fb50f26d76871e866da1571f4a4cf807','停止视频拉流任务','停止视频拉流任务','cmii-uav-cloud-live','/client/live/open/stopDevicePullStream','GET',_binary '\0',_binary '\0','2023-08-28 03:20:16',1,'2024-10-12 09:42:36',NULL),(411540034802155520,'API_ace76fd3a2b3ab5cab9841655d0d8fd2','testDecrypt','','cmii-uav-user','/api/uav/uavTestPO/testDecrypt','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-10-11 15:37:15',NULL),(411540036354048000,'API_040650b60480a3574863bce890ebb3a1','创建单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/createCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-10-11 15:37:10',NULL),(411540037079662592,'API_e3b4643ec4d08fc9f978b12cc91111cd','按姓名手机号查询所有的用户','','cmii-uav-user','/user/queryAllByNameTel','GET',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-10-11 15:37:16',NULL),(411540039604633600,'API_27bf6b865e75a1b2d4b29d29f0b2e6fc','编辑单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/updateCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-10-11 15:37:15',NULL),(411540043652136960,'API_e1867ffdcc7c8f44f2694255779d56de','查询单个配置的详细信息','','cmii-uav-user','/api/uav/subject-config/getDetailById','GET',_binary '\0',_binary '\0','2023-08-29 07:13:12',1,'2024-10-11 15:37:13',NULL),(411540055618486272,'API_f3c37d1558da75187bc79fe68b18c05a','已经配置过的组织列表','','cmii-uav-user','/api/uav/subject-config/relatedCompanies','GET',_binary '\0',_binary '\0','2023-08-29 07:13:15',1,'2024-10-11 15:37:20',NULL),(411540056880971776,'API_5eb1a0adf4292ebc517515bf91e31284','查询单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/companyStatisticConfig','GET',_binary '\0',_binary '\0','2023-08-29 07:13:16',1,'2024-10-11 15:37:16',NULL),(411540062652334080,'API_ae46dd18ebf36e49f7ecea09822a8dcb','分页查询公司统计配置','','cmii-uav-user','/api/uav/subject-config/pageCompanyStatisticConfigs','POST',_binary '\0',_binary '\0','2023-08-29 07:13:17',1,'2024-10-11 15:37:08',NULL),(414436767879790592,'API_6ce8573fb4b28eb0db2a4ac33a4815d9','查询指定公司/机构范围内的在线无人机数量和列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineCntByCompanyId','GET',_binary '\0',_binary '\0','2023-09-06 07:03:45',1,'2024-10-11 01:36:48',NULL),(422089255560413184,'API_f3149a45616f048daf259220b2cc29c0','查询流程实例详情(Feign接口)','查询流程实例详情','cmii-uav-process','/client/bizengine/flowInst/queryProcInstDetail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:01',1,'2024-09-12 02:46:58',NULL),(422089256034369536,'API_ed51e178573028bcb61c3f9d42763492','我的待办任务(Feign接口)','我的待办任务','cmii-uav-process','/client/bizengine/flowInst/queryMyTaskList','POST',_binary '\0',_binary '\0','2023-09-27 09:52:01',1,'2024-09-12 02:46:55',NULL),(422089259775688704,'API_521dfebb8a734ab5248d51f946b1386f','我的历史流程(Feign接口)','我的历史流程','cmii-uav-process','/client/bizengine/flowInst/queryMyHisProcList','POST',_binary '\0',_binary '\0','2023-09-27 09:52:02',1,'2024-09-12 02:46:57',NULL),(422089263533785088,'API_e0dd7047b75740fcb40bbe460ac1746c','接收业务流程回调消息(Feign接口)','接收业务流程回调消息(Feign接口)','cmii-uav-process','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2023-09-27 09:52:02',1,'2024-09-12 02:46:56',NULL),(422089264783687680,'API_2e501c12cfa660df3c1a5bffdd1ff0bc','处理待办任务','处理待办任务','cmii-uav-process','/client/bizengine/flowInst/dealWaitTask','POST',_binary '\0',_binary '\0','2023-09-27 09:52:03',1,'2024-09-12 02:46:58',NULL),(422089265270226944,'API_581a8eae103a3d1ecc48196608116547','设置某个待办任务的办理人(Feign接口)','设置某个待办任务的办理人((Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:52:03',1,'2024-09-12 02:46:58',NULL),(422089269191901184,'API_6021071058d3134568d3b65c7d7aa7bd','设置某个节点待办人(Feign接口)','设置某个节点待办人(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskNodeAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:52:04',1,'2024-09-12 02:46:55',NULL),(422089273864355840,'API_5c4021d67d077255b5534713e8ae025a','查询当前任务的可执行动作(Feign接口)','查询当前任务的可执行动作(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/queryTaskPageActions','POST',_binary '\0',_binary '\0','2023-09-27 09:52:05',1,'2024-09-12 02:46:55',NULL),(422089278693310464,'API_621a751b43ecb816c48554694161f62d','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlaneTest','POST',_binary '\0',_binary '\0','2023-09-27 09:52:06',1,'2024-10-11 01:36:50',NULL),(422089283680337920,'API_431d8c15dd3897fafcaa9d0d427f59e7','根据编码更新对应的设备号','','cmii-uav-device','/api/uav/plane/UpdateSnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:07',1,'2024-10-11 01:36:49',NULL),(422089285932679168,'API_2511e978dacef70cca9ccdfbbfcfa1e9','根据编码列表查询对应的设备号','','cmii-uav-device','/api/uav/plane/querySnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 01:36:48',NULL),(422089305465552896,'API_361729bb14d7a6d36a0bc97d62c16495','查询公司/机构范围的机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHgrNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:12',1,'2024-10-11 01:36:48',NULL),(422089305750765568,'API_94c1fd325b05f2ae3aa81023a6b74833','查询公司/机构范围的载荷名称列表','','cmii-uav-device','/api/uav/load/queryLoadNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:13',1,'2024-10-11 01:36:42',NULL),(422089306505740288,'API_8597a6c5fabb7e6ffd0e82be7444b34b','模糊查询绑定无人机列表','','cmii-uav-device','/api/uav/hangar/queryBoundUavByCompany','GET',_binary '\0',_binary '\0','2023-09-27 09:52:13',1,'2024-10-11 01:36:42',NULL),(422089345494679552,'API_aa7338d3a944fa1fd3dad7b09316facc','获取组织额度情况(组织管理-详情-额度情况)','','cmii-uav-user','/api/admin/system/quota/getCompanyQuotaInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:22',1,'2024-10-11 15:37:12',NULL),(422089353237364736,'API_46648b88a004b4435bf256797b953520','redis-GetAndExpire','','cmii-uav-user','/api/uav/uavTestPO/testGetAndExpire','POST',_binary '\0',_binary '\0','2023-09-27 09:52:24',1,'2024-10-11 15:37:17',NULL),(422089359067447296,'API_ed6bef12ae7ea154859268ea4dfa2f7a','获取组织及子孙组织列表','','cmii-uav-user','/api/admin/system/quota/getChildrenCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:25',1,'2024-10-11 15:37:17',NULL),(422089371486781440,'API_d2b6aad1c28214428af54d51ae64194a','获取某个用户的指定平台菜单树组','','cmii-uav-user','/api/uav/resource/queryPlatformsGroupResourceTreeForUser','POST',_binary '\0',_binary '\0','2023-09-27 09:52:28',1,'2024-10-11 15:37:08',NULL),(422089374330519552,'API_047b7b5f5b6b912c98018b8e5945fb34','获取某个配额在各子组织使用情况','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfoInCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:29',1,'2024-10-11 15:37:13',NULL),(422089490923782144,'API_d0095163f3adc8cdff2659a9761b32dc','根据应用编码集合,获取集合详情','','cmii-admin-user','/client/v1/platforms/querySimpleAppsByCodes','POST',_binary '\0',_binary '\0','2023-09-27 09:52:57',1,'2024-09-09 09:14:18',NULL),(425661923425517568,'API_7f80559bf59c45500e2003734a02206d','createRSA','','cmii-app-release','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923521986560,'API_496c140d931270006608fc4ec7cb46e6','查询发布信息','','cmii-app-release','/version/info','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923593289728,'API_a1588f4475007d3b2740918f2828bc63','分页条件查询版本列表','','cmii-app-release','/version/version_info_list','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923719118848,'API_f1b7d301ae0f8d425c6adde56969a1bd','查询发布状态的版本详情','','cmii-app-release','/version/pub_version_info_detail/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923782033408,'API_09a62589d10c79e4a74bb29ca428d3a6','swaggerResources','','cmii-app-release','/swagger-resources','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923853336576,'API_a83afb5f3f628abd1af5e46b304dde82','删除版本','','cmii-app-release','/version/version_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923920445440,'API_966aaa19d5a4dc4df3e70ec3c82f68c4','更新发布标识','','cmii-app-release','/version/version_pub_info','PUT',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924008525824,'API_a52fe2b6f08d41f4dc4dc48a04be1ae9','新建版本','','cmii-app-release','/version/version_info','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924079828992,'API_a36b89b6c1320e56439a7a20b8ca0676','health','','cmii-app-release','/cmii/health','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924142743552,'API_99fb8418b53bc350edf763255a3bd510','uiConfiguration','','cmii-app-release','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924209852416,'API_495f5880e2eccc89d560948c48a09b46','获取版本查询条件列表','','cmii-app-release','/version/version_info_condition_list/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924276961280,'API_f8f4ae88fa75afd56267cde6b7dca76a','删除环境识别码','','cmii-app-release','/env_code/env_code_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661924339875840,'API_86b64c2b3a303565113224d96de8c4ee','getDocumentation','','cmii-app-release','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924415373312,'API_e7c4e910df1dd0ea458f3bc9f31ef3bc','更新环境识别码','','cmii-app-release','/env_code/env_code_info','PUT',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924520230912,'API_a1a48a54927e4313d2c5b63dbcd002d6','env','','cmii-app-release','/cmii/env','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661924616699904,'API_7bf68c2e30734848818c4ecbd41d18e6','新建环境识别码','','cmii-app-release','/env_code/env_code_info','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661924688003072,'API_2dec51f8971e3df957ad7aa41c584242','ping','','cmii-app-release','/cmii/ping','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924776083456,'API_06c0fe70654170e5e9ff13c1c3ee8c34','error','','cmii-app-release','/error','',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924994187264,'API_44129cebbcf2841b4bf039dd8ba50cec','分页条件查询环境识别码列表','','cmii-app-release','/env_code/env_code_info_list','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925065490432,'API_727057a04db0406dfb28604429a744c1','securityConfiguration','','cmii-app-release','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925178736640,'API_b32dbb106fb41ec57490f916950087fa','获取环境识别码查询条件列表','','cmii-app-release','/env_code/env_code_info_condition_list','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661925245845504,'API_3cb691e8e7aedd2a72b6aee74a75ca5c','接口扫描','','cmii-app-release','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925317148672,'API_fd7106ed46c5e4f7be35cfe58732c8d3','getDocumentation','','cmii-app-release','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925388451840,'API_d85837149d345af473da714f8ab5affb','查询版本详情','','cmii-app-release','/version/version_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661925451366400,'API_26ff55f09c7532c9a3f06f18f7a9cb05','更新版本','','cmii-app-release','/version/version_info','PUT',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661925522669568,'API_cd0b0037f3e746615ce1309d23a8ec55','查询环境识别码详情','','cmii-app-release','/env_code/env_code_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(429334606118387712,'API_415b4cf64ca90d148ac2731206ead54f','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/video/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-10-17 09:42:27',1,'2024-10-12 09:42:37',NULL),(434375280166830080,'API_91f82ae6c89317f8df56df0728a42ebf','指标考核-查询冲突列表','','cmii-uav-grid-datasource','/fightPlan/getIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:15:31',NULL),(434375281685168128,'API_e77fa4f440478b56fe5bc665f45f65c7','指标考核-飞行计划冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:15:31',NULL),(436914898620514304,'API_0474d50943fc00bdd34f3fe58a9f78a4','createRSA','','cmii-uav-alarm','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-07 07:43:49',1,'2024-10-11 05:48:25',NULL),(437667203896705024,'API_80d73ec6aad120c8c75530ad9ef7e2a0','视频数据回放-获取视频MP4列表','视频数据回放-获取视频MP4列表','cmii-uav-cloud-live','/video/playback/videoMP4List','POST',_binary '\0',_binary '\0','2023-11-09 09:33:13',1,'2024-10-12 09:42:33',NULL),(437677638947569664,'API_a4e1342ccb993859aea9214541f58d37','合成任务删除','合成任务删除','cmii-uav-cloud-live','/client/video/delete','POST',_binary '\0',_binary '\0','2023-11-09 10:14:41',1,'2024-10-12 09:42:38',NULL),(440115521070694400,'API_d6684750fcb631ea568e7e4b22ccc3b0','导入模板','','cmii-uav-tower','/task/exportTemp','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-01-23 07:57:53',NULL),(440115521313964032,'API_fb9c7cd82c909434806243fcfd609b4d','获取任务导出的进度','','cmii-uav-tower','/task/getExportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-01-23 07:57:52',NULL),(440115521825669120,'API_249ad875c3e09a7c9ab4f935adeab03d','获取导入的进度','','cmii-uav-tower','/station/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-01-23 07:57:53',NULL),(440115522911993856,'API_ed4881f58193ac7d83f01d82f6682257','批量导出','','cmii-uav-tower','/task/export','POST',_binary '\0',_binary '\0','2023-11-16 03:41:58',1,'2024-01-23 07:57:53',NULL),(440115523834740736,'API_2fac1d880847842e0e9c7aa052f023ae','导入','','cmii-uav-tower','/task/import','POST',_binary '\0',_binary '\0','2023-11-16 03:41:58',1,'2024-01-23 07:57:51',NULL),(440115523918626816,'API_9cf943b411919316e05cd6c414339147','获取导入的进度','','cmii-uav-tower','/task/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:58',1,'2024-01-23 07:57:55',NULL),(441648518693519360,'API_59db257ef928880cfc4e85b43feb70e1','更新状态','','cmii-uav-tower','/task/updateStatus','GET',_binary '\0',_binary '\0','2023-11-20 09:13:32',1,'2024-01-23 07:57:52',NULL),(444912369387307008,'API_e6c5ccd8853726730af93146a67fd45b','createRSA','','cmii-uav-developer','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-29 09:22:55',1,'2024-10-09 19:48:37',NULL),(444912419052060672,'API_4bb442278f884ecc85ed77efcb8d525d','视频数据回放-删除视频片段','视频数据回放-批量视频视频片段','cmii-uav-cloud-live','/video/playback/deleteOneSegment','POST',_binary '\0',_binary '\0','2023-11-29 09:23:07',1,'2024-10-12 09:42:37',NULL),(445269941303246848,'API_48241d454d248bf54c9266859e146b9f','查询短信发送状态【短信接口】','查询短信发送状态【短信接口】','cmii-uav-notice','/notice/sms/querySmsSendStatus','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941408104448,'API_b3cdb884b2c0854754eca7a34e5c2061','health','','cmii-uav-notice','/cmii/health','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941500379136,'API_7627b374809b8ed666c748b840d882b3','查询短信模板内容','查询短信模板内容','cmii-uav-notice','/notice/sms/queryTplContent','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941596848128,'API_6a4727c1496387561e4778626710e7bd','修改邮箱网关','修改邮箱网关','cmii-uav-notice','/mail/provider/update','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941701705728,'API_cc861af1002bea88a0270e3ccb53b2cc','修改消息模板','修改消息模板','cmii-uav-notice','/msgtpl/update','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941802369024,'API_973fce5234ef7aa00de1bb29d7351545','多机Http主动推送【内部接口】','多机Http主动推送【内部接口】','cmii-uav-notice','/personal/userwebmsg/httpSend','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941890449408,'API_a9bd72a2e167bc2d8af8cb9a0966059e','上架通知','上架通知','cmii-uav-notice','/bulletin/admin/online','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941974335488,'API_8f0b20d3c2c0d8ad9c4afff0c644b4ec','更新站内信为已读','更新站内信为已读','cmii-uav-notice','/personal/userwebmsg/updateRead','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942074998784,'API_cac7a84c29e01473084c0e9d11009e0c','getDocumentation','','cmii-uav-notice','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942167273472,'API_f691022d21fc192f65f91f48432dc74d','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUseInfo','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942255353856,'API_2a43ca1cc995b795cfdd2e7cba89608c','接口签名工具【内部程序接口】','接口签名工具','cmii-uav-notice','/open/sms/getSign','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942335045632,'API_923a86fc1f5ce5c386f896cef5a34a99','发送站内信接口【内部程序接口】','发送站内信接口','cmii-uav-notice','/webmsg/sendWebMsg','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942439903232,'API_0f9f75e5abbea5488509dfd74140ab95','发送邮件【内部程序接口】','发送邮,不支持附件','cmii-uav-notice','/email/sendEmail','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942653812736,'API_b5bff21546371e7426f95bfb4e1b1a23','下架通知','下架通知','cmii-uav-notice','/bulletin/admin/offline','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942779641856,'API_42d7da4f397a31d8bd8622b58c38df3e','用户查看个人消息设置信息','用户查看个人消息设置信息','cmii-uav-notice','/personal/userStatus/get','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943157129216,'API_43fb0ce190a6972aecb863eb4d249abb','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUserInfo','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943291346944,'API_68da79aee6254de6ba77db6ad1688251','发送短信开放接口【开放接口】','发送短信开放接口【开放接口】','cmii-uav-notice','/public/open/sms/send','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943379427328,'API_6e21d3a801467be33a7327c5c30e64eb','uiConfiguration','','cmii-uav-notice','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:43',NULL),(445269943463313408,'API_d4f074a123280040e3da73e2ede6e7ee','查看邮箱网关列表','查看邮箱网关列表','cmii-uav-notice','/mail/provider/list','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943652057088,'API_97ce015c363342714b4f248a0bdc85b6','查询用户站内信列表','查询用户站内信列表','cmii-uav-notice','/personal/userwebmsg/list','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943765303296,'API_3067cae2057121922fb5f2b67c811968','securityConfiguration','','cmii-uav-notice','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943853383680,'API_def9844866db8ce6faef02b9ed874205','删除邮箱网关','删除邮箱网关','cmii-uav-notice','/mail/provider/delete','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:43',NULL),(445269943941464064,'API_6e238fa282808b748a0cc9dec5b3cb49','发送邮件,推荐使用该接口【内部程序接口】','发送邮件,可根据用户设置策略发送,支持附件','cmii-uav-notice','/email/sendUserEmail','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944025350144,'API_505f74032fcab8963aa2b02e25395acf','新增邮箱网关','新增邮箱网关','cmii-uav-notice','/mail/provider/add','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944134402048,'API_c3430ae24d03166f2c26ba36660de815','通知列表','通知列表','cmii-uav-notice','/bulletin/admin/queryBulletinPage','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:43',NULL),(445269944230871040,'API_7943ac6919bf8b7f18bf4c832eae1649','createRSA','','cmii-uav-notice','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944314757120,'API_cc988446e9676c38d481736e556de32e','用户修改消息设置','用户修改消息设置','cmii-uav-notice','/personal/userStatus/update','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944402837504,'API_e7d64a1e371ebe9e834b153b0f1b6c0b','查询未读站内信总数','查询未读站内信总数','cmii-uav-notice','/personal/userwebmsg/getTotal','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944503500800,'API_6e5bd5ed66e139b9464550648a7480bf','删除消息模板','删除消息模板','cmii-uav-notice','/msgtpl/delete','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944604164096,'API_72f9819b95e5482bf342349d824b1c96','swaggerResources','','cmii-uav-notice','/swagger-resources','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269944688050176,'API_e6fddf458f19859d797d65972f36fc53','查询日志列表','查询日志列表','cmii-uav-notice','/msglog/list','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269944776130560,'API_d33da0df7d2281092f6735455254cdbb','查询看登录页公告信息','查询看登录页公告信息','cmii-uav-notice','/public/bulletin/queryLoginBulletins','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269944872599552,'API_76ccd83e540977796274ccdc37a36772','接收状态报告【短信接口】','接收状态报告','cmii-uav-notice','/public/sms/accept/statusReport','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269944964874240,'API_bf9c83d74209483dac5770204991d19c','新建通知','新建通知','cmii-uav-notice','/bulletin/admin/createBulletin','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945065537536,'API_7cf3a40b0f02ffb5df6c587f00721111','查看用户站内信详情','查看用户站内信详情','cmii-uav-notice','/personal/userwebmsg/get','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945149423616,'API_defe8dd2542f2caf6c5e6f4a8f3d240e','新增消息模板','新增消息模板','cmii-uav-notice','/msgtpl/add','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945237504000,'API_946ccc2d8fafc74ed3317ca6ca03f7c8','env','','cmii-uav-notice','/cmii/env','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945329778688,'API_0f715385bd1f51237af25d9d2f9bd3d5','查看消息模板列表','查看消息模板列表','cmii-uav-notice','/msgtpl/list','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945426247680,'API_d9e8775ed3f730d505d5c328a40c4ba9','接口扫描','','cmii-uav-notice','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945518522368,'API_21db4e1c2727093499291c13cbb09e86','ping','','cmii-uav-notice','/cmii/ping','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945614991360,'API_817d1565ed94920ad8d29cbe0ddf9d72','error','','cmii-uav-notice','/error','',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945711460352,'API_247945e0a93fa017daba83ace1ece570','发送短信接口【内部程序接口】','发送短信接口','cmii-uav-notice','/sms/sendSms','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945807929344,'API_d218c65f6f3c93d7181de2ff5ab00fb9','查看邮箱网关详情','查看邮箱网关详情','cmii-uav-notice','/mail/provider/get','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945891815424,'API_c166dca9ed3acb6eeac9f2b1f4ea2bfa','getDocumentation','','cmii-uav-notice','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946093142016,'API_06c3bb33f9318bbff134b2eb6f69b9ab','发送短信接口2【内部程序接口】','发送短信接口,提供公司ID','cmii-uav-notice','/sms/send','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946181222400,'API_d88293c84e0408e944447f15af0802fa','查看消息模板详情','查看消息模板详情','cmii-uav-notice','/msgtpl/get','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946265108480,'API_4a0bef68c91e2ff62a2b36ec9480261d','发送邮件【内部程序接口】','发送邮,支持附件','cmii-uav-notice','/email/sendAttachEmail','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946361577472,'API_44ceb32076998c560afa6c58006e7398','编辑通知','编辑通知','cmii-uav-notice','/bulletin/admin/editBulletin','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946529349632,'API_fc4c820a89a440dd275d502d45864159','通知详情','通知详情','cmii-uav-notice','/bulletin/admin/getBulletin','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(475352046755905536,'API_dc4f1ffd2565af16084e0a4ba6cbdb0b','createRSA','','cmii-uav-logger','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-02-21 09:19:20',1,'2024-10-15 02:44:48',NULL),(475352083542573056,'API_39a968804d4dc4bb243589caaf540fe1','无人机的视频流地址列表信息查询','','cmii-uav-device','/api/uav/plane/querySteamAddrByUavCode','GET',_binary '\0',_binary '\0','2024-02-21 09:19:28',1,'2024-10-11 01:36:44',NULL),(475352088152113152,'API_12ee30f7ec76fa4f5269c8e2e777d661','在线接收utmiss传输的数据','接收utmiss传输的数据','cmii-uav-device','/api/uav/utmiss/import','POST',_binary '\0',_binary '\0','2024-02-21 09:19:29',1,'2024-10-11 01:36:49',NULL),(475352089880166400,'API_0aab2f541a99763e199f3c8b09ad9f10','查詢查询所有在线(不区分公司)无人机列表','','cmii-uav-device','/api/uav/plane/queryAllOnlineUavList','GET',_binary '\0',_binary '\0','2024-02-21 09:19:30',1,'2024-10-11 01:36:45',NULL),(475352091968929792,'API_8a016e6c502c1e52c4b54736f93ae363','允许导入数据','允许导入数据','cmii-uav-device','/api/uav/utmiss/allow/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:30',1,'2024-10-11 01:36:43',NULL),(475352094745559040,'API_743eb529f9e8d7a9ec38c1dea6629d61','从MongoDB获取数据','','cmii-uav-device','/api/uav/utmiss/getUtmissFromMongoDB','GET',_binary '\0',_binary '\0','2024-02-21 09:19:31',1,'2024-10-11 01:36:45',NULL),(475352113561206784,'API_36079bab24b9cd7e4db8aedd82709c96','查询公司/机构范围的机库列表','','cmii-uav-device','/api/uav/hangar/queryHgrByCompanyId','GET',_binary '\0',_binary '\0','2024-02-21 09:19:35',1,'2024-10-11 01:36:52',NULL),(475352115020824576,'API_c2fecca5a1fcc6f7dcb42ff3a484b4d5','重载业务参数','','cmii-uav-device','/api/uav/plane/initSecParameter','POST',_binary '\0',_binary '\0','2024-02-21 09:19:36',1,'2024-10-11 01:36:52',NULL),(475352119970103296,'API_cc9f79e12f624ba4985ae4af1f17cefd','上传文件到Redis','','cmii-uav-device','/api/uav/utmiss/utmissUploadToRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:37',1,'2024-10-11 01:36:54',NULL),(475352120112709632,'API_ec3ca622720071176a3e8aa77a199427','统计UTMISS的数据','统计UTMISS的数据','cmii-uav-device','/api/uav/utmiss/utmissCnt','POST',_binary '\0',_binary '\0','2024-02-21 09:19:37',1,'2024-10-11 01:36:43',NULL),(475352121786236928,'API_8974ee82aaa4130ebae0977bcbf1fe31','上传文件到MongoDB','','cmii-uav-device','/api/uav/utmiss/utmissUploadToMongoDB','POST',_binary '\0',_binary '\0','2024-02-21 09:19:37',1,'2024-10-11 01:36:48',NULL),(475352127205277696,'API_17e82f04f875610d5a7764e010f6199b','从Redis获取UTMISS历史数据','','cmii-uav-device','/api/uav/utmiss/getUtmissHistoryFromRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:39',1,'2024-10-11 01:36:49',NULL),(475352127373049856,'API_c90a732d36204decf638594a3ff66357','禁止导入数据','禁止导入数据','cmii-uav-device','/api/uav/utmiss/forbid/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:39',1,'2024-10-11 01:36:51',NULL),(475352166522683392,'API_f6c70a8734f570edbc56fe74d6fd463b','更新配额模板','','cmii-uav-user','/quota/template/update','POST',_binary '\0',_binary '\0','2024-02-21 09:19:48',1,'2024-10-11 15:37:16',NULL),(475352169966206976,'API_3f9dfa4350247574a5b752fa1f27970c','根据id查询模板详情','','cmii-uav-user','/quota/template/detail','GET',_binary '\0',_binary '\0','2024-02-21 09:19:49',1,'2024-10-11 15:37:14',NULL),(475352173270269952,'API_daceb80a6f633f9c9f65653a1e9e1ca4','OMS完结待办任务','OMS完结待办任务','cmii-uav-process','/process/bizengine/manage/flowinst/completeTask','POST',_binary '\0',_binary '\0','2024-02-21 09:19:50',1,'2024-09-12 02:46:58',NULL),(475352182633005056,'API_d9873a8533f737c920b7458f519cdd57','游客列表','','cmii-uav-user','/api/uav/user/visitors','POST',_binary '\0',_binary '\0','2024-02-21 09:19:52',1,'2024-10-11 15:37:16',NULL),(475352191210356736,'API_6eeb1de83411bedf7a18052c6d4f5fa7','查询配额列表','','cmii-uav-user','/quota/template/listQuotaTypes','GET',_binary '\0',_binary '\0','2024-02-21 09:19:54',1,'2024-10-11 15:37:11',NULL),(475352209145200640,'API_ed9a9fd2df6424847b28e246a2f15b0f','列表查询','','cmii-uav-user','/quota/template/list','GET',_binary '\0',_binary '\0','2024-02-21 09:19:58',1,'2024-10-11 15:37:17',NULL),(475352211145883648,'API_8bd696a38af23e8d025fb9ce09131a28','创建配额模板','','cmii-uav-user','/quota/template/create','POST',_binary '\0',_binary '\0','2024-02-21 09:19:59',1,'2024-10-11 15:37:13',NULL),(475352216548147200,'API_7132224081bad97b07d8e8db28962d13','分页查询','','cmii-uav-user','/quota/template/queryPage','POST',_binary '\0',_binary '\0','2024-02-21 09:20:00',1,'2024-10-11 15:37:10',NULL),(475721665302233088,'API_e9d307a6f3e6529e1fa10ad9275ca92b','xxljobtext','','cmii-uav-device','/api/uav/utmiss/renewIndex','POST',_binary '\0',_binary '\0','2024-02-22 09:48:03',1,NULL,NULL),(475721665516142592,'API_c8abde6fece6a8c4ee8eca71bec97cae','删除Redis文件','','cmii-uav-device','/api/uav/utmiss/DeleteSimulateupload','GET',_binary '\0',_binary '\0','2024-02-22 09:48:04',1,NULL,NULL),(480060697082593280,'API_1888cac04e9e89c6297eaa69a3204876','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/AlarmIndexCount','GET',_binary '\0',_binary '\0','2024-03-05 09:09:49',1,'2024-03-05 09:09:58',NULL),(485819489968455680,'API_ec6b0e75e9b26a06646df1ab187f4c0d','初始化MongoDB','','cmii-uav-device','/api/uav/utmiss/initCollection','POST',_binary '\0',_binary '\0','2024-03-21 06:33:12',1,'2024-10-11 01:36:51',NULL),(488802206054088704,'API_002efb5279972803f12a46adafbdacbf','刷新数据字典参数','','cmii-admin-data','/api/admin/model/plane/initParameter','POST',_binary '\0',_binary '\0','2024-03-29 12:05:27',1,'2024-09-09 09:14:44',NULL),(490096542628970496,'API_3d5c11cc49cd8b34576282884e10c6ea','查询Redis有效数据','','cmii-uav-device','/api/uav/plane/getValDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:41',1,'2024-10-11 01:36:50',NULL),(490096543568494592,'API_09780129288cd9e0bc64f806b9694a3f','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavListByHngList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:42',1,'2024-10-11 01:36:50',NULL),(490096552292646912,'API_16f0a4bfbc2241eb670dd0a35540243f','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngListByUavList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:44',1,'2024-10-11 01:36:43',NULL),(490096557116096512,'API_2ff17773c003f845c871fdad610e03d8','查询Redis数据','','cmii-uav-device','/api/uav/plane/getDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:45',1,'2024-10-11 01:36:43',NULL),(492816263212171264,'API_28916f5fc274799c502f01a77ee9aa15','查询公司范围下的在线设备信息,供飞行监视使用','','cmii-uav-device','/api/device/surveillance/query_online_device_info','GET',_binary '\0',_binary '\0','2024-04-09 13:55:53',1,'2024-10-11 01:36:50',NULL),(492816268656377856,'API_b64b3d79d799159c4df8323f15c0cb00','查询公司/机构范围的复亚的在线且支持备降的机库列表','','cmii-uav-device','/api/uav/hangar/OnlineAndAltLandFoiaHgrList','GET',_binary '\0',_binary '\0','2024-04-09 13:55:55',1,'2024-10-11 01:36:42',NULL),(499552658620940288,'API_69af176eb55fc0a08e615e60fa73ec52','getImageCode','','cmii-uav-user','/api/uav/solution/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-10-11 15:37:17',NULL),(499552659950534656,'API_7e3474dee092054823eae022bb37e29e','delete','','cmii-uav-user','/api/uav/dynamic/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-10-11 15:37:18',NULL),(499552660244135936,'API_1e24f1367b80430ff750232e0eeaa54d','编辑名单','','cmii-uav-user','/api/uav/dynamic/editPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-10-11 15:37:12',NULL),(499552662135767040,'API_ec6a5a95ea95fdb5b3233863bc1fdb0f','编辑一个动态','','cmii-uav-user','/api/uav/dynamic/edit','POST',_binary '\0',_binary '\0','2024-04-28 04:03:56',1,'2024-10-11 15:37:18',NULL),(499552665470238720,'API_13466d8529da471067a0232d9d89981a','查询解决方案类型','','cmii-uav-user','/api/uav/solution/querySolutionType','POST',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-10-11 15:37:09',NULL),(499552668213313536,'API_acd6d406e0edbc0cc9c465733b69df1c','getImageCode','','cmii-uav-user','/api/uav/feedback/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-10-11 15:37:20',NULL),(499552669299638272,'API_4ff7fa2d154f49e153cfccf5e8f13c7c','获取用户分组名单','','cmii-uav-user','/api/uav/dynamic/queryAll','GET',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:19',NULL),(499552671019302912,'API_9320e1d2f70024f78547bf0b192c617f','sendRegisUavTelephoneVerifyCode','','cmii-uav-user','/api/uav/solution/sendRegisUavTelephone','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:14',NULL),(499552671560368128,'API_f91c522e105782518efce2e01e15f2e3','删除','','cmii-uav-user','/api/uav/feedback/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:12',NULL),(499552672722190336,'API_95eb3ded1a73e88c62d288a838c93c76','添加一个问题反馈','','cmii-uav-user','/api/uav/solution/addFeed','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:14',NULL),(499552673003208704,'API_0c87c68fc66fe21230208c1ad9c245b7','删除','','cmii-uav-user','/api/uav/solution/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:17',NULL),(499552673930149888,'API_9e8ed6f7c0e93abe33fab436e802b237','deletePeople','','cmii-uav-user','/api/uav/dynamic/deletePeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:14',NULL),(499552674190196736,'API_a3e9ad3e2aa0f019fe433894e77cde79','添加一个动态','','cmii-uav-user','/api/uav/dynamic/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:17',NULL),(499552674634792960,'API_a63978af4c0d155fdda5b50f9452e571','添加一个解决方案申请','','cmii-uav-user','/api/uav/solution/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:14',NULL),(499552674815148032,'API_3d91293b3df38da86d1a8e52dbb49faa','查询所有动态','','cmii-uav-user','/api/uav/dynamic/queryAllDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:14',NULL),(499552676945854464,'API_c2885c313cdbfc1912b18932b7225c66','查询解决方案','','cmii-uav-user','/api/uav/solution/querySolutions','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:18',NULL),(499552678107676672,'API_78cae55bde1a1a2af55c6aecc16f73a3','查询名单','','cmii-uav-user','/api/uav/dynamic/queryPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-10-11 15:37:16',NULL),(499552680515207168,'API_e6a0e7a0b59b2c5bb33cf7879849b1e8','查看信息','','cmii-uav-user','/api/uav/feedback/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-10-11 15:37:14',NULL),(499552680708145152,'API_710dbf2924a9dec5a4c0dd445a823383','查询动态','','cmii-uav-user','/api/uav/dynamic/queryDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-10-11 15:37:18',NULL),(499552681538617344,'API_d5a8dc07e5ad3b681f3b9e85e50b062c','导出查询结果','','cmii-uav-user','/api/uav/solution/export','POST',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-10-11 15:37:20',NULL),(499552681932881920,'API_2484faa0c56d9c5a0ba75d12f5cf4438','checkExist','','cmii-uav-user','/api/uav/dynamic/checkExist','GET',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-10-11 15:37:19',NULL),(499552683103092736,'API_b409c11776d8f135f796fc601af292de','查看详情','','cmii-uav-user','/api/uav/dynamic/detail','GET',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-10-11 15:37:12',NULL),(499552687637135360,'API_6567297316be22439a299a6dba48e364','查看信息','','cmii-uav-user','/api/uav/solution/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:02',1,'2024-10-11 15:37:20',NULL),(503266861784104960,'API_333e3e3f61a2fce410046633a2a80dd5','游客用户注册','','cmii-suav-supervision','/registry','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:33',NULL),(503266862056734720,'API_cc43a57031866396dbc337f85e46201d','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:33',NULL),(503266862270644224,'API_fd0f0cf45d0bae343e99f46009c9a463','根据区域id查询区域列表','根据区域id查询区域列表','cmii-suav-supervision','/civilMilitary/areaPlan/queryByHistoryIds','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:32',NULL),(503266862530691072,'API_3bfae6b5ec9ee6f9f969279d7daef5ca','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/app/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:35',NULL),(503266862736211968,'API_f274be45b391f6ffd8d5d2f7e025f7b3','新增区域','','cmii-suav-supervision','/areaPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:35',NULL),(503266862874624000,'API_de485d999f4874d868daa311c9210903','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:33',NULL),(503266863063367680,'API_3fe8fcc7e5c8474b127a8a4a822a9b84','用户登出','','cmii-suav-supervision','/logout','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:35',NULL),(503266863260499968,'API_6d47e40ec829a32e76a08bb2b12045ac','env','','cmii-suav-supervision','/cmii/env','GET',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-09-13 03:46:34',NULL),(503266863604432896,'API_f5c44436b52dc958ab0b0a3dd30ef84f','检测登陆验证码','','cmii-suav-supervision','/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:32',NULL),(503266863843508224,'API_f069d5680083a52e909c5186e0d997ab','更新用户名称','','cmii-suav-supervision','/profile/updateName','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:34',NULL),(503266864078389248,'API_beaa94e36a60af0d81e1efa0144f9a70','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/app/flightPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:33',NULL),(503266864392962048,'API_fb6075fa37a5e0469ddba87ac99d8184','查询区域下面子区域列表','','cmii-suav-supervision','/zydAirspace/subarea/list','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:33',NULL),(503266864665591808,'API_44c208ecd306e996277917090d6db40f','更新用户头像','','cmii-suav-supervision','/profile/updateAvatar','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:32',NULL),(503266864934027264,'API_5dbb319621d7ced2d3b459eb46cbc3ed','验证校验码','','cmii-suav-supervision','/checkToken','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:33',NULL),(503266865231822848,'API_b0ed9007d197f1d0fdaf482a71841ee4','删除监管用户','','cmii-suav-supervision','/supervisor/user/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:34',NULL),(503266865466703872,'API_b951953b73e61e8ea318ed057d559b79','根据code获取用户Token','根据code获取用户Token','cmii-suav-supervision','/permission/getToken','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:33',NULL),(503266865689001984,'API_a71bb5c893d5b05dffac9cf1ef847e5e','更具图片id获取图片code','','cmii-suav-supervision','/supervisor/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:32',NULL),(503266865902911488,'API_57a113ba3e0f837aab672c191d8fa44f','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/user/disable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:34',NULL),(503266866146181120,'API_aa175197db34b859cf7b21e0e82590d7','批量获取查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetails.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:33',NULL),(503266866431393792,'API_fbe61a5b5b5cc94212caa6cd4bcddc5d','监管用户登录','监管用户登录','cmii-suav-supervision','/supervisor/login','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:33',NULL),(503266866653691904,'API_139f9b6382a146553f718049ec275f8c','游客用户登录','游客用户登录','cmii-suav-supervision','/login','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:34',NULL),(503266866951487488,'API_4b187a6cba53f7a007a811c06a14819f','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/app/flightPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:32',NULL),(503266867232505856,'API_fc4e5577228b3e5a70c8e435bfab67c2','修改监管用户信息','','cmii-suav-supervision','/supervisor/update','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:35',NULL),(503266867513524224,'API_a3b807460228cc9c19b4a1fa28f29c3a','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-09-13 03:46:34',NULL),(503266867870040064,'API_a30127d11255958512f2f86cbad23bb0','根据code获取用户军民融合token','根据code获取用户军民融合token','cmii-suav-supervision','/permission/getCivilMilitaryToken','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266868163641344,'API_78e86c7b545ada097bfcbb860800e8ff','提交申请','','cmii-suav-supervision','/flightPlan/submit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266868448854016,'API_d814d729fb7585caa3f3a1b98b80fb64','删除区域','传入区域申请主键','cmii-suav-supervision','/areaPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:34',NULL),(503266868713095168,'API_6849451376c268b42de7e00e58ceb084','ping','','cmii-suav-supervision','/cmii/ping','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:34',NULL),(503266868960559104,'API_218034a999216813471b2f75584af9b6','查询所有机场','','cmii-suav-supervision','/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:32',NULL),(503266869166080000,'API_613eecfd9253532520098b2f8550b2df','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:34',NULL),(503266869321269248,'API_de5f42db49b0d865b0aeb5f8874fce45','获取ip经纬度','','cmii-suav-supervision','/app/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:34',NULL),(503266869518401536,'API_5721a50d39dc51ee5d1038ba7368176a','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/app/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:34',NULL),(503266869799419904,'API_a226e36beb0a2947695d07f37c61c6bc','执行更新邮箱','','cmii-suav-supervision','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:32',NULL),(503266870042689536,'API_66e1874d7b98d239fd09465fbf50797a','更新用户名称','','cmii-suav-supervision','/supervisor/profile/updateName','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266870306930688,'API_34a2f05d6ecd91656e9f5cda769612a0','分页查询','','cmii-suav-supervision','/flightPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266870659252224,'API_c3b928b0401d9d8ecfb6b59d7a0e3977','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/flightPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266870902521856,'API_6b7567ceb891a1055219639aa8ffd3b6','编辑修改空域申请','传入空域申请json字符串,需要有主键','cmii-suav-supervision','/zydAirspace/editAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266871074488320,'API_bf39f7edfcf6d195c5a83ee13ee58c07','手机验证码登录','','cmii-suav-supervision','/code/login','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266871347118080,'API_be4ef9c9fa5972aece54fdf47c7cd68d','获取所有计划名称','','cmii-suav-supervision','/flightPlan/getFlightPlanNames','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:33',NULL),(503266871657496576,'API_9a0c18a8a8d3777c9ef3567fdd0110ea','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/areaPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-09-13 03:46:34',NULL),(503266871904960512,'API_512e3aba0d2f55c1e8a63de62a452fa9','更具图片id获取图片code','','cmii-suav-supervision','/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266872097898496,'API_2e2433cfb06e1f643fc90534a7351bef','统计飞行计划','','cmii-suav-supervision','/flightPlan/count','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266872328585216,'API_396488c3c94c7beb85a7404412f1f5ca','获取用户详细信息','','cmii-suav-supervision','/supervisor/user/getUserDetail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266872580243456,'API_20cf9154c913bad4361a04698f2b4bab','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/flightPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266872915787776,'API_a1a8667eaf5a7363a25739c2caf5e53c','新增空域申请和时间段','','cmii-suav-supervision','/zydAirspace/saveAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:32',NULL),(503266873175834624,'API_a81eadbcceb1e1c753cdef23bf82bdcc','提交申请','','cmii-suav-supervision','/app/flightPlan/submit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:34',NULL),(503266873423298560,'API_f4daceebc64feceb452db713e5f05ca2','查询现在所有公司有效的区域-包括飞行计划成功的','查询现在所有公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentValid','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:32',NULL),(503266873687539712,'API_f789a7f9391b844d4bf06c97b3ca20f2','审批飞行计划','','cmii-suav-supervision','/flightPlan/audit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266873939197952,'API_f2e4e3172ea9d65bd8592cd016849989','查询所有状态列表','','cmii-suav-supervision','/zydAirspace/queryAllStat.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266874199244800,'API_4766ec583c0588243cf6ac1588ce797e','批量删除空域申请和时间段-n','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/deleteAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266874463485952,'API_1ea89600aae8fc4c25dcc375b80fc077','发送绑定手机号验证码','','cmii-suav-supervision','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:34',NULL),(503266874698366976,'API_24cfad60cff276799452cc532ad48585','判断区域名称是否重复','','cmii-suav-supervision','/civilMilitary/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266875042299904,'API_588d350c3d64e2ec50bbad8ecf910937','error','','cmii-suav-supervision','/error','',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:35',NULL),(503266875272986624,'API_0ca946fcc0b80154891022033d088f12','添加用户账号','','cmii-suav-supervision','/profile/addAccount','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266875533033472,'API_2c822f473adee2133c554741b48ec5f9','强制删除空域(测试调用)','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/forceDeleteAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:34',NULL),(503266875772108800,'API_99f1d094722c119b90f28dc4b0aacda7','游客认证申请同意','','cmii-suav-supervision','/supervisor/user/authAccess','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-09-13 03:46:33',NULL),(503266876082487296,'API_0d53a330385a97cfca14ac906661615d','查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:33',NULL),(503266876380282880,'API_6d0eab90bbd8ec2ae2a722e21a1c1d7e','申请更新邮箱','','cmii-suav-supervision','/profile/updateEmail','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:32',NULL),(503266876732604416,'API_bb50ad65d3c9f5dc6ca39919ce93203f','判断空域名称是否重复','','cmii-suav-supervision','/zydAirspace/judgeAirsNameRep.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:33',NULL),(503266877013622784,'API_9a817fa14bb7e5f51a69d1655a9b3308','重置密码,验证旧密码','','cmii-suav-supervision','/profile/resetPwd','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:34',NULL),(503266877344972800,'API_d672d3cf96c75e51736b5abc9dca42ee','获取机场区域以及禁飞区','','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:33',NULL),(503266877579853824,'API_25342285caaef784bef54becf99be880','根据token获取用户基本信息','','cmii-suav-supervision','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:33',NULL),(503266877831512064,'API_a80a322ee402abfd497995de9b521d36','批量查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/details','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:33',NULL),(503266878162862080,'API_ba635969d5856156769365246476f27d','getDocumentation','','cmii-suav-supervision','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:34',NULL),(503266878578098176,'API_cac0bbcc3d6c5d50f5b09ecf085f24b0','securityConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:34',NULL),(503266878947196928,'API_85df2c8534344ed605af130a15e7acd8','分页查询','','cmii-suav-supervision','/app/flightPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:34',NULL),(503266879228215296,'API_ff478bb1e86c8a09f21bad13ddc70023','uiConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:34',NULL),(503266879538593792,'API_bcfa1ca4a7e003ebd519892d7f58c6f4','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/disable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:34',NULL),(503266879798640640,'API_e2f5d58ca78ac8b129bbe9d8225eb54b','查询飞行计划详情(回填)','传入区域主键','cmii-suav-supervision','/flightPlan/detail/backfill','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:35',NULL),(503266880150962176,'API_4ea09400a61b86b6e825f14ba6d69e30','批量导出模板','','cmii-suav-supervision','/zydAirspace/downloadDoc.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-09-13 03:46:34',NULL),(503266880360677376,'API_aa985e09c31e4e428a70f3f5420077d5','验证绑定手机号验证码','','cmii-suav-supervision','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266880608141312,'API_4a889c8d9229c7d41cd5fbef1733738e','检测找回密码验证码','','cmii-suav-supervision','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:34',NULL),(503266880922714112,'API_6c37efaea2e802359a0b46cf054d2247','申报飞行计划','','cmii-suav-supervision','/flightPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:34',NULL),(503266881153400832,'API_e3debdef97e3a91be8c7b589276bfdb4','发送注册验证码','','cmii-suav-supervision','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266881354727424,'API_e91ba6f811542c75bc149692fbec571e','获取用户详细信息(数据回填专用)','','cmii-suav-supervision','/supervisor/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:34',NULL),(503266881564442624,'API_c76c3c428e4ed32f01a04a6ce85cab49','分页查询','','cmii-suav-supervision','/areaPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:34',NULL),(503266881799323648,'API_cbd150b1864fef46b3039bbb14346e76','createRSA','','cmii-suav-supervision','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266882030010368,'API_c87b29587893d91169b9585dd577028d','判断飞行计划名称是否重复','','cmii-suav-supervision','/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266882239725568,'API_63b893bb1922aeb76d517e954352ff21','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/user/enable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:34',NULL),(503266882533326848,'API_9c94fef7fd453ad19df4ec86d59544e2','增加监管用户','','cmii-suav-supervision','/supervisor/add','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266882751430656,'API_e2ce37ab81f0b149ea08d3857cf96713','按条件分页查询空域申请和时间段','','cmii-suav-supervision','/zydAirspace/queryByConditons.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:34',NULL),(503266883011477504,'API_f75ef00424f78b4273c9fb5d943f41f9','发送找回密码验证码','','cmii-suav-supervision','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266883271524352,'API_133c9d96c71c4a1e0eac936cd8aa4b81','模糊查询空域名称列表','','cmii-suav-supervision','/zydAirspace/queryAreaName.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:34',NULL),(503266883523182592,'API_beaa6d055f59d68b459662ae0889b796','验证解绑手机号验证码','','cmii-suav-supervision','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266883766452224,'API_9bce110b79fea5952fde30aca4d130d4','查询省份信息列表','','cmii-suav-supervision','/zydAirspace/province/list','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:35',NULL),(503266884022304768,'API_2aef5ebc84cc0564f0eab120ff450e7e','新增区域','','cmii-suav-supervision','/civilMilitary/areaPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:33',NULL),(503266884257185792,'API_17e849aa95a21501891e9f89668c1f24','监管用户列表','','cmii-suav-supervision','/supervisor/findPage','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-09-13 03:46:35',NULL),(503266884508844032,'API_e43e252fe18e33bae70774a90fd3b847','检测注册验证码','','cmii-suav-supervision','/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266884752113664,'API_c9d38aa3f77178450e2356ef4b7be7cb','强制删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/deleteForce','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266885003771904,'API_64d5e0077c373488dc566eb1a4647f45','health','','cmii-suav-supervision','/cmii/health','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:34',NULL),(503266885284790272,'API_595d7d29899f86b0230d63e573fff06a','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:34',NULL),(503266885565808640,'API_6c32a4d692529a8bd36ce4323f5c2b8f','getDocumentation','','cmii-suav-supervision','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:34',NULL),(503266885817466880,'API_975441f44b90576602168cc69691ac80','下载审批文件','','cmii-suav-supervision','/zydAirspace/getAppliFile.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266886119456768,'API_f957d1588853fcbef978cf6713ff7308','发送登陆验证码','','cmii-suav-supervision','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266886392086528,'API_b27a1b04d95f936fec102d05dca1a2f2','根据token获取用户基本信息','','cmii-suav-supervision','/supervisor/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266886706659328,'API_60bb537898c26548c549780e2781a8f7','获取空域申请和空域限制所有数据(仅包含政府监管空域)','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimitLocal.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266887084146688,'API_1b0e9fd6096c56a71b64f135757bf348','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/enable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266887398719488,'API_87ebd94fdf0ab87347b1f58a82fd38d3','获取图片验证码(图片)','','cmii-suav-supervision','/supervisor/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:35',NULL),(503266887801372672,'API_0db3446721b5fb89a5bd54571ed34051','发送解绑手机号验证码','','cmii-suav-supervision','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:33',NULL),(503266888124334080,'API_565375536d3767e9c6dfef29fd18441b','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/app/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:34',NULL),(503266888422129664,'API_da04c9d67235436d8577c5cb5cc8ed4c','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-09-13 03:46:35',NULL),(503266888728313856,'API_259da35f5a4f644aa1ba9fa8743bd4fd','查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:32',NULL),(503266889260990464,'API_3ee085d0ad4227df73cf0620336dae24','获取图片验证码(图片)','','cmii-suav-supervision','/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:33',NULL),(503266889562980352,'API_8463d03ffec886bcaeda1ab7cc7e525a','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/civilMilitary/areaPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:32',NULL),(503266889802055680,'API_8ff7cdd07e40b39948e521bb5d3d5b28','批量查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/details','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:33',NULL),(503266890057908224,'API_74c65819bdf9be30aad8c6e6c2fb63cf','查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:34',NULL),(503266890603167744,'API_db24b1e3aa5b1707a8c5b4aa797c8615','认证申请','','cmii-suav-supervision','/profile/authApplying','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:35',NULL),(503266891072929792,'API_b25d89aff393d393619441dd519f5ec1','查询现在某个公司有效的区域-包括飞行计划成功的','查询现在某个公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentCompanyValid','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:35',NULL),(503266891379113984,'API_80c3f20e24dfcfe8ca7c100a3af819b1','获取ip经纬度','','cmii-suav-supervision','/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:33',NULL),(503266891672715264,'API_94293bba2bec3138ef69bb641255faa4','swaggerResources','','cmii-suav-supervision','/swagger-resources','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:35',NULL),(503266892046008320,'API_38165104c0377341bbf83dda38d05c42','根据公司id获取飞行计划','','cmii-suav-supervision','/flightPlan/getByUavCode','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:34',NULL),(503266892436078592,'API_c5bd4ac70995607e5051f066e1257257','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/resetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:34',NULL),(503266892738068480,'API_2ad4fc1c609019c3f4c28198392a3f5a','找回密码','','cmii-suav-supervision','/profile/findPwd','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-09-13 03:46:32',NULL),(503266893014892544,'API_084f04040c61093a6c24768847650baf','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/civilMilitary/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:34',NULL),(503266893304299520,'API_dca2ed8e853203fff9d5e3268c4e8ba1','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:32',NULL),(503266893585317888,'API_d644e1c9a80fe1ac5a6697902794e32b','申报飞行计划','','cmii-suav-supervision','/app/flightPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:33',NULL),(503266893891502080,'API_a602624584a3a214310c2e10577c6bbd','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/user/resetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:35',NULL),(503266894185103360,'API_1a7237617f1bf56ce287d8a06bbe4993','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/app/flightPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:35',NULL),(503266894436761600,'API_787edcb3bd52a47c6bf392d4013cb725','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:34',NULL),(503266894671642624,'API_6649121fea2dda521df4237f14bf0cad','规划带状航线','','cmii-suav-supervision','/app/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:34',NULL),(503266894956855296,'API_6ccf466fa0d07e8fa045a7fe8ec86dbc','用户登出','','cmii-suav-supervision','/supervisor/logout','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:33',NULL),(503266895237873664,'API_a863d8197f08a3873927c0a1552087c9','删除监管用户','','cmii-suav-supervision','/supervisor/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:33',NULL),(503266895502114816,'API_e6f48213fb4b279fb7569b90c915b7b8','游客用户列表','','cmii-suav-supervision','/supervisor/user/findPage','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:34',NULL),(503266895820881920,'API_ab43e21c1dded0e5f0fbd055f7b3954a','查询所有配置列表','','cmii-suav-supervision','/zydAirspace/queryAllConfig.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:34',NULL),(503266896068345856,'API_bdc4ff25321301b0b87e8c947513a76e','查询空域详情-n(数据回填专用)','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do/fallBack','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:35',NULL),(503266896353558528,'API_e57e273f386c9972cab7ab6c390dbd60','判断区域名称是否重复','','cmii-suav-supervision','/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:34',NULL),(503266896592633856,'API_554fd3826aeb0680465248b3fef7f018','规划带状航线','','cmii-suav-supervision','/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-09-13 03:46:32',NULL),(503266897150476288,'API_db80e967db9509f1bc912036aa8c5d05','手动提交终审','','cmii-suav-supervision','/zydAirspace/manualAudit.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:32',NULL),(503266897431494656,'API_11a73dc8b76daededb65c2e4f8948893','查询所有机场','','cmii-suav-supervision','/app/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:35',NULL),(503266897666375680,'API_883ab85260a738f27f8bf1eb20612498','删除区域','传入区域申请主键','cmii-suav-supervision','/civilMilitary/areaPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:34',NULL),(503266897972559872,'API_578626ba41dc19e11d09258c5407f896','接口扫描','','cmii-suav-supervision','/api/scanner/scan','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:34',NULL),(503266898220023808,'API_f90a896ed4127a489772cf6fe81e1958','重新绑定手机','','cmii-suav-supervision','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:34',NULL),(503266898484264960,'API_0a830e8aed93b95dcc1eb608aff4171b','分页查询','','cmii-suav-supervision','/civilMilitary/areaPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:34',NULL),(503266898794643456,'API_e91ca6c38d721b7e6f74a656e86c0cec','判断飞行计划名称是否重复','','cmii-suav-supervision','/app/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:34',NULL),(503266899054690304,'API_5ad1bce0f2915d307c3d9083ddc2d9c1','验证校验码','','cmii-suav-supervision','/supervisor/checkToken','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-09-13 03:46:33',NULL),(528985562218233856,'API_9c36819beb2b811da6fcbbbd52b9e30d','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/cam/queryCamCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:46',1,'2024-10-11 01:36:54',NULL),(528985563002568704,'API_9417f3f0f1f8561c3cace109b462dd5d','是否存储批量修改','','cmii-uav-device','/api/uav/load/cam/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:46',1,'2024-10-11 01:36:42',NULL),(528985563946287104,'API_628a811f079baa456196dbab75ea5e4d','模糊查询本公司机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHngCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:47',1,'2024-10-11 01:36:49',NULL),(528985572716576768,'API_1faf25df1faabd41f19f26738670a3cf','模糊查询包括子公司的载荷名称列表','','cmii-uav-device','/api/uav/load/cam/queryCamName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:49',1,'2024-10-11 01:36:42',NULL),(528985580702531584,'API_d99d1f966d6d75d2be4be65d7f13b88d','分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryHngPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:51',1,'2024-10-11 01:36:50',NULL),(528985580895469568,'API_1f263ce73f00b6292804c0cda06ff4d9','是否存储批量修改','','cmii-uav-device','/api/uav/hangar/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:51',1,'2024-10-11 01:36:50',NULL),(528985587748962304,'API_e8114a3b7c4b3a6d0dd766ea46c220a5','分页查询摄像头载荷信息','','cmii-uav-device','/api/uav/load/cam/queryCamPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:52',1,'2024-10-11 01:36:47',NULL),(528985595588116480,'API_ef77b8da8ee48a98679033e3d78702a6','模糊查询本公司机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHngName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:54',1,'2024-10-11 01:36:46',NULL),(528985605629280256,'API_87fd458e94e1b3c3f98a5ec4e506226e','配置租户的时间','','cmii-admin-user','/tenant/config/setTenantToken','POST',_binary '\0',_binary '\0','2024-07-18 09:19:56',1,'2024-09-09 09:14:19',NULL),(528985623060807680,'API_14b43ce67002a575086eb0c7eb1bb524','创建token','','cmii-admin-user','/tenant/config/createToken','POST',_binary '\0',_binary '\0','2024-07-18 09:20:01',1,'2024-09-09 09:14:19',NULL),(528986468944052224,'API_c38cfbddc92b9fb9615b5282794e9bcc','视频文件数据来源-获取载荷名称列表','视频文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-10-12 09:42:31',NULL),(528986469371871232,'API_98c1122b10415f0dec6189333760f547','ts文件数据来源-获取记录列表','ts文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoSegmentList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-10-12 09:42:31',NULL),(528986472601485312,'API_44cb968928087b3f967a70520ff59363','ts文件数据来源-回放视频封面','ts文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getTsSegmentCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:23',1,'2024-10-12 09:42:34',NULL),(528986475596218368,'API_907518793367054d69d3150a4ac8f826','视频文件数据来源-回放视频封面','视频文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getMergeVideoFileCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-10-12 09:42:31',NULL),(528986475990482944,'API_ec28da84b512c2cbbc3e2cdbaed2e0a4','ts文件数据来源-播放M3U8文件','ts文件数据来源-播放M3U8文件','cmii-uav-cloud-live','/video/storage/manage/playM3u8','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-10-12 09:42:33',NULL),(528986477152305152,'API_feef712791bf923d14c608e01932550e','视频文件数据来源-获取视频文件记录列表','视频文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-10-12 09:42:33',NULL),(528986477756284928,'API_68464c2e0f1c8eacca6720c4bbe4a726','删除单个合成视频文件','删除单个合成视频文件','cmii-uav-cloud-live','/client/video/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-10-12 09:42:33',NULL),(528986478288961536,'API_4addc921e4951c0df245aab31f587d73','删除合成视频文件','删除合成视频文件','cmii-uav-cloud-live','/client/video/deleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:34',NULL),(528986478838415360,'API_331b402b2e51817b8d98d84bbae519cb','ts文件数据来源-删除视频片段','ts文件数据来源-删除视频片段','cmii-uav-cloud-live','/video/storage/manage/deleteOneSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:36',NULL),(528986479035547648,'API_92c8cd586c9d981a0e0623d340f18d2f','更新设备视频保存状态','更新设备视频保存状态','cmii-uav-cloud-live','/client/live/stream/updateDeviceVideoStatus','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:34',NULL),(528986480105095168,'API_018859c01d82db3a53dce1c26960d158','视频文件登记','视频文件登记','cmii-uav-cloud-live','/client/video/registerVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:32',NULL),(528986482005114880,'API_0bf71a6bb6a12e61a6c15155f94027bb','ts文件数据来源-获取载荷ID列表','ts文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:36',NULL),(528986482244190208,'API_94f0aedf71430a12b6854a3844f20288','视频文件数据来源-触发1条老数据修复(调试)','视频文件数据来源-触发1条老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairOneVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:33',NULL),(528986483481509888,'API_bfe6e994058029cb7f91a84d9654e8a9','视频文件数据来源-删除视频文件','视频文件数据来源-删除视频文件','cmii-uav-cloud-live','/video/storage/manage/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:36',NULL),(528986484299399168,'API_fd7d2db05a5cdecc4295e465a9c3cbe8','ts文件数据来源-视频下载','ts文件数据来源-视频下载','cmii-uav-cloud-live','/video/storage/manage/download','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:36',NULL),(528986484525891584,'API_e183e5a0cea8c2b6faf23532924f7464','ts文件数据来源-获取载荷名称列表','ts文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:31',NULL),(528986488929910784,'API_7d103b4d606da0093251d04eb272586a','ts文件数据来源-触发老数据文件大小字段修复(调试)','ts文件数据来源-触发老数据文件大小字段修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairTsSegmentFileSize','GET',_binary '\0',_binary '\0','2024-07-18 09:23:27',1,'2024-10-12 09:42:35',NULL),(528986491236777984,'API_de25611ea380c123af7a1ad22ea516b5','ts文件数据来源-批量删除视频片段','ts文件数据来源-批量删除视频片段','cmii-uav-cloud-live','/video/storage/manage/batchDeleteSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-10-12 09:42:35',NULL),(528986494487363584,'API_4698e84e7aa12ccecf4bcc61213840ce','视频文件数据来源-触发部分老数据修复(调试)','视频文件数据来源-触发部分老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairSomeVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-10-12 09:42:35',NULL),(528986498174156800,'API_2f7d245e3a311dad0dc361f0ddc80c3c','视频文件数据来源-获取载荷ID列表','视频文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:29',1,'2024-10-12 09:42:34',NULL),(528986500388749312,'API_6ea8bbd872a1a8a93b2296474efdbb1b','ts文件数据来源-通过id获取回放Token','ts文件数据来源-通过id获取回放Token','cmii-uav-cloud-live','/video/storage/manage/createToken','GET',_binary '\0',_binary '\0','2024-07-18 09:23:30',1,'2024-10-12 09:42:38',NULL),(528986510648016896,'API_ca5c86faab31a2ba429413bde4747319','视频文件数据来源-批量删除视频文件','视频文件数据来源-批量删除视频文件','cmii-uav-cloud-live','/video/storage/manage/batchDeleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:32',1,'2024-10-12 09:42:38',NULL),(541672701421158400,'API_b5a7f14153b7231270f84bdead91dac4','根据机库名称模糊查询机库信息【机库名称和机库编号】','','cmii-uav-device','/api/uav/hangar/queryHangarListByName','POST',_binary '\0',_binary '\0','2024-08-22 09:33:56',1,'2024-10-11 01:36:53',NULL),(543082696135802880,'API_22b970a07bc7f9b858d0c3ec9fc19ebc','同步公司无人机到监管平台-用于接口测试调用','','cmii-uav-device','/api/uav/plane/syncCompanyUAV','GET',_binary '\0',_binary '\0','2024-08-26 06:56:45',1,'2024-10-11 01:36:49',NULL),(543085397621080064,'API_9948c5fb3ae6171384f848a639d85260','应用信息接口统计查询','','cmii-uav-device','/open/interface/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085397742714880,'API_a997f0624ff6072968c99157ea4a5529','手机验证码登录','','cmii-uav-device','/code/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085397893709824,'API_667852302f77fa35e495e2817cbb171f','hello服务接口','hello','cmii-uav-device','/oapi/test/test2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085397981790208,'API_b3454b99b39819b7162228f7f4c472b5','查询所有的开发者','','cmii-uav-device','/api/uav/developer/queryAll','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398069870592,'API_6a47476f83ae858ba6316011ab7edde3','删除开发者','','cmii-uav-device','/admin/developer/deleteDeveloper','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398229254144,'API_5c0d18ee137d4c9583aad7ceccf15893','上传航线航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398476718080,'API_084c7c2455fda374a82e8bbdab2dda6d','生成接口版本的语言示例代码','','cmii-uav-device','/admin/interfaceVersion/buildLanguageSample','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398543826944,'API_43afe3fcf0ea9b7bd472182946fe67cf','查询应用日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppLog','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398602547200,'API_65abfaf6ea956fe99501de108f032df9','更新开发者的接口额度','','cmii-uav-device','/admin/appInterface/updateDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398682238976,'API_964ddda94b02c71f20ef2d7f65b5f141','批量删除实体','','cmii-uav-device','/admin/model/deleteBatch','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398770319360,'API_e3a6636fffe617d5cb77ee97c09dec68','结束火警信息','','cmii-uav-device','/oapi/mission/caseinfo/newcase/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398841622528,'API_5e88132853982d0096d42c51453b571c','过期接口查询','','cmii-uav-device','/open/appInterface/expire','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398967451648,'API_5158b08718bc40c8aec2f55cf1d8ba28','查询无人机分布情况','查询无人机分布情况','cmii-uav-device','/oapi/device/uav/plane/area/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399055532032,'API_249926bac448fc996928b30d903a79b2','发送找回密码验证码','','cmii-uav-device','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399143612416,'API_5ec9f1123a2ce15ec6712d015449deef','获取公司','获取公司','cmii-uav-device','/oapi/test/company_get','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399202332672,'API_0f4f05991657fe4123357a2d1b075990','找回密码','','cmii-uav-device','/profile/findPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399256858624,'API_7ecadfd54c5a99c0a7af577477fdb18b','开发者状态设置','','cmii-uav-device','/admin/developer/updateDeveloperStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399302995968,'API_7df3d8f845a62481658467566aa78a76','单个应用日志查询','','cmii-uav-device','/open/appInterfaceLog/queryById/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399449796608,'API_eb5384f8fe480bdb7db33bd69cd7c698','hello服务接口','hello','cmii-uav-device','/oapi/test/hello2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399516905472,'API_06f99998367e82c923ea4369de701750','获取接口类型列表','','cmii-uav-device','/admin/interface/getInfTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399785340928,'API_90cdfb0f6d907b78b7c568d502f21262','超额接口查询','','cmii-uav-device','/open/appInterface/exceed','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399873421312,'API_215139419d712ca0567579b61c32421e','查询开发者应用的接口列表','','cmii-uav-device','/admin/appInterface/queryDeveloperAppInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400011833344,'API_0ee1db5e3a71ef9bf55d059915617a7b','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400158633984,'API_e3d56348564e21431b37396391acf92c','测试的一个接口','','cmii-uav-device','/open/developer/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400242520064,'API_1547ffe370a00802b6bdd73197ec55dc','根据参数的请求类型,获取参数支持的属性类型','','cmii-uav-device','/admin/params/getTypesByParamType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400355766272,'API_cfd3c4e00d7e8e050f669f9bc718a2bb','模糊查詢有效的公司列表','','cmii-uav-device','/admin/app/queryCompanyList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400418680832,'API_be962a97ca8f557646ed5408639926d4','发送注册验证码','','cmii-uav-device','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400494178304,'API_d291d930c2c5c58e5673e2e9a2f51655','账号手机号密码登录','','cmii-uav-device','/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400557092864,'API_23b7e96bf71e175a28462a6ac809a72f','公司配置','','cmii-uav-device','/admin/app/updateAppCompany','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400620007424,'API_57f9358a01b1441985d52921ce078163','应用日志查询','','cmii-uav-device','/open/appInterfaceLog/query/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400737447936,'API_dd79c51369092a266474139a145fa500','删除一个接口','','cmii-uav-device','/api/uav/developer/resource/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400796168192,'API_617a542e7348e0aca4666f17fa0bcf5a','更新开放的接口','','cmii-uav-device','/admin/interface/updateOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400896831488,'API_1956520eab23482aac79172610537e70','通过应用ID查询接口信息','','cmii-uav-device','/open/interface/queryBy/appId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400968134656,'API_0a8af1319e8a427f411b1fa17a09c7db','检测找回密码验证码','','cmii-uav-device','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401018466304,'API_d55e68dda9d4833d4c8caf9a29bd4e22','查询支持的文件类型','','cmii-uav-device','/admin/params/getFileTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401077186560,'API_4330bd915aea75efff5a0ddcaffd5231','获取接口的示例语言','','cmii-uav-device','/admin/interface/querySampleLanguages','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401165266944,'API_f7e55608958c5b4f5ee37c5972944d04','接口状态设置','','cmii-uav-device','/admin/interface/v2/updateInfStat','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401219792896,'API_d6fae1606aa882168a06b75b20c6707d','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/batchUploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401324650496,'API_3851413d9e7715457b3c22bae556e89c','申请更新邮箱','','cmii-uav-device','/profile/updateEmail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401395953664,'API_1f4d61fddddb8c628c1e25c913669529','获取单个接口文档','','cmii-uav-device','/docs/getDoc','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401811189760,'API_08a69a85e4030ba975f338a46e03df30','接口版本状态设置','','cmii-uav-device','/admin/interface/updateInfOpenStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401865715712,'API_9322d1fcfbb3d492cae05b5e91e095e1','获取限制类型列表','','cmii-uav-device','/admin/interface/getLimitTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401932824576,'API_f92c106b9fcd8d0e4678fd1e428af613','查询内部接口标识','','cmii-uav-device','/admin/interface/v2/infCodeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402012516352,'API_182ad6f50aa498e7232b57f96b2b39de','配置接口','','cmii-uav-device','/admin/params/configInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402184482816,'API_4cbfe07c0c6d3317e3a7da21f32b7981','添加公司','添加公司秒速','cmii-uav-device','/oapi/test/company_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402255785984,'API_b6c94ebb46a0ca789c544ae91af45c49','应用中心重置秘钥','','cmii-uav-device','/open/app/reset/appSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402318700544,'API_45af1b3851683703872fabf203301f4f','list文档','','cmii-uav-device','/docs/docList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402369032192,'API_8e1caaaf63c47de0420d8f350b477f8d','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402415169536,'API_94833b0c5a16a4aadc8db39f19804138','查询接口默认额度','','cmii-uav-device','/admin/interface/queryInterfaceQuota','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402469695488,'API_61eeb6a7981ff281a90ae07d183fcdaf','接口日志查询','','cmii-uav-device','/open/appInterfaceLog/query/interfaceLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402545192960,'API_6c7fd1ff0f0cf24883c098d236f9ed66','注册一个开发者','','cmii-uav-device','/registry-for-test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402654244864,'API_aea6d823f58266b1e0d9e7a96b52a381','删除(测试接口),不暴露','','cmii-uav-device','/profile/test/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402733936640,'API_57eb200269325e96ecd3d49e69696c92','查询公司下所有无人机7日内作业记录','查询公司下所有无人机7日内作业记录','cmii-uav-device','/oapi/surveillance/fly/history/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402826211328,'API_290b6f946d70c7bc7f96323eaf3afb1e','获取请求结果列表','','cmii-uav-device','/admin/appInterfaceLog/getReqResultList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402889125888,'API_59fd6d5d10bbc98f7fb6faaa3e14cf6d','获取版本列表','','cmii-uav-device','/admin/interface/getVerFilterOpenInf','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402952040448,'API_2e8d996d698e153301438ee698b4e627','公司所属无人机分页查询','公司所属无人机分页查询','cmii-uav-device','/oapi/device/uav/page/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403010760704,'API_1f417c4d49600c9483c26fc44cc8654f','检测登录图片验证码','','cmii-uav-device','/verifyCode/checkImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403069480960,'API_04bcf6e5551f577342654d27996ec763','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-device','/oapi/surveillance/querySinglePlaneTrack/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403115618304,'API_3138ed368dbf92beb2904cc3e6c81354','查询支持的接口','','cmii-uav-device','/open/interface/querySupported','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403157561344,'API_dbaa1a31266af22e41348daa7bf42ee0','上传多架次无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403233058816,'API_0478002407683222df2b890bdcf7c577','查询公司下所有无人机7日内作业记录','','cmii-uav-device','/oapi/surveillance/queryHistoryTotal/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403291779072,'API_cbce3c99940cb8c36137c28d815e055a','应用中心编辑应用','','cmii-uav-device','/open/app/edit/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403354693632,'API_1a6e3330342f300451a2ca19b6fb2513','查询开发者应用详情','','cmii-uav-device','/admin/app/queryDeveloperAppDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403400830976,'API_d5b644994336696a14e561410caaf16b','删除实体','','cmii-uav-device','/admin/model/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403509882880,'API_68f3605a5fb03293cc8147b5d25bc597','创建密钥','','cmii-uav-device','/api/uav/developer/createSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403564408832,'API_ca231a76d69dd9151e05cf6dbad453fc','查询公司/所属机构获取无人机数量','','cmii-uav-device','/oapi/uav/queryUavCountByCompanyId/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403623129088,'API_57aaa50997a152d2ab2b53af43cf0ac1','发送解绑手机号验证码','','cmii-uav-device','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403677655040,'API_419fddfa8659237fe5d0a6015f193483','添加或更新多语言示例代码','','cmii-uav-device','/admin/interface/mergeSampleCodes','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403723792384,'API_88cdad8f212950e48e1bce48e8e0f3af','查询脱敏规则','','cmii-uav-device','/admin/params/getBlurRuleList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403769929728,'API_be1c37552263d701e4f4b1e1ac019c53','hello服务接口','hello','cmii-uav-device','/oapi/test/hello','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403845427200,'API_58a2231d464838aac14ca5325102967a','复亚作业上传文件','复亚作业上传文件','cmii-uav-device','/oapi/mission/oss/foiaUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403899953152,'API_a0d06c67145fd7c5347108a33a935d36','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/uploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403983839232,'API_86bb29e0a43436c7775ffd7397ce66fa','获取接口所属列表','','cmii-uav-device','/admin/interface/getInfGroupList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404139028480,'API_6624b2af0d7d230e55fde0589b97249a','查询单个飞机目前最新航迹数据','','cmii-uav-device','/oapi/surveillance/queryRealTimeInfo/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404206137344,'API_4044b84853cf230b988b4216b86373b2','更新实体','','cmii-uav-device','/admin/model/update','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404260663296,'API_6a941df64620f5947280e8376401a1e4','删除一个开发者','','cmii-uav-device','/api/uav/developer/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404306800640,'API_f4a88485785f26734cc7769cf0557fd4','查询平台基础指标接口','查询平台基础指标接口','cmii-uav-device','/oapi/basic/plat/bizInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404352937984,'API_0adc74bc22df384c8cbc7860d39bacf0','查询开发者应用接口日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppInfLogDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404424241152,'API_6cd3022a793bfbb30583fcb6857025f5','通过接口ID查询接口版本信息','','cmii-uav-device','/open/interface/queryVersion/interfaceId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404491350016,'API_ff7c0d84e8d20076bea4dd8d16d624d6','查询开发者应用列表','','cmii-uav-device','/admin/app/queryDeveloperAppList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404587819008,'API_03cd27281db8be928edf69ce4764ae08','查询开发者详情','','cmii-uav-device','/admin/developer/queryDeveloperDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404638150656,'API_b428c978248f4a35dc65b982ca3060b3','应用中心删除应用','','cmii-uav-device','/open/app/delete/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404713648128,'API_a52e2468f4666472e5ed608e73498fda','查询应用接口列表','','cmii-uav-device','/admin/appInterface/queryAppInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404835282944,'API_107fe2718678b900c70e70706b7168b7','发送绑定手机号验证码','','cmii-uav-device','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404919169024,'API_574b9ba5c6559cc5452fb297020bc4ce','应用中心主页查询','','cmii-uav-device','/open/app/homePage','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404990472192,'API_a6eca5f755ce833a55eb230a7d277793','查询接口服务信息','','cmii-uav-device','/admin/interface/queryInfServie','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405082746880,'API_077fd0ba780ca05a543a225aaa355cf6','验证token','','cmii-uav-device','/checkToken','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405166632960,'API_dd0a4000f702b4537ba4106e1d0751fc','通过设备号查询公司ID接口','通过设备号查询公司ID接口','cmii-uav-device','/oapi/device/uav/company/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405246324736,'API_f02f16bb0651b443a899a92b0e675172','应用中心设置回调地址','','cmii-uav-device','/open/app/redirect/setUrl','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405384736768,'API_a08fd7df587042c50e561f4c2610601a','根据token获取用户基本信息-敏感信息脱敏','','cmii-uav-device','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405468622848,'API_edcac3127696bb31f63d6a31eb1c4d20','查询接口列表V2','','cmii-uav-device','/admin/interface/v2/openInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405518954496,'API_fd403b4f0b3b815118d05f4fd62df9f8','全局统计本公司设备在线及简略详情','全局统计本公司设备在线及简略详情','cmii-uav-device','/oapi/surveillance/fly/total/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405581869056,'API_6b420b6cd90702af273ec1f8a75cc754','hello服务接口','hello','cmii-uav-device','/oapi/test/hello3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405636395008,'API_dfeb0c082537aa219d044ce2b4607b91','应用中心应用详情查询','','cmii-uav-device','/open/app/queryAppById','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405699309568,'API_57ffc88565558b5ad16ac821349ecc64','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405766418432,'API_72660c97aa4955edbe48e7bc1b166ee5','应用中心配置应用接口','','cmii-uav-device','/open/appInterface/configure/appInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405833527296,'API_fa4138e3f7b8fc64fefca8100f95f2a7','删除接口','','cmii-uav-device','/admin/interface/v2/deleteInf','DELETE',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405921607680,'API_141cb2eeccd77d098fd5defcf046e4da','获取接口选择列表','','cmii-uav-device','/admin/appInterface/getInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406001299456,'API_666076e8389d8bdb9c1673c2c66995e2','设备统计接口','设备统计接口','cmii-uav-device','/oapi/device/uav/count/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406051631104,'API_0b79665ae2e017fbd6a8dd0bea0d6ea0','发送登陆验证码','','cmii-uav-device','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406143905792,'API_facecd2ba5889dc8f012224a8d8234e4','更新接口缓存数据','','cmii-uav-device','/admin/interface/refresh','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406215208960,'API_75d46dc0c40249362c4a7a9d750313b1','通过设备号列表查询绑定信息接口','通过设备号列表查询绑定信息接口','cmii-uav-device','/oapi/device/uav/bound/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406273929216,'API_7c8bebce400bda4312128cf6a07efdf0','collect服务接口','collect','cmii-uav-device','/oapi/test/collect','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406349426688,'API_69c4c6b204d9ec3e4e3d23fa2f88a8f0','实体分页查询','','cmii-uav-device','/admin/model/query','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406450089984,'API_65f4debbcec32e3b76225066fcd395c6','查询开发者可用的开放接口','','cmii-uav-device','/api/uav/developer/resource/queryOpenApi','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406554947584,'API_5be9648ee4af6d39697fdc9fce4702c5','查询接口详情v2','','cmii-uav-device','/admin/interface/v2/interfaceDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406601084928,'API_98ee25c6c10aa7d7775f5f9e368ea825','查询所有实体','','cmii-uav-device','/admin/model/all','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406647222272,'API_558992bed1b604511d4f03c37a31d12e','上传无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406701748224,'API_a37243e55e41dc730532965f8ea0e0db','上传单架次无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406773051392,'API_9474d172fa5449a6373893f4c21e7bd2','应用中心单接口详情及调用情况查询','','cmii-uav-device','/open/appInterface/query/oneInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406823383040,'API_c8f089c2a0bc50504970a3eec1d4b628','添加实体','','cmii-uav-device','/admin/model/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406890491904,'API_76af8ca82ed6daea77d94dee396cf470','开发者应用接口调用统计表查询','','cmii-uav-device','/open/interface/invoke/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406961795072,'API_2638542b36b1e79f635028b7b8503256','接口详情,版本列表V2','','cmii-uav-device','/admin/interface/v2/infVersionList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407024709632,'API_d89dfeb204b75dc3ddbea4d424465a8b','检查是否有访问权限','','cmii-uav-device','/api/uav/developer/resource/check','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407087624192,'API_db42b753da1547e145568f76d32e7577','重新绑定手机','','cmii-uav-device','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407213453312,'API_0da68f2090fe13d30d43e470830c7b8e','设置接口版本号','','cmii-uav-device','/admin/interfaceVersion/updateInfVersion','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407314116608,'API_3d77798a4f897b5eb5e974a341b222af','根据接口版本ID,获取接口配置','','cmii-uav-device','/admin/params/getParamsConfigByVerId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407364448256,'API_a53b23499e23989701754474456da617','设置开放接口的默认额度','','cmii-uav-device','/admin/interface/updateInfDefaultQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407469305856,'API_ade56e487532d8f58e2bbca8cabe7992','即将过期接口查询','','cmii-uav-device','/open/appInterface/expire/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407603523584,'API_cc2499648f3e7cf3410f318672e47ddb','公司添加用户','公司添加用户描述','cmii-uav-device','/oapi/test/company_user_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407666438144,'API_58e2816541204276dd819cf50e48a005','冻结(测试接口),不暴露','','cmii-uav-device','/profile/test/freeze','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407737741312,'API_30b8d48a7181f95801420c96991132e5','执行更新邮箱','','cmii-uav-device','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407830016000,'API_6920952f4d8d1e20ae2c52e26956c877','上传无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/batchUpload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407892930560,'API_aeb24ce0709bc05e10d9a9a020f94790','按条件分页查询开发者应用接口信息','','cmii-uav-device','/admin/appInterface/queryDevAppInfPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408085868544,'API_9693a020cdda953697c9526e27d908dd','查询接口详情','','cmii-uav-device','/admin/interface/queryInterfaceDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408140394496,'API_2863e39bfc4c9983f727eb909d6bfbbc','查询每款无人机对应作业执行次数','查询每款无人机对应作业执行次数','cmii-uav-device','/oapi/mission/job/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408345915392,'API_dae39585a67460f1ea5e78172f5a98f0','查询单个飞机最新数据','','cmii-uav-device','/oapi/surveillance/info/realtimeInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408417218560,'API_369a429da33cdcf0c5b944e5d86ad256','查询平台最近12月每月无人机作业执行次数','查询平台最近12月每月无人机作业执行次数','cmii-uav-device','/oapi/mission/job/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408475938816,'API_f532af8b9e2300d0fda0f3f43ebf3c64','普通作业上传文件','普通作业上传文件','cmii-uav-device','/oapi/mission/oss/normalUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408530464768,'API_7bb67cee83c0b28bf7d50a945166a27b','开发者应用状态设置','','cmii-uav-device','/admin/app/updateDeveloperAppStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408584990720,'API_a7acb49b27405d143a0766afe9ca9935','即将超额接口查询','','cmii-uav-device','/open/appInterface/exceed/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408639516672,'API_000d992a047736227893c569eb107c5e','按限制类型查询接口列表','','cmii-uav-device','/admin/interface/queryOpenInfListByLimit','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408698236928,'API_e77aa6d23dee04357b75babccf53f363','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408744374272,'API_0b7f303c7b319864441f89c29f8ff65c','根据属性类型,获取属性的限制类型','','cmii-uav-device','/admin/params/getLimitsByPropertyType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408786317312,'API_4d28d8d160204f57a5aefe7a776e422d','验证绑定手机号验证码','','cmii-uav-device','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408853426176,'API_1d02a19252314b9bbcc15a7ea200db7b','新建接口V2','','cmii-uav-device','/admin/interface/v2/createOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085408912146432,'API_07ee41af1d7978077c6977bcd6f117dd','获取应用对应的所有接口列表','','cmii-uav-device','/admin/appInterface/getAllInfListByAppId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085408970866688,'API_8c0e1ae161f2d9bef3ecb8e984a22039','应用中心接口管理','','cmii-uav-device','/open/appInterface/query/allInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409037975552,'API_301c7f177ab9c38c5b3d430142388a51','查询开放的接口列表','','cmii-uav-device','/admin/interface/queryOpenInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409092501504,'API_80314e58c1bb6473f7199fd222de701e','查询无人机实例总数接口','设备统计接口','cmii-uav-device','/oapi/device/uav/plane/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409134444544,'API_3f0ebc815624b71bb8726ea7650263c0','根据图片id获取图片code','','cmii-uav-device','/verifyCode/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409180581888,'API_b729b2523556e6da46748f44c6ed3984','接口版本列表','','cmii-uav-device','/admin/interfaceVersion/infVersionList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409222524928,'API_e94fed089656866dcdae8f87d94accac','获取所有接口列表','','cmii-uav-device','/admin/interface/getAllInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409272856576,'API_1753b15cadbc575ce733685f83e25737','hello服务接口','hello','cmii-uav-device','/oapi/test/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409314799616,'API_68027d93c4eff7b794fce78cc9261d4d','helloOMS服务接口','hello','cmii-uav-device','/oapi/test/helloOMS','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409356742656,'API_6d41da958445233eca23fd7d4f3d2db9','分组获取接口','','cmii-uav-device','/docs/list','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409398685696,'API_344e5ebde3c1d23eb02b8d0c7febe2d2','创建接口版本','','cmii-uav-device','/admin/interfaceVersion/createInfVersion','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409440628736,'API_f3d0bd6377aa1f6f940409f38e7029a6','账号退出登录','','cmii-uav-device','/logout','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409482571776,'API_027faf38a5d543ccdca02f0f3b38cd8e','上传火警信息','','cmii-uav-device','/oapi/mission/caseinfo/casefinish/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409579040768,'API_700a6eaf2e9f6bf64cfa7d6c6e0236ac','查询无人机的拉流信息','','cmii-uav-device','/oapi/surveillance/uav/steamAddrs/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409620983808,'API_6fa75f9f4c4a56ad7e558c9fb24a5595','获取实体详细信息','','cmii-uav-device','/admin/model/getModelDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409667121152,'API_73fed1e2e520d4a3593413261db71207','查询开发者的接口额度','','cmii-uav-device','/admin/appInterface/queryDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409717452800,'API_f1bb25873aea6fd9710d3be0fd9923da','创建一个开发者','','cmii-uav-device','/api/uav/developer/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409763590144,'API_3320a6b862ea0c70e0126ea0b2a23e99','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-device','/oapi/surveillance/plane/single/allTrack/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409809727488,'API_ba5b76f97ca1946575fb0cbf9c279c33','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409881030656,'API_5defc8e579529b73bed6cd688849d067','应用中心新建应用','','cmii-uav-device','/open/app/add/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409927168000,'API_37ef71f7f83115cf3b2c3c04d5090270','验证解绑手机号验证码','','cmii-uav-device','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409973305344,'API_7a3b0d70e39d59f8884bf15dc92dc237','接口文档接口','','cmii-uav-device','/docs/queryList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410015248384,'API_890cfe8d41a7d4ccffc05653ab7b63b0','获取接口未开放的版本列表','','cmii-uav-device','/admin/interface/','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410073968640,'API_4826824bb07036b1b994c3419353422a','查询平台最近12月每月飞行时长接口','查询平台最近12月每月飞行时长接口','cmii-uav-device','/oapi/mission/fly_duration/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410233352192,'API_84c536e250cf8d28129590b1f31fdf34','按条件分页查询开发者信息','','cmii-uav-device','/admin/developer/queryDeveloperPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410367569920,'API_e107149bf123ce8fae306122785fe216','获取接口的版本列表','','cmii-uav-device','/admin/interface/queryInfVerList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410434678784,'API_4a796da93b623f3b3fb5b3b050a5f73b','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410501787648,'API_c4508c515401c20f7e49d6b9d83eab3e','重置密码','','cmii-uav-device','/profile/resetPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410615033856,'API_34216cbf1fc376288c076b8ebbf7c580','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410707308544,'API_f226d4e60a81b0ba1584037cc5b339fd','开发者应用接口仓库查询','','cmii-uav-device','/open/interface/query/repository','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410837331968,'API_362c273fc0a25bf8a014159397bc22d5','注册一个开发者','','cmii-uav-device','/registry','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410912829440,'API_4584464031bc7c9bfc12836342976df0','获取请求时间列表','','cmii-uav-device','/admin/appInterfaceLog/getReqTimeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411017687040,'API_5446128d9ace9120cb0c76c2529458d4','添加一个接口','','cmii-uav-device','/api/uav/developer/resource/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411122544640,'API_dd7ff9e5ee3e2b503df0161c5243a5a5','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/airline/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411202236416,'API_15e65be6ad22938f6546cc5b554b19fd','新建开放的接口','','cmii-uav-device','/admin/interface/addOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411307094016,'API_23257b48677554f4bd76ec1940a90ed7','删除开放的接口版本','','cmii-uav-device','/admin/interface/deleteInfVer','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411395174400,'API_7364627a9d0eec31410c0f407da6cfb7','查询无人机视频回放','查询无人机视频回放','cmii-uav-device','/oapi/mission/uav/video/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(548188950706520064,'API_2dd7bde6ba81cc05d89d405cfc22999f','queryHistoryVagueByCId','','cmii-uav-user','/user/queryHistoryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2024-09-09 09:07:11',1,'2024-10-11 15:37:18',NULL),(548189005677068288,'API_79c0851480cbaf364565837b1448649f','根据用户id集合获取用户信息','','cmii-admin-user','/client/v1/user/queryByIds','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-09-09 09:14:21',NULL),(548189032180219904,'API_80fd400b18240c230596a361e327c623','获取机场区域以及禁飞区 Wgs84','','cmii-admin-data','/api/admin/arealimit/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-09-09 09:07:30',1,'2024-09-09 09:14:43',NULL),(548189032599650304,'API_edd1f20c8423bc5ebabdf422f6dd2a00','从Redis获取类型对应的有效字典明细的K-V','从Redis获取类型对应的有效字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValKeyMapFromRedisByType','GET',_binary '\0',_binary '\0','2024-09-09 09:07:30',1,'2024-09-09 09:14:43',NULL),(548193423188951040,'API_0fab114d29ab09bf0bb243525258e689','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmDetail','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:27',NULL),(548193423272837120,'API_cfab17a872576434e2d085792b4340b6','通过事件ID处理告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmIdNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:25',NULL),(548193423503523840,'API_195fb5899fa1e35092ee71e52c3e7c6a','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26',NULL),(548193423839068160,'API_3fba2693af9291a6434d9078de761854','上报安全告警事件','','cmii-uav-alarm','/api/uav/alarm/event/reportSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:25',NULL),(548193424153640960,'API_5768fa4743b4961fe3aa36fdaa178ee1','查询自己公司及子公司所属的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:27',NULL),(548193424388521984,'API_43f719feec3fa832bf1d4c8b37856292','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:25',NULL),(548193424581459968,'API_fb37e608252a8178582d9a851e8f5066','查询所有指定AlarmID的告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecByAlarmIdNoCompany','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26',NULL),(548193425592287232,'API_4d29e7f6ae861cb0f3d883f2df4e5b88','查询告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/queryConSecAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193425688756224,'API_454ec5c7dafd9ebf2956ba61b37624bc','查询指定对象的告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByObj','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193425751670784,'API_9b65820af66004d1b5a76b17fa416eab','管理告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/controlSecAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:24',NULL),(548193425873305600,'API_9038b1b0cc36168f7f707b131cbb49c4','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmId','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193425944608768,'API_4a17d58452a19cfaafe2575f3e3ab059','查询所有告警事件详情-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecDetailNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193426095603712,'API_2c3693e478d3f4576bec2aced8c6f8cd','查询所有在线告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193426326290432,'API_f6b91968d821c1c4413f36482e025ec1','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/secAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193426393399296,'API_6eac0d1829f778b3eab0436a28b6fdcb','查询自己公司及子公司所属的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193426464702464,'API_8ebb3db40953c69121e1ab9c0bc8d0a3','查询指定AlarmID的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByAlarmId','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:24',NULL),(548193426833801216,'API_253ff22d71d81bf89c929b75769b63c2','无人机下线之后处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByObj','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193427198705664,'API_00419b2f3d3e1e9d0acb7c8c94e41658','查询所有的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:25',NULL),(548193427706216448,'API_f3eedbc9d0a83ab0fc5258a87f2f0c0d','查询历史告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193427769131008,'API_8956785199d26bb5c70a942651140cdf','查询所有历史告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:25',NULL),(548193428012400640,'API_f062d3477042153e6e64d388dc5d86d3','一键处理所有告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelAllSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26',NULL),(548193428217921536,'API_3580cc836a060f01471c090f239b1baf','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:25',NULL),(548193428620574720,'API_8d77d76663433f4fa4a5731580119573','查询所有告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27',NULL),(548193428675100672,'API_c4c8dbafb227cdb2aaf70a68db26eb6b','查询所有的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27',NULL),(548193428750598144,'API_9c51a35849a0e91613cb2cad5eb3eeff','查询告警配置','','cmii-uav-alarm','/api/uav/alarm/query/secAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27',NULL),(548193428935147520,'API_2d6f18e63183a9836589fff31c76d25d','提供类型查询告警配置','','cmii-uav-alarm','/api/uav/alarm/querySecAlarmConfByType','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27',NULL),(553530019939745792,'API_f7747a26085eb3afb8802fba36691b5d','查询无人机和绑定的机库,设备号全等,不是模糊','以无人机为准,如果符合条件的多个需要调用方筛选','cmii-uav-device','/api/device/mqtt/query_uav_dock','GET',_binary '\0',_binary '\0','2024-09-24 02:50:41',1,'2024-10-11 01:36:52',NULL),(559670736605937664,'API_7c28d6eadadf46a8acdf7d7cb40e717e','生成告警事件ID','','cmii-uav-alarm','/api/uav/alarm/event/getEventId','GET',_binary '\0',_binary '\0','2024-10-11 01:31:42',1,'2024-10-11 05:48:26',NULL),(559670749687971840,'API_702c8ddee6da0a9dcd8e36be11f64747','查询自己公司及子公司告警指标统计信息','附带告警无人机统计Map<\"uasId\", count>','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCountAddUav','GET',_binary '\0',_binary '\0','2024-10-11 01:31:45',1,'2024-10-11 05:48:25',NULL),(559672221082451968,'API_cb4b0cb23f92f145e54d962085186016','aggregation','','cmii-uav-kpi-monitor','/uav/data/aggregation','POST',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL,NULL),(559672221745152000,'API_25269ec39b0142c36c8b3cad9253b5df','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL,NULL),(559672223255101440,'API_0322e5121b244a203dcea6cd6ffd6294','getDocumentation','','cmii-uav-kpi-monitor','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL,NULL),(559672223796166656,'API_c9970b8a7739b6447de97aba48dae12f','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL,NULL),(559672224827965440,'API_d9863c5d9b91c22fdc6bba2bba3f42cb','createRSA','','cmii-uav-kpi-monitor','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,NULL,NULL),(559672225524219904,'API_1de7a19a944d9c35111646d62956fe9b','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,NULL,NULL),(559672227420045312,'API_2fd6f4fc2e7777e66783708968c99038','getDocumentation','','cmii-uav-kpi-monitor','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,NULL,NULL); +INSERT INTO `sys_resource_api` VALUES (1,'API_a2fbec94a84e50e9540d7df7fdb8eb53','增加用户','','cmii-admin-user','/api/admin/user/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(2,'API_7405be329b1929632e39fa16621fc17e','修改用户信息','','cmii-admin-user','/api/admin/user/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(3,'API_bd1147301038043cf4469f3085c5e104','启用用户/解锁用户','','cmii-admin-user','/api/admin/user/enable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(4,'API_08f6ff378e58fdea11da9389d6ba954d','禁用用户/锁定用户','','cmii-admin-user','/api/admin/user/disable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(5,'API_a4a89846f89b0589eae57458eea0a9a4','用户列表','','cmii-admin-user','/api/admin/user/findPage','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(6,'API_457850c6e8b8647b0bde9c565be3c5df','获取用户角色','','cmii-admin-user','/api/admin/user/getUserRoles','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(7,'API_45afcd86be9dad0fae896696fc353782','根据token获取用户基本信息','','cmii-admin-user','/api/admin/user/getMyDetail','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(8,'API_33f2b0da3e8cfa2e17886559423672fc','获取用户详细信息','','cmii-admin-user','/api/admin/user/getUserDetail','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(9,'API_15e184ef09fbfd8acc9c084b8a4b3176','获取用户资源','','cmii-admin-user','/api/admin/user/getUserResources','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(10,'API_5a95440c2585b61632614f848037f770','以树形结构获取资源树','','cmii-admin-user','/api/admin/user/getUserResourceTree','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(11,'API_b534016a58c6a43563668c4ed76b3212','批量上传用户','','cmii-admin-user','/api/admin/user/userUpload','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(12,'API_fcbf80cada722ac002f464d3b3608e9a','用户重置密码','','cmii-admin-user','/api/admin/user/resetPassword','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(13,'API_40474a55aa0c2e17ef010f4f4831e66d','根据token获取用户基本信息','','cmii-admin-user','/api/admin/user/profile/getMyDetail','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(14,'API_bbcc09011b28e68b0ef18b04bdea4fc8','更新用户头像','','cmii-admin-user','/api/admin/user/profile/updateAvatar','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(15,'API_bcdf577bd1eecd0641386f6dd6b9f666','更新用户名称','','cmii-admin-user','/api/admin/user/profile/updateName','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(16,'API_17da63027d64f56a04000bfac6dae1fc','添加用户账号','','cmii-admin-user','/api/admin/user/profile/addAccount','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(17,'API_28e0104e8e85a6c1aea6fa87d9df980f','检查uri地址','','cmii-admin-user','/api/admin/resource/checkUri','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(18,'API_929cb1091d353ae1e30d7741fedd5a1d','获取平台(公司)的所有菜单以及按钮','','cmii-admin-user','/api/admin/resource/queryMenuAndAction','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(19,'API_5253c9e4ec5b0793657d7cd51ae27743','获取平台所有的资源列表(菜单,按钮)','','cmii-admin-user','/api/admin/resource/queryResourceList','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(20,'API_89e58517914b54923a7dbb1c4df91d65','获取平台所有的资源树(菜单,按钮)','','cmii-admin-user','/api/admin/resource/queryResourceTree','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(21,'API_ae3f020dd8a8b4ea9aeb45aec8cb4150','获取平台所有的资源树,并统计(菜单,按钮)','','cmii-admin-user','/api/admin/resource/queryResourceTreeStatistic','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(22,'API_bf39535961dd10ac41d2cf0b869309cf','增加菜单','','cmii-admin-user','/api/admin/resource/menu/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(23,'API_6c4dd1ba48e9d20aa238b7d15fef0c1d','更新菜单','','cmii-admin-user','/api/admin/resource/menu/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(24,'API_ae0149874d1be022d276a8f952a0964e','删除菜单','','cmii-admin-user','/api/admin/resource/menu/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(25,'API_89dce1246413a119fad48567c44aa8b9','查询所有菜单','','cmii-admin-user','/api/admin/resource/menu/queryAll','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(26,'API_2012728609d3f52f3361350310a41fe5','增加按钮','','cmii-admin-user','/api/admin/resource/action/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(27,'API_f45fa286ed39710c43ec96ad96cd6edd','增加按钮以及授权api','','cmii-admin-user','/api/admin/resource/action/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(28,'API_0239171cac0469d3ee785618b35d7387','更新按钮以及授权api','','cmii-admin-user','/api/admin/resource/action/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(29,'API_675d697d04ce1844ac695c4d5ee6cf14','更新按钮','','cmii-admin-user','/api/admin/resource/action/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(30,'API_937ad2f3950161c01a4f053882f794f6','删除按钮','','cmii-admin-user','/api/admin/resource/action/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(31,'API_87b728f12738c4847b4364212975b730','查询菜单下所有的按钮','','cmii-admin-user','/api/admin/resource/action/queryByMenuId','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:16',NULL),(32,'API_5ba27d99fcd40c1004e1c2de76163e51','查询按钮下面的所有api','','cmii-admin-user','/api/admin/resource/action/queryApiByActionId','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:18',NULL),(33,'API_f3e9c128565a214c1463ce79e845c362','给按钮授权api接口','','cmii-admin-user','/api/admin/resource/action/authorityApi','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(34,'API_e2f13b95ef2b36f92140ef9ea327aa0b','根据token获取用户基本信息','','cmii-admin-user','/system/checkPassword','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:19',NULL),(35,'API_f23c87839a3c265235dd6981331cff2d','下载用户批量导入模版','','cmii-admin-user','/system/file/userTemplate','GET',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(36,'API_7e6275223c3020c7a9e88e2e325d0d74','预览excel','','cmii-admin-user','/system/file/preViewExcel','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(37,'API_3315ca0ac8e3b2eb199a5516ffe62936','验证校验码','','cmii-admin-user','/checkToken','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(38,'API_8977263daa16b2de73c5898a46dcec50','用户登出','','cmii-admin-user','/logout','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(39,'API_933205804ba2c448e43b396d14adeacf','获取图片验证码','','cmii-admin-user','/getVerifyCodeImg','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2020-08-18 03:24:15',NULL),(40,'API_7940b56334acfb78c2ddb8b85326ae78','用户登录','用户登陆','cmii-admin-user','/login','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(41,'API_319c415fb6272df6a8bb3ffc8b50c61e','新增角色','','cmii-admin-user','/api/admin/role/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:17',NULL),(42,'API_30cc33511db6a38f36a93f56b156276f','修改角色','','cmii-admin-user','/api/admin/role/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:21',NULL),(43,'API_043fa21fa09400799b7853ec9fde6455','有效角色的列表','','cmii-admin-user','/api/admin/role/query','POST',_binary '\0',_binary '\0','2020-08-18 01:47:53',1,'2024-09-09 09:14:20',NULL),(44,'API_e194a3d9dbb99425d0e763080195729a','启用角色/解锁角色','','cmii-admin-user','/api/admin/role/enable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(45,'API_c8239bca952628c7a6896a81584e690d','禁用角色/锁定角色','','cmii-admin-user','/api/admin/role/disable','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:20',NULL),(46,'API_452d9a42e9a398b2956fa860b2d3a910','删除角色','删除角色','cmii-admin-user','/api/admin/role/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(47,'API_f57c5ea104ee4d7fbc1007f9c945217d','为用户赋予角色','为用户赋予角色','cmii-admin-user','/api/admin/role/saveUserRoles','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(48,'API_96d2d21138aacde61322f49dbf4a1668','为角色增加用户','为角色增加用户','cmii-admin-user','/api/admin/role/saveRoleUsers','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:20',NULL),(49,'API_c7af002522a5cf4ec9dad0d1cb2b0d4c','角色授权资源(菜单以及按钮)','角色授权资源(菜单以及按钮)','cmii-admin-user','/api/admin/role/authorityResource','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(50,'API_d2b298d66f9a5fae4bc9f6d453bdf6bb','角色分页查询','','cmii-admin-user','/api/admin/role/queryPage','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:18',NULL),(51,'API_5314dc15b5c3ef79095b36f921bdc13b','获取角色详细信息包括资源','','cmii-admin-user','/api/admin/role/getRoleWithResource','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:19',NULL),(52,'API_c4a2d6a367e53051a28cf43f35d09e3e','获取角色资源树','','cmii-admin-user','/api/admin/role/getRoleResourceTree','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:21',NULL),(53,'API_e6d2a6d76105df0d012f5b9af71791af','新增角色并授权','','cmii-admin-user','/api/admin/role/addAndAuthority','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:16',NULL),(54,'API_7da2efd424153cd8b6047cb9ef54ee47','修改角色','','cmii-admin-user','/api/admin/role/updateAndAuthority','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:19',NULL),(55,'API_747758b4cbedec7904cf83165fd5c26a','删除api','','cmii-admin-user','/api/admin/resource/api/del','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:16',NULL),(56,'API_8f71720903e3266139d5febe808bd1c2','查询出所有的api','','cmii-admin-user','/api/admin/resource/api/queryAll','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:19',NULL),(57,'API_cc1a6c3dd221a04d88225e5d9a6aefb1','查询出符合条件的API','','cmii-admin-user','/api/admin/resource/api/queryBy','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:17',NULL),(58,'API_6da30267aedd8a97e8476d1db9d58f8b','增加api','','cmii-admin-user','/api/admin/resource/api/add','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:20',NULL),(59,'API_d325a940ef158f6eb3bf9d59ccdef59a','更新api','','cmii-admin-user','/api/admin/resource/api/update','POST',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:17',NULL),(60,'API_b1feb54cd3eb78715046aaa92c2d6469','securityConfiguration','','cmii-admin-user','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2022-03-11 06:17:40',NULL),(61,'API_dddbc667725f7e9fa31c051c1e3ad9f6','uiConfiguration','','cmii-admin-user','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2022-03-11 06:17:40',NULL),(62,'API_bdb0db0e3417506e3dc8076ea0013be8','swaggerResources','','cmii-admin-user','/swagger-resources','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2022-03-11 06:17:40',NULL),(63,'API_955f59a3b08431afd7c60aa3adbad203','error','','cmii-admin-user','/error','',_binary '\0',_binary '\0','2020-08-18 01:47:54',1,'2024-09-09 09:14:21',NULL),(64,'API_eff815d75adeab75266d51f19c4eaa5c','查询出已经使用过的角色','','cmii-admin-user','/api/admin/role/querySelected','POST',_binary '\0',_binary '\0','2020-08-18 03:24:15',1,'2024-09-09 09:14:16',NULL),(65,'API_f5997fc0f6a7c23ff37a5097bcd815f2','获取图片验证码(文字)','','cmii-admin-user','/getImgCode','POST',_binary '\0',_binary '\0','2020-08-18 08:13:33',1,'2024-09-09 09:14:16',NULL),(66,'API_6bfcbe695515a46e5092c7d6496e901d','删除用户','','cmii-admin-user','/api/admin/user/delete','POST',_binary '\0',_binary '\0','2020-08-20 09:10:14',1,'2024-09-09 09:14:20',NULL),(67,'API_623a97adf1787f657b4bfaee2f096e72','管理查看流程列表【租户下所有流程】','管理查看流程列表【租户下所有流程】','cmii-uav-process','/process/list/processList','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(68,'API_1114d8041ccfb8339eb7935fc8ba9282','个人查看流程列表【个人关联流程】','个人查看流程列表【个人关联流程】','cmii-uav-process','/process/list/personalList','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(69,'API_e06ce07e7c5675b08857625d167bd512','重新提交驳回流程【驳回流程修改后重新提交接口】','','cmii-uav-process','/client/process/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(70,'API_f7955f527ba9e2bcdda3bb9baa0a7d75','启动新流程【流程实例创建接口】','启动新流程,业务端后台程序发起流程创建【流程实例创建接口】','cmii-uav-process','/client/process/startProcess','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(71,'API_70b3d400eb80a1b9690b4dd1decb56a2','获取某个流程类型定义信息【流程配置信息获取接口】','','cmii-uav-process','/client/process/client/process/procDef/get','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(72,'API_46e8d02d8764d540469cc53b96d010e1','获取某个流程类型的详细信息','获取某个流程类型的详细信息','cmii-uav-process','/process/start/procDef/get','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(73,'API_e37ad640561369415c8d63df72d05c38','新增流程模板实例','新增流程模板实例','cmii-uav-process','/process/config/add','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(74,'API_9a18721b0c11d492ee2ac765d434888e','查看流程模板详情','查看流程模板详情','cmii-uav-process','/process/config/get','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(75,'API_542c619f1d5f824e4f42b06dd28fdf98','修改流程模板信息','修改流程模板信息','cmii-uav-process','/process/config/update','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(76,'API_b282c4114f84b51c2969e4f4ebce1b9c','删除流程模板','删除流程模板','cmii-uav-process','/process/config/delete','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(77,'API_89afc8df9b924aaa9c5d141aed3466f0','查看流程模板列表','查看流程模板列表','cmii-uav-process','/process/config/list','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:54',NULL),(78,'API_3b39bdb3a9a386ee0ae0e50602ade9b1','查看流程列表【流程自动初始化】','查看流程列表【流程自动初始化】','cmii-uav-process','/process/manage/list','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(79,'API_b2b42ab1c418280a557fef46840e82fe','修改流程基础信息','修改流程基础信息','cmii-uav-process','/process/manage/update/baseInfo','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:56',NULL),(80,'API_75ba8f1ce8192c75ee9f3226e6f25846','查看流程配置详细信息','查看流程配置详细信息','cmii-uav-process','/process/manage/get/detail','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(81,'API_ec991d995a5d80b1eb62b255d012c7d4','修改流程节点配置信息','修改流程节点配置信息','cmii-uav-process','/process/manage/update/node','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:56',NULL),(82,'API_496eb853a337e034b54ff1e95a079d4a','查看流程节点配置信息','查看流程节点配置信息','cmii-uav-process','/process/manage/get/node','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(83,'API_bf6acf6806f9fbb0b11c38c61ec43780','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:56',NULL),(84,'API_e3fc55528e271f4dbb271d746a073737','模糊搜索用户列表接口[审批管理获取审批用户]','模糊搜索用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/search','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(85,'API_1703f5219dad8f4996685c38fdc268f0','审批流程任务接口【页面接口】','审批流程任务接口,用户对任务发起审批','cmii-uav-process','/process/audit/audit','POST',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:54',NULL),(86,'API_7530ee2404647eb8c11d70182c8a39ce','流程审核明细接口【页面接口】','流程审批明细接口,展示流程审批过程信息','cmii-uav-process','/process/audit/procInst/node/detail','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:54',NULL),(87,'API_d7009156f7913b2002131e2560c45832','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/detail','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:57',NULL),(88,'API_e0f17baadc09281bc2a44d8c94887c8b','生成流程图接口','生成流程图接口','cmii-uav-process','/process/audit/processDiagram','GET',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:55',NULL),(89,'API_369c1f6c5f1d82ffe2022eae2c49421e','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(90,'API_68668fe8c1c836b50875801ff65d1ca0','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(91,'API_c58cc36656b780acc71fe379a6ed895c','swaggerResources','','cmii-uav-process','/swagger-resources','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,NULL,NULL),(92,'API_5afe9893f53f3bec6fff6fc1b30ca37b','error','','cmii-uav-process','/error','',_binary '\0',_binary '\0','2020-10-13 01:18:37',1,'2024-09-12 02:46:58',NULL),(93,'API_bed26233fb97b8d186bc1955883ad00f','设置Redis的数据字典','设置Redis的数据字典','cmii-admin-data','/api/admin/dictionary/setDictRedis','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:11',NULL),(94,'API_ae31ca2fc44fd14b3e8e494cb6faca5c','从Redis获取类别对应的字典明细','从Redis获取类别对应的字典明细','cmii-admin-data','/api/admin/dictionary/getDictRedisByType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:15',NULL),(95,'API_2feb437ab841ebce098c4a071d84aadb','从Redis获取类别对应的有效的字典明细','从Redis获取类别对应的有效的字典明细','cmii-admin-data','/api/admin/dictionary/getValiableDictRedisByType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:18',NULL),(96,'API_f0d603eba30e16a56b72d312dcee2b78','从Redis获取所有的编码对应的所有语言值','从Redis获取所有的编码对应的所有语言值','cmii-admin-data','/api/admin/dictionary/getAllValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:13',NULL),(97,'API_5c8b4d4a2969efea39ddfffa0cfe2e75','从Redis获取所有的语言对应的字典明细的K-V','从Redis获取所有的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:16',NULL),(98,'API_930f5e5c7fbe6e30b57944ff17b8831e','从Redis获取所有的编码对应的本地语言的值','从Redis获取所有的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:12',NULL),(99,'API_cb86e886050ae21f962df8b9bb6d8530','check在Redis里面明细是否有效','check在Redis里面明细是否有效','cmii-admin-data','/api/admin/dictionary/checkValiableInRedis','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:19',NULL),(100,'API_31b549a1139985fc1c0dbc21eb6b24a6','check在Redis里面编码和名称是否一致','check在Redis里面编码和名称是否一致','cmii-admin-data','/api/admin/dictionary/checkMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:11',NULL),(101,'API_6267772257b61cefe234f9a5f2a89a96','查询某个区域详细属性信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/detail','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:14',NULL),(102,'API_d50850d131ccdbe9c070cebb638b31ec','查询省份信息列表','','cmii-admin-data','/public/api/admin/area/province/list','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:17',NULL),(103,'API_89cf3952de0bd4ae4b102d3b0ec04730','查询区域下面子区域列表','','cmii-admin-data','/public/api/admin/area/subarea/list','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:17',NULL),(104,'API_b3236d962e0982bef6ab9da493517f6c','主动触发更新(从高德地图)区域信息','','cmii-admin-data','/public/api/admin/area/refresh','GET,POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:14',NULL),(105,'API_5ee8bb154057edbb9a533bb0de8f2616','修改无人机类型信息','','cmii-admin-data','/api/admin/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:18',NULL),(106,'API_184313ace3c86c6b91ec302f3ff0524e','删除无人机类型信息','','cmii-admin-data','/api/admin/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:11',NULL),(107,'API_221340c1980b4ab2dcbac65d825bc27c','从无人机类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:14',NULL),(108,'API_d4198c9b8c990c36cf8d69bf82d25935','从无人机类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:13',NULL),(109,'API_b4bff552477e5c6b1af717cf54c1b2de','根据类型查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:17',NULL),(110,'API_cc7275a27199de74744502db1dd45d42','模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:12',NULL),(111,'API_03b7fa585f860fa5933f91be4a811e0b','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:13',NULL),(112,'API_76d5d4b2c2f147587b07cd432e8ca456','查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:14',NULL),(113,'API_46126a9079c1e989640b27f24723f897','模糊查询无人机型号列表','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:13',NULL),(114,'API_add4ec5281842a91f27e12737122676d','查询无人机形态列表','','cmii-admin-data','/api/admin/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:16',NULL),(115,'API_88d1e620f01eae55406970adea9275d2','查询无人机尺度列表','','cmii-admin-data','/api/admin/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-10-27 09:10:38',1,'2024-11-06 12:17:15',NULL),(116,'API_b0241abc0a3d6ce1ee149c7cab0e834a','查询无人机材料列表','','cmii-admin-data','/api/admin/model/plane/queryUavMat','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(117,'API_3e9f4b6e52461b3aa27a2ad8f9a8fde6','查询无人机接口列表','','cmii-admin-data','/api/admin/model/plane/queryUavInf','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(118,'API_7c5b59bfff93797cba7ce89bdd1d0aac','新增无人机类型信息','','cmii-admin-data','/api/admin/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(119,'API_eb31be32d9c3a40adbb4f12b63e02300','从机库类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(120,'API_d3f1a51c788084a2a74ec83331dcca34','从机库类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/hangar/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(121,'API_dccbf2a46c478eee49c61c16c772e472','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(122,'API_9f361f9fb967f4e757da4452ca730a1d','通过类型ID查询机库类型详情','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(123,'API_90760f07c8b56ff5094c6b7f8a9a61a4','模糊查询机库型号列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(124,'API_762f968c368fbd2c9d98a1b9cacbc25b','查询机库类型列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(125,'API_bc038b9711ca6bab9e1b557b57a2ff07','查询机库保护等级表','','cmii-admin-data','/api/admin/model/hangar/queryUavProtLevel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(126,'API_6e1e3b576ed81cfbe301f4b19c131c3a','新增机库类型信息','','cmii-admin-data','/api/admin/model/hangar/addUavHangarModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(127,'API_2df7cfdd028644189fb39c1fbfb8e5fe','修改机库类型信息','','cmii-admin-data','/api/admin/model/hangar/updateUavHangarModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(128,'API_f9dab58050666d3f087b5bd13906b4db','删除机库类型信息','','cmii-admin-data','/api/admin/model/hangar/deleteUavHangarModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(129,'API_a857b8606d5df8359d9fd8f319524902','根据型号查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,NULL,NULL),(130,'API_ef00e5ef79faaeea98b7dc1377cbcd99','根据生产厂家查询型号列表','','cmii-admin-data','/api/admin/model/hangar/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,NULL,NULL),(131,'API_0e34c8eca4382d7106b98f33f0e40550','提供机库型号查询机库型号信息','','cmii-admin-data','/api/admin/model/hangar/queryDetailByHungarModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:11',NULL),(132,'API_f7f835d6b5b5414a15e9367bfa686402','模糊查询机库生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(133,'API_d0a8b82a53afe76c478d1010dfe1ff01','添加字典类型','','cmii-admin-data','/api/admin/dictionaryType/add','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(134,'API_c5d7432a0e3bae534a3d6ea3665237e2','修改字典类型','','cmii-admin-data','/api/admin/dictionaryType/update','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(135,'API_f404be3fc6b1ecb26eaad3ab924efbb9','删除字典类型','','cmii-admin-data','/api/admin/dictionaryType/delete','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(136,'API_f3a90193680fa0f62a2ebf52db9c4fb4','字典类型列表','','cmii-admin-data','/api/admin/dictionaryType/query','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(137,'API_bb8f9d5366516b7bd1fd68b8871ba966','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/getDictName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(138,'API_4d0a53a39c735aa8ad90f5d3b268e245','类型对应的数据字典名称对应的key','类型对应的数据字典名称对应的key','cmii-admin-data','/api/admin/dictionary/getDictKey','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(139,'API_24d80fbba26c87978550f0e74599c525','获取字典里面语言对应的某个值','获取字典里面语言对应的某个值','cmii-admin-data','/api/admin/dictionary/getValueByLang','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(140,'API_52723d911feedd347c2c4dfea68a8c1d','字典属性上移动','字典属性上移动','cmii-admin-data','/api/admin/dictionary/moveUp','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(141,'API_3a03a398c5b5aca2112cc1ee26ea1ca7','字典属性下移动','字典属性下移动','cmii-admin-data','/api/admin/dictionary/moveDown','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(142,'API_5d077f1daf3a374171468eb52ba961f1','查询类别对应的字典code映射','查询类别对应的字典code映射','cmii-admin-data','/api/admin/dictionary/queryByTypeCode','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(143,'API_9cf77bb58c5a9447a714eb5c9310472d','查询数据字典明细','查询数据字典明细','cmii-admin-data','/api/admin/dictionary/queryDictDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(144,'API_a6f13db5c1b993222e0289ebd55fa29b','查询有效的字典code映射','查询有效的字典code映射','cmii-admin-data','/api/admin/dictionary/queryValiableByTypeCode','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(145,'API_c47c8080645f5ea74237a65f6b8cd3a6','模糊查询有效code映射','模糊查询有效code映射','cmii-admin-data','/api/admin/dictionary/queryValiableList','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(146,'API_cbb5da8278aa4a91e9aea8d93a3967de','模糊查询本地语言对应的数据字典属性','模糊查询本地语言对应的数据字典属性','cmii-admin-data','/api/admin/dictionary/queryLocalByKeyWords','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(147,'API_5494210933a8193ffd84f6bb1f731ced','添加字典属性','添加字典属性','cmii-admin-data','/api/admin/dictionary/add','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(148,'API_0ccdea8c8d91095fcea830b9be8b6605','更新字典属性','更新字典属性','cmii-admin-data','/api/admin/dictionary/update','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:19',NULL),(149,'API_279c3912b0662a0b7d24b188c8278c8b','删除字典属性','删除字典属性','cmii-admin-data','/api/admin/dictionary/delete','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(150,'API_cc5d51f761b86e43c71192ad16c8ed10','字典check','字典check','cmii-admin-data','/api/admin/dictionary/check','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:19',NULL),(151,'API_99cd090ae437761a844e1366239bafc8','字典查询','字典查询','cmii-admin-data','/api/admin/dictionary/query','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(152,'API_7c1af759105a09feac5129c0a5749699','恢复可用字典属性','恢复可用字典属性','cmii-admin-data','/api/admin/dictionary/enable','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(153,'API_7cf67447d82dbc2aae3f58416b95d6cf','禁用字典属性','禁用字典属性','cmii-admin-data','/api/admin/dictionary/disable','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(154,'API_73ee94cc1a1fe118747c0e4ffb98715e','查询高度和时间有重叠部分的空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(155,'API_d925816c859b55482ee818f05cc3b44a','查询空域类型','','cmii-admin-data','/api/admin/arealimit/queryAreaType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2021-09-22 20:09:11',NULL),(156,'API_75ff1fc1f584bf9005b24b375054d6f5','按空域类型查询空域限制-n','传入参数为空域类型 多个请用,相隔','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByAreaType.do','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(157,'API_a3fab050851c9041a920021ec3a2d362','新增空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/insertZydAreaLimit.do','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(158,'API_f995cda2241b426c6983e9d3fcf5893c','修改空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/updateZydAreaLimit.do','PUT',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(159,'API_7142cc769bff4f9fb3ea9b6172637be8','按id删除空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/deleteZydAreaLimitById.do','DELETE',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(160,'API_82d09530b6c97ea16a33a5ede527adbf','按id查询空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitById.do','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:11',NULL),(161,'API_79aa85dad2686c8be8398fc686fe2d76','为监视提供的接口,用于查询告警','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitBySurveillance.do','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(162,'API_78f934171b8fbc2900b04258a35d7a95','从摄像头类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/cam/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(163,'API_ad8d42ba2aee3e2d138b3950cee78fc8','从摄像头类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/cam/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(164,'API_ab0e57a46420e4534b5c7997aa0a0b1b','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/cam/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(165,'API_ea0004e0d1c3324340cddceec50c61f6','查询曝光模式列表','','cmii-admin-data','/api/admin/model/cam/queryExpModeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(166,'API_7984c09b224b5e860f7fe8958a758dcb','查询工作模式列表','','cmii-admin-data','/api/admin/model/cam/queryWorkModeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(167,'API_4899d9a41838c726a75f0a72a6122290','查询曝白平衡列表','','cmii-admin-data','/api/admin/model/cam/queryBalanName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(168,'API_bbe3f8c129c82cbe71ed35a41a282599','查询图像存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryImgFmtName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(169,'API_6732fadadc52936af9a6a9687cce7a1e','查询图标尺寸列表','','cmii-admin-data','/api/admin/model/cam/queryImgSizeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(170,'API_7bec2a8dfa9aca7159523dbe9e18326f','查询拍照模式列表','','cmii-admin-data','/api/admin/model/cam/queryCamModeName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(171,'API_a1d168be5031dc1dd0e4fbc2505be60b','查询快门速度列表','','cmii-admin-data','/api/admin/model/cam/queryCamShutName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(172,'API_dd46071112769417386194ce7c86e967','查询照片ISO列表','','cmii-admin-data','/api/admin/model/cam/queryImgISOName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(173,'API_6ada96027958ab3c87a1610d3d91397a','查询视频存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryVideoFmtName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(174,'API_d01e0d54b5b7202eafc7d1a2231876b8','查询视频分辨率列表','','cmii-admin-data','/api/admin/model/cam/queryVideoDisName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(175,'API_097cdf6975ebe29f15f2ddcc4681415a','查询视频ISO列表','','cmii-admin-data','/api/admin/model/cam/queryVideoISOName','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(176,'API_7addf0dc3c91ea72e107cf07b21f5794','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(177,'API_bc60df3df11353c5e51941e33d6a8a79','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(178,'API_114055c06825f48f1103858a5b4e5243','模糊查询型号列表','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(179,'API_445b19de6f7aa6fdb994c62ac18b8f5a','新增摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(180,'API_cf6a3aa36a679cec602ea02152b324af','修改摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(181,'API_8b110561027e6075cbc784f5245c0344','删除摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(182,'API_2a38ba8b44f9227276e556d1b4fdcdea','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:11',NULL),(183,'API_dd9a0a34900527d19fa9e51602bd8c66','模糊查询设备型号列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(184,'API_6de3e13765d806e95b54edba5c8ba7fa','设备动作列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevAction','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(185,'API_1027e0154b2cabcfcd03f2705aae31c9','新增设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(186,'API_45f69de95496f9503fe5da237bee773d','设备动作匹配详情查询','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(187,'API_6950169e9ca9384217f431e1c5459aa4','修改设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(188,'API_88494eb1755e09d138b8e16c5121cfb4','删除设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(189,'API_f3a3bbb16e9d784a4baa1e7f7a1cc432','根据类型查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionMatchByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(190,'API_7999fb512373545428a904f2a93126c5','查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(191,'API_f0bb4d4149221532cbdfd93f6f70867c','模糊查询设备类别列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevType','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(192,'API_3e2410bdbc010bebf06c9c183b04f0d3','从喊话器类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/spk/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(193,'API_25e8361bc244a0699cededd54ae0f8ed','从喊话器类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/spk/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(194,'API_03a697de6910c8d3d8ae2f4c962e51d0','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/spk/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(195,'API_63d52b1a7520b2c088573d92931d3404','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:11',NULL),(196,'API_ca5a964fe634a07d0bd320d964cb3ee5','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(197,'API_d30cca23905217ae8b0a17b4ee2c1018','模糊查询型号列表','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(198,'API_49b0224bc641ca32510894821e03636b','新增喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:11',NULL),(199,'API_6585ce453fd0e6dff8e03a24bcc649c1','修改喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(200,'API_6558552d0cbcd975a333ec6d718e1ed9','删除喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(201,'API_df28049d91b12b12cb0b160d7fb49f07','查询所有的语言','查询所有的语言','cmii-admin-data','/api/admin/language/queryAll','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(202,'API_d3e06bfbed9a266753cbde23e4fff04a','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:11',NULL),(203,'API_0bdef64520190b16672dbb06d7715e2a','设备型号匹配详情查询','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:17',NULL),(204,'API_4ed187c7ced82ab26132997c81859a3e','载荷型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavLoadModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(205,'API_46093c9fecf9308045914611b99a23bb','新增设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(206,'API_21ef9d5cf72e0d3d2b66f96ce3f89422','修改设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:18',NULL),(207,'API_0b760cde3e65475e19f8a99ed388db38','删除设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:14',NULL),(208,'API_586c0c599b75290c598925596bc1014b','根据无人机查询设备类型匹配編碼列表','','cmii-admin-data','/api/admin/model/match/type/queryMatchListByUav','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(209,'API_a8f653f1e5fd6fe95c54523511ee5d47','根据无人机查询设备类型匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByUav','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:15',NULL),(210,'API_0fad73ed918548c3826f85283e31366c','根据机库查询无人机匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByHangar','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:13',NULL),(211,'API_21aa3d9fac7d93666bca6833bf5568b9','查询机库型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:11',NULL),(212,'API_670ee49175328b4484f621bcd5770198','无人机型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:12',NULL),(213,'API_3f2d5ac4692a6e334f1803d6e43b1b1f','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2022-04-25 02:50:19',NULL),(214,'API_e91843e6c80f66232751894ca6daab2a','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2022-04-25 02:50:19',NULL),(215,'API_73a8cc79afcfb72994c36e356120d1b6','swaggerResources','','cmii-admin-data','/swagger-resources','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2022-04-25 02:50:19',NULL),(216,'API_722c394501c759be1a1615c1195dce7e','errorHtml','','cmii-admin-data','/error','',_binary '\0',_binary '\0','2020-10-27 09:10:39',1,'2024-11-06 12:17:16',NULL),(37129158911852544,'API_4af205f553090073657fd3225909fca0','预览excel','','cmii-uav-user','/system/file/preViewExcel','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:33',NULL),(37129159230619648,'API_cd482e686ebdeb7f999493b5b5d8a462','下载用户批量导入模版','','cmii-uav-user','/system/file/userTemplate','GET',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:29',NULL),(37129159444529152,'API_caefde2c04ac0eda6a284d1edbb1152f','创建一个公司','','cmii-uav-user','/api/uav/org/createCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:38',NULL),(37129160321138688,'API_0dd8e9d343c3ad19ac127ac1956a7990','分页查询公司','','cmii-uav-user','/api/uav/org/pageCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:40',NULL),(37129160543436800,'API_c12b6c34d3573bd5537e9b2cd2b1617e','查询公司详细信息','','cmii-uav-user','/api/uav/org/getCompanyDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:22',NULL),(37129160723791872,'API_8d221aca42139bdc4a70ae46c50e14be','查询所有公司','','cmii-uav-user','/api/uav/org/queryCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:38',NULL),(37129160908341248,'API_b19957e6c9ef266e975453a9f56f171a','删除一个公司','','cmii-uav-user','/api/uav/org/delCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:44',NULL),(37129161151610880,'API_952348d1fc4fc0fdfd58d2b87d952264','更新公司','','cmii-uav-user','/api/uav/org/updateCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:32',NULL),(37129161369714688,'API_f4cad236d06712a0c44987ebb502faf1','关停一个公司','','cmii-uav-user','/api/uav/org/disableCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:01',1,'2024-11-06 12:16:21',NULL),(37129161768173568,'API_f8575d0d0d6138ed277f0339a0d561ee','恢复一个公司','','cmii-uav-user','/api/uav/org/enableCompany','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:38',NULL),(37129161973694464,'API_94606acf6f83c2ac28918281f85b22a0','创建一个机构','','cmii-uav-user','/api/uav/org/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:30',NULL),(37129162158243840,'API_9a61edcd78864d7bcc25913e5c208c23','查询公司所有的机构','','cmii-uav-user','/api/uav/org/queryOrg','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:29',NULL),(37129162380541952,'API_38c2422dda1213e31ccdc2f5879fe670','删除一个机构','','cmii-uav-user','/api/uav/org/delOrg','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:20',NULL),(37129162594451456,'API_575b68b670980029e5e067d4200ec727','更新一个机构','','cmii-uav-user','/api/uav/org/updatOrg','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:27',NULL),(37129162774806528,'API_d444a24f9fccc8576073243433916bf0','查询出所有的api','','cmii-uav-user','/api/uav/resource/api/queryAll','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:41',NULL),(37129163055824896,'API_9a2e98241817ae6c0fe3ea4fc2261721','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryBy','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:36',NULL),(37129163240374272,'API_b84b0f5eda8a0541bbb9bab629280d8d','增加api','','cmii-uav-user','/api/uav/resource/api/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:27',NULL),(37129163441700864,'API_3dd1062f863d72d28cbd6bdc31e272fa','更新api','','cmii-uav-user','/api/uav/resource/api/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:28',NULL),(37129163626250240,'API_5f500603a8f4a9b7c5ab637961035338','删除api','','cmii-uav-user','/api/uav/resource/api/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:25',NULL),(37129163814993920,'API_40a8afb36e4bf19fb6800cc07f0c5fcb','增加菜单','','cmii-uav-user','/api/uav/resource/menu/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:42',NULL),(37129164049874944,'API_c5247f54f028dc8bf62526cdc67f9f68','更新菜单','','cmii-uav-user','/api/uav/resource/menu/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:41',NULL),(37129164284755968,'API_eddc9be54517ea76417f8fbf05632e81','删除菜单','','cmii-uav-user','/api/uav/resource/menu/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:38',NULL),(37129164465111040,'API_a9d5998b2842d008bceefd9bdc989687','查询所有菜单','','cmii-uav-user','/api/uav/resource/menu/queryAll','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:28',NULL),(37129164616105984,'API_ab1152801e84b0bf7aab84807ac549dd','增加按钮','','cmii-uav-user','/api/uav/resource/action/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:33',NULL),(37129164796461056,'API_4ed629ddc7b9bec753d6bddae509ecdc','增加按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:41',NULL),(37129164981010432,'API_5b6f4c01e1bff1411ed5f15ca3a77b73','更新按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:41',NULL),(37129165169754112,'API_9643432bc3144a39764ef1e4b95a960c','更新按钮','','cmii-uav-user','/api/uav/resource/action/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:36',NULL),(37129165333331968,'API_3e884720cec333d70c19325e8edde54d','删除按钮','','cmii-uav-user','/api/uav/resource/action/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:31',NULL),(37129165555630080,'API_f1f84b1ad3430fd333764f0ab2ce5f8b','查询菜单下所有的按钮','','cmii-uav-user','/api/uav/resource/action/queryByMenuId','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:21',NULL),(37129165786316800,'API_696e439d468de4625840fce37d60a36e','查询按钮,菜单下面的所有api','','cmii-uav-user','/api/uav/resource/action/queryApiByActionId','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:31',NULL),(37129165983449088,'API_dfc472e5b9c3816de93be86120cc6baf','给按钮授权api接口','','cmii-uav-user','/api/uav/resource/action/authorityApi','POST',_binary '\0',_binary '\0','2020-10-30 02:58:02',1,'2024-11-06 12:16:25',NULL),(37129166126055424,'API_bcee59f2103818a5f37eeb7c35a6898e','获取平台(公司)的所有菜单以及按钮','','cmii-uav-user','/api/uav/resource/queryMenuAndAction','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:27',NULL),(37129166285438976,'API_37772fbb1a5f9246c6fa2dc533b55526','获取平台所有的资源列表(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceList','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:26',NULL),(37129166537097216,'API_03e1a0b6cbedccfd749d336239e1c653','获取平台所有的资源树(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTree','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:20',NULL),(37129166742618112,'API_2f792ba68267c0e9802e2a3ff75ff56d','获取平台所有的资源树,并统计(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTreeStatistic','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:35',NULL),(37129166956527616,'API_32e11ca32ec273ec4a78bca3dd85f9e3','根据code获取资源的多语言版本','','cmii-uav-user','/api/uav/resource/queryResourceLanguage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:43',NULL),(37129167124299776,'API_db073aa081d2ffe613ebc3cf56876ab9','根据编码导出资源信息','','cmii-uav-user','/api/uav/resource/syncExportResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:21',NULL),(37129167287877632,'API_144cb3ab17945c8b50b0c5b2fa20dae0','根据编码导入资源信息','','cmii-uav-user','/api/uav/resource/syncImportResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:40',NULL),(37129167451455488,'API_a62023d9956bd0c0d5a5bce050a744ec','有效角色的列表','','cmii-uav-user','/api/uav/role/query','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:44',NULL),(37129167686336512,'API_952d06cbfdc5cd71b09f941194c76b92','角色分页查询','','cmii-uav-user','/api/uav/role/queryPage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:24',NULL),(37129168013492224,'API_83cc6276385c5454f8a555d9b0843c21','获取角色详细信息包括资源','','cmii-uav-user','/api/uav/role/getRoleWithResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:39',NULL),(37129168189652992,'API_bc97a2e4a906e69ba0a38961e61dd1c2','获取角色资源树','','cmii-uav-user','/api/uav/role/getRoleResourceTree','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:24',NULL),(37129168349036544,'API_6b3707c0d9075a6e1d5e446886eae8d0','新增角色','','cmii-uav-user','/api/uav/role/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:32',NULL),(37129168533585920,'API_c14ab57512e6e3351e3e0e0a9730b2e7','新增角色并授权','','cmii-uav-user','/api/uav/role/addAndAuthority','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:23',NULL),(37129168722329600,'API_187627f031d0a65bed30f74d7878b90a','修改角色','','cmii-uav-user','/api/uav/role/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:35',NULL),(37129168923656192,'API_9711fedd69da15347a54ba6cefa7b29b','修改角色并授权','','cmii-uav-user','/api/uav/role/updateAndAuthority','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:37',NULL),(37129169154342912,'API_fb0cc52e402afe1bec8994793a2ee376','删除角色','删除角色','cmii-uav-user','/api/uav/role/del','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:33',NULL),(37129169368252416,'API_e66b38c75630b4a737829f4a679b36a4','为用户赋予角色','为用户赋予角色','cmii-uav-user','/api/uav/role/saveUserRoles','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:34',NULL),(37129169536024576,'API_e9e81aa05a3a5fece29adee9de94ad7d','为角色增加用户','为角色增加用户','cmii-uav-user','/api/uav/role/saveRoleUsers','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:36',NULL),(37129169712185344,'API_01c42d1241684992ce0d0994e949f353','角色授权资源(菜单以及按钮)','角色授权资源(菜单以及按钮)','cmii-uav-user','/api/uav/role/authorityResource','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:30',NULL),(37129169875763200,'API_1c85326fbb19ed42d341591ef931d823','禁用角色/锁定角色','','cmii-uav-user','/api/uav/role/disable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:39',NULL),(37129170081284096,'API_b2f652e930b07177f12b7fd87fb5ea40','启用角色/解锁角色','','cmii-uav-user','/api/uav/role/enable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:03',1,'2024-11-06 12:16:27',NULL),(37129170253250560,'API_13df7b0a05472e0a9a51488dfbf05876','用户列表','','cmii-uav-user','/api/uav/user/findPage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:40',NULL),(37129170437799936,'API_3e5c403e4b7f1c602ac3e28951955783','增加用户','','cmii-uav-user','/api/uav/user/add','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:37',NULL),(37129170609766400,'API_3740f38f36c26a50c0e0a3fd4c9e51f1','修改用户信息','','cmii-uav-user','/api/uav/user/update','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:25',NULL),(37129170777538560,'API_bdf05b037740ee590e3b6864e5163ab1','获取用户角色','','cmii-uav-user','/api/uav/user/getUserRoles','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:24',NULL),(37129170936922112,'API_4a45eb5cf116d6304ccd6c4d7c617356','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/getMyDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:26',NULL),(37129171079528448,'API_f8bdaff975e38f1088ea7130e2cd0fde','获取用户详细信息','','cmii-uav-user','/api/uav/user/getUserDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:19',NULL),(37129171272466432,'API_d4e2a13d9077aa75aeb94bc7b20aae07','获取用户资源','','cmii-uav-user','/api/uav/user/getUserResources','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:25',NULL),(37129171427655680,'API_78f9684cf1948d9fa7ac822f808dda10','以树形结构获取资源树','','cmii-uav-user','/api/uav/user/getUserResourceTree','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:24',NULL),(37129171608010752,'API_a869a436cd0be4fee43ca50af78d2e5c','禁用用户/锁定用户','','cmii-uav-user','/api/uav/user/disable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:19',NULL),(37129171784171520,'API_20ed92bcb1ab21bb4387511221772bee','启用用户/解锁用户','','cmii-uav-user','/api/uav/user/enable','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:20',NULL),(37129171947749376,'API_707c71b10a1cc38fcc6fa499c4da6514','添加飞手','','cmii-uav-user','/api/uav/user/addFlyer','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:36',NULL),(37129172115521536,'API_4ea6212bfc023bb48de804b2d1a55b81','生成邀请地址','','cmii-uav-user','/api/uav/user/createInviteUrl','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:40',NULL),(37129172304265216,'API_4600ad4f0e176d556393a65c04510e51','批量上传用户','','cmii-uav-user','/api/uav/user/userUpload','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:19',NULL),(37129172497203200,'API_f7cf343ee9bc0f36c04b885ae5994458','管理员重置密码','','cmii-uav-user','/api/uav/user/resetPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:22',NULL),(37129172644003840,'API_f90b75a4827a5f681dd9dde40c97f66d','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/profile/getMyDetail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:38',NULL),(37129172828553216,'API_eaae5f9cc6fad74e1d9a525f33d26856','更新用户头像','','cmii-uav-user','/api/uav/user/profile/updateAvatar','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:30',NULL),(37129172983742464,'API_2a3d43803567789ca45f6c0f0fc4e1aa','更新用户名称','','cmii-uav-user','/api/uav/user/profile/updateName','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:27',NULL),(37129173147320320,'API_69b54b15bedcabdc884571bc8971b3c7','申请更新邮箱','','cmii-uav-user','/api/uav/user/profile/updateEmail','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:19',NULL),(37129173315092480,'API_951214eab30adc7578fdde049514ce4e','执行更新邮箱','','cmii-uav-user','/api/uav/user/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:24',NULL),(37129173512224768,'API_1032f1f983c37cd32e5b7381c4cbca9d','重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:26',NULL),(37129173726134272,'API_deda391c18ef00ea6a63865be14310fc','通过身份证重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephoneWithIdentity','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:34',NULL),(37129173948432384,'API_feba8e8d58c5347eb929af17138838f9','添加用户账号','','cmii-uav-user','/api/uav/user/profile/addAccount','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:39',NULL),(37129174258810880,'API_2ee55d087127129a3a6d29dbf9b6469f','重置','','cmii-uav-user','/api/uav/user/profile/resetPwd','POST',_binary '\0',_binary '\0','2020-10-30 02:58:04',1,'2024-11-06 12:16:21',NULL),(37129174560800768,'API_257d9acdae4652fdef4795d11de4b411','找回密码','','cmii-uav-user','/api/uav/user/profile/findPwd','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:39',NULL),(37129174774710272,'API_fa2680a92192033899a2481e8fb3bb6e','根据token获取用户基本信息','','cmii-uav-user','/system/checkPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:37',NULL),(37129175005396992,'API_150ba1da1f4a174b132167b3b252d670','测试获取单个','','cmii-uav-user','/api/uav/uavTestPO/testGet','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:25',NULL),(37129175177363456,'API_56e5cefafdd168386d7f30b5b1219454','测试','','cmii-uav-user','/api/uav/uavTestPO/','POST,GET',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:21',NULL),(37129175340941312,'API_622b954009a914f7c3f5b4dae6c5a722','测试异常','','cmii-uav-user','/api/uav/uavTestPO/testException','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:19',NULL),(37129175517102080,'API_9d8416f00194ce3c7cd9ac0366e70e2d','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPage','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:42',NULL),(37129175672291328,'API_9da6a0c63553bbd633a55d9ac60a4227','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPageByCustom','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:22',NULL),(37129175873617920,'API_1a735ffddfa640ed742d282018370fc4','测试添加','','cmii-uav-user','/api/uav/uavTestPO/testAdd','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:24',NULL),(37129176074944512,'API_568f7d141e21dda80d1ff2bcdfd058b8','用户注册','','cmii-uav-user','/registry','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:43',NULL),(37129176242716672,'API_e9678de1af14b0753155ffab173a0613','用户邀请注册','','cmii-uav-user','/inviteRegistry','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:29',NULL),(37129176427266048,'API_452d66110157d297ffe6356f2fbb9107','根据邀请码,查询邀请信息','','cmii-uav-user','/registry/getInvitedInfo','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:27',NULL),(37129176607621120,'API_a70d9ba7a909c0d00734632f09a2ded1','发送绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:31',NULL),(37129176787976192,'API_41b4ab1a493b21a94ca77fddff40af63','验证绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:36',NULL),(37129176938971136,'API_383e669ef441f9f9d20d7c07299cfb4a','发送解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:38',NULL),(37129177110937600,'API_92e42e7981b90482b33b9ddf7db4cd95','验证解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:24',NULL),(37129177270321152,'API_28b67fe2833bef7e732dbd5d89829618','发送登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:30',NULL),(37129177450676224,'API_5dc51c889fa6be6bd5235d4059a4294f','检测登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:28',NULL),(37129177631031296,'API_e58796bbb5570d9441ebc7e81e8599ab','发送注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:23',NULL),(37129177811386368,'API_ba2f464c282b3a0553bd99165d06d783','检测注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:43',NULL),(37129178016907264,'API_98b17ab44f353e164355f455a423419b','发送找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:19',NULL),(37129178193068032,'API_0aeba2b421ca15f92cd5428c886d485b','检测找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:43',NULL),(37129178419560448,'API_40dff29929d118e208b634b4cf41ff6d','根据用户名获取账号信息','','cmii-uav-user','/account/getByUsername','POST',_binary '\0',_binary '\0','2020-10-30 02:58:05',1,'2024-11-06 12:16:41',NULL),(37129178599915520,'API_a8c6a4ffabfb0a9d79f36db5a147e723','根据手机号获取账号信息','','cmii-uav-user','/account/getByTelephone','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:43',NULL),(37129178763493376,'API_9a77fc28815a543625cc1da15f122326','根据用户id获取信息,未被删除用户','','cmii-uav-user','/user/getById','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:22',NULL),(37129178927071232,'API_92c73e3d40fab73a5aac050b6022394c','根据用户id获取用户详细信息','','cmii-uav-user','/user/getDetailById','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:34',NULL),(37129179086454784,'API_ce779d357be0d8577ce7af6ac166c639','根据用户id集合获取用户信息','','cmii-uav-user','/user/getByIds','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:25',NULL),(37129179266809856,'API_dfbef905b3129b45341a9690102968e9','检测用户是否拥有权限','','cmii-uav-user','/user/checkUri','POST',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:33',NULL),(37129179455553536,'API_fbaaeb1dc35e086b1fe493193046f746','获取公司所有用户','','cmii-uav-user','/user/getByCId','GET',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:23',NULL),(37129179652685824,'API_f5ec0b9a99300481ff676e3fd1ec326f','根据公司id,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId','GET',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:42',NULL),(37129179824652288,'API_98c7ec3ba0ce3553bb0c52272f29cee7','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2022-03-11 06:17:28',NULL),(37129180063727616,'API_2c5059bcb5b737dfc1f69fc4897d587f','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2022-03-11 06:17:28',NULL),(37129180252471296,'API_7ac275e7b208b86b6bae996e6305f86f','swaggerResources','','cmii-uav-user','/swagger-resources','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2022-03-11 06:17:28',NULL),(37129180432826368,'API_9f707b4364462c082b59c5dd00240592','errorHtml','','cmii-uav-user','/error','',_binary '\0',_binary '\0','2020-10-30 02:58:06',1,'2024-11-06 12:16:37',NULL),(37183520250003456,'API_89dba7a6eb9a2cfacedfd80f9ac039c7','添加一个问题反馈','','cmii-uav-feedback','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520304529408,'API_425ee952c02aa238fed24797554ac6f2','导出查询结果','','cmii-uav-feedback','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520342278144,'API_e4a55343c032ef4fc49727f482e7eb67','查询反馈类型','','cmii-uav-feedback','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520396804096,'API_dc560856289d3a9211012dbabb79ef29','查询应用列表','','cmii-uav-feedback','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520430358528,'API_772d54d06ec5de08c748ab474f5ed449','查询问题反馈','','cmii-uav-feedback','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520463912960,'API_92bc10538452e5059980a0a68ff57611','uiConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520493273088,'API_38e7b789c679b2e181a351ba0c48f3e4','swaggerResources','','cmii-uav-feedback','/swagger-resources','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520518438912,'API_64552bbf0983e08276afbdd6c20fe8f1','securityConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,NULL,NULL),(37183520564576256,'API_9e1361a03705c615f98b19b4e7e3b5bd','errorHtml','','cmii-uav-feedback','/error','',_binary '\0',_binary '\0','2020-10-30 06:34:02',1,'2020-10-30 06:34:02',NULL),(58561731424681984,'API_f651acd4a2ca63a5a85bd65d538e6d56','上移','','cmii-admin-user','/v1/platforms/moveUp','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561731667951616,'API_0761d6ce9fbcd1be78d773c6a3dec4ea','下移','','cmii-admin-user','/v1/platforms/moveDown','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561731735060480,'API_bf87d11dde1366c85d789042d1b2bea2','获取应用的多语言信息','','cmii-admin-user','/v1/platforms/getMultiLangInfo','GET',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561731797975040,'API_b38727b89c79684eb2cafe62fecae20a','获取应用的类型列表','','cmii-admin-user','/v1/platforms/getAppTypes','GET',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:16',NULL),(58561731860889600,'API_fec02d68c648dcc4af562ed5ead02ec4','查询出所有的平台','','cmii-admin-user','/v1/platforms/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:18',NULL),(58561731911221248,'API_4ef3066dd638ad959fb7cfddf6c64b91','添加一个平台','','cmii-admin-user','/v1/platforms/add','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:19',NULL),(58561732129325056,'API_864ea05bbc0d088201963cf373d3f881','更新一个平台','','cmii-admin-user','/v1/platforms/update','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:20',NULL),(58561732217405440,'API_bbf397c46b80730307463c3d61109e7d','删除一个平台','','cmii-admin-user','/v1/platforms/delete','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:21',NULL),(58561732276125696,'API_891e0005b40375d75c15e7eb477f8ebf','平台应用排序接口','','cmii-admin-user','/v1/platforms/sort','POST',_binary '\0',_binary '\0','2020-12-28 06:23:25',1,'2024-09-09 09:14:21',NULL),(58561735501545472,'API_2ba63fb372f16083de12479c190b5bdd','根据code获取资源的多语言版本','','cmii-admin-user','/api/admin/resource/queryResourceLanguage','POST',_binary '\0',_binary '\0','2020-12-28 06:23:26',1,'2024-09-09 09:14:20',NULL),(58561735564460032,'API_d790efb6a202199c3c4a56acfd5a442e','根据编码导出资源信息','','cmii-admin-user','/api/admin/resource/syncExportResource','POST',_binary '\0',_binary '\0','2020-12-28 06:23:26',1,'2024-09-09 09:14:20',NULL),(58561735883227136,'API_f7b4a6e2224b785452726522372bee1c','根据编码导入资源信息','','cmii-admin-user','/api/admin/resource/syncImportResource','POST',_binary '\0',_binary '\0','2020-12-28 06:23:26',1,'2024-09-09 09:14:17',NULL),(58561740488572928,'API_c9357191da23b642049ee7ca98d9da24','根据应用编码获取应用信息','','cmii-admin-user','/client/v1/platforms/getByCode','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:20',NULL),(58561740547293184,'API_b58b29f3ba4ebd330e72037398cf0fc3','根据应用id获取应用信息','','cmii-admin-user','/client/v1/platforms/getById','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:20',NULL),(58561740597624832,'API_cd6541bfbf0324207b9576b657bf15df','根据分组获取改组的应用列表','','cmii-admin-user','/client/v1/platforms/queryByGroup','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:16',NULL),(58561740652150784,'API_ea352797acce077f14e2a1ed82929639','查询所有的应用列表','','cmii-admin-user','/client/v1/platforms/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:19',NULL),(58561740916391936,'API_2fe6563784e99c37b770c2fb1a193b82','接口扫描','','cmii-admin-user','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:23:27',1,'2024-09-09 09:14:18',NULL),(58562518972366848,'API_8273362a82640f68d9061f967d5ea3cb','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/cam/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-11-06 12:17:13',NULL),(58562520306155520,'API_66476ec9921485b64010dd50885985e5','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/spk/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-11-06 12:17:14',NULL),(58562521363120128,'API_558bd45f421ad0fc6bd325ad037809e5','从Redis获取有效的本地语言值对应的key','类型对应的本地语言值对应的key','cmii-admin-data','/api/admin/dictionary/getLangKeyFromRedisByValue','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-11-06 12:17:18',NULL),(58562521430228992,'API_c34e31bdefebec7afca0c28a4ce25655','从Redis模糊查询有效数据字典列表','从Redis模糊查询有效数据字典列表','cmii-admin-data','/api/admin/dictionary/getDictListFromRedis','GET',_binary '\0',_binary '\0','2020-12-28 06:26:33',1,'2024-11-06 12:17:13',NULL),(58562523040841728,'API_e4151a02daecf76311cc8baaebe27ede','为区块链提供接口,查询空域限制数量','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitCount.do','GET',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-11-06 12:17:17',NULL),(58562523661598720,'API_e2c418b0d87cdb39a51448d12818b727','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/plane/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-11-06 12:17:17',NULL),(58562525230268416,'API_7d5d4aa167650e78febf5e176e2ff7c0','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/hangar/checkNotFrozen','GET',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-11-06 12:17:17',NULL),(58562525238657024,'API_7d5d4aa167650e78febf5e176e2ff7c0','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/hangar/checkNotFrozen','GET',_binary '\0',_binary '','2020-12-28 06:26:34',1,'2022-01-18 11:06:28',NULL),(58562526912184320,'API_a0dbde8cd3176b28b139ea6c067e614b','接口扫描','','cmii-admin-data','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:26:34',1,'2024-11-06 12:17:15',NULL),(58586579525959680,'API_15665441f1d1635587fd6f016058f3f6','分组获取平台应用列表','','cmii-uav-user','/api/uav/platform/queryPlatformsByGroup','GET',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-11-06 12:16:30',NULL),(58586580436123648,'API_e4d855c1d7897b6b87fea71e8e06abc0','管理员获取全平台的所有树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-11-06 12:16:37',NULL),(58586580478066688,'API_aea793965a6dccffb67f9c19b0e5c69c','获取某个角色的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForRole','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-11-06 12:16:29',NULL),(58586580520009728,'API_48c8cb8f97e22a0f4b2ac1861f31c9dd','获取某个公司的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForCompany','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-11-06 12:16:27',NULL),(58586580557758464,'API_39112b4382df2b946e30b59c784aa817','获取某个用户的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForUser','POST',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-11-06 12:16:21',NULL),(58586580717142016,'API_d83e61c4ac50aa7d9ec1091ed56ab8a3','获取某个用户的某个平台菜单树','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForUser','GET',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-11-06 12:16:43',NULL),(58586580759085056,'API_afd411eb8654953e857666530e88321a','获取应用的类型列表','','cmii-uav-user','/api/uav/resource/getAppTypes','GET',_binary '\0',_binary '\0','2020-12-28 08:02:09',1,'2024-11-06 12:16:36',NULL),(58586581765718016,'API_ee6751fb2a2628f5c66cd8085cdbbcb2','管理员获取某一个平台的全部资源','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-11-06 12:16:20',NULL),(58586583409885184,'API_33b24d37f02f7e07cd5ca451bf432b99','查询所有的用户','','cmii-uav-user','/user/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-11-06 12:16:26',NULL),(58586583808344064,'API_1fb0a000cc6507b937c31b6886142cc3','更具公司id查询公司管理员','','cmii-uav-user','/user/getCompanyAdminByCId','GET',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-11-06 12:16:30',NULL),(58586583850287104,'API_aa858a3fc95f5d17248bff767175f1dc','查询用户和公司统计','','cmii-uav-user','/user/getStatistic','GET',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-11-06 12:16:40',NULL),(58586584257134592,'API_e754afcf7b88439c5aacd7ba36e18d9b','接口扫描','','cmii-uav-user','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 08:02:10',1,'2024-11-06 12:16:31',NULL),(70169537223327744,'API_9f10b1349eb7299406c94a7eae1fc212','按类型导入字典明细','','cmii-admin-data','/api/admin/dictionary/dictImport','POST',_binary '\0',_binary '\0','2021-01-29 07:08:41',1,'2024-11-06 12:17:16',NULL),(70169540008345600,'API_7487d41441eaff5b202a6cc54e48b362','从Redis获取有效的编码对应的所有语言的值','从Redis获取有效的编码对应的所有语言的值','cmii-admin-data','/api/admin/dictionary/getAllLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-01-29 07:08:42',1,'2024-11-06 12:17:12',NULL),(70169646002601984,'API_586ad6cbe725e05d7f9c7e2fd04325cf','禁用三月未登录过的用户','','cmii-uav-user','/api/uav/user/disableInactiveUsers','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-11-06 12:16:32',NULL),(70169646673690624,'API_8c4df51ed65d15b261daf2bca465eaaf','导出查询结果','','cmii-uav-user','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-11-06 12:16:39',NULL),(70169646711439360,'API_370e298f167c80ef222770b53b25f05d','查询应用列表','','cmii-uav-user','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-11-06 12:16:33',NULL),(70169646765965312,'API_3ea32b425fd30e8ed7d124fe062c72ef','查询问题反馈','','cmii-uav-user','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-11-06 12:16:30',NULL),(70169646799519744,'API_1b93c3aae168c8efd6dad138874bded8','查询反馈类型','','cmii-uav-user','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-11-06 12:16:19',NULL),(70169646841462784,'API_d6260990e96ba28ae65e0420311ada19','添加一个问题反馈','','cmii-uav-user','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2021-01-29 07:09:07',1,'2024-11-06 12:16:29',NULL),(70169649957830656,'API_04983dfe29b27883bf6a799d0fed60e8','查询某个应用中的全部用户','','cmii-uav-user','/user/queryByPlatformCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:32',NULL),(70169650339512320,'API_f889240e74c75cb3f13ce1144103d411','根据平台应用id,删除资源','','cmii-uav-user','/resource/deleteByPlatformId','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:19',NULL),(70169650385649664,'API_d6925d7290ed8ce694423daa048ca1db','查询用户某个平台的菜单','','cmii-uav-user','/resource/queryPlatformResourceTreeForUser','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:21',NULL),(70170025335455744,'API_15c789ca0bd24b3733452f1699151935','根据用户id获取用户信息','','cmii-admin-user','/client/v1/user/getById','GET',_binary '\0',_binary '\0','2021-01-29 07:10:38',1,'2024-09-09 09:14:19',NULL),(82871897502515200,'API_41e1f6d85f2724a89061a30a00b199d9','按类型导出字典明细','','cmii-admin-data','/api/admin/dictionary/dictExport','GET',_binary '\0',_binary '\0','2021-03-05 08:23:20',1,'2024-11-06 12:17:18',NULL),(87906817379663872,'API_b6d1d81c0c2404807f08b8e72affc1bd','添加或者更新回调地址(无需测试,内部使用)','','cmii-admin-user','/v1/platforms/mergeClientRedirectUri','POST',_binary '\0',_binary '\0','2021-03-19 05:50:18',1,'2024-09-09 09:14:20',NULL),(87906817488715776,'API_a5e0eab085d59b1e21af9f5436996cf9','为平台创建密钥','','cmii-admin-user','/v1/platforms/createSecurity','POST',_binary '\0',_binary '\0','2021-03-19 05:50:19',1,'2024-09-09 09:14:17',NULL),(87906820307288064,'API_4fd1f7876844841d9c65d71b111c2f3e','根据token获取用户基本信息(数据回填专用)','','cmii-admin-user','/api/admin/user/getMyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:50:19',1,'2024-09-09 09:14:19',NULL),(87906820366008320,'API_1502ec4efc60177403b8e952e478f958','获取用户详细信息(数据回填专用)','','cmii-admin-user','/api/admin/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:50:19',1,'2024-09-09 09:14:17',NULL),(87907068408758272,'API_edb896c8f7a949895d9d28aa9a5950c6','查询公司详细信息(数据回填专用)','','cmii-uav-user','/api/uav/org/getCompanyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-11-06 12:16:24',NULL),(87907069763518464,'API_c727602364100d70015a5ce2f3b30493','根据token获取用户基本信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getMyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-11-06 12:16:40',NULL),(87907069859987456,'API_0755f3279b5bf809dcfb81600e4c7310','获取用户详细信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-11-06 12:16:40',NULL),(87907071206359040,'API_1b7015d5a94be8c6f1fa73ce08a46c25','删除用户','','cmii-uav-user','/api/uav/user/delete','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-11-06 12:16:25',NULL),(87907071332188160,'API_4de3b611f4460f38f9a8a8b2be70a663','是否还有配额','','cmii-uav-user','/quota/personal/hasQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:19',1,'2024-11-06 12:16:34',NULL),(87907078273761280,'API_55940e0a645db648b082a2bdc29b956b','获取配置项目历史记录','','cmii-uav-user','/api/admin/system/quota/getQuotaHistory','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:33',NULL),(87907078361841664,'API_bde567dcccb5a9ace49be8f1c7d3d37f','查询所有组织信息','','cmii-uav-user','/api/admin/system/quota/getAllCompany','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:22',NULL),(87907078508642304,'API_f096c70213c5df875be07f0c8386e247','修改配额配置(配置或批量配置)','','cmii-uav-user','/api/admin/system/quota/updCompanyQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:26',NULL),(87907078584139776,'API_91792e840f0d594a77e2579be356f4d8','获取组织配额信息','','cmii-uav-user','/api/admin/system/quota/getCompanyQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:20',NULL),(87907078659637248,'API_d831b068209afa75fae95362539c5248','获取组织配额使用信息(不包含子组织配额)','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfo','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:40',NULL),(87907078739329024,'API_138d1f792e8c7ef2953118f03055b18e','查询组织历史记录时配额信息展示','','cmii-uav-user','/api/admin/system/quota/getQuotaInfoByCompany','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:35',NULL),(87907078978404352,'API_272b4d0242a68b45577015e3eebead94','根据用户id获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryById','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:28',NULL),(87907079381057536,'API_b94a08818c65730154aa7f594172708f','根据姓名和电话号码 模糊查询公司用户','','cmii-uav-user','/user/queryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:34',NULL),(87907079938899968,'API_f39b0513e65e7867e3bf63660694369d','查询组织配额信息','','cmii-uav-user','/client/quota/getQuotaInfoByType','POST',_binary '\0',_binary '\0','2021-03-19 05:51:21',1,'2024-11-06 12:16:19',NULL),(87907135358238720,'API_e158024b9d2170b4cc3c16e7c18c2a26','获取机场区域以及禁飞区','','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2021-03-19 05:51:34',1,'2024-11-06 12:17:11',NULL),(92316693031813120,'API_07d043b4ba8f56b040507689a132f59b','getRequestKpi','','cmii-admin-user','/client/v1/kpi/requestKpi','GET',_binary '\0',_binary '\0','2021-03-31 09:53:35',1,'2024-09-09 09:14:21',NULL),(99555581483810816,'API_acebee45653d893e76a60a1d75cd0a3c','queryCompany','','cmii-uav-user','/clients/org/queryCompany','GET',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-11-06 12:16:35',NULL),(99555581978738688,'API_65816ac1a814c3251864b2a34e8c0886','根据id查询公司信息','','cmii-uav-user','/clients/org/getById','GET',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-11-06 12:16:20',NULL),(99555650970845184,'API_ae6e5100bf8e72ab99c0c574e8a8ad96','校验指定公司的无人机类型编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkUavModelMapingInRedis','GET',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-11-07 09:01:57',NULL),(99555651562242048,'API_1a018778504fa7a76012d85ea20ac016','校验指定公司设备类型的编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-11-07 09:01:55',NULL),(99555652245913600,'API_e721a9dee48586a6f9e14acf4f6a0263','校验指定公司的设备类型是否匹配','','cmii-uav-device','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-11-07 09:01:58',NULL),(99555652828921856,'API_ce5ec1b31cc777129860ddee19de9f62','校验指定公司的设备动作是否匹配','','cmii-uav-device','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-11-07 09:01:46',NULL),(99555653369987072,'API_90486be4c33795d2c75c471f947c41b5','校验指定公司的设备数据是否匹配','','cmii-uav-device','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:37',1,'2024-11-07 09:01:51',NULL),(99555653760057344,'API_2339020a7c07baff4815ee31740f7176','查询公司/机构范围的无人机类型列表','','cmii-uav-device','/api/uav/plane/queryUavModelByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-11-07 09:01:57',NULL),(99555654292733952,'API_f4ff4a0253654d04df20e0fe9ad84b5d','根据无人机类型查询公司范围的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-11-07 09:01:57',NULL),(99555654951239680,'API_e4c6dfa5b05761de0eb255769cf60dcc','根据设备类型和编码查询公司范围的可用状态信息','','cmii-uav-device','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-11-07 09:01:53',NULL),(99555655521665024,'API_40a64df7cb84eea605f73dde15d98668','通过无人机设备号查询无人机编码','','cmii-uav-device','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-11-07 09:01:55',NULL),(99555656113061888,'API_7704177d2ecb71fb7bb4068333033d01','通过无人机编码查询无人机设备号','','cmii-uav-device','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-11-07 09:01:46',NULL),(99555656469577728,'API_4e0df8f7b53399e937cd1d77e87ffc4f','模糊指定公司的在线无人机编码和机库编码列表','','cmii-uav-device','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:38',1,'2024-11-07 09:01:50',NULL),(99555658050830336,'API_55bf600f383be27938a4428907c0e6f5','查詢公司范围内在线无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:55',NULL),(99555658373791744,'API_fcbfa36a859f563459e4070a5d5734a8','查詢用户关注无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:53',NULL),(99555658805805056,'API_e1ec0ca36f9bcc44b55415c5f0043145','模糊查詢待关注的无人机列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:47',NULL),(99555659619500032,'API_94d0907cd83bdda66ce2d15eaaf1875c','模糊查询包括子公司的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:53',NULL),(99555660080873472,'API_8138e0c7ce00c4dd9aea4f7f624e5f98','查询所有无人机编码列表','','cmii-uav-device','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:52',NULL),(99555660592578560,'API_cd21a0064744a96ef11a1766255eb95e','统计公司/所属机构范围内的无人机数量','','cmii-uav-device','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:53',NULL),(99555660886179840,'API_d307152526c45f79fd4e8d95caed9060','模糊查询包括子公司的生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:58',NULL),(99555661095895040,'API_502815d9c4439f38b83309b3c124a511','查询包括子公司的无人机形态列表','','cmii-uav-device','/api/uav/plane/queryUavShapeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:48',NULL),(99555661402079232,'API_e2c4e3bb23d0d892004fd7f0fc2e9f70','查询包括子公司的无人机尺度列表','','cmii-uav-device','/api/uav/plane/queryUavSizeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:53',NULL),(99555661653737472,'API_9923170469d9fe3e5b24d8610be192ab','查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:48',NULL),(99555662006059008,'API_01cf9be91d4536f51fc882230a27eef1','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:39',1,'2024-11-07 09:01:53',NULL),(99555662303854592,'API_0cfa74fce5f680fc926301b0857cf378','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavMode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:51',NULL),(99555662597455872,'API_8a96f6bda4172a6945cb2924b6c6bf70','模糊查询可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:51',NULL),(99555662953971712,'API_0739754e32b2127016a920b0cb80a3d7','模糊查询包括子公司的机库列表','','cmii-uav-device','/api/uav/plane/queryHangar','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:52',NULL),(99555663104966656,'API_0de4d92e1aa64c8c1800879290c3b3ac','模糊视频线路列表','','cmii-uav-device','/api/uav/plane/queryVideoLine','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:47',NULL),(99555663281127424,'API_53b3b597f778587f08f78086299c4ceb','按条件分页查询包括子公司的无人列表','','cmii-uav-device','/api/uav/plane/queryUavPlanePage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:48',NULL),(99555663469871104,'API_299ba405af4b7dc97e0856e0d0d4a124','按无人机编码查询指定公司范围内的无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:47',NULL),(99555663700557824,'API_f4cdb7ba93755daf91e3494414279a5c','按无人机设备号查询指定公司范围内无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:45',NULL),(99555664199680000,'API_34a7fb8da64e22199f82369e7e594276','查询指定公司的无人机类型匹配的載荷和机库类型类别','','cmii-uav-device','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:55',NULL),(99555664505864192,'API_31151a2ae3f60864f0184a3e4b73a1f3','获取无人机照片','','cmii-uav-device','/api/uav/plane/queryUavPicByCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:50',NULL),(99555664853991424,'API_aaa3bdb2ba087941f88cc48a55f4f003','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:47',NULL),(99555665021763584,'API_75faa10f56c898c1e76b50cf283a4a3d','查询指定公司/机构范围内的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:54',NULL),(99555665457971200,'API_030e4547e850834c14fd61077634881a','查询指定公司/机构范围内的在线无人机列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:46',NULL),(99555665843847168,'API_1c2e464bff9399f17f039d6b53831215','模糊查询包括子公司的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:48',NULL),(99555666162614272,'API_ab559f97c2b1ae1a8216fcf3c90f0fba','统计指定公司的(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:40',1,'2024-11-07 09:01:52',NULL),(99555666531713024,'API_48aebb5ffd9166b9bc64f57909492a08','统计所有无人机数量','','cmii-uav-device','/api/uav/plane/queryAllUavCount','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:54',NULL),(99555666896617472,'API_b90518a6151aaf568edc63b43d601817','根据无人机编码查询该无人机是否存在','','cmii-uav-device','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:49',NULL),(99555666938560512,'API_568f82c0cf471afce1d89200350d9879','查询区|县对应的区域信息','','cmii-admin-data','/public/api/admin/area/district/detail','GET,POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-06 12:17:11',NULL),(99555667194413056,'API_dab95364a57d89e51d76193f66810c55','生成新无人机编码','','cmii-uav-device','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:44',NULL),(99555667722895360,'API_6b6d6d9e3ab6685d17548baf4822a486','查询无人机是否可用','','cmii-uav-device','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:53',NULL),(99555668167491584,'API_d06ee272c26f99d194aa9da2a4aede6d','设置无人机在线状态','','cmii-uav-device','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:58',NULL),(99555668549173248,'API_4a03921d3a436f3b7b513cd1b239e7ee','查询无人机在线状态','','cmii-uav-device','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:55',NULL),(99555669090238464,'API_ec46fc3387def0b5374b28ec21e4fd40','查询无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:45',NULL),(99555669660663808,'API_0c36d2f6044a28e11a500996c44393ba','查询指定公司的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:47',NULL),(99555670105260032,'API_a0ebba8fe10fc7ff7068af1c74331a32','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-07 09:01:48',NULL),(99555670528884736,'API_106a918609df946aca1a53655d32fb49','修改无人机','','cmii-uav-device','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:56',NULL),(99555670772154368,'API_6fcb86dbb2501707e5ddbbb76c7668e7','删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:52',NULL),(99555671225139200,'API_6fd9ffa6039d98a39b7ffe156d060d94','批量删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:50',NULL),(99555671648763904,'API_ffe81557303b1ffb8a3a1a2493d5454e','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-device','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:49',NULL),(99555671959142400,'API_956154abe8979ccd6b222d73f2b2302b','模糊查询公司范围的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModelList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:52',NULL),(99555672261132288,'API_cd990af8afd653c1f5342d6b22700c09','查询公司范围的设备在线状态','','cmii-uav-device','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:52',NULL),(99555672810586112,'API_2b8c110cfd855d55f49cfe401e3ab5af','添加用户关注的无人机','','cmii-uav-device','/api/uav/plane/addAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:49',NULL),(99555673095798784,'API_820e1c6b166145e0ecf7669bddf62dc0','取消用户关注的无人机','','cmii-uav-device','/api/uav/plane/cancelAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:47',NULL),(99555673506840576,'API_e02756ce1d268f6ac8698ac81b2826db','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:58',NULL),(99555673833996288,'API_c37e85a2913e4b824564a34721e7960e','查询公司/机构所属的机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:57',NULL),(99555674182123520,'API_c9694ccb1c665a04fec72ee10fe68561','查询公司/机构所属的机库类型','','cmii-uav-device','/api/uav/hangar/queryHangarModelByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:55',NULL),(99555674492502016,'API_8b67f52396c9b4998d9eca80309a6300','查询机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetail','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2024-11-07 09:01:46',NULL),(99555674895155200,'API_ab7b50dd0de2b4aecab4c057a1339253','查询该公司的机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:55',NULL),(99555675398471680,'API_1d3dde17bde2cda631d9e36fd71399e5','生成新机库编码','','cmii-uav-device','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:54',NULL),(99555675834679296,'API_609cf7baddd46be1f9ef360af88c8b30','生成新视频编码','','cmii-uav-device','/api/uav/hangar/newHangarVideoCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:47',NULL),(99555676182806528,'API_7270af0fb5d2fcb6534ee62f6bc42ab1','新增机库','','cmii-uav-device','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:49',NULL),(99555676547710976,'API_88b554c90ec24df24a4ee90dd651f12d','修改机库','','cmii-uav-device','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:54',NULL),(99555676916809728,'API_77e3faf92b7a34862394232d003ef579','删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:45',NULL),(99555677285908480,'API_eb1ee4f15076193c2a982a515af3bdae','绑定无人机','','cmii-uav-device','/api/uav/hangar/bindUav','POST',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:51',NULL),(99555677705338880,'API_1f515aef9beec6efa8c04dac816e7d93','check在数据字典里面机库类型编码和名称是否一致','check在数据字典里面机库类型编码和名称是否一致','cmii-uav-device','/api/uav/hangar/checkHngModelMapingInRedis','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:56',NULL),(99555678175100928,'API_2c581c80620f2c6f54d128033e9eccc5','通过机库设备号查询机库编码','','cmii-uav-device','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:55',NULL),(99555678653251584,'API_9df19cad9a1ba451241223ecdfa09ead','通过机库编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:43',1,'2024-11-07 09:01:54',NULL),(99555678934269952,'API_18fac9d5bf04444272c88e747b034bd7','根据机库编码获取公司信息','','cmii-uav-device','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:50',NULL),(99555679315951616,'API_44d84d7abd329c04504d8bed451d84f3','查詢公司范围内在线机库视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:50',NULL),(99555679689244672,'API_8d7d22a58611547e13e523708a94ebec','查詢用户关注机库机视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:52',NULL),(99555680175783936,'API_e6e54cd2384bcac8277698847d832911','模糊查詢待关注的机库列表','','cmii-uav-device','/api/uav/hangar/queryUavHangarInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:50',NULL),(99555680586825728,'API_f3b616b38914d9d7253166928c0e63f6','添加用户关注的机库','','cmii-uav-device','/api/uav/hangar/addAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:54',NULL),(99555681052393472,'API_55a336058652952f4e79a969053d8673','取消用户关注的机库','','cmii-uav-device','/api/uav/hangar/cancelAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:52',NULL),(99555681408909312,'API_f3d6636ea76a96217c0a41b2411ea5eb','通过机库型号查询机库实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/hangar/queryHangarInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:51',NULL),(99555681815756800,'API_089d3e2f3a245c5c424d6370223b5f98','模糊查询机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarMode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:43',NULL),(99555682000306176,'API_a59f14f77c781d6c32e045a162f33c96','模糊查询公司所属的生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:54',NULL),(99555682331656192,'API_90cd80a446b293444ba189243f4afa21','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:46',NULL),(99555682763669504,'API_2736b2c4a2ac36f2a824c6f21c42f29f','模糊查询公司所属的可用状态列表','','cmii-uav-device','/api/uav/hangar/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:44',1,'2024-11-07 09:01:45',NULL),(99555683183099904,'API_123a5d1073846eb9df7de02ea5362647','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:47',NULL),(99555683686416384,'API_4b641b03323c7aba2e2afbab6ea01589','按机库设备号查询机库详情','','cmii-uav-device','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:54',NULL),(99555684147789824,'API_6386b9fbf4e62a8d7fa9a024b1d39f82','解绑无人机','','cmii-uav-device','/api/uav/hangar/unBindUav','POST',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:48',NULL),(99555684537860096,'API_42812137eeb9fa9eac3dbccc1fff0fec','获取可绑定无人机','','cmii-uav-device','/api/uav/hangar/getUav','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:53',NULL),(99555684932124672,'API_ff5494e0727b58b829f6c84243f99f05','获取绑定无人机信息','','cmii-uav-device','/api/uav/hangar/getBoundUav','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:51',NULL),(99555685414469632,'API_b13c315af9e3ffdbeffa2a36f5626c20','设置机库在线状态','','cmii-uav-device','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:47',NULL),(99555685783568384,'API_d1a48771ee63cc754b1248c85ec39276','批量删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:57',NULL),(99555686156861440,'API_326a1a3ab9812751b8120495bfdc0342','模糊查询公司所属的机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarTypeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:46',NULL),(99555686572097536,'API_f3c7db7eed20640a751a78bc81341543','模糊查询机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:47',NULL),(99555686999916544,'API_e880f6790e3880dfdf832a77d34f994d','模糊查询公司所属的机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarModeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:45',1,'2024-11-07 09:01:53',NULL),(99555687582924800,'API_08b791104d5cf534913d2c6a182ef330','模糊查询可用状态列表','','cmii-uav-device','/api/uav/hangar/queryHangarUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:58',NULL),(99555687998160896,'API_c674128d738505b1b654dcc556aca6b3','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangarPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:52',NULL),(99555688547614720,'API_1f16142b30891e5a07fe19c92d819199','按机库编码查询机库详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:46',NULL),(99555688996405248,'API_9c9693f0afde811d434735fa9aea64ed','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavLoadBound','POST',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:55',NULL),(99555689432612864,'API_e83782efad13b139f36f5d86c23dec92','无人机解绑载荷','','cmii-uav-device','/api/uav/plane/unboundLoadFromUav','POST',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:49',NULL),(99555689965289472,'API_00e86bc45ada098ed656617ed9b4db3e','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/plane/checkLoadBoundRelations','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:57',NULL),(99555690359554048,'API_f4ef3d19d207ce810b185378ccea62ae','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:49',NULL),(99555690913202176,'API_a7be376e5ee861d385187b9ae5748c39','无人机列表绑定的载荷列表详情查询','','cmii-uav-device','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:46',1,'2024-11-07 09:01:47',NULL),(99555691471044608,'API_4c6e476755cf391fcd3eea11b94fae64','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByLoadCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-11-07 09:01:46',NULL),(99555692133744640,'API_4070abaa8f7d2bc1c2e397869193e031','通过公司名称或者管理员名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-11-07 09:01:57',NULL),(99555692695781376,'API_1499a2ebdf5c01b2627e57e15b472b07','通过公司名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyListByName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2021-09-22 20:09:10',NULL),(99555693215875072,'API_2d7d72bd1cc847e50266ed214e1ea617','分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-11-07 09:01:58',NULL),(99555693626916864,'API_2b08ca467289bca513d1e9084cd26eda','批量分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-11-07 09:01:51',NULL),(99555694214119424,'API_74ee723d3e114b0eb4ada9edd7bf35ae','删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-11-07 09:01:57',NULL),(99555694784544768,'API_a5f3677ccd73b6c21a7b44b2301c5fd7','批量删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-11-07 09:01:44',NULL),(99555695350775808,'API_4bcd4faf8c1cf35844576b637c92fed0','获取设备详情','','cmii-uav-device','/api/uav/devAllocate/getDevDetail','POST',_binary '\0',_binary '\0','2021-04-20 09:18:47',1,'2024-11-07 09:01:56',NULL),(99555695858286592,'API_310c46f834d022a74e0e9c3d5c0b1327','按条件分页查询自动上报的设备型号信息','','cmii-uav-device','/api/uav/devAllocate/queryUavDevPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:47',NULL),(99555696328048640,'API_f392e8e611abd392c111b1733bf01c2e','getUsedQuotaNumByType','','cmii-uav-device','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:48',NULL),(99555696789422080,'API_106489797c47bd108d4818ba4fd67d4d','模糊查询包括子公司的载荷类型列表','','cmii-uav-device','/api/uav/load/queryModelNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:45',NULL),(99555697267572736,'API_0c134f0811252de9350517aa4947b116','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadType','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:51',NULL),(99555697674420224,'API_e595767d8cd18cc6f7c48e77346699b7','模糊查询载荷类型列表','','cmii-uav-device','/api/uav/load/queryLoadModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:57',NULL),(99555698165153792,'API_cdd9560d32de928dad673d67accca023','模糊查询可用状态列表','','cmii-uav-device','/api/uav/load/queryLoadUseStat','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:45',NULL),(99555698542641152,'API_b677cb684036a17ab6c3ec7a308c876f','模糊查询包括子公司的所属无人机编码列表','','cmii-uav-device','/api/uav/load/queryUavCodeBound','GET',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:47',NULL),(99555698991431680,'API_d3f5df26ecf060c6ac3e7f88391afd06','获取载荷分页列表','','cmii-uav-device','/api/uav/load/queryUavLoadPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:52',NULL),(99555699616382976,'API_009b9f297e6d324bdb9868996eeab36f','新增载荷','','cmii-uav-device','/api/uav/load/addUavLoad','POST',_binary '\0',_binary '\0','2021-04-20 09:18:48',1,'2024-11-07 09:01:56',NULL),(99555700094533632,'API_2734ea96b050f2deae5883c82d4ae2e5','修改载荷','','cmii-uav-device','/api/uav/load/updateUavLoad','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:44',NULL),(99555700446855168,'API_e35c03761aa95413b9dadbf0ae476334','删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoad','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:52',NULL),(99555700975337472,'API_438e3f86a59e35e254ea26df38c6602a','批量删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoadBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:58',NULL),(99555701503819776,'API_71a05e7ee9a717501af4d030b9012e2d','查询包括子公司的载荷详情','','cmii-uav-device','/api/uav/load/queryUavLoadDetail','POST',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:46',NULL),(99555702044884992,'API_36ee06627f1db4aecff47d210338e5d9','查询包括子公司的载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryLoadModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:57',NULL),(99555702476898304,'API_fa94e8c4624b01ed2c276ab10dac7d3f','获取新载荷编码','','cmii-uav-device','/api/uav/load/newLoadCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:44',NULL),(99555703160569856,'API_2754c22a1a1fd50c30be4bc58a5b1400','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavLoadList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:52',NULL),(99555703647109120,'API_cb035007aa42d351c7f84144528adade','通过载荷型号查询载荷实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/load/queryLoadInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:47',NULL),(99555704108482560,'API_1dffdd6514c4517fdc2339c931fdc1f9','查詢包括子公司的載荷類型','','cmii-uav-device','/api/uav/load/queryLoadModelByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:50',NULL),(99555704444026880,'API_c666353987c2e7f3d3fe966ba63acd2c','check在数据字典里面载荷类型编码和名称是否一致','check在数据字典里面载荷类型编码和名称是否一致','cmii-uav-device','/api/uav/load/checkLoadModelMapingInRedis','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:44',NULL),(99555704838291456,'API_2a6eaa070ef40bfe23947d9660ca996e','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:56',NULL),(99555705219973120,'API_95f6f70e43ae56ae811aae121ce27a1b','模糊查询包括子公司的载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:48',NULL),(99555705647792128,'API_6a05eaa7341ed42348a119d0d5098cea','模糊查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/load/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:58',NULL),(99555705958170624,'API_31dc801d5ac42388d0925a531fab0d45','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:44',NULL),(99555706524401664,'API_2b270bd6499910cae38f0fda79e608b9','查询载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:55',NULL),(99555706885111808,'API_cfa14462d7844b50d869d454a6db494a','模糊查询包括子公司的载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadTypeByCompanyId','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:47',NULL),(99555707233239040,'API_4c67d80c9f6c7ed11355e3170571f851','接口扫描','','cmii-uav-device','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:50',NULL),(99555707526840320,'API_b8ff7a2544bb4e8c6e7b79f324083dab','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2022-04-25 02:49:48',NULL),(99555707879161856,'API_7d444eaa2f15f8b184dd1855415e4446','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2022-04-25 02:49:47',NULL),(99555708315369472,'API_603ce91dec93cfb4063c1926d38cf572','swaggerResources','','cmii-uav-device','/swagger-resources','',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2022-04-25 02:49:47',NULL),(99555708583804928,'API_051cfba46414c56f1b4537687f89833d','errorHtml','','cmii-uav-device','/error','',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:54',NULL),(107479689374728192,'API_5a02b551720c04670f3b129cee25c013','从Redis模糊查询数据字典列表','从Redis模糊查询数据字典列表','cmii-admin-data','/api/admin/dictionary/getSimpleDictListFromRedis','GET',_binary '\0',_binary '\0','2021-05-12 06:05:55',1,'2024-11-06 12:17:16',NULL),(107479693967491072,'API_607f5d4328ad8185009002e624007294','获取图片验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/getImageCode','GET',_binary '\0',_binary '\0','2021-05-12 06:05:56',1,'2024-11-06 12:16:37',NULL),(112489002929487872,'API_2a430ee51c505de318a1880a0d441485','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:08',1,'2024-11-07 09:01:44',NULL),(112489044725727232,'API_19d8d6fc3205ac1b33a4b11e960579d1','下载','','cmii-uav-user','/api/uav/uavTestPO/download','GET',_binary '\0',_binary '\0','2021-05-26 01:51:18',1,'2024-11-06 12:16:21',NULL),(112489045325512704,'API_0fd8148ac05f2e3a9a399c84280d224a','测his','','cmii-uav-user','/api/uav/uavTestPO/test/{id}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:18',1,'2024-11-06 12:16:42',NULL),(114775736753061888,'API_33cf21309cfafc77bc2a278177d5815d','获取请求时间列表','','cmii-uav-developer','/admin/appInterfaceLog/getReqTimeList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:09',NULL),(114775737096994816,'API_e3e6aa9fbae21f88cffe36a56fb105e1','获取请求结果列表','','cmii-uav-developer','/admin/appInterfaceLog/getReqResultList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:14',NULL),(114775737273155584,'API_e8184e08ee36f67161fb2c913d8c1701','查询应用日志','','cmii-uav-developer','/admin/appInterfaceLog/queryAppLog','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:12',NULL),(114775737503842304,'API_5f6d8b66ed77d967aa94e8599ec7afc6','查询开发者应用接口日志','','cmii-uav-developer','/admin/appInterfaceLog/queryAppInfLogDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:09',NULL),(114775737763889152,'API_9152b399f21d6cdaac4fe037283aeac5','开发者状态设置','','cmii-uav-developer','/admin/developer/updateDeveloperStat','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:11',NULL),(114775737956827136,'API_c38d4b559610d49635564a827523f9c4','删除开发者','','cmii-uav-developer','/admin/developer/deleteDeveloper','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:11',NULL),(114775738162348032,'API_b6eef0dc086d249e13ed52966da47607','查询开发者详情','','cmii-uav-developer','/admin/developer/queryDeveloperDetail','GET',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:08',NULL),(114775738367868928,'API_f7ec0045ec1ff03c9065be8c2819c88d','按条件分页查询开发者信息','','cmii-uav-developer','/admin/developer/queryDeveloperPage','POST',_binary '\0',_binary '\0','2021-06-01 09:17:48',1,'2024-11-06 11:22:13',NULL),(114775738682441728,'API_45cbbbd675a3ae136e82db7288bf576e','查询接口详情','','cmii-uav-developer','/admin/interface/queryInterfaceDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:08',NULL),(114775738871185408,'API_96b2e79a4f477b37387f3b8e16a22efb','按限制类型查询接口列表','','cmii-uav-developer','/admin/interface/queryOpenInfListByLimit','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:08',NULL),(114775739055734784,'API_d5c826f7b6d82230a5eb467e19a79169','查询接口默认额度','','cmii-uav-developer','/admin/interface/queryInterfaceQuota','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:13',NULL),(114775739303198720,'API_a8cd003caa67a5a921f2256944634d8b','设置开放接口的默认额度','','cmii-uav-developer','/admin/interface/updateInfDefaultQuality','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:09',NULL),(114775739609382912,'API_aee816e1107fa7ae402bbf3337458f60','获取所有接口列表','','cmii-uav-developer','/admin/interface/getAllInfList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:11',NULL),(114775739793932288,'API_1cd5f43b0c83e48786da0e77fcc13415','获取接口的版本列表','','cmii-uav-developer','/admin/interface/queryInfVerList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:14',NULL),(114775739999453184,'API_40df37a92434235aa84b62d3e916b928','查询开放的接口列表','','cmii-uav-developer','/admin/interface/queryOpenInfList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:12',NULL),(114775740204974080,'API_a8c80d112f1d2f253cdc06425f3ed5d1','新建开放的接口','','cmii-uav-developer','/admin/interface/addOpenInf','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:13',NULL),(114775740351774720,'API_48ef3516a827d0dae65d097502eb10eb','获取接口所属列表','','cmii-uav-developer','/admin/interface/getInfGroupList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:14',NULL),(114775740523741184,'API_0bb0810c0a67f508c8d945cdcf7e347f','获取接口类型列表','','cmii-uav-developer','/admin/interface/getInfTypeList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:14',NULL),(114775740712484864,'API_ef3a2ce0a515714355090535f448640e','获取限制类型列表','','cmii-uav-developer','/admin/interface/getLimitTypeList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:08',NULL),(114775740867674112,'API_fa303ccf7b5c0a80b205be4b9b556ab3','获取接口未开放的版本列表','','cmii-uav-developer','/admin/interface/getOpenInfFilterVer','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2022-03-11 06:16:52',NULL),(114775741035446272,'API_95bf37804284299d3614f994e10dd454','获取版本列表','','cmii-uav-developer','/admin/interface/getVerFilterOpenInf','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:11',NULL),(114775741199024128,'API_df311855dff579c0fef6c1c93f24466e','查询接口服务信息','','cmii-uav-developer','/admin/interface/queryInfServie','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:10',NULL),(114775741345824768,'API_f74685713e06e2f53935f031d1206624','更新开放的接口','','cmii-uav-developer','/admin/interface/updateOpenInf','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:12',NULL),(114775741521985536,'API_1f054025f12fbed5ba28935536653867','删除开放的接口','','cmii-uav-developer','/admin/interface/deleteOpenInf','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2022-03-11 06:16:52',NULL),(114775741698146304,'API_05be7250e83854cabac33aa8481d73ee','接口版本状态设置','','cmii-uav-developer','/admin/interface/updateInfOpenStat','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:11',NULL),(114775741903667200,'API_b35c695bd85db06b9bc745a5d2ddce5a','获取应用对应的所有接口列表','','cmii-uav-developer','/admin/appInterface/getAllInfListByAppId','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:10',NULL),(114775742142742528,'API_b33aa731bbc196421f34a59457e34bfe','查询开发者应用的接口列表','','cmii-uav-developer','/admin/appInterface/queryDeveloperAppInfList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:14',NULL),(114775742453121024,'API_7be7cbb549fd7b555fcb2be309b98550','按条件分页查询开发者应用接口信息','','cmii-uav-developer','/admin/appInterface/queryDevAppInfPage','POST',_binary '\0',_binary '\0','2021-06-01 09:17:49',1,'2024-11-06 11:22:07',NULL),(114775742755110912,'API_487c8a3ede44d2ac0c414acc33cfe284','查询开发者的接口额度','','cmii-uav-developer','/admin/appInterface/queryDevAppInfQuality','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:13',NULL),(114775742922883072,'API_a71eec4d01d4e5bc2e57c39f4192232b','更新开发者的接口额度','','cmii-uav-developer','/admin/appInterface/updateDevAppInfQuality','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:14',NULL),(114775743140986880,'API_040ed67e904a52402a3f4c4c6715c039','获取接口选择列表','','cmii-uav-developer','/admin/appInterface/getInterfaceList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:08',NULL),(114775743409422336,'API_631781eb52b3ec03cf0d4df732276fd2','查询应用接口列表','','cmii-uav-developer','/admin/appInterface/queryAppInterfaceList','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:10',NULL),(114775743656886272,'API_a4067fb9e114a3a794f891f7063777e0','查询开发者应用列表','','cmii-uav-developer','/admin/app/queryDeveloperAppList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:08',NULL),(114775743807881216,'API_ed8b5ed28cbe4f05b2d5cc4a11437e3a','查询开发者应用详情','','cmii-uav-developer','/admin/app/queryDeveloperAppDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:10',NULL),(114775743992430592,'API_8a87f4853cb59b48c8aed60c8c607bef','开发者应用状态设置','','cmii-uav-developer','/admin/app/updateDeveloperAppStat','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:13',NULL),(114775744114065408,'API_48aff8af0a1d840c244918ad67946d1a','模糊查詢有效的公司列表','','cmii-uav-developer','/admin/app/queryCompanyList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:08',NULL),(114775744311197696,'API_3d6d75d0268e2fa743870d2fe858a80c','公司配置','','cmii-uav-developer','/admin/app/updateAppCompany','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:12',NULL),(114775744537690112,'API_ff9370f69f7aac079bb51c911abe2618','即将超额接口查询','','cmii-uav-developer','/open/appInterface/exceed/soon','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:11',NULL),(114775744646742016,'API_54b489bcf3d2cc909b03eb30a099f1ed','应用中心接口管理','','cmii-uav-developer','/open/appInterface/query/allInterface','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:12',NULL),(114775744789348352,'API_2605820b04fb1faa72101bbd0db55f95','应用中心单接口详情及调用情况查询','','cmii-uav-developer','/open/appInterface/query/oneInterface','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:11',NULL),(114775744990674944,'API_9473fe369c7f260a94908881e2dc6dfe','应用中心配置应用接口','','cmii-uav-developer','/open/appInterface/configure/appInterface','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:08',NULL),(114775745145864192,'API_a881b50a293cd74e76fb788a73986c77','过期接口查询','','cmii-uav-developer','/open/appInterface/expire','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:08',NULL),(114775745301053440,'API_49924878445637328fed6f6859571992','即将过期接口查询','','cmii-uav-developer','/open/appInterface/expire/soon','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:13',NULL),(114775745439465472,'API_111b36f22552e11926d50b76065d93ab','超额接口查询','','cmii-uav-developer','/open/appInterface/exceed','GET',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:07',NULL),(114775745586266112,'API_bb5eef9e25fc59ed9691c6c0e5f0e9bd','测试的一个接口','','cmii-uav-developer','/open/developer/test','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:14',NULL),(114775745737261056,'API_231f1e368cc91d254bbefdc01aba07f9','注册一个开发者','','cmii-uav-developer','/registry','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:14',NULL),(114775745825341440,'API_ef95508257e21f940c563388b9e05882','账号退出登录','','cmii-uav-developer','/logout','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:12',NULL),(114775745946976256,'API_a317338ad8a20bde2a6527687a891130','手机验证码登录','','cmii-uav-developer','/code/login','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:14',NULL),(114775746127331328,'API_1f297c5a95ded589eba1165c093afa62','账号手机号密码登录','','cmii-uav-developer','/login','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:12',NULL),(114775746223800320,'API_ef00199351a8c2ecc84208b618cb3590','验证token','','cmii-uav-developer','/checkToken','GET,POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:14',NULL),(114775746324463616,'API_9a0b8e02b5911e297f47dfdf7c235d6d','发送绑定手机号验证码','','cmii-uav-developer','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:10',NULL),(114775746429321216,'API_cc8bcdba1fe596734701165f96a335a8','验证绑定手机号验证码','','cmii-uav-developer','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:14',NULL),(114775746588704768,'API_31fcaa9533a4cd54ef0938cd820d1cda','发送解绑手机号验证码','','cmii-uav-developer','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:11',NULL),(114775746735505408,'API_7afb559213ac69778d66e897561f21ca','验证解绑手机号验证码','','cmii-uav-developer','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:14',NULL),(114775746903277568,'API_6c626d365f7d5d4b1417f6f538bcd701','发送登陆验证码','','cmii-uav-developer','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2021-06-01 09:17:50',1,'2024-11-06 11:22:09',NULL),(114775747075244032,'API_342ddbb0d279c86609ee179ddb70a154','发送注册验证码','','cmii-uav-developer','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775747184295936,'API_2ec694ff0087eed8688c02dab94ab2e3','发送找回密码验证码','','cmii-uav-developer','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775747326902272,'API_d573de42f6e958b142ecb17b99fef53e','检测找回密码验证码','','cmii-uav-developer','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775747494674432,'API_7ec8bf6dd5bc170b196448639ac635a6','获取登录图片验证码','','cmii-uav-developer','/verifyCode/getImgCode','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775747620503552,'API_332a97fd9c60506a41d49cfa74425943','获取登录图片验证码','','cmii-uav-developer','/verifyCode/getImageCode','GET,POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775747708583936,'API_72d46bc1b3c2c3fbb706ccf90c1c5045','检测登录图片验证码','','cmii-uav-developer','/verifyCode/checkImgCode','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:10',NULL),(114775747796664320,'API_5f9be3005b1ee159151109a589a4be2e','通过接口ID查询接口版本信息','','cmii-uav-developer','/open/interface/queryVersion/interfaceId','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:08',NULL),(114775747935076352,'API_7b5fb8d7cdaa937451785f18b8bca47d','应用信息接口统计查询','','cmii-uav-developer','/open/interface/statistic','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:08',NULL),(114775748086071296,'API_97fa0b21a6e0582ebbc6b4a4c3cc73dc','开发者应用接口调用统计表查询','','cmii-uav-developer','/open/interface/invoke/statistic','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775748169957376,'API_ba57288cf5da506f10139ef21a9a0516','通过应用ID查询接口信息','','cmii-uav-developer','/open/interface/queryBy/appId','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:10',NULL),(114775748274814976,'API_dbdcf5039369a1e54620efb8dc657594','开发者应用接口仓库查询','','cmii-uav-developer','/open/interface/query/repository','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:10',NULL),(114775748362895360,'API_e017c3a39f2e5a4b7ab9db3f8a7ce7d5','查询支持的接口','','cmii-uav-developer','/open/interface/querySupported','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:12',NULL),(114775748450975744,'API_64482ab93c5b16eeae0eb528d3115752','应用日志查询','','cmii-uav-developer','/open/appInterfaceLog/query/appLog','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:07',NULL),(114775748526473216,'API_fc5e76c7ce397a90a8be90095a032fee','单个应用日志查询','','cmii-uav-developer','/open/appInterfaceLog/queryById/appLog','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:10',NULL),(114775748601970688,'API_9c09e0ae79e6132847ff0d08068f309c','接口日志查询','','cmii-uav-developer','/open/appInterfaceLog/query/interfaceLog','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775748694245376,'API_1f48a95dd65cce7ff27ce43753f66aec','应用中心重置秘钥','','cmii-uav-developer','/open/app/reset/appSecret','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775748778131456,'API_04859c1c4490a753c9439731b21841d8','应用中心设置回调地址','','cmii-uav-developer','/open/app/redirect/setUrl','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775748916543488,'API_1148cb3b20820ef05f8a558696302379','应用中心主页查询','','cmii-uav-developer','/open/app/homePage','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:08',NULL),(114775749013012480,'API_2de76be60959a99df15b416b5b275259','应用中心应用详情查询','','cmii-uav-developer','/open/app/queryAppById','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:13',NULL),(114775749113675776,'API_b13fbe397ab9a1023a9bd894c653b08a','应用中心新建应用','','cmii-uav-developer','/open/app/add/oneApp','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:14',NULL),(114775749180784640,'API_6ba28024143f2b7d0ddfc8fdac0ecd14','应用中心编辑应用','','cmii-uav-developer','/open/app/edit/oneApp','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775749310808064,'API_7bceb7e7f10078bb3c9e2bea08593a71','应用中心删除应用','','cmii-uav-developer','/open/app/delete/oneApp','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:10',NULL),(114775749390499840,'API_1d199fe0c43da6bed731fdad8fe82450','分组获取接口','','cmii-uav-developer','/docs/list','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:10',NULL),(114775749465997312,'API_1f9ec5a9e39217e30d438af932b0da02','获取单个接口文档','','cmii-uav-developer','/docs/getDoc','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:08',NULL),(114775749528911872,'API_3980d89d5a050eafabd5c4ad7a9e503e','接口文档接口','','cmii-uav-developer','/docs/queryList','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775749600215040,'API_043697a415dbb19c06b7c8f07a93573f','重新绑定手机','','cmii-uav-developer','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775749696684032,'API_0374fe162425851f581647c1b556924e','申请更新邮箱','','cmii-uav-developer','/profile/updateEmail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775749763792896,'API_0b818065cdd6ac86f7a584e50938a2e7','执行更新邮箱','','cmii-uav-developer','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:12',NULL),(114775749822513152,'API_1e8b6083301def32a91ecd0dc8cc1aa3','根据token获取用户基本信息-敏感信息脱敏','','cmii-uav-developer','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775749889622016,'API_98c910ac1ef58a7c3e0cd365b6c7e248','重置密码','','cmii-uav-developer','/profile/resetPwd','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:14',NULL),(114775749977702400,'API_3c96913dfbf3f6870171165f71924ddd','找回密码','','cmii-uav-developer','/profile/findPwd','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775750061588480,'API_d366cbd537da89f207cc8bcb6f6501ac','删除(测试接口),不暴露','','cmii-uav-developer','/profile/test/delete','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:09',NULL),(114775750149668864,'API_3ba132a228592611918185541361adde','冻结(测试接口),不暴露','','cmii-uav-developer','/profile/test/freeze','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:08',NULL),(114775750220972032,'API_a5de7864126d4284160343a11491901e','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-developer','/oapi/surveillance/querySinglePlaneTrack/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775750283886592,'API_b29cc957df88bc0cadf3663dd0f0ac90','查询单个飞机目前最新航迹数据','','cmii-uav-developer','/oapi/surveillance/queryRealTimeInfo/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:13',NULL),(114775750359384064,'API_43d251bdbb2b70e01443db39187ce73d','查询公司下所有无人机7日内作业记录','','cmii-uav-developer','/oapi/surveillance/queryHistoryTotal/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:14',NULL),(114775750447464448,'API_286e75875ff01df2cc468548ad5a6260','上传无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/batchUpload/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:08',NULL),(114775750602653696,'API_b03eae6c9b63a9effe9ebea71bf0242f','上传无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/upload/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:07',NULL),(114775750682345472,'API_2bcc60637aaab8d71c94a24c0b9e5b9c','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/flight/uploadDefault/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:10',NULL),(114775750757842944,'API_3a4cbac29ee3a1639e96dab55a9d65c3','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/flight/batchUploadDefault/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:11',NULL),(114775750829146112,'API_a68a8f034580119f51e256a7e5d29eed','上传航线航点数据','上传单架次无人机航线航点数据','cmii-uav-developer','/oapi/waypoint/upload/v1','POST',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:12',NULL),(114775750959169536,'API_aec238a0f5bfc10cf870ab56f4fe5c7e','查询公司/所属机构获取无人机数量','','cmii-uav-developer','/oapi/uav/queryUavCountByCompanyId/v1','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2024-11-06 11:22:07',NULL),(114775751043055616,'API_db7379f32f6ccfd30af93ecd0476aac0','getExecute','','cmii-uav-developer','/oapi/execute','GET',_binary '\0',_binary '\0','2021-06-01 09:17:51',1,'2022-03-11 06:16:53',NULL),(114775751143718912,'API_77ed8e04aae416afa070c8ae5e78fa05','postExecute','','cmii-uav-developer','/oapi/execute','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:53',NULL),(114775751210827776,'API_2c659b9c896f283885ebe6e969f16692','查询开发者可用的开放接口','','cmii-uav-developer','/api/uav/developer/resource/queryOpenApi','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:07',NULL),(114775751269548032,'API_a29bbb1ac7dd5aa19287edfc634fd7e4','添加一个接口','','cmii-uav-developer','/api/uav/developer/resource/add','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:14',NULL),(114775751345045504,'API_4350bb89a028e49cca04fa544c649749','删除一个接口','','cmii-uav-developer','/api/uav/developer/resource/delete','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:12',NULL),(114775751416348672,'API_428becdef4fe192ba52703181366a717','检查是否有访问权限','','cmii-uav-developer','/api/uav/developer/resource/check','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:09',NULL),(114775751496040448,'API_628feaeb078b0fe346c4beb1ab4b9f4f','创建密钥','','cmii-uav-developer','/api/uav/developer/createSecret','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:10',NULL),(114775751588315136,'API_248e7844facb9784a8a7b40fe477795d','查询所有的开发者','','cmii-uav-developer','/api/uav/developer/queryAll','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:12',NULL),(114775751647035392,'API_14fde70f6213be071957fb84d7c65a0b','创建一个开发者','','cmii-uav-developer','/api/uav/developer/add','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:14',NULL),(114775751739310080,'API_78bb4d1993d778875f027860d9fe00e5','删除一个开发者','','cmii-uav-developer','/api/uav/developer/delete','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:09',NULL),(114775751819001856,'API_802eb37a0b62af352fc056205e04d17d','设备统计接口','设备统计接口','cmii-uav-developer','/oapi/device/uav/count/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:09',NULL),(114775751911276544,'API_2a7c176a3aecc330896abe3775282536','上传多架次无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/info/batchupload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:09',NULL),(114775752066465792,'API_cb10ebf50595eff8cafe5b005035cf61','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/device/default/batchupload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:14',NULL),(114775752150351872,'API_69db333b53a45ccc0f08a027753b011f','上传单架次无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-developer','/oapi/flight/info/upload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:14',NULL),(114775752230043648,'API_84aaff6bf2227a5a2134408ccff5f747','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-developer','/oapi/device/default/upload/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:12',NULL),(114775752339095552,'API_c664faa2b0378e48c80dbab68ea27bca','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-developer','/oapi/waypoint/airline/update/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2021-06-03 09:34:28',NULL),(114775752464924672,'API_36e05ad94c93486dc79203a54da8d8f3','hellobody服务接口','hello','cmii-uav-developer','/oapi/test/hellobody','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:11',NULL),(114775752565587968,'API_f5374accc2cc2fee2b9e3ee00bd851b1','hello服务接口','hello','cmii-uav-developer','/oapi/test/test','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:13',NULL),(114775752683028480,'API_50e1d0dcb74e0ec9fbbcc1c41bab122d','helloOMS服务接口','hello','cmii-uav-developer','/oapi/test/helloOMS','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:14',NULL),(114775752754331648,'API_a9bf2ce1a121ae9f008404ec515f6c2c','hello服务接口','hello','cmii-uav-developer','/oapi/test/test2.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:12',NULL),(114775752846606336,'API_2e845daf100907e81f7e6fc78e62b2fa','hello服务接口','hello','cmii-uav-developer','/oapi/test/hello','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:09',NULL),(114775752930492416,'API_e917bfbfc2f36931ec9dce07e3553b44','hello服务接口','hello','cmii-uav-developer','/oapi/test/hello3.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:09',NULL),(114775752993406976,'API_000edb8f1f238c4c68fa990c5c3e60c0','hellobody服务接口','hello','cmii-uav-developer','/oapi/test/hellobody2.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:11',NULL),(114775753056321536,'API_afa3a82d93f818182fac6356d11827f0','collect服务接口','collect','cmii-uav-developer','/oapi/test/collect','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:08',NULL),(114775753136013312,'API_f145b379ea43368edc5c303dfaa3aac1','hellobody服务接口','hello','cmii-uav-developer','/oapi/test/hellobody3.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:13',NULL),(114775753224093696,'API_4cfe82249df6e31767ee4c80705f556c','hello服务接口','hello','cmii-uav-developer','/oapi/test/hello2.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:11',NULL),(114775753324756992,'API_a9ea0073d6597754c45d70977a962fef','查询公司下所有无人机7日内作业记录','查询公司下所有无人机7日内作业记录','cmii-uav-developer','/oapi/surveillance/fly/history/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:10',NULL),(114775753433808896,'API_e857ececd7d8c4dc95c954057afbb94a','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-developer','/oapi/surveillance/plane/single/track/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2021-06-03 09:34:29',NULL),(114775753509306368,'API_88b517ded43c0722f4d2f15f0ffcc928','查询单个飞机目前最新航迹数据','查询单个飞机目前最新航迹数据','cmii-uav-developer','/oapi/surveillance/info/realtime/1.0','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2021-06-03 09:34:29',NULL),(114775753597386752,'API_e56479ab411bf3bd896f0a0ef0f734e5','接口扫描','','cmii-uav-developer','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2024-11-06 11:22:11',NULL),(114775753672884224,'API_6364c013c03d1b8f7825cc34661d5b8a','swaggerResources','','cmii-uav-developer','/swagger-resources','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775753748381696,'API_8c223d1e34dc560d0f463b4813520c03','uiConfiguration','','cmii-uav-developer','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775753823879168,'API_b55012ce8c25d4e88713f063b8479bc7','securityConfiguration','','cmii-uav-developer','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775753899376640,'API_4621b34a9c51fd6d370e9bf2ab3ac11c','errorHtml','','cmii-uav-developer','/error','',_binary '\0',_binary '\0','2021-06-01 09:17:52',1,'2022-03-11 06:16:54',NULL),(114775767862214656,'API_b99e8fb53bca58fa8ff57ceb3e14fb13','ping','','cmii-uav-device','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:17:55',1,'2024-11-07 09:01:53',NULL),(114775767988043776,'API_49e1eb08d9cbad20d0dcfe5ba7d0d0fa','health','','cmii-uav-device','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:17:56',1,'2024-11-07 09:01:45',NULL),(114775789718732800,'API_100a284ed1d1ae4ab3b90991239af961','ping','','cmii-uav-user','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:18:01',1,'2024-11-06 12:16:24',NULL),(114775789769064448,'API_ffc94b12cc6152ed1ebd0dadf788eba4','health','','cmii-uav-user','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:18:01',1,'2024-11-06 12:16:43',NULL),(115504634864336896,'API_5abb294cc21f30cdcbc9ee8a93f5285a','ping','','cmii-admin-user','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:11',1,'2024-09-09 09:14:21',NULL),(115504635405402112,'API_07922b27b56679c96068e94db1bbeabc','health','','cmii-admin-user','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:11',1,'2024-09-09 09:14:16',NULL),(115504694616391680,'API_61a891fd99cc79fe9b31195836bd7ac3','health','','cmii-uav-developer','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:25',1,'2024-11-06 11:22:12',NULL),(115504694830301184,'API_22d674c3b28f20984ce30188896c1e2c','ping','','cmii-uav-developer','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:25',1,'2024-11-06 11:22:13',NULL),(118346823118094336,'API_49161f40c3b80954b51c002e0f21e978','根据设备号获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:01',1,'2024-11-07 09:01:56',NULL),(118346824040841216,'API_cc680d9c43972b032c1413b3f0bfce0d','公司添加用户','公司添加用户描述','cmii-uav-developer','/oapi/test/company_user_add','POST',_binary '\0',_binary '\0','2021-06-11 05:48:02',1,'2024-11-06 11:22:09',NULL),(118346824321859584,'API_8dc88284610210adf60a770607c5e183','添加公司','添加公司秒速','cmii-uav-developer','/oapi/test/company_add','POST',_binary '\0',_binary '\0','2021-06-11 05:48:02',1,'2024-11-06 11:22:10',NULL),(118346827232706560,'API_74ec2a0cb0446beb24de6c39e87ac38f','获取公司','获取公司','cmii-uav-developer','/oapi/test/company_get','POST',_binary '\0',_binary '\0','2021-06-11 05:48:02',1,'2024-11-06 11:22:11',NULL),(118346828033818624,'API_f2ec2ffe515df2cc8a95d030fc71ff70','查询单个飞机最新数据','','cmii-uav-developer','/oapi/surveillance/info/realtimeInfo/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-11-06 11:22:07',NULL),(118346828344197120,'API_dceb7cc5ef051cbb94a76d3d5ef9b0e2','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-developer','/oapi/surveillance/plane/single/allTrack/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-11-06 11:22:08',NULL),(118346829044645888,'API_6a6ce3c5e188d191199c647cf201626c','全局统计本公司设备在线及简略详情','全局统计本公司设备在线及简略详情','cmii-uav-developer','/oapi/surveillance/fly/total/1.0','GET',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-11-06 11:22:14',NULL),(118346829359218688,'API_712dc09d92bebebb23d5d9227ea673ff','查询无人机的拉流信息','','cmii-uav-developer','/oapi/surveillance/uav/steamAddrs/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-11-06 11:22:13',NULL),(118346829602488320,'API_543cb477e2336f1150721d559fa46c84','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-developer','/oapi/waypoint/airline/upload/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-11-06 11:22:11',NULL),(118346829979975680,'API_bb8e0b03ce9688636392da54ccaeef8b','复亚作业上传文件','复亚作业上传文件','cmii-uav-developer','/oapi/mission/oss/foiaUpload/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-11-06 11:22:10',NULL),(118346830386823168,'API_34d2ea0e32fd6c9ed6f2c59dd5fe707b','普通作业上传文件','普通作业上传文件','cmii-uav-developer','/oapi/mission/oss/normalUpload/1.0','POST',_binary '\0',_binary '\0','2021-06-11 05:48:03',1,'2024-11-06 11:22:08',NULL),(118346855896580096,'API_9aa7ec1c77b2f1e32778d663f5c3898e','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-device','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:09',1,'2024-11-07 09:01:48',NULL),(118349371417821184,'API_289464e10fe2a7ce4a6b8d0bc171cb37','视频回放','视频回放','cmii-uav-cloud-live','/public/his/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:40',NULL),(118349371828862976,'API_54a5348ac671626c43c764324d188f45','回放视频封面','回放视频封面','cmii-uav-cloud-live','/public/his/playback/cover','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:43',NULL),(118349371887583232,'API_9d28fbc7c7784e8ec68d13bb1e2b5342','获取时间戳(yyyyMMddHHmmss)','获取时间戳','cmii-uav-cloud-live','/client/live/playback/timestamp','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:40',NULL),(118349371954692096,'API_afb234620493d3bacd41c8856967fa2a','获取视频流地址信息','通过设备号获取视频流地址信息','cmii-uav-cloud-live','/client/live/create','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:38',NULL),(118349372009218048,'API_be4e01864c39805f1642134d888b02c4','启动AI流任务','启动AI流任务','cmii-uav-cloud-live','/client/live/ai/start','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-05-07 08:33:48',NULL),(118349372067938304,'API_f5c35f28acc1868831a3bcc2e7b16389','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/client/live/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:36',NULL),(118349372118269952,'API_f786e0a615e81b944c0ba70449453da6','获取回放信息(包括封面)','获取回放信息(包括封面)','cmii-uav-cloud-live','/client/live/playback/m3u8Info','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:35',NULL),(118349372202156032,'API_8ff849043d0e3a1dde9612ba3b707605','获取回放视频token','获取回放视频token','cmii-uav-cloud-live','/client/live/playback/token','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:42',NULL),(118349372265070592,'API_5cd7b62f7857e1c41eb2389a64843169','查询视频流通道ID','查询设备对应的视频流通道ID','cmii-uav-cloud-live','/client/live/getStreamId','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:35',NULL),(118349372332179456,'API_cebe3ea38fd5de661fb7169955872bf5','查询具体视频流地址','查询设备对应的某种视频流地址','cmii-uav-cloud-live','/client/live/get','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:42',NULL),(118349372390899712,'API_64d5ee764973e82287d15d96289f0974','health','','cmii-uav-cloud-live','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:37',NULL),(118349372449619968,'API_11d6b101a37aee3d2968d5befdba397b','ping','','cmii-uav-cloud-live','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:41',NULL),(118349372508340224,'API_a9934d326aaa2d148734d9ef6bd86b72','接口扫描','','cmii-uav-cloud-live','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:40',NULL),(118349372575449088,'API_b7e2958940688b9536c45ef455cbb00f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:31',NULL),(118349372634169344,'API_9cc1caf8776d669aae36e19adc19f4ec','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:31',NULL),(118349372688695296,'API_a7a93d6bfc9b6112cb5dd2d20d51bb92','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:31',NULL),(118349372797747200,'API_7b5c8e9b95934d385fc84a301156e020','第一次上传项目','第一次上传项目,返回projId','cmii-uav-cloud-live','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349372856467456,'API_690036470ac7133066e45b60b5353ecd','项目文件上传','上传项目文件 ','cmii-uav-cloud-live','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349372994879488,'API_0397f90389582c696a60ba0c32f34110','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-cloud-live','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349373053599744,'API_398c21859fb437ac1e6edb2892a59fef','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-cloud-live','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:12',NULL),(118349373124902912,'API_10a9d10e5455fb2ff0d8434e0d5a4c6f','删除项目的文件','删除项目的文件,支持批量','cmii-uav-cloud-live','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11',NULL),(118349373192011776,'API_150e23b0c5fbf84f07cac8933516682c','errorHtml','','cmii-uav-cloud-live','/error','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:42',NULL),(127035382402383872,'API_455c35e7821e0af2222a0b32989d1c99','获取接口的示例语言','','cmii-uav-developer','/admin/interface/querySampleLanguages','GET',_binary '\0',_binary '\0','2021-07-05 05:13:15',1,'2024-11-06 11:22:09',NULL),(127035382788259840,'API_5158f8f7df0b3966067e53c698098159','添加或更新多语言示例代码','','cmii-uav-developer','/admin/interface/mergeSampleCodes','POST',_binary '\0',_binary '\0','2021-07-05 05:13:15',1,'2024-11-06 11:22:10',NULL),(127035482902102016,'API_b127e8d74c7d88572818a6767e1f4a9a','获取某个kpi最新取值','获取某个kpi最新取值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:20',NULL),(127035482994376704,'API_ee187d2d5b861acf87c99c0f03bc0aeb','采集所有配置kpi值','集所有配置kpi值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpis','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483065679872,'API_a74e30325f9fc3ada840c47319f571e8','测试采集并推送所有KPI值【测试】','测试采集并推送所有KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/allKpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483136983040,'API_695c96c4e4b60e41e4b170d18a8207a4','推送某个KPI值【测试】','推送某个KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:20',NULL),(127035483199897600,'API_ba49cb37fe53a50feed5ee2e2721fe4e','解析配置文件并测试kpi取值【测试】','解析配置文件并测试kpi取值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/parse/file','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483254423552,'API_f4b801b6f4f6eabff1eade6ffe536c47','更新指标配置信息【管理员用】','更新指标配置信息【管理员用】','cmii-uav-kpi-monitor','/kpi/monitor/config/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483308949504,'API_9de68788e8519966581f78f8b3da56c6','获取每个用户访问时长','获取每个用户访问时长','cmii-uav-kpi-monitor','/user/accessAnalysis/userAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483363475456,'API_3545158a96ea145fcd03285b42c18f42','获取每个公司用户访问行为','获取每个公司用户访问行为','cmii-uav-kpi-monitor','/user/accessAnalysis/companyAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483455750144,'API_a31391fcf55f7c3dc7a9586f344415af','下载单用户访问情况','下载单用户访问情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/accessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483506081792,'API_b7bc47b7b77ffe63ba428eb36d280afd','下载公司用户使用情况','下载公司用户使用情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/companyAccessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483560607744,'API_9f9cdb82fba2247dbc894ad15411e0c2','health','','cmii-uav-kpi-monitor','/cmii/health','GET',_binary '\0',_binary '\0','2021-07-05 05:13:39',1,'2024-11-06 12:17:19',NULL),(127035483619328000,'API_a1c7ba561fb4fa48452235a4cbf206b3','ping','','cmii-uav-kpi-monitor','/cmii/ping','GET',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-11-06 12:17:19',NULL),(127035483678048256,'API_a02eee36bdea730c9b24dfa944cc6bc5','接口扫描','','cmii-uav-kpi-monitor','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-11-06 12:17:19',NULL),(127035483732574208,'API_e9c7f41a1163a4d02cb3da23ab6cc254','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-07-29 15:58:27',NULL),(127035483791294464,'API_a57b76ba92218fdf8c0711a3975bf6a4','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-07-29 15:58:27',NULL),(127035483858403328,'API_76d19d64565237e2591fc5b5ecc488fb','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-07-29 15:58:27',NULL),(127035483917123584,'API_86a09a2be1661d38daa754f5ce91e913','error','','cmii-uav-kpi-monitor','/error','',_binary '\0',_binary '\0','2021-07-05 05:13:40',1,'2024-11-06 12:17:19',NULL),(132527468161531904,'API_8de4801e5e53f51580b6ead79e00fca6','重新保存失败视频文件','重新保持失败视频文件','cmii-uav-cloud-live','/video/reSaveFailedFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-11-14 02:02:38',NULL),(132527468367052800,'API_7e49e7ff34f254a4df5d1d70101a7c30','获取视频分片文件列表','获取视频分片文件列表','cmii-uav-cloud-live','/video/file/partList','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-11-14 02:02:38',NULL),(132527468455133184,'API_56cc6cc9afb762bdcf5326e7c41d0dc0','重置视频同步时间','重置视频同步时间','cmii-uav-cloud-live','/video/resetSyncTime','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-11-14 02:02:41',NULL),(132527468522242048,'API_a1029d20b60b6b56f72d27c121cfff58','同步视频文件','同步视频文件','cmii-uav-cloud-live','/video/syncPartFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:51',1,'2024-11-14 02:02:42',NULL),(132865491239698432,'API_4f8f8c3c7476f108657f2dae1ee7d5f7','公司所属无人机分页查询','公司所属无人机分页查询','cmii-uav-developer','/oapi/device/uav/page/1.0','POST',_binary '\0',_binary '\0','2021-07-21 07:20:02',1,'2024-11-06 11:22:09',NULL),(132865491407470592,'API_b6de44f432e4656938b964a94342b817','查询无人机视频回放','查询无人机视频回放','cmii-uav-developer','/oapi/mission/uav/video/1.0','POST',_binary '\0',_binary '\0','2021-07-21 07:20:02',1,'2024-11-06 11:22:12',NULL),(133267087639445504,'API_05684b732792a350983cc6ebb2066ac5','获取类别最新应急指标列表(分类,job:作业信息;bss:基站&卫星信息;summary:概况)','获取某个kpi最新取值','cmii-uav-kpi-monitor','/personal/emergency/sos/category','GET',_binary '\0',_binary '\0','2021-07-22 09:55:50',1,'2024-11-06 12:17:19',NULL),(136161781507686400,'API_44daf24fb4cf68ed9db2f3d631de795c','轨迹视频回放接口','轨迹视频回放接口','cmii-uav-cloud-live','/client/live/playback/detailToken','POST',_binary '\0',_binary '\0','2021-07-30 09:38:18',1,'2024-11-14 02:02:44',NULL),(136161872553443328,'API_2c7b0a08d1daa06561c79bf498e6e25d','统计','','cmii-admin-user','/chartInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:38:40',1,'2024-09-09 09:14:21',NULL),(136161872649912320,'API_fa535023c079bce929fa1c2b1709fcd4','运行报表','','cmii-admin-user','/runningReport','GET',_binary '\0',_binary '\0','2021-07-30 09:38:40',1,'2024-09-09 09:14:19',NULL),(136161873673322496,'API_9370ffdd40b5840b0598f769e9eb1627','获取图片验证码(图片)','','cmii-admin-user','/getImageCode','GET,POST',_binary '\0',_binary '\0','2021-07-30 09:38:40',1,'2024-09-09 09:14:17',NULL),(136161874029838336,'API_c5881dfec33ece1e47dd2ce0fb27b251','更具图片id获取图片code','','cmii-admin-user','/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:20',NULL),(136161875984384000,'API_a4428a7f77c1d979aa25cd335dc1db50','api','','cmii-admin-user','/api/{uri}','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:16',NULL),(136161876085047296,'API_2652c42ce633640cd35b7ecbcf40f8f9','任务日志管理-查询执行器的日志','','cmii-admin-user','/joblog/getJobsByGroup','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:21',NULL),(136161876189904896,'API_14dd901e124793e845e5fb23863ad219','任务日志管理-分页查询日志','','cmii-admin-user','/joblog/pageList','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:20',NULL),(136161876298956800,'API_740e764859f3a40d9c207d4eb97474ff','任务日志管理-查询日志详情','','cmii-admin-user','/joblog/logDetailCat','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:19',NULL),(136161876395425792,'API_24893b2c8b86de1c3c478dc9ba96e77b','任务日志管理-清楚日志','','cmii-admin-user','/joblog/clearLog','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:17',NULL),(136161876483506176,'API_1ea32d8384469c149399a5a541ff7197','任务执行器-分页查询','','cmii-admin-user','/jobgroup/pageList','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:20',NULL),(136161876575780864,'API_e56aabbd072e6504158310aa3ea75a15','任务执行器-查询单个','','cmii-admin-user','/jobgroup/loadById','GET',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:17',NULL),(136161876663861248,'API_1ca2054ac0536146b89bf0648521b250','任务执行器-删除','','cmii-admin-user','/jobgroup/remove','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:21',NULL),(136161876785496064,'API_125089374bd8a86e128b04b4366bed50','任务执行器-更新','','cmii-admin-user','/jobgroup/update','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:18',NULL),(136161876873576448,'API_1f4ef36fd959340698ee0201d37fb0d0','任务执行器-添加','','cmii-admin-user','/jobgroup/save','POST',_binary '\0',_binary '\0','2021-07-30 09:38:41',1,'2024-09-09 09:14:17',NULL),(136161881931907072,'API_dddf8ad3442dcb4cc73e32e1e22e0675','任务执行脚本-脚本类型列表','','cmii-admin-user','/jobcode/glueTypes','GET',_binary '\0',_binary '\0','2021-07-30 09:38:42',1,'2024-09-09 09:14:17',NULL),(136161882061930496,'API_bc6b4d9288f5282c5840eea30565bf81','任务执行脚本-脚本类型列表','','cmii-admin-user','/jobcode/jobLogglueHistory','GET',_binary '\0',_binary '\0','2021-07-30 09:38:42',1,'2024-09-09 09:14:20',NULL),(136161882225508352,'API_bfdfb1ee8e1376f4dc1e1f6ad5b5dcae','任务执行脚本-添加脚本','','cmii-admin-user','/jobcode/add','POST',_binary '\0',_binary '\0','2021-07-30 09:38:42',1,'2024-09-09 09:14:18',NULL),(136161882330365952,'API_d2d21528ebfbfe9b3387b6f785284970','任务管理-停止','','cmii-admin-user','/jobinfo/stop','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161882472972288,'API_c974f70ca7ebe98820999f986f0ef200','任务管理-立即执行','','cmii-admin-user','/jobinfo/trigger','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:18',NULL),(136161882577829888,'API_c439e4c75c067b0fc30fca5ae9d6a6b1','任务管理-下次执行时间','','cmii-admin-user','/jobinfo/nextTriggerTime','GET',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:19',NULL),(136161882686881792,'API_eca5c0ba88d555f86467325f491de93f','任务管理-分页列表','','cmii-admin-user','/jobinfo/pageList','GET',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:17',NULL),(136161882791739392,'API_9d92886a872bc1a3b8c03be8667215d1','任务管理-任务添加','','cmii-admin-user','/jobinfo/add','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161882938540032,'API_7aa023ee87f1ee721824c4760685137f','任务管理-删除','','cmii-admin-user','/jobinfo/remove','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:18',NULL),(136161883026620416,'API_f9900d456fe4e648ebb0f505f6e04048','任务管理-更新','','cmii-admin-user','/jobinfo/update','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:21',NULL),(136161883173421056,'API_8d81b83bec910f424529aa0e1c17fec1','任务管理-测试','','cmii-admin-user','/jobinfo/test','GET',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161883265695744,'API_77334174f0a5e3ca46b78424ed1e1775','任务管理-开始','','cmii-admin-user','/jobinfo/start','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161884054224896,'API_d4d80087f69bb270e3a10a0a72bd0faa','triggerJob','','cmii-admin-user','/client/v1/xxljob/trigger','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:18',NULL),(136161884209414144,'API_d451888076412990f21f0c9006fe88eb','addAndStart','','cmii-admin-user','/client/v1/xxljob/addAndStart','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161884322660352,'API_102c4d46bd0840c81c6e2493004f360c','add','','cmii-admin-user','/client/v1/xxljob/add','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161884461072384,'API_1cdbdb163b9724bfab14abd92d13a5b4','remove','','cmii-admin-user','/client/v1/xxljob/remove','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:19',NULL),(136161884616261632,'API_d881810e3a3c61966d04a0eb370b8b0a','update','','cmii-admin-user','/client/v1/xxljob/update','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:16',NULL),(136161884763062272,'API_0d1de4119d0666c24db6f6d60edf30b2','start','','cmii-admin-user','/client/v1/xxljob/start','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136161884893085696,'API_3e67c2b4289e47828705d49c26e440ca','stop','','cmii-admin-user','/client/v1/xxljob/stop','POST',_binary '\0',_binary '\0','2021-07-30 09:38:43',1,'2024-09-09 09:14:20',NULL),(136166412912689152,'API_03cd30425f552e7e5ae322bfd03e269c','应急数据修改接口','应急数据修改接口','cmii-uav-kpi-monitor','/personal/emergency/sos_data/update','GET',_binary '\0',_binary '\0','2021-07-30 09:56:43',1,'2024-11-06 12:17:19',NULL),(136166413076267008,'API_858feecbcc679d7e7f65039c0089cdff','获取每个公司无人机实例信息','获取每个公司无人机实例信息','cmii-uav-kpi-monitor','/user/accessAnalysis/planeInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:56:43',1,'2024-11-06 12:17:20',NULL),(171683410652168192,'API_d1568db90a52026907f43d635e6ef310','env','','cmii-uav-kpi-monitor','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:35',1,'2024-11-06 12:17:20',NULL),(171683418445185024,'API_5f406ee1cd13e3451ef8f25ef51067b1','env','','cmii-uav-developer','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:37',1,'2024-11-06 11:22:12',NULL),(171683474053267456,'API_340fe139abee2fde75289994adff7ec1','env','','cmii-uav-cloud-live','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:50',1,'2024-11-14 02:02:44',NULL),(171683476808925184,'API_0bb20ef1840be51455dbad528597652b','下载指定时长mp4文件','下载制定时长mp4文件','cmii-uav-cloud-live','/video/download/mp4file','GET',_binary '\0',_binary '\0','2021-11-05 10:08:51',1,'2024-11-14 02:02:40',NULL),(171683477194801152,'API_9a239d269204b50e4d66d2cce1dea7e0','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','/public/his/playback/ts/{fileName}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:51',1,'2024-11-14 02:02:38',NULL),(171683481716260864,'API_24ffe32cac865b59c4824b21954438ac','开始一个新的workflow','开始一个新的workflow','cmii-uav-cloud-live','/orchestrate/init','POST',_binary '\0',_binary '\0','2021-11-05 10:08:52',1,'2022-03-08 07:20:03',NULL),(171683485000400896,'API_1b3f2d7c00669e0d02e448b75e3e6bfe','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2023-03-29 10:20:12',NULL),(171683485386276864,'API_648ec3173582226c50adabdef7640f36','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2023-03-29 10:20:11',NULL),(171683488083214336,'API_f9c07c14cdd4bcfe3034e65dbf0e63b2','env','','cmii-admin-user','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2024-09-09 09:14:18',NULL),(171683495196753920,'API_ce4958dc010425235d4e3482f841610b','根据编码集合查询出接口信息','','cmii-admin-user','/api/admin/resource/api/queryByCodes','POST',_binary '\0',_binary '\0','2021-11-05 10:08:55',1,'2024-09-09 09:14:21',NULL),(171683523713826816,'API_315b612a067b9282f2f8d4ecc2d84043','菜单资源同步','','cmii-admin-user','/api/admin/resource/sync','POST',_binary '\0',_binary '\0','2021-11-05 10:09:02',1,'2024-09-09 09:14:18',NULL),(171683527077658624,'API_a5c01e415168182b56c9f1b191902312','导出应用数据','','cmii-admin-user','/v1/platforms/syncExportPlatform','GET',_binary '\0',_binary '\0','2021-11-05 10:09:03',1,'2024-09-09 09:14:19',NULL),(171683527425785856,'API_d960b7966ae734022d6d73c1eb1d48d2','导入应用数据','','cmii-admin-user','/v1/platforms/syncImportPlatform','POST',_binary '\0',_binary '\0','2021-11-05 10:09:03',1,'2024-09-09 09:14:19',NULL),(171683527799078912,'API_35d6a2526c3fc01c073fbfa22bb11852','同步子系统信息','','cmii-admin-user','/v1/platforms/syncPlatform','POST',_binary '\0',_binary '\0','2021-11-05 10:09:03',1,'2024-09-09 09:14:19',NULL),(171683549794009088,'API_371627ad81634fcc7c8cd5e38f09562f','菜单资源同步','','cmii-uav-user','/api/uav/resource/sync','POST',_binary '\0',_binary '\0','2021-11-05 10:09:08',1,'2024-11-06 12:16:37',NULL),(171683565119995904,'API_e6410cd8083ec77c856dbeac9282364e','公司支持的多语言','','cmii-uav-user','/api/uav/user/profile/querySupportedLanguages','POST',_binary '\0',_binary '\0','2021-11-05 10:09:12',1,'2024-11-06 12:16:35',NULL),(171683567418474496,'API_9592623ab1b1e0bf43fa57eeaf7a978e','根据编码集合查询出接口信息','','cmii-uav-user','/api/uav/resource/api/queryByCodes','POST',_binary '\0',_binary '\0','2021-11-05 10:09:12',1,'2024-11-06 12:16:44',NULL),(171683574255190016,'API_ef1392e9af777173a7d22a9a2dd896fc','用户修改密码(验证旧密码)','','cmii-uav-user','/api/uav/user/modifyPwd','POST',_binary '\0',_binary '\0','2021-11-05 10:09:14',1,'2024-11-06 12:16:41',NULL),(171683574620094464,'API_3d2e58aa2ed872cc0efb748d14cd2e5d','验证账号密码','','cmii-uav-user','/api/uav/user/checkAccountPwd','POST',_binary '\0',_binary '\0','2021-11-05 10:09:14',1,'2024-11-06 12:16:25',NULL),(171683591451836416,'API_3dc66cc39026e1523fab47ab17028019','根据用户id获取用户详细信息','','cmii-uav-user','/user/getUpdateById','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-11-06 12:16:36',NULL),(171683594895360000,'API_9139c0e2f4ff19be2ee015f851dea540','更新检查密码过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdExpire','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-11-06 12:16:43',NULL),(171683595289624576,'API_6beea8e80ff08ac650cf234507edd315','更新检查密码即将过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdWillExpire','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-11-06 12:16:21',NULL),(171683595671306240,'API_412903050f7d31bec581858540eec30a','向用户发送短信','','cmii-uav-user','/user/pwd/notice/startSendSms','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-11-06 12:16:29',NULL),(171683596111708160,'API_da4d4460e5d246a7e2e5bcc23912ceb9','向用户发送Email','','cmii-uav-user','/user/pwd/notice/startSendEmail','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-11-06 12:16:20',NULL),(171683598380826624,'API_41a5a4ad4c33ecaa64d42329d150bb2e','env','','cmii-uav-user','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:20',1,'2024-11-06 12:16:38',NULL),(171683603313328128,'API_deff3745dfbb0fbff07bba51cf8ccece','从Redis获取有效的编码对应的本地语言的值','从Redis获取有效的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getValLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-11-05 10:09:21',1,'2024-11-06 12:17:11',NULL),(171683606232563712,'API_a62e0e5af0aa671e90aa30bee955bb38','从Redis获取有效的语言对应的字典明细的K-V','从Redis获取有效的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2021-11-05 10:09:21',1,'2024-11-06 12:17:17',NULL),(171683612331081728,'API_719e33488c94c692a8a6194044a9226a','查询指定限制空域','','cmii-admin-data','/api/admin/arealimit/querySpecifiedZydAreaLimit','POST',_binary '\0',_binary '\0','2021-11-05 10:09:23',1,'2024-11-06 12:17:17',NULL),(171683618735783936,'API_17e92ba3f3254c5de0a373d75bedfbb9','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2021-11-05 10:09:24',1,'2024-10-22 12:07:17',NULL),(171683618979053568,'API_526b934847d50eb05602fd611b9e5dcc','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2021-11-05 10:09:24',1,'2024-10-22 12:07:18',NULL),(171683619281043456,'API_d826dc52a480d92cce72a9b9477221c6','通过告警对象查询指定公司的在线告警事件列表','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:18',NULL),(171683619511730176,'API_e6e68e310194d4af876a4ad5f8362cb0','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:16',NULL),(171683619759194112,'API_e8a1ae1477cca15626192ae0c8edc535','查询告警配置对应的事件信息','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByAlrmId','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:17',NULL),(171683620061184000,'API_1e77ab6a913b79833e87b67f02f57aab','告警触发器','','cmii-uav-alarm','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:16',NULL),(171683620312842240,'API_79b01188af4e7022c61720c36d77a31d','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byId','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:16',NULL),(171683620543528960,'API_3b185cd3d02b8d675047b4d85e977c92','通过关联作业处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:17',NULL),(171683620765827072,'API_ee029c84f67993e91d0455d40e9a36c0','通过事件标识处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmByIdentity','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:19',NULL),(171683621000708096,'API_8821ef843ad5e6ab28249bca8b816996','通过告警对象处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:18',NULL),(171683621239783424,'API_b8fd251faf2dc9c5e93a71d69a643444','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/onLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:19',NULL),(171683621466275840,'API_a2475abfb5028b323c9b422abb307769','查询历史在告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/offLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:18',NULL),(171683621696962560,'API_780123db4080c80b7dfa636d0799878b','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:16',NULL),(171683621923454976,'API_894992c55afc4f4cd771e603af0142c3','查询包括子公司的指定告警配置的详情','','cmii-uav-alarm','/api/uav/alarm/query/configurationById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:19',NULL),(171683622149947392,'API_1d9708f43fe32a30e441a63e750063c9','查询指定公司的监控对象告警触发条件','','cmii-uav-alarm','/api/uav/alarm/queryAlarmTriggerByObj','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:17',NULL),(171683622384828416,'API_b4647e28e3da8db818e570a626b27ca7','新增告警配置','','cmii-uav-alarm','/api/uav/alarm/add/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:19',NULL),(171683622653263872,'API_e8aefd2952a4b43dcb8064e8b703d879','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:18',NULL),(171683622913310720,'API_5836f54818af59d88aff1ee225d3ee3a','查询包括子公司的告警名称','','cmii-uav-alarm','/api/uav/alarm/queryAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:19',NULL),(171683623160774656,'API_94ab8f3eeb3b5ccd94f6b7d9fe575b9f','查询包括子公司的监控对象','','cmii-uav-alarm','/api/uav/alarm/queryAlarmObject','GET',_binary '\0',_binary '\0','2021-11-05 10:09:25',1,'2024-10-22 12:07:18',NULL),(171683623387267072,'API_ddd29fd3c17dbc04e47ad11a617656e8','查询包括子公司的监控指标','','cmii-uav-alarm','/api/uav/alarm/queryAlarmIndex','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683623622148096,'API_8a110d05ceda064d14bc186c840ffd26','分页查询包括子公司的告警配置','','cmii-uav-alarm','/api/uav/alarm/query/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683623869612032,'API_e19ec127d1af0072905a7f7080bcf5e6','数据字典下拉列表查询','','cmii-uav-alarm','/api/uav/alarm/getDictValue','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:19',NULL),(171683624112881664,'API_1e54a11defb3f33db2e73db82c28d95f','查询当前公司所属用户列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userInfo','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:18',NULL),(171683624398094336,'API_338ce979c6c54127e5c0c8f8658665fb','根据用户名称或者手机号查询当前公司所属用户id列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userIds','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683624628781056,'API_6b46feb15dfd928bd5dae31533e09ebc','启用禁用操作','','cmii-uav-alarm','/api/uav/alarm/update/available','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683624913993728,'API_34e3288ab4eda30bb0fd075d007d625d','校验告警名称','','cmii-uav-alarm','/api/uav/alarm/checkAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:19',NULL),(171683625140486144,'API_77adff0510203563ce13a51a32e15130','删除操作','','cmii-uav-alarm','/api/uav/alarm/delete/configure','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:16',NULL),(171683625366978560,'API_065f442334b312950a67b874f2a123e5','批量删除操作','','cmii-uav-alarm','/api/uav/alarm/deleteBatch','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:18',NULL),(171683625593470976,'API_bbd18c44e5cb04c6c87ed506b4ededeb','接口扫描','','cmii-uav-alarm','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683625819963392,'API_e6bc5e82583f7c2795398a90caaab35e','health','','cmii-uav-alarm','/cmii/health','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683626033872896,'API_5e7e12e67d378030dd3edcb30ab70ff8','ping','','cmii-uav-alarm','/cmii/ping','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683626268753920,'API_df5241d77cce8bc64906586cad2227f2','env','','cmii-uav-alarm','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:17',NULL),(171683626549772288,'API_ba16ebc000ef650d05bc45e632378065','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2022-04-25 02:49:08',NULL),(171683626784653312,'API_30b7c6431967cc689a963de5862cf0c1','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2022-04-25 02:49:08',NULL),(171683627027922944,'API_c8a54dba9e0394eaa8fa54f5712d33d3','swaggerResources','','cmii-uav-alarm','/swagger-resources','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2022-04-25 02:49:08',NULL),(171683627262803968,'API_bbc39447c2bf5f77ceceba22c9f39878','error','','cmii-uav-alarm','/error','',_binary '\0',_binary '\0','2021-11-05 10:09:26',1,'2024-10-22 12:07:19',NULL),(183145143220568064,'API_80af42f9663ccb84f0c6166e0aef27c7','结束火警信息','','cmii-uav-developer','/oapi/mission/caseinfo/newcase/1.0','POST',_binary '\0',_binary '\0','2021-12-07 01:13:25',1,'2024-11-06 11:22:11',NULL),(183145143455449088,'API_9b9ce6308ece3f26b8de0ee1bbd99777','上传火警信息','','cmii-uav-developer','/oapi/mission/caseinfo/casefinish/1.0','POST',_binary '\0',_binary '\0','2021-12-07 01:13:25',1,'2024-11-06 11:22:14',NULL),(198514140900229120,'API_1ffec58e04373a7c741a9735867d0e83','增加菜单并授权接口','','cmii-admin-user','/api/admin/resource/menu/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:04:19',1,'2024-09-09 09:14:16',NULL),(198514141063806976,'API_64719445d25844884a3cf60f056c5ce4','更新菜单并授权接口','','cmii-admin-user','/api/admin/resource/menu/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:04:19',1,'2024-09-09 09:14:17',NULL),(198514635932958720,'API_dbfb1b62084df886d44195e74a470609','根据图片id获取图片code','','cmii-uav-developer','/verifyCode/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2022-01-18 11:06:17',1,'2024-11-06 11:22:08',NULL),(198514636142673920,'API_9326301857747c262523a25e16e6e76a','注册一个开发者','','cmii-uav-developer','/registry-for-test','POST',_binary '\0',_binary '\0','2022-01-18 11:06:17',1,'2024-11-06 11:22:10',NULL),(198514640806739968,'API_8586517c85e5eb62e0444e55ef223d76','通过设备号查询公司ID接口','通过设备号查询公司ID接口','cmii-uav-developer','/oapi/device/uav/company/1.0','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 11:22:14',NULL),(198514640844488704,'API_da0049332dda52267e16e56d24f7b045','通过设备号列表查询绑定信息接口','通过设备号列表查询绑定信息接口','cmii-uav-developer','/oapi/device/uav/bound/1.0','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 11:22:09',NULL),(198514642245386240,'API_c7362388408bfca8e7cc15ca5592d0d5','搜索日志','','cmii-uav-logger','/bizLog/searchLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642283134976,'API_76300389360c13a81bdbdfd9ecb79f93','搜索对象关联日志','','cmii-uav-logger','/bizLog/searchOpIdentityLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642316689408,'API_db065b5d3b83b61eaefa2a4b50836f78','模糊搜索用户列表接口','模糊搜索用户列表接口','cmii-uav-logger','/personal/search/userList','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642350243840,'API_796a09c0bc084f600504c3bcd4abf532','模糊搜索设备列表接口','模糊搜索设备列表接口','cmii-uav-logger','/personal/search/deviceList','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642387992576,'API_d0c6d1f5bf828187a559fbab169bdcb4','设备类别列表接口','设备类别列表接口接口','cmii-uav-logger','/personal/config/category/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642421547008,'API_2fc811bd78563bfd029726034e5b277a','搜索业务日志【通用检索接口】','','cmii-uav-logger','/logger/searchBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642463490048,'API_22efa37fc10586896a1e2c931e33a65e','写一条业务日志【日志埋点使用】','','cmii-uav-logger','/logger/saveBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:10',NULL),(198514642497044480,'API_a7e9511e581d19131d2c36db53502b78','接口扫描','','cmii-uav-logger','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:10',NULL),(198514642538987520,'API_bc273903671185a43d1dad89c944b981','health','','cmii-uav-logger','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642576736256,'API_72f1ed0d5cf4e0b1979085f43465fde6','ping','','cmii-uav-logger','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642610290688,'API_b16f39ced33dbbd4773db4915e4f2386','env','','cmii-uav-logger','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514642648039424,'API_8656bcac6b04d4b5f95c971afef1fe09','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2022-03-11 06:17:22',NULL),(198514642685788160,'API_e2804c450c1aa20fcab278f7590f4351','swaggerResources','','cmii-uav-logger','/swagger-resources','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2022-03-11 06:17:22',NULL),(198514642727731200,'API_7dbad5674586f150ad7ecb021f2b88a9','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2022-03-11 06:17:22',NULL),(198514642765479936,'API_fd1762c99da1c9cf1cc14970e7a2817a','error','','cmii-uav-logger','/error','',_binary '\0',_binary '\0','2022-01-18 11:06:19',1,'2024-11-06 12:17:11',NULL),(198514650772406272,'API_6cf23bdae74602c793a65ca87b97b4c8','查询支持的算子列表(可选)','查询支持的算子列表','cmii-uav-cloud-live','/config/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2022-03-08 07:20:02',NULL),(198514650810155008,'API_57b11d3699ec917da49f417693309a23','查询算子配置标准(可选)','查询算子配置标准','cmii-uav-cloud-live','/config/task/info','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:40',NULL),(198514650864680960,'API_aa851340e8516d5394f1a733f1a3fa21','算子上报任务状态接口(可选)','算子上报任务状态接口','cmii-uav-cloud-live','/config/report/status','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2022-03-08 07:20:02',NULL),(198514650902429696,'API_7bdd1e253db690eae958770109d4df8b','插件需要运行任务列表','插件需要运行任务列表','cmii-uav-cloud-live','/task/run/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:39',NULL),(198514650944372736,'API_f9ecea55f0f0ddaa5b5d798451b6c3dd','启动算子任务','启动算子任务','cmii-uav-cloud-live','/task/start','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:43',NULL),(198514650982121472,'API_2c7807e4baef26561f779a78aa9b38c4','停止算子任务','停止算子任务','cmii-uav-cloud-live','/task/stop','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:39',NULL),(198514651015675904,'API_fae85f9df895d5904e0e9f2bb3a6ca59','查询微服务下运行的任务列表','查询微服务运行的任务列表','cmii-uav-cloud-live','/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:38',NULL),(198514651053424640,'API_b61133abe3f5660483655646b25afdd6','查询容量','查询容量','cmii-uav-cloud-live','/task/summary','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2022-03-08 07:20:02',NULL),(198514651095367680,'API_72621d9d7f3fd3d8da551e852539d260','查询算子任务状态','查询算子任务状态','cmii-uav-cloud-live','/task/status/get','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:44',NULL),(198514651133116416,'API_bfe511b393227902e718f34fc9f913ec','查询视频流状态','查询视频流','cmii-uav-cloud-live','/video/stream','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:41',NULL),(198514651179253760,'API_a53504f49cf4641453c2137943dd1539','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','/video/stream/{streamId}','DELETE',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:36',NULL),(198514651221196800,'API_1df86d39f377967622f7cbdbb5b9c4d5','获取视频流状态信息','获取视频流状态信息','cmii-uav-cloud-live','/video/stream/getStreamStatus','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:41',NULL),(198514651258945536,'API_38b1c5cd2a964df55a41fd64d0aa2301','创建工作流任务','创建工作流任务','cmii-uav-cloud-live','/workflow/task','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:41',NULL),(198514651296694272,'API_664a461473515cd35686976d146ef20e','查询工作流状态','查询工作流状态','cmii-uav-cloud-live','/workflow/status','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:36',NULL),(198514651338637312,'API_eb30f6388b9304ed0f36191557e3d5ce','查询视频信息','查询视频信息','cmii-uav-cloud-live','/client/video/queryVideoInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:42',NULL),(198514651372191744,'API_9e0d5bc96a5945702af710adf71bddba','合并完成通知','合成完成通知','cmii-uav-cloud-live','/client/video/mergeComplete','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:43',NULL),(198514651409940480,'API_deeadfe980021944cf2eb95105eca865','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/client/video/applyMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:39',NULL),(198514651451883520,'API_3aa94cb231afe3b4dc74cc434ac5b960','通知视频插件合并视频【调试接口】','通知视频插件合并视频【调试接口】','cmii-uav-cloud-live','/client/video/noticeMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:37',NULL),(198514651489632256,'API_bb719bbe92cdfec83c452f2b0940ee61','通知任务执行【调试接口】','通知任务执行【调试接口】','cmii-uav-cloud-live','/client/video/startTask','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:43',NULL),(198514651527380992,'API_77ce20cbcf31364a347a9ee9ad913eef','查询已启动的算子服务','查询已启动的算子服务','cmii-uav-cloud-live','/aibrain/task/list','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:40',NULL),(198514651560935424,'API_3bf7a24c21a7a87e06bcdd0a481c257b','查询受支持的算子','查询受支持的算子','cmii-uav-cloud-live','/aibrain/module','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:44',NULL),(198514651602878464,'API_a5354dd8a32cec260b29ef9064103626','检查过期任务','检查过期任务','cmii-uav-cloud-live','/aibrain/task/checkExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:41',NULL),(198514651636432896,'API_aefa630cfc259cc50feacfb468747142','创建AI Token','创建AI Token','cmii-uav-cloud-live','/aibrain/createAiToken','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:40',NULL),(198514651678375936,'API_f76287aae226e3f42feda5d6347b3393','启动算子服务','启动算子服务','cmii-uav-cloud-live','/aibrain/task','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:42',NULL),(198514651711930368,'API_e7cd9c3a32b93dccd073b593ab94a948','停止算子服务','停止算子服务','cmii-uav-cloud-live','/aibrain/task','DELETE',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:38',NULL),(198514652114583552,'API_4c293733864102529b24ce2e8aca7c5d','查询视频分片文件列表','查询视频分片文件列表','cmii-uav-cloud-live','/client/live/queryPartFiles','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:37',NULL),(198514652156526592,'API_4ce3713dcd9407e532b36fc2222e86c7','申请视频流','申请视频流','cmii-uav-cloud-live','/client/live/stream/createStream','POST',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:43',NULL),(198514652211052544,'API_95cc9e770062fe4aa202821d013ff0d2','查询视频流信息','查询视频流信息','cmii-uav-cloud-live','/client/live/stream/getStreamInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:44',NULL),(198514652261384192,'API_d08c958d9a9b0f498e57ed074618bb69','查询视频流地址','查询视频流地址','cmii-uav-cloud-live','/client/live/stream/getStreamUrl','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:37',NULL),(198514652303327232,'API_44886cade0b7fa437e5d7955306ff6f9','创建临时视频流','创建临时视频流','cmii-uav-cloud-live','/client/live/stream/createTempStream','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:41',NULL),(198514652341075968,'API_ddf5b7086132de055d3ef2c1be7d51ba','删除视频流','删除视频流','cmii-uav-cloud-live','/client/live/stream/deleteStream','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:37',NULL),(198514652508848128,'API_9b7392d77b4fc497ddcc5bd67e6d4c2a','getStreamUrls','','cmii-uav-cloud-live','/streams/urls','GET',_binary '\0',_binary '\0','2022-01-18 11:06:21',1,'2024-11-14 02:02:42',NULL),(198514665808986112,'API_e8644287d106974dd3abd2b2e63e129b','更新菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:06:25',1,'2024-11-06 12:16:31',NULL),(198514666299719680,'API_1f14a61350bd9787496d64e9df5f5639','增加菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:06:25',1,'2024-11-06 12:16:24',NULL),(198514685367025664,'API_544d535cbc76e0b0128e76922d3afd9f','ping','','cmii-admin-data','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:06:29',1,'2024-11-06 12:17:14',NULL),(198514685417357312,'API_ccb853f58fbf416685be2a8c73f5aaf9','health','','cmii-admin-data','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:06:29',1,'2024-11-06 12:17:12',NULL),(198514685505437696,'API_d60359bb5ed6fe0e2e7b0ff830a92c4e','env','','cmii-admin-data','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:06:29',1,'2024-11-06 12:17:14',NULL),(217238202652557312,'API_3b87b350b693887af09016e27cbdb1e3','验证区域信息是否正确[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/checkArea','POST',_binary '\0',_binary '\0','2022-03-11 03:07:04',1,'2024-11-06 12:17:16',NULL),(217238212756635648,'API_d4f2e185163e0755673448c0ee376ea6','按条件分页查询载荷型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelPage','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:17',NULL),(217238212895047680,'API_71b99303d880eb9226fbca6dc38cdcd7','从载荷类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/load/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:14',NULL),(217238213004099584,'API_c422092cc68cc976c1ffe774ef338788','从载荷类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/load/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:16',NULL),(217238213087985664,'API_5c729fae887038eb3b4814dcb549c305','根据类型查询载荷类型详情','','cmii-admin-data','/api/admin/model/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:12',NULL),(217238213226397696,'API_4a071fe963d52832096c7867ca6409d6','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/load/checkNotFrozen','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:13',NULL),(217238213314478080,'API_e9d4c1b8190381c4f9ad256471c4a981','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:16',NULL),(217238213482250240,'API_e4a11a7c3bf95fbfe1a8d22a16f328e0','载荷载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:14',NULL),(217238213809405952,'API_59d2893cc2ab37fba1b6cbde2d2f1bdc','新增载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:16',NULL),(217238214082035712,'API_cb684243191e595a7401409f0db91594','修改载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:18',NULL),(217238214308528128,'API_254694c31ab18704e4f225c7aeebab06','删除载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:17:12',NULL),(217238223301115904,'API_90706ff810c24e4966aed2e0b8863be6','通过告警对象列表批量处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2022-03-11 06:16:48',NULL),(217238225360519168,'API_f0c1ce7c546a0e0d48037eb8081c0ed5','upload','','cmii-uav-alarm','/api/uav/common/event/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-22 12:07:19',NULL),(217238225519902720,'API_389ebdff8f8c553a5306d9c71122b7f2','excel导入指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/importExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-22 12:07:19',NULL),(217238225620566016,'API_b9cd4732193d41fb9b1aebc8db6eda5b','excel导入所以sheet','','cmii-uav-alarm','/api/uav/common/event/importAllExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-22 12:07:16',NULL),(217238225725423616,'API_13ff192cb0e53b481a648a39708a6adc','导出到指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/exportExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-10-22 12:07:18',NULL),(217238229986836480,'API_b0e6af44f389fbb5d5bc6f0b10c54646','是否存储配额告警','','cmii-uav-user','/personal/quota/hasWarn','POST',_binary '\0',_binary '\0','2022-03-11 03:07:10',1,'2024-11-06 12:16:43',NULL),(217238270981963776,'API_71106634d3cde1cfbdfc2bd2bcbc81d0','是否是弱密码','','cmii-admin-user','/system/isWeakPassword','POST',_binary '\0',_binary '\0','2022-03-11 03:07:20',1,'2024-09-09 09:14:18',NULL),(217238362170327040,'API_4e26137db92324caad958954feb17d65','停止流程','停止流程','cmii-uav-cloud-live','/workflow/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:35',NULL),(217238362237435904,'API_9cc4b7cdd1f1653b79b73c7b31080c26','保持流程心跳','保持流程心跳','cmii-uav-cloud-live','/workflow/keepAlive','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:37',NULL),(217238362438762496,'API_6416958a39d25fee2b1f75951e86a9ea','完结超时流程','完结超时流程','cmii-uav-cloud-live','/workflow/cleanExpireFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:43',NULL),(217238362501677056,'API_72ee70869742bb1f700fa9e59f61a48e','查询插件输入输出流信息','查询插件输入输出流信息','cmii-uav-cloud-live','/workflow/queryStreamInfo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:42',NULL),(217238362753335296,'API_6afe7df38923488b2b390d9093cfd30b','更新流程','更新流程','cmii-uav-cloud-live','/workflow/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:41',NULL),(217238362833027072,'API_26133f68affa7c39f380555c6de8fcb2','通过启动参数停止流程','通过多参数停止流程','cmii-uav-cloud-live','/workflow/stopFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:41',NULL),(217238364015820800,'API_17d4e0fbfc4d4f45eed4a9644711e08c','释放作业关联视频分片','释放作业关联视频分片','cmii-uav-cloud-live','/client/live/stream/releaseVideo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:38',NULL),(217238364066152448,'API_3e601d5862ffe674019e072d71533b17','执行删除视频任务','执行删除视频任务','cmii-uav-cloud-live','/client/live/stream/executeDeleteVideoTask','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:36',NULL),(217238364930179072,'API_38b45d1b9390779f52cef09b5c3ad313','更新算子任务','更新算子任务','cmii-uav-cloud-live','/task/update','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:36',NULL),(217238365186031616,'API_8edd6ae82ca26b01230a32aecfa1b6c4','服务实例注册(必选)','服务实例注册','cmii-uav-cloud-live','/config/service/registerInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:43',NULL),(217238365332832256,'API_83a60e43cda23ce35d88b317a92b27ab','服务实例注销(可选,3分钟无新注册心跳自动注销)','服务实例注销','cmii-uav-cloud-live','/config/service/deregisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:42',NULL),(217238365395746816,'API_e028a848bd2749a1fe46565255ffa9b1','查看注册服务实例信息','查看注册服务实例信息','cmii-uav-cloud-live','/config/service/getRegisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:40',NULL),(217238365538353152,'API_b94a39e945b2d15a5a94ff0e4b2ba5d1','是否还有存储配额(true.有, false. 无','','cmii-uav-cloud-live','/personal/quota/canSave','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2024-11-14 02:02:43',NULL),(217238366201053184,'API_962e612d2f3b78893a9d1f02f674eb3c','添加流程','添加流程','cmii-uav-cloud-live','/workflow/config/addFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-11-14 02:02:42',NULL),(217238366276550656,'API_3648534a1cf81e18d7b142149b7841fc','更新流程','更新流程','cmii-uav-cloud-live','/workflow/config/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-11-14 02:02:36',NULL),(217238366352048128,'API_85c7a757a263542774515c3b3fe4602e','锁定流程','锁定流程','cmii-uav-cloud-live','/workflow/config/lockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-11-14 02:02:42',NULL),(217238366423351296,'API_14d45933e60b70fad979158b8876d1ec','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unLockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2022-08-29 01:34:54',NULL),(217238366482071552,'API_d0177bec91de61c3940949dcefe74080','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/reMoveFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2022-08-29 01:34:54',NULL),(217238366549180416,'API_16c3eec5c21c4d0e3c48b60063a032d4','查询流程定义列表','查询流程定义列表','cmii-uav-cloud-live','/workflow/config/queryFlowList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-11-14 02:02:42',NULL),(217238366616289280,'API_3691fbe7f7e8d3094727c3fc74a1575c','重新加载流程','重新加载流程','cmii-uav-cloud-live','/workflow/config/reloadFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:43',1,'2024-11-14 02:02:41',NULL),(218661015724752896,'API_c452e0b6b1d8aa5d63610aad4f58bb4f','通过告警对象列表删除已经处理的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/deleteAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-15 01:20:49',1,'2024-10-22 12:07:17',NULL),(218686095754264576,'API_6702c13bc2c962e6a1d294f5b4dd96a1','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2022-09-29 06:35:44',NULL),(218686095812984832,'API_68c3e0f14d1c550c78f80c6ca1db9f56','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryUav','POST',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-11-07 09:01:49',NULL),(218686096135946240,'API_6407aa74d4efa63e3035e136c6b46103','获取游客的无人机设备列表','','cmii-uav-device','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-11-07 09:01:56',NULL),(218686096182083584,'API_621b76dbfc0820c65c659ac94b91d6bb','设置无人机上线','','cmii-uav-device','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-11-07 09:01:48',NULL),(218686096282746880,'API_1b82fd20fc26e41f5631420a8d472dbd','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:28',1,'2024-11-07 09:01:45',NULL),(218686097222270976,'API_37ed874b03a209ba9a2e3ba730f524bd','查询无人机总飞行时长','','cmii-uav-device','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:46',NULL),(218686097733976064,'API_a3e9bbaa35d07d89747c7744316f9971','查询包括子公司的真实无人机和模拟机列表','','cmii-uav-device','/api/uav/plane/queryUavRealByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:51',NULL),(218686097989828608,'API_ab3e284739e564c16d2c808d62484669','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/plane/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:44',NULL),(218686098233098240,'API_cd517d91bed3c4b36218eab52cc53e7c','按无人机编码查询无人机是否是真机','','cmii-uav-device','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:56',NULL),(218686099189399552,'API_ec24af9abdf24b7570567ee12819e635','无人机绑定的摄像头推流信息','','cmii-uav-device','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:45',NULL),(218686099336200192,'API_e241a61f309072d11f33960bdb86dab7','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:47',NULL),(218686099516555264,'API_0bbb96c440960337f67ff1c7797a7117','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:53',NULL),(218686099671744512,'API_b45434946f5350bd8184415958a3fedc','更新无人机绑定载荷类型','','cmii-uav-device','/api/uav/plane/updateLoadTypeByUavCode','POST',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:53',NULL),(218686099919208448,'API_24e056f03f5fd2570962541216c45bc2','获取视频推拉流地址','','cmii-uav-device','/api/uav/load/getVideoAddress','POST',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:57',NULL),(218686099982123008,'API_f3a796075590fc75cdec6c8ef419602d','查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:54',NULL),(218686100296695808,'API_ec35e84853c188e3e7fc65fb7d805943','查询载荷类型','','cmii-uav-device','/api/uav/load/queryUavLoadType','GET',_binary '\0',_binary '\0','2022-03-15 03:00:29',1,'2024-11-07 09:01:49',NULL),(218686101311717376,'API_fa3a657597b9619499202054581160aa','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/load/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-11-07 09:01:58',NULL),(218686101412380672,'API_5c3eb73c8182fd8e34cc894951232f6b','基础版根据code获取用户Token','基础版根据code获取用户Token','cmii-uav-device','/api/uav/permission/user/getUavFreeTokenByCode','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-11-07 09:01:57',NULL),(218686101785673728,'API_dd49c05d52607d775525836a8b3b15bf','模糊查詢游客列表','','cmii-uav-device','/api/uav/devAllocate/queryVisitorList','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-11-07 09:01:56',NULL),(218686103706664960,'API_d03e108b238192592ee649a23a974313','模糊查询公司所属的设备号列表','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-11-07 09:01:50',NULL),(218686104033820672,'API_fbbd4ef17066a99a51693c642748652a','env','','cmii-uav-device','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-15 03:00:30',1,'2024-11-07 09:01:45',NULL),(224126424296980480,'API_1292d5a7bbfa8b1852c5190453a5c8ec','配置租户的时间','','cmii-admin-user','/tenant/config/tenantTime','POST',_binary '\0',_binary '\0','2022-03-30 03:18:24',1,'2024-09-09 09:14:20',NULL),(224126424385060864,'API_91ad995dd28c302c4fb839e0129866f4','获取租户的时间','','cmii-admin-user','/tenant/config/getTenantTime','GET',_binary '\0',_binary '\0','2022-03-30 03:18:24',1,'2024-09-09 09:14:18',NULL),(224126433864187904,'API_d943f1daf6f5cd7b1d6e697111eeb361','getDocumentation','','cmii-admin-user','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:17',NULL),(224126433931296768,'API_fb5398a6e4572330369f788ffc3a19eb','uiConfiguration','','cmii-admin-user','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:17',NULL),(224126433994211328,'API_1b807cafc277cdfaaaf8042378ff5f36','swaggerResources','','cmii-admin-user','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:20',NULL),(224126434052931584,'API_b720183584a0b124c40a464e63088e00','securityConfiguration','','cmii-admin-user','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:16',NULL),(224126434124234752,'API_57013716563634738503099987316004','getDocumentation','','cmii-admin-user','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:26',1,'2024-09-09 09:14:16',NULL),(224126439539081216,'API_da7c6dc8eeb3f5670a407941f7834e2f','list文档','','cmii-uav-developer','/docs/docList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-11-06 11:22:08',NULL),(224126440256307200,'API_41bc8ca9a144d26b13cc4a7d2b7359fe','接口版本列表','','cmii-uav-developer','/admin/interfaceVersion/infVersionList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-11-06 11:22:10',NULL),(224126440315027456,'API_8995fce1018309eeb7dc4a4a189250ee','创建接口版本','','cmii-uav-developer','/admin/interfaceVersion/createInfVersion','POST',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-11-06 11:22:12',NULL),(224126440382136320,'API_45f7b3d54a030265f2ceab99dbd5c0e4','设置接口版本号','','cmii-uav-developer','/admin/interfaceVersion/updateInfVersion','PUT',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-11-06 11:22:08',NULL),(224126440507965440,'API_746aa4cfdd14c54412de1adea26fbfe7','查询所有实体','','cmii-uav-developer','/admin/model/all','GET',_binary '\0',_binary '\0','2022-03-30 03:18:27',1,'2024-11-06 11:22:11',NULL),(224126440579268608,'API_fc680a6f0031ec8c2610c94a05a2a942','批量删除实体','','cmii-uav-developer','/admin/model/deleteBatch','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:10',NULL),(224126440642183168,'API_a94c2bfb2e49ac38b2baed4bc3079b9c','获取实体详细信息','','cmii-uav-developer','/admin/model/getModelDetail','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:11',NULL),(224126440696709120,'API_4e13e554c9dfd5c9085a892abf5059a2','添加实体','','cmii-uav-developer','/admin/model/add','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:09',NULL),(224126440751235072,'API_b5245afafad959bf0e12e0269a4915ea','更新实体','','cmii-uav-developer','/admin/model/update','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:11',NULL),(224126440822538240,'API_6224629a874192092fe10bdd1c40c30c','删除实体','','cmii-uav-developer','/admin/model/delete','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:08',NULL),(224126441057419264,'API_ce46b4b0ac7b98600ad3055d07159c2a','实体分页查询','','cmii-uav-developer','/admin/model/query','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:12',NULL),(224126441124528128,'API_cc0ebd201a03ce5407d81ff01aa6d914','配置接口','','cmii-uav-developer','/admin/params/configInterface','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:10',NULL),(224126441208414208,'API_0357d4e6d07f60589b0c557a97dd7eed','根据参数的请求类型,获取参数支持的属性类型','','cmii-uav-developer','/admin/params/getTypesByParamType','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:07',NULL),(224126441267134464,'API_79787b41513103d1fffe97754ba2483e','查询脱敏规则','','cmii-uav-developer','/admin/params/getBlurRuleList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:13',NULL),(224126441321660416,'API_2fa3e7777c1eb125281f29b4b7603194','查询支持的文件类型','','cmii-uav-developer','/admin/params/getFileTypeList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:09',NULL),(224126441422323712,'API_dbf5049ee7059051b6442a537091b1a1','根据属性类型,获取属性的限制类型','','cmii-uav-developer','/admin/params/getLimitsByPropertyType','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:10',NULL),(224126441489432576,'API_9dde8401eb675a61e6b175d0739e62e9','根据接口版本ID,获取接口配置','','cmii-uav-developer','/admin/params/getParamsConfigByVerId','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:12',NULL),(224126443121016832,'API_8423ec956c78748a978026a1d25f1e35','更新接口缓存数据','','cmii-uav-developer','/admin/interface/refresh','PUT',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:07',NULL),(224126443313954816,'API_5f7969e918879b1d63588a1eda7a629b','删除开放的接口版本','','cmii-uav-developer','/admin/interface/deleteInfVer','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:14',NULL),(224126443884380160,'API_53cad9336d53101f65fb413acd494f71','接口详情,版本列表V2','','cmii-uav-developer','/admin/interface/v2/infVersionList','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:08',NULL),(224126444131844096,'API_e36cf979b48bc8e24c352da1278af7bb','新建接口V2','','cmii-uav-developer','/admin/interface/v2/createOpenInf','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:13',NULL),(224126444194758656,'API_cf1f836a84a786cd42b68b58066af1f1','查询接口列表V2','','cmii-uav-developer','/admin/interface/v2/openInfList','POST',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:10',NULL),(224126444253478912,'API_cce99bfe756e8843fcb8ccb477e4137b','查询内部接口标识','','cmii-uav-developer','/admin/interface/v2/infCodeList','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:11',NULL),(224126444308004864,'API_8feca655b4122c74026e30adc3e600b9','查询接口详情v2','','cmii-uav-developer','/admin/interface/v2/interfaceDetail','GET',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:13',NULL),(224126444375113728,'API_5e7cfc3ea11272d3a3d4171d9e95e009','删除接口','','cmii-uav-developer','/admin/interface/v2/deleteInf','DELETE',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:11',NULL),(224126444438028288,'API_0f61ba4cdb647adbf6a4a3315fe1e897','接口状态设置','','cmii-uav-developer','/admin/interface/v2/updateInfStat','PUT',_binary '\0',_binary '\0','2022-03-30 03:18:28',1,'2024-11-06 11:22:13',NULL),(224126444966510592,'API_e9e7a4bcef30ff2050f4aef145c07143','获取接口未开放的版本列表','','cmii-uav-developer','/admin/interface/','GET',_binary '\0',_binary '\0','2022-03-30 03:18:29',1,'2024-11-06 11:22:10',NULL),(224126449018208256,'API_270e242bc9177247d4881d8df556376b','ping','','cmii-uav-developer','/cmii/ping','',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2022-07-25 08:10:21',NULL),(224126449097900032,'API_4a304bb83ea60c25198a7df81c9a90b6','health','','cmii-uav-developer','/cmii/health','',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2022-07-25 08:10:21',NULL),(224126449311809536,'API_4c4b0e3590f8e3fa419fdc149bcab38f','getDocumentation','','cmii-uav-developer','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-11-06 11:22:09',NULL),(224126449362141184,'API_28f30e7f05f61b08f1902d5b0df0716d','uiConfiguration','','cmii-uav-developer','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-11-06 11:22:11',NULL),(224126449416667136,'API_97f727abdbf178811c77965790a30a9b','swaggerResources','','cmii-uav-developer','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-11-06 11:22:08',NULL),(224126449622188032,'API_690c6d944d234ed45403f281c515f8b3','securityConfiguration','','cmii-uav-developer','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-11-06 11:22:09',NULL),(224126449685102592,'API_c5f007cc65bdbcbd5c3a29e4a903f528','getDocumentation','','cmii-uav-developer','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:30',1,'2024-11-06 11:22:12',NULL),(224126489325469696,'API_6119ee0b87e868a20c9e08899357e6d7','getQuotaInfoUseByType','','cmii-uav-user','/client/quota/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-03-30 03:18:39',1,'2022-04-25 02:50:18',NULL),(224126491607171072,'API_284e320c6a841710d98e01292da09c18','getDocumentation','','cmii-uav-user','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-11-06 12:16:36',NULL),(224126491728805888,'API_728b8c57db4c6c0b705d5530ac9a9511','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-11-06 12:16:32',NULL),(224126491787526144,'API_05f507cccc8b8e92bd008fc09d4c71ce','swaggerResources','','cmii-uav-user','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-11-06 12:16:20',NULL),(224126491858829312,'API_6dbae71c90d3b3330ff3cbdcd488fdff','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-11-06 12:16:19',NULL),(224126491913355264,'API_4557b0cbb4b7d06a2eab089c66cc0c7e','getDocumentation','','cmii-uav-user','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:40',1,'2024-11-06 12:16:41',NULL),(224126523731345408,'API_409093c7159def23cec4d0055fd04d04','getDocumentation','','cmii-uav-logger','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-11-06 12:17:11',NULL),(224126523798454272,'API_b18a9fe72e9a7d19d9e5a57da928c016','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-11-06 12:17:11',NULL),(224126523869757440,'API_97dce13d5d2d27ead51a858ba3739145','swaggerResources','','cmii-uav-logger','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-11-06 12:17:11',NULL),(224126523941060608,'API_3a3e4f9b7f08645f3974540b65c204c9','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-11-06 12:17:11',NULL),(224126524087861248,'API_75ab987af8c4c64c61b7a38949275afb','getDocumentation','','cmii-uav-logger','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:47',1,'2024-11-06 12:17:11',NULL),(224126562805481472,'API_5d01133a91598b434cf3ffce3baf9550','获取回放AI视频token','获取回放AI视频token接口','cmii-uav-cloud-live','/client/live/playbackAi/token','POST',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:37',NULL),(224126562872590336,'API_7cfc25f15a47c4567c5d1bbae53690f3','获取回放AI视频token列表','获取回放AI视频token列表接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens','POST',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:39',NULL),(224126565586305024,'API_a15968b980c85a0ff2c44091096ae066','getDocumentation','','cmii-uav-cloud-live','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:39',NULL),(224126565657608192,'API_f78d3ef6fc559f0a6dfcfe7b80751af4','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:39',NULL),(224126565707939840,'API_686c9a27044cbeb2e932628006b22022','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:39',NULL),(224126565749882880,'API_871a9156aa421a1b37b481fdf8fb936f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:38',NULL),(224126565808603136,'API_e0a09b08d3699ce5a5c4d6d8e487c541','getDocumentation','','cmii-uav-cloud-live','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:38',NULL),(234264837402656768,'API_4f3edd9a9b52293c8274039d18a15002','重载业务参数','','cmii-uav-alarm','/api/uav/alarm/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-22 12:07:19',NULL),(234264838610616320,'API_7c1f11ca6aa894a3225f9a8d4145c557','getDocumentation','','cmii-uav-alarm','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-22 12:07:16',NULL),(234264838673530880,'API_e0be1e447ee76257d0a1e151fc603fd5','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-22 12:07:17',NULL),(234264838761611264,'API_9111eef1a24129edea603beca94e3e02','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-22 12:07:16',NULL),(234264838828720128,'API_57166349726e8361c53f41e89d093ff3','swaggerResources','','cmii-uav-alarm','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-22 12:07:19',NULL),(234264838900023296,'API_71c9b1d72ea78199e17cc83a875f9aa6','getDocumentation','','cmii-uav-alarm','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-10-22 12:07:17',NULL),(234264840103788544,'API_ed54eecf59da12c360a0c7769a36dd26','获取GPS坐标地址信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeo','POST',_binary '\0',_binary '\0','2022-04-27 02:44:50',1,'2024-11-06 12:17:15',NULL),(234264841840230400,'API_c9409405699c91590c7dabf9e63db87d','文件导入字典明细','','cmii-admin-data','/api/admin/dictionary/fileImport','POST',_binary '\0',_binary '\0','2022-04-27 02:44:51',1,'2024-11-06 12:17:18',NULL),(234264841915727872,'API_f19dff044b68e536ce8df43f8dac84dd','文件导出字典明细','','cmii-admin-data','/api/admin/dictionary/fileExport','GET',_binary '\0',_binary '\0','2022-04-27 02:44:51',1,'2024-11-06 12:17:12',NULL),(234264848936992768,'API_c3afa707108b58d9cb6b68ae5c7ed283','根据无人机类型查询设备类型匹配列表','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchListByUav','GET',_binary '\0',_binary '\0','2022-04-27 02:44:52',1,'2024-11-06 12:17:15',NULL),(234264852187578368,'API_4cb882103bc6f97c2fe3c31dfb8eb6c8','getDocumentation','','cmii-admin-data','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-11-06 12:17:19',NULL),(234264852300824576,'API_47a8e3e0d37ca77be1ac9934fe039256','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-11-06 12:17:18',NULL),(234264852363739136,'API_f6bb5dd6d167aecdf23c473da3dfd63d','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-11-06 12:17:12',NULL),(234264852435042304,'API_e0c615762e25ee05a6397222aefe8457','swaggerResources','','cmii-admin-data','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-11-06 12:17:11',NULL),(234264852539899904,'API_6b0dd054428ea6530ce4a388e6d0fb3e','getDocumentation','','cmii-admin-data','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:44:53',1,'2024-11-06 12:17:16',NULL),(234264859359838208,'API_8024ca66cad2d32c3909c279f0f322d1','新增角色并授权资源组','','cmii-admin-user','/api/admin/role/addAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:17',NULL),(234264859569553408,'API_e18aa877282e0ae8b6674a142eecc980','修改角色并授权资源组','','cmii-admin-user','/api/admin/role/updateAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:18',NULL),(234264860265807872,'API_a5e350719597b399b228d220bda2f9ae','查询权限组详细列表','','cmii-admin-user','/api/admin/group-template/list','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:18',NULL),(234264860362276864,'API_d246a9e5572ae8b0d15770ad42e5a30a','添加演示模板','','cmii-admin-user','/api/admin/group-template/add','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:19',NULL),(234264860483911680,'API_d720c8370f830a21087b30e86313a0a4','根据编码导出资源信息XML','','cmii-admin-user','/api/admin/resource/syncExportResourceXML','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:21',NULL),(234264860597157888,'API_2e86d7de9693e84679d52d2cfbce9245','根据编码导入资源信息XML','','cmii-admin-user','/api/admin/resource/syncImportResourceXML','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:19',NULL),(234264861138223104,'API_3bca44ef334d75c7e1b30cfc004f2dcd','给资源组赋予菜单按钮','','cmii-admin-user','/api/admin/group/authorityResource','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861188554752,'API_37ce1ac8668582c284c35e3220b2ddc6','查询权限组树型结构','','cmii-admin-user','/api/admin/group/trees','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:19',NULL),(234264861339549696,'API_5c00bbfebb8e6a778c97dae9c94c4f00','查询权限组详细列表','','cmii-admin-user','/api/admin/group/list','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:17',NULL),(234264861423435776,'API_386306a920863cf94e374135813339a2','查询权限组资源树型结构','','cmii-admin-user','/api/admin/group/resourceTrees','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861498933248,'API_7f8c523b6ab803a8b6db4f36017ac179','查找出未选择的权限组','','cmii-admin-user','/api/admin/group/dependsUnChecked','POST',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861587013632,'API_b44088b97a9aaec6cf9eb9ae4d275d8d','管理员获取全平台的所有权限组树','','cmii-admin-user','/api/admin/group/queryAllPlatformsResourceGroupTreeForAdmin','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:17',NULL),(234264861649928192,'API_884588d7a38d2eac5329928e6503011d','获取某个角色的全平台权限组树','','cmii-admin-user','/api/admin/group/queryAllPlatformsResourceGroupTreeForRole','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:20',NULL),(234264861729619968,'API_9ab5b97158233ebcbd4854b4664e26bd','获取某个用户的全平台权限组树','','cmii-admin-user','/api/admin/group/queryAllPlatformsResourceGroupTreeForUser','GET',_binary '\0',_binary '\0','2022-04-27 02:44:55',1,'2024-09-09 09:14:18',NULL),(234264865366081536,'API_815e605ea70a685c166a0ba5b58c26bf','查询按钮,菜单所属的资源组集合','','cmii-admin-user','/api/admin/resource/queryResouceGroups','GET',_binary '\0',_binary '\0','2022-04-27 02:44:56',1,'2024-09-09 09:14:18',NULL),(234264867345793024,'API_f822bf4437d536e9df9cbc321bfd3622','数据权限升级','','cmii-admin-user','/api/uav/group-sync/dbMygration','PUT',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:20',NULL),(234264867387736064,'API_3337904b21bed1b42ee50552a11b5f5f','导出权限组,权限组与资源的关系XML','','cmii-admin-user','/api/uav/group-sync/syncExportGroupsAndGroupResourceMappingXML','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867438067712,'API_09a7eaf7f593610102affae7135ee205','导入权限组,权限组与资源的关系XML','','cmii-admin-user','/api/uav/group-sync/syncImportGroupsAndGroupResourceMappingXML','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867500982272,'API_7b17a2167f29db04b95eae0502c37644','同步资源组与资源的映射关系','','cmii-admin-user','/api/uav/group-sync/syncGroupsAndGroupResourceMapping','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:21',NULL),(234264867580674048,'API_4b64582818ddc5776401e2f9505acda2','导出资源组模板','','cmii-admin-user','/api/uav/group-sync/syncExportGroupTemplatesXML','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867761029120,'API_3116f3e564725e8992fd661204c4e1eb','导入资源组模板','','cmii-admin-user','/api/uav/group-sync/syncImportGroupTemplatesXML','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:19',NULL),(234264867819749376,'API_2d33d02a7af0a801320c4671e7f2ae5f','多环境之间同步资源组模板','','cmii-admin-user','/api/uav/group-sync/syncGroupTemplates','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-09-09 09:14:17',NULL),(234264869677826048,'API_68753bdacc315e6581975c33647880e7','查詢包括子公司的设备列表','','cmii-uav-device','/api/uav/dev/queryDeviceList','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:49',NULL),(234264869749129216,'API_2aaaede1b5563b0a4fa5c87d5059c072','新增设备','','cmii-uav-device','/api/uav/dev/addDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:46',NULL),(234264869824626688,'API_f333962bf1352ae3f443309395496c10','修改设备','','cmii-uav-device','/api/uav/dev/updateDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:53',NULL),(234264869895929856,'API_5164cba6d601963304a354d348afc6ec','删除设备','','cmii-uav-device','/api/uav/dev/deleteDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:46',NULL),(234264869996593152,'API_8652cf7850b6724027c40bd1f128b3c1','批量删除设备','','cmii-uav-device','/api/uav/dev/deleteDevBatch','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:52',NULL),(234264870046924800,'API_841b6fca6859d319a9b08c93ec1f5e43','无人机实例总数接口','','cmii-uav-device','/api/open/plane/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:52',NULL),(234264870168559616,'API_07a9053b3d7e250fc90ebc87ec5fceab','无人机实例总数接口','','cmii-uav-device','/api/open/planeArea','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:48',NULL),(234264870218891264,'API_8c2b4339a58ddd7961bfcef40afd52cf','修改仓库','','cmii-uav-device','/api/uav/house/updateHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:44:57',1,'2024-11-07 09:01:44',NULL),(234264870290194432,'API_0d92af5e0d766243ee4b1e58cdc684d5','删除仓库','','cmii-uav-device','/api/uav/house/deleteHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-11-07 09:01:50',NULL),(234264870336331776,'API_fb599dc78672805305ea6002de13ce45','仓库关联设备信息','','cmii-uav-device','/api/uav/house/queryHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-11-07 09:01:53',NULL),(234264870382469120,'API_458baa7426dc09bc3a1327579edded9a','仓库可关联设备信息','','cmii-uav-device','/api/uav/house/queryValHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-11-07 09:01:55',NULL),(234264870441189376,'API_6a5a45853293d08ba87ac3827cbcf66a','查詢包括子公司的仓库列表','','cmii-uav-device','/api/uav/house/queryHouseList','GET',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-11-07 09:01:44',NULL),(234264870499909632,'API_9c0f321db584d3d813a281f25cfe2df3','新增仓库','','cmii-uav-device','/api/uav/house/addHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-11-07 09:01:53',NULL),(234264871040974848,'API_7bb2b50110c6fb4815372f2bdcba0134','统计子公司范围内的设备(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCount','GET',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-11-07 09:01:56',NULL),(234264873897295872,'API_a086ecddc9771b681e4061815fbb8e63','重载业务参数','','cmii-uav-device','/api/uav/plane/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:44:58',1,'2024-11-07 09:01:53',NULL),(234264876963332096,'API_2ca0106de89e47edf77400b05936d135','取消设备绑定','','cmii-uav-device','/api/uav/dev/unBoundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:59',1,'2024-11-07 09:01:45',NULL),(234264877013663744,'API_479f78171081bed9faca2e8ca745fe6b','绑定设备列表查询','','cmii-uav-device','/api/uav/dev/queryBoundBydevCode','GET',_binary '\0',_binary '\0','2022-04-27 02:44:59',1,'2024-11-07 09:01:56',NULL),(234264877063995392,'API_ef7895bb33af75327d8df6695c0e64da','添加设备绑定','','cmii-uav-device','/api/uav/dev/boundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:44:59',1,'2024-11-07 09:01:45',NULL),(234264880138420224,'API_f78c01a72c762ad505c90da48cd93402','getDocumentation','','cmii-uav-device','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-11-07 09:01:52',NULL),(234264880213917696,'API_5977f2474e6ec130e76828bfd7286930','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-11-07 09:01:53',NULL),(234264880260055040,'API_54fd717c1af7b96a999fff84fe3276d7','swaggerResources','','cmii-uav-device','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-11-07 09:01:46',NULL),(234264880331358208,'API_5fbdf0b1cdd87a9fd62f3e44742b385e','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-11-07 09:01:46',NULL),(234264880415244288,'API_a3a532a479e924acb0242a6b717c61cd','getDocumentation','','cmii-uav-device','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:00',1,'2024-11-07 09:01:51',NULL),(234264891148468224,'API_9e5344b5c9206e194df69db441b96aba','查询平台最近12月每月飞行时长接口','查询平台最近12月每月飞行时长接口','cmii-uav-developer','/oapi/mission/fly_duration/month/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:02',1,'2024-11-06 11:22:14',NULL),(234264891484012544,'API_5489b92f3747a4648bf1ae9d7616c301','查询无人机实例总数接口','设备统计接口','cmii-uav-developer','/oapi/device/uav/plane/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 11:22:12',NULL),(234264891605647360,'API_9c165b372d9b928ce3a71760b2f1a3f6','查询无人机分布情况','查询无人机分布情况','cmii-uav-developer','/oapi/device/uav/plane/area/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 11:22:11',NULL),(234264892830384128,'API_24b5d6948b9b84d40e1108b37cfd0129','查询平台基础指标接口','查询平台基础指标接口','cmii-uav-developer','/oapi/basic/plat/bizInfo/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 11:22:10',NULL),(234264893103013888,'API_812e133c8be265452d6599f47f411f71','查询平台最近12月每月无人机作业执行次数','查询平台最近12月每月无人机作业执行次数','cmii-uav-developer','/oapi/mission/job/month/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 11:22:07',NULL),(234264893157539840,'API_a54fc0df96ba7af30b688e1d48030d78','查询每款无人机对应作业执行次数','查询每款无人机对应作业执行次数','cmii-uav-developer','/oapi/mission/job/summary/1.0','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 11:22:12',NULL),(234264894092869632,'API_f08af7cadbcf20737dba8ea8bd780fd3','用户数概况(总用户数&在线用户数)','','cmii-uav-developer','/api/open/user/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2023-11-25 14:12:58',NULL),(234264908202508288,'API_5574ca8695086e09a34dc22ddec566a8','新增角色并授权资源组','','cmii-uav-user','/api/uav/role/addAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:40',NULL),(234264908433195008,'API_b37d58bf331f4f76dc7b19c2f0c8401a','修改角色并授权资源组','','cmii-uav-user','/api/uav/role/updateAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:35',NULL),(234264909221724160,'API_1840f89179ef93cd9a6550c61c0a2b32','查询某公司有效角色的列表','','cmii-uav-user','/api/uav/role/queryOneCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:29',NULL),(234264909695680512,'API_093f51549470c1f5d78593100e7ff71b','查询组织已用配额','','cmii-uav-user','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:28',NULL),(234264910861697024,'API_53146fed117f8c89cc11e8a012c97b69','查找出未选择的权限组','','cmii-uav-user','/api/uav/group/dependsUnChecked','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:20',NULL),(234264910907834368,'API_a7a4ccbfd3aff2d60b958ce3355e4bf7','管理员获取全平台的所有权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForAdmin','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:28',NULL),(234264910974943232,'API_32475e5852084a6f2a18e9277bf161cd','获取某个角色的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForRole','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:22',NULL),(234264911063023616,'API_949caf693b72457471529fc1a359c6aa','获取自己所在公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForMyCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:25',NULL),(234264911146909696,'API_01fd6de539cb9f9aa5668922a0ace4ff','查询权限组详细列表','','cmii-uav-user','/api/uav/group/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:29',NULL),(234264911188852736,'API_74db49217ba70f4dd0bd402d840bb72c','给资源组赋予菜单按钮','','cmii-uav-user','/api/uav/group/authorityResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:40',NULL),(234264911272738816,'API_88de3838653107ec360b2c7b17e3c12c','查询权限组资源树型结构','','cmii-uav-user','/api/uav/group/resourceTrees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:22',NULL),(234264911335653376,'API_e7d98c8b1405680df0a72fd712e57290','查询权限组树型结构','','cmii-uav-user','/api/uav/group/trees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:19',NULL),(234264911394373632,'API_107f9069a3f501b65fdfcd791c0062dc','获取某个用户的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForUser','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:38',NULL),(234264911469871104,'API_7eed6e744998919c9c8231c58069ee2f','获取某个公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:25',NULL),(234264911524397056,'API_706b176b853fc3850409aed6aca58d40','分页查询公司的子公司','','cmii-uav-user','/api/uav/org/pageChildrenCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:22',NULL),(234264911587311616,'API_94ab3b50003fb911a0ac2c2bcf2f7d9f','分页查询公司树型结构','','cmii-uav-user','/api/uav/org/pageCompanyTree','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:31',NULL),(234264911650226176,'API_d590165e9ffcba5c3ab549087a8517a5','查询公司的子孙公司(包括自己公司)','','cmii-uav-user','/api/uav/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:23',NULL),(234264911797026816,'API_9ab9fe4b26b4c290781e3796906f7af0','查询自己公司的子孙公司,普通管理员仅自己公司','','cmii-uav-user','/api/uav/org/company_scopes','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:19',NULL),(234264911956410368,'API_433629c1f4512e6f7cfd5e45efc0d848','查询公司的子孙公司(不包括自己公司)','','cmii-uav-user','/api/uav/org/descendants','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:20',NULL),(234264912040296448,'API_fa8e6a48b33398f42e01ba89b8434a0e','查询公司所在的族谱,所在树的全部节点','','cmii-uav-user','/api/uav/org/genealogy','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:22',NULL),(234264912577167360,'API_96c010936d0212bc2e6a96ae0df4c9c1','查询公司性质列表','','cmii-uav-user','/api/uav/org/companyNatures','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-11-06 12:16:41',NULL),(234264914015813632,'API_1e7067f999bef83d2f1006ae1ae356a0','查询按钮,菜单所属的资源组集合','','cmii-uav-user','/api/uav/resource/queryResouceGroups','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-11-06 12:16:27',NULL),(234264915022446592,'API_09572688f3ed468db68e104ac7e6ac99','根据资源id,获取所有的父资源','','cmii-uav-user','/api/uav/resource/queryParentsById','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-11-06 12:16:26',NULL),(234264915290882048,'API_46cdaf99ebad4e635a0b5b61fb509c50','根据编码导出资源信息XML','','cmii-uav-user','/api/uav/resource/syncExportResourceXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-11-06 12:16:28',NULL),(234264915362185216,'API_8a2fcdbeba25a9f8e605f78da7b668fa','根据编码导入资源信息XML','','cmii-uav-user','/api/uav/resource/syncImportResourceXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-11-06 12:16:26',NULL),(234264915429294080,'API_eababd8d641858ec0dc94a96b119fc2e','菜单资源同步XML','','cmii-uav-user','/api/uav/resource/syncResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-11-06 12:16:23',NULL),(234264916595310592,'API_aafaa3624ccfca4434946824ffa8c688','获取公司gis信息','','cmii-uav-user','/api/uav/user/profile/companyGisInfo','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:41',NULL),(234264917966848000,'API_52c1eb609c16345d337004d08500ee34','测试List对象','','cmii-uav-user','/api/uav/uavTestPO/listObject','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:34',NULL),(234264918059122688,'API_9e55f6b9c8d021b29c831f91df9688fa','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/listInt','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:41',NULL),(234264918122037248,'API_0138862efbd1381847bc149173fadfb1','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/int','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:37',NULL),(234264918193340416,'API_7c46c892a835c386f5491d57086e1b78','testPath','','cmii-uav-user','/api/uav/uavTestPO/testPath','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:34',NULL),(234264918994452480,'API_e7a568f15bc9f756091c84492f47d320','查询某公司的用户列表','','cmii-uav-user','/api/uav/user/findOneCompanyPage','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:22',NULL),(234264920634425344,'API_40a85440b0431a8aaf4ce0266653f075','新建&更新组织最大可用配额查询接口','','cmii-uav-user','/api/admin/system/quota/getMaxQuotaInfo','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:34',NULL),(234264920814780416,'API_d25daf1a7f47e18058fddb9cfd58fd95','导出权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncExportGroupsAndGroupResourceMappingXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:26',NULL),(234264920860917760,'API_342d642b2fa1a417bb82509b6ae66a30','导出资源组模板','','cmii-uav-user','/api/uav/group-sync/syncExportGroupTemplatesXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:44',NULL),(234264920953192448,'API_5525d2fef1a7dfd03ce6ae26df0aa195','导入资源组模板','','cmii-uav-user','/api/uav/group-sync/syncImportGroupTemplatesXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:39',NULL),(234264920995135488,'API_bf0b1ee8a98d585edee95dafee344142','多环境之间同步资源组模板','','cmii-uav-user','/api/uav/group-sync/syncGroupTemplates','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:23',NULL),(234264921049661440,'API_5ea94a0889354836cbd1cc9f3b672ad6','更新rootId为空的公司','','cmii-uav-user','/api/uav/group-sync/correctCompanyRootId','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:41',NULL),(234264921108381696,'API_1adca4c2f75642b528e15166f4d0525a','数据权限升级','','cmii-uav-user','/api/uav/group-sync/dbMygration','PUT',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:20',NULL),(234264921154519040,'API_dc1325fbbf764825474bdab8eb1f82ba','导ru权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncImportGroupsAndGroupResourceMappingXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:37',NULL),(234264921213239296,'API_60b09fb94ce3496ff90a4857ef89785b','同步资源组与资源的映射关系','','cmii-uav-user','/api/uav/group-sync/syncGroupsAndGroupResourceMapping','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:35',NULL),(234264921787858944,'API_4ba19a8bb7bd5f99724b7e66a55b2495','查询权限组所有详细列表','','cmii-uav-user','/api/uav/group-template/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:23',NULL),(234264921867550720,'API_581fdd0ea099d6547069e61de1c5a5cf','添加演示模板','','cmii-uav-user','/api/uav/group-template/add','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:22',NULL),(234264922052100096,'API_80ea13663650435d1a73ce828652d6bd','查询组织已使用配额信息','','cmii-uav-user','/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:21',NULL),(234264922102431744,'API_827bb9e60c72d56401c772a130934563','用户数概况(总用户数&在线用户数)','','cmii-uav-user','/api/open/user/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:29',NULL),(234264923218116608,'API_de4d740768d7847768e4bb45baa338c4','根据公司范围查询公司的用户列表','','cmii-uav-user','/user/queryByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:25',NULL),(234264923318779904,'API_76874d731f956a8bc21b90b4c151995d','根据公司范围,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:23',NULL),(234264923373305856,'API_92a248782383d5a4151df2f079f62979','根据公司范围,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId/namePhoneScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:22',NULL),(234264923880816640,'API_4153d0d6ef5046411dedba0a0434135c','获取公司集合','','cmii-uav-user','/clients/org/queryByIds','POST',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:20',NULL),(234264923947925504,'API_2fff43c8902b7f5982987580fc098270','获取公司的子孙公司包括自己','','cmii-uav-user','/clients/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2024-11-06 12:16:21',NULL),(234272917049835520,'API_3c48518686f7e3bc1485eb1aff1e2ff9','获取回放视频token1','获取回放视频token1接口','cmii-uav-cloud-live','/client/live/playback/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-11-14 02:02:40',NULL),(234272917205024768,'API_d25e1e1c0fa3f13e191c801e18d8941d','获取回放AI视频token1','获取回放AI视频token1接口','cmii-uav-cloud-live','/client/live/playbackAi/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-11-14 02:02:39',NULL),(234272918429761536,'API_732ef4f6817583a25459c7fb874f5b5a','获取视频流存储信息','','cmii-uav-cloud-live','/video/storage/getStorageInfo','GET',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-11-14 02:02:41',NULL),(237976515927605248,'API_b5203cfafccff79ddd6ef3658a490aa8','获取回放AI视频token列表1','获取回放AI视频token列表1接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens1','POST',_binary '\0',_binary '\0','2022-05-07 08:33:43',1,'2024-11-14 02:02:43',NULL),(244499731286327296,'API_62f98911a42248cb190b4b166d58e354','查询公司/机构范围的无人机名称列表','','cmii-uav-device','/api/uav/plane/queryUavNameByCompanyId','GET',_binary '\0',_binary '\0','2022-05-25 08:34:39',1,'2024-11-07 09:01:50',NULL),(244499732867579904,'API_cb3d59b848074a115a1e0c7cc26a5eac','查询公司范围下的在线无人机,返回map','','cmii-uav-device','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:39',1,'2024-11-07 09:01:56',NULL),(244499734151036928,'API_5650997fb36ac4227d6dab55afac6050','查询不同时间段所有的无人机行时长','','cmii-uav-device','/api/uav/plane/queryAllFlyTotal','GET',_binary '\0',_binary '\0','2022-05-25 08:34:39',1,'2024-11-07 09:01:55',NULL),(244499736898306048,'API_142e6a2f1b1c5821b138d6c39e1cff7b','模糊查询包括子公司的仓库列表','','cmii-uav-device','/api/uav/plane/queryHouse','GET',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-11-07 09:01:52',NULL),(244499753054765056,'API_64415b4d0e44e202dda0581a0ebbd77b','获取GPS坐标地址列表信息,地址数不能超过200个[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeos','POST',_binary '\0',_binary '\0','2022-05-25 08:34:44',1,'2024-11-06 12:17:12',NULL),(244500019200131072,'API_a1ef2aa9d6c09ba78cbd8bfa1442dec4','上报设备位置','上报设备位置','cmii-uav-cloud-live','/client/live/stream/reportPosition','POST',_binary '\0',_binary '\0','2022-05-25 08:35:47',1,'2024-11-14 02:02:40',NULL),(244500019556646912,'API_4a29f59c53ba76b36ba5785cac04774d','上报视频流事件','上报视频流事件','cmii-uav-cloud-live','/client/live/stream/reportVideoEvent','POST',_binary '\0',_binary '\0','2022-05-25 08:35:47',1,'2024-11-14 02:02:41',NULL),(244500032932282368,'API_8fac5b9b410c904a26af1fae7b53263a','视频数据回放-获取视频片段列表','视频数据回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/videoList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:50',1,'2024-11-14 02:02:44',NULL),(244500033217495040,'API_1fa6f8a0787d98b0718a18520a5835c3','视频数据回放-播放M3U8文件','视频数据回放-播放M3U8文件','cmii-uav-cloud-live','/public/his/videoPlay/playM3u8','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-11-14 02:02:36',NULL),(244500033842446336,'API_96d29c6f9142d88a2c5d0673bad041f4','视频数据回放-获取Token','视频数据回放-获取Token','cmii-uav-cloud-live','/video/playback/createToken','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-11-14 02:02:40',NULL),(244500034182184960,'API_4a4413b74f7ea53fa4a81a79abbf5cce','视频数据回放-获取设备编号列表','视频数据回放-获取设备编号列表','cmii-uav-cloud-live','/video/playback/getDeviceList','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-11-14 02:02:37',NULL),(244500034513534976,'API_cb47492784522c21d3ca7e46dd3749ab','视频数据回放-生成回放片段','视频数据回放-生成回放片段','cmii-uav-cloud-live','/video/playback/generateList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-11-14 02:02:42',NULL),(244500034597421056,'API_9230ba3e7a8a8507a4a6e378159067a6','视频数据回放-生成回放片段2','视频数据回放-生成回放片段2','cmii-uav-cloud-live','/video/playback/generateList2','POST',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-11-14 02:02:40',NULL),(244500034828107776,'API_f2daace874086ea979701b88fb223f39','视频数据回放-获取视频数据日期分布','视频数据回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/getDataDistribution','GET',_binary '\0',_binary '\0','2022-05-25 08:35:51',1,'2024-11-14 02:02:39',NULL),(249490599617495040,'API_f80c802fef4e5f571069e5c95206e99c','根据无人机code列表查询无人机名称详情','','cmii-uav-device','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-08 03:06:34',1,'2024-11-07 09:01:48',NULL),(249490607842525184,'API_467888d231fd342e1091a6bec97d4344','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-device','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:36',1,'2024-11-07 09:01:48',NULL),(249490698166861824,'API_538a5f3c59889aa1c96a2776b001b4b5','视频数据回放-获取设备编号名称列表','视频数据回放-获取设备编号名称列表','cmii-uav-cloud-live','/video/playback/getDeviceInfoList','GET',_binary '\0',_binary '\0','2022-06-08 03:06:58',1,'2024-11-14 02:02:43',NULL),(249916736613122048,'API_a7564eea3f085d0f3580037297f7cb23','视频数据回放-获取无人机坐标','视频数据回放-获取无人机坐标','cmii-uav-cloud-live','/video/playback/getPlanePosition','GET',_binary '\0',_binary '\0','2022-06-09 07:19:53',1,'2024-11-14 02:02:41',NULL),(249916736701202432,'API_af222ac23f8ce4c94137d994714ec5d6','视频数据回放-更新视频坐标','视频数据回放-更新视频坐标','cmii-uav-cloud-live','/video/playback/updateVideoAddress','GET',_binary '\0',_binary '\0','2022-06-09 07:19:53',1,'2024-11-14 02:02:44',NULL),(260412139431264256,'API_81c1e08421ec5908880a0d858f65a383','飞手-新增飞手信息','飞手-新增飞手信息','cmii-uav-user','/flyer/addFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:32',NULL),(260412139494178816,'API_85eb4f45e9968afe2a983c95ebcd8858','飞手-编辑飞手信息','飞手-编辑飞手信息','cmii-uav-user','/flyer/updateFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:42',NULL),(260412139544510464,'API_bdccda43feeb0bd3450fa97882968d44','飞手-分页查询飞手信息','飞手-分页查询飞手信息','cmii-uav-user','/flyer/queryPageFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:24',NULL),(260412139615813632,'API_910d5ed8cccbe03c2627d001dd126e6b','飞手-注销飞手信息','飞手-注销飞手信息','cmii-uav-user','/flyer/cancellationFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:26',NULL),(260412139687116800,'API_e9ad7513848fe2abf3898c8893766e01','飞手数据字典-查询合格证等级','飞手数据字典-查询合格证等级','cmii-uav-user','/flyer/queryCertificateLevel','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:21',NULL),(260412139737448448,'API_ff107246c0528de2d6e8ca2611de5659','飞手数据字典-查询飞手违规类型','飞手数据字典-查询飞手违规类型','cmii-uav-user','/flyer/queryViolationType','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:44',NULL),(260412139787780096,'API_f6d98f98ddf021b4e68e5ee6cf485f29','飞手数据字典-查询飞手违规处罚','飞手数据字典-查询飞手违规处罚','cmii-uav-user','/flyer/queryViolationPenalty','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:20',NULL),(260412139892637696,'API_1090f162960dd6510daacf0fa4cd82b7','飞手-手动验证飞手信息','飞手-手动验证飞手信息','cmii-uav-user','/flyer/checkFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:42',NULL),(260412139963940864,'API_6dec08acb3a67d9891f580acced31157','飞手-根据id查询飞手信息','飞手-根据id查询飞手信息','cmii-uav-user','/flyer/getFlyerById','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:32',NULL),(260412140026855424,'API_0026ba25d9100c225ea798b6406e92e3','飞手-根据id查询飞手信息用于编辑','飞手-根据id查询飞手信息用于编辑','cmii-uav-user','/flyer/getFlyerForEdit','GET',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:34',NULL),(260412140081381376,'API_d7e9c45b91a5dbfed4e918e6d9351af3','飞手违规-录入飞手的违规记录','飞手违规-录入飞手的违规记录','cmii-uav-user','/flyer/addIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:22',NULL),(260412140148490240,'API_bf9d49687be6013694a2003c833c940b','飞手违规-编辑飞手的违规记录','飞手违规-编辑飞手的违规记录','cmii-uav-user','/flyer/updateFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:38',NULL),(260412140203016192,'API_2f3ee3aa76f7fd716d136764c9f24951','飞手违规-分页查询飞手的违规信息','飞手违规-分页查询飞手的违规信息','cmii-uav-user','/flyer/queryPageIllegal','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:28',NULL),(260412140320456704,'API_49d7922291aa900378bb7a8dc75a2a11','飞手违规-根据id查询飞手违规信息','飞手违规-根据id查询飞手违规信息','cmii-uav-user','/flyer/queryFlyerIllegalById','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:19',NULL),(260412140383371264,'API_f3b016b098a0ff37dca34b05ee67aef3','飞手违规-手动处理飞手违规信息','飞手违规-手动处理飞手违规信息','cmii-uav-user','/flyer/dealFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:52',1,'2024-11-06 12:16:36',NULL),(266596666918830080,'API_43a6d9d4648b716b6e4952b20eb2a04b','测试锁与事物','','cmii-uav-user','/api/uav/uavTestPO/testLockAndTrans','POST',_binary '\0',_binary '\0','2022-07-25 07:59:59',1,'2024-11-06 12:16:36',NULL),(266596673503887360,'API_3148113e1fd6e767775edbc659344963','数据权限升级3.2.6','','cmii-uav-user','/api/uav/group-sync/dbMygration3_2_6','PUT',_binary '\0',_binary '\0','2022-07-25 08:00:00',1,'2024-11-06 12:16:33',NULL),(266596675139665920,'API_f6a5aeaac5b06b81000a77d71f23a474','查询权限组应用范围的详细列表','','cmii-uav-user','/api/uav/group-template/listScopeTemplates','POST',_binary '\0',_binary '\0','2022-07-25 08:00:00',1,'2024-11-06 12:16:31',NULL),(266596675202580480,'API_62f0c326f1123b42b06be36add8eed87','删除默认模板模板','','cmii-uav-user','/api/uav/group-template/deleteDefault','POST',_binary '\0',_binary '\0','2022-07-25 08:00:00',1,'2024-11-06 12:16:39',NULL),(266596675328409600,'API_5dfe79389effe7386b69be9f0b878478','删除模板','','cmii-uav-user','/api/uav/group-template/delete','POST',_binary '\0',_binary '\0','2022-07-25 08:00:01',1,'2024-11-06 12:16:21',NULL),(277737138605260800,'API_f67fe93ff0be5659f0252b9d3b6143e8','根据token获取用户完整信息','','cmii-uav-user','/api/uav/user/profile/completeInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:14',1,'2024-11-06 12:16:37',NULL),(277737138672369664,'API_59a73dfca0fffd4fe3d3a4fae3a81a41','根据token获取公司完整信息','','cmii-uav-user','/api/uav/user/profile/completeCompanyInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:14',1,'2024-11-06 12:16:29',NULL),(279275635531055104,'API_9367f8184a28af4bad1898638fbb79ab','生成接口版本的语言示例代码','','cmii-uav-developer','/admin/interfaceVersion/buildLanguageSample','GET',_binary '\0',_binary '\0','2022-08-29 07:41:40',1,'2024-11-06 11:22:09',NULL),(279275757723713536,'API_73af129ee1e6ed88be893161a74d82a9','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:42:09',1,'2024-11-07 09:01:45',NULL),(279275758248001536,'API_30b2f1bcb26caed129daa7d90ad3e1f7','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:42:09',1,'2024-11-07 09:01:49',NULL),(279275775566282752,'API_19ad0f424e8a0438e9601bc48ae29c37','获取插件配置列表','获取插件配置列表','cmii-uav-cloud-live','/plugin/config/list','GET',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-11-14 02:02:36',NULL),(279275775985713152,'API_26f3af4bc58af3cc074a66f40178f27a','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unlockFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-11-14 02:02:42',NULL),(279275776040239104,'API_a3428ce9d39cc8869562f7e35a64751c','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/removeFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-11-14 02:02:39',NULL),(279275776216399872,'API_61d24cd62573c5ab961430663885f8be','模糊查询流程定义','模糊查询流程定义','cmii-uav-cloud-live','/workflow/config/fuzzySearchFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-11-14 02:02:39',NULL),(279275776300285952,'API_fea3d3fd980a01a918dc11d5929793b3','查询流程定义详情','查询流程定义详情','cmii-uav-cloud-live','/workflow/config/getFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-11-14 02:02:37',NULL),(279275776501612544,'API_62dea4b7dfe4a98e7e694e5eb202901f','校验是否存在','校验是否存在','cmii-uav-cloud-live','/workflow/config/checkIfExist','POST',_binary '\0',_binary '\0','2022-08-29 07:42:14',1,'2024-11-14 02:02:36',NULL),(279275780792385536,'API_4fa6c28d58725e69b445a85b697bfb6a','根据code获取用户Token','根据code获取用户Token','cmii-uav-cloud-live','/user/getToken','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:36',NULL),(279275781748686848,'API_f7028ddc90bfea28a88864ef7323f4ef','删除视频分片','删除视频分片','cmii-uav-cloud-live','/video/part/delete','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:38',NULL),(279275781840961536,'API_d49ce826c20e30b16e6d088667263c91','查询视频分片列表','查询视频分片列表','cmii-uav-cloud-live','/video/part/list','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:40',NULL),(279275781908070400,'API_2335ee71c9d71a9303da6ce6d10a1b28','模糊查询视频分片','模糊查询视频分片','cmii-uav-cloud-live','/video/part/fuzzySearch','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:43',NULL),(279275781975179264,'API_78bc33e450c01a13ead3a9c468aa1680','流程任务管理-停止任务','流程任务管理-停止任务','cmii-uav-cloud-live','/video/process/task/manage/stopTask','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:42',NULL),(279275782046482432,'API_52875ec7bda206cb84a7156a04c5e722','流程任务管理-流程实例列表','流程任务管理-流程实例列表','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceList','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:44',NULL),(279275782105202688,'API_95003de040144226d1ef4b9147ca19b0','流程任务管理-流程实例详情','流程任务管理-流程实例详情','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:36',NULL),(279275782168117248,'API_ea93128efe8d3e791f52e973041eccbe','流程任务管理-插件任务详情','流程任务管理-插件任务详情','cmii-uav-cloud-live','/video/process/task/manage/getPluginTaskDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:38',NULL),(279275782235226112,'API_8573a8935dce7f3a3057e9384878171d','流程任务管理-批量删除任务','流程任务管理-批量删除任务','cmii-uav-cloud-live','/video/process/task/manage/deleteProcList','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:36',NULL),(279275782289752064,'API_02dc6ee1eecd13a66bdbaec47a2badd0','流程任务管理-重启任务','流程任务管理-重启任务','cmii-uav-cloud-live','/video/process/task/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:42',NULL),(279275782390415360,'API_bf6926013144f012735e0be3414cd02a','流程任务管理-插件任务重新启动','流程任务管理-插件任务重新启动','cmii-uav-cloud-live','/video/process/pluginTask/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:39',NULL),(279275782465912832,'API_04f140baa805dc6049da1f9f04ae1135','流程任务管理-插件任务停止','流程任务管理-插件任务停止','cmii-uav-cloud-live','/video/process/pluginTask/manage/stop','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:41',NULL),(279275782654656512,'API_33604007245ea6cb14132a321ebe459a','流程任务管理-获取流程启动参数样例','流程任务管理-获取流程启动参数样例','cmii-uav-cloud-live','/video/process/task/manage/getWorkFlowParam','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:43',NULL),(279275782797262848,'API_577f25983223517c7194672524ae7acb','流程任务管理-实例ID下拉列表','流程任务管理-实例ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getInstanceIds','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:43',NULL),(279275782914703360,'API_f8dcca1d25448eb817c485f82df8de75','流程任务管理-关联流程ID下拉列表','流程任务管理-关联流程ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getChainIds','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:42',NULL),(279275782994395136,'API_364708d86dc832dcdfc00084859e6ae4','流程任务管理-关联设备ID下拉列表','流程任务管理-关联设备ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getDevices','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:43',NULL),(279275783082475520,'API_7318e7634544cf7d9f84c55cdf5f4b26','流程任务管理-创建工作流任务','流程任务管理-创建工作流任务','cmii-uav-cloud-live','/video/process/task/manage/startWorkflow','POST',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:40',NULL),(279275783137001472,'API_d0cda40fdae23a056c3d311897a3000c','视频回放-获取视频数据日期分布','视频回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/manage/getDataDistribution','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:36',NULL),(279275783191527424,'API_61c50d8ae3119b2ec8afd1df6ac3176f','视频回放-获取设备用途列表','视频回放-获取设备用途列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceCategoryList','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:41',NULL),(279275783388659712,'API_155bc2bc2165563313f00c1ee11823b1','视频回放-播放M3U8文件','视频回放-播放M3U8文件','cmii-uav-cloud-live','/public/video/playback/manage/playM3u8','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:36',NULL),(279275783485128704,'API_70b1e201caeb8a00969a8ba09f987c67','视频回放-通过分享码获取回放Token','视频回放-通过分享码获取回放Token','cmii-uav-cloud-live','/public/video/playback/manage/createToken','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:41',NULL),(279275783535460352,'API_4bef90d6e3b82b7530842847039b9e00','视频回放-获取视频设备名称列表','视频回放-获取视频设备名称列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceList','GET',_binary '\0',_binary '\0','2022-08-29 07:42:15',1,'2024-11-14 02:02:42',NULL),(279275783594180608,'API_0ee85dc3be7876299bfe6590c172eae2','视频回放-获取视频片段列表','视频回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/manage/videoList','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:44',NULL),(279275783715815424,'API_dd808e40342182fecdcdef172fe18129','视频回放-视频下载','视频回放-视频下载','cmii-uav-cloud-live','/video/playback/manage/download','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:42',NULL),(279275783778729984,'API_50065eb835309bf5700e90751a6e8926','视频回放-获取分享码&提取码','视频回放-获取分享码&提取码','cmii-uav-cloud-live','/video/playback/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:37',NULL),(279275784718254080,'API_353c4c8462864ce53cc49200b431d42f','删除设备','删除设备','cmii-uav-cloud-live','/device/manage/delete','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:38',NULL),(279275784802140160,'API_b68ef2fb20dc815309394b31cc4ab8ec','设备ID列表','设备Id列表','cmii-uav-cloud-live','/device/manage/getDeviceCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:42',NULL),(279275784865054720,'API_3f4e598f3a16bce2dfb7232a349ffb29','设备名称列表','设备名称列表','cmii-uav-cloud-live','/device/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:43',NULL),(279275784965718016,'API_58fd2384f6e1dc187c559b3468c0f84d','设备分类列表','设备分类列表','cmii-uav-cloud-live','/device/manage/getDeviceCategorys','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:36',NULL),(279275785049604096,'API_1a70b9f6e7b28467f52012eb73a879d0','设备列表','设备列表','cmii-uav-cloud-live','/device/manage/list','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:37',NULL),(279275785322233856,'API_056744ad78b99b838ea7681cbe7bfc12','设备管理-获取分享码&提取码','设备管理-获取分享码&提取码','cmii-uav-cloud-live','/device/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:39',NULL),(279275785393537024,'API_29894462ea9fbe104104c74868677dfd','设备新建','设备新建','cmii-uav-cloud-live','/device/manage/create','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:35',NULL),(279275785456451584,'API_b68f84751591de0772e63e54428e1bd8','设备编辑','设备编辑','cmii-uav-cloud-live','/device/manage/edit','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:43',NULL),(279275785544531968,'API_1d50bbd5d1d01cec51b37cd60469f543','设备详情','设备详情','cmii-uav-cloud-live','/device/manage/detail','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:37',NULL),(279275785678749696,'API_0765de93ae28fec1a6779fa040da8b88','批量删除设备','批量删除设备','cmii-uav-cloud-live','/device/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:38',NULL),(279275785745858560,'API_5b52fce29f871d36fc05a8b6afb042b8','设备管理-分享码获取直播地址','设备管理-获取直播地址','cmii-uav-cloud-live','/public/device/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:42:16',1,'2024-11-14 02:02:39',NULL),(279277290670522368,'API_ea0f320f2901ba1ebabde0585c4272e1','测试Path','','cmii-uav-user','/api/uav/open/test/path/{id}/{name}','GET',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:31',NULL),(279277290733436928,'API_7e60af46b731c179e5188f9c0188680d','测试POSTNONE','','cmii-uav-user','/api/uav/open/test/post-none','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:20',NULL),(279277290792157184,'API_5cc56cc9afa7bf9e2ec54352f382ada4','测试FORMDATA','','cmii-uav-user','/api/uav/open/test/post-formdata','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:38',NULL),(279277290859266048,'API_964ba6c9abf68c6ace77e84cbbfd14f9','测试urlencoded','','cmii-uav-user','/api/uav/open/test/post-urlencoded','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:26',NULL),(279277290922180608,'API_5c7f2d3d72c39db6a34cb156ded9b918','测试POST RAW','','cmii-uav-user','/api/uav/open/test/post-raw','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:38',NULL),(279277291010260992,'API_f67edf288f69ba95fdc77651546c81ff','测试文件','','cmii-uav-user','/api/uav/open/test/file','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:32',NULL),(279277291110924288,'API_f1634b099f9554ea1c89718d80d48ce7','测试文件集合','','cmii-uav-user','/api/uav/open/test/files','POST',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:31',NULL),(279277291215781888,'API_830e06b0ffab162b8098cf8fa123db8c','测试Get','','cmii-uav-user','/api/uav/open/test/get','GET',_binary '\0',_binary '\0','2022-08-29 07:48:15',1,'2024-11-06 12:16:41',NULL),(282075311133163520,'API_3d6c07168fd0f82833abc7a14956160a','视频回放-播放MP4文件','视频回放-播放MP4文件','cmii-uav-cloud-live','/public/video/playback/manage/playMp4','GET',_binary '\0',_binary '\0','2022-09-06 01:06:35',1,'2024-11-14 02:02:38',NULL),(287236864056754176,'API_ff03f13970f20c0e51449949e927e4d5','新增监管c端用户','','cmii-uav-user','/suav/user/addSuavUser','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:41',NULL),(287236864140640256,'API_a0b65682063c35efd520b44995097ed8','修改监管c端用户状态','','cmii-uav-user','/suav/user/updateStatus','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:28',NULL),(287236864249692160,'API_d09b9be867388010f4c94a0127646390','申请认证','','cmii-uav-user','/suav/user/applyCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:30',NULL),(287236864367132672,'API_c90bd0cbee2ae40d2715645334a50099','同意认证申请','','cmii-uav-user','/suav/user/accessCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:32',NULL),(287236864421658624,'API_767865024b31f2cc03953ddc45cb9986','c端用户列表查询','','cmii-uav-user','/suav/user/query','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:23',NULL),(287236864480378880,'API_5e588f2d947d9cb90f1cdb7244895d33','给C端用户重置密码','','cmii-uav-user','/suav/user/updateUserPassword','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:39',NULL),(287236864555876352,'API_bd5c59c02d7670b42f87a39c5f58ba4d','生成公司的临时编码','','cmii-uav-user','/suav/user/companyTempCode','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:25',NULL),(287236864799145984,'API_443053f0d52c871c8809c1210ffbc30c','数据字典,获取认证状态','','cmii-uav-user','/suav/user/certificationStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:21',NULL),(287236865084358656,'API_415be5b2e4186edf2a5ba6421a8967d9','数据字典,获取用户状态','','cmii-uav-user','/suav/user/userStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:42',NULL),(287236865155661824,'API_f0e478dab04650e2e027f8c8f30035b9','获取c端用户详细信息(用户id与公司编码)','','cmii-uav-user','/suav/user/getUserDetail','POST',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:37',NULL),(287236865218576384,'API_ff389cb2e6843421dc7f59b66a8388e8','获取c端用户详细信息','','cmii-uav-user','/suav/user/getUserInfo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:45',1,'2024-11-06 12:16:34',NULL),(287236872168538112,'API_69fa4c56baaa3a151d8a3daf2a3cb598','根据公司id查询公司下面的子公司','','cmii-uav-user','/clients/org/children','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:16:21',NULL),(287236872504082432,'API_b7e269c10d3ab76b12a3038fc9e22522','根据公司id查询公司的第一级公司','','cmii-uav-user','/clients/org/getRoot','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:16:19',NULL),(287236872705409024,'API_393129d75226ae65ec07e5a15b387e30','根据用户名获取账号信息','','cmii-uav-user','/clients/suav/user/getUserDetail','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:16:39',NULL),(287236875662393344,'API_ba95daa3c52411b9096d22762ce4a16a','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2024-11-06 12:17:16',NULL),(287236875771445248,'API_d842a15fca6ec652fce80b67e839520b','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2024-11-06 12:17:11',NULL),(287236879529541632,'API_6f49cba78d3c4c873caff17cda442ea4','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2024-11-06 12:17:15',NULL),(287236879596650496,'API_a0fc4192b4bce535e26df2633ea71d6a','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2024-11-06 12:17:12',NULL),(287236964317396992,'API_624966db1edb3998c42b0a5c44e20555','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:09',1,'2024-11-07 09:01:44',NULL),(289756396184928256,'API_96001fd396737409f22416d94595c14d','根据应用编码集合,获取集合详情','','cmii-admin-user','/client/v1/platforms/queryAppsByCodes','POST',_binary '\0',_binary '\0','2022-09-27 05:48:28',1,'2024-09-09 09:14:18',NULL),(295229834448601088,'API_03e838c9e174bfcceda31e3ea9779b28','校验指定公司是否有无人机','','cmii-uav-device','/api/uav/plane/checkUavExit','GET',_binary '\0',_binary '\0','2022-10-12 08:17:58',1,'2024-11-07 09:01:51',NULL),(295229837829210112,'API_acf5017faf804920b87979e00de84171','根据无人机编码和名称模糊查询无人机列表','','cmii-uav-device','/api/uav/plane/queryUavList','GET',_binary '\0',_binary '\0','2022-10-12 08:17:58',1,'2024-11-07 09:01:48',NULL),(295229845899051008,'API_2dc30254053a86e7e8a7444b6d51fd4a','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-10-12 08:18:00',1,'2024-11-07 09:01:48',NULL),(295251616305643520,'API_e59ebfad16bcaff422ec9a8a61d29821','download','','cmii-uav-device','/api/uav/plane/download','GET',_binary '\0',_binary '\0','2022-10-12 09:44:31',1,'2022-11-09 07:20:48',NULL),(299943703282319360,'API_6deb1974a304cbd0b6467f899bbded96','删除视频合成任务','删除视频合成任务','cmii-uav-cloud-live','/video/merge/delete','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:43',NULL),(299943703370399744,'API_4ccf219211d38ebd68e9c6e368087db1','查询视频合成任务列表','查询视频合成任务列表','cmii-uav-cloud-live','/video/merge/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:35',NULL),(299943703445897216,'API_f02265768ee60978134eb6c0fdd4c591','模糊查询视频合成任务','模糊查询视频合成任务','cmii-uav-cloud-live','/video/merge/fuzzySearch','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:43',NULL),(299943703521394688,'API_d1df2700051f54772ade26acea82227f','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/video/merge/applyMerge','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:39',NULL),(299943703622057984,'API_3e0895207c7be89015bcefde78eb9a57','视频合成任务-获取m3u8回放Token','视频合成任务-获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/video/merge/getPlaybackM3u8Token','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:38',NULL),(299943704062459904,'API_43e420d3de8c15d1d0617823b0f9a59e','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/video/part/getM3U8','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:37',NULL),(299943706553876480,'API_36d9b4a4c15f6443b5dd71dbb4ffe523','结束直播','结束直播','cmii-uav-cloud-live','/broadcast/manage/stop','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:44',NULL),(299943706620985344,'API_9693ba0fd7e96c9569226e16649b4ad1','新建直播','新建直播','cmii-uav-cloud-live','/broadcast/manage/create','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:38',NULL),(299943706746814464,'API_d044fdf2df50285e3213d06fa76d0264','新建直播-直播名称是否存在','新建直播-直播名称是否存在','cmii-uav-cloud-live','/broadcast/manage/isExistActivityName','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:43',NULL),(299943706809729024,'API_f7fda7e00fd5eddd7e5957f71098cdb1','直播列表','直播列表','cmii-uav-cloud-live','/broadcast/manage/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:42',NULL),(299943706885226496,'API_addbaad28b1c82af748d923725cea518','直播管理-获取直播分享码&提取码','直播管理-获取直播分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:38',NULL),(299943706990084096,'API_06551f7a0896b0e26721db1c5b930ab3','直播管理-分享回放(MP4文件)','直播管理-分享回放(MP4文件)','cmii-uav-cloud-live','/public/broadcast/manage/playMp4','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:39',NULL),(299943707078164480,'API_49da91b3d7b83dd3fd38463f5440fdd9','进入直播','进入直播(获取直播地址)','cmii-uav-cloud-live','/broadcast/manage/getBroadcastPlay','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:41',NULL),(299943707149467648,'API_076b223b478afbc1891bd276ccc64f99','直播名称列表','直播名称列表','cmii-uav-cloud-live','/broadcast/manage/getActivityNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:36',NULL),(299943707212382208,'API_12175cae1b75bda31a1fc2b2bd812714','直播列表-直播设备下拉列表','直播列表-直播设备下拉列表','cmii-uav-cloud-live','/broadcast/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:41',NULL),(299943707275296768,'API_3db55c96df43c268cba13f78a16f9205','批量删除直播','批量删除直播','cmii-uav-cloud-live','/broadcast/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-10-25 08:29:12',1,'2024-11-14 02:02:43',NULL),(299943707342405632,'API_7128d138344e76efe5cee8d4ad8c2f3c','直播管理-分享码获取直播地址','直播管理-获取直播地址','cmii-uav-cloud-live','/public/broadcast/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-11-14 02:02:35',NULL),(299943707396931584,'API_b3f1bbc5d260a69bc4c684110aafdeed','直播管理-获取回放分享码&提取码','直播管理-获取回放分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getPlaybackShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-11-14 02:02:42',NULL),(299943707459846144,'API_7306ef570af18081e81ed62c8561aff3','通过分享码获取m3u8回放Token','通过分享码获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/public/broadcast/manage/getSharePlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-11-14 02:02:37',NULL),(299943707556315136,'API_2f6e07d9525594c82888280793c4edf9','新建直播-选择视频流设备列表','新建直播-选择视频流设备列表','cmii-uav-cloud-live','/broadcast/manage/create/getDeviceList','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-11-14 02:02:42',NULL),(299943707631812608,'API_d77aa62e4ba0c8f547adfe98b1ee194c','获取m3u8回放Token','获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/broadcast/manage/getPlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:13',1,'2024-11-14 02:02:39',NULL),(305383349274411008,'API_0cb8a3873ab09e2ac420f0792855a5e2','download','','cmii-uav-device','/api/uav/plane/download','POST',_binary '\0',_binary '\0','2022-11-09 08:44:24',1,'2024-11-07 09:01:51',NULL),(305387000961302528,'API_ce4c361afa82c394716734aaa1ddbd4a','查询自己以及祖先公司以及公司的用户','','cmii-uav-user','/api/uav/org/ancestorsAndOwn','POST',_binary '\0',_binary '\0','2022-11-09 08:58:55',1,'2024-11-06 12:16:29',NULL),(305387005512122368,'API_f11240b92cee5d159e4f5eabe1e8a796','上级和下级公司的用户','','cmii-uav-user','/api/uav/user/getSuperiorAndSubordinatetUser','GET',_binary '\0',_binary '\0','2022-11-09 08:58:56',1,'2024-11-06 12:16:31',NULL),(305387017755295744,'API_22bd7ab297fcbef4e8289342d128eed0','createRSA','','cmii-uav-user','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-09 08:58:59',1,'2024-11-06 12:16:34',NULL),(307566664328806400,'API_a6898c161b0e2ea04598bd6dc11321f4','createRSA','','cmii-uav-cloud-live','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-15 09:20:07',1,'2024-11-14 02:02:38',NULL),(315901980064481280,'API_bd1bab05f21fe3c727fcaa9aa699120a','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:21:41',1,'2024-11-07 09:01:57',NULL),(315909514628300800,'API_63c29781cb102bf657cf7ee5a06fdfe3','飞手-查询飞手列表','飞手-查询飞手列表','cmii-uav-user','/clients/flyer/queryFlyers','POST',_binary '\0',_binary '\0','2022-12-08 09:51:38',1,'2024-11-06 12:16:36',NULL),(315911089048387584,'API_c369a480eca1568a1a64edeabc8203a9','从Redis获取类别对应的加密字典明细','从Redis获取类别对应的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-11-06 12:17:17',NULL),(315911089178411008,'API_e79c6c19893996625cb977f371b7727c','从Redis获取类别对应的有效的加密字典明细','从Redis获取类别对应的有效的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeValiableDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-11-06 12:17:13',NULL),(315911089262297088,'API_b8c0b1ce047e9f177879294e1176f46d','从Redis获取所有的语言对应的加密字典明细的K-V','从Redis获取所有的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-11-06 12:17:11',NULL),(315911089341988864,'API_3f6a19076e18fa7acce0d74cec04af81','从Redis获取有效的语言对应的加密字典明细的K-V','从Redis获取有效的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-11-06 12:17:17',NULL),(315911089409097728,'API_21c78db35d528159ea148190f80e91fc','从Redis获取所有的编码对应的本地语言的加密值','从Redis获取所有的编码对应的本地语言的加密值','cmii-admin-data','/api/admin/dictionary/getEnCodeLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2022-12-08 09:57:53',1,'2024-11-06 12:17:14',NULL),(315911099785805824,'API_7af6be80b3bcb05b36fa95631144343a','查询天气综合接口','','cmii-admin-data','/api/admin/atmosphere/weather/{coordinate}/{level}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-11-06 12:17:15',NULL),(315911099848720384,'API_656295455a26635f330d23b130ddb013','获取彩云天气雷达图','','cmii-admin-data','/api/admin/atmosphere/radar','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-11-06 12:17:17',NULL),(315911099915829248,'API_cf65071f9d16a72591016a32567bbd2e','获取彩云天气历史累计图','','cmii-admin-data','/api/admin/atmosphere/historicalImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-11-06 12:17:13',NULL),(315911099978743808,'API_e5246134c4a313c2abdc72ab662f3cf7','获取彩云天气卫星图像数据','','cmii-admin-data','/api/admin/atmosphere/satelliteImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-11-06 12:17:14',NULL),(315911100041658368,'API_bd6a14bc94eaf8a55a8ecbdcacc9c5b0','获取彩云天气小时级数据图层','','cmii-admin-data','/api/admin/atmosphere/originImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-11-06 12:17:14',NULL),(315911100129738752,'API_3376edd154d5e642eaaa1a31c7ddb76c','获取彩云天气预测累计图','','cmii-admin-data','/api/admin/atmosphere/forecastImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-11-06 12:17:17',NULL),(315911100217819136,'API_20a4aa74a7bbd084fb5cf120a8dcc60c','导出报告接口','','cmii-admin-data','/api/admin/atmosphere/export/{coordinate}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:56',1,'2024-11-06 12:17:16',NULL),(316180559729917952,'API_dea45900d60b73c855a3db6810628775','设置机库额外信息','','cmii-uav-device','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 03:48:40',1,'2024-11-07 09:01:49',NULL),(330366742883205120,'API_1d407fdf42a15342204587254bbec655','设置地图配置','','cmii-uav-user','/api/uav/org/mergeMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:29',1,'2024-11-06 12:16:23',NULL),(330366743000645632,'API_47979857f71ab7739fbbb3d1d10c59b8','删除地图配置','','cmii-uav-user','/api/uav/org/delMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:29',1,'2024-11-06 12:16:23',NULL),(330366743105503232,'API_fb4aefe0ad2483a442075ebded82acca','获取指定组织的地图配置','','cmii-uav-user','/api/uav/org/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:29',1,'2024-11-06 12:16:30',NULL),(330366747631157248,'API_10eba035deca93be164f1ad3f808311b','获取自己组织的地图配置','','cmii-uav-user','/api/uav/user/profile/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:31',1,'2024-11-06 12:16:21',NULL),(338350551701520384,'API_2ddec9b0a6c6ddb7972bb3a4b7cb19b5','测his','','cmii-uav-user','','GET',_binary '\0',_binary '\0','2023-02-08 08:04:18',1,'2023-08-07 06:29:38',NULL),(338350558588567552,'API_595b33682c3f519aaf3572b88817b432','飞手-查询飞手','飞手-查询飞手','cmii-uav-user','/clients/flyer/getRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:19',1,'2024-11-06 12:16:33',NULL),(338350574497562624,'API_e495283cfa185294b0ac99f8c3afbfa5','飞手-查询历史飞手列表','飞手-查询历史飞手列表','cmii-uav-user','/clients/flyer/queryHistoryRpcsByIds','POST',_binary '\0',_binary '\0','2023-02-08 08:04:23',1,'2024-11-06 12:16:23',NULL),(338350582655483904,'API_b1e7b0038cbcbdde48ab92395a49fc77','飞手-查询历史飞手信息','飞手-查询历史飞手信息','cmii-uav-user','/clients/flyer/getHistoryRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:25',1,'2024-11-06 12:16:31',NULL),(338350582848421888,'API_ea461e10014bb0021824cd9983557961','查询组织自身实际分配给自己配额','','cmii-uav-user','/client/quota/getQuotaConfigByType','POST',_binary '\0',_binary '\0','2023-02-08 08:04:25',1,'2024-11-06 12:16:29',NULL),(338350593602617344,'API_16f8fa42e4aaf03d75116f4c3e60a035','createRSA','','cmii-uav-device','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-02-08 08:04:28',1,'2024-11-07 09:01:58',NULL),(338679572989607936,'API_c64fa9a54063c392bc7ae9abfdecf20f','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryFlyTotalByCmpScope','GET',_binary '\0',_binary '\0','2023-02-09 05:51:43',1,'2024-11-07 09:01:48',NULL),(338679575007068160,'API_e948d384436ebdf4111fcaed655e4adf','获取公司范围内的飞手列表','','cmii-uav-device','/api/uav/plane/queryFlyerList','GET',_binary '\0',_binary '\0','2023-02-09 05:51:43',1,'2024-11-07 09:01:47',NULL),(356113915359920128,'API_39a880167c8614f8e12466d50933a1c4','api','','cmii-admin-user','','POST',_binary '\0',_binary '\0','2023-03-29 08:29:34',1,'2023-09-10 12:26:26',NULL),(356113915787739136,'API_05fc13f05472604a588d72cda015a304','createRSA','','cmii-admin-user','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-03-29 08:29:34',1,'2024-09-09 09:14:17',NULL),(356142464401801216,'API_b45ae6e6540f1c26f30f6821db701f94','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','','DELETE',_binary '\0',_binary '\0','2023-03-29 10:23:00',1,'2023-06-12 07:07:34',NULL),(356142467799187456,'API_917d79d5fe966b35d589931c2624c15b','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','','GET',_binary '\0',_binary '\0','2023-03-29 10:23:01',1,'2023-06-12 07:07:34',NULL),(360020852111704064,'API_6382c442feffdb99d380fc509b8d8cdf','机库绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/hangar/queryBoundVideoByHgrDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:20',1,'2024-11-07 09:01:46',NULL),(360020866523332608,'API_74382abbc96293ea3031fda83c1dabfc','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:23',1,'2024-11-07 09:01:55',NULL),(360105954854436864,'API_ef18e28046f8823ce9871074c311d87c','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/plane/checkUavExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:30',1,'2024-11-07 09:01:46',NULL),(360105956142088192,'API_3759ecb4da461b7ed9a15788a63b802e','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/hangar/checkHgrExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:30',1,'2024-11-07 09:01:54',NULL),(361439235510108160,'API_182ee7baff979a8cb4e801ee17150214','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryCamVideoByUavCode','GET',_binary '\0',_binary '\0','2023-04-13 01:10:29',1,'2024-11-07 09:01:44',NULL),(363322689011187712,'API_887e0119125f20dc5762035c7a34e9a7','根据应用编码获取应用详细信息','','cmii-admin-user','/client/v1/platforms/getDetailByCode','GET',_binary '\0',_binary '\0','2023-04-18 05:54:39',1,'2024-09-09 09:14:17',NULL),(366266834935480320,'API_c08789b2c3cf169b1b8a2a6391aa014e','获取视频HLS回放url','获取视频HLS回放url','cmii-uav-cloud-live','/personal/his/playback/hls/getPlayUrl','POST',_binary '\0',_binary '\0','2023-04-26 08:53:38',1,'2024-11-14 02:02:39',NULL),(366266837636612096,'API_4cd087acea12e9df6dadc85a13d81647','上报已存储的视频分片','上报已存储的视频分片','cmii-uav-cloud-live','/client/live/stream/reportPartFile','POST',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-11-14 02:02:44',NULL),(366266838521610240,'API_2ace9d2a26489c0b6c0461b6716d1df0','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/client/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-11-14 02:02:40',NULL),(366266839138172928,'API_6099fa9109dc842a151d9090663330c2','视频HLS回放','视频HLS回放','cmii-uav-cloud-live','/public/his/playback/hls.m3u8','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-11-14 02:02:40',NULL),(366266841294045184,'API_2679f7b8474fc8ef2d2ea59f71b2d6aa','获取HLS直播回放地址','获取HLS直播回放地址','cmii-uav-cloud-live','/client/live/stream/getHlsPlayInfo','POST',_binary '\0',_binary '\0','2023-04-26 08:53:40',1,'2024-11-14 02:02:37',NULL),(369073521807458304,'API_2f576b4aa4334399d4a68ef04f3b7d0d','查询走廊信息','','cmii-uav-grid-datasource','/corridor/corridorQuery','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073521887150080,'API_ec475feef48ac52bb568bad1b59dceeb','检查url是否已经使用','','cmii-uav-grid-datasource','/terrain/checkRepeatUrl','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073521954258944,'API_5b8f1dc3f3ecadbc8cc614e907ac76a3','env','','cmii-uav-grid-datasource','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522080088064,'API_a233f3b210c54d7fe244188c06a7c4a4','ping','','cmii-uav-grid-datasource','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522168168448,'API_3dd7916d2570ad77f5f0a4a36a81e43f','保存执行计划','','cmii-uav-grid-datasource','/dataImport/saveCron','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073522273026048,'API_8f8558323e61097a2b8c8d52aae45a22','已接入服务列表','','cmii-uav-grid-datasource','/dataImport/serviceList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073522340134912,'API_5050c3adce00b0029e7b454a77f2f927','飞行计划相交集合','','cmii-uav-grid-datasource','/fightPlan/fightPlanIntersect','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522449186816,'API_863e3233dd2fb0dfead2b5ae873204d1','立即同步','','cmii-uav-grid-datasource','/dataImport/sync','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522524684288,'API_37e909b2fefde1d03603324339350050','新增地形数据','','cmii-uav-grid-datasource','/terrain/addTerrain','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073522587598848,'API_e1e529b85d096ca15c079328efd9aad4','查询默认地形数据','','cmii-uav-grid-datasource','/terrain/queryDefaultTerrain','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073522642124800,'API_72bc4178dda49853316a0e3a7bdd8ce8','打码航线','','cmii-uav-grid-datasource','/coding/codingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073522709233664,'API_894b58fcd4bf77172cf7aea9ee666e09','获取网格编码','','cmii-uav-grid-datasource','/grid/manager/getGrid','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073522776342528,'API_ce37696c8ec4641de8ea62167d8dc1b3','根据网格码查询标注信息','','cmii-uav-grid-datasource','/mark/queryMarkList','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073523036389376,'API_bec34ea6ec4eeffc887efdc8146339ed','存储指定网格码的外包矩形','','cmii-uav-grid-datasource','/custom/saveGrid3dScope','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073523099303936,'API_64bc026764f6c25b42c69a8606a07a94','getDocumentation','','cmii-uav-grid-datasource','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073523170607104,'API_c9ddccbad8fa8784cdaf1991b097fe33','设置默认地形','','cmii-uav-grid-datasource','','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2023-07-18 04:06:48',NULL),(369073523258687488,'API_29afb846adb55f238910d05afbe2e761','createRSA','','cmii-uav-grid-datasource','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073523434848256,'API_d279ca67575d122ef0f61ff81cbe7a8d','多边形打码','','cmii-uav-grid-datasource','/corridor/polygonCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073523501957120,'API_b1608c283d9b041b452a7a559e608496','批量获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeights','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073523640369152,'API_b049cf657a5c0a8e9096e440ca661d02','securityConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073523715866624,'API_4aaa777469e72d7417e378e630b5bd8f','生成走廊网格码','','cmii-uav-grid-datasource','/corridor/corridorCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073524072382464,'API_59448bffb78439636d0b4d3f16ca48f2','航线在线打码','','cmii-uav-grid-datasource','/custom/onlineCodingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524135297024,'API_56b94ed05c688dfa4f3bd071967f7fca','打码可飞行区域','','cmii-uav-grid-datasource','/coding/codingFlyableAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073524294680576,'API_91bd981c8e68b461bf325839da3f0413','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeightToRpc','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524370178048,'API_37e8361e9f18210f188b9312f0edb357','打码单个空域','','cmii-uav-grid-datasource','/custom/gridCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524475035648,'API_8a1741a83cb91167bd83059338e69dfa','条件查询地形数据','','cmii-uav-grid-datasource','/terrain/queryTerrainByCondition','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524558921728,'API_e6311bd8b4857f003d5ae41ddc1b9fa8','保存已通过飞行计划','','cmii-uav-grid-datasource','/fightPlan/savePassFightPlan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524651196416,'API_3c1ff288ca2fbf810ccd69e351235542','swaggerResources','','cmii-uav-grid-datasource','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073524722499584,'API_ecbc7c4dce2a7addfbb0169537a09e06','health','','cmii-uav-grid-datasource','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524793802752,'API_4fbd74c072343df88b232fbe31a59b04','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeight','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073524848328704,'API_025c2238b894f0a0f96b1cd192067bbe','error','','cmii-uav-grid-datasource','/error','',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:32',NULL),(369073525024489472,'API_a3ad8f8222c9436057a777a55faf8a7c','获取地形数据列表','','cmii-uav-grid-datasource','/terrain/getTerrainList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:30',NULL),(369073525087404032,'API_130f26dd451d2a049d5d834b0b0a17de','删除标注信息','','cmii-uav-grid-datasource','/mark/deleteMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:15:31',NULL),(369073525418754048,'API_c7a327fe84d6d10b54e0de34b9e1ea19','接口扫描','','cmii-uav-grid-datasource','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073525863350272,'API_2447fe8d41a35c4fee51f7b369d7fd12','保存/更新标注信息','','cmii-uav-grid-datasource','/mark/saveOrUpdateMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073525922070528,'API_d811537b42ba578dbc6be1586739193d','getDocumentation','','cmii-uav-grid-datasource','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073525976596480,'API_aaacdcec734a7703cdcf345d3ed75d5c','飞行冲突判断','','cmii-uav-grid-datasource','/fightConflict/fightConflict','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073526035316736,'API_ad3946fa86a26f16ffa9052e13bc40bf','走廊删除','','cmii-uav-grid-datasource','/corridor/deleteCorridor','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369073526186311680,'API_b0210debfbccada2fc2ddcb13cf64b84','uiConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:31',NULL),(369073526249226240,'API_33b1d75edb6c55c345002a8a44808880','根据ID删除地形数据','','cmii-uav-grid-datasource','','DELETE',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2023-07-18 04:06:46',NULL),(369073526312140800,'API_a935d01ed0b7168651291ee04b37894d','打码禁飞区','','cmii-uav-grid-datasource','/coding/codingNoFlyAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:26',1,'2024-06-18 01:15:30',NULL),(369176334815592448,'API_d52162a5cd1e62dfa714b1bccb31408a','createRSA','','cmii-admin-data','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-11-06 12:17:15',NULL),(369176338061983744,'API_7fd046a59194d2af54f3fcdd4bf15887','查询天气综合接口','','cmii-admin-data','','GET',_binary '\0',_binary '\0','2023-05-04 09:34:58',1,'2023-09-10 12:25:47',NULL),(369176357305450496,'API_e4e6d4125de70b6463d08fbf9d71c47f','查询指定编号的无人机视频流','','cmii-uav-device','/api/uav/stream/querySpecUavStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2024-11-07 09:01:48',NULL),(369176359717175296,'API_be6e682bd0a2cdcf659f1d317e142227','查询无人机基础信息','','cmii-uav-device','/api/uav/stream/queryPlaneInfo','GET',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2024-11-07 09:01:55',NULL),(369176379291992064,'API_e4ea6bcadcc2e15b59c9bf580bec561c','查询公司下的在线无人机列表','','cmii-uav-device','/api/uav/stream/queryOnlineList','GET',_binary '\0',_binary '\0','2023-05-04 09:35:08',1,'2024-11-07 09:01:56',NULL),(369176379791114240,'API_788c7ac27d69d34507ec569755221c6a','查询公司下的在线无人机','','cmii-uav-device','/api/uav/stream/queryStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:08',1,'2024-11-07 09:01:58',NULL),(371949603785146368,'API_1a0fc2b7d3fb9a8c702019ecc6482ca0','按设备号查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNoWithoutCompanyId','GET',_binary '\0',_binary '\0','2023-05-12 01:14:56',1,'2024-11-07 09:01:53',NULL),(373763042475900928,'API_0f959d8a065bba9b54784b8c848a586c','根据载荷编码查对应的设备号','','cmii-uav-device','/api/uav/load/queryDeviceNoByCode','POST',_binary '\0',_binary '\0','2023-05-17 01:20:54',1,'2024-11-07 09:01:47',NULL),(374253516313985024,'API_48978d5ef090d81630fb3605f57903b7','解密服务','','cmii-uav-user','/public/cipher/decrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:52',1,'2024-11-06 12:16:35',NULL),(374253522177622016,'API_dcd9bfc9f9145fd7fa2f86f84b0fe4dd','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryInterfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 09:49:53',1,'2024-11-06 12:16:38',NULL),(374253523834372096,'API_c5421137b351c6ead103badcff054086','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryTopN','GET',_binary '\0',_binary '\0','2023-05-18 09:49:53',1,'2024-11-06 12:16:28',NULL),(374253524253802496,'API_fd18a7dcada967185912d83f28c9d074','加密服务','','cmii-uav-user','/public/cipher/encrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:53',1,'2024-11-06 12:16:31',NULL),(374268309527330816,'API_b4b7083a6db8e45193495a859dc1b01a','创建公司密钥配置','','cmii-admin-data','/personal/cipher/interfaceAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-11-06 12:17:12',NULL),(374268310672375808,'API_d6f08ecdcb3267c96d5f438151bc7c9b','公司密钥配置编辑','','cmii-admin-data','/api/admin/cipher/config/edit','POST',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-11-06 12:17:13',NULL),(374268310794010624,'API_0f3ebffc0b074339cf0bcbd6f1df19bf','查询返回编码','','cmii-admin-data','/api/admin/cipher/params/returnCode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-11-06 12:17:11',NULL),(374268311016308736,'API_74f1e5f507799e1e3205749b034cde0e','创建公司密钥配置','','cmii-admin-data','/api/admin/cipher/config/add','POST',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-11-06 12:17:13',NULL),(374268311792254976,'API_2741dec94ddea0833a4316fd252e0276','查询可以加密的接口列表','','cmii-admin-data','/api/admin/cipher/params/interfaces','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-11-06 12:17:12',NULL),(374268315164475392,'API_b5e9ffbb47525729bc78c01fdf228567','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/mgfHashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:17:14',NULL),(374268316204662784,'API_2417860ccff3359fe9dba9edfaac5f42','密钥配置详情','','cmii-admin-data','/rpc/cipher/encryptDetail','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:17:12',NULL),(374268317043523584,'API_9b1451f70e44b613594e017f2628a13a','根据接口编码集合查询接口信息','','cmii-admin-data','/api/admin/cipher/params/interfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:17:13',NULL),(374268317685252096,'API_bd0024ecbe647e014a449bc9d5f729c7','查询加密的参数以及参数值列表','','cmii-admin-data','/api/admin/cipher/params/cipherTypeParams','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:13',NULL),(374268318326980608,'API_4f43715ed81ec4c9a0acee6c1bb84781','查询工作模式列表','','cmii-admin-data','/api/admin/cipher/params/workMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:16',NULL),(374268318897405952,'API_694d36068c38eb981742a7ae6ba5d0f4','对称加密的类型','','cmii-admin-data','/api/admin/cipher/params/symmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:12',NULL),(374268319501385728,'API_d64b38a2d894d23426dbbfb9128d0c07','未全部配置过的组织列表','','cmii-admin-data','/api/admin/cipher/unRelatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:16',NULL),(374268319610437632,'API_d52a332a6946771c1f169d5066187469','密钥配置详情','','cmii-admin-data','/api/admin/cipher/configDetail','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:18',NULL),(374268321032306688,'API_84f91b64d5bfd02bb04aa626edf1d6dd','查询填充模式列表','','cmii-admin-data','/api/admin/cipher/params/paddingMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:17',NULL),(374268321388822528,'API_644f2dab52b418e265238fa68e275c48','查询密钥长度','','cmii-admin-data','/api/admin/cipher/params/keyLength','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:15',NULL),(374268321770504192,'API_c9de66fbe7350603d416b0a83ed42dc6','已经配置过的组织列表','','cmii-admin-data','/api/admin/cipher/relatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:17:17',NULL),(374268322626142208,'API_4eb7e9b4d6471bbd1d931e39a14f0f8b','密钥配置历史版本','','cmii-admin-data','/api/admin/cipher/history','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:17:15',NULL),(374268323888627712,'API_b7035bcdcc081a0ce8c2444d57f99b45','非对称加密类型','','cmii-admin-data','/api/admin/cipher/params/asymmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:17:14',NULL),(374268324433887232,'API_8529eee665f795dfecf3af378fba2cd1','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/hashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:17:17',NULL),(374268324597465088,'API_cb24eaf17427b8969c7410c32143a00c','查询RSA密钥格式','','cmii-admin-data','/api/admin/cipher/params/keyFormat','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:17:12',NULL),(374268325209833472,'API_d540393b2029950246fcff435da75cd7','公司密钥配置删除','','cmii-admin-data','/api/admin/cipher/config/delete','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:17:17',NULL),(374268325750898688,'API_1c97a7512a978a1d4698c682f4941eca','密钥配置列表','','cmii-admin-data','/api/admin/cipher/configs','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:17:18',NULL),(374518913453522944,'API_b9e0e052b103a3257f3e6d4677df5692','批量判断是否有冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersect','POST',_binary '\0',_binary '\0','2023-05-19 03:24:27',1,'2024-06-18 01:15:31',NULL),(374595432532410368,'API_9af09cb0b05436d31116614ec5082063','通过视频编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByVideoCode','GET',_binary '\0',_binary '\0','2023-05-19 08:28:31',1,'2024-11-07 09:01:50',NULL),(374595434877026304,'API_83501b10768effef0eab0ec0fe8eec4c','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-19 08:28:31',1,'2023-05-19 08:28:38',NULL),(376069404713287680,'API_7aeff08ab35ce893c4625b166660f6fe','按无人机设备号查询无人机详情查询无需公司隔离','','cmii-uav-device','/api/uav/plane/queryDetailByUavSn','GET',_binary '\0',_binary '\0','2023-05-23 10:05:33',1,'2024-11-07 09:01:52',NULL),(376069405833166848,'API_4ab35aed02383cead8315ecf74959f84','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-23 10:05:33',1,'2024-11-07 09:01:58',NULL),(376308875023089664,'API_40b7feeb871b38ee80243ea6b9b87a1f','删除数据','','cmii-uav-grid-datasource','/fightPlan/deleteData','GET',_binary '\0',_binary '\0','2023-05-24 01:57:07',1,'2024-06-18 01:15:30',NULL),(376308876080054272,'API_525c8cdfcd0e5428eab20ce710e9ab59','更新状态','','cmii-uav-grid-datasource','/fightPlan/updateStatus','GET',_binary '\0',_binary '\0','2023-05-24 01:57:08',1,'2024-06-18 01:15:31',NULL),(383272346463240192,'API_23013111b0eb52f8adfb5699bc4561f7','视频数据回放-批量删除视频片段','视频数据回放-批量删除视频片段','cmii-uav-cloud-live','/video/playback/batchDeleteSegment','POST',_binary '\0',_binary '\0','2023-06-12 07:07:28',1,'2024-11-14 02:02:38',NULL),(384034751742345216,'API_16eb6d9fda49c60a76fab1754a31ba25','获取设备视频流地址信息','获取设备视频流地址信息(包括播放地址和推流地址)','cmii-uav-cloud-live','/client/live/open/queryDeviceStreamInfo','POST',_binary '\0',_binary '\0','2023-06-14 09:37:00',1,'2024-11-14 02:02:35',NULL),(384034753399095296,'API_6325d24763533b2cb36ffb1342f7c4b4','配置设备视频流来源地址','配置设备视频流来源地址,并默认启动拉流服务','cmii-uav-cloud-live','/client/live/open/configDevicePullStream','POST',_binary '\0',_binary '\0','2023-06-14 09:37:00',1,'2024-11-14 02:02:37',NULL),(384034757761171456,'API_2f53a483eabc8d6dd865a1a94cf4ddc9','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','cmii-uav-cloud-live','/client/live/open/startDevicePullStream','GET',_binary '\0',_binary '\0','2023-06-14 09:37:01',1,'2024-11-14 02:02:40',NULL),(392026422140731392,'API_75a92385064a14c92617dcbb7b0d3dfb','根据用户id集合获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryByIds','POST',_binary '\0',_binary '\0','2023-07-06 10:53:03',1,'2024-11-06 12:16:26',NULL),(392026652389801984,'API_e72e93182f82f69b3d90abd268138157','任务列表','任务列表','cmii-uav-process','/process/task/mytask/queryTaskOrderList','POST',_binary '\0',_binary '\0','2023-07-06 10:53:57',1,'2024-09-12 02:46:55',NULL),(392026652746317824,'API_6e4f3e159310433aa6f76aa0d407844e','任务配置列表','任务配置列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskDefList','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026653027336192,'API_9b0a86c18bd339d27a2b89ab98815f3e','查询任务类型列表','查询任务类型列表','cmii-uav-process','/client/taskdispatch/queryTaskTypes','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026653199302656,'API_3b6db47197b1889d76320c549c7c4a5f','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/flowdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026653375463424,'API_c3db4807ee66876f7ec2ece9207d1500','查看周期工作流任务详情','看周期工作流任务详情','cmii-uav-process','/process/bizengine/manage/periodflowinst/gePeriodFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026653576790016,'API_d4bb356f3b244688eeb50b3590d42feb','修改接口人','修改接口人','cmii-uav-process','/process/task/config/modifyContactPerson','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026653870391296,'API_675b982c8fa99f1d578dfbbfa1ffd8a5','任务信息列表','任务信息列表','cmii-uav-process','/process/task/config/queryTaskInfoList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026654050746368,'API_5e6ebf3a52b9c513518de86b3c5e3d31','查询工单状态下拉列表','查询工单状态下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654222712832,'API_d96009d0d398cf79b03530f0bfe2cebc','模糊搜索用户列表','模糊搜索用户列表(详情-查询关联作业列表-用户列表)','cmii-uav-process','/process/task/mytask/fuzzySearchUsers','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654398873600,'API_0c896719736a178e9edf4670291c333e','新建任务-单位下拉列表','新建任务-单位下拉列表(自身及子公司)','cmii-uav-process','/process/task/manage/queryChildWithOwnUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654554062848,'API_34920ec007c3ac277370bdb9532f2a2a','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list/vague','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026654734417920,'API_4787f525e4b9b3e880a13fa6c815b231','编辑任务定义','编辑任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/modifyTask','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026655053185024,'API_afed7c0365d6055c6c9c6de659b0b164','删除流程实例','删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/deleteProcInst','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026655397117952,'API_5d425c1dcb7e4c5e5f21f611a678bf72','getDocumentation','','cmii-uav-process','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026655548112896,'API_a7a60c72d8d6084bbe91152a3b456139','批量删除任务实例','批量删任务程实例','cmii-uav-process','/process/bizengine/manage/taskInst/batchDeleteTaskInst','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:58',NULL),(392026655724273664,'API_22efdcedf5b1c33ae42e24c4b3c8574f','新建接口人','新建接口人','cmii-uav-process','/process/task/config/createContactPerson','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:55',NULL),(392026655904628736,'API_00faed59b54dd5d393df5697b073d2a1','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026656508608512,'API_badf434ff9d68bed3167b2281e985f9f','新建任务-任务名称是否已存在','新建任务-任务名称是否已存在','cmii-uav-process','/process/task/manage/isExistTaskName','GET',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026656705740800,'API_4de1bec4b470d64f0533261cf217d04a','修改流程实例节点审批人接口【页面接口】','修改节点审批人接口,修改流程后续审批人','cmii-uav-process','/process/audit/modifyNodeAssignee','POST',_binary '\0',_binary '\0','2023-07-06 10:53:58',1,'2024-09-12 02:46:56',NULL),(392026656881901568,'API_27481bc15fdac3ed8bd4aaf9b0367270','查询任务类型集合','查询任务类型集合','cmii-uav-process','/client/taskdispatch/queryTaskTypeMap','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026657171308544,'API_f311697d40d6259884b4bca181888973','页面调试启动新流程','页面调试启动新流程','cmii-uav-process','/process/bizengine/manage/flowinst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026657716568064,'API_59c2e318823d1cd11b630c3935fed60f','工作流实例ID列表','工作流实例ID列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryProcInstIds','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026658161164288,'API_00e6210b02681a766e9d52b3b4030107','查询用户剩余年假天数','查询用户剩余年假天数','cmii-uav-process','/process/bizengine/testTask/leave/queryAvailableDay','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026658471542784,'API_66e293664ad8ca26a8a87bc640a175bd','批量删除流程实例','批量删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/batchDeleteProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:54',NULL),(392026658731589632,'API_6ac0ce1d6d36e7d4974f2245170da367','详情-查询关联作业列表','详情-查询关联作业列表(用于选择作业)','cmii-uav-process','/process/task/mytask/queryRelateMissions','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:56',NULL),(392026658991636480,'API_bb6f9709c5d46299110e10895eb80622','health','','cmii-uav-process','/cmii/health','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026659432038400,'API_0cf1476dfee47c99bc516adfdbf06f49','改派任务审批人接口【页面接口】','改派任务审批人接口,修改当前任务审批人','cmii-uav-process','/process/audit/modifyAssignee','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026659654336512,'API_90addc53fb012539245f320c350821cf','getDocumentation','','cmii-uav-process','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026659905994752,'API_30bf98218376680d09033fb90c863194','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/batchDeleteTaskDef','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:55',NULL),(392026660367368192,'API_b534eac3ef1568a0825fae7799621e66','接口单位列表','接口单位列表(company-scope)','cmii-uav-process','/process/task/config/queryUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:57',NULL),(392026660681940992,'API_9e5206d846fbbb230ed08eafcdfe6eee','填写请假信息','填写请假信息','cmii-uav-process','/process/bizengine/testTask/leave/fillLeaveInfo','POST',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:56',NULL),(392026660925210624,'API_07aee7fc15102bcbd91d5fbe329c44eb','转换为系统流程','转换为系统流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2SysProcess','GET',_binary '\0',_binary '\0','2023-07-06 10:53:59',1,'2024-09-12 02:46:56',NULL),(392026661151703040,'API_324cbc3392d368a7ca5105ea91eba7b8','转换为自定义任务','转换为自定义任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2CustomTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:54',NULL),(392026661327863808,'API_7b149af39d0c6d9a095694909dcde07e','创建作业与任务关联关系','创建作业与任务关联关系','cmii-uav-process','/client/taskdispatch/createRelateMission','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026661625659392,'API_4c1fe164e334b4f74359a66329dca6d0','查询任务运行状态列表','查询任务运行状态列表','cmii-uav-process','/process/bizengine/manage/taskInst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026661868929024,'API_bd48906e98f8465f993763426f36c79c','查看任务运行日志详情','查看任务运行日志详情','cmii-uav-process','/process/bizengine/manage/taskInst/getTaskLogDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026662296748032,'API_960696a7d3e59da77231e92e121b868b','我的待办-派发单位下拉列表','我的待办-派发单位下拉列表','cmii-uav-process','/process/task/mytask/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026662472908800,'API_9559cc99e0361bce3a3151a398003521','流程图展示','流程图展示','cmii-uav-process','/process/bizengine/manage/flowinst/getflowchartInfo','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026662711984128,'API_9309bfc518f9f0efe6bd31aebf038617','部署工单模型','部署工单模型型','cmii-uav-process','/client/taskdispatch/deployeeTaskorder','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:58',NULL),(392026663257243648,'API_999cad19905bb05d78aff49f33cf5602','任务运行记录列表','任务运行记录列表','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:54',NULL),(392026663928332288,'API_5502a36a40c778b245ae28c6fda8e208','获取分享码','获取分享码','cmii-uav-process','/process/task/manage/getShareCode','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026664272265216,'API_159bc7fdcddcf6e4797d6e2f3858788b','取消关联作业','取消关联作业','cmii-uav-process','/process/task/mytask/deleteRelateMission','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:54',NULL),(392026664465203200,'API_3a877970f526e0030b3010e086d4f267','查询调用组织信息(选择公司)','查询调用组织信息(选择公司)','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartTenantInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026664653946880,'API_ab7a976cd1a7d4d60097caea1b4d22d4','新建任务-任务类型下拉列表','新建任务-任务类型下拉列表','cmii-uav-process','/process/task/manage/queryTaskTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:56',NULL),(392026664968519680,'API_f58ad6540ac37ed06aa849814e36d2dd','重新提交驳回流程【驳回流程修改后重新提交接口】','业务端后台重新提交驳回流程【驳回流程修改后重新提交接口】','cmii-uav-process','/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:57',NULL),(392026665144680448,'API_4bd306322678108e17076c6f48fa5ee3','周期工作流任务-执行记录','周期工作流任务-执行记录','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowHisList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:00',1,'2024-09-12 02:46:55',NULL),(392026665371172864,'API_c18ab41099e26fb9ac52c44df14136c0','swaggerResources','','cmii-uav-process','/swagger-resources','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026665543139328,'API_6ec142d4ef3bb75c68be9a88b5474977','任务名称列表','任务名称列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026665736077312,'API_6ebd19fa69f437d23e937843a2298104','查看用户对某个流程的权限【个人关联流程】','查看用户是否具有访问某个流程的权限【个人关联流程】','cmii-uav-process','/process/power/getPermission','GET,POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026665983541248,'API_7b8131ac7fc3599b06be6bc2d6b1de5c','撤回','撤回','cmii-uav-process','/process/task/mytask/revokeTasOrder','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026666231005184,'API_6bd7bc3ccf337d76a3f5d7519a5c8797','查看工作流实例详情','查看工作流实例详情','cmii-uav-process','/process/bizengine/manage/flowinst/getFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026666407165952,'API_da39b0086c93277f985f32d6a2f37b9b','重跑(重跑流程实例中的任务)','重跑(重跑流程实例中的任务)','cmii-uav-process','/process/bizengine/manage/flowinst/reRunTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:57',NULL),(392026666910482432,'API_64439cca335e9e460770b8a05dd7ca64','流程ID&名称列表','流程ID&名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypeInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026667166334976,'API_9ca9fe3f5e324443156cbcfdb1936ac8','工作流实例列表','工作流实例列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026667397021696,'API_20cb5b6e7d41633b1bc95f83fb54b737','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/flowdef/batchDeleteProcessDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026667782897664,'API_779f024ff303fa04f91b3bf87bd09c52','发送告警短信','发送告警短信','cmii-uav-process','/process/bizengine/tools/sendWarnSms','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026668139413504,'API_1655e22e5646825c5fbd6e9c4f0a8d6e','通过分享码获取工单信息','通过分享码获取工单信息','cmii-uav-process','/public/process/task/manage/getTaskInfoByShareCode','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026668311379968,'API_e183c185836be177513c41d6246c471d','任务名称下拉列表','任务名称下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderNameList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026668495929344,'API_62b89922617c45d15aa148b25e447ea3','周期工作流任务列表','周期工作流任务列表','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:59',NULL),(392026668969885696,'API_4d03daa6fa787ec9e294503d00abb7e4','删除流程定义','删除流程定义','cmii-uav-process','/process/bizengine/manage/flowdef/deleteProcessDef','GET',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:56',NULL),(392026669141852160,'API_c803dba959c31a6a1dcd5b0db3815f55','任务转派','任务转派','cmii-uav-process','/process/task/mytask/assignTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:01',1,'2024-09-12 02:46:58',NULL),(392026669552893952,'API_48730966a2b25b53f7bb703b48b202a2','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026669737443328,'API_2cd52ff401214bba6a8bcb3c0ee37e71','转换为自定义流程','转换为自定义流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2CustomFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026669913604096,'API_c8a558c4664e0aa2c44aa4c35555355f','任务详情','任务详情','cmii-uav-process','/process/task/manage/queryTaskOrderDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026670081376256,'API_d4f43279aa43f3fbed1af1c41981a2b8','获取资源锁','获取资源锁','cmii-uav-process','/process/bizengine/tools/lock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026670370783232,'API_ec9fb300367fadba871b6a400f41531d','任务ID列表','任务ID列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026670567915520,'API_a9080f5832e65d0d77c22391c8dc4781','关联作业','关联作业','cmii-uav-process','/process/task/mytask/createRelateMission','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:59',NULL),(392026670949597184,'API_549d96a51fd03d65c5403a7119c4b462','任务操作','任务操作','cmii-uav-process','/process/task/mytask/operateTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026671247392768,'API_7a72800e4a72398506e07780bbc11d2b','微服务名列表','微服务名列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryServiceNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026671431942144,'API_2d79c7a7000e43219ef3d42df281edd2','新增任务类型','新增任务类型','cmii-uav-process','/process/task/config/addTaskInfo','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026671599714304,'API_853387ffa0d8144515d87609a27066ea','流程进度','流程进度','cmii-uav-process','/process/task/manage/queryProgress','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026671784263680,'API_c68009430dc1db2573d96872c0602437','可选接口人列表','可选接口人列表','cmii-uav-process','/process/task/config/queryOpContactPersonList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:58',NULL),(392026672249831424,'API_15bd50e9ea74e908cd6e9d785ea91a53','env','','cmii-uav-process','/cmii/env','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:56',NULL),(392026672392437760,'API_85231ad75fadd028dc3bd7bfb4341711','工作流配置列表','工作流配置列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryFlowDefList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:59',NULL),(392026672920920064,'API_12469c1465e7f5a432fe945abff7fa90','批量删除周期任务实例','批量删除周期任务实例','cmii-uav-process','/process/bizengine/manage/periodflowinst/batchDeletePeriodProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:55',NULL),(392026673206132736,'API_b00e0773a4350108b4aff52efa5dc2cd','查询任务类型列表','查询任务类型列表','cmii-uav-process','/process/task/common/queryTaskTypeList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026673382293504,'API_f72569f8e318eddf19bf06a2312862a0','经理审批请假信息','经理审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/managerApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:56',NULL),(392026673583620096,'API_b9537d878adaaca679fc4ac238750692','流程ID列表','流程ID列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:02',1,'2024-09-12 02:46:57',NULL),(392026674204377088,'API_1acf2555d6ebfc1e9e85735c3e723a63','选择用户信息','选择用户信息','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartUserInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:58',NULL),(392026674376343552,'API_4fdcf1f07680752edcbca7c4029669b9','新建工作流基础信息','新建工作流基础信息','cmii-uav-process','/process/bizengine/manage/flowdef/createFlow','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026674539921408,'API_b67caf989c8a32e44b8ccb65f1f5878d','释放资源锁','释放资源锁','cmii-uav-process','/process/bizengine/tools/unLock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026674829328384,'API_6305f358e44e33a38c3dec5fc6856c0b','查询某个任务类型关联任务列表(未完结任务)','查询某个任务类型关联任务列表','cmii-uav-process','/process/task/common/queryTaskList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026675022266368,'API_bbce007ee3dd32937395e37735db180d','queryTaskStatus','','cmii-uav-process','/client/taskdispatch/queryTaskStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026675689160704,'API_1277cd8e52f72e5a36744d05d33903bf','系统审批请假信息','系统审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/sysApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026675953401856,'API_558988e49b55fce10211c60d44cebc32','接口人列表','分页查询接口人列表','cmii-uav-process','/process/task/config/queryContactPersonList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026676200865792,'API_4ad2f392cff40a2cfe270918610ad891','查询流程实例运行状态列表','查询流程实例运行状态列表','cmii-uav-process','/process/bizengine/manage/flowinst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026676431552512,'API_94bdafc4561a0552cf36d934525dd6ea','queryTaskTypesMap','','cmii-uav-process','/client/taskdispatch/queryTaskTypesMap','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:58',NULL),(392026676788068352,'API_9428c59c4623f75b69d774d388e5a51f','ping','','cmii-uav-process','/cmii/ping','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026676968423424,'API_9b4c8009e239130dc492da82723dc1c3','活动日志列表','活动日志列表','cmii-uav-process','/process/task/manage/queryActivityLog','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026677152972800,'API_fc41db81d059e506876bbc207dff8dc1','查看流程定义详情','查看流程定义详情','cmii-uav-process','/process/bizengine/manage/flowdef/geFlowDefDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:57',NULL),(392026677324939264,'API_558d40251bfea3942739f3eaa844947f','流程名称列表','流程名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026677614346240,'API_0614844af2518673e07aeaee51772b5e','新建任务定义','新建任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/createTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:54',NULL),(392026677811478528,'API_94739fe015051a70b1d8206027c62574','修改工作流任务状态','修改工作流任务状态','cmii-uav-process','/process/bizengine/manage/periodflowinst/updatePeriodInstStatus','POST',_binary '\0',_binary '\0','2023-07-06 10:54:03',1,'2024-09-12 02:46:55',NULL),(392026677970862080,'API_f227179e3d0427c0851d0b1263f915f3','备注','备注(备注任务工单)','cmii-uav-process','/process/task/mytask/remarkTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026678126051328,'API_4c3c7e261f5d40feb0f4567886cd3737','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/getProcessIsExist','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026678398681088,'API_50c5db92bdedc354bdbd39b4b4f347a2','下级单位列表','下级单位列表(任务转派)','cmii-uav-process','/process/task/common/queryChildUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026678583230464,'API_76f8502def5fb81ba61d84ea5ca3d1ca','编辑工作流定义','编辑工作流定义','cmii-uav-process','/process/bizengine/manage/flowdef/modifyFlowDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:54',NULL),(392026678759391232,'API_cb806b5622e15dfbe269203c9ef12f5a','通过流程实例ID删除流程实例【测试使用】','通过流程实例ID删除流程实例【测试使用】','cmii-uav-process','/client/process/deleteProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026678918774784,'API_b0554c7914636666aaf2d0672458a6cd','获取某个流程类型定义信息【流程配置信息获取接口】','获取某个流程类型定义信息,业务后台查询某个流程的定义信息','cmii-uav-process','/client/process/procDef/get','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:55',NULL),(392026679203987456,'API_b17cfa9e77b14474c016864348f42f8d','停止(停止流程及任务,传递任务记录id)','停止(停止流程及任务,传递任务记录id)','cmii-uav-process','/process/bizengine/manage/flowinst/stopFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:54',NULL),(392026679388536832,'API_4d3a4baeb1ac5ae600435063a101ef59','转换为系统任务','转换为系统任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2SysTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026679715692544,'API_63a129347e547aa26eaa88996cab12f1','查看详情','查看详情','cmii-uav-process','/process/bizengine/manage/taskdef/geTaskDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:58',NULL),(392026679879270400,'API_0c81f12bd0f555fe2eb9f25f0904ab15','查询流程状态【业务系统查询流程状态接口】','查询某个流程实例状态【业务系统查询流程状态接口】','cmii-uav-process','/client/process/getProcessStatus','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026680474861568,'API_169275344ae8193f7e3f3f39001776de','接口扫描','','cmii-uav-process','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026680692965376,'API_62e21c821e3740f2918b086b71cc2d57','任务管理-派发单位下拉列表','任务管理-派发单位下拉列表','cmii-uav-process','/process/task/manage/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:56',NULL),(392026681015926784,'API_f4f6b5e0af2bae6f6e929d2ebe26e246','搜索任务实例ID','搜索任务实例ID','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskIds','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:54',NULL),(392026681204670464,'API_2c13bc5552897be9ee785e9c59eafb4a','待办任务-任务名称下拉列表','待办任务-任务名称下拉列表','cmii-uav-process','/process/task/mytask/queryMyTaskOrderNameList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026681510854656,'API_86160a1efa6f90824c0e01f7447d8649','任务类型列表','任务类型列表','cmii-uav-process','/process/task/config/queryTaskTypeList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:59',NULL),(392026681724764160,'API_cf33d53097f1c8df6caf8c970b6e5cf8','任务列表','任务列表','cmii-uav-process','/process/task/manage/queryTaskOrderList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:04',1,'2024-09-12 02:46:57',NULL),(392026682119028736,'API_eefe61309016362694f2043f29bf5f7c','启停任务类型','启停任务类型','cmii-uav-process','/process/task/config/updateTaskStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:59',NULL),(392026682353909760,'API_0f10dcdb82f9057af49482767f33d284','备注列表','备注列表','cmii-uav-process','/process/task/manage/queryRemarkList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:59',NULL),(392026682538459136,'API_efea46ab4702f2c09a4b662bb4e4ccc3','createRSA','','cmii-uav-process','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(392026682685259776,'API_69aab0216c9b217b1d957ed16ce35500','删除任务定义','删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/deleteTaskDef','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(392026682962083840,'API_10f490ebe891b22cee598c79f627cbfa','查询任务名集合','查询任务名集合','cmii-uav-process','/client/taskdispatch/queryTaskNameMap','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:56',NULL),(392026683134050304,'API_2fec2f93fde350a2d1262ab45e9060cd','启动新流程(Feign接口)','启动新流程(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:56',NULL),(392026683314405376,'API_5f619b28121b671745531c411f10d367','查询某个任务类型关联任务列表','查询某个任务类型关联任务列表','cmii-uav-process','/client/taskdispatch/queryTaskList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:55',NULL),(392026683775778816,'API_5f79d730928c488904fbd3fbb907d8fa','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/taskdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(392026684421701632,'API_c1d8b8f5139a674e8d5bce56b3ea9bf6','新建任务','新建任务','cmii-uav-process','/process/task/manage/createTask','POST',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:55',NULL),(392026685008904192,'API_4c015162fbae6652dcf6591bec42b08f','删除任务实例','删除任务实例','cmii-uav-process','/process/bizengine/manage/taskInst/deleteTaskInst','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:59',NULL),(392026685185064960,'API_ba6c8739137a398a525cb5c0ce178924','接收单位下拉列表','接收单位下拉列表','cmii-uav-process','/process/task/manage/queryAcceptUnitList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:05',1,'2024-09-12 02:46:58',NULL),(397389423609380864,'API_fb535e6a5f8446b3c70233964ca3a714','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 06:03:42',1,'2023-07-21 06:06:56',NULL),(397403890686623744,'API_70451de6f2d237212ae05cf3d3af09ad','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 07:01:11',1,'2024-11-07 09:01:44',NULL),(403509268532953088,'API_c74077f23db45b670d2c57bd1b160bba','获取所有站址名称','','cmii-uav-tower','/station/queryAll','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-01-23 07:57:53',NULL),(403509268621033472,'API_2930d5b363671b708f2572459d4caa1b','securityConfiguration','','cmii-uav-tower','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-01-23 07:57:53',NULL),(403509268704919552,'API_706c1f8f43c24efa2f935c23fd33c520','接口扫描','','cmii-uav-tower','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-01-23 07:57:53',NULL),(403509268788805632,'API_415d7a5a95b463833f9aec4196dab4a5','删除质检记录','','cmii-uav-tower','/app/task/delete/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509268881080320,'API_73c9c8d846ba0d1f4c9a4b7ed0e48e84','新增任务','','cmii-uav-tower','/task/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509268960772096,'API_0198fd9efdd703c970944757226e0bcd','修改整改记录','','cmii-uav-tower','/app/task/edit/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269040463872,'API_395c8121e66868a4ec9a7558768e9736','任务详情','','cmii-uav-tower','/app/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509269124349952,'API_343451246b698c816953c1df3bf7e182','获取所有基站','','cmii-uav-tower','/station/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269212430336,'API_c266bcc6a1030a108bb299c972cc721c','整改指派','','cmii-uav-tower','/app/task/assign','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509269308899328,'API_420b55e9a01e7d8e7e0be190d86c4c73','createRSA','','cmii-uav-tower','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509269401174016,'API_45e1bf1255999164b78f8c6e285e5a9c','getDocumentation','','cmii-uav-tower','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509269480865792,'API_f9f15d2d759370d78bd1b4b27d7e2f9c','获取我的所有任务','','cmii-uav-tower','/app/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269564751872,'API_d95d29380c0dd15ef2695dc49d68ec69','获取所有质检人员','','cmii-uav-tower','/task/queryMan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269640249344,'API_7bb8b4622c154ce1a35e506f6e4a4a33','uiConfiguration','','cmii-uav-tower','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509269728329728,'API_1eed62e68c5aa0238a654069983e5d70','修改质检记录','','cmii-uav-tower','/app/task/edit/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509269858353152,'API_e62f5d103a8aa2493d10eb9678cdec32','ping','','cmii-uav-tower','/cmii/ping','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509269938044928,'API_3cac512eccbfe61733175de852a1cd4a','获取我的整改记录','','cmii-uav-tower','/app/task/query/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270017736704,'API_08d1e7bfd25e6dc163bb596e409ae7bd','质检任务详情','','cmii-uav-tower','/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270093234176,'API_135fce405752689bb0a0fcf89de5d156','提交整改记录','','cmii-uav-tower','/app/task/add/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270172925952,'API_fc99ac31dca1e0d7e2e868dc354b672d','新增基站','','cmii-uav-tower','/station/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509270252617728,'API_63ac34f2d4d986397c0d5fc3f62c59fb','获取所有任务','','cmii-uav-tower','/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270336503808,'API_ebc11a24893b5b3d7551034b50c2f84e','编辑基站','','cmii-uav-tower','/station/edit','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270420389888,'API_59a84d2067daee031063a030ba5d318e','评论','','cmii-uav-tower','/task/comment','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509270495887360,'API_19b669a507e8eb1ab723751ad90b9bcd','整改任务详情','','cmii-uav-tower','/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509270621716480,'API_7e7d285262ddfd6de5e175f8241754b9','批量删除','传入主键','cmii-uav-tower','/station/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270697213952,'API_1252e593ebfc52448b59cd89eb6f7439','导出模板','','cmii-uav-tower','/station/exportTemp','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509270776905728,'API_317ee8f3a83a3405c3f55d54d87048bc','error','','cmii-uav-tower','/error','',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509270852403200,'API_d9ce908e367a68f422997efe7be52024','批量删除','传入主键','cmii-uav-tower','/task/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271011786752,'API_78ab9d475443f5c3fa79d36bb8bb0f19','获取我的质检记录','','cmii-uav-tower','/app/task/query/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509271091478528,'API_5871d2a5cebf299366cbec6ca838c79d','整改任务详情','','cmii-uav-tower','/app/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271234084864,'API_09afc31f49ba2a1420353d6f4d0aa39d','env','','cmii-uav-tower','/cmii/env','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:51',NULL),(403509271313776640,'API_1dca133eca446b1ba61966d7592dc86d','getDocumentation','','cmii-uav-tower','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271519297536,'API_e07a98dd6644cde4e9410c14e2de4b6f','任务详情','','cmii-uav-tower','/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509271615766528,'API_9036e925e1c9af5ac40828d0bbc09a23','质检任务详情','','cmii-uav-tower','/app/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271691264000,'API_4a29f52f1d17a77aff3f7afa930190ba','health','','cmii-uav-tower','/cmii/health','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509271775150080,'API_ddd9b90e3b5204e2d233187b91575d0f','删除整改记录','','cmii-uav-tower','/app/task/delete/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509271854841856,'API_60f55901bffbc7870b7f33e66e8fe63a','获取站址编码','','cmii-uav-tower','/station/queryCode','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:55',NULL),(403509271934533632,'API_0f4c6d80f7a4846faef0085ce842ca2b','批量导出','','cmii-uav-tower','/station/export','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509272010031104,'API_51db34eff4456809f897fabcd13cb19c','是否接受整改','','cmii-uav-tower','/app/task/accept','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509272093917184,'API_691f10062842de100da49fcde8cf18b8','swaggerResources','','cmii-uav-tower','/swagger-resources','GET',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:52',NULL),(403509272211357696,'API_a397420224a67da28a8364430f9e72b5','提交质检记录','','cmii-uav-tower','/app/task/add/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403509272303632384,'API_74093124089103f5d2669ed5dade38a4','导入','','cmii-uav-tower','/station/import','POST',_binary '\0',_binary '\0','2023-08-07 03:21:47',1,'2024-01-23 07:57:53',NULL),(403556497093296128,'API_816eeb506e5b54fb43ea92a1046ebf14','导出模板','','cmii-uav-user','/tower/user/export','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-11-06 12:16:19',NULL),(403556498750046208,'API_7d4711985b4ebadc120b8285f95dc130','用户列表查询','','cmii-uav-user','/tower/user/query','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-11-06 12:16:21',NULL),(403556499337248768,'API_b65eed5c0995ef8f97fb84f9cbe2038c','根据平台用户id获取用户详情','','cmii-uav-user','/tower/user/detail','GET',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-11-06 12:16:43',NULL),(403556500566179840,'API_94b2412b4d79336a22bc8933b3bea069','编辑用户','','cmii-uav-user','/tower/user/edit','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-11-06 12:16:22',NULL),(403556502625583104,'API_b64dcce937a6286e2a94d12a52d8ba72','删除用户','','cmii-uav-user','/tower/user/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-11-06 12:16:27',NULL),(403556504508825600,'API_c8367a0b0568ba4317e062c11c4b40da','导入用户','','cmii-uav-user','/tower/user/import','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-11-06 12:16:28',NULL),(403556508610854912,'API_9f1674c7927db03d091990f80d059736','铁塔用户注册','','cmii-uav-user','/tower/registry','POST',_binary '\0',_binary '\0','2023-08-07 06:29:29',1,'2024-11-06 12:16:32',NULL),(403556509030285312,'API_36840014be767bd1a9e9d2e6c45584a2','修改用户状态','','cmii-uav-user','/tower/user/updateStatus','POST',_binary '\0',_binary '\0','2023-08-07 06:29:29',1,'2024-11-06 12:16:32',NULL),(403556513455276032,'API_106d243cfb467c75e3a400be4b1496a1','获取所有用户','','cmii-uav-user','/tower/user/queryAll','GET',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-11-06 12:16:43',NULL),(403556516525506560,'API_eccff7373efd6a8f423c330bbd65efa2','新增分组','','cmii-uav-user','/tower/group/add','POST',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-11-06 12:16:39',NULL),(403556519297941504,'API_3760590b0cb1cad45077644dda1a59fc','删除分组','','cmii-uav-user','/tower/group/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:32',1,'2024-11-06 12:16:42',NULL),(403556519843201024,'API_c5e5023cd30f56ae42da979d135ca534','分组列表查询','','cmii-uav-user','/tower/group/query','GET',_binary '\0',_binary '\0','2023-08-07 06:29:32',1,'2024-11-06 12:16:32',NULL),(410005102455947264,'API_f223464a7cc50cd0acf9f5f76dc71302','查詢文旅景区仓库列表','','cmii-uav-device','/api/uav/house/queryHouseListForWenlv','GET',_binary '\0',_binary '\0','2023-08-25 01:33:54',1,'2024-11-07 09:01:50',NULL),(410077450110500864,'API_52a6391550538261f4538c55f116bb70','按id打码航线','','cmii-uav-grid-datasource','/coding/codingAirlineById','POST',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:25:27',NULL),(410077450580262912,'API_b7cfc8326098848ff43e813305e0a39d','根据ID删除地形数据','','cmii-uav-grid-datasource','/terrain/deleteTerrainById/{id}','DELETE',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:15:31',NULL),(410077450647371776,'API_f62ca4ccc54ee41be6f35f0bca7571c3','按id查询航线网格','','cmii-uav-grid-datasource','/coding/getAirlineById','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:25:28',NULL),(410077450882252800,'API_9e0177ac1b4c966a45aa5daccf81ff2d','设置默认地形','','cmii-uav-grid-datasource','/terrain/setDefaultTerrain/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:15:31',NULL),(410077451008081920,'API_7345f93556954bf9dae3c96c76cc89fa','获取网格编码','','cmii-uav-grid-datasource','/grid/point/getGrid','POST',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:25:28',NULL),(410077452513837056,'API_05928b9dccdc789fc96078721d011a19','检查是否有重名','','cmii-uav-grid-datasource','/terrain/checkRepeatName/{name}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:24',1,'2024-06-18 01:15:31',NULL),(410077452589334528,'API_74a3007ac1c1748d1d11816386f4ca0b','获取指定区域的外包矩形','','cmii-uav-grid-datasource','/custom/getGrid3dScope/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:24',1,'2024-06-18 01:15:30',NULL),(411119034113458176,'API_fb50f26d76871e866da1571f4a4cf807','停止视频拉流任务','停止视频拉流任务','cmii-uav-cloud-live','/client/live/open/stopDevicePullStream','GET',_binary '\0',_binary '\0','2023-08-28 03:20:16',1,'2024-11-14 02:02:41',NULL),(411540034802155520,'API_ace76fd3a2b3ab5cab9841655d0d8fd2','testDecrypt','','cmii-uav-user','/api/uav/uavTestPO/testDecrypt','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-11-06 12:16:25',NULL),(411540036354048000,'API_040650b60480a3574863bce890ebb3a1','创建单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/createCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-11-06 12:16:36',NULL),(411540037079662592,'API_e3b4643ec4d08fc9f978b12cc91111cd','按姓名手机号查询所有的用户','','cmii-uav-user','/user/queryAllByNameTel','GET',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-11-06 12:16:36',NULL),(411540039604633600,'API_27bf6b865e75a1b2d4b29d29f0b2e6fc','编辑单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/updateCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-11-06 12:16:29',NULL),(411540043652136960,'API_e1867ffdcc7c8f44f2694255779d56de','查询单个配置的详细信息','','cmii-uav-user','/api/uav/subject-config/getDetailById','GET',_binary '\0',_binary '\0','2023-08-29 07:13:12',1,'2024-11-06 12:16:30',NULL),(411540055618486272,'API_f3c37d1558da75187bc79fe68b18c05a','已经配置过的组织列表','','cmii-uav-user','/api/uav/subject-config/relatedCompanies','GET',_binary '\0',_binary '\0','2023-08-29 07:13:15',1,'2024-11-06 12:16:21',NULL),(411540056880971776,'API_5eb1a0adf4292ebc517515bf91e31284','查询单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/companyStatisticConfig','GET',_binary '\0',_binary '\0','2023-08-29 07:13:16',1,'2024-11-06 12:16:44',NULL),(411540062652334080,'API_ae46dd18ebf36e49f7ecea09822a8dcb','分页查询公司统计配置','','cmii-uav-user','/api/uav/subject-config/pageCompanyStatisticConfigs','POST',_binary '\0',_binary '\0','2023-08-29 07:13:17',1,'2024-11-06 12:16:39',NULL),(414436767879790592,'API_6ce8573fb4b28eb0db2a4ac33a4815d9','查询指定公司/机构范围内的在线无人机数量和列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineCntByCompanyId','GET',_binary '\0',_binary '\0','2023-09-06 07:03:45',1,'2024-11-07 09:01:51',NULL),(422089255560413184,'API_f3149a45616f048daf259220b2cc29c0','查询流程实例详情(Feign接口)','查询流程实例详情','cmii-uav-process','/client/bizengine/flowInst/queryProcInstDetail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:01',1,'2024-09-12 02:46:58',NULL),(422089256034369536,'API_ed51e178573028bcb61c3f9d42763492','我的待办任务(Feign接口)','我的待办任务','cmii-uav-process','/client/bizengine/flowInst/queryMyTaskList','POST',_binary '\0',_binary '\0','2023-09-27 09:52:01',1,'2024-09-12 02:46:55',NULL),(422089259775688704,'API_521dfebb8a734ab5248d51f946b1386f','我的历史流程(Feign接口)','我的历史流程','cmii-uav-process','/client/bizengine/flowInst/queryMyHisProcList','POST',_binary '\0',_binary '\0','2023-09-27 09:52:02',1,'2024-09-12 02:46:57',NULL),(422089263533785088,'API_e0dd7047b75740fcb40bbe460ac1746c','接收业务流程回调消息(Feign接口)','接收业务流程回调消息(Feign接口)','cmii-uav-process','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2023-09-27 09:52:02',1,'2024-09-12 02:46:56',NULL),(422089264783687680,'API_2e501c12cfa660df3c1a5bffdd1ff0bc','处理待办任务','处理待办任务','cmii-uav-process','/client/bizengine/flowInst/dealWaitTask','POST',_binary '\0',_binary '\0','2023-09-27 09:52:03',1,'2024-09-12 02:46:58',NULL),(422089265270226944,'API_581a8eae103a3d1ecc48196608116547','设置某个待办任务的办理人(Feign接口)','设置某个待办任务的办理人((Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:52:03',1,'2024-09-12 02:46:58',NULL),(422089269191901184,'API_6021071058d3134568d3b65c7d7aa7bd','设置某个节点待办人(Feign接口)','设置某个节点待办人(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskNodeAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:52:04',1,'2024-09-12 02:46:55',NULL),(422089273864355840,'API_5c4021d67d077255b5534713e8ae025a','查询当前任务的可执行动作(Feign接口)','查询当前任务的可执行动作(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/queryTaskPageActions','POST',_binary '\0',_binary '\0','2023-09-27 09:52:05',1,'2024-09-12 02:46:55',NULL),(422089278693310464,'API_621a751b43ecb816c48554694161f62d','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlaneTest','POST',_binary '\0',_binary '\0','2023-09-27 09:52:06',1,'2024-11-07 09:01:54',NULL),(422089283680337920,'API_431d8c15dd3897fafcaa9d0d427f59e7','根据编码更新对应的设备号','','cmii-uav-device','/api/uav/plane/UpdateSnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:07',1,'2024-11-07 09:01:49',NULL),(422089285932679168,'API_2511e978dacef70cca9ccdfbbfcfa1e9','根据编码列表查询对应的设备号','','cmii-uav-device','/api/uav/plane/querySnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-07 09:01:54',NULL),(422089305465552896,'API_361729bb14d7a6d36a0bc97d62c16495','查询公司/机构范围的机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHgrNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:12',1,'2024-11-07 09:01:46',NULL),(422089305750765568,'API_94c1fd325b05f2ae3aa81023a6b74833','查询公司/机构范围的载荷名称列表','','cmii-uav-device','/api/uav/load/queryLoadNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:13',1,'2024-11-07 09:01:54',NULL),(422089306505740288,'API_8597a6c5fabb7e6ffd0e82be7444b34b','模糊查询绑定无人机列表','','cmii-uav-device','/api/uav/hangar/queryBoundUavByCompany','GET',_binary '\0',_binary '\0','2023-09-27 09:52:13',1,'2024-11-07 09:01:51',NULL),(422089345494679552,'API_aa7338d3a944fa1fd3dad7b09316facc','获取组织额度情况(组织管理-详情-额度情况)','','cmii-uav-user','/api/admin/system/quota/getCompanyQuotaInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:22',1,'2024-11-06 12:16:42',NULL),(422089353237364736,'API_46648b88a004b4435bf256797b953520','redis-GetAndExpire','','cmii-uav-user','/api/uav/uavTestPO/testGetAndExpire','POST',_binary '\0',_binary '\0','2023-09-27 09:52:24',1,'2024-11-06 12:16:22',NULL),(422089359067447296,'API_ed6bef12ae7ea154859268ea4dfa2f7a','获取组织及子孙组织列表','','cmii-uav-user','/api/admin/system/quota/getChildrenCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:25',1,'2024-11-06 12:16:21',NULL),(422089371486781440,'API_d2b6aad1c28214428af54d51ae64194a','获取某个用户的指定平台菜单树组','','cmii-uav-user','/api/uav/resource/queryPlatformsGroupResourceTreeForUser','POST',_binary '\0',_binary '\0','2023-09-27 09:52:28',1,'2024-11-06 12:16:41',NULL),(422089374330519552,'API_047b7b5f5b6b912c98018b8e5945fb34','获取某个配额在各子组织使用情况','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfoInCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:29',1,'2024-11-06 12:16:43',NULL),(422089490923782144,'API_d0095163f3adc8cdff2659a9761b32dc','根据应用编码集合,获取集合详情','','cmii-admin-user','/client/v1/platforms/querySimpleAppsByCodes','POST',_binary '\0',_binary '\0','2023-09-27 09:52:57',1,'2024-09-09 09:14:18',NULL),(425661923425517568,'API_7f80559bf59c45500e2003734a02206d','createRSA','','cmii-app-release','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923521986560,'API_496c140d931270006608fc4ec7cb46e6','查询发布信息','','cmii-app-release','/version/info','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923593289728,'API_a1588f4475007d3b2740918f2828bc63','分页条件查询版本列表','','cmii-app-release','/version/version_info_list','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923719118848,'API_f1b7d301ae0f8d425c6adde56969a1bd','查询发布状态的版本详情','','cmii-app-release','/version/pub_version_info_detail/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923782033408,'API_09a62589d10c79e4a74bb29ca428d3a6','swaggerResources','','cmii-app-release','/swagger-resources','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923853336576,'API_a83afb5f3f628abd1af5e46b304dde82','删除版本','','cmii-app-release','/version/version_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661923920445440,'API_966aaa19d5a4dc4df3e70ec3c82f68c4','更新发布标识','','cmii-app-release','/version/version_pub_info','PUT',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924008525824,'API_a52fe2b6f08d41f4dc4dc48a04be1ae9','新建版本','','cmii-app-release','/version/version_info','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924079828992,'API_a36b89b6c1320e56439a7a20b8ca0676','health','','cmii-app-release','/cmii/health','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924142743552,'API_99fb8418b53bc350edf763255a3bd510','uiConfiguration','','cmii-app-release','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924209852416,'API_495f5880e2eccc89d560948c48a09b46','获取版本查询条件列表','','cmii-app-release','/version/version_info_condition_list/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924276961280,'API_f8f4ae88fa75afd56267cde6b7dca76a','删除环境识别码','','cmii-app-release','/env_code/env_code_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661924339875840,'API_86b64c2b3a303565113224d96de8c4ee','getDocumentation','','cmii-app-release','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924415373312,'API_e7c4e910df1dd0ea458f3bc9f31ef3bc','更新环境识别码','','cmii-app-release','/env_code/env_code_info','PUT',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924520230912,'API_a1a48a54927e4313d2c5b63dbcd002d6','env','','cmii-app-release','/cmii/env','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661924616699904,'API_7bf68c2e30734848818c4ecbd41d18e6','新建环境识别码','','cmii-app-release','/env_code/env_code_info','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661924688003072,'API_2dec51f8971e3df957ad7aa41c584242','ping','','cmii-app-release','/cmii/ping','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924776083456,'API_06c0fe70654170e5e9ff13c1c3ee8c34','error','','cmii-app-release','/error','',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661924994187264,'API_44129cebbcf2841b4bf039dd8ba50cec','分页条件查询环境识别码列表','','cmii-app-release','/env_code/env_code_info_list','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925065490432,'API_727057a04db0406dfb28604429a744c1','securityConfiguration','','cmii-app-release','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925178736640,'API_b32dbb106fb41ec57490f916950087fa','获取环境识别码查询条件列表','','cmii-app-release','/env_code/env_code_info_condition_list','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661925245845504,'API_3cb691e8e7aedd2a72b6aee74a75ca5c','接口扫描','','cmii-app-release','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925317148672,'API_fd7106ed46c5e4f7be35cfe58732c8d3','getDocumentation','','cmii-app-release','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:12',NULL),(425661925388451840,'API_d85837149d345af473da714f8ab5affb','查询版本详情','','cmii-app-release','/version/version_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661925451366400,'API_26ff55f09c7532c9a3f06f18f7a9cb05','更新版本','','cmii-app-release','/version/version_info','PUT',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(425661925522669568,'API_cd0b0037f3e746615ce1309d23a8ec55','查询环境识别码详情','','cmii-app-release','/env_code/env_code_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 06:28:31',1,'2024-01-30 06:27:13',NULL),(429334606118387712,'API_415b4cf64ca90d148ac2731206ead54f','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/video/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-10-17 09:42:27',1,'2024-11-14 02:02:38',NULL),(434375280166830080,'API_91f82ae6c89317f8df56df0728a42ebf','指标考核-查询冲突列表','','cmii-uav-grid-datasource','/fightPlan/getIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:15:31',NULL),(434375281685168128,'API_e77fa4f440478b56fe5bc665f45f65c7','指标考核-飞行计划冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:15:31',NULL),(436914898620514304,'API_0474d50943fc00bdd34f3fe58a9f78a4','createRSA','','cmii-uav-alarm','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-07 07:43:49',1,'2024-10-22 12:07:19',NULL),(437667203896705024,'API_80d73ec6aad120c8c75530ad9ef7e2a0','视频数据回放-获取视频MP4列表','视频数据回放-获取视频MP4列表','cmii-uav-cloud-live','/video/playback/videoMP4List','POST',_binary '\0',_binary '\0','2023-11-09 09:33:13',1,'2024-11-14 02:02:43',NULL),(437677638947569664,'API_a4e1342ccb993859aea9214541f58d37','合成任务删除','合成任务删除','cmii-uav-cloud-live','/client/video/delete','POST',_binary '\0',_binary '\0','2023-11-09 10:14:41',1,'2024-11-14 02:02:39',NULL),(440115521070694400,'API_d6684750fcb631ea568e7e4b22ccc3b0','导入模板','','cmii-uav-tower','/task/exportTemp','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-01-23 07:57:53',NULL),(440115521313964032,'API_fb9c7cd82c909434806243fcfd609b4d','获取任务导出的进度','','cmii-uav-tower','/task/getExportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-01-23 07:57:52',NULL),(440115521825669120,'API_249ad875c3e09a7c9ab4f935adeab03d','获取导入的进度','','cmii-uav-tower','/station/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-01-23 07:57:53',NULL),(440115522911993856,'API_ed4881f58193ac7d83f01d82f6682257','批量导出','','cmii-uav-tower','/task/export','POST',_binary '\0',_binary '\0','2023-11-16 03:41:58',1,'2024-01-23 07:57:53',NULL),(440115523834740736,'API_2fac1d880847842e0e9c7aa052f023ae','导入','','cmii-uav-tower','/task/import','POST',_binary '\0',_binary '\0','2023-11-16 03:41:58',1,'2024-01-23 07:57:51',NULL),(440115523918626816,'API_9cf943b411919316e05cd6c414339147','获取导入的进度','','cmii-uav-tower','/task/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:58',1,'2024-01-23 07:57:55',NULL),(441648518693519360,'API_59db257ef928880cfc4e85b43feb70e1','更新状态','','cmii-uav-tower','/task/updateStatus','GET',_binary '\0',_binary '\0','2023-11-20 09:13:32',1,'2024-01-23 07:57:52',NULL),(444912369387307008,'API_e6c5ccd8853726730af93146a67fd45b','createRSA','','cmii-uav-developer','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-29 09:22:55',1,'2024-11-06 11:22:08',NULL),(444912419052060672,'API_4bb442278f884ecc85ed77efcb8d525d','视频数据回放-删除视频片段','视频数据回放-批量视频视频片段','cmii-uav-cloud-live','/video/playback/deleteOneSegment','POST',_binary '\0',_binary '\0','2023-11-29 09:23:07',1,'2024-11-14 02:02:38',NULL),(445269941303246848,'API_48241d454d248bf54c9266859e146b9f','查询短信发送状态【短信接口】','查询短信发送状态【短信接口】','cmii-uav-notice','/notice/sms/querySmsSendStatus','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941408104448,'API_b3cdb884b2c0854754eca7a34e5c2061','health','','cmii-uav-notice','/cmii/health','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941500379136,'API_7627b374809b8ed666c748b840d882b3','查询短信模板内容','查询短信模板内容','cmii-uav-notice','/notice/sms/queryTplContent','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941596848128,'API_6a4727c1496387561e4778626710e7bd','修改邮箱网关','修改邮箱网关','cmii-uav-notice','/mail/provider/update','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941701705728,'API_cc861af1002bea88a0270e3ccb53b2cc','修改消息模板','修改消息模板','cmii-uav-notice','/msgtpl/update','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941802369024,'API_973fce5234ef7aa00de1bb29d7351545','多机Http主动推送【内部接口】','多机Http主动推送【内部接口】','cmii-uav-notice','/personal/userwebmsg/httpSend','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941890449408,'API_a9bd72a2e167bc2d8af8cb9a0966059e','上架通知','上架通知','cmii-uav-notice','/bulletin/admin/online','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269941974335488,'API_8f0b20d3c2c0d8ad9c4afff0c644b4ec','更新站内信为已读','更新站内信为已读','cmii-uav-notice','/personal/userwebmsg/updateRead','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942074998784,'API_cac7a84c29e01473084c0e9d11009e0c','getDocumentation','','cmii-uav-notice','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942167273472,'API_f691022d21fc192f65f91f48432dc74d','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUseInfo','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942255353856,'API_2a43ca1cc995b795cfdd2e7cba89608c','接口签名工具【内部程序接口】','接口签名工具','cmii-uav-notice','/open/sms/getSign','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942335045632,'API_923a86fc1f5ce5c386f896cef5a34a99','发送站内信接口【内部程序接口】','发送站内信接口','cmii-uav-notice','/webmsg/sendWebMsg','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942439903232,'API_0f9f75e5abbea5488509dfd74140ab95','发送邮件【内部程序接口】','发送邮,不支持附件','cmii-uav-notice','/email/sendEmail','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942653812736,'API_b5bff21546371e7426f95bfb4e1b1a23','下架通知','下架通知','cmii-uav-notice','/bulletin/admin/offline','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269942779641856,'API_42d7da4f397a31d8bd8622b58c38df3e','用户查看个人消息设置信息','用户查看个人消息设置信息','cmii-uav-notice','/personal/userStatus/get','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943157129216,'API_43fb0ce190a6972aecb863eb4d249abb','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUserInfo','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943291346944,'API_68da79aee6254de6ba77db6ad1688251','发送短信开放接口【开放接口】','发送短信开放接口【开放接口】','cmii-uav-notice','/public/open/sms/send','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943379427328,'API_6e21d3a801467be33a7327c5c30e64eb','uiConfiguration','','cmii-uav-notice','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:43',NULL),(445269943463313408,'API_d4f074a123280040e3da73e2ede6e7ee','查看邮箱网关列表','查看邮箱网关列表','cmii-uav-notice','/mail/provider/list','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943652057088,'API_97ce015c363342714b4f248a0bdc85b6','查询用户站内信列表','查询用户站内信列表','cmii-uav-notice','/personal/userwebmsg/list','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943765303296,'API_3067cae2057121922fb5f2b67c811968','securityConfiguration','','cmii-uav-notice','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269943853383680,'API_def9844866db8ce6faef02b9ed874205','删除邮箱网关','删除邮箱网关','cmii-uav-notice','/mail/provider/delete','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:43',NULL),(445269943941464064,'API_6e238fa282808b748a0cc9dec5b3cb49','发送邮件,推荐使用该接口【内部程序接口】','发送邮件,可根据用户设置策略发送,支持附件','cmii-uav-notice','/email/sendUserEmail','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944025350144,'API_505f74032fcab8963aa2b02e25395acf','新增邮箱网关','新增邮箱网关','cmii-uav-notice','/mail/provider/add','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944134402048,'API_c3430ae24d03166f2c26ba36660de815','通知列表','通知列表','cmii-uav-notice','/bulletin/admin/queryBulletinPage','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:43',NULL),(445269944230871040,'API_7943ac6919bf8b7f18bf4c832eae1649','createRSA','','cmii-uav-notice','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944314757120,'API_cc988446e9676c38d481736e556de32e','用户修改消息设置','用户修改消息设置','cmii-uav-notice','/personal/userStatus/update','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944402837504,'API_e7d64a1e371ebe9e834b153b0f1b6c0b','查询未读站内信总数','查询未读站内信总数','cmii-uav-notice','/personal/userwebmsg/getTotal','POST',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944503500800,'API_6e5bd5ed66e139b9464550648a7480bf','删除消息模板','删除消息模板','cmii-uav-notice','/msgtpl/delete','GET',_binary '\0',_binary '\0','2023-11-30 09:03:47',1,'2024-02-04 04:42:44',NULL),(445269944604164096,'API_72f9819b95e5482bf342349d824b1c96','swaggerResources','','cmii-uav-notice','/swagger-resources','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269944688050176,'API_e6fddf458f19859d797d65972f36fc53','查询日志列表','查询日志列表','cmii-uav-notice','/msglog/list','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269944776130560,'API_d33da0df7d2281092f6735455254cdbb','查询看登录页公告信息','查询看登录页公告信息','cmii-uav-notice','/public/bulletin/queryLoginBulletins','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269944872599552,'API_76ccd83e540977796274ccdc37a36772','接收状态报告【短信接口】','接收状态报告','cmii-uav-notice','/public/sms/accept/statusReport','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269944964874240,'API_bf9c83d74209483dac5770204991d19c','新建通知','新建通知','cmii-uav-notice','/bulletin/admin/createBulletin','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945065537536,'API_7cf3a40b0f02ffb5df6c587f00721111','查看用户站内信详情','查看用户站内信详情','cmii-uav-notice','/personal/userwebmsg/get','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945149423616,'API_defe8dd2542f2caf6c5e6f4a8f3d240e','新增消息模板','新增消息模板','cmii-uav-notice','/msgtpl/add','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945237504000,'API_946ccc2d8fafc74ed3317ca6ca03f7c8','env','','cmii-uav-notice','/cmii/env','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945329778688,'API_0f715385bd1f51237af25d9d2f9bd3d5','查看消息模板列表','查看消息模板列表','cmii-uav-notice','/msgtpl/list','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945426247680,'API_d9e8775ed3f730d505d5c328a40c4ba9','接口扫描','','cmii-uav-notice','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945518522368,'API_21db4e1c2727093499291c13cbb09e86','ping','','cmii-uav-notice','/cmii/ping','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:43',NULL),(445269945614991360,'API_817d1565ed94920ad8d29cbe0ddf9d72','error','','cmii-uav-notice','/error','',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945711460352,'API_247945e0a93fa017daba83ace1ece570','发送短信接口【内部程序接口】','发送短信接口','cmii-uav-notice','/sms/sendSms','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945807929344,'API_d218c65f6f3c93d7181de2ff5ab00fb9','查看邮箱网关详情','查看邮箱网关详情','cmii-uav-notice','/mail/provider/get','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269945891815424,'API_c166dca9ed3acb6eeac9f2b1f4ea2bfa','getDocumentation','','cmii-uav-notice','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946093142016,'API_06c3bb33f9318bbff134b2eb6f69b9ab','发送短信接口2【内部程序接口】','发送短信接口,提供公司ID','cmii-uav-notice','/sms/send','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946181222400,'API_d88293c84e0408e944447f15af0802fa','查看消息模板详情','查看消息模板详情','cmii-uav-notice','/msgtpl/get','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946265108480,'API_4a0bef68c91e2ff62a2b36ec9480261d','发送邮件【内部程序接口】','发送邮,支持附件','cmii-uav-notice','/email/sendAttachEmail','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946361577472,'API_44ceb32076998c560afa6c58006e7398','编辑通知','编辑通知','cmii-uav-notice','/bulletin/admin/editBulletin','POST',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(445269946529349632,'API_fc4c820a89a440dd275d502d45864159','通知详情','通知详情','cmii-uav-notice','/bulletin/admin/getBulletin','GET',_binary '\0',_binary '\0','2023-11-30 09:03:48',1,'2024-02-04 04:42:44',NULL),(475352046755905536,'API_dc4f1ffd2565af16084e0a4ba6cbdb0b','createRSA','','cmii-uav-logger','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-02-21 09:19:20',1,'2024-11-06 12:17:10',NULL),(475352083542573056,'API_39a968804d4dc4bb243589caaf540fe1','无人机的视频流地址列表信息查询','','cmii-uav-device','/api/uav/plane/querySteamAddrByUavCode','GET',_binary '\0',_binary '\0','2024-02-21 09:19:28',1,'2024-11-07 09:01:53',NULL),(475352088152113152,'API_12ee30f7ec76fa4f5269c8e2e777d661','在线接收utmiss传输的数据','接收utmiss传输的数据','cmii-uav-device','/api/uav/utmiss/import','POST',_binary '\0',_binary '\0','2024-02-21 09:19:29',1,'2024-11-07 09:01:58',NULL),(475352089880166400,'API_0aab2f541a99763e199f3c8b09ad9f10','查詢查询所有在线(不区分公司)无人机列表','','cmii-uav-device','/api/uav/plane/queryAllOnlineUavList','GET',_binary '\0',_binary '\0','2024-02-21 09:19:30',1,'2024-11-07 09:01:53',NULL),(475352091968929792,'API_8a016e6c502c1e52c4b54736f93ae363','允许导入数据','允许导入数据','cmii-uav-device','/api/uav/utmiss/allow/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:30',1,'2024-11-07 09:01:57',NULL),(475352094745559040,'API_743eb529f9e8d7a9ec38c1dea6629d61','从MongoDB获取数据','','cmii-uav-device','/api/uav/utmiss/getUtmissFromMongoDB','GET',_binary '\0',_binary '\0','2024-02-21 09:19:31',1,'2024-11-07 09:01:51',NULL),(475352113561206784,'API_36079bab24b9cd7e4db8aedd82709c96','查询公司/机构范围的机库列表','','cmii-uav-device','/api/uav/hangar/queryHgrByCompanyId','GET',_binary '\0',_binary '\0','2024-02-21 09:19:35',1,'2024-11-07 09:01:48',NULL),(475352115020824576,'API_c2fecca5a1fcc6f7dcb42ff3a484b4d5','重载业务参数','','cmii-uav-device','/api/uav/plane/initSecParameter','POST',_binary '\0',_binary '\0','2024-02-21 09:19:36',1,'2024-11-07 09:01:53',NULL),(475352119970103296,'API_cc9f79e12f624ba4985ae4af1f17cefd','上传文件到Redis','','cmii-uav-device','/api/uav/utmiss/utmissUploadToRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:37',1,'2024-11-07 09:01:49',NULL),(475352120112709632,'API_ec3ca622720071176a3e8aa77a199427','统计UTMISS的数据','统计UTMISS的数据','cmii-uav-device','/api/uav/utmiss/utmissCnt','POST',_binary '\0',_binary '\0','2024-02-21 09:19:37',1,'2024-11-07 09:01:56',NULL),(475352121786236928,'API_8974ee82aaa4130ebae0977bcbf1fe31','上传文件到MongoDB','','cmii-uav-device','/api/uav/utmiss/utmissUploadToMongoDB','POST',_binary '\0',_binary '\0','2024-02-21 09:19:37',1,'2024-11-07 09:01:51',NULL),(475352127205277696,'API_17e82f04f875610d5a7764e010f6199b','从Redis获取UTMISS历史数据','','cmii-uav-device','/api/uav/utmiss/getUtmissHistoryFromRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:39',1,'2024-11-07 09:01:57',NULL),(475352127373049856,'API_c90a732d36204decf638594a3ff66357','禁止导入数据','禁止导入数据','cmii-uav-device','/api/uav/utmiss/forbid/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:39',1,'2024-11-07 09:01:47',NULL),(475352166522683392,'API_f6c70a8734f570edbc56fe74d6fd463b','更新配额模板','','cmii-uav-user','/quota/template/update','POST',_binary '\0',_binary '\0','2024-02-21 09:19:48',1,'2024-11-06 12:16:24',NULL),(475352169966206976,'API_3f9dfa4350247574a5b752fa1f27970c','根据id查询模板详情','','cmii-uav-user','/quota/template/detail','GET',_binary '\0',_binary '\0','2024-02-21 09:19:49',1,'2024-11-06 12:16:34',NULL),(475352173270269952,'API_daceb80a6f633f9c9f65653a1e9e1ca4','OMS完结待办任务','OMS完结待办任务','cmii-uav-process','/process/bizengine/manage/flowinst/completeTask','POST',_binary '\0',_binary '\0','2024-02-21 09:19:50',1,'2024-09-12 02:46:58',NULL),(475352182633005056,'API_d9873a8533f737c920b7458f519cdd57','游客列表','','cmii-uav-user','/api/uav/user/visitors','POST',_binary '\0',_binary '\0','2024-02-21 09:19:52',1,'2024-11-06 12:16:20',NULL),(475352191210356736,'API_6eeb1de83411bedf7a18052c6d4f5fa7','查询配额列表','','cmii-uav-user','/quota/template/listQuotaTypes','GET',_binary '\0',_binary '\0','2024-02-21 09:19:54',1,'2024-11-06 12:16:40',NULL),(475352209145200640,'API_ed9a9fd2df6424847b28e246a2f15b0f','列表查询','','cmii-uav-user','/quota/template/list','GET',_binary '\0',_binary '\0','2024-02-21 09:19:58',1,'2024-11-06 12:16:34',NULL),(475352211145883648,'API_8bd696a38af23e8d025fb9ce09131a28','创建配额模板','','cmii-uav-user','/quota/template/create','POST',_binary '\0',_binary '\0','2024-02-21 09:19:59',1,'2024-11-06 12:16:39',NULL),(475352216548147200,'API_7132224081bad97b07d8e8db28962d13','分页查询','','cmii-uav-user','/quota/template/queryPage','POST',_binary '\0',_binary '\0','2024-02-21 09:20:00',1,'2024-11-06 12:16:40',NULL),(475721665302233088,'API_e9d307a6f3e6529e1fa10ad9275ca92b','xxljobtext','','cmii-uav-device','/api/uav/utmiss/renewIndex','POST',_binary '\0',_binary '\0','2024-02-22 09:48:03',1,NULL,NULL),(475721665516142592,'API_c8abde6fece6a8c4ee8eca71bec97cae','删除Redis文件','','cmii-uav-device','/api/uav/utmiss/DeleteSimulateupload','GET',_binary '\0',_binary '\0','2024-02-22 09:48:04',1,NULL,NULL),(480060697082593280,'API_1888cac04e9e89c6297eaa69a3204876','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/AlarmIndexCount','GET',_binary '\0',_binary '\0','2024-03-05 09:09:49',1,'2024-03-05 09:09:58',NULL),(485819489968455680,'API_ec6b0e75e9b26a06646df1ab187f4c0d','初始化MongoDB','','cmii-uav-device','/api/uav/utmiss/initCollection','POST',_binary '\0',_binary '\0','2024-03-21 06:33:12',1,'2024-11-07 09:01:55',NULL),(488802206054088704,'API_002efb5279972803f12a46adafbdacbf','刷新数据字典参数','','cmii-admin-data','/api/admin/model/plane/initParameter','POST',_binary '\0',_binary '\0','2024-03-29 12:05:27',1,'2024-11-06 12:17:15',NULL),(490096542628970496,'API_3d5c11cc49cd8b34576282884e10c6ea','查询Redis有效数据','','cmii-uav-device','/api/uav/plane/getValDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:41',1,'2024-11-07 09:01:56',NULL),(490096543568494592,'API_09780129288cd9e0bc64f806b9694a3f','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavListByHngList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:42',1,'2024-11-07 09:01:45',NULL),(490096552292646912,'API_16f0a4bfbc2241eb670dd0a35540243f','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngListByUavList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:44',1,'2024-11-07 09:01:48',NULL),(490096557116096512,'API_2ff17773c003f845c871fdad610e03d8','查询Redis数据','','cmii-uav-device','/api/uav/plane/getDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:45',1,'2024-11-07 09:01:51',NULL),(492816263212171264,'API_28916f5fc274799c502f01a77ee9aa15','查询公司范围下的在线设备信息,供飞行监视使用','','cmii-uav-device','/api/device/surveillance/query_online_device_info','GET',_binary '\0',_binary '\0','2024-04-09 13:55:53',1,'2024-11-07 09:01:46',NULL),(492816268656377856,'API_b64b3d79d799159c4df8323f15c0cb00','查询公司/机构范围的复亚的在线且支持备降的机库列表','','cmii-uav-device','/api/uav/hangar/OnlineAndAltLandFoiaHgrList','GET',_binary '\0',_binary '\0','2024-04-09 13:55:55',1,'2024-11-07 09:01:51',NULL),(499552658620940288,'API_69af176eb55fc0a08e615e60fa73ec52','getImageCode','','cmii-uav-user','/api/uav/solution/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-11-06 12:16:35',NULL),(499552659950534656,'API_7e3474dee092054823eae022bb37e29e','delete','','cmii-uav-user','/api/uav/dynamic/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-11-06 12:16:22',NULL),(499552660244135936,'API_1e24f1367b80430ff750232e0eeaa54d','编辑名单','','cmii-uav-user','/api/uav/dynamic/editPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-11-06 12:16:43',NULL),(499552662135767040,'API_ec6a5a95ea95fdb5b3233863bc1fdb0f','编辑一个动态','','cmii-uav-user','/api/uav/dynamic/edit','POST',_binary '\0',_binary '\0','2024-04-28 04:03:56',1,'2024-11-06 12:16:20',NULL),(499552665470238720,'API_13466d8529da471067a0232d9d89981a','查询解决方案类型','','cmii-uav-user','/api/uav/solution/querySolutionType','POST',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-11-06 12:16:33',NULL),(499552668213313536,'API_acd6d406e0edbc0cc9c465733b69df1c','getImageCode','','cmii-uav-user','/api/uav/feedback/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-11-06 12:16:34',NULL),(499552669299638272,'API_4ff7fa2d154f49e153cfccf5e8f13c7c','获取用户分组名单','','cmii-uav-user','/api/uav/dynamic/queryAll','GET',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:36',NULL),(499552671019302912,'API_9320e1d2f70024f78547bf0b192c617f','sendRegisUavTelephoneVerifyCode','','cmii-uav-user','/api/uav/solution/sendRegisUavTelephone','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:19',NULL),(499552671560368128,'API_f91c522e105782518efce2e01e15f2e3','删除','','cmii-uav-user','/api/uav/feedback/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:19',NULL),(499552672722190336,'API_95eb3ded1a73e88c62d288a838c93c76','添加一个问题反馈','','cmii-uav-user','/api/uav/solution/addFeed','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:42',NULL),(499552673003208704,'API_0c87c68fc66fe21230208c1ad9c245b7','删除','','cmii-uav-user','/api/uav/solution/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:35',NULL),(499552673930149888,'API_9e8ed6f7c0e93abe33fab436e802b237','deletePeople','','cmii-uav-user','/api/uav/dynamic/deletePeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:41',NULL),(499552674190196736,'API_a3e9ad3e2aa0f019fe433894e77cde79','添加一个动态','','cmii-uav-user','/api/uav/dynamic/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:39',NULL),(499552674634792960,'API_a63978af4c0d155fdda5b50f9452e571','添加一个解决方案申请','','cmii-uav-user','/api/uav/solution/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:44',NULL),(499552674815148032,'API_3d91293b3df38da86d1a8e52dbb49faa','查询所有动态','','cmii-uav-user','/api/uav/dynamic/queryAllDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:42',NULL),(499552676945854464,'API_c2885c313cdbfc1912b18932b7225c66','查询解决方案','','cmii-uav-user','/api/uav/solution/querySolutions','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:33',NULL),(499552678107676672,'API_78cae55bde1a1a2af55c6aecc16f73a3','查询名单','','cmii-uav-user','/api/uav/dynamic/queryPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-11-06 12:16:27',NULL),(499552680515207168,'API_e6a0e7a0b59b2c5bb33cf7879849b1e8','查看信息','','cmii-uav-user','/api/uav/feedback/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-11-06 12:16:40',NULL),(499552680708145152,'API_710dbf2924a9dec5a4c0dd445a823383','查询动态','','cmii-uav-user','/api/uav/dynamic/queryDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-11-06 12:16:35',NULL),(499552681538617344,'API_d5a8dc07e5ad3b681f3b9e85e50b062c','导出查询结果','','cmii-uav-user','/api/uav/solution/export','POST',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-11-06 12:16:30',NULL),(499552681932881920,'API_2484faa0c56d9c5a0ba75d12f5cf4438','checkExist','','cmii-uav-user','/api/uav/dynamic/checkExist','GET',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-11-06 12:16:44',NULL),(499552683103092736,'API_b409c11776d8f135f796fc601af292de','查看详情','','cmii-uav-user','/api/uav/dynamic/detail','GET',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-11-06 12:16:35',NULL),(499552687637135360,'API_6567297316be22439a299a6dba48e364','查看信息','','cmii-uav-user','/api/uav/solution/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:02',1,'2024-11-06 12:16:31',NULL),(503266861784104960,'API_333e3e3f61a2fce410046633a2a80dd5','游客用户注册','','cmii-suav-supervision','/registry','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:35',NULL),(503266862056734720,'API_cc43a57031866396dbc337f85e46201d','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:31',NULL),(503266862270644224,'API_fd0f0cf45d0bae343e99f46009c9a463','根据区域id查询区域列表','根据区域id查询区域列表','cmii-suav-supervision','/civilMilitary/areaPlan/queryByHistoryIds','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:31',NULL),(503266862530691072,'API_3bfae6b5ec9ee6f9f969279d7daef5ca','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/app/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:35',NULL),(503266862736211968,'API_f274be45b391f6ffd8d5d2f7e025f7b3','新增区域','','cmii-suav-supervision','/areaPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:35',NULL),(503266862874624000,'API_de485d999f4874d868daa311c9210903','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:31',NULL),(503266863063367680,'API_3fe8fcc7e5c8474b127a8a4a822a9b84','用户登出','','cmii-suav-supervision','/logout','POST',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:35',NULL),(503266863260499968,'API_6d47e40ec829a32e76a08bb2b12045ac','env','','cmii-suav-supervision','/cmii/env','GET',_binary '\0',_binary '\0','2024-05-08 10:02:50',1,'2024-11-06 12:18:33',NULL),(503266863604432896,'API_f5c44436b52dc958ab0b0a3dd30ef84f','检测登陆验证码','','cmii-suav-supervision','/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:35',NULL),(503266863843508224,'API_f069d5680083a52e909c5186e0d997ab','更新用户名称','','cmii-suav-supervision','/profile/updateName','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:37',NULL),(503266864078389248,'API_beaa94e36a60af0d81e1efa0144f9a70','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/app/flightPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:34',NULL),(503266864392962048,'API_fb6075fa37a5e0469ddba87ac99d8184','查询区域下面子区域列表','','cmii-suav-supervision','/zydAirspace/subarea/list','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:33',NULL),(503266864665591808,'API_44c208ecd306e996277917090d6db40f','更新用户头像','','cmii-suav-supervision','/profile/updateAvatar','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:30',NULL),(503266864934027264,'API_5dbb319621d7ced2d3b459eb46cbc3ed','验证校验码','','cmii-suav-supervision','/checkToken','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:34',NULL),(503266865231822848,'API_b0ed9007d197f1d0fdaf482a71841ee4','删除监管用户','','cmii-suav-supervision','/supervisor/user/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:34',NULL),(503266865466703872,'API_b951953b73e61e8ea318ed057d559b79','根据code获取用户Token','根据code获取用户Token','cmii-suav-supervision','/permission/getToken','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:36',NULL),(503266865689001984,'API_a71bb5c893d5b05dffac9cf1ef847e5e','更具图片id获取图片code','','cmii-suav-supervision','/supervisor/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:35',NULL),(503266865902911488,'API_57a113ba3e0f837aab672c191d8fa44f','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/user/disable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:33',NULL),(503266866146181120,'API_aa175197db34b859cf7b21e0e82590d7','批量获取查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetails.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:34',NULL),(503266866431393792,'API_fbe61a5b5b5cc94212caa6cd4bcddc5d','监管用户登录','监管用户登录','cmii-suav-supervision','/supervisor/login','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:34',NULL),(503266866653691904,'API_139f9b6382a146553f718049ec275f8c','游客用户登录','游客用户登录','cmii-suav-supervision','/login','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:33',NULL),(503266866951487488,'API_4b187a6cba53f7a007a811c06a14819f','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/app/flightPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:36',NULL),(503266867232505856,'API_fc4e5577228b3e5a70c8e435bfab67c2','修改监管用户信息','','cmii-suav-supervision','/supervisor/update','POST',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:36',NULL),(503266867513524224,'API_a3b807460228cc9c19b4a1fa28f29c3a','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:51',1,'2024-11-06 12:18:32',NULL),(503266867870040064,'API_a30127d11255958512f2f86cbad23bb0','根据code获取用户军民融合token','根据code获取用户军民融合token','cmii-suav-supervision','/permission/getCivilMilitaryToken','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:33',NULL),(503266868163641344,'API_78e86c7b545ada097bfcbb860800e8ff','提交申请','','cmii-suav-supervision','/flightPlan/submit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:32',NULL),(503266868448854016,'API_d814d729fb7585caa3f3a1b98b80fb64','删除区域','传入区域申请主键','cmii-suav-supervision','/areaPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:36',NULL),(503266868713095168,'API_6849451376c268b42de7e00e58ceb084','ping','','cmii-suav-supervision','/cmii/ping','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:33',NULL),(503266868960559104,'API_218034a999216813471b2f75584af9b6','查询所有机场','','cmii-suav-supervision','/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:35',NULL),(503266869166080000,'API_613eecfd9253532520098b2f8550b2df','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:33',NULL),(503266869321269248,'API_de5f42db49b0d865b0aeb5f8874fce45','获取ip经纬度','','cmii-suav-supervision','/app/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:37',NULL),(503266869518401536,'API_5721a50d39dc51ee5d1038ba7368176a','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/app/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:36',NULL),(503266869799419904,'API_a226e36beb0a2947695d07f37c61c6bc','执行更新邮箱','','cmii-suav-supervision','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:31',NULL),(503266870042689536,'API_66e1874d7b98d239fd09465fbf50797a','更新用户名称','','cmii-suav-supervision','/supervisor/profile/updateName','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:31',NULL),(503266870306930688,'API_34a2f05d6ecd91656e9f5cda769612a0','分页查询','','cmii-suav-supervision','/flightPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:29',NULL),(503266870659252224,'API_c3b928b0401d9d8ecfb6b59d7a0e3977','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/flightPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:29',NULL),(503266870902521856,'API_6b7567ceb891a1055219639aa8ffd3b6','编辑修改空域申请','传入空域申请json字符串,需要有主键','cmii-suav-supervision','/zydAirspace/editAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:29',NULL),(503266871074488320,'API_bf39f7edfcf6d195c5a83ee13ee58c07','手机验证码登录','','cmii-suav-supervision','/code/login','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:29',NULL),(503266871347118080,'API_be4ef9c9fa5972aece54fdf47c7cd68d','获取所有计划名称','','cmii-suav-supervision','/flightPlan/getFlightPlanNames','GET',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:37',NULL),(503266871657496576,'API_9a0c18a8a8d3777c9ef3567fdd0110ea','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/areaPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:52',1,'2024-11-06 12:18:34',NULL),(503266871904960512,'API_512e3aba0d2f55c1e8a63de62a452fa9','更具图片id获取图片code','','cmii-suav-supervision','/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:37',NULL),(503266872097898496,'API_2e2433cfb06e1f643fc90534a7351bef','统计飞行计划','','cmii-suav-supervision','/flightPlan/count','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:33',NULL),(503266872328585216,'API_396488c3c94c7beb85a7404412f1f5ca','获取用户详细信息','','cmii-suav-supervision','/supervisor/user/getUserDetail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:30',NULL),(503266872580243456,'API_20cf9154c913bad4361a04698f2b4bab','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/flightPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:35',NULL),(503266872915787776,'API_a1a8667eaf5a7363a25739c2caf5e53c','新增空域申请和时间段','','cmii-suav-supervision','/zydAirspace/saveAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:31',NULL),(503266873175834624,'API_a81eadbcceb1e1c753cdef23bf82bdcc','提交申请','','cmii-suav-supervision','/app/flightPlan/submit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:34',NULL),(503266873423298560,'API_f4daceebc64feceb452db713e5f05ca2','查询现在所有公司有效的区域-包括飞行计划成功的','查询现在所有公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentValid','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:32',NULL),(503266873687539712,'API_f789a7f9391b844d4bf06c97b3ca20f2','审批飞行计划','','cmii-suav-supervision','/flightPlan/audit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:32',NULL),(503266873939197952,'API_f2e4e3172ea9d65bd8592cd016849989','查询所有状态列表','','cmii-suav-supervision','/zydAirspace/queryAllStat.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:31',NULL),(503266874199244800,'API_4766ec583c0588243cf6ac1588ce797e','批量删除空域申请和时间段-n','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/deleteAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:32',NULL),(503266874463485952,'API_1ea89600aae8fc4c25dcc375b80fc077','发送绑定手机号验证码','','cmii-suav-supervision','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:34',NULL),(503266874698366976,'API_24cfad60cff276799452cc532ad48585','判断区域名称是否重复','','cmii-suav-supervision','/civilMilitary/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:34',NULL),(503266875042299904,'API_588d350c3d64e2ec50bbad8ecf910937','error','','cmii-suav-supervision','/error','',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:37',NULL),(503266875272986624,'API_0ca946fcc0b80154891022033d088f12','添加用户账号','','cmii-suav-supervision','/profile/addAccount','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:34',NULL),(503266875533033472,'API_2c822f473adee2133c554741b48ec5f9','强制删除空域(测试调用)','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/forceDeleteAirspace.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:30',NULL),(503266875772108800,'API_99f1d094722c119b90f28dc4b0aacda7','游客认证申请同意','','cmii-suav-supervision','/supervisor/user/authAccess','POST',_binary '\0',_binary '\0','2024-05-08 10:02:53',1,'2024-11-06 12:18:32',NULL),(503266876082487296,'API_0d53a330385a97cfca14ac906661615d','查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:30',NULL),(503266876380282880,'API_6d0eab90bbd8ec2ae2a722e21a1c1d7e','申请更新邮箱','','cmii-suav-supervision','/profile/updateEmail','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:30',NULL),(503266876732604416,'API_bb50ad65d3c9f5dc6ca39919ce93203f','判断空域名称是否重复','','cmii-suav-supervision','/zydAirspace/judgeAirsNameRep.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:33',NULL),(503266877013622784,'API_9a817fa14bb7e5f51a69d1655a9b3308','重置密码,验证旧密码','','cmii-suav-supervision','/profile/resetPwd','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:31',NULL),(503266877344972800,'API_d672d3cf96c75e51736b5abc9dca42ee','获取机场区域以及禁飞区','','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:30',NULL),(503266877579853824,'API_25342285caaef784bef54becf99be880','根据token获取用户基本信息','','cmii-suav-supervision','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:32',NULL),(503266877831512064,'API_a80a322ee402abfd497995de9b521d36','批量查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/details','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:29',NULL),(503266878162862080,'API_ba635969d5856156769365246476f27d','getDocumentation','','cmii-suav-supervision','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:30',NULL),(503266878578098176,'API_cac0bbcc3d6c5d50f5b09ecf085f24b0','securityConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:30',NULL),(503266878947196928,'API_85df2c8534344ed605af130a15e7acd8','分页查询','','cmii-suav-supervision','/app/flightPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:31',NULL),(503266879228215296,'API_ff478bb1e86c8a09f21bad13ddc70023','uiConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:29',NULL),(503266879538593792,'API_bcfa1ca4a7e003ebd519892d7f58c6f4','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/disable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:35',NULL),(503266879798640640,'API_e2f5d58ca78ac8b129bbe9d8225eb54b','查询飞行计划详情(回填)','传入区域主键','cmii-suav-supervision','/flightPlan/detail/backfill','GET',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:29',NULL),(503266880150962176,'API_4ea09400a61b86b6e825f14ba6d69e30','批量导出模板','','cmii-suav-supervision','/zydAirspace/downloadDoc.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:54',1,'2024-11-06 12:18:31',NULL),(503266880360677376,'API_aa985e09c31e4e428a70f3f5420077d5','验证绑定手机号验证码','','cmii-suav-supervision','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:32',NULL),(503266880608141312,'API_4a889c8d9229c7d41cd5fbef1733738e','检测找回密码验证码','','cmii-suav-supervision','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:31',NULL),(503266880922714112,'API_6c37efaea2e802359a0b46cf054d2247','申报飞行计划','','cmii-suav-supervision','/flightPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:30',NULL),(503266881153400832,'API_e3debdef97e3a91be8c7b589276bfdb4','发送注册验证码','','cmii-suav-supervision','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:32',NULL),(503266881354727424,'API_e91ba6f811542c75bc149692fbec571e','获取用户详细信息(数据回填专用)','','cmii-suav-supervision','/supervisor/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:36',NULL),(503266881564442624,'API_c76c3c428e4ed32f01a04a6ce85cab49','分页查询','','cmii-suav-supervision','/areaPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:35',NULL),(503266881799323648,'API_cbd150b1864fef46b3039bbb14346e76','createRSA','','cmii-suav-supervision','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:30',NULL),(503266882030010368,'API_c87b29587893d91169b9585dd577028d','判断飞行计划名称是否重复','','cmii-suav-supervision','/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:29',NULL),(503266882239725568,'API_63b893bb1922aeb76d517e954352ff21','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/user/enable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:36',NULL),(503266882533326848,'API_9c94fef7fd453ad19df4ec86d59544e2','增加监管用户','','cmii-suav-supervision','/supervisor/add','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:32',NULL),(503266882751430656,'API_e2ce37ab81f0b149ea08d3857cf96713','按条件分页查询空域申请和时间段','','cmii-suav-supervision','/zydAirspace/queryByConditons.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:34',NULL),(503266883011477504,'API_f75ef00424f78b4273c9fb5d943f41f9','发送找回密码验证码','','cmii-suav-supervision','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:32',NULL),(503266883271524352,'API_133c9d96c71c4a1e0eac936cd8aa4b81','模糊查询空域名称列表','','cmii-suav-supervision','/zydAirspace/queryAreaName.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:35',NULL),(503266883523182592,'API_beaa6d055f59d68b459662ae0889b796','验证解绑手机号验证码','','cmii-suav-supervision','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:32',NULL),(503266883766452224,'API_9bce110b79fea5952fde30aca4d130d4','查询省份信息列表','','cmii-suav-supervision','/zydAirspace/province/list','GET',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:29',NULL),(503266884022304768,'API_2aef5ebc84cc0564f0eab120ff450e7e','新增区域','','cmii-suav-supervision','/civilMilitary/areaPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:30',NULL),(503266884257185792,'API_17e849aa95a21501891e9f89668c1f24','监管用户列表','','cmii-suav-supervision','/supervisor/findPage','POST',_binary '\0',_binary '\0','2024-05-08 10:02:55',1,'2024-11-06 12:18:36',NULL),(503266884508844032,'API_e43e252fe18e33bae70774a90fd3b847','检测注册验证码','','cmii-suav-supervision','/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:30',NULL),(503266884752113664,'API_c9d38aa3f77178450e2356ef4b7be7cb','强制删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/deleteForce','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:34',NULL),(503266885003771904,'API_64d5e0077c373488dc566eb1a4647f45','health','','cmii-suav-supervision','/cmii/health','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:37',NULL),(503266885284790272,'API_595d7d29899f86b0230d63e573fff06a','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:34',NULL),(503266885565808640,'API_6c32a4d692529a8bd36ce4323f5c2b8f','getDocumentation','','cmii-suav-supervision','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:37',NULL),(503266885817466880,'API_975441f44b90576602168cc69691ac80','下载审批文件','','cmii-suav-supervision','/zydAirspace/getAppliFile.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:31',NULL),(503266886119456768,'API_f957d1588853fcbef978cf6713ff7308','发送登陆验证码','','cmii-suav-supervision','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:32',NULL),(503266886392086528,'API_b27a1b04d95f936fec102d05dca1a2f2','根据token获取用户基本信息','','cmii-suav-supervision','/supervisor/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:31',NULL),(503266886706659328,'API_60bb537898c26548c549780e2781a8f7','获取空域申请和空域限制所有数据(仅包含政府监管空域)','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimitLocal.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:29',NULL),(503266887084146688,'API_1b0e9fd6096c56a71b64f135757bf348','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/enable','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:32',NULL),(503266887398719488,'API_87ebd94fdf0ab87347b1f58a82fd38d3','获取图片验证码(图片)','','cmii-suav-supervision','/supervisor/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:35',NULL),(503266887801372672,'API_0db3446721b5fb89a5bd54571ed34051','发送解绑手机号验证码','','cmii-suav-supervision','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:29',NULL),(503266888124334080,'API_565375536d3767e9c6dfef29fd18441b','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/app/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:36',NULL),(503266888422129664,'API_da04c9d67235436d8577c5cb5cc8ed4c','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:56',1,'2024-11-06 12:18:30',NULL),(503266888728313856,'API_259da35f5a4f644aa1ba9fa8743bd4fd','查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:35',NULL),(503266889260990464,'API_3ee085d0ad4227df73cf0620336dae24','获取图片验证码(图片)','','cmii-suav-supervision','/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:29',NULL),(503266889562980352,'API_8463d03ffec886bcaeda1ab7cc7e525a','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/civilMilitary/areaPlan/edit','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:29',NULL),(503266889802055680,'API_8ff7cdd07e40b39948e521bb5d3d5b28','批量查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/details','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:35',NULL),(503266890057908224,'API_74c65819bdf9be30aad8c6e6c2fb63cf','查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:31',NULL),(503266890603167744,'API_db24b1e3aa5b1707a8c5b4aa797c8615','认证申请','','cmii-suav-supervision','/profile/authApplying','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:29',NULL),(503266891072929792,'API_b25d89aff393d393619441dd519f5ec1','查询现在某个公司有效的区域-包括飞行计划成功的','查询现在某个公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentCompanyValid','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:37',NULL),(503266891379113984,'API_80c3f20e24dfcfe8ca7c100a3af819b1','获取ip经纬度','','cmii-suav-supervision','/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:31',NULL),(503266891672715264,'API_94293bba2bec3138ef69bb641255faa4','swaggerResources','','cmii-suav-supervision','/swagger-resources','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:30',NULL),(503266892046008320,'API_38165104c0377341bbf83dda38d05c42','根据公司id获取飞行计划','','cmii-suav-supervision','/flightPlan/getByUavCode','GET',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:32',NULL),(503266892436078592,'API_c5bd4ac70995607e5051f066e1257257','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/resetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:34',NULL),(503266892738068480,'API_2ad4fc1c609019c3f4c28198392a3f5a','找回密码','','cmii-suav-supervision','/profile/findPwd','POST',_binary '\0',_binary '\0','2024-05-08 10:02:57',1,'2024-11-06 12:18:30',NULL),(503266893014892544,'API_084f04040c61093a6c24768847650baf','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/civilMilitary/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:34',NULL),(503266893304299520,'API_dca2ed8e853203fff9d5e3268c4e8ba1','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:37',NULL),(503266893585317888,'API_d644e1c9a80fe1ac5a6697902794e32b','申报飞行计划','','cmii-suav-supervision','/app/flightPlan/save','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:31',NULL),(503266893891502080,'API_a602624584a3a214310c2e10577c6bbd','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/user/resetPassword','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:37',NULL),(503266894185103360,'API_1a7237617f1bf56ce287d8a06bbe4993','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/app/flightPlan/detail','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:31',NULL),(503266894436761600,'API_787edcb3bd52a47c6bf392d4013cb725','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:36',NULL),(503266894671642624,'API_6649121fea2dda521df4237f14bf0cad','规划带状航线','','cmii-suav-supervision','/app/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:36',NULL),(503266894956855296,'API_6ccf466fa0d07e8fa045a7fe8ec86dbc','用户登出','','cmii-suav-supervision','/supervisor/logout','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:34',NULL),(503266895237873664,'API_a863d8197f08a3873927c0a1552087c9','删除监管用户','','cmii-suav-supervision','/supervisor/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:33',NULL),(503266895502114816,'API_e6f48213fb4b279fb7569b90c915b7b8','游客用户列表','','cmii-suav-supervision','/supervisor/user/findPage','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:36',NULL),(503266895820881920,'API_ab43e21c1dded0e5f0fbd055f7b3954a','查询所有配置列表','','cmii-suav-supervision','/zydAirspace/queryAllConfig.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:33',NULL),(503266896068345856,'API_bdc4ff25321301b0b87e8c947513a76e','查询空域详情-n(数据回填专用)','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do/fallBack','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:30',NULL),(503266896353558528,'API_e57e273f386c9972cab7ab6c390dbd60','判断区域名称是否重复','','cmii-suav-supervision','/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:33',NULL),(503266896592633856,'API_554fd3826aeb0680465248b3fef7f018','规划带状航线','','cmii-suav-supervision','/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2024-05-08 10:02:58',1,'2024-11-06 12:18:30',NULL),(503266897150476288,'API_db80e967db9509f1bc912036aa8c5d05','手动提交终审','','cmii-suav-supervision','/zydAirspace/manualAudit.do','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:35',NULL),(503266897431494656,'API_11a73dc8b76daededb65c2e4f8948893','查询所有机场','','cmii-suav-supervision','/app/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:33',NULL),(503266897666375680,'API_883ab85260a738f27f8bf1eb20612498','删除区域','传入区域申请主键','cmii-suav-supervision','/civilMilitary/areaPlan/delete','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:33',NULL),(503266897972559872,'API_578626ba41dc19e11d09258c5407f896','接口扫描','','cmii-suav-supervision','/api/scanner/scan','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:35',NULL),(503266898220023808,'API_f90a896ed4127a489772cf6fe81e1958','重新绑定手机','','cmii-suav-supervision','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:33',NULL),(503266898484264960,'API_0a830e8aed93b95dcc1eb608aff4171b','分页查询','','cmii-suav-supervision','/civilMilitary/areaPlan/query','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:35',NULL),(503266898794643456,'API_e91ca6c38d721b7e6f74a656e86c0cec','判断飞行计划名称是否重复','','cmii-suav-supervision','/app/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:33',NULL),(503266899054690304,'API_5ad1bce0f2915d307c3d9083ddc2d9c1','验证校验码','','cmii-suav-supervision','/supervisor/checkToken','POST',_binary '\0',_binary '\0','2024-05-08 10:02:59',1,'2024-11-06 12:18:35',NULL),(528985562218233856,'API_9c36819beb2b811da6fcbbbd52b9e30d','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/cam/queryCamCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:46',1,'2024-11-07 09:01:50',NULL),(528985563002568704,'API_9417f3f0f1f8561c3cace109b462dd5d','是否存储批量修改','','cmii-uav-device','/api/uav/load/cam/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:46',1,'2024-11-07 09:01:57',NULL),(528985563946287104,'API_628a811f079baa456196dbab75ea5e4d','模糊查询本公司机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHngCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:47',1,'2024-11-07 09:01:44',NULL),(528985572716576768,'API_1faf25df1faabd41f19f26738670a3cf','模糊查询包括子公司的载荷名称列表','','cmii-uav-device','/api/uav/load/cam/queryCamName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:49',1,'2024-11-07 09:01:52',NULL),(528985580702531584,'API_d99d1f966d6d75d2be4be65d7f13b88d','分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryHngPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:51',1,'2024-11-07 09:01:54',NULL),(528985580895469568,'API_1f263ce73f00b6292804c0cda06ff4d9','是否存储批量修改','','cmii-uav-device','/api/uav/hangar/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:51',1,'2024-11-07 09:01:54',NULL),(528985587748962304,'API_e8114a3b7c4b3a6d0dd766ea46c220a5','分页查询摄像头载荷信息','','cmii-uav-device','/api/uav/load/cam/queryCamPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:52',1,'2024-11-07 09:01:57',NULL),(528985595588116480,'API_ef77b8da8ee48a98679033e3d78702a6','模糊查询本公司机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHngName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:54',1,'2024-11-07 09:01:55',NULL),(528985605629280256,'API_87fd458e94e1b3c3f98a5ec4e506226e','配置租户的时间','','cmii-admin-user','/tenant/config/setTenantToken','POST',_binary '\0',_binary '\0','2024-07-18 09:19:56',1,'2024-09-09 09:14:19',NULL),(528985623060807680,'API_14b43ce67002a575086eb0c7eb1bb524','创建token','','cmii-admin-user','/tenant/config/createToken','POST',_binary '\0',_binary '\0','2024-07-18 09:20:01',1,'2024-09-09 09:14:19',NULL),(528986468944052224,'API_c38cfbddc92b9fb9615b5282794e9bcc','视频文件数据来源-获取载荷名称列表','视频文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-11-14 02:02:37',NULL),(528986469371871232,'API_98c1122b10415f0dec6189333760f547','ts文件数据来源-获取记录列表','ts文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoSegmentList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-11-14 02:02:42',NULL),(528986472601485312,'API_44cb968928087b3f967a70520ff59363','ts文件数据来源-回放视频封面','ts文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getTsSegmentCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:23',1,'2024-11-14 02:02:43',NULL),(528986475596218368,'API_907518793367054d69d3150a4ac8f826','视频文件数据来源-回放视频封面','视频文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getMergeVideoFileCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-11-14 02:02:36',NULL),(528986475990482944,'API_ec28da84b512c2cbbc3e2cdbaed2e0a4','ts文件数据来源-播放M3U8文件','ts文件数据来源-播放M3U8文件','cmii-uav-cloud-live','/video/storage/manage/playM3u8','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-11-14 02:02:37',NULL),(528986477152305152,'API_feef712791bf923d14c608e01932550e','视频文件数据来源-获取视频文件记录列表','视频文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-11-14 02:02:37',NULL),(528986477756284928,'API_68464c2e0f1c8eacca6720c4bbe4a726','删除单个合成视频文件','删除单个合成视频文件','cmii-uav-cloud-live','/client/video/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-11-14 02:02:37',NULL),(528986478288961536,'API_4addc921e4951c0df245aab31f587d73','删除合成视频文件','删除合成视频文件','cmii-uav-cloud-live','/client/video/deleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:41',NULL),(528986478838415360,'API_331b402b2e51817b8d98d84bbae519cb','ts文件数据来源-删除视频片段','ts文件数据来源-删除视频片段','cmii-uav-cloud-live','/video/storage/manage/deleteOneSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:38',NULL),(528986479035547648,'API_92c8cd586c9d981a0e0623d340f18d2f','更新设备视频保存状态','更新设备视频保存状态','cmii-uav-cloud-live','/client/live/stream/updateDeviceVideoStatus','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:43',NULL),(528986480105095168,'API_018859c01d82db3a53dce1c26960d158','视频文件登记','视频文件登记','cmii-uav-cloud-live','/client/video/registerVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:38',NULL),(528986482005114880,'API_0bf71a6bb6a12e61a6c15155f94027bb','ts文件数据来源-获取载荷ID列表','ts文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:38',NULL),(528986482244190208,'API_94f0aedf71430a12b6854a3844f20288','视频文件数据来源-触发1条老数据修复(调试)','视频文件数据来源-触发1条老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairOneVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:43',NULL),(528986483481509888,'API_bfe6e994058029cb7f91a84d9654e8a9','视频文件数据来源-删除视频文件','视频文件数据来源-删除视频文件','cmii-uav-cloud-live','/video/storage/manage/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:37',NULL),(528986484299399168,'API_fd7d2db05a5cdecc4295e465a9c3cbe8','ts文件数据来源-视频下载','ts文件数据来源-视频下载','cmii-uav-cloud-live','/video/storage/manage/download','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:39',NULL),(528986484525891584,'API_e183e5a0cea8c2b6faf23532924f7464','ts文件数据来源-获取载荷名称列表','ts文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:37',NULL),(528986488929910784,'API_7d103b4d606da0093251d04eb272586a','ts文件数据来源-触发老数据文件大小字段修复(调试)','ts文件数据来源-触发老数据文件大小字段修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairTsSegmentFileSize','GET',_binary '\0',_binary '\0','2024-07-18 09:23:27',1,'2024-11-14 02:02:40',NULL),(528986491236777984,'API_de25611ea380c123af7a1ad22ea516b5','ts文件数据来源-批量删除视频片段','ts文件数据来源-批量删除视频片段','cmii-uav-cloud-live','/video/storage/manage/batchDeleteSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-11-14 02:02:37',NULL),(528986494487363584,'API_4698e84e7aa12ccecf4bcc61213840ce','视频文件数据来源-触发部分老数据修复(调试)','视频文件数据来源-触发部分老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairSomeVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-11-14 02:02:40',NULL),(528986498174156800,'API_2f7d245e3a311dad0dc361f0ddc80c3c','视频文件数据来源-获取载荷ID列表','视频文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:29',1,'2024-11-14 02:02:44',NULL),(528986500388749312,'API_6ea8bbd872a1a8a93b2296474efdbb1b','ts文件数据来源-通过id获取回放Token','ts文件数据来源-通过id获取回放Token','cmii-uav-cloud-live','/video/storage/manage/createToken','GET',_binary '\0',_binary '\0','2024-07-18 09:23:30',1,'2024-11-14 02:02:38',NULL),(528986510648016896,'API_ca5c86faab31a2ba429413bde4747319','视频文件数据来源-批量删除视频文件','视频文件数据来源-批量删除视频文件','cmii-uav-cloud-live','/video/storage/manage/batchDeleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:32',1,'2024-11-14 02:02:42',NULL),(541672701421158400,'API_b5a7f14153b7231270f84bdead91dac4','根据机库名称模糊查询机库信息【机库名称和机库编号】','','cmii-uav-device','/api/uav/hangar/queryHangarListByName','POST',_binary '\0',_binary '\0','2024-08-22 09:33:56',1,'2024-11-07 09:01:50',NULL),(543082696135802880,'API_22b970a07bc7f9b858d0c3ec9fc19ebc','同步公司无人机到监管平台-用于接口测试调用','','cmii-uav-device','/api/uav/plane/syncCompanyUAV','GET',_binary '\0',_binary '\0','2024-08-26 06:56:45',1,'2024-11-07 09:01:44',NULL),(543085397621080064,'API_9948c5fb3ae6171384f848a639d85260','应用信息接口统计查询','','cmii-uav-device','/open/interface/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085397742714880,'API_a997f0624ff6072968c99157ea4a5529','手机验证码登录','','cmii-uav-device','/code/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085397893709824,'API_667852302f77fa35e495e2817cbb171f','hello服务接口','hello','cmii-uav-device','/oapi/test/test2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085397981790208,'API_b3454b99b39819b7162228f7f4c472b5','查询所有的开发者','','cmii-uav-device','/api/uav/developer/queryAll','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398069870592,'API_6a47476f83ae858ba6316011ab7edde3','删除开发者','','cmii-uav-device','/admin/developer/deleteDeveloper','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398229254144,'API_5c0d18ee137d4c9583aad7ceccf15893','上传航线航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398476718080,'API_084c7c2455fda374a82e8bbdab2dda6d','生成接口版本的语言示例代码','','cmii-uav-device','/admin/interfaceVersion/buildLanguageSample','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398543826944,'API_43afe3fcf0ea9b7bd472182946fe67cf','查询应用日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppLog','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398602547200,'API_65abfaf6ea956fe99501de108f032df9','更新开发者的接口额度','','cmii-uav-device','/admin/appInterface/updateDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398682238976,'API_964ddda94b02c71f20ef2d7f65b5f141','批量删除实体','','cmii-uav-device','/admin/model/deleteBatch','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398770319360,'API_e3a6636fffe617d5cb77ee97c09dec68','结束火警信息','','cmii-uav-device','/oapi/mission/caseinfo/newcase/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398841622528,'API_5e88132853982d0096d42c51453b571c','过期接口查询','','cmii-uav-device','/open/appInterface/expire','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085398967451648,'API_5158b08718bc40c8aec2f55cf1d8ba28','查询无人机分布情况','查询无人机分布情况','cmii-uav-device','/oapi/device/uav/plane/area/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399055532032,'API_249926bac448fc996928b30d903a79b2','发送找回密码验证码','','cmii-uav-device','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399143612416,'API_5ec9f1123a2ce15ec6712d015449deef','获取公司','获取公司','cmii-uav-device','/oapi/test/company_get','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399202332672,'API_0f4f05991657fe4123357a2d1b075990','找回密码','','cmii-uav-device','/profile/findPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399256858624,'API_7ecadfd54c5a99c0a7af577477fdb18b','开发者状态设置','','cmii-uav-device','/admin/developer/updateDeveloperStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399302995968,'API_7df3d8f845a62481658467566aa78a76','单个应用日志查询','','cmii-uav-device','/open/appInterfaceLog/queryById/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399449796608,'API_eb5384f8fe480bdb7db33bd69cd7c698','hello服务接口','hello','cmii-uav-device','/oapi/test/hello2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399516905472,'API_06f99998367e82c923ea4369de701750','获取接口类型列表','','cmii-uav-device','/admin/interface/getInfTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399785340928,'API_90cdfb0f6d907b78b7c568d502f21262','超额接口查询','','cmii-uav-device','/open/appInterface/exceed','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085399873421312,'API_215139419d712ca0567579b61c32421e','查询开发者应用的接口列表','','cmii-uav-device','/admin/appInterface/queryDeveloperAppInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400011833344,'API_0ee1db5e3a71ef9bf55d059915617a7b','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400158633984,'API_e3d56348564e21431b37396391acf92c','测试的一个接口','','cmii-uav-device','/open/developer/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400242520064,'API_1547ffe370a00802b6bdd73197ec55dc','根据参数的请求类型,获取参数支持的属性类型','','cmii-uav-device','/admin/params/getTypesByParamType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400355766272,'API_cfd3c4e00d7e8e050f669f9bc718a2bb','模糊查詢有效的公司列表','','cmii-uav-device','/admin/app/queryCompanyList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400418680832,'API_be962a97ca8f557646ed5408639926d4','发送注册验证码','','cmii-uav-device','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL,NULL),(543085400494178304,'API_d291d930c2c5c58e5673e2e9a2f51655','账号手机号密码登录','','cmii-uav-device','/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400557092864,'API_23b7e96bf71e175a28462a6ac809a72f','公司配置','','cmii-uav-device','/admin/app/updateAppCompany','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400620007424,'API_57f9358a01b1441985d52921ce078163','应用日志查询','','cmii-uav-device','/open/appInterfaceLog/query/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400737447936,'API_dd79c51369092a266474139a145fa500','删除一个接口','','cmii-uav-device','/api/uav/developer/resource/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400796168192,'API_617a542e7348e0aca4666f17fa0bcf5a','更新开放的接口','','cmii-uav-device','/admin/interface/updateOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400896831488,'API_1956520eab23482aac79172610537e70','通过应用ID查询接口信息','','cmii-uav-device','/open/interface/queryBy/appId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085400968134656,'API_0a8af1319e8a427f411b1fa17a09c7db','检测找回密码验证码','','cmii-uav-device','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401018466304,'API_d55e68dda9d4833d4c8caf9a29bd4e22','查询支持的文件类型','','cmii-uav-device','/admin/params/getFileTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401077186560,'API_4330bd915aea75efff5a0ddcaffd5231','获取接口的示例语言','','cmii-uav-device','/admin/interface/querySampleLanguages','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401165266944,'API_f7e55608958c5b4f5ee37c5972944d04','接口状态设置','','cmii-uav-device','/admin/interface/v2/updateInfStat','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401219792896,'API_d6fae1606aa882168a06b75b20c6707d','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/batchUploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401324650496,'API_3851413d9e7715457b3c22bae556e89c','申请更新邮箱','','cmii-uav-device','/profile/updateEmail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401395953664,'API_1f4d61fddddb8c628c1e25c913669529','获取单个接口文档','','cmii-uav-device','/docs/getDoc','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401811189760,'API_08a69a85e4030ba975f338a46e03df30','接口版本状态设置','','cmii-uav-device','/admin/interface/updateInfOpenStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401865715712,'API_9322d1fcfbb3d492cae05b5e91e095e1','获取限制类型列表','','cmii-uav-device','/admin/interface/getLimitTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085401932824576,'API_f92c106b9fcd8d0e4678fd1e428af613','查询内部接口标识','','cmii-uav-device','/admin/interface/v2/infCodeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402012516352,'API_182ad6f50aa498e7232b57f96b2b39de','配置接口','','cmii-uav-device','/admin/params/configInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402184482816,'API_4cbfe07c0c6d3317e3a7da21f32b7981','添加公司','添加公司秒速','cmii-uav-device','/oapi/test/company_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402255785984,'API_b6c94ebb46a0ca789c544ae91af45c49','应用中心重置秘钥','','cmii-uav-device','/open/app/reset/appSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402318700544,'API_45af1b3851683703872fabf203301f4f','list文档','','cmii-uav-device','/docs/docList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402369032192,'API_8e1caaaf63c47de0420d8f350b477f8d','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402415169536,'API_94833b0c5a16a4aadc8db39f19804138','查询接口默认额度','','cmii-uav-device','/admin/interface/queryInterfaceQuota','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402469695488,'API_61eeb6a7981ff281a90ae07d183fcdaf','接口日志查询','','cmii-uav-device','/open/appInterfaceLog/query/interfaceLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402545192960,'API_6c7fd1ff0f0cf24883c098d236f9ed66','注册一个开发者','','cmii-uav-device','/registry-for-test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402654244864,'API_aea6d823f58266b1e0d9e7a96b52a381','删除(测试接口),不暴露','','cmii-uav-device','/profile/test/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402733936640,'API_57eb200269325e96ecd3d49e69696c92','查询公司下所有无人机7日内作业记录','查询公司下所有无人机7日内作业记录','cmii-uav-device','/oapi/surveillance/fly/history/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402826211328,'API_290b6f946d70c7bc7f96323eaf3afb1e','获取请求结果列表','','cmii-uav-device','/admin/appInterfaceLog/getReqResultList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402889125888,'API_59fd6d5d10bbc98f7fb6faaa3e14cf6d','获取版本列表','','cmii-uav-device','/admin/interface/getVerFilterOpenInf','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085402952040448,'API_2e8d996d698e153301438ee698b4e627','公司所属无人机分页查询','公司所属无人机分页查询','cmii-uav-device','/oapi/device/uav/page/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403010760704,'API_1f417c4d49600c9483c26fc44cc8654f','检测登录图片验证码','','cmii-uav-device','/verifyCode/checkImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403069480960,'API_04bcf6e5551f577342654d27996ec763','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-device','/oapi/surveillance/querySinglePlaneTrack/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403115618304,'API_3138ed368dbf92beb2904cc3e6c81354','查询支持的接口','','cmii-uav-device','/open/interface/querySupported','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403157561344,'API_dbaa1a31266af22e41348daa7bf42ee0','上传多架次无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403233058816,'API_0478002407683222df2b890bdcf7c577','查询公司下所有无人机7日内作业记录','','cmii-uav-device','/oapi/surveillance/queryHistoryTotal/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403291779072,'API_cbce3c99940cb8c36137c28d815e055a','应用中心编辑应用','','cmii-uav-device','/open/app/edit/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403354693632,'API_1a6e3330342f300451a2ca19b6fb2513','查询开发者应用详情','','cmii-uav-device','/admin/app/queryDeveloperAppDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403400830976,'API_d5b644994336696a14e561410caaf16b','删除实体','','cmii-uav-device','/admin/model/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403509882880,'API_68f3605a5fb03293cc8147b5d25bc597','创建密钥','','cmii-uav-device','/api/uav/developer/createSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403564408832,'API_ca231a76d69dd9151e05cf6dbad453fc','查询公司/所属机构获取无人机数量','','cmii-uav-device','/oapi/uav/queryUavCountByCompanyId/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403623129088,'API_57aaa50997a152d2ab2b53af43cf0ac1','发送解绑手机号验证码','','cmii-uav-device','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403677655040,'API_419fddfa8659237fe5d0a6015f193483','添加或更新多语言示例代码','','cmii-uav-device','/admin/interface/mergeSampleCodes','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403723792384,'API_88cdad8f212950e48e1bce48e8e0f3af','查询脱敏规则','','cmii-uav-device','/admin/params/getBlurRuleList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403769929728,'API_be1c37552263d701e4f4b1e1ac019c53','hello服务接口','hello','cmii-uav-device','/oapi/test/hello','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403845427200,'API_58a2231d464838aac14ca5325102967a','复亚作业上传文件','复亚作业上传文件','cmii-uav-device','/oapi/mission/oss/foiaUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403899953152,'API_a0d06c67145fd7c5347108a33a935d36','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/uploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085403983839232,'API_86bb29e0a43436c7775ffd7397ce66fa','获取接口所属列表','','cmii-uav-device','/admin/interface/getInfGroupList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404139028480,'API_6624b2af0d7d230e55fde0589b97249a','查询单个飞机目前最新航迹数据','','cmii-uav-device','/oapi/surveillance/queryRealTimeInfo/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404206137344,'API_4044b84853cf230b988b4216b86373b2','更新实体','','cmii-uav-device','/admin/model/update','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404260663296,'API_6a941df64620f5947280e8376401a1e4','删除一个开发者','','cmii-uav-device','/api/uav/developer/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404306800640,'API_f4a88485785f26734cc7769cf0557fd4','查询平台基础指标接口','查询平台基础指标接口','cmii-uav-device','/oapi/basic/plat/bizInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404352937984,'API_0adc74bc22df384c8cbc7860d39bacf0','查询开发者应用接口日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppInfLogDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404424241152,'API_6cd3022a793bfbb30583fcb6857025f5','通过接口ID查询接口版本信息','','cmii-uav-device','/open/interface/queryVersion/interfaceId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404491350016,'API_ff7c0d84e8d20076bea4dd8d16d624d6','查询开发者应用列表','','cmii-uav-device','/admin/app/queryDeveloperAppList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404587819008,'API_03cd27281db8be928edf69ce4764ae08','查询开发者详情','','cmii-uav-device','/admin/developer/queryDeveloperDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL,NULL),(543085404638150656,'API_b428c978248f4a35dc65b982ca3060b3','应用中心删除应用','','cmii-uav-device','/open/app/delete/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404713648128,'API_a52e2468f4666472e5ed608e73498fda','查询应用接口列表','','cmii-uav-device','/admin/appInterface/queryAppInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404835282944,'API_107fe2718678b900c70e70706b7168b7','发送绑定手机号验证码','','cmii-uav-device','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404919169024,'API_574b9ba5c6559cc5452fb297020bc4ce','应用中心主页查询','','cmii-uav-device','/open/app/homePage','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085404990472192,'API_a6eca5f755ce833a55eb230a7d277793','查询接口服务信息','','cmii-uav-device','/admin/interface/queryInfServie','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405082746880,'API_077fd0ba780ca05a543a225aaa355cf6','验证token','','cmii-uav-device','/checkToken','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405166632960,'API_dd0a4000f702b4537ba4106e1d0751fc','通过设备号查询公司ID接口','通过设备号查询公司ID接口','cmii-uav-device','/oapi/device/uav/company/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405246324736,'API_f02f16bb0651b443a899a92b0e675172','应用中心设置回调地址','','cmii-uav-device','/open/app/redirect/setUrl','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405384736768,'API_a08fd7df587042c50e561f4c2610601a','根据token获取用户基本信息-敏感信息脱敏','','cmii-uav-device','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405468622848,'API_edcac3127696bb31f63d6a31eb1c4d20','查询接口列表V2','','cmii-uav-device','/admin/interface/v2/openInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405518954496,'API_fd403b4f0b3b815118d05f4fd62df9f8','全局统计本公司设备在线及简略详情','全局统计本公司设备在线及简略详情','cmii-uav-device','/oapi/surveillance/fly/total/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405581869056,'API_6b420b6cd90702af273ec1f8a75cc754','hello服务接口','hello','cmii-uav-device','/oapi/test/hello3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405636395008,'API_dfeb0c082537aa219d044ce2b4607b91','应用中心应用详情查询','','cmii-uav-device','/open/app/queryAppById','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405699309568,'API_57ffc88565558b5ad16ac821349ecc64','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405766418432,'API_72660c97aa4955edbe48e7bc1b166ee5','应用中心配置应用接口','','cmii-uav-device','/open/appInterface/configure/appInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405833527296,'API_fa4138e3f7b8fc64fefca8100f95f2a7','删除接口','','cmii-uav-device','/admin/interface/v2/deleteInf','DELETE',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085405921607680,'API_141cb2eeccd77d098fd5defcf046e4da','获取接口选择列表','','cmii-uav-device','/admin/appInterface/getInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406001299456,'API_666076e8389d8bdb9c1673c2c66995e2','设备统计接口','设备统计接口','cmii-uav-device','/oapi/device/uav/count/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406051631104,'API_0b79665ae2e017fbd6a8dd0bea0d6ea0','发送登陆验证码','','cmii-uav-device','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406143905792,'API_facecd2ba5889dc8f012224a8d8234e4','更新接口缓存数据','','cmii-uav-device','/admin/interface/refresh','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406215208960,'API_75d46dc0c40249362c4a7a9d750313b1','通过设备号列表查询绑定信息接口','通过设备号列表查询绑定信息接口','cmii-uav-device','/oapi/device/uav/bound/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406273929216,'API_7c8bebce400bda4312128cf6a07efdf0','collect服务接口','collect','cmii-uav-device','/oapi/test/collect','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406349426688,'API_69c4c6b204d9ec3e4e3d23fa2f88a8f0','实体分页查询','','cmii-uav-device','/admin/model/query','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406450089984,'API_65f4debbcec32e3b76225066fcd395c6','查询开发者可用的开放接口','','cmii-uav-device','/api/uav/developer/resource/queryOpenApi','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406554947584,'API_5be9648ee4af6d39697fdc9fce4702c5','查询接口详情v2','','cmii-uav-device','/admin/interface/v2/interfaceDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406601084928,'API_98ee25c6c10aa7d7775f5f9e368ea825','查询所有实体','','cmii-uav-device','/admin/model/all','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406647222272,'API_558992bed1b604511d4f03c37a31d12e','上传无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406701748224,'API_a37243e55e41dc730532965f8ea0e0db','上传单架次无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406773051392,'API_9474d172fa5449a6373893f4c21e7bd2','应用中心单接口详情及调用情况查询','','cmii-uav-device','/open/appInterface/query/oneInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406823383040,'API_c8f089c2a0bc50504970a3eec1d4b628','添加实体','','cmii-uav-device','/admin/model/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406890491904,'API_76af8ca82ed6daea77d94dee396cf470','开发者应用接口调用统计表查询','','cmii-uav-device','/open/interface/invoke/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085406961795072,'API_2638542b36b1e79f635028b7b8503256','接口详情,版本列表V2','','cmii-uav-device','/admin/interface/v2/infVersionList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407024709632,'API_d89dfeb204b75dc3ddbea4d424465a8b','检查是否有访问权限','','cmii-uav-device','/api/uav/developer/resource/check','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407087624192,'API_db42b753da1547e145568f76d32e7577','重新绑定手机','','cmii-uav-device','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407213453312,'API_0da68f2090fe13d30d43e470830c7b8e','设置接口版本号','','cmii-uav-device','/admin/interfaceVersion/updateInfVersion','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407314116608,'API_3d77798a4f897b5eb5e974a341b222af','根据接口版本ID,获取接口配置','','cmii-uav-device','/admin/params/getParamsConfigByVerId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407364448256,'API_a53b23499e23989701754474456da617','设置开放接口的默认额度','','cmii-uav-device','/admin/interface/updateInfDefaultQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407469305856,'API_ade56e487532d8f58e2bbca8cabe7992','即将过期接口查询','','cmii-uav-device','/open/appInterface/expire/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407603523584,'API_cc2499648f3e7cf3410f318672e47ddb','公司添加用户','公司添加用户描述','cmii-uav-device','/oapi/test/company_user_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407666438144,'API_58e2816541204276dd819cf50e48a005','冻结(测试接口),不暴露','','cmii-uav-device','/profile/test/freeze','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407737741312,'API_30b8d48a7181f95801420c96991132e5','执行更新邮箱','','cmii-uav-device','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407830016000,'API_6920952f4d8d1e20ae2c52e26956c877','上传无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/batchUpload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085407892930560,'API_aeb24ce0709bc05e10d9a9a020f94790','按条件分页查询开发者应用接口信息','','cmii-uav-device','/admin/appInterface/queryDevAppInfPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408085868544,'API_9693a020cdda953697c9526e27d908dd','查询接口详情','','cmii-uav-device','/admin/interface/queryInterfaceDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408140394496,'API_2863e39bfc4c9983f727eb909d6bfbbc','查询每款无人机对应作业执行次数','查询每款无人机对应作业执行次数','cmii-uav-device','/oapi/mission/job/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408345915392,'API_dae39585a67460f1ea5e78172f5a98f0','查询单个飞机最新数据','','cmii-uav-device','/oapi/surveillance/info/realtimeInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408417218560,'API_369a429da33cdcf0c5b944e5d86ad256','查询平台最近12月每月无人机作业执行次数','查询平台最近12月每月无人机作业执行次数','cmii-uav-device','/oapi/mission/job/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408475938816,'API_f532af8b9e2300d0fda0f3f43ebf3c64','普通作业上传文件','普通作业上传文件','cmii-uav-device','/oapi/mission/oss/normalUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408530464768,'API_7bb67cee83c0b28bf7d50a945166a27b','开发者应用状态设置','','cmii-uav-device','/admin/app/updateDeveloperAppStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408584990720,'API_a7acb49b27405d143a0766afe9ca9935','即将超额接口查询','','cmii-uav-device','/open/appInterface/exceed/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408639516672,'API_000d992a047736227893c569eb107c5e','按限制类型查询接口列表','','cmii-uav-device','/admin/interface/queryOpenInfListByLimit','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408698236928,'API_e77aa6d23dee04357b75babccf53f363','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408744374272,'API_0b7f303c7b319864441f89c29f8ff65c','根据属性类型,获取属性的限制类型','','cmii-uav-device','/admin/params/getLimitsByPropertyType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408786317312,'API_4d28d8d160204f57a5aefe7a776e422d','验证绑定手机号验证码','','cmii-uav-device','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL,NULL),(543085408853426176,'API_1d02a19252314b9bbcc15a7ea200db7b','新建接口V2','','cmii-uav-device','/admin/interface/v2/createOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085408912146432,'API_07ee41af1d7978077c6977bcd6f117dd','获取应用对应的所有接口列表','','cmii-uav-device','/admin/appInterface/getAllInfListByAppId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085408970866688,'API_8c0e1ae161f2d9bef3ecb8e984a22039','应用中心接口管理','','cmii-uav-device','/open/appInterface/query/allInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409037975552,'API_301c7f177ab9c38c5b3d430142388a51','查询开放的接口列表','','cmii-uav-device','/admin/interface/queryOpenInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409092501504,'API_80314e58c1bb6473f7199fd222de701e','查询无人机实例总数接口','设备统计接口','cmii-uav-device','/oapi/device/uav/plane/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409134444544,'API_3f0ebc815624b71bb8726ea7650263c0','根据图片id获取图片code','','cmii-uav-device','/verifyCode/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409180581888,'API_b729b2523556e6da46748f44c6ed3984','接口版本列表','','cmii-uav-device','/admin/interfaceVersion/infVersionList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409222524928,'API_e94fed089656866dcdae8f87d94accac','获取所有接口列表','','cmii-uav-device','/admin/interface/getAllInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409272856576,'API_1753b15cadbc575ce733685f83e25737','hello服务接口','hello','cmii-uav-device','/oapi/test/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409314799616,'API_68027d93c4eff7b794fce78cc9261d4d','helloOMS服务接口','hello','cmii-uav-device','/oapi/test/helloOMS','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409356742656,'API_6d41da958445233eca23fd7d4f3d2db9','分组获取接口','','cmii-uav-device','/docs/list','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409398685696,'API_344e5ebde3c1d23eb02b8d0c7febe2d2','创建接口版本','','cmii-uav-device','/admin/interfaceVersion/createInfVersion','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409440628736,'API_f3d0bd6377aa1f6f940409f38e7029a6','账号退出登录','','cmii-uav-device','/logout','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409482571776,'API_027faf38a5d543ccdca02f0f3b38cd8e','上传火警信息','','cmii-uav-device','/oapi/mission/caseinfo/casefinish/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409579040768,'API_700a6eaf2e9f6bf64cfa7d6c6e0236ac','查询无人机的拉流信息','','cmii-uav-device','/oapi/surveillance/uav/steamAddrs/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409620983808,'API_6fa75f9f4c4a56ad7e558c9fb24a5595','获取实体详细信息','','cmii-uav-device','/admin/model/getModelDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409667121152,'API_73fed1e2e520d4a3593413261db71207','查询开发者的接口额度','','cmii-uav-device','/admin/appInterface/queryDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409717452800,'API_f1bb25873aea6fd9710d3be0fd9923da','创建一个开发者','','cmii-uav-device','/api/uav/developer/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409763590144,'API_3320a6b862ea0c70e0126ea0b2a23e99','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-device','/oapi/surveillance/plane/single/allTrack/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409809727488,'API_ba5b76f97ca1946575fb0cbf9c279c33','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409881030656,'API_5defc8e579529b73bed6cd688849d067','应用中心新建应用','','cmii-uav-device','/open/app/add/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409927168000,'API_37ef71f7f83115cf3b2c3c04d5090270','验证解绑手机号验证码','','cmii-uav-device','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085409973305344,'API_7a3b0d70e39d59f8884bf15dc92dc237','接口文档接口','','cmii-uav-device','/docs/queryList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410015248384,'API_890cfe8d41a7d4ccffc05653ab7b63b0','获取接口未开放的版本列表','','cmii-uav-device','/admin/interface/','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410073968640,'API_4826824bb07036b1b994c3419353422a','查询平台最近12月每月飞行时长接口','查询平台最近12月每月飞行时长接口','cmii-uav-device','/oapi/mission/fly_duration/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410233352192,'API_84c536e250cf8d28129590b1f31fdf34','按条件分页查询开发者信息','','cmii-uav-device','/admin/developer/queryDeveloperPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410367569920,'API_e107149bf123ce8fae306122785fe216','获取接口的版本列表','','cmii-uav-device','/admin/interface/queryInfVerList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410434678784,'API_4a796da93b623f3b3fb5b3b050a5f73b','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410501787648,'API_c4508c515401c20f7e49d6b9d83eab3e','重置密码','','cmii-uav-device','/profile/resetPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410615033856,'API_34216cbf1fc376288c076b8ebbf7c580','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410707308544,'API_f226d4e60a81b0ba1584037cc5b339fd','开发者应用接口仓库查询','','cmii-uav-device','/open/interface/query/repository','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410837331968,'API_362c273fc0a25bf8a014159397bc22d5','注册一个开发者','','cmii-uav-device','/registry','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085410912829440,'API_4584464031bc7c9bfc12836342976df0','获取请求时间列表','','cmii-uav-device','/admin/appInterfaceLog/getReqTimeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411017687040,'API_5446128d9ace9120cb0c76c2529458d4','添加一个接口','','cmii-uav-device','/api/uav/developer/resource/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411122544640,'API_dd7ff9e5ee3e2b503df0161c5243a5a5','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/airline/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411202236416,'API_15e65be6ad22938f6546cc5b554b19fd','新建开放的接口','','cmii-uav-device','/admin/interface/addOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411307094016,'API_23257b48677554f4bd76ec1940a90ed7','删除开放的接口版本','','cmii-uav-device','/admin/interface/deleteInfVer','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(543085411395174400,'API_7364627a9d0eec31410c0f407da6cfb7','查询无人机视频回放','查询无人机视频回放','cmii-uav-device','/oapi/mission/uav/video/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL,NULL),(548188950706520064,'API_2dd7bde6ba81cc05d89d405cfc22999f','queryHistoryVagueByCId','','cmii-uav-user','/user/queryHistoryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2024-09-09 09:07:11',1,'2024-11-06 12:16:21',NULL),(548189005677068288,'API_79c0851480cbaf364565837b1448649f','根据用户id集合获取用户信息','','cmii-admin-user','/client/v1/user/queryByIds','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-09-09 09:14:21',NULL),(548189032180219904,'API_80fd400b18240c230596a361e327c623','获取机场区域以及禁飞区 Wgs84','','cmii-admin-data','/api/admin/arealimit/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-09-09 09:07:30',1,'2024-11-06 12:17:14',NULL),(548189032599650304,'API_edd1f20c8423bc5ebabdf422f6dd2a00','从Redis获取类型对应的有效字典明细的K-V','从Redis获取类型对应的有效字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValKeyMapFromRedisByType','GET',_binary '\0',_binary '\0','2024-09-09 09:07:30',1,'2024-11-06 12:17:14',NULL),(548193423188951040,'API_0fab114d29ab09bf0bb243525258e689','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmDetail','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:17',NULL),(548193423272837120,'API_cfab17a872576434e2d085792b4340b6','通过事件ID处理告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmIdNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:19',NULL),(548193423503523840,'API_195fb5899fa1e35092ee71e52c3e7c6a','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:19',NULL),(548193423839068160,'API_3fba2693af9291a6434d9078de761854','上报安全告警事件','','cmii-uav-alarm','/api/uav/alarm/event/reportSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:17',NULL),(548193424153640960,'API_5768fa4743b4961fe3aa36fdaa178ee1','查询自己公司及子公司所属的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:17',NULL),(548193424388521984,'API_43f719feec3fa832bf1d4c8b37856292','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:19',NULL),(548193424581459968,'API_fb37e608252a8178582d9a851e8f5066','查询所有指定AlarmID的告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecByAlarmIdNoCompany','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:17',NULL),(548193425592287232,'API_4d29e7f6ae861cb0f3d883f2df4e5b88','查询告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/queryConSecAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:19',NULL),(548193425688756224,'API_454ec5c7dafd9ebf2956ba61b37624bc','查询指定对象的告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByObj','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193425751670784,'API_9b65820af66004d1b5a76b17fa416eab','管理告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/controlSecAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:16',NULL),(548193425873305600,'API_9038b1b0cc36168f7f707b131cbb49c4','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmId','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193425944608768,'API_4a17d58452a19cfaafe2575f3e3ab059','查询所有告警事件详情-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecDetailNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17',NULL),(548193426095603712,'API_2c3693e478d3f4576bec2aced8c6f8cd','查询所有在线告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193426326290432,'API_f6b91968d821c1c4413f36482e025ec1','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/secAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193426393399296,'API_6eac0d1829f778b3eab0436a28b6fdcb','查询自己公司及子公司所属的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193426464702464,'API_8ebb3db40953c69121e1ab9c0bc8d0a3','查询指定AlarmID的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByAlarmId','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193426833801216,'API_253ff22d71d81bf89c929b75769b63c2','无人机下线之后处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByObj','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17',NULL),(548193427198705664,'API_00419b2f3d3e1e9d0acb7c8c94e41658','查询所有的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193427706216448,'API_f3eedbc9d0a83ab0fc5258a87f2f0c0d','查询历史告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193427769131008,'API_8956785199d26bb5c70a942651140cdf','查询所有历史告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17',NULL),(548193428012400640,'API_f062d3477042153e6e64d388dc5d86d3','一键处理所有告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelAllSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193428217921536,'API_3580cc836a060f01471c090f239b1baf','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:16',NULL),(548193428620574720,'API_8d77d76663433f4fa4a5731580119573','查询所有告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193428675100672,'API_c4c8dbafb227cdb2aaf70a68db26eb6b','查询所有的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(548193428750598144,'API_9c51a35849a0e91613cb2cad5eb3eeff','查询告警配置','','cmii-uav-alarm','/api/uav/alarm/query/secAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:16',NULL),(548193428935147520,'API_2d6f18e63183a9836589fff31c76d25d','提供类型查询告警配置','','cmii-uav-alarm','/api/uav/alarm/querySecAlarmConfByType','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18',NULL),(553530019939745792,'API_f7747a26085eb3afb8802fba36691b5d','查询无人机和绑定的机库,设备号全等,不是模糊','以无人机为准,如果符合条件的多个需要调用方筛选','cmii-uav-device','/api/device/mqtt/query_uav_dock','GET',_binary '\0',_binary '\0','2024-09-24 02:50:41',1,'2024-11-07 09:01:49',NULL),(559670736605937664,'API_7c28d6eadadf46a8acdf7d7cb40e717e','生成告警事件ID','','cmii-uav-alarm','/api/uav/alarm/event/getEventId','GET',_binary '\0',_binary '\0','2024-10-11 01:31:42',1,'2024-10-22 12:07:19',NULL),(559670749687971840,'API_702c8ddee6da0a9dcd8e36be11f64747','查询自己公司及子公司告警指标统计信息','附带告警无人机统计Map<\"uasId\", count>','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCountAddUav','GET',_binary '\0',_binary '\0','2024-10-11 01:31:45',1,'2024-10-22 12:07:19',NULL),(559672221082451968,'API_cb4b0cb23f92f145e54d962085186016','aggregation','','cmii-uav-kpi-monitor','/uav/data/aggregation','POST',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:17:20',NULL),(559672221745152000,'API_25269ec39b0142c36c8b3cad9253b5df','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:17:19',NULL),(559672223255101440,'API_0322e5121b244a203dcea6cd6ffd6294','getDocumentation','','cmii-uav-kpi-monitor','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:17:19',NULL),(559672223796166656,'API_c9970b8a7739b6447de97aba48dae12f','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:17:20',NULL),(559672224827965440,'API_d9863c5d9b91c22fdc6bba2bba3f42cb','createRSA','','cmii-uav-kpi-monitor','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,'2024-11-06 12:17:19',NULL),(559672225524219904,'API_1de7a19a944d9c35111646d62956fe9b','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,'2024-11-06 12:17:19',NULL),(559672227420045312,'API_2fd6f4fc2e7777e66783708968c99038','getDocumentation','','cmii-uav-kpi-monitor','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,'2024-11-06 12:17:19',NULL); /*!40000 ALTER TABLE `sys_resource_api` ENABLE KEYS */; UNLOCK TABLES; @@ -92,7 +92,7 @@ UNLOCK TABLES; LOCK TABLES `xxl_job_group` WRITE; /*!40000 ALTER TABLE `xxl_job_group` DISABLE KEYS */; -INSERT INTO `xxl_job_group` VALUES (1,'cmii-uav-airspace','cmii-uav-airspace',0,'http://10.244.51.162:9999/,http://10.244.54.154:9999/','2024-10-15 10:54:26'),(2,'cmii-uav-user','cmii-uav-user',0,'http://10.244.189.47:9999/,http://10.244.219.226:9999/','2024-10-15 10:54:26'),(3,'cmii-uav-data-post-process','cmii-uav-data-post-process',0,'http://10.244.192.68:9999/','2024-10-15 10:54:26'),(4,'cmii-uav-mqtthandler','cmii-uav-mqtthandler',0,'http://10.244.51.161:9999/,http://10.244.54.132:9999/,http://10.244.83.49:9999/','2024-10-15 10:54:26'),(5,'cmii-uav-surveillance','cmii-uav-surveillance',0,'http://10.244.244.38:9999/,http://10.244.54.135:9999/','2024-10-15 10:54:26'),(6,'cmii-uav-industrial-portfolio','cmii-uav-industrial-portfolio',0,'http://10.244.151.89:9999/,http://10.244.54.187:9999/','2024-10-15 10:54:26'),(7,'cmii-uav-material-warehouse','cmii-uav-material-warehouse',0,'http://10.244.189.8:9999/,http://10.244.253.178:9999/','2024-10-15 10:54:26'),(8,'cmii-uav-integration','cmii-uav-integration',0,'http://10.244.219.237:9999/,http://10.244.54.153:9999/','2024-10-15 10:54:26'),(9,'cmii-uav-mission','cmii-uav-mission',0,'http://10.244.219.236:9999/,http://10.244.54.160:9999/','2024-10-15 10:54:26'),(10,'cmii-uav-oauth','cmii-uav-oauth',0,'http://10.244.189.25:9999/,http://10.244.54.172:9999/','2024-10-15 10:54:26'),(11,'cmii-uas-lifecycle','cmii-uas-lifecycle',0,'http://10.244.219.226:19999/','2024-10-15 10:54:26'),(12,'cmii-uav-device','cmii-uav-device',0,'http://10.244.112.131:9999/,http://10.244.244.11:9999/','2024-10-15 10:54:26'); +INSERT INTO `xxl_job_group` VALUES (1,'cmii-uav-airspace','cmii-uav-airspace',0,'http://10.244.245.19:9999/,http://10.244.54.138:9999/','2024-11-14 11:13:59'),(2,'cmii-uav-user','cmii-uav-user',0,'http://10.244.245.32:9999/,http://10.244.54.144:9999/','2024-11-14 11:13:59'),(3,'cmii-uav-data-post-process','cmii-uav-data-post-process',0,'http://10.244.192.68:9999/','2024-11-14 11:13:59'),(4,'cmii-uav-mqtthandler','cmii-uav-mqtthandler',0,'http://10.244.244.8:9999/,http://10.244.54.177:9999/','2024-11-14 11:13:59'),(5,'cmii-uav-surveillance','cmii-uav-surveillance',0,'http://10.244.245.37:9999/,http://10.244.54.190:9999/','2024-11-14 11:13:59'),(6,'cmii-uav-industrial-portfolio','cmii-uav-industrial-portfolio',0,'http://10.244.189.23:9999/,http://10.244.253.153:9999/,http://10.244.54.141:9999/','2024-11-14 11:13:59'),(7,'cmii-uav-material-warehouse','cmii-uav-material-warehouse',0,'http://10.244.189.37:9999/,http://10.244.244.21:9999/','2024-11-14 11:13:59'),(8,'cmii-uav-integration','cmii-uav-integration',0,'http://10.244.219.237:9999/,http://10.244.51.142:9999/','2024-11-14 11:13:59'),(9,'cmii-uav-mission','cmii-uav-mission',0,'http://10.244.199.207:9999/,http://10.244.245.15:9999/','2024-11-14 11:13:59'),(10,'cmii-uav-oauth','cmii-uav-oauth',0,'http://10.244.199.196:9999/,http://10.244.219.211:9999/','2024-11-14 11:13:59'),(11,'cmii-uas-lifecycle','cmii-uas-lifecycle',0,'http://10.244.219.226:19999/','2024-11-14 11:13:59'),(12,'cmii-uav-device','cmii-uav-device',0,'http://10.244.244.9:9999/,http://10.244.54.149:9999/','2024-11-14 11:13:59'); /*!40000 ALTER TABLE `xxl_job_group` ENABLE KEYS */; UNLOCK TABLES; @@ -102,7 +102,7 @@ UNLOCK TABLES; LOCK TABLES `xxl_job_info` WRITE; /*!40000 ALTER TABLE `xxl_job_info` DISABLE KEYS */; -INSERT INTO `xxl_job_info` VALUES (1,4,'定时扫描机库下线','2021-11-18 14:33:43','2022-01-19 09:20:59','李煜寒','','CRON','0/5 * * ? * * *','DO_NOTHING','FIRST','checkHangarIfOnline','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-11-18 14:33:43','',1,1728960870000,1728960875000),(2,5,'告警检测','2021-11-24 10:32:38','2021-11-24 10:32:41','任一珂','','CRON','0/3 * * ? * * *','DO_NOTHING','ROUND','SurveillanceAlarm','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-11-24 10:32:38','',1,1728960873000,1728960876000),(3,1,'电子围栏告警检测','2021-12-02 10:43:33','2021-12-02 10:43:34','龙卫','','CRON','0/5 * * ? * * *','DO_NOTHING','ROUND','alarmJobHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-12-02 10:43:33','',1,1728960870000,1728960875000),(4,4,'自贡数据传输','2021-12-14 17:34:28','2021-12-14 17:34:31','任一珂','','CRON','0/3 * * ? * * *','DO_NOTHING','ROUND','ZiGongMeesageJob','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-12-14 17:34:28','',1,1728960873000,1728960876000),(5,6,'低空探测归档','2022-01-19 09:21:43','2024-03-29 20:14:13','任一珂','','CRON','00 00 * ? * * *','DO_NOTHING','ROUND','SurveillanceAlarm','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-01-19 09:21:43','',1,1728957600000,1728961200000),(6,3,'定时判断生产管理任务','2022-01-24 14:50:34','2022-01-24 14:50:41','张艾','','CRON','0/30 * * ? * * *','DO_NOTHING','FIRST','productHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-01-24 14:50:34','',1,1728960870000,1728960900000),(7,3,'定时判断数据管理内容','2022-01-24 14:52:51','2022-01-24 14:52:53','张艾','','CRON','0/30 * * ? * * *','DO_NOTHING','FIRST','dataSetHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-01-24 14:52:51','',1,1728960870000,1728960900000),(8,7,'素材仓库公司占用空间更新','2022-03-11 15:40:55','2024-09-26 10:44:27','杨云猇','','CRON','00 00 0/1 ? * * *','DO_NOTHING','ROUND','usedSpaceUpdateHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-03-11 15:40:55','',0,0,0),(9,7,'素材仓库上传进度定时删除','2022-03-11 15:41:40','2022-03-11 15:41:41','杨云猇','','CRON','00 00 00 1/1 * ? *','DO_NOTHING','ROUND','itemProgressDeleteHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-03-11 15:41:40','',1,1728921600000,1729008000000),(10,6,'医疗物流','2022-03-15 11:31:00','2022-04-29 09:09:13','龙卫','','CRON','0/3 * * ? * * *','DO_NOTHING','FIRST','monitorJobHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-03-15 11:31:00','',0,0,0),(11,4,'园区巡检温度异常','2022-10-14 17:12:21','2022-10-14 17:14:14','李航宇','','CRON','0/1 * * ? * * *','DO_NOTHING','FIRST','tmpMockDataHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-10-14 17:12:21','',0,0,0),(12,5,'定时获取IT公司基站数据','2023-04-24 17:01:59','2023-04-24 17:08:06','任一珂','','CRON','00 05,15,25,35,45,55 * ? * * *','DO_NOTHING','ROUND','hotMapGet','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-04-24 17:01:59','',1,1728960300000,1728960900000),(13,9,'24小时定时清理','2023-04-24 18:14:00','2024-05-16 17:22:56','任一珂','','CRON','00 00 00 ? * * *','DO_NOTHING','ROUND','clearMissionAI','100','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-04-24 18:14:00','',0,0,0),(14,6,'定时校验平台无人机是否进入禁飞区','2023-08-30 10:34:33','2023-12-20 17:57:12','钟林林','','CRON','0/1 * * ? * * *','DO_NOTHING','FIRST','checkFlyRealtimeWarning','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-08-30 10:34:33','',1,1728960874000,1728960875000),(15,5,'onTimeCleanOprationHistory','2023-12-05 15:30:19','2023-12-05 15:36:33','任一珂','','CRON','00 0/10 * ? * * *','DO_NOTHING','ROUND','onTimeCleanOprationHistory','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-12-05 15:30:19','',1,1728960600000,1728961200000),(16,5,'定时调用人流告警','2024-01-12 16:41:00','2024-01-12 16:41:05','王雄飞','','CRON','* 10,25,40,55 * ? * * *','DO_NOTHING','ROUND','hotMapGetNew','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-01-12 16:41:00','',1,1728960059000,1728960900000),(17,9,'结束作业','2024-03-07 17:38:12','2024-03-07 17:38:17','任一珂','','CRON','00 00 14,00 ? * * *','DO_NOTHING','ROUND','missionEnding','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-03-07 17:38:12','',1,1728921600000,1728972000000),(18,10,'定时清理oauth的在redis中的缓存','2024-03-30 21:45:00','2024-03-30 21:45:09','钟林林','','CRON','00 00 02 ? * * *','DO_NOTHING','FIRST','clearUnameAndClient','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-03-30 21:45:00','',1,1728928800000,1729015200000),(19,8,'checkOnline','2024-04-05 13:05:28','2024-04-23 09:17:11','renyike','','CRON','00 0/15 * ? * * *','DO_NOTHING','ROUND','checkHangerUpdate','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-04-05 13:05:28','',1,1728960300000,1728961200000),(20,6,'同步基站数据至对接的管控平台(合肥...)','2024-04-29 10:04:02','2024-06-20 08:59:04','钟林林','','CRON','0/5 * * ? * * *','DO_NOTHING','FIRST','updateDeviceStatus','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-04-29 10:04:02','',1,1728960870000,1728960875000),(21,6,'厦门移动发送短信','2024-05-16 19:01:39','2024-05-16 19:01:39','钟林林','','CRON','00 00 02 ? * * *','DO_NOTHING','FIRST','sendXmydSms','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-05-16 19:01:39','',0,0,0),(22,6,'公安探测','2024-06-17 10:02:24','2024-06-18 14:50:44','龙卫','','CRON','0/2 * * ? * * *','DO_NOTHING','ROUND','detectionJobHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-06-17 10:02:24','',1,1728960874000,1728960876000); +INSERT INTO `xxl_job_info` VALUES (1,4,'定时扫描机库下线','2021-11-18 14:33:43','2022-01-19 09:20:59','李煜寒','','CRON','0/5 * * ? * * *','DO_NOTHING','FIRST','checkHangarIfOnline','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-11-18 14:33:43','',1,1731554045000,1731554050000),(2,5,'告警检测','2021-11-24 10:32:38','2021-11-24 10:32:41','任一珂','','CRON','0/3 * * ? * * *','DO_NOTHING','ROUND','SurveillanceAlarm','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-11-24 10:32:38','',1,1731554049000,1731554052000),(3,1,'电子围栏告警检测','2021-12-02 10:43:33','2021-12-02 10:43:34','龙卫','','CRON','0/5 * * ? * * *','DO_NOTHING','ROUND','alarmJobHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-12-02 10:43:33','',1,1731554045000,1731554050000),(4,4,'自贡数据传输','2021-12-14 17:34:28','2021-12-14 17:34:31','任一珂','','CRON','0/3 * * ? * * *','DO_NOTHING','ROUND','ZiGongMeesageJob','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2021-12-14 17:34:28','',1,1731554049000,1731554052000),(5,6,'低空探测归档','2022-01-19 09:21:43','2024-03-29 20:14:13','任一珂','','CRON','00 00 * ? * * *','DO_NOTHING','ROUND','SurveillanceAlarm','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-01-19 09:21:43','',1,1731553200000,1731556800000),(6,3,'定时判断生产管理任务','2022-01-24 14:50:34','2022-01-24 14:50:41','张艾','','CRON','0/30 * * ? * * *','DO_NOTHING','FIRST','productHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-01-24 14:50:34','',1,1731554040000,1731554070000),(7,3,'定时判断数据管理内容','2022-01-24 14:52:51','2022-01-24 14:52:53','张艾','','CRON','0/30 * * ? * * *','DO_NOTHING','FIRST','dataSetHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-01-24 14:52:51','',1,1731554040000,1731554070000),(8,7,'素材仓库公司占用空间更新','2022-03-11 15:40:55','2024-09-26 10:44:27','杨云猇','','CRON','00 00 0/1 ? * * *','DO_NOTHING','ROUND','usedSpaceUpdateHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-03-11 15:40:55','',0,0,0),(9,7,'素材仓库上传进度定时删除','2022-03-11 15:41:40','2022-03-11 15:41:41','杨云猇','','CRON','00 00 00 1/1 * ? *','DO_NOTHING','ROUND','itemProgressDeleteHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-03-11 15:41:40','',1,1731513600000,1731600000000),(10,6,'医疗物流','2022-03-15 11:31:00','2022-04-29 09:09:13','龙卫','','CRON','0/3 * * ? * * *','DO_NOTHING','FIRST','monitorJobHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-03-15 11:31:00','',0,0,0),(11,4,'园区巡检温度异常','2022-10-14 17:12:21','2022-10-14 17:14:14','李航宇','','CRON','0/1 * * ? * * *','DO_NOTHING','FIRST','tmpMockDataHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2022-10-14 17:12:21','',0,0,0),(12,5,'定时获取IT公司基站数据','2023-04-24 17:01:59','2023-04-24 17:08:06','任一珂','','CRON','00 05,15,25,35,45,55 * ? * * *','DO_NOTHING','ROUND','hotMapGet','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-04-24 17:01:59','',1,1731553500000,1731554100000),(13,9,'24小时定时清理','2023-04-24 18:14:00','2024-05-16 17:22:56','任一珂','','CRON','00 00 00 ? * * *','DO_NOTHING','ROUND','clearMissionAI','100','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-04-24 18:14:00','',0,0,0),(14,6,'定时校验平台无人机是否进入禁飞区','2023-08-30 10:34:33','2023-12-20 17:57:12','钟林林','','CRON','0/1 * * ? * * *','DO_NOTHING','FIRST','checkFlyRealtimeWarning','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-08-30 10:34:33','',1,1731554045000,1731554046000),(15,5,'onTimeCleanOprationHistory','2023-12-05 15:30:19','2023-12-05 15:36:33','任一珂','','CRON','00 0/10 * ? * * *','DO_NOTHING','ROUND','onTimeCleanOprationHistory','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2023-12-05 15:30:19','',1,1731553800000,1731554400000),(16,5,'定时调用人流告警','2024-01-12 16:41:00','2024-01-12 16:41:05','王雄飞','','CRON','* 10,25,40,55 * ? * * *','DO_NOTHING','ROUND','hotMapGetNew','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-01-12 16:41:00','',1,1731553859000,1731554700000),(17,9,'结束作业','2024-03-07 17:38:12','2024-03-07 17:38:17','任一珂','','CRON','00 00 14,00 ? * * *','DO_NOTHING','ROUND','missionEnding','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-03-07 17:38:12','',1,1731513600000,1731564000000),(18,10,'定时清理oauth的在redis中的缓存','2024-03-30 21:45:00','2024-03-30 21:45:09','钟林林','','CRON','00 00 02 ? * * *','DO_NOTHING','FIRST','clearUnameAndClient','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-03-30 21:45:00','',1,1731520800000,1731607200000),(19,8,'checkOnline','2024-04-05 13:05:28','2024-04-23 09:17:11','renyike','','CRON','00 0/15 * ? * * *','DO_NOTHING','ROUND','checkHangerUpdate','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-04-05 13:05:28','',1,1731553200000,1731554100000),(20,6,'同步基站数据至对接的管控平台(合肥...)','2024-04-29 10:04:02','2024-06-20 08:59:04','钟林林','','CRON','0/5 * * ? * * *','DO_NOTHING','FIRST','updateDeviceStatus','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-04-29 10:04:02','',1,1731554045000,1731554050000),(21,6,'厦门移动发送短信','2024-05-16 19:01:39','2024-05-16 19:01:39','钟林林','','CRON','00 00 02 ? * * *','DO_NOTHING','FIRST','sendXmydSms','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-05-16 19:01:39','',0,0,0),(22,6,'公安探测','2024-06-17 10:02:24','2024-06-18 14:50:44','龙卫','','CRON','0/2 * * ? * * *','DO_NOTHING','ROUND','detectionJobHandler','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-06-17 10:02:24','',1,1731554048000,1731554050000),(23,6,'同步5GA基站到监管','2024-10-23 09:58:28','2024-11-09 17:00:22','钟林林','','CRON','00 0/30 * ? * * *','DO_NOTHING','FIRST','Advanced5GSync','','SERIAL_EXECUTION',0,0,'BEAN','','GLUE代码初始化','2024-10-23 09:58:28','',1,1731553200000,1731555000000); /*!40000 ALTER TABLE `xxl_job_info` ENABLE KEYS */; UNLOCK TABLES; @@ -164,4 +164,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:04 diff --git a/999-数据库脚本/6.0.0/cmii_live_srs_op.sql b/999-数据库脚本/6.0.0/cmii_live_srs_op.sql index 9931d25..5da865f 100644 --- a/999-数据库脚本/6.0.0/cmii_live_srs_op.sql +++ b/999-数据库脚本/6.0.0/cmii_live_srs_op.sql @@ -45,4 +45,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/cmii_material_warehouse.sql b/999-数据库脚本/6.0.0/cmii_material_warehouse.sql index 6ee8ee8..b5ee0d4 100644 --- a/999-数据库脚本/6.0.0/cmii_material_warehouse.sql +++ b/999-数据库脚本/6.0.0/cmii_material_warehouse.sql @@ -45,4 +45,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/cmii_nacos_config.sql b/999-数据库脚本/6.0.0/cmii_nacos_config.sql index 1758f33..be27a70 100644 --- a/999-数据库脚本/6.0.0/cmii_nacos_config.sql +++ b/999-数据库脚本/6.0.0/cmii_nacos_config.sql @@ -50,7 +50,7 @@ CREATE TABLE `config_info` ( `encrypted_data_key` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL COMMENT '加密数据', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uk_configinfo_datagrouptenant` (`data_id`,`group_id`,`tenant_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=3804 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='config_info'; +) ENGINE=InnoDB AUTO_INCREMENT=3923 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='config_info'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -60,8 +60,8 @@ CREATE TABLE `config_info` ( LOCK TABLES `config_info` WRITE; /*!40000 ALTER TABLE `config_info` DISABLE KEYS */; INSERT INTO `config_info` VALUES (271,'cmii-admin-gateway.yml','admin','server:\n port: 8080\nspring:\n application:\n name: cmii-admin-gateway\n platform:\n info:\n name: 运营平台网关\n description: 运营平台网关\n version: 1.0.0\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nfeign:\n hystrix:\n enabled: true\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 3000\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /admin/**/queryDevModelListByMafId\n - /admin/**/queryUavSize\n - /admin/**/queryUavShape\n - /admin/**/queryUseStat\n - /admin/**/queryUavMode\n - /admin/**/queryMnfName\n - /admin/**/queryHangarType\n - /admin/**/queryHangarMode\n - /admin/**/queryLoadModel\n - /admin/**/queryLoadType\n - /admin/**/queryMnfModeByMode\n - /admin/**/queryModeListByMnf\n - /admin/**/queryDevMnfList\n - /admin/**/queryDevTypeList\n - /admin/**/queryModelDetailByModel\n - /admin/**/queryUavMat\n - /admin/**/queryUavInf\n - /admin/**/queryUavDevAction\n - /admin/**/queryUavDevType\n - /admin/**/queryUavHangarModel\n - /admin/**/queryUavLoadModel\n - /admin/**/queryUavHangarType\n - /admin/**/queryUavProtLevel\n - /admin/**/queryExpModeName\n - /admin/**/queryWorkModeName\n - /admin/**/queryBalanName\n - /admin/**/queryImgFmtName\n - /admin/**/queryImgSizeName\n - /admin/**/queryCamModeName\n - /admin/**/queryCamShutName\n - /admin/**/queryImgISOName\n - /admin/**/queryVideoFmtName\n - /admin/**/queryVideoDisName\n - /admin/**/queryVideoISOName\n - /warehouse/**\n - /waypoint/api/uav/waypoint/airline/updateHistoryData/**\n - /developer/**\n sign-ignores:\n - /*/system/**\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n','934305890875cf64233fb6527b345592','2020-12-10 11:36:37','2022-02-10 10:52:31',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(272,'cmii-admin-user.yml','admin','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n application:\n name: cmii-admin-user\n login:\n kicked-support: true\n login-error-limit: true\n platform:\n info:\n name: 用户平台\n description: 用户平台\n version: 1.0.0\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/admin/user/mapper/**/*.xml\n type-handlers-package: com.cmii.chinamobile.common.typehandler\nlogging:\n level:\n com.cmii.chinamobile: debug\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: admin\nidgen:\n worker-id: 0\n datacenter-id: 0\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','c98c9936cdc39014584b5d169ac04585','2020-12-10 11:36:37','2021-10-22 15:37:14',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(273,'cmii-uav-process.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: 流程系统\n description: 流程系统\n version: 2.1.3\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_process?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&nullCatalogMeansCurrent=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: / \n main:\n allow-bean-definition-overriding: true\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\n request:\n mapping:\n scan:\n register-request-mapping: true\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/process/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','d55bfdee3904f0d0e28c0551daec7e2c','2020-12-10 11:36:37','2021-10-22 15:38:03',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(275,'cmii-uav-material-warehouse.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\n max-http-header-size: 204800\nspring:\n servlet:\n multipart:\n enabled: true\n max-file-size: 500MB\n max-request-size: 500MB\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n main:\n allow-bean-definition-overriding: true\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000\n accessKey: cmii\n secretKey: B#923fC7mk\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n downloadPath: /cmii/cache/warehouse/download/\n typeId: MWS\n bucketName: jadenq\n \nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/material/warehouse/mapper/xml/**/*.xml\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp\n saveFileBasePath: /cmii/cache/warehouse/upload/mw/\n chunkSize: 5242880\n thumbnail: thumbnail\n download:\n urlPrefix: https://www.demo.uavcmlc.com:18000/api/warehouse/\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_uKniXPELlRERBBwK\n clientSecret: wY7zyENcyJuTkCfAq4M7lR8NGMkClH','9a5a944969eb07752144992ff874f67f','2020-12-10 11:36:37','2021-11-01 13:56:11',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(276,'cmii-uav-surveillance.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 飞行监视\n description: 飞行监视\n version: 1.0.0\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n druid:\n # 连接池的配置信息\n # 初始化大小,最小,最大\n initial-size: 5\n min-idle: 5\n maxActive: 20\n # 配置获取连接等待超时的时间\n maxWait: 60000\n # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒\n timeBetweenEvictionRunsMillis: 60000\n # 配置一个连接在池中最小生存的时间,单位是毫秒\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n # 打开PSCache,并且指定每个连接上PSCache的大小\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,\'wall\'用于防火墙\n filters: stat,wall,slf4j\n filter:\n stat:\n enabled: true\n # 通过connectProperties属性来打开mergeSql功能;慢SQL记录\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n web-stat-filter:\n enabled: true\n # 配置DruidStatViewServlet\n stat-view-servlet:\n url-pattern: \"/druid/*\"\n # IP白名单(没有配置或者为空,则允许所有访问)\n allow:\n # IP黑名单 (存在共同时,deny优先于allow)\n deny: 192.168.1.73\n # 禁用HTML页面上的“Reset All”功能\n reset-enable: false\n # 登录名\n login-username: admin\n # 登录密码\n login-password: 123456\n enabled: true\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\nmybatis-plus:\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\n\nfeign:\n hystrix:\n enabled: false \nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000\n accessKey: cmii\n secretKey: B#923fC7mk\n \nmanagement:\n endpoints:\n web:\n exposure:\n include: none\nsurveillance:\n tcp:\n port: 8002','be3c0ddebac05e5a5b16f563824b6759','2020-12-10 11:36:37','2021-10-25 11:04:23',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(277,'cmii-uav-device.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_dev?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n\n ReadTimeout: 20000\n ConnectTimeout: 10000\n \nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/dev/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n','fda88f615c533f0a7219047b96566f5a','2020-12-10 11:36:37','2021-10-22 16:26:44',NULL,'192.168.34.234','','','null','null','null','yaml','null',''),(278,'cmii-uav-logger.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: 业务日志平台\n description: 业务日志平台\n version: 1.0.0\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_logger?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n # 连接池名称\n pool-name: LoggerHikariCP\n connection-test-query: SELECT 1\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/logger/mapper/**/*.xml\n type-handlers-package: com.cmii.chinamobile.common.typehandler\nfeign:\n hystrix:\n enabled: true\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n','512495f82de4b7f4793b2232c343f446','2020-12-10 11:36:37','2021-10-22 15:42:22',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(281,'cmii-admin-data.yml','admin','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n.messages\n platform:\n info:\n name: 字典表单管理\n description: 字典表单管理\n version: 1.0.0\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/admin_data?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/admin/mapper/**/*.xml\n type-handlers-package: com.cmii.chinamobile.common.typehandler\nlogging:\n level:\n com.cmii.chinamobile: debug\nidgen:\n datacenter-id: 1\n worker-id: 1\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: admin,uav\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','e9650f1419f799a61b9ab3eef17e05a3','2020-12-10 11:36:37','2021-10-22 15:43:03',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(282,'cmii-uav-mission.yml','uav','server:\n port: 8080\n tomcat:\n max-connections: 40000\nspring:\n platform:\n info:\n name: 作业管理服务\n description: 作业管理服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jmx:\n enabled: false\n main:\n allow-bean-definition-overriding: true\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n druid:\n # 连接池的配置信息\n # 初始化大小,最小,最大\n initial-size: 5\n min-idle: 5\n maxActive: 20\n # 配置获取连接等待超时的时间\n maxWait: 60000\n # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒\n timeBetweenEvictionRunsMillis: 60000\n # 配置一个连接在池中最小生存的时间,单位是毫秒\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n # 打开PSCache,并且指定每个连接上PSCache的大小\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,\'wall\'用于防火墙\n filters: stat,wall,slf4j\n filter:\n stat:\n enabled: true\n # 通过connectProperties属性来打开mergeSql功能;慢SQL记录\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n web-stat-filter:\n enabled: true\n # 配置DruidStatViewServlet\n stat-view-servlet:\n url-pattern: \"/druid/*\"\n # IP白名单(没有配置或者为空,则允许所有访问)\n allow:\n # IP黑名单 (存在共同时,deny优先于allow)\n deny: 192.168.1.73\n # 禁用HTML页面上的“Reset All”功能\n reset-enable: false\n # 登录名\n login-username: admin\n # 登录密码\n login-password: 123456\n enabled: true\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n messages:\n basename: i18n/messages\n servlet:\n multipart:\n max-request-size: 1000MB\n max-file-size: 1000MB\nmybatis-plus:\n mapper-locations: classpath:com/cmii/chinamobile/mission/beans/mapper/*Mapper.xml\n type-aliases-package: com.cmii.chinamobile.mission.beans.po\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n global-config:\n enable-sql-runner: true\n db-config:\n logic-delete-value: 1 #逻辑已删除的值\n logic-not-delete-value: 0 #逻辑未删出的值\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\nribbon:\n ConnectTimeout: 3000 # 连接超时时间(ms)\n ReadTimeout: 3000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nbucket: foia\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000 \n accessKey: cmii\n secretKey: B#923fC7mk\nmis:\n foia:\n pic:\n url: https://oss.demo.uavcmlc.com:18000/foia/\n\nmission:\n reponseWaitTime: 100\n retryNumber: 150\n timeZoneId: UTC+8\n rangeDistance: 2000\n takeoffWaitTime: 5000\n file:\n bucket: mission\n AIAddr: 192.168.35.51\n AIPort: 46502\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','7d105d574f6077359a5aa43ede346f64','2020-12-10 11:36:37','2021-11-02 15:41:02',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(283,'cmii-uav-notice.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_notice?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n main:\n allow-bean-definition-overriding: true\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: http://112.35.1.155:1992/sms/tmpsubmit\n ecName: 中移(成都)信息通信科技有限公司\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n limit:\n minute: 6\n hour: 100\n day: 500\n ipHour: 500 \nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/notice/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','2c4fe7edd5a5df97f7af5bca6eb2fc0b','2020-12-10 11:36:37','2021-10-22 15:44:58',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(284,'cmii-uav-developer.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 开发者平台\n description: 开发者平台\n version: 1.0.0\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_developer?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n servlet:\n multipart:\n max-request-size: 1000MB\n max-file-size: 1000MB\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n main:\n allow-bean-definition-overriding: true\n open:\n login:\n img-code-support: true\n kicked-support: true\n login-error-limit: false\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/developer/mapper/**/*.xml\n type-handlers-package: com.cmii.chinamobile.common.typehandler\nfeign:\n hystrix:\n enabled: false\n client:\n config:\n default:\n connect-timeout: 20000\n read-timeout: 20000\n\nidgen:\n datacenter-id: 3\n worker-id: 3\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: admin\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: health','59abd6e581ba10e2b561a68e41bad547','2020-12-10 11:36:37','2021-10-22 15:45:43',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(285,'cmii-uav-user.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 用户平台\n description: 用户平台\n version: 1.0.0\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/user/mapper/**/*.xml\n type-handlers-package: com.cmii.chinamobile.common.typehandler\nlogging:\n level:\n com.cmii.chinamobile: debug\n\nfeign:\n hystrix:\n enabled: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n','a4302dee45f8d966fe846ce5672c2e9c','2020-12-10 11:36:37','2021-10-22 15:46:15',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(286,'cmii-uav-oauth.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 用户认证平台\n description: 用户认证平台\n version: 1.0.0\n security:\n oauth2:\n kicked-support: true\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 86400\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n main:\n allow-bean-definition-overriding: true\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_oauth?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n banner: off\n type-handlers-package: com.cmii.chinamobile.common.typehandler\nlogging:\n level:\n com.cmii: debug\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user\n ReadTimeout: 5000\n ConnectTimeout: 5000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n \n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','6db716140bf8bb7288f46c3ed66e4de8','2020-12-10 11:36:37','2021-10-25 14:11:06',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(287,'cmii-uav-gateway.yml','uav','server:\n port: 8080\nspring:\n platform:\n info:\n name: 平台网关\n description: 平台网关\n version: 1.0.0\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/** \n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/** \n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\nfeign:\n hystrix:\n enabled: true\n\nribbon:\n ReadTimeout: 5000\n ConnectTimeout: 5000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n coreSize: 500\n maxQueueSize: 50000\n queueSizeRejectionThreshold: 50000\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/login\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /ca/disable_image_code\n - /ca/enable_image_code\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /uav/uavInfo 天途回调接口\n - /live/**\n - /dpp/v1/permission/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /brain/brain/user/permission/getToken\n - /mission/oss/upload/**\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/role/del #增加删除角色权限\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /surveillance/**\n - /brain/**\n - /camera/**\n - /dpp/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /hy-consumer/**\n - /hy-provider/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','83bd7c32fa1705f21a56358bbec512d6','2020-12-10 11:36:37','2021-10-29 15:35:30',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(288,'cmii-uav-admin-auth.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 后端用户认证\n description: 后端用户认证\n version: 1.0.0\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n client:\n client-id: gateway\n client-secret: 1234567\n scope: all,aaa\n grant-type: password\n client-app:\n client-id: gateway_app\n client-secret: 1234567\n scope: all\n grant-type: password\n login-error-limit: true\n login-error-limit-count: 5\n img-code-support: true\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','fa2957bc44acac8ab1ba9cdf38323d71','2020-12-10 11:36:37','2021-10-22 15:48:03',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(290,'cmii-uav-airspace.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: 空域管理\n description: 空域管理\n version: 1.0.0\n datasource:\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_airspace?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowMultiQueries=true\n #GMT%2B8代表: 东八区\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driverClassName: com.mysql.jdbc.Driver\n type: com.alibaba.druid.pool.DruidDataSource\n filters: stat,wall,log4j\n initialSize: 5\n minIdle: 5\n maxActive: 20\n maxWait: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: false\n maxPoolPreparedStatementPerConnectionSize: 20\n connectionProperties:\n druid:\n stat:\n mergeSql: true\n slowSqlMillis: 5000\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/airspace/mapper/**/*.xml\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','5406d5133ff1231de03a6935cccfdf7a','2020-12-10 11:36:37','2021-10-22 15:47:43',NULL,'192.168.34.234','','','null','null','null','yaml','null',''),(292,'cmii-uav-waypoint.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_waypoint?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n messages:\n basename: i18n/messages\n servlet:\n multipart:\n max-file-size: 100MB\n max-request-size: 100MB \n\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath:com/cmii/chinamobile/waypoint/common/mapper/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-device\n\n ReadTimeout: 5000\n ConnectTimeout: 3000\n\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n\nsimulation:\n remote:\n host: 114.242.26.182\n port: 29008\n ak: cyy123\nsimulation-host: 222.128.1.239\nsimulation-port: 16986\nsimulation-ak: cyy123\nsimulation-wms-port: 16985\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','0e0df0f413721e4fc54b425bbeffba82','2020-12-10 11:36:37','2021-10-22 15:47:04',NULL,'192.168.34.234','','','null','null','null','yaml','null',''),(294,'cmii-uav-mqtthandler.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n/messages\n platform:\n info:\n name: MQTT服务\n description: MQTT服务\n version: 1.0.0\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\n\nfeign:\n hystrix:\n enabled: false\n\n# AK\nApiKey: 03aa42f99ba74266a713f7348bf47084\n#openApi访问地址\nbasic: http://cloud.ttaviation.com:20043/\nsubscribeUrl: https://www.demo.uavcmlc.com:18000/api/mqtts/\ntiantu:\n uas: UAS00010241\n sn: \'00800202066603\'\n checkInterval: 5000\n\ndji:\n pushUrl: 183.220.194.193:26689\n pushGDRUrl: 183.220.194.193:26688\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','85c9cdd163ec0f4fd81e29127d65f3ab','2020-12-10 11:36:37','2021-10-22 15:46:29',NULL,'192.168.34.234','','','null','null','null','yaml','null',''),(331,'cmii-uav-brain.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n servlet:\n multipart:\n max-file-size: 5MB\n max-request-size: 10MB\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_brain?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true \nbrain:\n ai:\n server:\n tritonHost: 192.168.35.3 \n tritonPort: 8001\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/brain/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n\nminio:\n profix: \n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n\noauth:\n grantType: authorization_code\n clientId: APP_rafnuCAmBESIVYMH\n clientSecret: yhWQd6VNJMiQCkUfbt5nDDJfN6s5xw','6f59524f7f6de1fff000d486a6feaf18','2021-01-14 11:25:26','2021-10-22 15:44:39',NULL,'192.168.34.234','','','null','null','null','yaml','null',''),(345,'cmii-uav-kpi-monitor.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n servlet:\n multipart:\n max-file-size: 5MB\n max-request-size: 10MB\n platform:\n info:\n name: 指标监测\n description: 指标监测\n version: 2.1.3\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_kpi_monitor?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/kpi/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\nkpi:\n report:\n businessPlatform: uavcloud\n productName: 中移凌云\n hostName: \n hostIp:\n reportUrl: http://192.168.92.132/mapi/flow/push/ambulance\n reportFetchKpi: true\n reportStaticKpi: false\nlog:\n db:\n url: jdbc:mysql://env-mysql-demo-instance:3306/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','86a20cbdee319afae28b055cc81a1884','2021-02-07 15:19:45','2021-10-22 15:48:12',NULL,'192.168.34.234','','','指标监测','null','null','yaml','null',''),(349,'cmii-uav-data-post-process.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\n\nspring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/uav_data_post_process?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n\n servlet:\n multipart:\n enabled: true\n max-file-size: 1GB\n max-request-size: 1GB\n\n main:\n allow-bean-definition-overriding: true\n\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/context/mapper/xml/**/*.xml\n type-aliases-package: com.cmii.chinamobile.context.beans.po\n \nodm:\n url: http://192.168.34.233:8000\n username: huangjiawei\n password: wsad159357\n\n\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000\n accessKey: cmii\n secretKey: B#923fC7mk\n srcId: 1323096648758464516\n\nterra:\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n url: https://stag-dsapi.dbeta.me/terra-hz/terra-rescon-be\n\nfeign:\n httpclient:\n connection-timeout: 600000\n\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\n\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\n request:\n mapping:\n scan:\n register-request-mapping: true\n\nfile:\n publish:\n path: /home/publish/\n url: http://192.168.34.30:6080/arcgis/rest/services/test/MyMapService/MapServer/dynamicLayer\n interface: http://cmii-uav-hyperspectral-publish/publish\n\n tiftoshp:\n url: http://192.168.34.233:5001/shpping\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\namap:\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_2znr39cQYvCrl526\n clientSecret: ilzOctyo0zQqCeIkiWDhqrOJYRVvaW\n terra:\n grantType: authorization_code\n clientId: APP_zE0M3sTRXrCIJS8Y\n clientSecret: O0SOJYri7yEDs90CDnKXo1dTl61wsz\n dataprocess:\n grantType: authorization_code\n clientId: APP_zE0M3sTRXrCIJS8Y\n clientSecret: O0SOJYri7yEDs90CDnKXo1dTl61wsz\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n','39b090115b21c377665b267e1acd4590','2021-03-05 16:52:45','2022-01-18 19:55:20',NULL,'10.244.212.128','','','null','null','null','yaml','null',''),(430,'cmii-uav-hyperspectral-provider.yml','uav','server:\r\n port: 8080\r\n localUrl: https://uat.uavcmlc.com/api/hy-consumer/\r\n localPort: 8080\r\n servlet:\r\n context-path: /\r\nspring:\r\n servlet:\r\n multipart:\r\n max-file-size: -1\r\n max-request-size: -1\r\n platform:\r\n info:\r\n name: 高光谱模型平台\r\n description: 高光谱模型平台\r\n version: 1.0.0\r\n cloud:\r\n nacos:\r\n discovery:\r\n server-addr: env-nacos-svc:8848\r\n datasource:\r\n type: com.alibaba.druid.pool.DruidDataSource\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n druid:\r\n db-type: mysql\r\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_hyperspectral?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n username: k8s_admin\r\n password: Uc@bkTCPuD4g\r\n initial-size: 5\r\n min-idle: 5\r\n max-active: 20\r\n max-wait: 60000\r\n time-between-eviction-runs-millis: 60000\r\n min-evictable-idle-time-millis: 300000\r\n validation-query: SELECT \'x\'\r\n test-on-borrow: false\r\n test-on-return: false\r\n test-while-idle: true\r\n max-open-prepared-statements: 20\r\n filters: stat, wall\r\n # redis:\r\n # host: env-redis-svc\r\n # port: 6379\r\n # database: 0\r\n # password: Mcache@4522\r\n # redisson:\r\n # model: single\r\n # single-server-config:\r\n # address: ${spring.redis.host}:${spring.redis.port}\r\n # database: ${spring.redis.database}\r\n # password: ${spring.redis.password}\r\n redis:\r\n host: env-redis-svc\r\n port: 6379\r\n database: 0\r\n password: Mcache@4522\r\n pool:\r\n max-active: 20\r\n max-wait: -1\r\n max-idle: 10\r\n min-idle: 0\r\n timeout: 1000\r\n redisson:\r\n model: single\r\n single-server-config:\r\n address: ${spring.redis.host}:${spring.redis.port}\r\n database: ${spring.redis.database}\r\n password: ${spring.redis.password}\r\n rabbitmq:\r\n host: env-rabbitmq-svc\r\n port: 5672\r\n username: admin\r\n password: admin\r\n virtual-host: /\r\n main:\r\n allow-bean-definition-overriding: true\r\n messages:\r\n basename: i18n/messages\r\n encoding: UTF-8\r\nfeign:\r\n httpclient:\r\n connection-timeout: 10000\r\n#mybatis:\r\n# mapper-locations: classpath*:com/cmii/chinamobile/user/mapper/**/*.xml\r\n# config-location: classpath:mybatis-config.xml\r\n\r\nmybatis-plus:\r\n configuration:\r\n cache-enabled: false\r\n map-underscore-to-camel-case: true\r\n ##log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\r\n global-config:\r\n db-config:\r\n id-type: none\r\n update-strategy: not_null\r\n banner: false\r\n mapper-locations: classpath*:com/cmii/chinamobile/provider/mapper/**/*.xml\r\n type-handlers-package: com.cmii.chinamobile.common.typehandler\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\n\r\n#\\u751F\\u4EA7\\u8005\\u7684\\u8C03\\u7528\\u5730\\u5740\r\napi:\r\n producturl: http://cmii-uav-hyperspectral-consumer\r\n #\\u751F\\u4EA7\\u8005\\u7684\\u4FDD\\u5B58\\u65B9\\u6CD5\\u8DEF\\u5F84\r\n manager:\r\n product:\r\n save: /data/manager/product/save/\r\n get: /data/manager/download/product/\r\n task:\r\n callback: /task/callback\r\n coordinate:\r\n get: http://127.0.0.1:5001/georaster\r\n clip:\r\n get: http://127.0.0.1:5001/clipraster\r\n#\\u7B97\\u6CD5\\u6267\\u884C\\u7684\\u521D\\u59CB\\u547D\\u4EE4\r\nlinux:\r\n lib1: export LD_LIBRARY_PATH=/home/project/process/Release_centos7/\r\n lib2: export LD_LIBRARY_PATH=/home/project/process/UavRun/\r\n #\\u7B97\\u6CD5\\u6267\\u884C\\u7684\\u8F93\\u5165\\u6587\\u4EF6\\u540E\\u9762\\u9700\\u52A0\\u4E0Axx.tif\r\n outputfile: /cmii/cache/\r\n upfile: /cmii/cache/uploadtemp/\r\n pretreatment:\r\n outputPath: /home/project/process/pre\r\n exe: /home/project/process/UavRun/UavRun\r\n tiftoimg:\r\n exe: /home/project/process/tiftoimg\r\n path: /home/project/process/img/\r\n browsethumb:\r\n exe: /home/project/process/browse_thumb\r\nalgorithm:\r\n upload:\r\n path: /home/project/process/Release_centos7/\r\nminio:\r\n endPoint: https://oss.demo.uavcmlc.com:18000/\r\n accessKey: tmp\r\n secretKey: Cyy#1122\r\n bucketName: uavdata\r\n downloadPoint: https://www.demo.uavcmlc.com:18000/api/minios/\r\n uri: api/minio/core/download/files\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: none','14331dec52dd933e711ee5df4945d685','2021-05-26 11:33:04','2021-06-02 16:14:11',NULL,'192.168.126.48','','','null','null','null','yaml','null',''),(431,'cmii-uav-hyperspectral-consumer.yml','uav','server:\r\n port: 8080\r\n localUrl: https://hyper.lab.uavcmlc.com/api/hy-consumer/\r\n localPort: 8080\r\n servlet:\r\n context-path: /\r\n## feign超时时间配置\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 5000\r\n readTimeout: 5000\r\nmapper:\r\n mappers: com.cmii.chinamobile.consumer.common.BasicMapper\r\n not-empty: false\r\n identity: MYSQL\r\nspring:\r\n servlet:\r\n multipart:\r\n max-file-size: -1\r\n max-request-size: -1\r\n cloud:\r\n nacos:\r\n discovery:\r\n server-addr: env-nacos-svc:8848\r\n datasource:\r\n type: com.alibaba.druid.pool.DruidDataSource\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n druid:\r\n db-type: mysql\r\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_hyperspectral?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n username: k8s_admin\r\n password: Uc@bkTCPuD4g\r\n initial-size: 5\r\n min-idle: 5\r\n max-active: 20\r\n max-wait: 60000\r\n time-between-eviction-runs-millis: 60000\r\n min-evictable-idle-time-millis: 300000\r\n validation-query: SELECT \'x\'\r\n test-on-borrow: false\r\n test-on-return: false\r\n test-while-idle: true\r\n max-open-prepared-statements: 20\r\n filters: stat, wall\r\n mvc:\r\n throw-exception-if-no-handler-found: true\r\n resources:\r\n add-mappings: true\r\n # redis:\r\n # host: env-redis-svc\r\n # port: 6379\r\n # database: 0\r\n # password: Mcache@4522\r\n # jackson:\r\n # date-format: yyyy-MM-dd HH:mm:ss\r\n # time-zone: GMT+8\r\n redis:\r\n host: env-redis-svc\r\n port: 6379\r\n database: 0\r\n password: Mcache@4522\r\n redisson:\r\n model: single\r\n single-server-config:\r\n address: ${spring.redis.host}:${spring.redis.port}\r\n database: ${spring.redis.database}\r\n password: ${spring.redis.password}\r\n main:\r\n allow-bean-definition-overriding: true\r\n messages:\r\n basename: i18n/messages\r\n encoding: UTF-8\r\n\r\n#mybatis-plus:\r\n# configuration:\r\n# cache-enabled: false\r\n# map-underscore-to-camel-case: true\r\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\r\n# global-config:\r\n# db-config:\r\n# id-type: none\r\n# update-strategy: not_null\r\n# banner: false\r\n# mapper-locations: classpath*:com/cmii/chinamobile/consumer/mapper/**/*.xml\r\n# type-handlers-package: com.cmii.chinamobile.common.typehandler\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\nfile:\r\n publish:\r\n path: /cmii/cache/publish/\r\n url: https://gis.uavcmlc.com:6443/arcgis/rest/services/uavdata/MyMapService/MapServer\r\n interface: http://192.168.34.30:8080/publish\r\n cancel: http://192.168.34.30:8080/cancel\r\n ## 上传压缩文件的目录\r\n path:\r\n zip: /cmii/cache/upload/zip/\r\n cut: /cmii/cache/upload/cut/\r\n minio: /cmii/cache/data/\r\n tiftoshp:\r\n url: http://127.0.0.1:5001/shpping\r\njackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n\r\nalgorithm:\r\n exec:\r\n max: 1\r\n url: http://cmii-uav-hyperspectral-provider/Processing/callalgorithm\r\n report: /cmii/cache/report/\r\n thematic:\r\n outPath: /cmii/cache/picture\r\n url: http://127.0.0.1:5001/mapping\r\n clip:\r\n url: http://127.0.0.1:5001/clipraster\r\n coordinate:\r\n transformation:\r\n shp:\r\n url: http://127.0.0.1:5001/shptransform\r\n tif:\r\n url: http://127.0.0.1:5001/rastertransform\r\nminio:\r\n endPoint: https://oss.demo.uavcmlc.com:18000/\r\n accessKey: tmp\r\n secretKey: Cyy#1122\r\n bucketName: uavdata\r\n downloadPoint: https://www.demo.uavcmlc.com:18000/api/minios/\r\n uri: api/minio/core/download/files\r\n\r\n##logging:\r\n## level:\r\n## com.alibaba.nacos.client.config.impl: INFO\r\n## com.cmii.chinamobile.consumer.mapper: debug\r\n\r\ngis:\r\n url: https://gis.uavcmlc.com/portal/sharing/rest/generateToken\r\n token:\r\n json: \'{\"username\": \"uavgis\", \"password\": \"cmii1234\", \"ip\": \"\", \"client\": \"referer\", \"referer\": \"http://hyper.dev.uavcmlc.com\", \"expiration\": \"20160\", \"f\": \"pjson\"}\' \r\n #url: https://192.168.34.30/portal/sharing/rest/generateToken\r\n #username: uavgis\r\n #password: cmii1234\r\n #client: requestip\r\n #expiration: 3600\r\n #f: pjson\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: none','2ad52d8b8da485405356113b10135344','2021-05-26 11:34:24','2021-06-02 16:14:27',NULL,'192.168.126.48','','','null','null','null','yaml','null',''),(447,'cmii-open-gateway.yml','open','server:\n port: 8080\nspring:\n platform:\n info:\n name: 开放平台网关\n description: 开放平台网关\n version: 1.0.0\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nfeign:\n hystrix:\n enabled: true\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 3000\n threadpool:\n default:\n coreSize: 2000\n maxQueueSize: 50000\n queueSizeRejectionThreshold: 50000\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/default/putObject\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','efaebbe0978090f60a36edef8a22eb24','2021-06-01 17:59:48','2021-10-22 15:48:39',NULL,'192.168.34.234','','','null','null','null','yaml','null',''),(487,'cmii-uav-cloud-live.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n.messages\n platform:\n info:\n name: 视频流媒体管理\n description: 视频流媒体管理\n version: 1.0.0\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_cloud_live?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000/\n accessKey: tmp\n secretKey: Cyy#1122\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 40000\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-user,cmii-uav-material-warehouse\n\n ReadTimeout: 40000\n ConnectTimeout: 30000\n \nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/cloud/live/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nstream:\n engine:\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n partFileType: 1\n saveAllTsFile: false\nmanagement:\n endpoint:\n health:\n show-details: always\n show-components: always\n endpoints:\n web:\n exposure:\n include: \"*\"','4eb4240d6d4867b6c2395cb705e5c243','2021-06-11 13:56:56','2021-10-22 15:38:24',NULL,'192.168.34.234','','','null','null','null','yaml','null',''),(517,'cmii-uav-industrial-portfolio.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 行业应用项目包--[定制化需求]\n description: 行业应用项目包--[定制化需求]\n version: 1.0.0\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_industrial_portfolio?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n druid:\n # 连接池的配置信息\n # 初始化大小,最小,最大\n initial-size: 5\n min-idle: 5\n maxActive: 20\n # 配置获取连接等待超时的时间\n maxWait: 60000\n # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒\n timeBetweenEvictionRunsMillis: 60000\n # 配置一个连接在池中最小生存的时间,单位是毫秒\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n # 打开PSCache,并且指定每个连接上PSCache的大小\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,\'wall\'用于防火墙\n filters: stat,wall,slf4j\n filter:\n stat:\n enabled: true\n # 通过connectProperties属性来打开mergeSql功能;慢SQL记录\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n web-stat-filter:\n enabled: true\n # 配置DruidStatViewServlet\n stat-view-servlet:\n url-pattern: \"/druid/*\"\n # IP白名单(没有配置或者为空,则允许所有访问)\n allow:\n # IP黑名单 (存在共同时,deny优先于allow)\n deny: 192.168.1.73\n # 禁用HTML页面上的“Reset All”功能\n reset-enable: false\n # 登录名\n login-username: admin\n # 登录密码\n login-password: 123456\n enabled: true\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\nmybatis-plus:\n mapper-locations: classpath*:mapper/**.xml\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\n\nfeign:\n hystrix:\n enabled: false \n\n \nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000\n accessKey: cmii\n secretKey: B#923fC7mk\n','fd24079c9e199e2d12e8e1d54da75e8d','2021-10-22 15:53:41','2021-10-22 16:15:36',NULL,'10.244.212.128','','','null','','','yaml','',''),(527,'cmii-uav-alarm.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n messages:\n basename: i18n.messages\n platform:\n info:\n name: 告警管理\n description: 告警管理\n version: 1.0.0\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://env-mysql-demo-instance:3306/uav_alarm?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: admin\n virtual-host: /\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n main:\n allow-bean-definition-overriding: true\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-airspace\n\n ReadTimeout: 20000\n ConnectTimeout: 10000\n \nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/alarm/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nmanagement:\n endpoint:\n health:\n show-details: always\n show-components: always\n endpoints:\n web:\n exposure:\n include: \"*\"','b32b7cf824da083b695e8dace22e908c','2021-10-22 17:56:27','2021-10-22 18:01:00',NULL,'10.244.212.128','','','','','','yaml','',''),(542,'cmii-backend-system.yml','3.0.0','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.uavcloud-outside.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: xxxx\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000\n accessKey: cmii\n secretKey: B#923fC7mk\n downloadPath: /cmii/cache/warehouse/download/\nconductor:\n client:\n rootUri: http://192.168.34.41:8080/api/\n threadCount: 2\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nopentracing:\n jaeger:\n enabled: false\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: jaeger-agent.testing.svc\n port: 6831\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 1000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n','e455205ccbb6f4c4196d0f35cbfbbfb8','2021-11-04 16:58:27','2022-01-18 19:45:36',NULL,'10.244.212.128','','','','','','yaml','',''),(547,'cmii-admin-gateway.yml','3.0.0','spring:\n application:\n name: cmii-admin-gateway\n platform:\n info:\n name: 运营平台网关\n description: 运营平台网关\n version: 1.0.0\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/** \n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 3000\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /webjars/**\n # - /doc.html\n # - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /warehouse/**\n - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n','dfb1b4978529f6a22bdfb3da4858d3e0','2021-11-04 17:15:32','2021-12-13 09:35:41',NULL,'10.244.212.128','','','','','','yaml','',''),(548,'cmii-admin-user.yml','3.0.0','spring:\n application:\n name: cmii-admin-user\n login:\n kicked-support: true\n login-error-limit: true\n img-code-support: true\n platform:\n info:\n name: 用户平台\n description: 用户平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \n \nlogging:\n level:\n com.cmii.chinamobile: info\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: admin\nidgen:\n worker-id: 0\n datacenter-id: 0\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\nxxl:\n job:\n admin-addresses: cmii-admin-user\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./log/logpath\n access-token: xxl-job','69889075af1b8c95c0b189ce23529ff2','2021-11-04 17:15:32','2021-11-10 17:34:37',NULL,'10.244.212.128','','','','','','yaml','',''),(549,'cmii-uav-process.yml','3.0.0','spring:\n platform:\n info:\n name: 流程系统\n description: 流程系统\n version: 2.1.3\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_process?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&nullCatalogMeansCurrent=true&serverTimezone=GMT%2B8\n \ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\n request:\n mapping:\n scan:\n register-request-mapping: true\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\nlogging:\n level:\n com.cmii.chinamobile: info\n','4e5baf9da7aea9b90701c131fe5f04bf','2021-11-04 17:15:32','2021-11-04 17:24:31',NULL,'10.244.212.128','','','','','','yaml','',''),(550,'cmii-uav-material-warehouse.yml','3.0.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \n jackson:\n time-zone: GMT+8\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n downloadPath: /cmii/cache/warehouse/download/\n typeId: MWS\n bucketName: jadenq\n # downloadPath: /usr/local/data/warehouse/download/\n \n\nuploadFolder: /usr/local/data/warehouse/upload/\n\n # /cmii/cache\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/\n saveFileBasePath: /cmii/cache/warehouse/upload/mw/\n chunkSize: 5242880\n thumbnail: thumbnail\n download:\n urlPrefix: https://www.demo.uavcmlc.com:18000/api/warehouse/\n\nribbon:\n ConnectTimeout: 600000 # 请求连接的超时时间\n ReadTimeout: 600000 # 请求处理的超时时间\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_uKniXPELlRERBBwK\n clientSecret: wY7zyENcyJuTkCfAq4M7lR8NGMkClH','b29e782b8c3a819dacbf98df04dcf74d','2021-11-04 17:15:32','2021-11-08 10:53:04',NULL,'10.244.212.128','','','','','','yaml','',''),(551,'cmii-uav-surveillance.yml','3.0.0','spring:\n platform:\n info:\n name: 飞行监视\n description: 飞行监视\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \nmybatis-plus:\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\n\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\nlog:\n flag: true\n\n\n','d492afc398248eba1deea7054b27db44','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(552,'cmii-uav-device.yml','3.0.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_dev?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n\n ReadTimeout: 20000\n ConnectTimeout: 10000\n \n\nlogging:\n level:\n com.cmii.chinamobile: info\n\nlog:\n opt: true\n fly: true\n\n\n','beb16affffd1462b3b2a9dd1e7cc832b','2021-11-04 17:15:32','2021-11-04 17:25:14',NULL,'10.244.212.128','','','','','','yaml','',''),(553,'cmii-uav-logger.yml','3.0.0','spring:\r\n platform:\r\n info:\r\n name: 业务日志平台\r\n description: 业务日志平台\r\n version: 1.0.0\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_logger?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=GMT%2B8\r\n \r\n\r\n\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: none','ab9eb6738c2142eb34a47bdd3fa8661f','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(554,'cmii-admin-data.yml','3.0.0','spring:\r\n platform:\r\n info:\r\n name: 字典表单管理\r\n description: 字典表单管理\r\n version: 1.0.0\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/admin_data?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\n group: uav,admin\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: none','2e72b3c1093ad70230b0712a0d8d1ad6','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(555,'cmii-uav-mission.yml','3.0.0','spring:\n platform:\n info:\n name: 作业管理服务\n description: 作业管理服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n jmx:\n enabled: false\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n\nmission:\n file:\n bucket: foia\n AIAddr: 192.168.35.51\n AIPort: 6502\n \nribbon:\n ConnectTimeout: 3000 # 连接超时时间(ms)\n ReadTimeout: 3000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nbucket: foia\nmis:\n foia:\n pic:\n url: https://oss.demo.uavcmlc.com:18000/${bucket}/\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\nlog:\n flag: true','1cc55f41851ffe36d522d08ea47e829d','2021-11-04 17:15:32','2021-11-16 17:20:32',NULL,'10.244.212.128','','','','','','yaml','',''),(556,'cmii-uav-notice.yml','3.0.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_notice?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: http://112.35.1.155:1992/sms/tmpsubmit\n ecName: 中移(成都)信息通信科技有限公司\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n limit:\n minute: 10\n hour: 50\n day: 500\n ipHour: 500 \nlogging:\n level:\n com.cmii.chinamobile: info\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','224ef23355034eda9f6efde003f828ab','2021-11-04 17:15:32','2021-11-04 17:28:26',NULL,'10.244.212.128','','','','','','yaml','',''),(557,'cmii-uav-developer.yml','3.0.0','spring:\n platform:\n info:\n name: 开发者平台\n description: 开发者平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_developer?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n\n\nidgen:\n datacenter-id: 3\n worker-id: 3\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: admin\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','a3813b41c9b14f03cfe12792d321c087','2021-11-04 17:15:32','2021-11-04 17:29:06',NULL,'10.244.212.128','','','','','','yaml','',''),(558,'cmii-uav-user.yml','3.0.0','spring:\n platform:\n info:\n name: 用户平台\n description: 用户平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address \n host: https://lab.uavcmlc.com/devflight\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','bd1f64911837eb99f0ab42cb95c97242','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(559,'cmii-uav-oauth.yml','3.0.0','spring:\n platform:\n info:\n name: 用户认证平台\n description: 用户认证平台\n version: 1.0.0\n security:\n oauth2:\n kicked-support: true\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_oauth?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','1d023f4867a45cba53fe59d5483a247c','2021-11-04 17:15:32','2021-11-05 11:19:44',NULL,'10.244.212.128','','','','','','yaml','',''),(560,'cmii-uav-gateway.yml','3.0.0','spring:\n platform:\n info:\n name: 平台网关\n description: 平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/** \n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/** \n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n \n - id: cmii-uav-kpi-monitor\n uri: lb://cmii-uav-kpi-monitor\n predicates:\n - Path=/kpiMonitor/** \n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\nfeign:\n hystrix:\n enabled: true\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n coreSize: 100\n maxQueueSize: 50000\n queueSizeRejectionThreshold: 60000\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/commonToken\n - /ca/checkAccessToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /cms/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/**\n - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/**\n #- /mission/api/uav/mission/surveillance/openAIProcess/**\n #- /mission/api/uav/mission/surveillance/switchAIDetection/**\n #- /mission/api/uav/mission/surveillance/trackSingleTarget/**\n #- /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /kpiMonitor/personal/emergency/sos/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','5033d85a14722dd714c22008fc896e99','2021-11-04 17:15:32','2021-12-24 16:57:09',NULL,'10.244.105.128','','','','','','yaml','',''),(561,'cmii-uav-airspace.yml','3.0.0','spring:\n platform:\n info:\n name: 空域管理\n description: 空域管理\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_airspace?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: INFO\n\n#终审流程配置\nprocedure:\n type: 0 # 0:无终审 1:自动终审 2:手动终审\n url: http://tanglei.top:8182\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\n','8821a5bb3aac6733be51078cfc9f42b7','2021-11-04 17:15:32','2021-11-04 17:37:43',NULL,'10.244.212.128','','','','','','yaml','',''),(562,'cmii-uav-waypoint.yml','3.0.0','spring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_waypoint?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n \r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\n\r\nsimulation:\r\n remote:\r\n host: 114.242.26.182\r\n port: 29008\r\n ak: cyy123\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n\r\n','8b5438e8f06d48d15fa7a5cf49aa8365','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(563,'cmii-uav-mqtthandler.yml','3.0.0','spring:\n platform:\n info:\n name: MQTT服务\n description: MQTT服务\n version: 1.0.0\n\nfeign:\n hystrix:\n enabled: false\n\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: http://cloud.ttaviation.com:20043/\nsubscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\n\ndji:\n pushUrl: 183.220.194.193:26689\n pushGDRUrl: 183.220.194.193:26688\nlog:\n flag: true\n','4c7f0a8c0a42a8994e4258a3dec903ca','2021-11-04 17:15:32','2021-11-11 12:38:26',NULL,'10.244.212.128','','','','','','yaml','',''),(564,'cmii-uav-security-system.yml','3.0.0','#数据源配置\r\nspring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_security?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n \r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','555d34c0f25ac2bcf26f509a7d2f6459','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(565,'cmii-uav-data-post-process.yml','3.0.0','spring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_data_post_process?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n servlet:\r\n multipart:\r\n enabled: true\r\n max-file-size: 1GB\r\n max-request-size: 1GB\r\n\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\r\n url: https://stag-dsapi.dbeta.me/terra-hz/terra-rescon-be\r\n\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\n\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\n\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\n \r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n com.alibaba.nacos.client.config.impl: WARN\r\n io.swagger.models.parameters.AbstractSerializableParameter: error\r\n\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_bYdlPsBBIncZdaYR\r\n clientSecret: 8C1HRpzowdzbcizPxuMCoFB4OoMEhG\r\n\r\n','9cfab9ac13b12223f69c228be0620a19','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(566,'cmii-uav-brain.yml','3.0.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_brain?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \nbrain:\n ai:\n server:\n tritonHost: 192.168.35.3\n tritonPort: 8001\n tfSafeHostIp: 192.168.35.3\n tfSafeHostPort: 8033\n tfRoadHostIp: 192.168.35.3\n tfRoadHostPort: 2050\n\n\noauth:\n grantType: authorization_code\n clientId: APP_rafnuCAmBESIVYMH\n clientSecret: yhWQd6VNJMiQCkUfbt5nDDJfN6s5xw','288b314f4f16d2ca74e1e71f44eb4626','2021-11-04 17:15:32','2021-12-21 14:17:07',NULL,'10.244.105.128','','','','','','yaml','',''),(567,'cmii-uav-kpi-monitor.yml','3.0.0','spring:\r\n platform:\r\n info:\r\n name: 指标监测\r\n description: 指标监测\r\n version: 2.1.6\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_kpi_monitor?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n \r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n# reportUrl: http://192.168.92.132/mapi/flow/push/ambulance\r\n reportUrl: http://192.168.92.132/test-api/flow/push/ambulance\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n# url: jdbc:mysql://dev-01.ecs.io:36033/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n# userName: zyly\r\n# password: Cmii@4522\r\n url: jdbc:mysql://192.168.34.236:3306/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n userName: zyly\r\n password: Uc@bkTCPuD4g\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\n group: uav,admin\r\n','fe090758e03c2417813abd454dc5b64c','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(568,'cmii-open-gateway.yml','3.0.0','spring:\n platform:\n info:\n name: 开放平台网关\n description: 开放平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 3000\n threadpool:\n default:\n coreSize: 2000\n maxQueueSize: 50000\n queueSizeRejectionThreshold: 50000\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/default/putObject\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','b45d7ad8b97135ddec0dd6cbb30e077a','2021-11-04 17:15:32','2021-12-13 09:36:31',NULL,'10.244.212.128','','','','','','yaml','',''),(569,'cmii-uav-cloud-live.yml','3.0.0','spring:\n platform:\n info:\n name: 视频流媒体管理\n description: 视频流媒体管理\n version: 3.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_cloud_live?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nstream:\n engine:\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n saveAllTsFile: false\n#1. old 2. new \n partFileType: 1\n tsHost: https://www.demo.uavcmlc.com:18000/api/cloudLive\n tsPath: /public/his/playback/ts\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmanagement:\n endpoint:\n health:\n show-details: always\n show-components: always\ncmii:\n flow:\n chain:\n - name: chain1\n condition:\n - type: then\n value: \'a,b\'\n','a35e430608493a11b1f72b17542d37f3','2021-11-04 17:15:32','2021-11-16 12:17:44',NULL,'10.244.105.128','','','','','','yaml','',''),(570,'cmii-omoc-gateway.yml','3.0.0','spring:\r\n application:\r\n name: cmii-omoc-gateway\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','74d1cb9a50ee60afe19603f7162b2356','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(571,'cmii-omoc-process.yml','3.0.0','spring:\r\n application:\r\n name: cmii-omoc-process\r\nlogin:\r\n remoteUrl: \"http://123.56.14.31:9334\"\r\n lingyunurl_dev: \"https://lab.uavcmlc.com/dev\"','017296794095b012ab24688945d30f81','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(572,'cmii-omoc-user.yml','3.0.0','spring:\r\n application:\r\n name: cmii-omoc-user\r\nlogin:\r\n remoteUrl: \"http://123.56.14.31:9334\"\r\n lingyunurl_dev: \"https://lab.uavcmlc.com/dev\"','76dd771cafd9e42e0b228528ebe6ebab','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(573,'cmii-uav-clusters.yml','3.0.0','spring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_cluster?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n\r\n\r\n\r\n#feign:\r\n# compression:\r\n# response:\r\n# enabled: true\r\n','527cbc532abf0ee45f93a2283ea51e01','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(574,'cmii-uav-stream-manager.yml','3.0.0','mysql:\r\n host: 192.168.11.170\r\n port: 36033\r\n username: zyly\r\n password: Cmii@4522\r\n database: uav_video_streams\r\nsrs:\r\n server_host: 192.168.11.137\r\n server_domain_name: 192.168.11.137\r\n rtmp_port: 1935\r\n http_port: 2985\r\n https_port: 2985\r\n webrtc_port: 20090\r\n client_port: 2985\r\n dvr_video_path: /root/dvr/\r\n ts_video_path: /root/hls/\r\nserver_host: 0.0.0.0\r\nserver_port: 29999\r\nlisten_time_gap: 10\r\nuniversal_token: zhrmghgws\r\nlog_dir_path: .video_logs\r\n\r\n','608376f8bcc7b7ee779b6963b19ac5fd','2021-11-04 17:15:32','2021-11-04 17:15:32',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(575,'cmii-uav-alarm.yml','3.0.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_alarm?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-redisserver-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n\n ReadTimeout: 40000\n ConnectTimeout: 20000\n \n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nlog:\n opt: true\n fly: true','7cf13850def843ab87137c93cc2482ec','2021-11-04 17:15:32','2021-11-04 18:20:31',NULL,'10.244.212.128','','','','','','yaml','',''),(576,'cmii-uav-industrial-portfolio.yml','3.0.0','spring:\n platform:\n info:\n name: \n description: 行业应用项目包--[定制化需求]\n version: 3.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_industrial_portfolio?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n','c3998a6444c7f7025663d340c423b5bd','2021-11-04 17:15:32','2021-11-04 17:53:00',NULL,'10.244.212.128','','','','','','yaml','',''),(617,'cmii-uav-cms.yml','3.0.0','server:\n port: 8080\nspring:\n servlet:\n multipart:\n max-file-size: 10MB\n jackson:\n time-zone: GMT+8\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/uav_mcms?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n# cms数据库 192.168.11.90:48405\n# root 密码 CMS#db.233\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \n#fdfs:\n #soTimeout: 1500\n #connectTimeout: 600\n #trackerList[0]: 192.168.11.90:48426\n # trackerList[1]: 192.168.11.227:22122\nbone:\n #attachUrl: http://192.168.11.226:8080/\n enable-swagger: true\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000/\n accessKey: cmii\n secretKey: B#923fC7mk\n bucket: pub-cms\n','b5823fc5074ad05b47a3b8d82e621756','2021-12-24 16:30:16','2021-12-24 17:09:33',NULL,'10.244.105.128','','','','','','yaml','',''),(622,'cmii-uav-oauth.yml','3.0.1','spring:\n platform:\n info:\n name: 用户认证平台\n description: 用户认证平台\n version: 1.0.0\n security:\n oauth2:\n kicked-support: true\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_oauth?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','1d023f4867a45cba53fe59d5483a247c','2022-01-04 14:40:53','2022-01-04 14:40:53',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(623,'cmii-uav-user.yml','3.0.1','spring:\n platform:\n info:\n name: 用户平台\n description: 用户平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address \n host: https://lab.uavcmlc.com/devflight\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','bd1f64911837eb99f0ab42cb95c97242','2022-01-04 14:42:04','2022-01-04 14:42:04',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(776,'cmii-admin-data.yml','3.1.1','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(777,'cmii-admin-gateway.yml','3.1.1','bizName: 运营平台网关\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/** \n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n','b4ec2afd040e1939c04781a2c1747232','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(778,'cmii-admin-user.yml','3.1.1','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: true\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id: 0\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./log/logpath\n access-token: xxl-job','e93f446c9d5b2111d784cae667a34178','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(779,'cmii-backend-system.yml','3.1.1','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.1.1 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n url: http://8.135.102.76/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/0a7d26a3920147d982021509d21b2cb7/智能柜1.jpg\n B: hangar/image/0f0ff7f815604b01a0950fcace5284f7/智能柜2.jpg\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8192/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760 \n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\n downloadPath: /cmii/cache/warehouse/download/ # @Deprecated 下次升级版本使用该地址 2022-3-8\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\n','b8ad51a576fbf315a8be1409d474afc4','2022-03-11 09:41:40','2022-03-28 15:47:25',NULL,'10.244.212.128','','','','','','yaml','',''),(780,'cmii-omoc-gateway.yml','3.1.1','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(781,'cmii-omoc-process.yml','3.1.1','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(782,'cmii-omoc-user.yml','3.1.1','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(783,'cmii-open-gateway.yml','3.1.1','bizName: 开放平台网关\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/default/putObject\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','663d62b34c13612fab446691b44242de','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(784,'cmii-uav-airspace.yml','3.1.1','bizName: 空域管理\ndbSchema: uav_airspace\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n type: 0 # 0:无终审 1:自动终审 2:手动终审\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nwebminio:\n bucket: jadenq\n\n','b349e55f86c09db41bbd747db7b8e9bc','2022-03-11 09:41:40','2022-03-11 10:49:58',NULL,'10.244.212.128','','','','','','yaml','',''),(785,'cmii-uav-alarm.yml','3.1.1','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\nlog:\n opt: true\n fly: true\n','7f270c84fa80d38534b3a218d0350cd7','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(786,'cmii-uav-brain.yml','3.1.1','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV','e8f5891cf611a91a296532f26e3a3063','2022-03-11 09:41:40','2022-03-11 16:16:53',NULL,'10.244.212.128','','','','','','yaml','',''),(787,'cmii-uav-cloud-live.yml','3.1.1','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh047/xh003\nrabbit:\n queue:\n aiQueue: aiVideo','bfa55a46faa807e6fcab4e359afa3bd7','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(788,'cmii-uav-clusters.yml','3.1.1','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(789,'cmii-uav-cms.yml','3.1.1','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-03-11 09:41:40','2022-03-21 16:04:42',NULL,'10.244.212.128','','','','','','yaml','',''),(790,'cmii-uav-data-post-process.yml','3.1.1','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','f73918e8e94d21de58a18c951a73c6a7','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(791,'cmii-uav-developer.yml','3.1.1','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\nidgen:\n datacenter-id: 3\n worker-id: 3\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','d631102b8b4ff41bbf715a129de98e06','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(792,'cmii-uav-device.yml','3.1.1','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\n\nlog:\n opt: true\n fly: true\n\n\n','5106fb3c332d099c17142a4a196a0428','2022-03-11 09:41:40','2022-03-15 10:59:41',NULL,'10.244.212.128','','','','','','yaml','',''),(793,'cmii-uav-gateway.yml','3.1.1','bizName: 平台网关\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','26b2cab56bbeb6427485076552fefc3d','2022-03-11 09:41:40','2022-03-25 14:33:32',NULL,'10.244.212.128','','','','','','yaml','',''),(794,'cmii-uav-industrial-portfolio.yml','3.1.1','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','de4187ea0b3b9f4d820bd55a806c0587','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(795,'cmii-uav-kpi-monitor.yml','3.1.1','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(796,'cmii-uav-logger.yml','3.1.1','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(797,'cmii-uav-material-warehouse.yml','3.1.1','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(798,'cmii-uav-mission.yml','3.1.1','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: www.demo.uavcmlc # @Deprecated 同上\n shareEnvPath: com:18000 # @Deprecated 同上 \n AiListerMqName: aiVideo\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\n','c2e3018558bfddce7c798828a031c695','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(799,'cmii-uav-mqtthandler.yml','3.1.1','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(800,'cmii-uav-notice.yml','3.1.1','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(801,'cmii-uav-oauth.yml','3.1.1','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','516c49ca7199e84395911fa79c793147','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(802,'cmii-uav-process.yml','3.1.1','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(803,'cmii-uav-security-system.yml','3.1.1','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(804,'cmii-uav-surveillance.yml','3.1.1','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(805,'cmii-uav-user.yml','3.1.1','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address \n host: ${com.cmii.chinamobile.root}\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','7764ff3741f7ecb6dfc8649bfb4a545f','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(806,'cmii-uav-waypoint.yml','3.1.1','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-03-11 09:41:40','2022-03-11 09:41:40',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(807,'cmii-admin-data.yml','3.1.0','spring:\r\n platform:\r\n info:\r\n name: 字典表单管理\r\n description: 字典表单管理\r\n version: 1.0.0\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/admin_data?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\n group: uav,admin\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: none','dc926f6b6bf453326ed386fc2d156e8c','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(808,'cmii-admin-gateway.yml','3.1.0','spring:\n application:\n name: cmii-admin-gateway\n platform:\n info:\n name: 运营平台网关\n description: 运营平台网关\n version: 1.0.0\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/** \n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 3000\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n','5f21e325ea9ef8208cd1ec39aa9cb22b','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(809,'cmii-admin-user.yml','3.1.0','spring:\n application:\n name: cmii-admin-user\n login:\n kicked-support: true\n login-error-limit: true\n img-code-support: true\n platform:\n info:\n name: 用户平台\n description: 用户平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \n \nlogging:\n level:\n com.cmii.chinamobile: debug\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: admin\nidgen:\n worker-id: 0\n datacenter-id: 0\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\nxxl:\n job:\n admin-addresses: http://cmii-admin-user.uavcloud-dev.io/\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./log/logpath\n access-token: xxl-job','16f6793a86f0d3a6606ac0a70a95856a','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(810,'cmii-backend-system.yml','3.1.0','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.uavcloud-outside.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: xxxx\n username: k8s_admin\n password: Uc@bkTCPuD4g\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nmin:\n io:\n endPoint: https://oss.demo.uavcmlc.com:18000\n accessKey: cmii\n secretKey: B#923fC7mk\n downloadPath: /cmii/cache/warehouse/download/\nconductor:\n client:\n rootUri: http://192.168.34.41:8080/api/\n threadCount: 2\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nopentracing:\n jaeger:\n enabled: false\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: jaeger-agent.testing.svc\n port: 6831\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 1000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\ncom:\n  cmii:\n    chinamobile:\n      request:\n        mapping:\n          scan:\n            register-request-mapping: true\n','7fe9d383ba50b3c66772b1f2804420e9','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(811,'cmii-omoc-gateway.yml','3.1.0','spring:\r\n application:\r\n name: cmii-omoc-gateway\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','74d1cb9a50ee60afe19603f7162b2356','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(812,'cmii-omoc-process.yml','3.1.0','spring:\r\n application:\r\n name: cmii-omoc-process\r\nlogin:\r\n remoteUrl: \"http://123.56.14.31:9334\"\r\n lingyunurl_dev: \"https://lab.uavcmlc.com/dev\"','017296794095b012ab24688945d30f81','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(813,'cmii-omoc-user.yml','3.1.0','spring:\r\n application:\r\n name: cmii-omoc-user\r\nlogin:\r\n remoteUrl: \"http://123.56.14.31:9334\"\r\n lingyunurl_dev: \"https://lab.uavcmlc.com/dev\"','76dd771cafd9e42e0b228528ebe6ebab','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(814,'cmii-open-gateway.yml','3.1.0','spring:\n platform:\n info:\n name: 开放平台网关\n description: 开放平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 3000\n threadpool:\n default:\n coreSize: 2000\n maxQueueSize: 50000\n queueSizeRejectionThreshold: 50000\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/default/putObject\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','331102d0c87a061001c13268b8929c6f','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(815,'cmii-uav-airspace.yml','3.1.0','spring:\n platform:\n info:\n name: 空域管理\n description: 空域管理\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_airspace?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n\n#终审流程配置\nprocedure:\n type: 0 # 0:无终审 1:自动终审 2:手动终审\n url: http://tanglei.top:8182\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\n','32f7b0be84ab4cda25dc8532b9739398','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(816,'cmii-uav-alarm.yml','3.1.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_alarm?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n\n ReadTimeout: 40000\n ConnectTimeout: 20000\n \n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nlog:\n opt: true\n fly: true\n\nfeign:\n hystrix:\n enabled: true','3afdf2c2f678113b2de1e5b20e202483','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(817,'cmii-uav-brain.yml','3.1.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_brain?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \nbrain:\n ai:\n server:\n tritonHost: 192.168.35.3\n tritonPort: 8001\n tfSafeHostIp: 192.168.35.3\n tfSafeHostPort: 8033\n tfRoadHostIp: 192.168.35.3\n tfRoadHostPort: 2050\n\n\noauth:\n grantType: authorization_code\n clientId: APP_rafnuCAmBESIVYMH\n clientSecret: yhWQd6VNJMiQCkUfbt5nDDJfN6s5xw','70fad7ac7d7a93540021314cad555445','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(818,'cmii-uav-cloud-live.yml','3.1.0','spring:\n platform:\n info:\n name: 视频流媒体管理\n description: 视频流媒体管理\n version: 2.2.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_cloud_live?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\ncmii:\n flow:\n chain:\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: https://www.demo.uavcmlc.com:18000/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: http://192.168.35.2:8192/client/video/noticeMerge\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io/client/video/mergeComplete\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: transcode\n endpoint: http://192.168.35.2:8191\n taskNames:\n - taskName: gdr_transcode\n pluginName: transcode\n - taskName: gdr_server\n pluginName: transcode\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n videoQueue: videoMission\n aiQueue: aiVideo','9e2187fc1e061ceec59fca8e9e3b5159','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(819,'cmii-uav-clusters.yml','3.1.0','spring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_cluster?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n\r\n\r\n\r\n#feign:\r\n# compression:\r\n# response:\r\n# enabled: true\r\n','ce3c3155a3dce784082f3294580db558','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(820,'cmii-uav-cms.yml','3.1.0','server:\n port: 8080\nspring:\n servlet:\n multipart:\n max-file-size: 10MB\n jackson:\n time-zone: GMT+8\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/uav_mcms?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n# cms数据库 192.168.11.90:48405\n# root 密码 CMS#db.233\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: true\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','c3991949b89c48f5cd1a63f289bda2bb','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(821,'cmii-uav-data-post-process.yml','3.1.0','spring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_data_post_process?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n servlet:\r\n multipart:\r\n enabled: true\r\n max-file-size: 1GB\r\n max-request-size: 1GB\r\n\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\r\n url: https://stag-dsapi.dbeta.me/terra-hz/terra-rescon-be\r\n\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\n\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\n\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\n \r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n com.alibaba.nacos.client.config.impl: WARN\r\n io.swagger.models.parameters.AbstractSerializableParameter: error\r\n\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_bYdlPsBBIncZdaYR\r\n clientSecret: 8C1HRpzowdzbcizPxuMCoFB4OoMEhG\r\n\r\n','e3e70db5ef30b82103d0940c3545bec2','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(822,'cmii-uav-developer.yml','3.1.0','spring:\n platform:\n info:\n name: 开发者平台\n description: 开发者平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_developer?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n\n\nidgen:\n datacenter-id: 3\n worker-id: 3\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: admin\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','67caed9ec6371f02a123aa4f573a8d45','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(823,'cmii-uav-device.yml','3.1.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_dev?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n\n ReadTimeout: 20000\n ConnectTimeout: 10000\n \n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\nlog:\n opt: true\n fly: true\n\n\n','e1e13e6f77c6730e5387672d8cafd1ff','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(824,'cmii-uav-gateway.yml','3.1.0','spring:\n platform:\n info:\n name: 平台网关\n description: 平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/** \n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/** \n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n \n\nfeign:\n hystrix:\n enabled: true\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n coreSize: 100\n maxQueueSize: 50000\n queueSizeRejectionThreshold: 60000\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/file/download/**\n - /warehouse/api/v1/warehouse/manager/project/download/**\n - /warehouse/api/v1/warehouse/project/filesAll/download/**\n - /warehouse/api/v1/warehouse/project/pictureFiles/download/** \n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','3ae3be3fb8be45d18f8ab7c15e3c8601','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(825,'cmii-uav-industrial-portfolio.yml','3.1.0','spring:\n platform:\n info:\n name: \n description: 行业应用项目包--[定制化需求]\n version: 2.2.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_industrial_portfolio?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n yihang:\n domain: 8.135.102.76\n device:\n url: http://8.135.102.76/dispatcher\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\noauth:\n police:\n grantType: authorization_code\n clientId: APP_dax7WXYmMj94vBxr\n clientSecret: D7Ou8icsuhgNBTtWAJzkv2UtNCYRF9\n integratedsensing:\n grantType: authorization_code\n clientId: APP_kclx4AZHXOLEbQER\n clientSecret: G6gT3aQZQQqkfSps66IJ5YFSpdR9UU\n emergency:\n grantType: authorization_code\n clientId: APP_oe6jDsldsH7Sq2uY\n clientSecret: WC6TkBpSMiU6G1vwZ8bG46Le7o0lZi\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','70ec3c8045bb60bb0a577a1d4e52c65f','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(826,'cmii-uav-kpi-monitor.yml','3.1.0','spring:\r\n platform:\r\n info:\r\n name: 指标监测\r\n description: 指标监测\r\n version: 2.1.6\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_kpi_monitor?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n \r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n# reportUrl: http://192.168.92.132/mapi/flow/push/ambulance\r\n reportUrl: http://192.168.92.132/test-api/flow/push/ambulance\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n# url: jdbc:mysql://dev-01.ecs.io:36033/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n# userName: zyly\r\n# password: Cmii@4522\r\n url: jdbc:mysql://192.168.34.236:3306/admin_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n userName: zyly\r\n password: Uc@bkTCPuD4g\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\n group: uav,admin\r\n','d14524662f932c5d8a38e7feaa86e3e1','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(827,'cmii-uav-logger.yml','3.1.0','spring:\n platform:\n info:\n name: 业务日志平台\n description: 业务日志平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_logger?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=GMT%2B8\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\n\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','44d3600a4128c345359c6372abff8102','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(828,'cmii-uav-material-warehouse.yml','3.1.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \n jackson:\n time-zone: GMT+8\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n downloadPath: /cmii/cache/warehouse/download/\n typeId: MWS\n bucketName: jadenq\n # downloadPath: /usr/local/data/warehouse/download/\n \n\nuploadFolder: /usr/local/data/warehouse/upload/\n\n # /cmii/cache\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/\n saveFileBasePath: /cmii/cache/warehouse/upload/mw/\n chunkSize: 5242880\n thumbnail: thumbnail\n download:\n urlPrefix: https://www.demo.uavcmlc.com:18000/api/warehouse/api/v1/warehouse/project/downloadFile/\n\nribbon:\n ConnectTimeout: 600000 # 请求连接的超时时间\n ReadTimeout: 600000 # 请求处理的超时时间\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_uKniXPELlRERBBwK\n clientSecret: wY7zyENcyJuTkCfAq4M7lR8NGMkClH','27df95e219215a7deb779deaa6e5f65e','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(829,'cmii-uav-mission.yml','3.1.0','spring:\n platform:\n info:\n name: 作业管理服务\n description: 作业管理服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n jmx:\n enabled: false\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n\nmission:\n file:\n bucket: foia\n AIAddr: 192.168.35.51\n AIPort: 6502\n AICarNumberAddr: 192.168.35.51\n AICarNumberPort: 6503\n AIFireAddr: 192.168.35.51\n AIFirePort: 16666\n ShareUrlPrefix: www.demo.uavcmlc\n shareEnvPath: com:18000 \n \nribbon:\n ConnectTimeout: 3000 # 连接超时时间(ms)\n ReadTimeout: 3000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nbucket: foia\nmis:\n foia:\n pic:\n url: https://minio.ig-dev.uavcmlc.com/${bucket}/\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none\nlog:\n flag: true\n','a524a1fee9503a4effa7eb159989db20','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(830,'cmii-uav-mqtthandler.yml','3.1.0','spring:\n platform:\n info:\n name: MQTT服务\n description: MQTT服务\n version: 1.0.0\n\nfeign:\n hystrix:\n enabled: false\n\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: http://cloud.ttaviation.com:20043/\nsubscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\n\ndji:\n pushUrl: http://test.dji.push.com\n pushGDRUrl: xxxxxx\nlog:\n flag: true\n','ce7adfadf187db794f3cc5b9eeb994a7','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(831,'cmii-uav-notice.yml','3.1.0','spring:\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_notice?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: http://112.35.1.155:1992/sms/tmpsubmit\n ecName: 中移(成都)信息通信科技有限公司\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500 \nlogging:\n level:\n com.cmii.chinamobile: debug\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n\nmanagement:\n endpoints:\n web:\n exposure:\n include: none','0919e985f8e551d2b76f89de9bfcfe4e','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(832,'cmii-uav-oauth.yml','3.1.0','spring:\n platform:\n info:\n name: 用户认证平台\n description: 用户认证平台\n version: 1.0.0\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_oauth?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','12a53cd1c4ec31ab2797718779750dc4','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(833,'cmii-uav-process.yml','3.1.0','spring:\r\n platform:\r\n info:\r\n name: 流程系统\r\n description: 流程系统\r\n version: 2.1.3\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_process?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&nullCatalogMeansCurrent=true&serverTimezone=GMT%2B8\r\n \r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\n request:\r\n mapping:\r\n scan:\r\n register-request-mapping: true\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n','87b7a73cd073252937f26beffaaa257a','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(834,'cmii-uav-security-system.yml','3.1.0','#数据源配置\r\nspring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_security?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n \r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','8baf7bbb0150755281a8c2e97a490156','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(835,'cmii-uav-stream-manager.yml','3.1.0','mysql:\r\n host: 192.168.11.170\r\n port: 36033\r\n username: zyly\r\n password: Cmii@4522\r\n database: uav_video_streams\r\nsrs:\r\n server_host: 192.168.11.137\r\n server_domain_name: 192.168.11.137\r\n rtmp_port: 1935\r\n http_port: 2985\r\n https_port: 2985\r\n webrtc_port: 20090\r\n client_port: 2985\r\n dvr_video_path: /root/dvr/\r\n ts_video_path: /root/hls/\r\nserver_host: 0.0.0.0\r\nserver_port: 29999\r\nlisten_time_gap: 10\r\nuniversal_token: zhrmghgws\r\nlog_dir_path: .video_logs\r\n\r\n','608376f8bcc7b7ee779b6963b19ac5fd','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(836,'cmii-uav-surveillance.yml','3.1.0','spring:\n platform:\n info:\n name: 飞行监视\n description: 飞行监视\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n \nmybatis-plus:\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\n\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\nlog:\n flag: true\n\n\n','fd6bfe393595d7b495d75000693aade0','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(837,'cmii-uav-user.yml','3.1.0','spring:\n platform:\n info:\n name: 用户平台\n description: 用户平台\n version: 1.0.0\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_user?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address \n host: https://lab.uavcmlc.com/devflight\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','b7936934562efd030bffb4b8a7135794','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(838,'cmii-uav-waypoint.yml','3.1.0','spring:\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_waypoint?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n \r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\n\r\nsimulation:\r\n remote:\r\n host: 114.242.26.182\r\n port: 29008\r\n ak: cyy123\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n\r\n','9ff1a87c02b25a690525fd1eb6730063','2022-03-11 09:43:54','2022-03-11 09:43:54',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(917,'cmii-admin-data.yml','3.2.0','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(918,'cmii-admin-gateway.yml','3.2.0','bizName: 运营平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: user\r\n uri: lb://cmii-admin-user\r\n predicates:\r\n - Path=/user/**\r\n - id: admin-data\r\n uri: lb://cmii-admin-data\r\n predicates:\r\n - Path=/admin/**\r\n - id: dev\r\n uri: lb://cmii-uav-device\r\n predicates:\r\n - Path=/dev/**\r\n - id: feedback\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/feedback/**\r\n - id: zyly\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/zyly/**\r\n - id: airspace\r\n uri: lb://cmii-uav-airspace\r\n predicates:\r\n - Path=/airspace/**\r\n - id: data-process\r\n uri: lb://cmii-uav-data-process\r\n predicates:\r\n - Path=/dataprocess/**\r\n - id: data-post-process\r\n uri: lb://cmii-uav-data-post-process\r\n predicates:\r\n - Path=/dpp/**\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\nribbon:\r\n ReadTimeout: 10000\r\n ConnectTimeout: 9000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\nsecurity:\r\n oauth2:\r\n permit-all:\r\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\r\n - /user/getImgCode\r\n - /user/getImageCode\r\n - /user/get_image_code_by_image_id\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /webjars/**\r\n - /doc.html\r\n - /swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /user/api/admin/role/querySelected\r\n - /admin/api/admin/language/**\r\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\r\n - /feedback/api/uav/feedback/queryApps #查询应用列表\r\n - /zyly/api/uav/resource/queryResourceLanguage\r\n - /airspace/**/listAirport.do #查询机场\r\n - /user/api/admin/resource/syncImportResource\r\n - /user/api/admin/resource/syncExportResource\r\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\r\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\r\n authority-ignores:\r\n - /user/logout #登出接口\r\n - /user/**/getMyDetail #获取自己详细信息\r\n - /user/api/admin/user/profile/**\r\n - /user/api/admin/user/getUserResources\r\n - /user/api/admin/user/getUserResourceTree\r\n - /user/api/admin/resource/queryResourceTree\r\n - /user/api/admin/resource/queryResourceLanguage\r\n - /zyly/api/uav/role/del #删除角色\r\n - /warehouse/**\r\n # - /developer/**\r\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\r\n sign-ignores:\r\n - /*/system/**\r\n','5034fec86f8f6e75c932823dd49ff72f','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(919,'cmii-admin-user.yml','3.2.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: true\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id: 0\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./log/logpath\n access-token: xxl-job','e93f446c9d5b2111d784cae667a34178','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(920,'cmii-backend-system.yml','3.2.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.0 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n url: http://8.135.102.76/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: DEBUG\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\n','2a651e3c1b336956218c09192ce0c20a','2022-03-30 15:43:11','2022-04-01 10:51:45',NULL,'10.244.212.128','','','','','','yaml','',''),(921,'cmii-omoc-gateway.yml','3.2.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(922,'cmii-omoc-process.yml','3.2.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(923,'cmii-omoc-user.yml','3.2.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(924,'cmii-open-gateway.yml','3.2.0','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(925,'cmii-uav-airspace.yml','3.2.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(926,'cmii-uav-alarm.yml','3.2.0','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\nlog:\n opt: true\n fly: true\n','7f270c84fa80d38534b3a218d0350cd7','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(927,'cmii-uav-brain.yml','3.2.0','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(928,'cmii-uav-cloud-live.yml','3.2.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh047/xh003\nrabbit:\n queue:\n aiQueue: aiVideo','bfa55a46faa807e6fcab4e359afa3bd7','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(929,'cmii-uav-clusters.yml','3.2.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(930,'cmii-uav-cms.yml','3.2.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(931,'cmii-uav-data-post-process.yml','3.2.0','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(932,'cmii-uav-developer.yml','3.2.0','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(933,'cmii-uav-device.yml','3.2.0','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\n\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','2dad5fd3b4329d20df8e759fece1a2d6','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(934,'cmii-uav-gateway.yml','3.2.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','0db73834954e1ab2b74193df725eada8','2022-03-30 15:43:11','2022-04-08 15:15:47',NULL,'10.244.212.128','','','','','','yaml','',''),(935,'cmii-uav-industrial-portfolio.yml','3.2.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','de4187ea0b3b9f4d820bd55a806c0587','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(936,'cmii-uav-kpi-monitor.yml','3.2.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(937,'cmii-uav-logger.yml','3.2.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(938,'cmii-uav-material-warehouse.yml','3.2.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(939,'cmii-uav-mission.yml','3.2.0','bizName: 作业管理服务\r\ndbSchema: uav_mission\r\nspring:\r\n jmx:\r\n enabled: false\r\nmission:\r\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\r\n shareEnvPath: com/integration # @Deprecated 同上\r\n AiListerMqName: aiVideo\r\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\r\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\r\nribbon:\r\n OkToRetryOnAllOperations: true # 是否对所有操作重试\r\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\r\n MaxAutoRetries: 1 # 同一实例的重试次数\r\nbucket: foia\r\nmis:\r\n foia:\r\n pic:\r\n url: ${min.io.endPoint}/${bucket}/\r\nlog:\r\n flag: true\r\n','2aaa3cf655fdef4c49b0f87dc44c7c9e','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(940,'cmii-uav-mqtthandler.yml','3.2.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(941,'cmii-uav-notice.yml','3.2.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(942,'cmii-uav-oauth.yml','3.2.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','516c49ca7199e84395911fa79c793147','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(943,'cmii-uav-process.yml','3.2.0','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(944,'cmii-uav-security-system.yml','3.2.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(945,'cmii-uav-surveillance.yml','3.2.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(946,'cmii-uav-user.yml','3.2.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address \n host: ${com.cmii.chinamobile.root}\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','7764ff3741f7ecb6dfc8649bfb4a545f','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(947,'cmii-uav-waypoint.yml','3.2.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-03-30 15:43:11','2022-03-30 15:43:11',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(953,'cmii-admin-data.yml','3.2.1','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(954,'cmii-admin-gateway.yml','3.2.1','bizName: 运营平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: user\r\n uri: lb://cmii-admin-user\r\n predicates:\r\n - Path=/user/**\r\n - id: admin-data\r\n uri: lb://cmii-admin-data\r\n predicates:\r\n - Path=/admin/**\r\n - id: dev\r\n uri: lb://cmii-uav-device\r\n predicates:\r\n - Path=/dev/**\r\n - id: feedback\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/feedback/**\r\n - id: zyly\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/zyly/**\r\n - id: airspace\r\n uri: lb://cmii-uav-airspace\r\n predicates:\r\n - Path=/airspace/**\r\n - id: data-process\r\n uri: lb://cmii-uav-data-process\r\n predicates:\r\n - Path=/dataprocess/**\r\n - id: data-post-process\r\n uri: lb://cmii-uav-data-post-process\r\n predicates:\r\n - Path=/dpp/**\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\nribbon:\r\n ReadTimeout: 10000\r\n ConnectTimeout: 9000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\nsecurity:\r\n oauth2:\r\n permit-all:\r\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\r\n - /user/getImgCode\r\n - /user/getImageCode\r\n - /user/get_image_code_by_image_id\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /webjars/**\r\n - /doc.html\r\n - /swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /user/api/admin/role/querySelected\r\n - /admin/api/admin/language/**\r\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\r\n - /feedback/api/uav/feedback/queryApps #查询应用列表\r\n - /zyly/api/uav/resource/queryResourceLanguage\r\n - /airspace/**/listAirport.do #查询机场\r\n - /user/api/admin/resource/syncImportResource\r\n - /user/api/admin/resource/syncExportResource\r\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\r\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\r\n authority-ignores:\r\n - /user/logout #登出接口\r\n - /user/**/getMyDetail #获取自己详细信息\r\n - /user/api/admin/user/profile/**\r\n - /user/api/admin/user/getUserResources\r\n - /user/api/admin/user/getUserResourceTree\r\n - /user/api/admin/resource/queryResourceTree\r\n - /user/api/admin/resource/queryResourceLanguage\r\n - /zyly/api/uav/role/del #删除角色\r\n - /warehouse/**\r\n # - /developer/**\r\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\r\n sign-ignores:\r\n - /*/system/**\r\n','5034fec86f8f6e75c932823dd49ff72f','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(955,'cmii-admin-user.yml','3.2.1','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: true\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id: 0','7f5a4b81a23e6e9e216987fe5b55e008','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(956,'cmii-backend-system.yml','3.2.1','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.1 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n url: http://8.135.102.76/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.227\n port: 6506\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: WARN\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','44442b3ebc276e8af7640a647fa4c0b6','2022-04-13 11:44:59','2022-04-25 15:29:26',NULL,'10.244.212.128','','','','','','yaml','',''),(957,'cmii-omoc-gateway.yml','3.2.1','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(958,'cmii-omoc-process.yml','3.2.1','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(959,'cmii-omoc-user.yml','3.2.1','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(960,'cmii-open-gateway.yml','3.2.1','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(961,'cmii-uav-airspace.yml','3.2.1','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(962,'cmii-uav-alarm.yml','3.2.1','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n','e7329dede298fd4023442516b0c6746e','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(963,'cmii-uav-brain.yml','3.2.1','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(964,'cmii-uav-cloud-live.yml','3.2.1','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh047/xh003\nrabbit:\n queue:\n aiQueue: aiVideo','78c5a05a4187d0e248ed04e280603661','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(965,'cmii-uav-clusters.yml','3.2.1','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(966,'cmii-uav-cms.yml','3.2.1','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(967,'cmii-uav-data-post-process.yml','3.2.1','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(968,'cmii-uav-developer.yml','3.2.1','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(969,'cmii-uav-device.yml','3.2.1','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\n\n','74f6a248d767f85a3fca360ddeff278e','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(970,'cmii-uav-gateway.yml','3.2.1','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','4ed868bd0a93d87604efe05bb91dce0e','2022-04-13 11:44:59','2022-04-18 09:42:13',NULL,'10.244.212.128','','','','','','yaml','',''),(971,'cmii-uav-industrial-portfolio.yml','3.2.1','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','de4187ea0b3b9f4d820bd55a806c0587','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(972,'cmii-uav-kpi-monitor.yml','3.2.1','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(973,'cmii-uav-logger.yml','3.2.1','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(974,'cmii-uav-material-warehouse.yml','3.2.1','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(975,'cmii-uav-mission.yml','3.2.1','bizName: 作业管理服务\r\ndbSchema: uav_mission\r\nspring:\r\n jmx:\r\n enabled: false\r\nmission:\r\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\r\n shareEnvPath: com/integration # @Deprecated 同上\r\n AiListerMqName: aiVideo\r\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\r\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\r\nribbon:\r\n OkToRetryOnAllOperations: true # 是否对所有操作重试\r\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\r\n MaxAutoRetries: 1 # 同一实例的重试次数\r\nbucket: foia\r\nmis:\r\n foia:\r\n pic:\r\n url: ${min.io.endPoint}/${bucket}/\r\nlog:\r\n flag: true\r\n','2aaa3cf655fdef4c49b0f87dc44c7c9e','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(976,'cmii-uav-mqtthandler.yml','3.2.1','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(977,'cmii-uav-notice.yml','3.2.1','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(978,'cmii-uav-oauth.yml','3.2.1','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','516c49ca7199e84395911fa79c793147','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(979,'cmii-uav-process.yml','3.2.1','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(980,'cmii-uav-security-system.yml','3.2.1','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(981,'cmii-uav-surveillance.yml','3.2.1','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(982,'cmii-uav-user.yml','3.2.1','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}','1f7e7e3e2d047d1f9e1d9b5605ed04b1','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(983,'cmii-uav-waypoint.yml','3.2.1','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-04-13 11:44:59','2022-04-13 11:44:59',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(991,'cmii-admin-data.yml','3.2.2','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(992,'cmii-admin-gateway.yml','3.2.2','bizName: 运营平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: user\r\n uri: lb://cmii-admin-user\r\n predicates:\r\n - Path=/user/**\r\n - id: admin-data\r\n uri: lb://cmii-admin-data\r\n predicates:\r\n - Path=/admin/**\r\n - id: dev\r\n uri: lb://cmii-uav-device\r\n predicates:\r\n - Path=/dev/**\r\n - id: feedback\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/feedback/**\r\n - id: zyly\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/zyly/**\r\n - id: airspace\r\n uri: lb://cmii-uav-airspace\r\n predicates:\r\n - Path=/airspace/**\r\n - id: data-process\r\n uri: lb://cmii-uav-data-process\r\n predicates:\r\n - Path=/dataprocess/**\r\n - id: data-post-process\r\n uri: lb://cmii-uav-data-post-process\r\n predicates:\r\n - Path=/dpp/**\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\nribbon:\r\n ReadTimeout: 10000\r\n ConnectTimeout: 9000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\nsecurity:\r\n oauth2:\r\n permit-all:\r\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\r\n - /user/getImgCode\r\n - /user/getImageCode\r\n - /user/get_image_code_by_image_id\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /webjars/**\r\n - /doc.html\r\n - /swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /user/api/admin/role/querySelected\r\n - /admin/api/admin/language/**\r\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\r\n - /feedback/api/uav/feedback/queryApps #查询应用列表\r\n - /zyly/api/uav/resource/queryResourceLanguage\r\n - /airspace/**/listAirport.do #查询机场\r\n - /user/api/admin/resource/syncImportResource\r\n - /user/api/admin/resource/syncExportResource\r\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\r\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\r\n authority-ignores:\r\n - /user/logout #登出接口\r\n - /user/**/getMyDetail #获取自己详细信息\r\n - /user/api/admin/user/profile/**\r\n - /user/api/admin/user/getUserResources\r\n - /user/api/admin/user/getUserResourceTree\r\n - /user/api/admin/resource/queryResourceTree\r\n - /user/api/admin/resource/queryResourceLanguage\r\n - /zyly/api/uav/role/del #删除角色\r\n - /warehouse/**\r\n # - /developer/**\r\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\r\n sign-ignores:\r\n - /*/system/**\r\n','5034fec86f8f6e75c932823dd49ff72f','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(993,'cmii-admin-user.yml','3.2.2','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id: 0\n','d9dc791ffd4992ec3c82a0c9b66ad9dc','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(994,'cmii-omoc-gateway.yml','3.2.2','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(995,'cmii-omoc-process.yml','3.2.2','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(996,'cmii-omoc-user.yml','3.2.2','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(997,'cmii-open-gateway.yml','3.2.2','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(998,'cmii-uav-airspace.yml','3.2.2','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(999,'cmii-uav-alarm.yml','3.2.2','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1000,'cmii-uav-brain.yml','3.2.2','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1001,'cmii-uav-cloud-live.yml','3.2.2','bizName: 视频流媒体管理\r\ndbSchema: uav_cloud_live\r\ncmii:\r\n flow:\r\n chain:\r\n - name: createTempLive\r\n condition:\r\n - type: then\r\n value: \'createTempLive\'\r\n - name: createLive\r\n condition:\r\n - type: then\r\n value: \'createLive\'\r\n - name: gdrServer\r\n condition:\r\n - type: then\r\n value: \'gdr_server\'\r\n - name: aijob\r\n condition:\r\n - type: then\r\n value: \'createLive,ai_recognition\'\r\n - name: gdr2idr\r\n condition:\r\n - type: then\r\n value: \'createLive,gdr_transcode\'\r\nstream:\r\n engine:\r\n # host: 192.168.11.137:29999\r\n host: helm-vms-svc:29999\r\n wareHouseSrcId: 1323096648758464518\r\n #1. old 2. new\r\n partFileType: 1\r\n saveAllTsFile: false\r\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\r\n tsPath: /public/his/playback/ts\r\nvideo:\r\n merge:\r\n endpoint: ${com.cmii.chinamobile.video-merge.url}\r\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\r\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\r\nlive:\r\n#vms,srs-op\r\n defaultEngine: srs-op\r\n engines:\r\n - name: srs-op\r\n desc: live service powered by srs-op\r\n type: srs-op\r\n endpoint: http://helm-srs-op-svc:8080\r\n - name: srs-vms\r\n desc: live service powered by srs-vms\r\n type: srs-vms\r\n endpoint: helm-vms-svc:29999\r\n plugins:\r\n - pluginName: ai_recognition@1 # 人群统计\r\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@2 # 车\r\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@3 # 人群统计+车\r\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@4 # 车辆跟踪\r\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@8 # 车牌识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@16 # 火识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@32 # 烟雾识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\r\n # GDR说明:\r\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\r\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\r\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\r\n - pluginName: gdr_server\r\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\r\n - pluginName: gdr_transcode\r\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\r\n closeCheckStreamTask: true\r\n closeCheckPluginTask: true\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n group: uav,admin\r\ntranscode:\r\n gdr2idrModels:\r\n - wrjxh047/xh003\r\nrabbit:\r\n queue:\r\n aiQueue: aiVideo','00ec4a10e532925c02bf3dd6726a50da','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1002,'cmii-uav-clusters.yml','3.2.2','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1003,'cmii-uav-cms.yml','3.2.2','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1004,'cmii-uav-data-post-process.yml','3.2.2','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1005,'cmii-uav-developer.yml','3.2.2','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1006,'cmii-uav-device.yml','3.2.2','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1007,'cmii-uav-gateway.yml','3.2.2','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','e1edaba6c50b456df303154a069e1e24','2022-04-27 10:12:03','2022-04-27 17:31:34',NULL,'10.244.212.128','','','','','','yaml','',''),(1008,'cmii-uav-industrial-portfolio.yml','3.2.2','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','de4187ea0b3b9f4d820bd55a806c0587','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1009,'cmii-uav-kpi-monitor.yml','3.2.2','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1010,'cmii-uav-logger.yml','3.2.2','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1011,'cmii-uav-material-warehouse.yml','3.2.2','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1012,'cmii-uav-mission.yml','3.2.2','bizName: 作业管理服务\r\ndbSchema: uav_mission\r\nspring:\r\n jmx:\r\n enabled: false\r\nmission:\r\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\r\n shareEnvPath: com/integration # @Deprecated 同上\r\n AiListerMqName: aiVideo\r\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\r\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\r\nribbon:\r\n OkToRetryOnAllOperations: true # 是否对所有操作重试\r\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\r\n MaxAutoRetries: 1 # 同一实例的重试次数\r\nbucket: foia\r\nmis:\r\n foia:\r\n pic:\r\n url: ${min.io.endPoint}/${bucket}/\r\nlog:\r\n flag: true\r\n','2aaa3cf655fdef4c49b0f87dc44c7c9e','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1013,'cmii-uav-mqtthandler.yml','3.2.2','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1014,'cmii-uav-notice.yml','3.2.2','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1015,'cmii-uav-oauth.yml','3.2.2','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','516c49ca7199e84395911fa79c793147','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1016,'cmii-uav-process.yml','3.2.2','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1017,'cmii-uav-security-system.yml','3.2.2','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1018,'cmii-uav-surveillance.yml','3.2.2','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1019,'cmii-uav-user.yml','3.2.2','bizName: 用户平台\r\ndbSchema: uav_user\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data,cmii-uav-notice\r\npassword:\r\n noticeChangePwdDay: 84\r\n expireDay: 91\r\n emailNotice: true\r\n smsNotice: true\r\n#notice address\r\n host: ${com.cmii.chinamobile.root}\r\n','d72f61f5f6979a80a298ed65de5a6ed3','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1020,'cmii-uav-waypoint.yml','3.2.2','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-04-27 10:12:03','2022-04-27 10:12:03',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1021,'cmii-backend-system.yml','3.2.2','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.2 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n url: http://8.135.102.76/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.227\n port: 6506\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','90e4d97df78f66a9cf458f0b3194a506','2022-04-27 10:13:36','2022-05-05 14:55:38',NULL,'10.244.212.128','','','','','','yaml','',''),(1027,'cmii-admin-data.yml','3.2.3','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1028,'cmii-admin-gateway.yml','3.2.3','bizName: 运营平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: user\r\n uri: lb://cmii-admin-user\r\n predicates:\r\n - Path=/user/**\r\n - id: admin-data\r\n uri: lb://cmii-admin-data\r\n predicates:\r\n - Path=/admin/**\r\n - id: dev\r\n uri: lb://cmii-uav-device\r\n predicates:\r\n - Path=/dev/**\r\n - id: feedback\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/feedback/**\r\n - id: zyly\r\n uri: lb://cmii-uav-user\r\n predicates:\r\n - Path=/zyly/**\r\n - id: airspace\r\n uri: lb://cmii-uav-airspace\r\n predicates:\r\n - Path=/airspace/**\r\n - id: data-process\r\n uri: lb://cmii-uav-data-process\r\n predicates:\r\n - Path=/dataprocess/**\r\n - id: data-post-process\r\n uri: lb://cmii-uav-data-post-process\r\n predicates:\r\n - Path=/dpp/**\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\nribbon:\r\n ReadTimeout: 10000\r\n ConnectTimeout: 9000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\nsecurity:\r\n oauth2:\r\n permit-all:\r\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\r\n - /user/getImgCode\r\n - /user/getImageCode\r\n - /user/get_image_code_by_image_id\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /webjars/**\r\n - /doc.html\r\n - /swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /user/api/admin/role/querySelected\r\n - /admin/api/admin/language/**\r\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\r\n - /feedback/api/uav/feedback/queryApps #查询应用列表\r\n - /zyly/api/uav/resource/queryResourceLanguage\r\n - /airspace/**/listAirport.do #查询机场\r\n - /user/api/admin/resource/syncImportResource\r\n - /user/api/admin/resource/syncExportResource\r\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\r\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\r\n authority-ignores:\r\n - /user/logout #登出接口\r\n - /user/**/getMyDetail #获取自己详细信息\r\n - /user/api/admin/user/profile/**\r\n - /user/api/admin/user/getUserResources\r\n - /user/api/admin/user/getUserResourceTree\r\n - /user/api/admin/resource/queryResourceTree\r\n - /user/api/admin/resource/queryResourceLanguage\r\n - /zyly/api/uav/role/del #删除角色\r\n - /warehouse/**\r\n # - /developer/**\r\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\r\n sign-ignores:\r\n - /*/system/**\r\n','5034fec86f8f6e75c932823dd49ff72f','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1029,'cmii-admin-user.yml','3.2.3','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id: 0\n','d9dc791ffd4992ec3c82a0c9b66ad9dc','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1030,'cmii-omoc-gateway.yml','3.2.3','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1031,'cmii-omoc-process.yml','3.2.3','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1032,'cmii-omoc-user.yml','3.2.3','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1033,'cmii-open-gateway.yml','3.2.3','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1034,'cmii-uav-airspace.yml','3.2.3','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1035,'cmii-uav-alarm.yml','3.2.3','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1036,'cmii-uav-brain.yml','3.2.3','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1037,'cmii-uav-cloud-live.yml','3.2.3','bizName: 视频流媒体管理\r\ndbSchema: uav_cloud_live\r\ncmii:\r\n flow:\r\n chain:\r\n - name: createTempLive\r\n condition:\r\n - type: then\r\n value: \'createTempLive\'\r\n - name: createLive\r\n condition:\r\n - type: then\r\n value: \'createLive\'\r\n - name: gdrServer\r\n condition:\r\n - type: then\r\n value: \'gdr_server\'\r\n - name: aijob\r\n condition:\r\n - type: then\r\n value: \'createLive,ai_recognition\'\r\n - name: gdr2idr\r\n condition:\r\n - type: then\r\n value: \'createLive,gdr_transcode\'\r\nstream:\r\n engine:\r\n # host: 192.168.11.137:29999\r\n host: helm-vms-svc:29999\r\n wareHouseSrcId: 1323096648758464518\r\n #1. old 2. new\r\n partFileType: 1\r\n saveAllTsFile: false\r\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\r\n tsPath: /public/his/playback/ts\r\nvideo:\r\n merge:\r\n endpoint: ${com.cmii.chinamobile.video-merge.url}\r\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\r\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\r\nlive:\r\n#vms,srs-op\r\n defaultEngine: srs-op\r\n engines:\r\n - name: srs-op\r\n desc: live service powered by srs-op\r\n type: srs-op\r\n endpoint: http://helm-srs-op-svc:8080\r\n - name: srs-vms\r\n desc: live service powered by srs-vms\r\n type: srs-vms\r\n endpoint: helm-vms-svc:29999\r\n plugins:\r\n - pluginName: ai_recognition@1 # 人群统计\r\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@2 # 车\r\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@3 # 人群统计+车\r\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@4 # 车辆跟踪\r\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@8 # 车牌识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@16 # 火识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@32 # 烟雾识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\r\n # GDR说明:\r\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\r\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\r\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\r\n - pluginName: gdr_server\r\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\r\n - pluginName: gdr_transcode\r\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\r\n closeCheckStreamTask: true\r\n closeCheckPluginTask: true\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n group: uav,admin\r\ntranscode:\r\n gdr2idrModels:\r\n - wrjxh047/xh003\r\nrabbit:\r\n queue:\r\n aiQueue: aiVideo','00ec4a10e532925c02bf3dd6726a50da','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1038,'cmii-uav-clusters.yml','3.2.3','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1039,'cmii-uav-cms.yml','3.2.3','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1040,'cmii-uav-data-post-process.yml','3.2.3','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1041,'cmii-uav-developer.yml','3.2.3','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1042,'cmii-uav-device.yml','3.2.3','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1043,'cmii-uav-gateway.yml','3.2.3','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','89827dc770bd924c28622a2a13622cb5','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1044,'cmii-uav-industrial-portfolio.yml','3.2.3','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','de4187ea0b3b9f4d820bd55a806c0587','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1045,'cmii-uav-kpi-monitor.yml','3.2.3','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1046,'cmii-uav-logger.yml','3.2.3','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1047,'cmii-uav-material-warehouse.yml','3.2.3','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1048,'cmii-uav-mission.yml','3.2.3','bizName: 作业管理服务\r\ndbSchema: uav_mission\r\nspring:\r\n jmx:\r\n enabled: false\r\nmission:\r\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\r\n shareEnvPath: com/integration # @Deprecated 同上\r\n AiListerMqName: aiVideo\r\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\r\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\r\nribbon:\r\n OkToRetryOnAllOperations: true # 是否对所有操作重试\r\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\r\n MaxAutoRetries: 1 # 同一实例的重试次数\r\nbucket: foia\r\nmis:\r\n foia:\r\n pic:\r\n url: ${min.io.endPoint}/${bucket}/\r\nlog:\r\n flag: true\r\n','2aaa3cf655fdef4c49b0f87dc44c7c9e','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1049,'cmii-uav-mqtthandler.yml','3.2.3','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1050,'cmii-uav-notice.yml','3.2.3','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1051,'cmii-uav-oauth.yml','3.2.3','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','516c49ca7199e84395911fa79c793147','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1052,'cmii-uav-process.yml','3.2.3','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1053,'cmii-uav-security-system.yml','3.2.3','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1054,'cmii-uav-surveillance.yml','3.2.3','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1055,'cmii-uav-user.yml','3.2.3','bizName: 用户平台\r\ndbSchema: uav_user\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data,cmii-uav-notice\r\npassword:\r\n noticeChangePwdDay: 84\r\n expireDay: 91\r\n emailNotice: true\r\n smsNotice: true\r\n#notice address\r\n host: ${com.cmii.chinamobile.root}\r\n','d72f61f5f6979a80a298ed65de5a6ed3','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1056,'cmii-uav-waypoint.yml','3.2.3','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1057,'cmii-uav-gis-server.yml','3.2.3','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1058,'cmii-suav-supervision.yml','3.2.3','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1059,'cmii-suav-gateway.yml','3.2.3','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-05-25 15:56:36','2022-05-25 15:56:36',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1060,'cmii-backend-system.yml','3.2.3','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.3 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n url: http://8.135.102.76/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.227\n port: 6506\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','482dbc3586c43daebb0608c86b389861','2022-05-25 15:57:28','2022-05-27 11:41:39',NULL,'10.244.212.128','','','','','','yaml','',''),(1064,'cmii-admin-data.yml','3.2.4','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1065,'cmii-admin-gateway.yml','3.2.4','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n\n','7cf2f5b42567de25e9358742fef561cf','2022-06-08 10:48:44','2022-06-08 10:51:25',NULL,'10.244.212.128','','','','','','yaml','',''),(1066,'cmii-admin-user.yml','3.2.4','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id: 0\n','d9dc791ffd4992ec3c82a0c9b66ad9dc','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1067,'cmii-omoc-gateway.yml','3.2.4','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1068,'cmii-omoc-process.yml','3.2.4','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1069,'cmii-omoc-user.yml','3.2.4','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1070,'cmii-open-gateway.yml','3.2.4','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1071,'cmii-uav-airspace.yml','3.2.4','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1072,'cmii-uav-alarm.yml','3.2.4','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1073,'cmii-uav-brain.yml','3.2.4','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1074,'cmii-uav-cloud-live.yml','3.2.4','bizName: 视频流媒体管理\r\ndbSchema: uav_cloud_live\r\ncmii:\r\n flow:\r\n chain:\r\n - name: createTempLive\r\n condition:\r\n - type: then\r\n value: \'createTempLive\'\r\n - name: createLive\r\n condition:\r\n - type: then\r\n value: \'createLive\'\r\n - name: gdrServer\r\n condition:\r\n - type: then\r\n value: \'gdr_server\'\r\n - name: aijob\r\n condition:\r\n - type: then\r\n value: \'createLive,ai_recognition\'\r\n - name: gdr2idr\r\n condition:\r\n - type: then\r\n value: \'createLive,gdr_transcode\'\r\nstream:\r\n engine:\r\n # host: 192.168.11.137:29999\r\n host: helm-vms-svc:29999\r\n wareHouseSrcId: 1323096648758464518\r\n #1. old 2. new\r\n partFileType: 1\r\n saveAllTsFile: false\r\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\r\n tsPath: /public/his/playback/ts\r\nvideo:\r\n merge:\r\n endpoint: ${com.cmii.chinamobile.video-merge.url}\r\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\r\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\r\nlive:\r\n#vms,srs-op\r\n defaultEngine: srs-op\r\n engines:\r\n - name: srs-op\r\n desc: live service powered by srs-op\r\n type: srs-op\r\n endpoint: http://helm-srs-op-svc:8080\r\n - name: srs-vms\r\n desc: live service powered by srs-vms\r\n type: srs-vms\r\n endpoint: helm-vms-svc:29999\r\n plugins:\r\n - pluginName: ai_recognition@1 # 人群统计\r\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@2 # 车\r\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@3 # 人群统计+车\r\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@4 # 车辆跟踪\r\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@8 # 车牌识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@16 # 火识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\r\n - pluginName: ai_recognition@32 # 烟雾识别\r\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\r\n # GDR说明:\r\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\r\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\r\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\r\n - pluginName: gdr_server\r\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\r\n - pluginName: gdr_transcode\r\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\r\n closeCheckStreamTask: true\r\n closeCheckPluginTask: true\r\ncom:\r\n cmii:\r\n chinamobile:\r\n request:\r\n mapping:\r\n scan:\r\n group: uav,admin\r\ntranscode:\r\n gdr2idrModels:\r\n - wrjxh047/xh003\r\nrabbit:\r\n queue:\r\n aiQueue: aiVideo','00ec4a10e532925c02bf3dd6726a50da','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1075,'cmii-uav-clusters.yml','3.2.4','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1076,'cmii-uav-cms.yml','3.2.4','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1077,'cmii-uav-data-post-process.yml','3.2.4','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1078,'cmii-uav-developer.yml','3.2.4','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1079,'cmii-uav-device.yml','3.2.4','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1080,'cmii-uav-gateway.yml','3.2.4','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','cc93359c7c08ee7bbc60bd86f1e995b8','2022-06-08 10:48:44','2022-06-08 10:51:54',NULL,'10.244.212.128','','','','','','yaml','',''),(1081,'cmii-uav-industrial-portfolio.yml','3.2.4','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-06-08 10:48:44','2022-06-08 17:22:00',NULL,'10.244.212.128','','','','','','yaml','',''),(1082,'cmii-uav-kpi-monitor.yml','3.2.4','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1083,'cmii-uav-logger.yml','3.2.4','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1084,'cmii-uav-material-warehouse.yml','3.2.4','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1085,'cmii-uav-mission.yml','3.2.4','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 15000\n ReadTimeout: 15000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true','cdbc488916478b5575ac6d3e75a9bbc7','2022-06-08 10:48:44','2022-06-13 13:53:10',NULL,'10.244.212.128','','','','','','yaml','',''),(1086,'cmii-uav-mqtthandler.yml','3.2.4','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1087,'cmii-uav-notice.yml','3.2.4','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1088,'cmii-uav-oauth.yml','3.2.4','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','9cbc0762f9bbb123914d08038a548c3e','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1089,'cmii-uav-process.yml','3.2.4','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1090,'cmii-uav-security-system.yml','3.2.4','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1091,'cmii-uav-surveillance.yml','3.2.4','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1092,'cmii-uav-user.yml','3.2.4','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\n','da477a311a6beca97f7f6d5f90b1be0d','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1093,'cmii-uav-waypoint.yml','3.2.4','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1094,'cmii-uav-gis-server.yml','3.2.4','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1095,'cmii-suav-supervision.yml','3.2.4','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1096,'cmii-suav-gateway.yml','3.2.4','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-06-08 10:48:44','2022-06-08 10:48:44',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1099,'cmii-backend-system.yml','3.2.4','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.227\n port: 6506\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','33bb0947a0d7c26c653759245999f227','2022-06-08 10:52:15','2022-06-08 17:22:26',NULL,'10.244.212.128','','','','','','yaml','',''),(1109,'cmii-backend-system.yml','3.2.5','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.227\n port: 6506\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: WARN\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','79bc3433f325ba37baafa3b7a5d9f40d','2022-06-22 14:01:01','2022-06-22 14:03:09',NULL,'10.244.212.128','','','','','','yaml','',''),(1110,'cmii-admin-data.yml','3.2.5','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1111,'cmii-admin-gateway.yml','3.2.5','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1112,'cmii-admin-user.yml','3.2.5','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: true\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id:\nmin:\n io:\n bucket: pub-cms','fc6dc406f6da817b23819d98b4d32dbe','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1113,'cmii-omoc-gateway.yml','3.2.5','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1114,'cmii-omoc-process.yml','3.2.5','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1115,'cmii-omoc-user.yml','3.2.5','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1116,'cmii-open-gateway.yml','3.2.5','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1117,'cmii-uav-airspace.yml','3.2.5','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1118,'cmii-uav-alarm.yml','3.2.5','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1119,'cmii-uav-brain.yml','3.2.5','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1120,'cmii-uav-cloud-live.yml','3.2.5','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh047/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo','d6c3d2ad5e7583c26f83affad9ee2e06','2022-06-22 14:01:01','2022-07-05 10:15:47',NULL,'10.244.212.128','','','','','','yaml','',''),(1121,'cmii-uav-clusters.yml','3.2.5','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1122,'cmii-uav-cms.yml','3.2.5','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1123,'cmii-uav-data-post-process.yml','3.2.5','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1124,'cmii-uav-developer.yml','3.2.5','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1125,'cmii-uav-device.yml','3.2.5','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1126,'cmii-uav-gateway.yml','3.2.5','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n \n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','5e922f9b8a8bfcb5709634cf77969980','2022-06-22 14:01:01','2022-07-01 14:51:17',NULL,'10.244.212.128','','','','','','yaml','',''),(1127,'cmii-uav-industrial-portfolio.yml','3.2.5','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1128,'cmii-uav-kpi-monitor.yml','3.2.5','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1129,'cmii-uav-logger.yml','3.2.5','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1130,'cmii-uav-material-warehouse.yml','3.2.5','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1131,'cmii-uav-mission.yml','3.2.5','bizName: 作业管理服务\r\ndbSchema: uav_mission\r\nspring:\r\n jmx:\r\n enabled: false\r\nmission:\r\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\r\n shareEnvPath: com/integration # @Deprecated 同上\r\n AiListerMqName: aiVideo\r\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\r\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\r\nribbon:\r\n OkToRetryOnAllOperations: true # 是否对所有操作重试\r\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\r\n MaxAutoRetries: 1 # 同一实例的重试次数\r\nbucket: foia\r\nmis:\r\n foia:\r\n pic:\r\n url: ${min.io.endPoint}/${bucket}/\r\nlog:\r\n flag: true\r\n','2aaa3cf655fdef4c49b0f87dc44c7c9e','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1132,'cmii-uav-mqtthandler.yml','3.2.5','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1133,'cmii-uav-notice.yml','3.2.5','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1134,'cmii-uav-oauth.yml','3.2.5','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','9cbc0762f9bbb123914d08038a548c3e','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1135,'cmii-uav-process.yml','3.2.5','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1136,'cmii-uav-security-system.yml','3.2.5','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1137,'cmii-uav-surveillance.yml','3.2.5','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1138,'cmii-uav-user.yml','3.2.5','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\n','da477a311a6beca97f7f6d5f90b1be0d','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1139,'cmii-uav-waypoint.yml','3.2.5','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1140,'cmii-uav-gis-server.yml','3.2.5','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1141,'cmii-suav-supervision.yml','3.2.5','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1142,'cmii-suav-gateway.yml','3.2.5','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-06-22 14:01:01','2022-06-22 14:01:01',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1146,'cmii-uav-emergency.yml','3.2.5','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-07-01 14:51:46','2022-07-01 14:51:46',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1148,'cmii-admin-data.yml','3.3.0','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1149,'cmii-admin-gateway.yml','3.3.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1150,'cmii-admin-user.yml','3.3.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id:\nmin:\n io:\n bucket: pub-cms','ae9d7b8c49a4da4c7b52482908d0150d','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1151,'cmii-omoc-gateway.yml','3.3.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1152,'cmii-omoc-process.yml','3.3.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1153,'cmii-omoc-user.yml','3.3.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1154,'cmii-open-gateway.yml','3.3.0','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1155,'cmii-uav-airspace.yml','3.3.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1156,'cmii-uav-alarm.yml','3.3.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1157,'cmii-uav-brain.yml','3.3.0','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1158,'cmii-uav-cloud-live.yml','3.3.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo','b519daf3f8de5d52ddb2de7a3a4ffeeb','2022-07-08 14:21:18','2022-07-21 16:42:39',NULL,'10.244.212.128','','','','','','yaml','',''),(1159,'cmii-uav-clusters.yml','3.3.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1160,'cmii-uav-cms.yml','3.3.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1161,'cmii-uav-data-post-process.yml','3.3.0','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1162,'cmii-uav-developer.yml','3.3.0','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1163,'cmii-uav-device.yml','3.3.0','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1164,'cmii-uav-gateway.yml','3.3.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n \n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','10310c3400f4ba2d1891cd4a6fe13d3d','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1165,'cmii-uav-industrial-portfolio.yml','3.3.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1166,'cmii-uav-kpi-monitor.yml','3.3.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1167,'cmii-uav-logger.yml','3.3.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1168,'cmii-uav-material-warehouse.yml','3.3.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1169,'cmii-uav-mission.yml','3.3.0','bizName: 作业管理服务\r\ndbSchema: uav_mission\r\nspring:\r\n jmx:\r\n enabled: false\r\nmission:\r\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\r\n shareEnvPath: com/integration # @Deprecated 同上\r\n AiListerMqName: aiVideo\r\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\r\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\r\nribbon:\r\n OkToRetryOnAllOperations: true # 是否对所有操作重试\r\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\r\n MaxAutoRetries: 1 # 同一实例的重试次数\r\nbucket: foia\r\nmis:\r\n foia:\r\n pic:\r\n url: ${min.io.endPoint}/${bucket}/\r\nlog:\r\n flag: true\r\n','2aaa3cf655fdef4c49b0f87dc44c7c9e','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1170,'cmii-uav-mqtthandler.yml','3.3.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1171,'cmii-uav-notice.yml','3.3.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1172,'cmii-uav-oauth.yml','3.3.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','9cbc0762f9bbb123914d08038a548c3e','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1173,'cmii-uav-process.yml','3.3.0','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1174,'cmii-uav-security-system.yml','3.3.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1175,'cmii-uav-surveillance.yml','3.3.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1176,'cmii-uav-user.yml','3.3.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\n','da477a311a6beca97f7f6d5f90b1be0d','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1177,'cmii-uav-waypoint.yml','3.3.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1178,'cmii-uav-gis-server.yml','3.3.0','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1179,'cmii-suav-supervision.yml','3.3.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1180,'cmii-suav-gateway.yml','3.3.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-07-08 14:21:18','2022-07-08 14:21:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1181,'cmii-backend-system.yml','3.3.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.227\n port: 6506\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: WARN\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','79bc3433f325ba37baafa3b7a5d9f40d','2022-07-08 14:21:18','2022-07-08 14:22:52',NULL,'10.244.212.128','','','','','','yaml','',''),(1184,'cmii-admin-data.yml','3.3.1','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1185,'cmii-admin-gateway.yml','3.3.1','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1186,'cmii-admin-user.yml','3.3.1','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id:\nmin:\n io:\n bucket: pub-cms','ae9d7b8c49a4da4c7b52482908d0150d','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1187,'cmii-omoc-gateway.yml','3.3.1','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1188,'cmii-omoc-process.yml','3.3.1','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1189,'cmii-omoc-user.yml','3.3.1','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1190,'cmii-open-gateway.yml','3.3.1','bizName: 开放平台网关\r\nenable-swagger: false\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 5000\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - StripPrefix=1 #去掉路径的第一级如/logger\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n routes:\r\n - id: developer\r\n uri: lb://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/**\r\n - id: developer-socket\r\n uri: lb:ws://cmii-uav-developer\r\n predicates:\r\n - Path=/developer/oapi/wexecute\r\n - id: warehouse\r\n uri: lb://cmii-uav-material-warehouse\r\n predicates:\r\n - Path=/warehouse/**\r\nribbon:\r\n ReadTimeout: 3000\r\n ConnectTimeout: 3000\r\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\r\n\r\n#---------------------OAuth2---------------------\r\nsecurity:\r\n oauth2:\r\n permit-all: # 全部通行,不进行认证和鉴权\r\n - path: /test\r\n pathArgs:\r\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\r\n - /developer/login\r\n - /developer/code/login\r\n - /developer/registry\r\n - /developer/registry-for-test\r\n - /developer/oapi/**\r\n - /developer/profile/doUpdateEmail #用户修改邮箱\r\n - /developer/verifyCode/sendLogin #发送登陆验证码\r\n - /developer/verifyCode/checkLogin #验证登陆验证码\r\n - /developer/verifyCode/sendRegisty #发送注册验证码\r\n - /developer/verifyCode/checkRegisty #验证注册验证码\r\n - /developer/verifyCode/sendResetPassword #发送找回密码\r\n - /developer/verifyCode/checkResetPassword #验证找回密码\r\n - /developer/verifyCode/getImgCode\r\n - /developer/verifyCode/getImageCode\r\n - /developer/verifyCode/checkImgCode\r\n - /developer/verifyCode/get_image_code_by_image_id\r\n - /developer/profile/findPwd #找回密码\r\n - /developer/docs\r\n - /developer/docs/**\r\n - /**/v2/api-docs/**\r\n - /**/swagger-resources/**\r\n - /**/webjars/**\r\n - /**/doc.html\r\n - /**/swagger-ui.html\r\n - /error\r\n - /favicon.ico\r\n - /*/public/**\r\n - /warehouse/api/v1/warehouse/project/user/getToken\r\n - /warehouse/api/v1/warehouse/project/default/putObject\r\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\r\n authority-ignores: # 不进行鉴权,比如个人的接口\r\n - /*/personal/**\r\n - /developer/profile/**\r\n - /developer/logout #登出接口\r\n - /warehouse/**\r\n sign-ignores: #忽略签名\r\n - /system/\r\n\r\n','678604175dd5c744ddf757b57cc16f25','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1191,'cmii-uav-airspace.yml','3.3.1','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1192,'cmii-uav-alarm.yml','3.3.1','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1193,'cmii-uav-brain.yml','3.3.1','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1194,'cmii-uav-cloud-live.yml','3.3.1','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo','b519daf3f8de5d52ddb2de7a3a4ffeeb','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1195,'cmii-uav-clusters.yml','3.3.1','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1196,'cmii-uav-cms.yml','3.3.1','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1197,'cmii-uav-data-post-process.yml','3.3.1','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1198,'cmii-uav-developer.yml','3.3.1','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1199,'cmii-uav-device.yml','3.3.1','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1200,'cmii-uav-gateway.yml','3.3.1','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','559b3dc010fc74d94da965143566676f','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1201,'cmii-uav-industrial-portfolio.yml','3.3.1','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1202,'cmii-uav-kpi-monitor.yml','3.3.1','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1203,'cmii-uav-logger.yml','3.3.1','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1204,'cmii-uav-material-warehouse.yml','3.3.1','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1205,'cmii-uav-mission.yml','3.3.1','bizName: 作业管理服务\r\ndbSchema: uav_mission\r\nspring:\r\n jmx:\r\n enabled: false\r\nmission:\r\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\r\n shareEnvPath: com/integration # @Deprecated 同上\r\n AiListerMqName: aiVideo\r\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\r\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\r\nribbon:\r\n OkToRetryOnAllOperations: true # 是否对所有操作重试\r\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\r\n MaxAutoRetries: 1 # 同一实例的重试次数\r\nbucket: foia\r\nmis:\r\n foia:\r\n pic:\r\n url: ${min.io.endPoint}/${bucket}/\r\nlog:\r\n flag: true\r\n','2aaa3cf655fdef4c49b0f87dc44c7c9e','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1206,'cmii-uav-mqtthandler.yml','3.3.1','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1207,'cmii-uav-notice.yml','3.3.1','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1208,'cmii-uav-oauth.yml','3.3.1','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','9cbc0762f9bbb123914d08038a548c3e','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1209,'cmii-uav-process.yml','3.3.1','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1210,'cmii-uav-security-system.yml','3.3.1','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1211,'cmii-uav-surveillance.yml','3.3.1','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1212,'cmii-uav-user.yml','3.3.1','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\n','da477a311a6beca97f7f6d5f90b1be0d','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1213,'cmii-uav-waypoint.yml','3.3.1','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1214,'cmii-uav-gis-server.yml','3.3.1','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1215,'cmii-suav-supervision.yml','3.3.1','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1216,'cmii-suav-gateway.yml','3.3.1','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-07-25 15:58:15','2022-07-25 15:58:15',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1217,'cmii-backend-system.yml','3.3.1','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.227\n port: 6506\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: WARN\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','79bc3433f325ba37baafa3b7a5d9f40d','2022-07-25 15:58:49','2022-07-29 15:25:24',NULL,'10.244.212.128','','','','','','yaml','',''),(1221,'cmii-admin-data.yml','3.3.2','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1222,'cmii-admin-gateway.yml','3.3.2','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1223,'cmii-admin-user.yml','3.3.2','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id:\nmin:\n io:\n bucket: pub-cms','ae9d7b8c49a4da4c7b52482908d0150d','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1224,'cmii-omoc-gateway.yml','3.3.2','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1225,'cmii-omoc-process.yml','3.3.2','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1226,'cmii-omoc-user.yml','3.3.2','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1227,'cmii-open-gateway.yml','3.3.2','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-08-04 17:39:31','2022-08-25 12:03:25',NULL,'10.244.212.128','','','','','','yaml','',''),(1228,'cmii-uav-airspace.yml','3.3.2','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1229,'cmii-uav-alarm.yml','3.3.2','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1230,'cmii-uav-brain.yml','3.3.2','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1231,'cmii-uav-cloud-live.yml','3.3.2','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo','bd4e25bd1b2f091df527130334b2650d','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1232,'cmii-uav-clusters.yml','3.3.2','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1233,'cmii-uav-cms.yml','3.3.2','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1234,'cmii-uav-data-post-process.yml','3.3.2','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1235,'cmii-uav-developer.yml','3.3.2','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1236,'cmii-uav-device.yml','3.3.2','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1237,'cmii-uav-gateway.yml','3.3.2','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule','10a93ef3b92a0e4c1b1751a974f70fb4','2022-08-04 17:39:31','2022-08-22 15:22:50',NULL,'10.244.212.128','','','','','','yaml','',''),(1238,'cmii-uav-industrial-portfolio.yml','3.3.2','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1239,'cmii-uav-kpi-monitor.yml','3.3.2','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1240,'cmii-uav-logger.yml','3.3.2','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1241,'cmii-uav-material-warehouse.yml','3.3.2','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1242,'cmii-uav-mission.yml','3.3.2','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true','79dd4015b20118ee6ef42efce9ce2017','2022-08-04 17:39:31','2022-08-26 16:56:50',NULL,'10.244.212.128','','','','','','yaml','',''),(1243,'cmii-uav-mqtthandler.yml','3.3.2','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1244,'cmii-uav-notice.yml','3.3.2','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1245,'cmii-uav-oauth.yml','3.3.2','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-08-04 17:39:31','2022-08-23 09:35:36',NULL,'10.244.212.128','','','','','','yaml','',''),(1246,'cmii-uav-process.yml','3.3.2','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1247,'cmii-uav-security-system.yml','3.3.2','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1248,'cmii-uav-surveillance.yml','3.3.2','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1249,'cmii-uav-user.yml','3.3.2','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\n','da477a311a6beca97f7f6d5f90b1be0d','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1250,'cmii-uav-waypoint.yml','3.3.2','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1251,'cmii-uav-gis-server.yml','3.3.2','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1252,'cmii-suav-supervision.yml','3.3.2','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1253,'cmii-suav-gateway.yml','3.3.2','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1254,'cmii-backend-system.yml','3.3.2','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: cmlc-stream-proxy\n port: 8080\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: WARN\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','bcd743b3326b3528cbb2ff1a306f8d32','2022-08-04 17:39:31','2022-08-26 15:58:27',NULL,'10.244.212.128','','','','','','yaml','',''),(1255,'cmii-app-release','3.3.2','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-08-04 17:39:31','2022-08-04 17:39:31',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1265,'cmii-admin-data.yml','3.3.3','bizName: 字典表单管理\r\ndbSchema: admin_data\r\napiDeclaration: uav,admin\r\nidgen:\r\n datacenter-id: 1\r\n worker-id: 1\r\nmap:\r\n gaode:\r\n key: 50c5a7ac73f7c97960f5c923bcb804dc\r\narea:\r\n limitProvince: false\r\n limitProvinceAreaCode: 810000\r\n\r\n','aefbcb0708b2ea88e140c517d32821c6','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1266,'cmii-admin-gateway.yml','3.3.3','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2022-08-29 15:16:17','2022-09-06 16:55:17',NULL,'10.244.212.128','','','','','','yaml','',''),(1267,'cmii-admin-user.yml','3.3.3','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nidgen:\n worker-id: 0\n datacenter-id:\nmin:\n io:\n bucket: pub-cms','ae9d7b8c49a4da4c7b52482908d0150d','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1268,'cmii-omoc-gateway.yml','3.3.3','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1269,'cmii-omoc-process.yml','3.3.3','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1270,'cmii-omoc-user.yml','3.3.3','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1271,'cmii-open-gateway.yml','3.3.3','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1272,'cmii-uav-airspace.yml','3.3.3','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1273,'cmii-uav-alarm.yml','3.3.3','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1274,'cmii-uav-brain.yml','3.3.3','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1275,'cmii-uav-cloud-live.yml','3.3.3','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-srs-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','4f438ff5d31990ae1bb35c01cee810d6','2022-08-29 15:16:17','2022-08-30 15:07:15',NULL,'10.244.212.128','','','','','','yaml','',''),(1276,'cmii-uav-clusters.yml','3.3.3','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1277,'cmii-uav-cms.yml','3.3.3','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1278,'cmii-uav-data-post-process.yml','3.3.3','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1279,'cmii-uav-developer.yml','3.3.3','bizName: 开发者平台\r\ndbSchema: uav_developer\r\napiDeclaration: admin\r\nspring:\r\n cloud:\r\n gateway:\r\n httpclient:\r\n pool:\r\n max-idle-time: 5000\r\n max-connections: 500\r\n discovery:\r\n locator:\r\n enabled: true\r\n default-filters:\r\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\r\n open:\r\n login:\r\n img-code-support: true\r\n kicked-support: false\r\n login-error-limit: true\r\n login-error-limit-count: 5\r\n login-error-limit-time: 300\r\n session-timeout: 3600\r\n request:\r\n #是否校验签名\r\n check-sign: true\r\n #默认限制额度\r\n limit-quality: 100\r\n #请求的超时时间\r\n timeout: 300\r\n #配置接口刷新时间,单位秒\r\n api-sync-interval: 120\r\n #是否校验时间\r\n check-time: true\r\nidgen:\r\n datacenter-id: 3\r\n worker-id: 3\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-uav-user\r\n','41f21a494328d3f4a28fcbe65b137b18','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1280,'cmii-uav-device.yml','3.3.3','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1281,'cmii-uav-gateway.yml','3.3.3','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/dictionary/fetch_html_from_url\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /dictionary/fetch_html_from_url #泸定临时加的\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule','41bca67b747a106fbd5d83a1eeb5291a','2022-08-29 15:16:17','2022-09-06 16:54:01',NULL,'10.244.212.128','','','','','','yaml','',''),(1282,'cmii-uav-industrial-portfolio.yml','3.3.3','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1283,'cmii-uav-kpi-monitor.yml','3.3.3','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1284,'cmii-uav-logger.yml','3.3.3','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1285,'cmii-uav-material-warehouse.yml','3.3.3','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1286,'cmii-uav-mission.yml','3.3.3','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true','79dd4015b20118ee6ef42efce9ce2017','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1287,'cmii-uav-mqtthandler.yml','3.3.3','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1288,'cmii-uav-notice.yml','3.3.3','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 10\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open','548ed7b33935712afd964e65a0e73f06','2022-08-29 15:16:17','2022-09-02 15:49:49',NULL,'10.244.212.128','','','','','','yaml','',''),(1289,'cmii-uav-oauth.yml','3.3.3','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1290,'cmii-uav-process.yml','3.3.3','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1291,'cmii-uav-security-system.yml','3.3.3','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1292,'cmii-uav-surveillance.yml','3.3.3','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1293,'cmii-uav-user.yml','3.3.3','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1294,'cmii-uav-waypoint.yml','3.3.3','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1295,'cmii-uav-gis-server.yml','3.3.3','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1296,'cmii-suav-supervision.yml','3.3.3','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1297,'cmii-suav-gateway.yml','3.3.3','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1298,'cmii-backend-system.yml','3.3.3','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: cmlc-stream-proxy\n port: 8080\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','482a45edcea9cf7595e040f6cf2c9268','2022-08-29 15:16:17','2022-09-02 16:35:53',NULL,'10.244.212.128','','','','','','yaml','',''),(1299,'cmii-app-release','3.3.3','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,NULL,NULL,''),(1300,'cmii-uav-emergency.yml','3.3.3','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-08-29 15:16:17','2022-08-29 15:16:17',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1309,'cmii-uav-clusters.yml','uav','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n platform:\n info:\n scan-package: com.cmii.chinamobile\n enable-swagger: true\n login:\n img-code-support: false\n permit-all: \n - /api/center/anapp/info\n - /api/center/anapp/url\n kicked-support: false\n login-error-limit: false\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.80:33306/uav_cluster?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: root\n password: boge14@Level5\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n main:\n allow-bean-definition-overriding: true\n redis:\n host: 192.168.11.170\n port: 36379\n database: 0\n password: Mcache@4522\n redisson:\n model: single\n password: Mcache@4522\n single-server-config:\n address: ${spring.redis.host}:${spring.redis.port}\n database: ${spring.redis.database}\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n register-enabled: false\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.uavcloud-dev.io\'\n load-balance-endpoint-port: 443\n clients: cmii-admin-data,cmii-admin-user,cmii-uav-notice,cmii-uav-device,cmii-uav-user,cmii-uav-mqtthandler,cmii-uav-material-warehouse\n scheme: https\n rabbitmq:\n host: 192.168.35.71\n port: 35672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /dev\n listener:\n direct:\n acknowledge-mode: manual # 开启手动确认模式\n simple:\n acknowledge-mode: manual # 开启手动确认模式\n # add by wdd\n work: inner\n queues:\n name: queue_dev\n delay: ${spring.rabbitmq.work}_ttl_${spring.rabbitmq.queues.name}\n deploy: ${spring.rabbitmq.work}_direct_${spring.rabbitmq.queues.name}\n dead: ${spring.rabbitmq.work}_dead_${spring.rabbitmq.queues.name}\n status: ${spring.rabbitmq.work}_status_${spring.rabbitmq.queues.name}\n exchanges:\n name: exchange_dev\n delay: ${spring.rabbitmq.work}_ttl_${spring.rabbitmq.exchanges.name}\n deploy: ${spring.rabbitmq.work}_direct_${spring.rabbitmq.exchanges.name}\n dead: ${spring.rabbitmq.work}_dead_${spring.rabbitmq.exchanges.name}\n status: ${spring.rabbitmq.work}_status_${spring.rabbitmq.exchanges.name}\n routings:\n name: routingkey_dev\n delay: ${spring.rabbitmq.work}_ttl_${spring.rabbitmq.routings.name}\n deploy: ${spring.rabbitmq.work}_direct_${spring.rabbitmq.routings.name}\n dead: ${spring.rabbitmq.work}_dead_${spring.rabbitmq.routings.name}\n status: ${spring.rabbitmq.work}_status_${spring.rabbitmq.routings.name}\n\nmqtt:\n # host: tcp://dev-01.ecs.io:31883\n host: tcp://192.168.11.170:39831\n username: uavdeve\n password: Develo@1328\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.11.170:39831\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: SkyCenter_Master\n #消息订阅者clientId\n subscribeClientId: SkyCenter_Master\n\n\n## 关闭open-tracing\nopentracing:\n jaeger:\n enabled: false\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: jaeger-agent.testing.svc\n port: 6831\n\nrancher:\n io:\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\n endPoint: https://rancher.107474.xyz/\n # apiKey: token-5hvt4:wt9kz5jjzqgcxpkvcld5tbtml7rdfdx6ffj6m5twld2x8znlft4jr2\n apiKey: token-b9bv8:rjmzsgj4g5l4r74zr4qhp8ccmn8hjgkf9bf68d25nlkbmp8pql7hq5\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\n scaleQuota: 10\nprometheus:\n # 设置Prometheus的瞬时查询的平均值计算时间范围\n instantQueryCalculateRange: 5m\n local-cluster: https://rancher.107474.xyz/k8s/clusters/local/api/v1/namespaces/cattle-prometheus/services/http:access-prometheus:80/proxy/api/v1/query/\n import-cluster: https://rancher.107474.xyz/k8s/clusters/c-l8nmh/api/v1/namespaces/cattle-prometheus/services/http:access-prometheus:80/proxy/api/v1/query/\n\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n logic-delete-field: status\n logic-delete-value: 1\n logic-not-delete-value: 0\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/clusters/mapper/xml/**/*.xml\n\n\n#feign:\n# compression:\n# response:\n# enabled: true\n\nlogging:\n level:\n com:\n cmii:\n chinamobile:\n clusters:\n feign: debug\n','708b4b4e2ae45a0476cb68239c6ac639','2022-09-14 17:38:32','2022-09-14 18:02:01',NULL,'10.244.212.128','','','','','','yaml','',''),(1311,'cmii-uav-clusters.yml','uav-bak','server:\n port: 8080\n servlet:\n context-path: /\nspring:\n platform:\n info:\n scan-package: com.cmii.chinamobile\n enable-swagger: true\n login:\n img-code-support: false\n permit-all:\n - /login\n - /api/center/core/**\n - /getImageCode\n - /get_image_code_by_image_id\n - /static/**\n - /error/**\n - /favicon.ico\n - /swagger-resources/**\n - /webjars/**\n - /v2/**\n - /v3/**\n - /doc.html\n - \"*.html\"\n - /ui/**\n - /swagger-ui.html\n - /api/center/user/add\n - /api/center/license/**\n - /api/center/anapp/**\n kicked-support: false\n login-error-limit: false\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.80:33306/uav_cluster?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: root\n password: boge14@Level5\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n main:\n allow-bean-definition-overriding: true\n redis:\n host: 192.168.11.170\n port: 36379\n database: 0\n password: Mcache@4522\n redisson:\n model: single\n password: Mcache@4522\n single-server-config:\n address: ${spring.redis.host}:${spring.redis.port}\n database: ${spring.redis.database}\n cloud:\n nacos:\n discovery:\n server-addr: helm-nacos:8848\n register-enabled: false\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.uavcloud-dev.io\'\n load-balance-endpoint-port: 443\n clients: cmii-admin-data,cmii-admin-user,cmii-uav-notice,cmii-uav-device,cmii-uav-user,cmii-uav-mqtthandler,cmii-uav-material-warehouse\n scheme: https\n rabbitmq:\n host: 192.168.35.71\n port: 35672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /dev\n listener:\n direct:\n acknowledge-mode: manual # 开启手动确认模式\n simple:\n acknowledge-mode: manual # 开启手动确认模式\n # add by wdd\n work: inner\n queues:\n name: queue_dev\n delay: ${spring.rabbitmq.work}_ttl_${spring.rabbitmq.queues.name}\n deploy: ${spring.rabbitmq.work}_direct_${spring.rabbitmq.queues.name}\n dead: ${spring.rabbitmq.work}_dead_${spring.rabbitmq.queues.name}\n status: ${spring.rabbitmq.work}_status_${spring.rabbitmq.queues.name}\n exchanges:\n name: exchange_dev\n delay: ${spring.rabbitmq.work}_ttl_${spring.rabbitmq.exchanges.name}\n deploy: ${spring.rabbitmq.work}_direct_${spring.rabbitmq.exchanges.name}\n dead: ${spring.rabbitmq.work}_dead_${spring.rabbitmq.exchanges.name}\n status: ${spring.rabbitmq.work}_status_${spring.rabbitmq.exchanges.name}\n routings:\n name: routingkey_dev\n delay: ${spring.rabbitmq.work}_ttl_${spring.rabbitmq.routings.name}\n deploy: ${spring.rabbitmq.work}_direct_${spring.rabbitmq.routings.name}\n dead: ${spring.rabbitmq.work}_dead_${spring.rabbitmq.routings.name}\n status: ${spring.rabbitmq.work}_status_${spring.rabbitmq.routings.name}\n\nmqtt:\n # host: tcp://dev-01.ecs.io:31883\n host: tcp://192.168.11.170:39831\n username: uavdeve\n password: Develo@1328\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.11.170:39831\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: SkyCenter_Master\n #消息订阅者clientId\n subscribeClientId: SkyCenter_Master\n\n\n## 关闭open-tracing\nopentracing:\n jaeger:\n enabled: false\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: jaeger-agent.testing.svc\n port: 6831\n\nrancher:\n io:\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\n endPoint: https://rancher.107474.xyz/\n # apiKey: token-5hvt4:wt9kz5jjzqgcxpkvcld5tbtml7rdfdx6ffj6m5twld2x8znlft4jr2\n apiKey: token-b9bv8:rjmzsgj4g5l4r74zr4qhp8ccmn8hjgkf9bf68d25nlkbmp8pql7hq5\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\n scaleQuota: 10\nprometheus:\n # 设置Prometheus的瞬时查询的平均值计算时间范围\n instantQueryCalculateRange: 5m\n local-cluster: https://rancher.107474.xyz/k8s/clusters/local/api/v1/namespaces/cattle-prometheus/services/http:access-prometheus:80/proxy/api/v1/query/\n import-cluster: https://rancher.107474.xyz/k8s/clusters/c-l8nmh/api/v1/namespaces/cattle-prometheus/services/http:access-prometheus:80/proxy/api/v1/query/\n\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n logic-delete-field: status\n logic-delete-value: 1\n logic-not-delete-value: 0\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/clusters/mapper/xml/**/*.xml\n\n\n#feign:\n# compression:\n# response:\n# enabled: true\n\nlogging:\n level:\n com:\n cmii:\n chinamobile:\n clusters:\n feign: debug\n','4f9370557f204b104d07b0da4ee25a14','2022-09-14 18:01:16','2022-09-14 18:01:16',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1313,'cmii-admin-data.yml','4.0.1','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n\n','b587b1be91847b660d1bbd67e8f199a6','2022-09-20 14:01:33','2022-09-30 11:28:29',NULL,'10.244.212.128','','','','','','yaml','',''),(1314,'cmii-admin-gateway.yml','4.0.1','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1315,'cmii-admin-user.yml','4.0.1','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2022-09-20 14:01:33','2022-09-30 11:28:53',NULL,'10.244.212.128','','','','','','yaml','',''),(1316,'cmii-omoc-gateway.yml','4.0.1','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1317,'cmii-omoc-process.yml','4.0.1','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1318,'cmii-omoc-user.yml','4.0.1','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1319,'cmii-open-gateway.yml','4.0.1','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1320,'cmii-uav-airspace.yml','4.0.1','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1321,'cmii-uav-alarm.yml','4.0.1','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1322,'cmii-uav-brain.yml','4.0.1','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1323,'cmii-uav-cloud-live.yml','4.0.1','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-live-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','4333e9f9cfb5a52c67f165e75ac1d448','2022-09-20 14:01:33','2022-09-26 17:21:44',NULL,'10.244.212.128','','','','','','yaml','',''),(1324,'cmii-uav-clusters.yml','4.0.1','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1325,'cmii-uav-cms.yml','4.0.1','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1326,'cmii-uav-data-post-process.yml','4.0.1','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1327,'cmii-uav-developer.yml','4.0.1','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2022-09-20 14:01:33','2022-09-30 11:29:15',NULL,'10.244.212.128','','','','','','yaml','',''),(1328,'cmii-uav-device.yml','4.0.1','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1329,'cmii-uav-gateway.yml','4.0.1','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','9023cd66d6bce9ca282a08f69604c97f','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1330,'cmii-uav-industrial-portfolio.yml','4.0.1','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1331,'cmii-uav-kpi-monitor.yml','4.0.1','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1332,'cmii-uav-logger.yml','4.0.1','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1333,'cmii-uav-material-warehouse.yml','4.0.1','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','13787e7b9cedd023d739c1c569773055','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1334,'cmii-uav-mission.yml','4.0.1','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1335,'cmii-uav-mqtthandler.yml','4.0.1','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1336,'cmii-uav-notice.yml','4.0.1','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1337,'cmii-uav-oauth.yml','4.0.1','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1338,'cmii-uav-process.yml','4.0.1','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1339,'cmii-uav-security-system.yml','4.0.1','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1340,'cmii-uav-surveillance.yml','4.0.1','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1341,'cmii-uav-user.yml','4.0.1','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1342,'cmii-uav-waypoint.yml','4.0.1','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1343,'cmii-uav-gis-server.yml','4.0.1','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1344,'cmii-suav-supervision.yml','4.0.1','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1345,'cmii-suav-gateway.yml','4.0.1','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1346,'cmii-app-release','4.0.1','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,NULL,NULL,''),(1347,'cmii-uav-emergency.yml','4.0.1','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-09-20 14:01:33','2022-09-20 14:01:33',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1348,'cmii-backend-system.yml','4.0.1','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','0370dd14c60d774dfa83b0729282f317','2022-09-20 14:01:33','2022-11-21 10:29:16',NULL,'10.244.212.128','','','','','','yaml','',''),(1360,'cmii-admin-data.yml','4.0.2','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n\n','b587b1be91847b660d1bbd67e8f199a6','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1361,'cmii-admin-gateway.yml','4.0.2','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1362,'cmii-admin-user.yml','4.0.2','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1363,'cmii-omoc-gateway.yml','4.0.2','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1364,'cmii-omoc-process.yml','4.0.2','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1365,'cmii-omoc-user.yml','4.0.2','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1366,'cmii-open-gateway.yml','4.0.2','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1367,'cmii-uav-airspace.yml','4.0.2','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1368,'cmii-uav-alarm.yml','4.0.2','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1369,'cmii-uav-brain.yml','4.0.2','bizName: AI大脑\r\ndbSchema: uav_brain\r\nbrain:\r\n ai:\r\n server:\r\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\r\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\r\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\r\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\r\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\r\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\r\noauth:\r\n grantType: authorization_code\r\n clientId: APP_0BF17ayVaSpY89O4\r\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\r\n','8009f44f24763c27ab8e56578baa345a','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1370,'cmii-uav-cloud-live.yml','4.0.2','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-live-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','74d215a8598c230f9fa7f2123731de14','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1371,'cmii-uav-clusters.yml','4.0.2','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1372,'cmii-uav-cms.yml','4.0.2','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1373,'cmii-uav-data-post-process.yml','4.0.2','bizName: 内业处理\r\ndbSchema: uav_data_post_process\r\nmin:\r\n io:\r\n srcId: 1323096648758464516\r\nterra:\r\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\r\n url: ${com.cmii.chinamobile.terra-cloud.url}\r\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\r\nfeign:\r\n httpclient:\r\n connection-timeout: 600000\r\nribbon:\r\n ReadTimeout: 600000\r\n ConnectTimeout: 600000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\namap:\r\n secretKey: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\nfilePath:\r\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\r\n saveFileBasePath: /cmii/cache/datapost/upload/\r\n#第三方系统接入权限管理配置\r\noauth:\r\n visual:\r\n grantType: authorization_code\r\n clientId: APP_XCkvK89FeX6lGp0Z\r\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\r\n terra:\r\n grantType: authorization_code\r\n clientId: APP_tN53ELBlzbRWjDHq\r\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\r\n dataprocess:\r\n grantType: authorization_code\r\n clientId: APP_l4HIMixfIXhlCTi9\r\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\r\n\r\n','99668dbb808b0422dfaef2ae8df4c222','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1374,'cmii-uav-developer.yml','4.0.2','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1375,'cmii-uav-device.yml','4.0.2','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1376,'cmii-uav-gateway.yml','4.0.2','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','9023cd66d6bce9ca282a08f69604c97f','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1377,'cmii-uav-industrial-portfolio.yml','4.0.2','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1378,'cmii-uav-kpi-monitor.yml','4.0.2','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1379,'cmii-uav-logger.yml','4.0.2','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1380,'cmii-uav-material-warehouse.yml','4.0.2','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1381,'cmii-uav-mission.yml','4.0.2','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1382,'cmii-uav-mqtthandler.yml','4.0.2','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1383,'cmii-uav-notice.yml','4.0.2','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1384,'cmii-uav-oauth.yml','4.0.2','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1385,'cmii-uav-process.yml','4.0.2','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1386,'cmii-uav-security-system.yml','4.0.2','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1387,'cmii-uav-surveillance.yml','4.0.2','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1388,'cmii-uav-user.yml','4.0.2','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1389,'cmii-uav-waypoint.yml','4.0.2','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1390,'cmii-uav-gis-server.yml','4.0.2','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1391,'cmii-suav-supervision.yml','4.0.2','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1392,'cmii-suav-gateway.yml','4.0.2','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1393,'cmii-app-release','4.0.2','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,NULL,NULL,''),(1394,'cmii-uav-emergency.yml','4.0.2','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-10-12 15:54:02','2022-10-12 15:54:02',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1395,'cmii-backend-system.yml','4.0.2','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: true\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','3aa8314e433d5655bd4a80b462b9bd1a','2022-10-12 15:54:02','2022-11-21 10:29:02',NULL,'10.244.212.128','','','','','','yaml','',''),(1400,'cmii-admin-data.yml','4.0.3','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n\n','b587b1be91847b660d1bbd67e8f199a6','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1401,'cmii-admin-gateway.yml','4.0.3','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1402,'cmii-admin-user.yml','4.0.3','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1403,'cmii-omoc-gateway.yml','4.0.3','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1404,'cmii-omoc-process.yml','4.0.3','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1405,'cmii-omoc-user.yml','4.0.3','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1406,'cmii-open-gateway.yml','4.0.3','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1407,'cmii-uav-airspace.yml','4.0.3','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1408,'cmii-uav-alarm.yml','4.0.3','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1409,'cmii-uav-brain.yml','4.0.3','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1410,'cmii-uav-cloud-live.yml','4.0.3','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-live-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','74d215a8598c230f9fa7f2123731de14','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1411,'cmii-uav-clusters.yml','4.0.3','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1412,'cmii-uav-cms.yml','4.0.3','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1413,'cmii-uav-data-post-process.yml','4.0.3','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2022-10-25 16:00:42','2022-11-08 15:37:49',NULL,'10.244.212.128','','','','','','yaml','',''),(1414,'cmii-uav-developer.yml','4.0.3','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1415,'cmii-uav-device.yml','4.0.3','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1416,'cmii-uav-gateway.yml','4.0.3','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','9023cd66d6bce9ca282a08f69604c97f','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1417,'cmii-uav-industrial-portfolio.yml','4.0.3','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1418,'cmii-uav-kpi-monitor.yml','4.0.3','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1419,'cmii-uav-logger.yml','4.0.3','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1420,'cmii-uav-material-warehouse.yml','4.0.3','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1421,'cmii-uav-mission.yml','4.0.3','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1422,'cmii-uav-mqtthandler.yml','4.0.3','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1423,'cmii-uav-notice.yml','4.0.3','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''); -INSERT INTO `config_info` VALUES (1424,'cmii-uav-oauth.yml','4.0.3','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1425,'cmii-uav-process.yml','4.0.3','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1426,'cmii-uav-security-system.yml','4.0.3','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1427,'cmii-uav-surveillance.yml','4.0.3','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1428,'cmii-uav-user.yml','4.0.3','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1429,'cmii-uav-waypoint.yml','4.0.3','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1430,'cmii-uav-gis-server.yml','4.0.3','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1431,'cmii-suav-supervision.yml','4.0.3','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1432,'cmii-suav-gateway.yml','4.0.3','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1433,'cmii-app-release','4.0.3','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,NULL,NULL,''),(1434,'cmii-uav-emergency.yml','4.0.3','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1435,'cmii-backend-system.yml','4.0.3','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: true\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','69519a3fc2a6b2d9774edfec413f5a80','2022-10-25 16:00:42','2022-11-21 10:28:46',NULL,'10.244.212.128','','','','','','yaml','',''),(1439,'cmii-admin-data.yml','4.0.4','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n\n','b587b1be91847b660d1bbd67e8f199a6','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1440,'cmii-admin-gateway.yml','4.0.4','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1441,'cmii-admin-user.yml','4.0.4','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1442,'cmii-omoc-gateway.yml','4.0.4','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1443,'cmii-omoc-process.yml','4.0.4','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1444,'cmii-omoc-user.yml','4.0.4','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1445,'cmii-open-gateway.yml','4.0.4','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1446,'cmii-uav-airspace.yml','4.0.4','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1447,'cmii-uav-alarm.yml','4.0.4','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1448,'cmii-uav-brain.yml','4.0.4','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1449,'cmii-uav-cloud-live.yml','4.0.4','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-live-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','74d215a8598c230f9fa7f2123731de14','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1450,'cmii-uav-clusters.yml','4.0.4','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1451,'cmii-uav-cms.yml','4.0.4','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1452,'cmii-uav-data-post-process.yml','4.0.4','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1453,'cmii-uav-developer.yml','4.0.4','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1454,'cmii-uav-device.yml','4.0.4','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1455,'cmii-uav-gateway.yml','4.0.4','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a6dc4bca591e542310f6a6fb6236022a','2022-11-09 16:41:42','2022-11-14 11:11:26',NULL,'10.244.212.128','','','','','','yaml','',''),(1456,'cmii-uav-industrial-portfolio.yml','4.0.4','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1457,'cmii-uav-kpi-monitor.yml','4.0.4','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1458,'cmii-uav-logger.yml','4.0.4','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1459,'cmii-uav-material-warehouse.yml','4.0.4','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1460,'cmii-uav-mission.yml','4.0.4','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1461,'cmii-uav-mqtthandler.yml','4.0.4','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1462,'cmii-uav-notice.yml','4.0.4','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','278e2d7727a594b26f886eff9917df1b','2022-11-09 16:41:42','2022-11-14 16:13:21',NULL,'10.244.212.128','','','','','','yaml','',''),(1463,'cmii-uav-oauth.yml','4.0.4','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1464,'cmii-uav-process.yml','4.0.4','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1465,'cmii-uav-security-system.yml','4.0.4','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1466,'cmii-uav-surveillance.yml','4.0.4','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1467,'cmii-uav-user.yml','4.0.4','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1468,'cmii-uav-waypoint.yml','4.0.4','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1469,'cmii-uav-gis-server.yml','4.0.4','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1470,'cmii-suav-supervision.yml','4.0.4','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1471,'cmii-suav-gateway.yml','4.0.4','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1472,'cmii-app-release','4.0.4','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1473,'cmii-uav-emergency.yml','4.0.4','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1474,'cmii-backend-system.yml','4.0.4','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: true\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','69519a3fc2a6b2d9774edfec413f5a80','2022-11-09 16:41:42','2022-11-21 10:28:35',NULL,'10.244.212.128','','','','','','yaml','',''),(1482,'nacos.cfg.dataIdfoo','foo','helloWorld','1a833da63a6b7e20098dae06d06602e1','2022-11-23 11:26:13','2023-05-27 23:02:22',NULL,'10.244.112.128','','',NULL,NULL,NULL,'text',NULL,''),(1564,'cmii-admin-data.yml','4.0.5','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1565,'cmii-admin-gateway.yml','4.0.5','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1566,'cmii-admin-user.yml','4.0.5','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1567,'cmii-omoc-gateway.yml','4.0.5','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1568,'cmii-omoc-process.yml','4.0.5','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1569,'cmii-omoc-user.yml','4.0.5','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1570,'cmii-open-gateway.yml','4.0.5','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1571,'cmii-uav-airspace.yml','4.0.5','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1572,'cmii-uav-alarm.yml','4.0.5','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1573,'cmii-uav-brain.yml','4.0.5','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1574,'cmii-uav-cloud-live.yml','4.0.5','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-live-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','74d215a8598c230f9fa7f2123731de14','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1575,'cmii-uav-clusters.yml','4.0.5','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1576,'cmii-uav-cms.yml','4.0.5','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1577,'cmii-uav-data-post-process.yml','4.0.5','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1578,'cmii-uav-developer.yml','4.0.5','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1579,'cmii-uav-device.yml','4.0.5','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1580,'cmii-uav-gateway.yml','4.0.5','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','c922198b44aa4ff484169621c92e71cf','2022-12-08 16:37:21','2022-12-08 18:04:43',NULL,'10.244.212.128','','','','','','yaml','',''),(1581,'cmii-uav-industrial-portfolio.yml','4.0.5','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1582,'cmii-uav-kpi-monitor.yml','4.0.5','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1583,'cmii-uav-logger.yml','4.0.5','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1584,'cmii-uav-material-warehouse.yml','4.0.5','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1585,'cmii-uav-mission.yml','4.0.5','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1586,'cmii-uav-mqtthandler.yml','4.0.5','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2022-12-08 16:37:21','2022-12-09 14:45:53',NULL,'10.244.212.128','','','','','','yaml','',''),(1587,'cmii-uav-notice.yml','4.0.5','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1588,'cmii-uav-oauth.yml','4.0.5','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1589,'cmii-uav-process.yml','4.0.5','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1590,'cmii-uav-security-system.yml','4.0.5','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1591,'cmii-uav-surveillance.yml','4.0.5','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2022-12-08 16:37:21','2022-12-09 14:49:36',NULL,'10.244.212.128','','','','','','yaml','',''),(1592,'cmii-uav-user.yml','4.0.5','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1593,'cmii-uav-waypoint.yml','4.0.5','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1594,'cmii-uav-gis-server.yml','4.0.5','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1595,'cmii-suav-supervision.yml','4.0.5','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1596,'cmii-suav-gateway.yml','4.0.5','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1597,'cmii-app-release','4.0.5','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,NULL,NULL,''),(1598,'cmii-uav-emergency.yml','4.0.5','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1599,'cmii-backend-system.yml','4.0.5','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','00ad6112704e88b1f0c3f40a7322f2d3','2022-12-08 16:37:21','2023-01-04 10:32:56',NULL,'10.244.212.128','','','','','','yaml','',''),(1771,'cmii-admin-data.yml','4.0.6','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1772,'cmii-admin-gateway.yml','4.0.6','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1773,'cmii-admin-user.yml','4.0.6','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1774,'cmii-omoc-gateway.yml','4.0.6','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1775,'cmii-omoc-process.yml','4.0.6','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1776,'cmii-omoc-user.yml','4.0.6','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1777,'cmii-open-gateway.yml','4.0.6','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1778,'cmii-uav-airspace.yml','4.0.6','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1779,'cmii-uav-alarm.yml','4.0.6','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1780,'cmii-uav-brain.yml','4.0.6','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1781,'cmii-uav-cloud-live.yml','4.0.6','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','aad73b3860cacbe3e83d70e62c204dec','2023-01-13 15:54:26','2023-03-29 17:48:34','','10.244.212.128','','','','','','yaml','',''),(1782,'cmii-uav-clusters.yml','4.0.6','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1783,'cmii-uav-cms.yml','4.0.6','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1784,'cmii-uav-data-post-process.yml','4.0.6','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1785,'cmii-uav-developer.yml','4.0.6','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1786,'cmii-uav-device.yml','4.0.6','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1787,'cmii-uav-gateway.yml','4.0.6','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','c922198b44aa4ff484169621c92e71cf','2023-01-13 15:54:26','2023-01-17 16:34:42','developer','10.244.212.128','','','','','','yaml','',''),(1788,'cmii-uav-industrial-portfolio.yml','4.0.6','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1789,'cmii-uav-kpi-monitor.yml','4.0.6','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1790,'cmii-uav-logger.yml','4.0.6','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1791,'cmii-uav-material-warehouse.yml','4.0.6','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1792,'cmii-uav-mission.yml','4.0.6','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1793,'cmii-uav-mqtthandler.yml','4.0.6','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1794,'cmii-uav-notice.yml','4.0.6','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1795,'cmii-uav-oauth.yml','4.0.6','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1796,'cmii-uav-process.yml','4.0.6','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1797,'cmii-uav-security-system.yml','4.0.6','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1798,'cmii-uav-surveillance.yml','4.0.6','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1799,'cmii-uav-user.yml','4.0.6','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1800,'cmii-uav-waypoint.yml','4.0.6','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1801,'cmii-uav-gis-server.yml','4.0.6','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1802,'cmii-suav-supervision.yml','4.0.6','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1803,'cmii-suav-gateway.yml','4.0.6','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1804,'cmii-app-release','4.0.6','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1805,'cmii-uav-emergency.yml','4.0.6','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1806,'cmii-backend-system.yml','4.0.6','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','496e905bb893a1cff7a5bd361de8e2d5','2023-01-13 15:54:26','2023-01-13 15:58:05',NULL,'10.244.212.128','','','','','','yaml','',''),(1935,'cmii-admin-data.yml','4.1.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1936,'cmii-admin-gateway.yml','4.1.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-02-08 09:43:21','2023-03-21 09:47:52','developer','10.244.212.128','','','','','','yaml','',''),(1937,'cmii-admin-user.yml','4.1.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1938,'cmii-omoc-gateway.yml','4.1.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1939,'cmii-omoc-process.yml','4.1.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1940,'cmii-omoc-user.yml','4.1.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1941,'cmii-open-gateway.yml','4.1.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1942,'cmii-uav-airspace.yml','4.1.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1943,'cmii-uav-alarm.yml','4.1.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1944,'cmii-uav-brain.yml','4.1.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1945,'cmii-uav-cloud-live.yml','4.1.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','e4e68301befe5b1c20034b9fb43b6c69','2023-02-08 09:43:21','2023-03-29 17:48:23','','10.244.212.128','','','','','','yaml','',''),(1946,'cmii-uav-clusters.yml','4.1.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1947,'cmii-uav-cms.yml','4.1.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1948,'cmii-uav-data-post-process.yml','4.1.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1949,'cmii-uav-developer.yml','4.1.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: false\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','af557a13e54074c2101044e013b99ff1','2023-02-08 09:43:21','2023-03-15 09:08:00','developer','10.244.212.128','','','','','','yaml','',''),(1950,'cmii-uav-device.yml','4.1.0','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1951,'cmii-uav-gateway.yml','4.1.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','5a7e6d96ea0c4c78b139bf417ab14393','2023-02-08 09:43:21','2023-02-23 17:10:07','developer','10.244.212.128','','','','','','yaml','',''),(1952,'cmii-uav-industrial-portfolio.yml','4.1.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1953,'cmii-uav-kpi-monitor.yml','4.1.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1954,'cmii-uav-logger.yml','4.1.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1955,'cmii-uav-material-warehouse.yml','4.1.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1956,'cmii-uav-mission.yml','4.1.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1957,'cmii-uav-mqtthandler.yml','4.1.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1958,'cmii-uav-notice.yml','4.1.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-02-08 09:43:21','2023-03-29 11:36:01','developer','10.244.212.128','','','','','','yaml','',''),(1959,'cmii-uav-oauth.yml','4.1.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: false\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','96e2b98fbe839493d76c750cf0aa7beb','2023-02-08 09:43:21','2023-02-21 11:32:21','developer','10.244.212.128','','','','','','yaml','',''),(1960,'cmii-uav-process.yml','4.1.0','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1961,'cmii-uav-security-system.yml','4.1.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1962,'cmii-uav-surveillance.yml','4.1.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1963,'cmii-uav-user.yml','4.1.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1964,'cmii-uav-waypoint.yml','4.1.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1965,'cmii-uav-gis-server.yml','4.1.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1966,'cmii-suav-supervision.yml','4.1.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1967,'cmii-suav-gateway.yml','4.1.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1968,'cmii-app-release','4.1.0','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1969,'cmii-uav-emergency.yml','4.1.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1970,'cmii-backend-system.yml','4.1.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','b6ed99534514b3bd9764a75df49b264a','2023-02-08 09:43:21','2023-03-23 10:21:55','developer','10.244.212.128','','','','','','yaml','',''),(2159,'cmii-admin-data.yml','4.1.1','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2160,'cmii-admin-gateway.yml','4.1.1','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2161,'cmii-admin-user.yml','4.1.1','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2162,'cmii-omoc-gateway.yml','4.1.1','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2163,'cmii-omoc-process.yml','4.1.1','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2164,'cmii-omoc-user.yml','4.1.1','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2165,'cmii-open-gateway.yml','4.1.1','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2166,'cmii-uav-airspace.yml','4.1.1','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2167,'cmii-uav-alarm.yml','4.1.1','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2168,'cmii-uav-brain.yml','4.1.1','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2169,'cmii-uav-cloud-live.yml','4.1.1','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','85ab6ba3f033d97965a7aee623b65cfe','2023-03-29 16:19:48','2023-04-25 15:47:44','developer','10.244.212.128','','','','','','yaml','',''),(2170,'cmii-uav-clusters.yml','4.1.1','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2171,'cmii-uav-cms.yml','4.1.1','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2172,'cmii-uav-data-post-process.yml','4.1.1','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2173,'cmii-uav-developer.yml','4.1.1','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2174,'cmii-uav-device.yml','4.1.1','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2175,'cmii-uav-gateway.yml','4.1.1','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','fdd768ebb476c43243fe28cb7d738cac','2023-03-29 16:19:48','2023-04-18 14:07:17','developer','10.244.212.128','','','','','','yaml','',''),(2176,'cmii-uav-industrial-portfolio.yml','4.1.1','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2177,'cmii-uav-kpi-monitor.yml','4.1.1','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2178,'cmii-uav-logger.yml','4.1.1','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2179,'cmii-uav-material-warehouse.yml','4.1.1','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2180,'cmii-uav-mission.yml','4.1.1','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2181,'cmii-uav-mqtthandler.yml','4.1.1','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2182,'cmii-uav-notice.yml','4.1.1','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2183,'cmii-uav-oauth.yml','4.1.1','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2184,'cmii-uav-process.yml','4.1.1','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2185,'cmii-uav-security-system.yml','4.1.1','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2186,'cmii-uav-surveillance.yml','4.1.1','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2187,'cmii-uav-user.yml','4.1.1','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2188,'cmii-uav-waypoint.yml','4.1.1','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2189,'cmii-uav-gis-server.yml','4.1.1','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2190,'cmii-suav-supervision.yml','4.1.1','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2191,'cmii-suav-gateway.yml','4.1.1','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2192,'cmii-app-release','4.1.1','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2193,'cmii-uav-emergency.yml','4.1.1','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2194,'cmii-backend-system.yml','4.1.1','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n cluster-nodes: 192.168.35.243:60015\n cluster-name: elasticsearch\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','53b3f1150320b06f0994ab5762d710bc','2023-03-29 16:19:48','2023-04-20 17:42:00','developer','10.244.212.128','','','','','','yaml','',''),(2195,'cmii-uav-grid-datasource.yml','4.1.1','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2196,'cmii-uav-grid-engine.yml','4.1.1','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2197,'cmii-uav-grid-surveilliance.yml','4.1.1','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2198,'cmii-uav-grid-manage.yml','4.1.1','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2203,'cmii-live-operator.yml','4.1.0','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2023-03-29 17:46:00','2023-03-29 18:06:17','','10.244.212.128','','','','','','yaml','',''),(2204,'cmii-live-operator.yml','4.0.6','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2023-03-29 17:46:16','2023-03-29 18:06:29','','10.244.212.128','','','','','','yaml','',''),(2281,'cmii-uav-integration.yml','4.1.1','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2023-04-09 14:30:40','2023-04-09 16:31:42','nacos','10.244.212.128','','','','','','yaml','',''),(2285,'cmii-uav-grid-elasticsearch.yml','4.1.2','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2023-04-11 16:18:18','2023-04-11 16:18:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2286,'cmii-admin-data.yml','4.1.2','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2287,'cmii-admin-gateway.yml','4.1.2','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2288,'cmii-admin-user.yml','4.1.2','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2289,'cmii-omoc-gateway.yml','4.1.2','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2290,'cmii-omoc-process.yml','4.1.2','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2291,'cmii-omoc-user.yml','4.1.2','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2292,'cmii-open-gateway.yml','4.1.2','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2293,'cmii-uav-airspace.yml','4.1.2','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2294,'cmii-uav-alarm.yml','4.1.2','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2295,'cmii-uav-brain.yml','4.1.2','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2296,'cmii-uav-cloud-live.yml','4.1.2','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','e4e68301befe5b1c20034b9fb43b6c69','2023-04-12 10:57:38','2023-04-12 11:01:13','developer','10.244.212.128','','','','','','yaml','',''),(2297,'cmii-uav-clusters.yml','4.1.2','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2298,'cmii-uav-cms.yml','4.1.2','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2299,'cmii-uav-data-post-process.yml','4.1.2','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2300,'cmii-uav-developer.yml','4.1.2','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2301,'cmii-uav-device.yml','4.1.2','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2302,'cmii-uav-gateway.yml','4.1.2','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','20e7b9b9fcab49c9413197c241a76fbc','2023-04-12 10:57:38','2023-04-18 14:07:41','developer','10.244.212.128','','','','','','yaml','',''),(2303,'cmii-uav-industrial-portfolio.yml','4.1.2','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2304,'cmii-uav-kpi-monitor.yml','4.1.2','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2305,'cmii-uav-logger.yml','4.1.2','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2306,'cmii-uav-material-warehouse.yml','4.1.2','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2307,'cmii-uav-mission.yml','4.1.2','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2308,'cmii-uav-mqtthandler.yml','4.1.2','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2309,'cmii-uav-notice.yml','4.1.2','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2310,'cmii-uav-oauth.yml','4.1.2','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2311,'cmii-uav-process.yml','4.1.2','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2312,'cmii-uav-security-system.yml','4.1.2','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2313,'cmii-uav-surveillance.yml','4.1.2','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2314,'cmii-uav-user.yml','4.1.2','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2315,'cmii-uav-waypoint.yml','4.1.2','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2316,'cmii-uav-gis-server.yml','4.1.2','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2317,'cmii-suav-supervision.yml','4.1.2','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2318,'cmii-suav-gateway.yml','4.1.2','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2319,'cmii-app-release','4.1.2','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2320,'cmii-uav-emergency.yml','4.1.2','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2321,'cmii-backend-system.yml','4.1.2','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','b6ed99534514b3bd9764a75df49b264a','2023-04-12 10:57:38','2023-04-12 10:59:52','developer','10.244.212.128','','','','','','yaml','',''),(2322,'cmii-uav-grid-datasource.yml','4.1.2','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2323,'cmii-uav-grid-engine.yml','4.1.2','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2324,'cmii-uav-grid-surveilliance.yml','4.1.2','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2325,'cmii-uav-grid-manage.yml','4.1.2','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2398,'cmii-admin-data.yml','4.1.3','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2399,'cmii-admin-gateway.yml','4.1.3','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2400,'cmii-admin-user.yml','4.1.3','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2401,'cmii-omoc-gateway.yml','4.1.3','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2402,'cmii-omoc-process.yml','4.1.3','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2403,'cmii-omoc-user.yml','4.1.3','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2404,'cmii-open-gateway.yml','4.1.3','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2405,'cmii-uav-airspace.yml','4.1.3','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2406,'cmii-uav-alarm.yml','4.1.3','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2407,'cmii-uav-brain.yml','4.1.3','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2408,'cmii-uav-cloud-live.yml','4.1.3','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','85ab6ba3f033d97965a7aee623b65cfe','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2409,'cmii-uav-clusters.yml','4.1.3','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2410,'cmii-uav-cms.yml','4.1.3','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2411,'cmii-uav-data-post-process.yml','4.1.3','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2412,'cmii-uav-developer.yml','4.1.3','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2413,'cmii-uav-device.yml','4.1.3','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2414,'cmii-uav-gateway.yml','4.1.3','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','20e7b9b9fcab49c9413197c241a76fbc','2023-04-28 15:09:21','2023-04-28 15:18:58','developer','10.244.212.128','','','','','','yaml','',''),(2415,'cmii-uav-industrial-portfolio.yml','4.1.3','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2416,'cmii-uav-kpi-monitor.yml','4.1.3','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2417,'cmii-uav-logger.yml','4.1.3','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2418,'cmii-uav-material-warehouse.yml','4.1.3','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2419,'cmii-uav-mission.yml','4.1.3','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2420,'cmii-uav-mqtthandler.yml','4.1.3','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2421,'cmii-uav-notice.yml','4.1.3','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2422,'cmii-uav-oauth.yml','4.1.3','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n #default-user-id: 499 # demo环境\n default-user-id: 505\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','af300d9dc0df3b012d02ce77799511de','2023-04-28 15:09:21','2023-05-18 09:28:52','developer','10.244.212.128','','','','','','yaml','',''),(2423,'cmii-uav-process.yml','4.1.3','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2424,'cmii-uav-security-system.yml','4.1.3','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2425,'cmii-uav-surveillance.yml','4.1.3','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2426,'cmii-uav-user.yml','4.1.3','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2427,'cmii-uav-waypoint.yml','4.1.3','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2428,'cmii-uav-gis-server.yml','4.1.3','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2429,'cmii-suav-supervision.yml','4.1.3','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2430,'cmii-suav-gateway.yml','4.1.3','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2431,'cmii-app-release','4.1.3','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2432,'cmii-uav-emergency.yml','4.1.3','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2433,'cmii-uav-grid-datasource.yml','4.1.3','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2434,'cmii-uav-grid-engine.yml','4.1.3','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2435,'cmii-uav-grid-surveilliance.yml','4.1.3','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2436,'cmii-uav-grid-manage.yml','4.1.3','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2437,'cmii-uav-grid-elasticsearch.yml','4.1.3','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2438,'cmii-backend-system.yml','4.1.3','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n cluster-nodes: 192.168.35.243:60015\n cluster-name: elasticsearch\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','dddb9aa017a468b410f356dfc9a381ba','2023-04-28 15:09:21','2023-05-05 10:12:31','developer','10.244.212.128','','','','','','yaml','',''),(2471,'cmii-uav-integration.yml','4.1.2','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2023-05-04 17:07:44','2023-05-04 17:07:44',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2472,'cmii-uav-integration.yml','4.1.3','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2023-05-04 17:07:50','2023-05-04 17:07:50',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2473,'cmii-uav-grid-elasticsearch.yml','DEFAULT_GROUP','spring:\n elasticsearch:\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9302','2a9ea0d97aceb0be03d9f16c7fc34bb1','2023-05-05 10:05:16','2024-04-03 11:22:40','nacos','192.168.34.234','','','','','','yaml','',''),(2546,'cmii-admin-data.yml','4.1.4','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2547,'cmii-admin-gateway.yml','4.1.4','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /webjars/**\n# - /doc.html\n# - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','21d434c6a85d76db3fd0e631a95c52c9','2023-05-18 16:20:35','2023-05-29 15:36:27','developer','10.244.212.128','','','','','','yaml','',''),(2548,'cmii-admin-user.yml','4.1.4','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2549,'cmii-omoc-gateway.yml','4.1.4','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2550,'cmii-omoc-process.yml','4.1.4','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2551,'cmii-omoc-user.yml','4.1.4','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2552,'cmii-open-gateway.yml','4.1.4','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /**/webjars/**\n# - /**/doc.html\n# - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','a6c10aa799cf809b6d0c0812fe1a899f','2023-05-18 16:20:35','2023-05-29 15:36:55','developer','10.244.212.128','','','','','','yaml','',''),(2553,'cmii-uav-airspace.yml','4.1.4','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2554,'cmii-uav-alarm.yml','4.1.4','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2555,'cmii-uav-brain.yml','4.1.4','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2556,'cmii-uav-cloud-live.yml','4.1.4','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','85ab6ba3f033d97965a7aee623b65cfe','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2557,'cmii-uav-clusters.yml','4.1.4','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2558,'cmii-uav-cms.yml','4.1.4','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2559,'cmii-uav-data-post-process.yml','4.1.4','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464520\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','93c8241a34b3567b7b70aea6f762e3a8','2023-05-18 16:20:35','2023-05-24 15:04:16','developer','192.168.34.239','','','','','','yaml','',''),(2560,'cmii-uav-developer.yml','4.1.4','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2561,'cmii-uav-device.yml','4.1.4','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2562,'cmii-uav-gateway.yml','4.1.4','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','2f8d49814bd81d2c3493d0057ba9f241','2023-05-18 16:20:35','2023-05-29 15:38:20','developer','10.244.212.128','','','','','','yaml','',''),(2563,'cmii-uav-industrial-portfolio.yml','4.1.4','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2564,'cmii-uav-kpi-monitor.yml','4.1.4','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2565,'cmii-uav-logger.yml','4.1.4','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2566,'cmii-uav-material-warehouse.yml','4.1.4','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2567,'cmii-uav-mission.yml','4.1.4','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2568,'cmii-uav-mqtthandler.yml','4.1.4','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2569,'cmii-uav-notice.yml','4.1.4','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2570,'cmii-uav-oauth.yml','4.1.4','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-05-18 16:20:35','2023-05-30 10:21:52','developer','10.244.212.128','','','','','','yaml','',''),(2571,'cmii-uav-process.yml','4.1.4','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2572,'cmii-uav-security-system.yml','4.1.4','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2573,'cmii-uav-surveillance.yml','4.1.4','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.common.scheduling: NONE\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','e4bad24fd3cfd9b3e7b37a5854785fa3','2023-05-18 16:20:35','2023-05-23 10:17:27','developer','10.244.212.128','','','','','','yaml','',''),(2574,'cmii-uav-user.yml','4.1.4','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2575,'cmii-uav-waypoint.yml','4.1.4','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2576,'cmii-uav-gis-server.yml','4.1.4','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2577,'cmii-suav-supervision.yml','4.1.4','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2578,'cmii-suav-gateway.yml','4.1.4','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2579,'cmii-app-release','4.1.4','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2580,'cmii-uav-emergency.yml','4.1.4','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2581,'cmii-uav-grid-datasource.yml','4.1.4','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2582,'cmii-uav-grid-engine.yml','4.1.4','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2583,'cmii-uav-grid-surveilliance.yml','4.1.4','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2584,'cmii-uav-grid-manage.yml','4.1.4','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2585,'cmii-uav-grid-elasticsearch.yml','4.1.4','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2586,'cmii-backend-system.yml','4.1.4','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n cluster-nodes: 192.168.35.243:60015\n cluster-name: elasticsearch\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','fb41c33f1f06ed6224f123e1f8143b5c','2023-05-18 16:20:35','2023-05-18 16:23:04','developer','10.244.212.128','','','','','','yaml','',''),(2639,'cmii-admin-data.yml','5.2.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2640,'cmii-admin-gateway.yml','5.2.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','07c08977ff05ba5466a6066631c7d5c4','2024-01-25 15:17:41','2024-01-29 15:38:15','developer','192.168.102.248','','','','','','yaml','',''),(2641,'cmii-admin-user.yml','5.2.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2642,'cmii-omoc-gateway.yml','5.2.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2643,'cmii-omoc-process.yml','5.2.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2644,'cmii-omoc-user.yml','5.2.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2645,'cmii-open-gateway.yml','5.2.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /**/webjars/**\n# - /**/doc.html\n# - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','a6c10aa799cf809b6d0c0812fe1a899f','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2646,'cmii-uav-airspace.yml','5.2.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2647,'cmii-uav-alarm.yml','5.2.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2648,'cmii-uav-brain.yml','5.2.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2649,'cmii-uav-cloud-live.yml','5.2.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','19ebc0ad8f0d6ceb9d0edc4289032d6b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2650,'cmii-uav-clusters.yml','5.2.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2651,'cmii-uav-cms.yml','5.2.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','26c812434220a0bba8e2f2f916c16484','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2652,'cmii-uav-data-post-process.yml','5.2.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2653,'cmii-uav-developer.yml','5.2.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2654,'cmii-uav-device.yml','5.2.0','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2655,'cmii-uav-gateway.yml','5.2.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','a123e2be8c541baf8e53dc0df3803585','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2656,'cmii-uav-industrial-portfolio.yml','5.2.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138537\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.service.impl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler: warn\nemergency:\n station:\n closeStation: false\n stationHost: http://192.168.36.214:8086\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','ba487ffa42406589e433c3c9359eee16','2024-01-25 15:17:41','2024-02-04 18:54:41','developer','192.168.102.60','','','','','','yaml','',''),(2657,'cmii-uav-kpi-monitor.yml','5.2.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2658,'cmii-uav-logger.yml','5.2.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2659,'cmii-uav-material-warehouse.yml','5.2.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n\ncom:\n cmii:\n chinamobile:\n defaultPath: ','487768236488ac1039f92000813ff51e','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2660,'cmii-uav-mission.yml','5.2.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2661,'cmii-uav-mqtthandler.yml','5.2.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2662,'cmii-uav-notice.yml','5.2.0','bizName: 通知系统\ndbSchema: uav_notice\napiDeclaration: uav,admin\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','89bdcbab8b05a524305fcf9c3c9174dd','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2663,'cmii-uav-oauth.yml','5.2.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n limit-pwd-expire: false\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n base-client-id: APP_9LY41OaKSqk2btY0\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','1fd02866a55b5a590546908f5bfa108e','2024-01-25 15:17:41','2024-01-26 11:18:47','developer','192.168.102.102','','','','','','yaml','',''),(2664,'cmii-uav-process.yml','5.2.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2665,'cmii-uav-security-system.yml','5.2.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2666,'cmii-uav-surveillance.yml','5.2.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','9b8bcdf873b139514ed74bafae82c2af','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2667,'cmii-uav-user.yml','5.2.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2668,'cmii-uav-waypoint.yml','5.2.0','bizName: 航线服务\ndbSchema: uav_waypoint\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\nsimulation:\n remote:\n host: ${com.cmii.chinamobile.signal-simulation.url}\n port: ${com.cmii.chinamobile.signal-simulation.port}\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\nribbon:\n ReadTimeout: 60000\n ConnectTimeout: 60000\n','c5ecb6111c01bed9af3997046eba568a','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2669,'cmii-uav-gis-server.yml','5.2.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2670,'cmii-suav-supervision.yml','5.2.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n','1cee41d5c0115bbcb91ae2bef85fc37c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2671,'cmii-suav-gateway.yml','5.2.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2672,'cmii-uav-emergency.yml','5.2.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2673,'cmii-uav-grid-datasource.yml','5.2.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','5b343814e8caae20fd2e7aa22c461d94','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2674,'cmii-uav-grid-engine.yml','5.2.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2675,'cmii-uav-grid-surveilliance.yml','5.2.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2676,'cmii-uav-grid-manage.yml','5.2.0','spring:\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\nuav:\n safe-distance: 100\n offset-distance: 100\n\n# 温部署的引擎地址\niwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n','e16326b64f3af694c5a24d13e8b921ba','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2677,'cmii-uav-grid-elasticsearch.yml','5.2.0','spring:\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202','95332d6917683f020f0d7f0061948c00','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2678,'cmii-live-operator.yml','5.2.0','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2679,'cmii-uav-tower.yml','5.2.0','bizName: 黑龙江铁塔\napiDeclaration: uav,admin\ndbSchema: cmii_iron_tower\n\nminio:\n srcId: 1323096648758464519\n\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\n','e1448cae712147322edaca81598e6e6b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2680,'cmii-backend-system.yml','5.2.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8197\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n ping-connection-interval: 5000\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n\n','3478bb244d4b3d7444d8f1c31fa8d07a','2024-01-25 15:17:41','2024-01-31 11:02:04','nacos','10.244.212.128','','','','','','yaml','',''),(2681,'cmii-app-release.yml','5.2.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2682,'cmii-uav-integration.yml','5.2.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2683,'cmii-uav-threedsimulation.yml','5.2.0','spring:\n jackson:\n time-zone: GMT+8\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n\nribbon:\n ReadTimeout: 20000\n ConnectTimeout: 10000\n \n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n\n','66f84b24313fc7cfdde563738dab41aa','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2685,'cmii-admin-data.yml','5.0.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2686,'cmii-admin-gateway.yml','5.0.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /webjars/**\n# - /doc.html\n# - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n mode: autoTest\n','c00c3236df426b657cfa44a273ade5aa','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2687,'cmii-admin-user.yml','5.0.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2688,'cmii-omoc-gateway.yml','5.0.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2689,'cmii-omoc-process.yml','5.0.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2690,'cmii-omoc-user.yml','5.0.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2691,'cmii-open-gateway.yml','5.0.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /**/webjars/**\n# - /**/doc.html\n# - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','a6c10aa799cf809b6d0c0812fe1a899f','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2692,'cmii-uav-airspace.yml','5.0.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2693,'cmii-uav-alarm.yml','5.0.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2694,'cmii-uav-brain.yml','5.0.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2695,'cmii-uav-cloud-live.yml','5.0.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','8ce5cc1d0c2c67a499e7d8eb544c0e23','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2696,'cmii-uav-clusters.yml','5.0.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2697,'cmii-uav-cms.yml','5.0.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2698,'cmii-uav-data-post-process.yml','5.0.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://minio.ig-uat.uavcmlc.com:30306\n # accessKey: L67YyU7WuCTAZmtt\n # secretKey: 0roAwjpRuZ4u5CAZZbSzjWR8S6dScQur\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\nlogging:\n level:\n com.alibaba.nacos: off\n\n','413830ffb78ea7152ca847605c2ed8ea','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2699,'cmii-uav-developer.yml','5.0.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2700,'cmii-uav-device.yml','5.0.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\n\n','74f6a248d767f85a3fca360ddeff278e','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2701,'cmii-uav-gateway.yml','5.0.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-yaw/**\n - /surveillance/single-surveillance-yaw/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n','60092690b4b0a93ac93ec27f028aabdd','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2702,'cmii-uav-industrial-portfolio.yml','5.0.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\npublic:\n security:\n onlineExpireSec: 60\n maxPlaybackTrackSec: 3600\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','82c3e55e17a7ff963d3ac7bc48ac17dc','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2703,'cmii-uav-kpi-monitor.yml','5.0.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2704,'cmii-uav-logger.yml','5.0.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2705,'cmii-uav-material-warehouse.yml','5.0.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n # endPoint: https://oss.uavcmlc.com\n # accessKey: L67YyU7WuCTAZmtt\n # secretKey: 0roAwjpRuZ4u5CAZZbSzjWR8S6dScQur\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','7692ff3fce48adc737f1dcbdc0b26aea','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2706,'cmii-uav-mission.yml','5.0.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2707,'cmii-uav-mqtthandler.yml','5.0.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2708,'cmii-uav-notice.yml','5.0.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','0153bc6f5ef8c3985a5eca1d283235c9','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2709,'cmii-uav-oauth.yml','5.0.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: true\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','4f0bcaf9279a8f10a720f6c60ac0e518','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2710,'cmii-uav-process.yml','5.0.0','bizName: 流程系统\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','0b05544622c721d7dac5bb77965c63fa','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2711,'cmii-uav-security-system.yml','5.0.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2712,'cmii-uav-surveillance.yml','5.0.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.common.scheduling: NONE\n com.cmii.chinamobile.surveillance.service.impl: DEBUG\n com.cmii.chinamobile.surveillance.schedule: DEBUG\n com.cmii.chinamobile.surveillance.websocket: DEBUG\n com.cmii.chinamobile.surveillance.uncoupleApi: DEBUG\n com.cmii.chinamobile.surveillance.utils: DEBUG\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','f9b0fc5d4f2e5f93290d908989270f20','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2713,'cmii-uav-user.yml','5.0.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2714,'cmii-uav-waypoint.yml','5.0.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2715,'cmii-uav-gis-server.yml','5.0.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n\nlogging:\n level:\n com.alibaba.nacos: off\n','3e2d19f15d8f8e1d64ca218779bbb354','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2716,'cmii-suav-supervision.yml','5.0.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n','1cee41d5c0115bbcb91ae2bef85fc37c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2717,'cmii-suav-gateway.yml','5.0.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2718,'cmii-uav-emergency.yml','5.0.0','bizName: 应急管理\ndbSchema: uav_emergency\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','502769f9a901693c27d29742505dc1a8','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2719,'cmii-uav-grid-datasource.yml','5.0.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','5b343814e8caae20fd2e7aa22c461d94','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2720,'cmii-uav-grid-engine.yml','5.0.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2721,'cmii-uav-grid-surveilliance.yml','5.0.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2722,'cmii-uav-grid-manage.yml','5.0.0','spring:\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\nuav:\n safe-distance: 100\n offset-distance: 100\n\n# 温部署的引擎地址\niwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n','e16326b64f3af694c5a24d13e8b921ba','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2723,'cmii-uav-grid-elasticsearch.yml','5.0.0','spring:\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:29200\n\n # username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n # password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n # uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}','3784c2c516ea75d085ac9fa1feb8967b','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2724,'cmii-backend-system.yml','5.0.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.uat.uavcmlc.com:30307\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8192/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-uat.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://minio.ig-uat.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.108\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:29200\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.233\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.233\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.233\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6514\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6534\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23457\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 人群计数检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8201\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8198 #demo环境使用8197\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8198 #demo环境使用8197\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n ping-connection-interval: 5000\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: admin\n password: admin123\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','58af80c64a665cabbdad087c5af971f2','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2725,'cmii-uav-tower.yml','5.0.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n','a33564390d57a58dc6d955c298813966','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2726,'cmii-app-release.yml','5.0.0','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2727,'cmii-live-operator.yml','5.0.0','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2737,'cmii-admin-data.yml','5.3.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2738,'cmii-admin-gateway.yml','5.3.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2739,'cmii-admin-user.yml','5.3.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2740,'cmii-omoc-gateway.yml','5.3.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2741,'cmii-omoc-process.yml','5.3.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2742,'cmii-omoc-user.yml','5.3.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2743,'cmii-open-gateway.yml','5.3.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2744,'cmii-uav-airspace.yml','5.3.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2745,'cmii-uav-alarm.yml','5.3.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2746,'cmii-uav-brain.yml','5.3.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2747,'cmii-uav-cloud-live.yml','5.3.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003_\n - wrjxh052/xh009_\n - wrjxh063/xh024_\n - wrjxh063/_\n - wrjxh064/_\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','726ae4de8aab4cba06b0035f7186e54d','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2748,'cmii-uav-clusters.yml','5.3.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2749,'cmii-uav-cms.yml','5.3.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2750,'cmii-uav-data-post-process.yml','5.3.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2751,'cmii-uav-developer.yml','5.3.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2752,'cmii-uav-device.yml','5.3.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\n\n','e6d7ba68d05ad3d636c69c778684f1a6','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2753,'cmii-uav-gateway.yml','5.3.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','6ca7211e5e98437bc1e2632027a984db','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2754,'cmii-uav-industrial-portfolio.yml','5.3.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138537\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','32ae347c72a73daa5f5ab8f4775b6579','2024-02-07 10:34:05','2024-02-21 17:23:08','developer','192.168.102.173','','','','','','yaml','',''),(2755,'cmii-uav-kpi-monitor.yml','5.3.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2756,'cmii-uav-logger.yml','5.3.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2757,'cmii-uav-material-warehouse.yml','5.3.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2758,'cmii-uav-mission.yml','5.3.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2759,'cmii-uav-mqtthandler.yml','5.3.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2760,'cmii-uav-notice.yml','5.3.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2761,'cmii-uav-oauth.yml','5.3.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','0aae517621a79d64e2ee4f14a460c341','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2762,'cmii-uav-process.yml','5.3.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2763,'cmii-uav-security-system.yml','5.3.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2764,'cmii-uav-surveillance.yml','5.3.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','9b8bcdf873b139514ed74bafae82c2af','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2765,'cmii-uav-user.yml','5.3.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2766,'cmii-uav-waypoint.yml','5.3.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2767,'cmii-uav-gis-server.yml','5.3.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2768,'cmii-suav-supervision.yml','5.3.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2769,'cmii-suav-gateway.yml','5.3.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2770,'cmii-app-release','5.3.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2771,'cmii-uav-emergency.yml','5.3.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2772,'cmii-uav-grid-datasource.yml','5.3.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2773,'cmii-uav-grid-engine.yml','5.3.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2774,'cmii-uav-grid-surveilliance.yml','5.3.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2775,'cmii-uav-grid-manage.yml','5.3.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2776,'cmii-uav-grid-elasticsearch.yml','5.3.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2777,'cmii-uav-tower.yml','5.3.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2778,'cmii-live-operator.yml','5.3.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2779,'cmii-uav-multilink.yml','5.3.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2780,'cmii-backend-system.yml','5.3.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n ping-connection-interval: 5000\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','a3b0b8034170c926d4045c94969f81fd','2024-02-07 10:34:05','2024-02-07 10:38:04','nacos','10.244.212.128','','','','','','yaml','',''),(2782,'cmii-admin-data.yml','5.4.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2783,'cmii-admin-gateway.yml','5.4.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2784,'cmii-admin-user.yml','5.4.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2785,'cmii-omoc-gateway.yml','5.4.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2786,'cmii-omoc-process.yml','5.4.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2787,'cmii-omoc-user.yml','5.4.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2788,'cmii-open-gateway.yml','5.4.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2789,'cmii-uav-airspace.yml','5.4.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2790,'cmii-uav-alarm.yml','5.4.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2791,'cmii-uav-brain.yml','5.4.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2792,'cmii-uav-cloud-live.yml','5.4.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM\n','8a229d994a17bb40ae6967cde9034f3f','2024-02-21 15:23:24','2024-03-26 14:53:17','nacos','192.168.34.234','','','','','','yaml','',''),(2793,'cmii-uav-clusters.yml','5.4.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2794,'cmii-uav-cms.yml','5.4.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2795,'cmii-uav-data-post-process.yml','5.4.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','0faff74fdfd7fee3cf9f37c556c71621','2024-02-21 15:23:24','2024-04-03 17:52:49','nacos','192.168.34.234','','','','','','yaml','',''),(2796,'cmii-uav-developer.yml','5.4.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2797,'cmii-uav-device.yml','5.4.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-02-21 15:23:24','2024-02-29 11:51:37','nacos','10.244.212.128','','','','','','yaml','',''),(2798,'cmii-uav-gateway.yml','5.4.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','613a86870a5fd0813aced222b9c6b91c','2024-02-21 15:23:24','2024-04-10 11:50:39','developer','192.168.103.194','','','','','','yaml','',''),(2799,'cmii-uav-industrial-portfolio.yml','5.4.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138536\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\n lae:\n radar-id: 1508482221\n detect-uav-id: 10001\n companies: 394\n area-expands-distance: 5\n area-expands-lon: 0.00005\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00016322\n shareTarget: \n - shanghai\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','bd82947e98305880a05c22797df36c1b','2024-02-21 15:23:24','2024-04-12 10:31:10','developer','192.168.102.68','','','','','','yaml','',''),(2800,'cmii-uav-kpi-monitor.yml','5.4.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2801,'cmii-uav-logger.yml','5.4.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2802,'cmii-uav-material-warehouse.yml','5.4.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','09a22a6a28fbe2357f3d22064e98a586','2024-02-21 15:23:24','2024-03-20 17:13:04','nacos','10.244.179.192','','','','','','yaml','',''),(2803,'cmii-uav-mission.yml','5.4.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2804,'cmii-uav-mqtthandler.yml','5.4.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','3ca1fdbef8f40416fc12527625399e69','2024-02-21 15:23:24','2024-04-12 10:32:04','developer','192.168.102.68','','','','','','yaml','',''),(2805,'cmii-uav-notice.yml','5.4.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2806,'cmii-uav-oauth.yml','5.4.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','0aae517621a79d64e2ee4f14a460c341','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2807,'cmii-uav-process.yml','5.4.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2808,'cmii-uav-security-system.yml','5.4.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2809,'cmii-uav-surveillance.yml','5.4.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','f3281d266dd16c277e1d6e30265744ff','2024-02-21 15:23:25','2024-02-29 11:06:28','nacos','10.244.212.128','','','','','','yaml','',''),(2810,'cmii-uav-user.yml','5.4.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 8400\n expireDay: 9100\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','b902cdd7ac917644c09417ee35257ec1','2024-02-21 15:23:25','2024-02-21 18:21:07','nacos','10.244.212.128','','','','','','yaml','',''),(2811,'cmii-uav-waypoint.yml','5.4.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2812,'cmii-uav-gis-server.yml','5.4.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2813,'cmii-suav-supervision.yml','5.4.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2814,'cmii-suav-gateway.yml','5.4.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2815,'cmii-app-release','5.4.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2816,'cmii-uav-emergency.yml','5.4.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2817,'cmii-uav-grid-datasource.yml','5.4.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2818,'cmii-uav-grid-engine.yml','5.4.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2819,'cmii-uav-grid-surveilliance.yml','5.4.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2820,'cmii-uav-grid-manage.yml','5.4.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2821,'cmii-uav-grid-elasticsearch.yml','5.4.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2822,'cmii-uav-tower.yml','5.4.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2823,'cmii-live-operator.yml','5.4.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2824,'cmii-uav-multilink.yml','5.4.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2868,'cmii-backend-system.yml','5.4.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','2a2da30f0e33d911b16e7d898faa952e','2024-02-21 15:24:14','2024-04-22 09:42:46','nacos','10.244.192.64','','','','','','yaml','',''),(2884,'cmii-uav-integration.yml','5.4.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.194.193:26686','869667d13e73ba36a94e1a670294d74e','2024-03-07 17:02:28','2024-04-17 10:12:22','nacos','192.168.34.234','','','','','','yaml','',''),(2886,'cmii-uav-surveillance.yml','5.5.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','f3281d266dd16c277e1d6e30265744ff','2024-03-11 15:11:06','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2887,'cmii-backend-system.yml','5.5.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','9431ffe62ddcb594d49e97b0ff571a92','2024-03-11 15:12:59','2024-04-22 13:53:18','nacos','10.244.192.64','','','','','','yaml','',''),(2935,'cmii-uav-grid-datasource.yml','5.5.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-04-03 10:19:09','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2970,'cmii-uav-threedsimulation.yml','5.4.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-04-12 17:39:38','2024-04-12 17:39:38',NULL,'192.168.34.234','','',NULL,NULL,NULL,'yaml',NULL,''),(2972,'cmii-admin-data.yml','5.5.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-04-17 15:55:48','2024-04-17 15:56:08',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2973,'cmii-admin-gateway.yml','5.5.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-04-17 15:55:48','2024-04-17 15:56:08',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2974,'cmii-admin-user.yml','5.5.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2975,'cmii-omoc-gateway.yml','5.5.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2976,'cmii-omoc-process.yml','5.5.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2977,'cmii-omoc-user.yml','5.5.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2978,'cmii-open-gateway.yml','5.5.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2979,'cmii-uav-airspace.yml','5.5.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2980,'cmii-uav-alarm.yml','5.5.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2981,'cmii-uav-brain.yml','5.5.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2982,'cmii-uav-cloud-live.yml','5.5.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM\n','8a229d994a17bb40ae6967cde9034f3f','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2983,'cmii-uav-clusters.yml','5.5.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2984,'cmii-uav-cms.yml','5.5.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2985,'cmii-uav-data-post-process.yml','5.5.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: false\n geoCS: EPSG:4544\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','50b7775b91c539cd666cd8918f036b6e','2024-04-17 15:55:49','2024-04-25 16:01:16','nacos','192.168.34.234','','','','','','yaml','',''),(2986,'cmii-uav-developer.yml','5.5.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2987,'cmii-uav-device.yml','5.5.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-04-17 15:55:49','2024-04-17 15:56:11',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2988,'cmii-uav-gateway.yml','5.5.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','e3732895cf382543cccec232cda8f3a9','2024-04-17 15:55:50','2024-04-28 14:34:54','nacos','192.168.34.234','','','','','','yaml','',''),(2989,'cmii-uav-industrial-portfolio.yml','5.5.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - event.SF.control.StartTask\n - event.SF.control.StopTask\n - event.SF.control.CapabilitySynReq\n - event.SF.control.SendKeepAlive\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138536\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\n lae:\n radar-id: 1508482221\n detect-uav-id: 10001\n companies: 394\n area-expands-distance: 5\n area-expands-lon: 0.00005\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00016322\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221\n disable: false\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractHttpDataSenderStrategy: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','32bfb7f3da3a5edfe4e199bc26bd9dfd','2024-04-17 15:55:50','2024-06-06 22:44:52','developer','192.168.102.203','','','','','','yaml','',''),(2990,'cmii-uav-kpi-monitor.yml','5.5.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-04-17 15:55:50','2024-04-17 15:56:11',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2991,'cmii-uav-logger.yml','5.5.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-04-17 15:55:51','2024-04-17 15:56:11',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2992,'cmii-uav-material-warehouse.yml','5.5.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','d29bda9e6ea7378b58820ac08bf2e124','2024-04-17 15:55:51','2024-07-10 17:16:29','nacos','192.168.35.125','','','','','','yaml','',''),(2993,'cmii-uav-mission.yml','5.5.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','fa40705c92d11c928a390ecf58f2ae6d','2024-04-17 15:55:51','2024-05-08 10:12:16','nacos','192.168.34.234','','','','','','yaml','',''),(2994,'cmii-uav-mqtthandler.yml','5.5.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','3ca1fdbef8f40416fc12527625399e69','2024-04-17 15:55:51','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2995,'cmii-uav-notice.yml','5.5.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-04-17 15:55:51','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2996,'cmii-uav-oauth.yml','5.5.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','0aae517621a79d64e2ee4f14a460c341','2024-04-17 15:55:51','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2997,'cmii-uav-process.yml','5.5.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2998,'cmii-uav-security-system.yml','5.5.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3000,'cmii-uav-user.yml','5.5.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 8400\n expireDay: 9100\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','b902cdd7ac917644c09417ee35257ec1','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3001,'cmii-uav-waypoint.yml','5.5.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3002,'cmii-uav-gis-server.yml','5.5.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3003,'cmii-suav-supervision.yml','5.5.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3004,'cmii-suav-gateway.yml','5.5.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3005,'cmii-app-release','5.5.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3006,'cmii-uav-emergency.yml','5.5.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3008,'cmii-uav-grid-engine.yml','5.5.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3009,'cmii-uav-grid-surveilliance.yml','5.5.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''); -INSERT INTO `config_info` VALUES (3010,'cmii-uav-grid-manage.yml','5.5.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3011,'cmii-uav-grid-elasticsearch.yml','5.5.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3012,'cmii-uav-tower.yml','5.5.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3013,'cmii-live-operator.yml','5.5.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-04-17 15:55:54','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3014,'cmii-uav-multilink.yml','5.5.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-04-17 15:55:54','2024-04-17 15:56:14',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3016,'cmii-uav-integration.yml','5.5.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.194.193:26686','869667d13e73ba36a94e1a670294d74e','2024-04-17 15:55:54','2024-04-17 15:56:14',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3017,'cmii-uav-threedsimulation.yml','5.5.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-04-17 15:55:54','2024-04-17 15:56:14',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3086,'cmii-uav-surveillance.yml','5.6.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','278ca722c160aeda07ecc3466d0881d7','2024-05-08 17:14:12','2024-07-03 18:26:19','developer','192.168.102.203','','','','','','yaml','',''),(3087,'cmii-uav-grid-datasource.yml','5.6.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3088,'cmii-admin-data.yml','5.6.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3089,'cmii-admin-gateway.yml','5.6.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3090,'cmii-admin-user.yml','5.6.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3091,'cmii-omoc-gateway.yml','5.6.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3092,'cmii-omoc-process.yml','5.6.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3093,'cmii-omoc-user.yml','5.6.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3094,'cmii-open-gateway.yml','5.6.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3095,'cmii-uav-airspace.yml','5.6.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3096,'cmii-uav-alarm.yml','5.6.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3097,'cmii-uav-brain.yml','5.6.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3098,'cmii-uav-cloud-live.yml','5.6.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','f0bfedbd38d02208364c28c3771bc40f','2024-05-08 17:14:12','2024-06-17 16:05:49','nacos','192.168.35.125','','','','','','yaml','',''),(3099,'cmii-uav-clusters.yml','5.6.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3100,'cmii-uav-cms.yml','5.6.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3101,'cmii-uav-data-post-process.yml','5.6.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: false\n geoCS: EPSG:4544\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','50b7775b91c539cd666cd8918f036b6e','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3102,'cmii-uav-developer.yml','5.6.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3103,'cmii-uav-device.yml','5.6.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3104,'cmii-uav-gateway.yml','5.6.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','4188c5b6c88b17d570eeb562d9611eb7','2024-05-08 17:14:12','2024-07-18 18:19:43','developer','192.168.103.80','','','','','','yaml','',''),(3105,'cmii-uav-industrial-portfolio.yml','5.6.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n stream-url-map:\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','ec8eb7dafaf1c48dc58e25bd00b81e6e','2024-05-08 17:14:12','2024-07-18 15:43:39','developer','192.168.103.80','','','','','','yaml','',''),(3106,'cmii-uav-kpi-monitor.yml','5.6.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3107,'cmii-uav-logger.yml','5.6.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3108,'cmii-uav-material-warehouse.yml','5.6.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /iam/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','d07c5510e6e9cf57de37ae97fb090e2d','2024-05-08 17:14:12','2024-07-10 17:16:43','nacos','192.168.35.125','','','','','','yaml','',''),(3109,'cmii-uav-mission.yml','5.6.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','fa40705c92d11c928a390ecf58f2ae6d','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3110,'cmii-uav-mqtthandler.yml','5.6.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','cd4e874c82ba272027f712627f0c59ee','2024-05-08 17:14:12','2024-07-13 12:24:47','developer','192.168.102.71','','','','','','yaml','',''),(3111,'cmii-uav-notice.yml','5.6.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3112,'cmii-uav-oauth.yml','5.6.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-05-08 17:14:12','2024-07-09 09:57:01','developer','192.168.102.113','','','','','','yaml','',''),(3113,'cmii-uav-process.yml','5.6.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3114,'cmii-uav-security-system.yml','5.6.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3115,'cmii-uav-user.yml','5.6.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 8400\n expireDay: 9100\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','b902cdd7ac917644c09417ee35257ec1','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3116,'cmii-uav-waypoint.yml','5.6.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3117,'cmii-uav-gis-server.yml','5.6.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3118,'cmii-suav-supervision.yml','5.6.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3119,'cmii-suav-gateway.yml','5.6.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3120,'cmii-app-release','5.6.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3121,'cmii-uav-emergency.yml','5.6.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3122,'cmii-uav-grid-engine.yml','5.6.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3123,'cmii-uav-grid-surveilliance.yml','5.6.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3124,'cmii-uav-grid-manage.yml','5.6.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3125,'cmii-uav-grid-elasticsearch.yml','5.6.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3126,'cmii-uav-tower.yml','5.6.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3127,'cmii-live-operator.yml','5.6.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3128,'cmii-uav-multilink.yml','5.6.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3129,'cmii-uav-integration.yml','5.6.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.194.193:26686\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345','66e393d5ac27b6a40aa3c2a83981b669','2024-05-08 17:14:13','2024-06-07 17:52:22','nacos','192.168.35.125','','','','','','yaml','',''),(3130,'cmii-uav-threedsimulation.yml','5.6.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3132,'cmii-backend-system.yml','5.6.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2024-05-08 17:14:23','2024-07-22 09:03:11','nacos','192.168.35.125','','','','','','yaml','',''),(3182,'cmii-uas-gateway.yml','5.5.0','debug: true\nspring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/** \n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/** \n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/**\n - /lifecycle/regulator/auth/logout\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/auth/logout\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /warehouse/manufacturer/**','ffb863af2e9d8f20ea72c62616ea0200','2024-05-10 09:28:23','2024-05-10 09:28:42','developer','192.168.102.107','','','','','','yaml','',''),(3183,'cmii-uas-gateway.yml','5.6.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','0c01d7c15c182ff47723ca5895b2dc58','2024-05-10 09:28:23','2024-09-02 13:53:49','developer','192.168.102.201','','','','','','yaml','',''),(3186,'cmii-uas-lifecycle.yml','5.5.0','spring:\n cache:\n type: none\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n # uav_doris:\n # type: com.zaxxer.hikari.HikariDataSource\n # driver-class-name: com.mysql.cj.jdbc.Driver\n # url: jdbc:mysql://192.168.34.234:43855/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n # username: root\n # password:\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address \n host: https://lab.uavcmlc.com/dev\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\nlogging:\n level:\n com.cmii.chinamobile: debug','e8eef322cdeec9c3c4953ec64187ba53','2024-05-10 09:29:08','2024-06-17 11:29:00','nacos','192.168.35.125','','','','','','yaml','',''),(3187,'cmii-uas-lifecycle.yml','5.6.0','spring:\n cache:\n type: none\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.34.234:43855/cmii_demo?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: root\n password:\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n stream-url-map:\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: true\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\ndoris:\n endPoint: http://192.168.34.234:37162 \n user: root\n password:\n database: cmii_demo\nwarn:\n data:\n closeIdType4: false ','cad99f2edb2503b326b37cdd519837a0','2024-05-10 09:29:08','2024-07-31 15:29:06','nacos','10.244.179.192','','','','','','yaml','',''),(3204,'cmii-uav-iot-dispatcher.yml','5.7.0','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','ee4de99d25ffa3afc6b8fee27f901280','2024-05-29 15:03:12','2024-09-05 14:51:10','developer','10.244.179.192','','','','','','yaml','',''),(3231,'cmii-uav-sense-adapter.yml','5.6.0','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n qos: 0\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #(设置后需重启服务); 也可通过swagger接口设置(实时生效, 但设置后重启失效);\n max-control-packets-per-second: 5\n max-control-bytes-per-second: 10480\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #(设置后需重启服务); 也可通过swagger接口设置(实时生效, 但设置后重启失效);\n max-user-data-packets-per-second: 5\n max-user-data-bytes-per-second: 10480\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:S_sfId_T_taskId\n # 景德镇SF 36798, 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"36798,16\"\n# need-process-sf-ids: \"\"\n #(设置后需重启服务); 也可通过swagger接口设置(实时生效, 但设置后重启失效);\n sf-rate-limit:\n - sf-id: 8002\n max-control-packets-per-second: 3\n max-control-bytes-per-second: 10240\n max-user-data-packets-per-second: 3\n max-user-data-bytes-per-second: 10240\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4a7cb9e412fa0047dc3d8f8838a37f74','2024-06-14 09:56:13','2024-07-29 17:14:01','developer','192.168.102.67','','','','','','yaml','',''),(3324,'cmii-uav-surveillance.yml','5.7.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n\nlifecycle:\n isOpen: true\n companyIds: 2\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n# 机库虚拟摇杆ws连接\nmqtt-cloudAPI:\n wss: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token','75ce9995e13a6a05a795cb690bba9844','2024-07-18 17:18:55','2024-08-06 09:23:28','nacos','10.244.179.192','','','','','','yaml','',''),(3325,'cmii-uav-grid-datasource.yml','5.7.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3326,'cmii-admin-data.yml','5.7.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3327,'cmii-admin-gateway.yml','5.7.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3328,'cmii-admin-user.yml','5.7.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3329,'cmii-omoc-gateway.yml','5.7.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3330,'cmii-omoc-process.yml','5.7.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3331,'cmii-omoc-user.yml','5.7.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3332,'cmii-open-gateway.yml','5.7.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3333,'cmii-uav-airspace.yml','5.7.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3334,'cmii-uav-alarm.yml','5.7.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3335,'cmii-uav-brain.yml','5.7.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3336,'cmii-uav-cloud-live.yml','5.7.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','f0bfedbd38d02208364c28c3771bc40f','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3337,'cmii-uav-clusters.yml','5.7.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3338,'cmii-uav-cms.yml','5.7.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3339,'cmii-uav-data-post-process.yml','5.7.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: true\n geoCS: EPSG:4326\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','eaac7453e9c1769e2fa513f524ae0015','2024-07-18 17:18:55','2024-07-24 14:26:41','nacos','192.168.35.125','','','','','','yaml','',''),(3340,'cmii-uav-developer.yml','5.7.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','f42ada80a212f6f5e4116f0fe0adcba4','2024-07-18 17:18:55','2024-08-19 16:48:25','developer','192.168.103.45','','','','','','yaml','',''),(3341,'cmii-uav-device.yml','5.7.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3342,'cmii-uav-gateway.yml','5.7.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','831af85efefbceaad33bf27eff92e8fe','2024-07-18 17:18:55','2024-10-08 16:41:32','developer','192.168.102.86','','','','','','yaml','',''),(3343,'cmii-uav-industrial-portfolio.yml','5.7.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: debug\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','b1c681d30f86d4ad8643d57c16f7b2d9','2024-07-18 17:18:55','2024-09-12 11:07:15','developer','192.168.102.12','','','','','','yaml','',''),(3344,'cmii-uav-kpi-monitor.yml','5.7.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3345,'cmii-uav-logger.yml','5.7.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3346,'cmii-uav-material-warehouse.yml','5.7.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /uas/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','a815811e029fa70d0d7d80f39dc6a4d0','2024-07-18 17:18:55','2024-09-04 09:31:29','nacos','10.244.179.192','','','','','','yaml','',''),(3347,'cmii-uav-mission.yml','5.7.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\n ai:\n ip: 192.168.34.227\n port: 19000\n waterUrl: /v2/models/water_segment/infer\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','99601af8f85be4408167d8cdd7a86625','2024-07-18 17:18:55','2024-08-15 11:19:29','nacos','10.244.179.192','','','','','','yaml','',''),(3348,'cmii-uav-mqtthandler.yml','5.7.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\n send-bridge: false\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','0b4ad7606fd92323a19dcf3c556c5a36','2024-07-18 17:18:55','2024-08-22 10:03:24','developer','192.168.103.197','','','','','','yaml','',''),(3349,'cmii-uav-notice.yml','5.7.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3350,'cmii-uav-oauth.yml','5.7.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3351,'cmii-uav-process.yml','5.7.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3352,'cmii-uav-security-system.yml','5.7.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3353,'cmii-uav-user.yml','5.7.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-07-18 17:18:55','2024-07-20 10:01:17','developer','192.168.102.63','','','','','','yaml','',''),(3354,'cmii-uav-waypoint.yml','5.7.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3355,'cmii-uav-gis-server.yml','5.7.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3356,'cmii-suav-supervision.yml','5.7.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3357,'cmii-suav-gateway.yml','5.7.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3358,'cmii-app-release','5.7.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3359,'cmii-uav-emergency.yml','5.7.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3360,'cmii-uav-grid-engine.yml','5.7.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3361,'cmii-uav-grid-surveilliance.yml','5.7.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3362,'cmii-uav-grid-manage.yml','5.7.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3363,'cmii-uav-grid-elasticsearch.yml','5.7.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3364,'cmii-uav-tower.yml','5.7.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3365,'cmii-live-operator.yml','5.7.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3366,'cmii-uav-multilink.yml','5.7.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3367,'cmii-uav-integration.yml','5.7.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345','d4948f96e8f0fbe2f0a37c4c944eeccf','2024-07-18 17:18:56','2024-07-23 13:59:16','nacos','192.168.35.125','','','','','','yaml','',''),(3368,'cmii-uav-threedsimulation.yml','5.7.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3369,'cmii-backend-system.yml','5.7.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2024-07-18 17:18:56','2024-07-22 09:14:38','nacos','192.168.35.125','','','','','','yaml','',''),(3370,'cmii-uas-gateway.yml','5.7.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','a29dcbddb5509ab006947f0ec5f03b5b','2024-07-18 17:18:56','2024-09-02 13:54:36','developer','192.168.102.201','','','','','','yaml','',''),(3371,'cmii-uas-lifecycle.yml','5.7.0','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','69c34d6951d2d7430729a121ddc6d0d6','2024-07-18 17:18:56','2024-08-28 10:48:39','nacos','10.244.179.192','','','','','','yaml','',''),(3372,'cmii-uav-sense-adapter.yml','5.7.0','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 50\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 40\n max-user-data-bytes-per-second: 1480000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n\n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"1040265216,587345920,36798,1102\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"587345920,553725952,20240626,101,12727754,8005,9001,285712,1315,838938628,2032,112,570503172,2101,8004,36798,8008,1102,570503168,537604096,123,9527,1040265216\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n - sf-id: 8002\n max-control-packets-per-second: 3\n max-control-bytes-per-second: 10240\n max-user-data-packets-per-second: 3\n max-user-data-bytes-per-second: 10240\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','a83399f1c3e58b913b047b37e713ad81','2024-07-18 17:18:56','2024-08-30 10:29:40','developer','192.168.102.235','','','','','','yaml','',''),(3526,'cmii-uav-iot-dispatcher.yml','5.8.0','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔\n coop_uav_takeoff_altitude: 500.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','b6a2c724e822b2d54d078d6938fbe0bf','2024-08-22 16:31:37','2024-09-06 17:10:31','developer','10.244.179.192','','','','','','yaml','',''),(3527,'cmii-uav-surveillance.yml','5.8.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n org.springframework.amqp.rabbit.connection.AbstractConnectionFactory: none\n\nlifecycle:\n isOpen: true\n companyIds: 2\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n # delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n delay-uas-ids: \'\'\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 0\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n# 机库虚拟摇杆ws连接\nmqtt-cloudAPI:\n wss: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token','c1fa48ec9e5e2b25579d15fe7b2bb47d','2024-08-22 16:31:37','2024-08-26 17:10:16','nacos','10.244.179.192','','','','','','yaml','',''),(3528,'cmii-uav-grid-datasource.yml','5.8.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3529,'cmii-admin-data.yml','5.8.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3530,'cmii-admin-gateway.yml','5.8.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3531,'cmii-admin-user.yml','5.8.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3532,'cmii-omoc-gateway.yml','5.8.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3533,'cmii-omoc-process.yml','5.8.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3534,'cmii-omoc-user.yml','5.8.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3535,'cmii-open-gateway.yml','5.8.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3536,'cmii-uav-airspace.yml','5.8.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3537,'cmii-uav-alarm.yml','5.8.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3538,'cmii-uav-brain.yml','5.8.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3539,'cmii-uav-cloud-live.yml','5.8.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','f0bfedbd38d02208364c28c3771bc40f','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3540,'cmii-uav-clusters.yml','5.8.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3541,'cmii-uav-cms.yml','5.8.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3542,'cmii-uav-data-post-process.yml','5.8.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: true\n geoCS: EPSG:4326\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','eaac7453e9c1769e2fa513f524ae0015','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3543,'cmii-uav-developer.yml','5.8.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','f42ada80a212f6f5e4116f0fe0adcba4','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3544,'cmii-uav-device.yml','5.8.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n','487e018d0c50d8ba348dc00545e20950','2024-08-22 16:31:37','2024-09-05 17:00:36','developer','10.244.192.64','','','','','','yaml','',''),(3545,'cmii-uav-gateway.yml','5.8.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','9df6994ec1390ea9669183c840d12b2a','2024-08-22 16:31:37','2024-08-30 09:52:09','developer','10.244.179.192','','','','','','yaml','',''),(3546,'cmii-uav-industrial-portfolio.yml','5.8.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244\n deny-flying-companies: 178\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: \'\'\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 0\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','a9a28d7897d0c9765a3a06168959ecd9','2024-08-22 16:31:37','2024-08-26 10:03:20','developer','192.168.102.176','','','','','','yaml','',''),(3547,'cmii-uav-kpi-monitor.yml','5.8.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3548,'cmii-uav-logger.yml','5.8.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3549,'cmii-uav-material-warehouse.yml','5.8.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /uas/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','a815811e029fa70d0d7d80f39dc6a4d0','2024-08-22 16:31:37','2024-09-04 10:21:14','nacos','10.244.179.192','','','','','','yaml','',''),(3550,'cmii-uav-mission.yml','5.8.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\n ai:\n ip: 192.168.34.227\n port: 19000\n waterUrl: /v2/models/water_segment/infer\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','99601af8f85be4408167d8cdd7a86625','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3551,'cmii-uav-mqtthandler.yml','5.8.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\n send-bridge: false\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','0b4ad7606fd92323a19dcf3c556c5a36','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3552,'cmii-uav-notice.yml','5.8.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3553,'cmii-uav-oauth.yml','5.8.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3554,'cmii-uav-process.yml','5.8.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3555,'cmii-uav-security-system.yml','5.8.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3556,'cmii-uav-user.yml','5.8.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3557,'cmii-uav-waypoint.yml','5.8.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3558,'cmii-uav-gis-server.yml','5.8.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3559,'cmii-suav-supervision.yml','5.8.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3560,'cmii-suav-gateway.yml','5.8.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3561,'cmii-app-release','5.8.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3562,'cmii-uav-emergency.yml','5.8.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3563,'cmii-uav-grid-engine.yml','5.8.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3564,'cmii-uav-grid-surveilliance.yml','5.8.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3565,'cmii-uav-grid-manage.yml','5.8.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3566,'cmii-uav-grid-elasticsearch.yml','5.8.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3567,'cmii-uav-tower.yml','5.8.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3568,'cmii-live-operator.yml','5.8.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3569,'cmii-uav-multilink.yml','5.8.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3570,'cmii-uav-integration.yml','5.8.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345','d4948f96e8f0fbe2f0a37c4c944eeccf','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3571,'cmii-uav-threedsimulation.yml','5.8.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3572,'cmii-backend-system.yml','5.8.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3573,'cmii-uas-gateway.yml','5.8.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','a29dcbddb5509ab006947f0ec5f03b5b','2024-08-22 16:31:37','2024-09-02 13:55:12','developer','192.168.102.201','','','','','','yaml','',''),(3574,'cmii-uas-lifecycle.yml','5.8.0','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','69c34d6951d2d7430729a121ddc6d0d6','2024-08-22 16:31:37','2024-08-28 10:40:16','nacos','10.244.179.192','','','','','','yaml','',''),(3575,'cmii-uav-sense-adapter.yml','5.8.0','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10480000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n - sf-id: 101\n task-id: 1659845102\n \n\n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"1040265216,587345920,36798,1102\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"587345920,553725952,20240626,101,12727754,8005,9001,285712,1315,838938628,2032,112,570503172,2101,8004,36798,8008,1102,570503168,537604096,123,9527,1040265216\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n - sf-id: 8002\n max-control-packets-per-second: 3\n max-control-bytes-per-second: 10240\n max-user-data-packets-per-second: 3\n max-user-data-bytes-per-second: 10240\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','b19eb4aab2fbef80013745a029f70bd8','2024-08-22 16:31:37','2024-09-09 11:37:19','developer','10.244.192.64','','','','','','yaml','',''),(3611,'cmii-uav-iot-dispatcher.yml','6.0.0','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)\n coop_uav_takeoff_altitude: 0.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','135e9564da1c69849e70c48f248df8ea','2024-09-09 17:04:01','2024-09-13 15:11:18','developer','10.244.179.192','','','','','','yaml','',''),(3612,'cmii-uav-surveillance.yml','6.0.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n org.springframework.amqp.rabbit.connection.AbstractConnectionFactory: none\n\nlifecycle:\n isOpen: true\n companyIds: 2\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n # delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n delay-uas-ids: \'\'\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 0\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n# 机库虚拟摇杆ws连接\nmqtt-cloudAPI:\n wss: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token','c1fa48ec9e5e2b25579d15fe7b2bb47d','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3613,'cmii-uav-grid-datasource.yml','6.0.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3614,'cmii-admin-data.yml','6.0.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3615,'cmii-admin-gateway.yml','6.0.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','47c6c85c2be605767e19db82e8e2f201','2024-09-09 17:04:01','2024-10-11 09:29:52','developer','192.168.102.167','','','','','','yaml','',''),(3616,'cmii-admin-user.yml','6.0.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3617,'cmii-omoc-gateway.yml','6.0.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3618,'cmii-omoc-process.yml','6.0.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3619,'cmii-omoc-user.yml','6.0.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3620,'cmii-open-gateway.yml','6.0.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3621,'cmii-uav-airspace.yml','6.0.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3622,'cmii-uav-alarm.yml','6.0.0','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\nsec:\n db:\n table:\n uav_airspace:\n - efence_airspace_copy:org_id,id\n uav_dev:\n - uav_plane:company_id,uav_code\n - uav_load\n tpIndex: tp_id\n flag: true\n\n mqtt:\n server:\n #mqtt server\n host: 192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n\n listener:\n topic:\n - mission/info\n missionType: 5000,5001,5002,5003,5004,5005,5006,5007,5008,5009\n flag: true\n\n report:\n server:\n #mqtt server\n host: tcp://192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n','11ee88d96f6470a3e155393734776019','2024-09-09 17:04:01','2024-10-11 10:46:20','developer','192.168.102.167','','','','','','yaml','',''),(3623,'cmii-uav-brain.yml','6.0.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3624,'cmii-uav-cloud-live.yml','6.0.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@141 # 地标检测\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','108429c031330d1b8797f3c042433d2d','2024-09-09 17:04:01','2024-09-20 10:35:35','nacos','10.244.179.192','','','','','','yaml','',''),(3625,'cmii-uav-clusters.yml','6.0.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3626,'cmii-uav-cms.yml','6.0.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3627,'cmii-uav-data-post-process.yml','6.0.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: true\n geoCS: EPSG:4326\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','eaac7453e9c1769e2fa513f524ae0015','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3628,'cmii-uav-developer.yml','6.0.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','f42ada80a212f6f5e4116f0fe0adcba4','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3629,'cmii-uav-device.yml','6.0.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n','487e018d0c50d8ba348dc00545e20950','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3630,'cmii-uav-gateway.yml','6.0.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n websocket:\n max-frame-payload-length: 12480000\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n - id: advanced5g-websocket\n uri: lb:ws://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/sense/data/**\n - Path=/advanced5g/sense/detectionData/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','52bceffb72a72f7993d20e60174e6787','2024-09-09 17:04:01','2024-10-09 10:07:07','developer','192.168.102.235','','','','','','yaml','',''),(3631,'cmii-uav-industrial-portfolio.yml','6.0.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','329bdb20ff869d0b1534bd4412b5e0c2','2024-09-09 17:04:01','2024-10-14 17:06:31','developer','192.168.102.84','','','','','','yaml','',''),(3632,'cmii-uav-kpi-monitor.yml','6.0.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3633,'cmii-uav-logger.yml','6.0.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3634,'cmii-uav-material-warehouse.yml','6.0.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /uas/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','a815811e029fa70d0d7d80f39dc6a4d0','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3635,'cmii-uav-mission.yml','6.0.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\n ai:\n ip: 192.168.34.227\n port: 19000\n waterUrl: /v2/models/water_segment/infer\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','99601af8f85be4408167d8cdd7a86625','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3636,'cmii-uav-mqtthandler.yml','6.0.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\n send-bridge: false\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','0b4ad7606fd92323a19dcf3c556c5a36','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3637,'cmii-uav-notice.yml','6.0.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3638,'cmii-uav-oauth.yml','6.0.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3639,'cmii-uav-process.yml','6.0.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3640,'cmii-uav-security-system.yml','6.0.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3641,'cmii-uav-user.yml','6.0.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3642,'cmii-uav-waypoint.yml','6.0.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3643,'cmii-uav-gis-server.yml','6.0.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3644,'cmii-suav-supervision.yml','6.0.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3645,'cmii-suav-gateway.yml','6.0.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3646,'cmii-app-release','6.0.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3647,'cmii-uav-emergency.yml','6.0.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3648,'cmii-uav-grid-engine.yml','6.0.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3649,'cmii-uav-grid-surveilliance.yml','6.0.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3650,'cmii-uav-grid-manage.yml','6.0.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3651,'cmii-uav-grid-elasticsearch.yml','6.0.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3652,'cmii-uav-tower.yml','6.0.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3653,'cmii-live-operator.yml','6.0.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3654,'cmii-uav-multilink.yml','6.0.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3655,'cmii-uav-integration.yml','6.0.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.integration.cmii.service.DockOnlineService: error\n com.cmii.chinamobile.integration.cmii.service.impl.telemetries.DroneTelemetryServiceImpl: error\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345\nemqx:\n external:\n tcpHost: 183.220.196.113:26689\n tcpUsername: drcdji\n tcpPassword: CMII112233!\n wsHost: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token\n wsUsername: drcdji\n wsPassword: CMII112233!','9a1b2fa6fcb605c1b547c369c01c98ef','2024-09-09 17:04:01','2024-09-25 11:01:26','nacos','10.244.179.192','','','','','','yaml','',''),(3656,'cmii-uav-threedsimulation.yml','6.0.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3657,'cmii-backend-system.yml','6.0.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2024-09-09 17:04:01','2024-10-11 16:15:10','nacos','10.244.179.192','','','','','','yaml','',''),(3658,'cmii-uas-gateway.yml','6.0.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','a29dcbddb5509ab006947f0ec5f03b5b','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3659,'cmii-uas-lifecycle.yml','6.0.0','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','cd87832b1daa87f1a6a24e7721866fde','2024-09-09 17:04:01','2024-10-14 17:43:55','nacos','10.244.179.192','','','','','','yaml','',''),(3660,'cmii-uav-sense-adapter.yml','6.0.0','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','3c4ee812aa55286828390b19ddf99a9a','2024-09-09 17:04:01','2024-10-14 19:43:23','developer','10.244.192.64','','','','','','yaml','',''),(3736,'cmii-uav-advanced5g.yml','5.7.0','bizName: 通感一体化系统\r\ndbSchema: uav_industrial_portfolio\r\nspring:\r\n cache:\r\n type: none\r\nspringdoc:\r\n api-docs:\r\n version: openapi_3_1\r\n group-configs:\r\n - group: common\r\n display-name: 公共能力\r\n paths-to-match:\r\n - /cmii/**\r\n - group: all\r\n display-name: 所有的服务能力\r\n paths-to-match:\r\n - /**\r\nknife4j:\r\n enable: true\r\n basic:\r\n enable: true\r\n username: admin\r\n password: Yunying123\r\nadvanced5g:\r\n send-all-data: false\r\n device-control-user-ids: 414\r\n calculate-area-type: true\r\n calculate-tracking: true','4ab76a2d3788e3140137b49c2e07c937','2024-10-08 16:42:45','2024-10-08 16:42:45',NULL,'192.168.102.86','','',NULL,NULL,NULL,'yaml',NULL,''),(3737,'cmii-uav-advanced5g.yml','6.0.0','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','f69a426498b8ee135bc54f73631cd3d9','2024-10-08 16:43:11','2024-10-09 20:01:35','developer','192.168.103.69','','','','','','yaml','',''); +INSERT INTO `config_info` VALUES (1424,'cmii-uav-oauth.yml','4.0.3','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1425,'cmii-uav-process.yml','4.0.3','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1426,'cmii-uav-security-system.yml','4.0.3','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1427,'cmii-uav-surveillance.yml','4.0.3','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1428,'cmii-uav-user.yml','4.0.3','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1429,'cmii-uav-waypoint.yml','4.0.3','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1430,'cmii-uav-gis-server.yml','4.0.3','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1431,'cmii-suav-supervision.yml','4.0.3','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1432,'cmii-suav-gateway.yml','4.0.3','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1433,'cmii-app-release','4.0.3','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,NULL,NULL,''),(1434,'cmii-uav-emergency.yml','4.0.3','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-10-25 16:00:42','2022-10-25 16:00:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1435,'cmii-backend-system.yml','4.0.3','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: true\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','69519a3fc2a6b2d9774edfec413f5a80','2022-10-25 16:00:42','2022-11-21 10:28:46',NULL,'10.244.212.128','','','','','','yaml','',''),(1439,'cmii-admin-data.yml','4.0.4','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n\n','b587b1be91847b660d1bbd67e8f199a6','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1440,'cmii-admin-gateway.yml','4.0.4','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1441,'cmii-admin-user.yml','4.0.4','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1442,'cmii-omoc-gateway.yml','4.0.4','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1443,'cmii-omoc-process.yml','4.0.4','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1444,'cmii-omoc-user.yml','4.0.4','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1445,'cmii-open-gateway.yml','4.0.4','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1446,'cmii-uav-airspace.yml','4.0.4','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1447,'cmii-uav-alarm.yml','4.0.4','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1448,'cmii-uav-brain.yml','4.0.4','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1449,'cmii-uav-cloud-live.yml','4.0.4','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-live-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','74d215a8598c230f9fa7f2123731de14','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1450,'cmii-uav-clusters.yml','4.0.4','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1451,'cmii-uav-cms.yml','4.0.4','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1452,'cmii-uav-data-post-process.yml','4.0.4','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1453,'cmii-uav-developer.yml','4.0.4','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1454,'cmii-uav-device.yml','4.0.4','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1455,'cmii-uav-gateway.yml','4.0.4','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a6dc4bca591e542310f6a6fb6236022a','2022-11-09 16:41:42','2022-11-14 11:11:26',NULL,'10.244.212.128','','','','','','yaml','',''),(1456,'cmii-uav-industrial-portfolio.yml','4.0.4','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1457,'cmii-uav-kpi-monitor.yml','4.0.4','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1458,'cmii-uav-logger.yml','4.0.4','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1459,'cmii-uav-material-warehouse.yml','4.0.4','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1460,'cmii-uav-mission.yml','4.0.4','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1461,'cmii-uav-mqtthandler.yml','4.0.4','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\n','0792765d9220d4d56f91ee474df821f1','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1462,'cmii-uav-notice.yml','4.0.4','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','278e2d7727a594b26f886eff9917df1b','2022-11-09 16:41:42','2022-11-14 16:13:21',NULL,'10.244.212.128','','','','','','yaml','',''),(1463,'cmii-uav-oauth.yml','4.0.4','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1464,'cmii-uav-process.yml','4.0.4','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1465,'cmii-uav-security-system.yml','4.0.4','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1466,'cmii-uav-surveillance.yml','4.0.4','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\n','3b05c11a56792eac6d45040c45ce388f','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1467,'cmii-uav-user.yml','4.0.4','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1468,'cmii-uav-waypoint.yml','4.0.4','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1469,'cmii-uav-gis-server.yml','4.0.4','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1470,'cmii-suav-supervision.yml','4.0.4','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1471,'cmii-suav-gateway.yml','4.0.4','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1472,'cmii-app-release','4.0.4','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1473,'cmii-uav-emergency.yml','4.0.4','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-11-09 16:41:42','2022-11-09 16:41:42',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1474,'cmii-backend-system.yml','4.0.4','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: true\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','69519a3fc2a6b2d9774edfec413f5a80','2022-11-09 16:41:42','2022-11-21 10:28:35',NULL,'10.244.212.128','','','','','','yaml','',''),(1482,'nacos.cfg.dataIdfoo','foo','helloWorld','1a833da63a6b7e20098dae06d06602e1','2022-11-23 11:26:13','2023-05-27 23:02:22',NULL,'10.244.112.128','','',NULL,NULL,NULL,'text',NULL,''),(1564,'cmii-admin-data.yml','4.0.5','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1565,'cmii-admin-gateway.yml','4.0.5','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1566,'cmii-admin-user.yml','4.0.5','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1567,'cmii-omoc-gateway.yml','4.0.5','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1568,'cmii-omoc-process.yml','4.0.5','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1569,'cmii-omoc-user.yml','4.0.5','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1570,'cmii-open-gateway.yml','4.0.5','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1571,'cmii-uav-airspace.yml','4.0.5','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1572,'cmii-uav-alarm.yml','4.0.5','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1573,'cmii-uav-brain.yml','4.0.5','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1574,'cmii-uav-cloud-live.yml','4.0.5','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: srs-op\n engines:\n - name: srs-op\n desc: live service powered by srs-op\n type: srs-op\n endpoint: http://helm-live-op-svc:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','74d215a8598c230f9fa7f2123731de14','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1575,'cmii-uav-clusters.yml','4.0.5','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1576,'cmii-uav-cms.yml','4.0.5','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1577,'cmii-uav-data-post-process.yml','4.0.5','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1578,'cmii-uav-developer.yml','4.0.5','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1579,'cmii-uav-device.yml','4.0.5','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1580,'cmii-uav-gateway.yml','4.0.5','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','c922198b44aa4ff484169621c92e71cf','2022-12-08 16:37:21','2022-12-08 18:04:43',NULL,'10.244.212.128','','','','','','yaml','',''),(1581,'cmii-uav-industrial-portfolio.yml','4.0.5','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1582,'cmii-uav-kpi-monitor.yml','4.0.5','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1583,'cmii-uav-logger.yml','4.0.5','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1584,'cmii-uav-material-warehouse.yml','4.0.5','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1585,'cmii-uav-mission.yml','4.0.5','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1586,'cmii-uav-mqtthandler.yml','4.0.5','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2022-12-08 16:37:21','2022-12-09 14:45:53',NULL,'10.244.212.128','','','','','','yaml','',''),(1587,'cmii-uav-notice.yml','4.0.5','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1588,'cmii-uav-oauth.yml','4.0.5','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1589,'cmii-uav-process.yml','4.0.5','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1590,'cmii-uav-security-system.yml','4.0.5','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1591,'cmii-uav-surveillance.yml','4.0.5','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2022-12-08 16:37:21','2022-12-09 14:49:36',NULL,'10.244.212.128','','','','','','yaml','',''),(1592,'cmii-uav-user.yml','4.0.5','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1593,'cmii-uav-waypoint.yml','4.0.5','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1594,'cmii-uav-gis-server.yml','4.0.5','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1595,'cmii-suav-supervision.yml','4.0.5','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1596,'cmii-suav-gateway.yml','4.0.5','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1597,'cmii-app-release','4.0.5','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,NULL,NULL,''),(1598,'cmii-uav-emergency.yml','4.0.5','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2022-12-08 16:37:21','2022-12-08 16:37:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1599,'cmii-backend-system.yml','4.0.5','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: none\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','00ad6112704e88b1f0c3f40a7322f2d3','2022-12-08 16:37:21','2023-01-04 10:32:56',NULL,'10.244.212.128','','','','','','yaml','',''),(1771,'cmii-admin-data.yml','4.0.6','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1772,'cmii-admin-gateway.yml','4.0.6','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /user/api/admin/resource/syncImportResource\n - /user/api/admin/resource/syncExportResource\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','46d8d36e911eb3895979dd4667f640db','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1773,'cmii-admin-user.yml','4.0.6','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1774,'cmii-omoc-gateway.yml','4.0.6','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1775,'cmii-omoc-process.yml','4.0.6','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1776,'cmii-omoc-user.yml','4.0.6','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1777,'cmii-open-gateway.yml','4.0.6','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1778,'cmii-uav-airspace.yml','4.0.6','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1779,'cmii-uav-alarm.yml','4.0.6','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1780,'cmii-uav-brain.yml','4.0.6','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1781,'cmii-uav-cloud-live.yml','4.0.6','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','aad73b3860cacbe3e83d70e62c204dec','2023-01-13 15:54:26','2023-03-29 17:48:34','','10.244.212.128','','','','','','yaml','',''),(1782,'cmii-uav-clusters.yml','4.0.6','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1783,'cmii-uav-cms.yml','4.0.6','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1784,'cmii-uav-data-post-process.yml','4.0.6','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1785,'cmii-uav-developer.yml','4.0.6','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1786,'cmii-uav-device.yml','4.0.6','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1787,'cmii-uav-gateway.yml','4.0.6','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','c922198b44aa4ff484169621c92e71cf','2023-01-13 15:54:26','2023-01-17 16:34:42','developer','10.244.212.128','','','','','','yaml','',''),(1788,'cmii-uav-industrial-portfolio.yml','4.0.6','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1789,'cmii-uav-kpi-monitor.yml','4.0.6','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1790,'cmii-uav-logger.yml','4.0.6','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1791,'cmii-uav-material-warehouse.yml','4.0.6','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1792,'cmii-uav-mission.yml','4.0.6','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1793,'cmii-uav-mqtthandler.yml','4.0.6','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1794,'cmii-uav-notice.yml','4.0.6','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 10\n hour: 50\n day: 20\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','f1998e83d5659f6e96d69c9d37a4981a','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1795,'cmii-uav-oauth.yml','4.0.6','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1796,'cmii-uav-process.yml','4.0.6','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1797,'cmii-uav-security-system.yml','4.0.6','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1798,'cmii-uav-surveillance.yml','4.0.6','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1799,'cmii-uav-user.yml','4.0.6','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1800,'cmii-uav-waypoint.yml','4.0.6','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1801,'cmii-uav-gis-server.yml','4.0.6','bizName: 兴趣点管理\r\ndbSchema: uav_gis\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7','58bcc6175aa59a62d7d754293f28d22b','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1802,'cmii-suav-supervision.yml','4.0.6','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1803,'cmii-suav-gateway.yml','4.0.6','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1804,'cmii-app-release','4.0.6','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1805,'cmii-uav-emergency.yml','4.0.6','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-01-13 15:54:26','2023-01-13 15:54:26',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1806,'cmii-backend-system.yml','4.0.6','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc \n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job','496e905bb893a1cff7a5bd361de8e2d5','2023-01-13 15:54:26','2023-01-13 15:58:05',NULL,'10.244.212.128','','','','','','yaml','',''),(1935,'cmii-admin-data.yml','4.1.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1936,'cmii-admin-gateway.yml','4.1.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-02-08 09:43:21','2023-03-21 09:47:52','developer','10.244.212.128','','','','','','yaml','',''),(1937,'cmii-admin-user.yml','4.1.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1938,'cmii-omoc-gateway.yml','4.1.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1939,'cmii-omoc-process.yml','4.1.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1940,'cmii-omoc-user.yml','4.1.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1941,'cmii-open-gateway.yml','4.1.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1942,'cmii-uav-airspace.yml','4.1.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1943,'cmii-uav-alarm.yml','4.1.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1944,'cmii-uav-brain.yml','4.1.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1945,'cmii-uav-cloud-live.yml','4.1.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','e4e68301befe5b1c20034b9fb43b6c69','2023-02-08 09:43:21','2023-03-29 17:48:23','','10.244.212.128','','','','','','yaml','',''),(1946,'cmii-uav-clusters.yml','4.1.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1947,'cmii-uav-cms.yml','4.1.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1948,'cmii-uav-data-post-process.yml','4.1.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1949,'cmii-uav-developer.yml','4.1.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: false\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','af557a13e54074c2101044e013b99ff1','2023-02-08 09:43:21','2023-03-15 09:08:00','developer','10.244.212.128','','','','','','yaml','',''),(1950,'cmii-uav-device.yml','4.1.0','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1951,'cmii-uav-gateway.yml','4.1.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','5a7e6d96ea0c4c78b139bf417ab14393','2023-02-08 09:43:21','2023-02-23 17:10:07','developer','10.244.212.128','','','','','','yaml','',''),(1952,'cmii-uav-industrial-portfolio.yml','4.1.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1953,'cmii-uav-kpi-monitor.yml','4.1.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1954,'cmii-uav-logger.yml','4.1.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1955,'cmii-uav-material-warehouse.yml','4.1.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 1073741824\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','fdbae3ae5c26ef75c6d5f48dd0b3bbec','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1956,'cmii-uav-mission.yml','4.1.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1957,'cmii-uav-mqtthandler.yml','4.1.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1958,'cmii-uav-notice.yml','4.1.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-02-08 09:43:21','2023-03-29 11:36:01','developer','10.244.212.128','','','','','','yaml','',''),(1959,'cmii-uav-oauth.yml','4.1.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: false\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','96e2b98fbe839493d76c750cf0aa7beb','2023-02-08 09:43:21','2023-02-21 11:32:21','developer','10.244.212.128','','','','','','yaml','',''),(1960,'cmii-uav-process.yml','4.1.0','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1961,'cmii-uav-security-system.yml','4.1.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1962,'cmii-uav-surveillance.yml','4.1.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1963,'cmii-uav-user.yml','4.1.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1964,'cmii-uav-waypoint.yml','4.1.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1965,'cmii-uav-gis-server.yml','4.1.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(1966,'cmii-suav-supervision.yml','4.1.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1967,'cmii-suav-gateway.yml','4.1.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1968,'cmii-app-release','4.1.0','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1969,'cmii-uav-emergency.yml','4.1.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-02-08 09:43:21','2023-02-08 09:43:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(1970,'cmii-backend-system.yml','4.1.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','b6ed99534514b3bd9764a75df49b264a','2023-02-08 09:43:21','2023-03-23 10:21:55','developer','10.244.212.128','','','','','','yaml','',''),(2159,'cmii-admin-data.yml','4.1.1','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2160,'cmii-admin-gateway.yml','4.1.1','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2161,'cmii-admin-user.yml','4.1.1','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2162,'cmii-omoc-gateway.yml','4.1.1','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2163,'cmii-omoc-process.yml','4.1.1','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2164,'cmii-omoc-user.yml','4.1.1','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2165,'cmii-open-gateway.yml','4.1.1','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2166,'cmii-uav-airspace.yml','4.1.1','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2167,'cmii-uav-alarm.yml','4.1.1','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2168,'cmii-uav-brain.yml','4.1.1','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2169,'cmii-uav-cloud-live.yml','4.1.1','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','85ab6ba3f033d97965a7aee623b65cfe','2023-03-29 16:19:48','2023-04-25 15:47:44','developer','10.244.212.128','','','','','','yaml','',''),(2170,'cmii-uav-clusters.yml','4.1.1','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2171,'cmii-uav-cms.yml','4.1.1','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2172,'cmii-uav-data-post-process.yml','4.1.1','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2173,'cmii-uav-developer.yml','4.1.1','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2174,'cmii-uav-device.yml','4.1.1','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2175,'cmii-uav-gateway.yml','4.1.1','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','fdd768ebb476c43243fe28cb7d738cac','2023-03-29 16:19:48','2023-04-18 14:07:17','developer','10.244.212.128','','','','','','yaml','',''),(2176,'cmii-uav-industrial-portfolio.yml','4.1.1','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2177,'cmii-uav-kpi-monitor.yml','4.1.1','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2178,'cmii-uav-logger.yml','4.1.1','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2179,'cmii-uav-material-warehouse.yml','4.1.1','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2180,'cmii-uav-mission.yml','4.1.1','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2181,'cmii-uav-mqtthandler.yml','4.1.1','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2182,'cmii-uav-notice.yml','4.1.1','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2183,'cmii-uav-oauth.yml','4.1.1','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2184,'cmii-uav-process.yml','4.1.1','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2185,'cmii-uav-security-system.yml','4.1.1','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2186,'cmii-uav-surveillance.yml','4.1.1','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2187,'cmii-uav-user.yml','4.1.1','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2188,'cmii-uav-waypoint.yml','4.1.1','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2189,'cmii-uav-gis-server.yml','4.1.1','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2190,'cmii-suav-supervision.yml','4.1.1','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2191,'cmii-suav-gateway.yml','4.1.1','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2192,'cmii-app-release','4.1.1','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2193,'cmii-uav-emergency.yml','4.1.1','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2194,'cmii-backend-system.yml','4.1.1','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n cluster-nodes: 192.168.35.243:60015\n cluster-name: elasticsearch\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','53b3f1150320b06f0994ab5762d710bc','2023-03-29 16:19:48','2023-04-20 17:42:00','developer','10.244.212.128','','','','','','yaml','',''),(2195,'cmii-uav-grid-datasource.yml','4.1.1','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2196,'cmii-uav-grid-engine.yml','4.1.1','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2197,'cmii-uav-grid-surveilliance.yml','4.1.1','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2198,'cmii-uav-grid-manage.yml','4.1.1','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-03-29 16:19:48','2023-03-29 16:19:48',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2203,'cmii-live-operator.yml','4.1.0','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2023-03-29 17:46:00','2023-03-29 18:06:17','','10.244.212.128','','','','','','yaml','',''),(2204,'cmii-live-operator.yml','4.0.6','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2023-03-29 17:46:16','2023-03-29 18:06:29','','10.244.212.128','','','','','','yaml','',''),(2281,'cmii-uav-integration.yml','4.1.1','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2023-04-09 14:30:40','2023-04-09 16:31:42','nacos','10.244.212.128','','','','','','yaml','',''),(2285,'cmii-uav-grid-elasticsearch.yml','4.1.2','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2023-04-11 16:18:18','2023-04-11 16:18:18',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2286,'cmii-admin-data.yml','4.1.2','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2287,'cmii-admin-gateway.yml','4.1.2','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2288,'cmii-admin-user.yml','4.1.2','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2289,'cmii-omoc-gateway.yml','4.1.2','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2290,'cmii-omoc-process.yml','4.1.2','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2291,'cmii-omoc-user.yml','4.1.2','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2292,'cmii-open-gateway.yml','4.1.2','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2293,'cmii-uav-airspace.yml','4.1.2','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2294,'cmii-uav-alarm.yml','4.1.2','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2295,'cmii-uav-brain.yml','4.1.2','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2296,'cmii-uav-cloud-live.yml','4.1.2','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','e4e68301befe5b1c20034b9fb43b6c69','2023-04-12 10:57:38','2023-04-12 11:01:13','developer','10.244.212.128','','','','','','yaml','',''),(2297,'cmii-uav-clusters.yml','4.1.2','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2298,'cmii-uav-cms.yml','4.1.2','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2299,'cmii-uav-data-post-process.yml','4.1.2','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2300,'cmii-uav-developer.yml','4.1.2','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2301,'cmii-uav-device.yml','4.1.2','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2302,'cmii-uav-gateway.yml','4.1.2','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','20e7b9b9fcab49c9413197c241a76fbc','2023-04-12 10:57:38','2023-04-18 14:07:41','developer','10.244.212.128','','','','','','yaml','',''),(2303,'cmii-uav-industrial-portfolio.yml','4.1.2','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2304,'cmii-uav-kpi-monitor.yml','4.1.2','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2305,'cmii-uav-logger.yml','4.1.2','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2306,'cmii-uav-material-warehouse.yml','4.1.2','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2307,'cmii-uav-mission.yml','4.1.2','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2308,'cmii-uav-mqtthandler.yml','4.1.2','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2309,'cmii-uav-notice.yml','4.1.2','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2310,'cmii-uav-oauth.yml','4.1.2','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2311,'cmii-uav-process.yml','4.1.2','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2312,'cmii-uav-security-system.yml','4.1.2','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2313,'cmii-uav-surveillance.yml','4.1.2','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2314,'cmii-uav-user.yml','4.1.2','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2315,'cmii-uav-waypoint.yml','4.1.2','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2316,'cmii-uav-gis-server.yml','4.1.2','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2317,'cmii-suav-supervision.yml','4.1.2','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2318,'cmii-suav-gateway.yml','4.1.2','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2319,'cmii-app-release','4.1.2','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2320,'cmii-uav-emergency.yml','4.1.2','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2321,'cmii-backend-system.yml','4.1.2','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','b6ed99534514b3bd9764a75df49b264a','2023-04-12 10:57:38','2023-04-12 10:59:52','developer','10.244.212.128','','','','','','yaml','',''),(2322,'cmii-uav-grid-datasource.yml','4.1.2','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2323,'cmii-uav-grid-engine.yml','4.1.2','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2324,'cmii-uav-grid-surveilliance.yml','4.1.2','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2325,'cmii-uav-grid-manage.yml','4.1.2','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-04-12 10:57:38','2023-04-12 10:57:38',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2398,'cmii-admin-data.yml','4.1.3','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2399,'cmii-admin-gateway.yml','4.1.3','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','8b917eac7811ac5efa96af81357db46b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2400,'cmii-admin-user.yml','4.1.3','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2401,'cmii-omoc-gateway.yml','4.1.3','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2402,'cmii-omoc-process.yml','4.1.3','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2403,'cmii-omoc-user.yml','4.1.3','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2404,'cmii-open-gateway.yml','4.1.3','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2405,'cmii-uav-airspace.yml','4.1.3','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2406,'cmii-uav-alarm.yml','4.1.3','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2407,'cmii-uav-brain.yml','4.1.3','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2408,'cmii-uav-cloud-live.yml','4.1.3','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','85ab6ba3f033d97965a7aee623b65cfe','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2409,'cmii-uav-clusters.yml','4.1.3','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2410,'cmii-uav-cms.yml','4.1.3','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2411,'cmii-uav-data-post-process.yml','4.1.3','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2412,'cmii-uav-developer.yml','4.1.3','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2413,'cmii-uav-device.yml','4.1.3','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2414,'cmii-uav-gateway.yml','4.1.3','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','20e7b9b9fcab49c9413197c241a76fbc','2023-04-28 15:09:21','2023-04-28 15:18:58','developer','10.244.212.128','','','','','','yaml','',''),(2415,'cmii-uav-industrial-portfolio.yml','4.1.3','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2416,'cmii-uav-kpi-monitor.yml','4.1.3','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2417,'cmii-uav-logger.yml','4.1.3','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2418,'cmii-uav-material-warehouse.yml','4.1.3','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2419,'cmii-uav-mission.yml','4.1.3','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2420,'cmii-uav-mqtthandler.yml','4.1.3','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2421,'cmii-uav-notice.yml','4.1.3','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2422,'cmii-uav-oauth.yml','4.1.3','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n #default-user-id: 499 # demo环境\n default-user-id: 505\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','af300d9dc0df3b012d02ce77799511de','2023-04-28 15:09:21','2023-05-18 09:28:52','developer','10.244.212.128','','','','','','yaml','',''),(2423,'cmii-uav-process.yml','4.1.3','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2424,'cmii-uav-security-system.yml','4.1.3','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2425,'cmii-uav-surveillance.yml','4.1.3','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','694dee89f0d4d03bad96b591a80f62e3','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2426,'cmii-uav-user.yml','4.1.3','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2427,'cmii-uav-waypoint.yml','4.1.3','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2428,'cmii-uav-gis-server.yml','4.1.3','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2429,'cmii-suav-supervision.yml','4.1.3','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2430,'cmii-suav-gateway.yml','4.1.3','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2431,'cmii-app-release','4.1.3','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2432,'cmii-uav-emergency.yml','4.1.3','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2433,'cmii-uav-grid-datasource.yml','4.1.3','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2434,'cmii-uav-grid-engine.yml','4.1.3','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2435,'cmii-uav-grid-surveilliance.yml','4.1.3','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2436,'cmii-uav-grid-manage.yml','4.1.3','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2437,'cmii-uav-grid-elasticsearch.yml','4.1.3','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2023-04-28 15:09:21','2023-04-28 15:09:21',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2438,'cmii-backend-system.yml','4.1.3','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n cluster-nodes: 192.168.35.243:60015\n cluster-name: elasticsearch\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: redis://helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','dddb9aa017a468b410f356dfc9a381ba','2023-04-28 15:09:21','2023-05-05 10:12:31','developer','10.244.212.128','','','','','','yaml','',''),(2471,'cmii-uav-integration.yml','4.1.2','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2023-05-04 17:07:44','2023-05-04 17:07:44',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2472,'cmii-uav-integration.yml','4.1.3','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2023-05-04 17:07:50','2023-05-04 17:07:50',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2473,'cmii-uav-grid-elasticsearch.yml','DEFAULT_GROUP','spring:\n elasticsearch:\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9302','2a9ea0d97aceb0be03d9f16c7fc34bb1','2023-05-05 10:05:16','2024-04-03 11:22:40','nacos','192.168.34.234','','','','','','yaml','',''),(2546,'cmii-admin-data.yml','4.1.4','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2547,'cmii-admin-gateway.yml','4.1.4','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /webjars/**\n# - /doc.html\n# - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','21d434c6a85d76db3fd0e631a95c52c9','2023-05-18 16:20:35','2023-05-29 15:36:27','developer','10.244.212.128','','','','','','yaml','',''),(2548,'cmii-admin-user.yml','4.1.4','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2549,'cmii-omoc-gateway.yml','4.1.4','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2550,'cmii-omoc-process.yml','4.1.4','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2551,'cmii-omoc-user.yml','4.1.4','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2552,'cmii-open-gateway.yml','4.1.4','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /**/webjars/**\n# - /**/doc.html\n# - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','a6c10aa799cf809b6d0c0812fe1a899f','2023-05-18 16:20:35','2023-05-29 15:36:55','developer','10.244.212.128','','','','','','yaml','',''),(2553,'cmii-uav-airspace.yml','4.1.4','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2554,'cmii-uav-alarm.yml','4.1.4','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2555,'cmii-uav-brain.yml','4.1.4','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2556,'cmii-uav-cloud-live.yml','4.1.4','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','85ab6ba3f033d97965a7aee623b65cfe','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2557,'cmii-uav-clusters.yml','4.1.4','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2558,'cmii-uav-cms.yml','4.1.4','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2559,'cmii-uav-data-post-process.yml','4.1.4','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464520\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','93c8241a34b3567b7b70aea6f762e3a8','2023-05-18 16:20:35','2023-05-24 15:04:16','developer','192.168.34.239','','','','','','yaml','',''),(2560,'cmii-uav-developer.yml','4.1.4','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2561,'cmii-uav-device.yml','4.1.4','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2562,'cmii-uav-gateway.yml','4.1.4','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n # - /admin/**/getLangValueFromRedisByKey\n # - /admin/**/getDictListFromRedis\n # - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','2f8d49814bd81d2c3493d0057ba9f241','2023-05-18 16:20:35','2023-05-29 15:38:20','developer','10.244.212.128','','','','','','yaml','',''),(2563,'cmii-uav-industrial-portfolio.yml','4.1.4','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','a62e6b405ee9dc2b05c8e12482396bbf','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2564,'cmii-uav-kpi-monitor.yml','4.1.4','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2565,'cmii-uav-logger.yml','4.1.4','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2566,'cmii-uav-material-warehouse.yml','4.1.4','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2567,'cmii-uav-mission.yml','4.1.4','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2568,'cmii-uav-mqtthandler.yml','4.1.4','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2569,'cmii-uav-notice.yml','4.1.4','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2570,'cmii-uav-oauth.yml','4.1.4','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','aa73c450d5c28e406848f6e0d403bb3a','2023-05-18 16:20:35','2023-05-30 10:21:52','developer','10.244.212.128','','','','','','yaml','',''),(2571,'cmii-uav-process.yml','4.1.4','bizName: 流程系统\r\ndbSchema: uav_process\r\ncom:\r\n cmii:\r\n chinamobile:\r\n mq:\r\n callback:\r\n exchange: ${spring.application.name}\r\n key: ${spring.application.name}_callback\r\n queue: ${spring.application.name}_callback\r\nprocess:\r\n notice:\r\n taskExpireHour:48\r\nflowable:\r\n#关闭定时任务JOB\r\n async-executor-activate: false\r\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\r\n database-schema-update: false\r\n\r\n','6d32cba1fdea9c8f37fb9e54afeb6082','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2572,'cmii-uav-security-system.yml','4.1.4','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2573,'cmii-uav-surveillance.yml','4.1.4','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.common.scheduling: NONE\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','e4bad24fd3cfd9b3e7b37a5854785fa3','2023-05-18 16:20:35','2023-05-23 10:17:27','developer','10.244.212.128','','','','','','yaml','',''),(2574,'cmii-uav-user.yml','4.1.4','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2575,'cmii-uav-waypoint.yml','4.1.4','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2576,'cmii-uav-gis-server.yml','4.1.4','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464516\n','22fbae01380ac65979b2b2ea000fda92','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2577,'cmii-suav-supervision.yml','4.1.4','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n','c89f35116cf9d67814271f72106474fb','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2578,'cmii-suav-gateway.yml','4.1.4','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2579,'cmii-app-release','4.1.4','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2580,'cmii-uav-emergency.yml','4.1.4','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2581,'cmii-uav-grid-datasource.yml','4.1.4','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n data:\n elasticsearch:\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','bfe40ff869a9eaf1f548c054d96d2296','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2582,'cmii-uav-grid-engine.yml','4.1.4','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2583,'cmii-uav-grid-surveilliance.yml','4.1.4','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2584,'cmii-uav-grid-manage.yml','4.1.4','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2585,'cmii-uav-grid-elasticsearch.yml','4.1.4','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2023-05-18 16:20:35','2023-05-18 16:20:35',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2586,'cmii-backend-system.yml','4.1.4','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com:18000\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://192.168.126.57:8198 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.2:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com:18000 # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n cluster-nodes: 192.168.35.243:60015\n cluster-name: elasticsearch\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@吴强)(16)\n url: 192.168.35.227\n port: 16688\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.228\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.2\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','fb41c33f1f06ed6224f123e1f8143b5c','2023-05-18 16:20:35','2023-05-18 16:23:04','developer','10.244.212.128','','','','','','yaml','',''),(2639,'cmii-admin-data.yml','5.2.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2640,'cmii-admin-gateway.yml','5.2.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','07c08977ff05ba5466a6066631c7d5c4','2024-01-25 15:17:41','2024-01-29 15:38:15','developer','192.168.102.248','','','','','','yaml','',''),(2641,'cmii-admin-user.yml','5.2.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2642,'cmii-omoc-gateway.yml','5.2.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2643,'cmii-omoc-process.yml','5.2.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2644,'cmii-omoc-user.yml','5.2.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2645,'cmii-open-gateway.yml','5.2.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /**/webjars/**\n# - /**/doc.html\n# - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','a6c10aa799cf809b6d0c0812fe1a899f','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2646,'cmii-uav-airspace.yml','5.2.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2647,'cmii-uav-alarm.yml','5.2.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2648,'cmii-uav-brain.yml','5.2.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2649,'cmii-uav-cloud-live.yml','5.2.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','19ebc0ad8f0d6ceb9d0edc4289032d6b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2650,'cmii-uav-clusters.yml','5.2.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2651,'cmii-uav-cms.yml','5.2.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','26c812434220a0bba8e2f2f916c16484','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2652,'cmii-uav-data-post-process.yml','5.2.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2653,'cmii-uav-developer.yml','5.2.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2654,'cmii-uav-device.yml','5.2.0','bizName: 载荷管理\r\ndbSchema: uav_dev\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\noauth:\r\n free:\r\n grantType: authorization_code\r\n clientId: APP_9LY41OaKSqk2btY0\r\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n\r\n\r\n','ba464b35beb7dbd6e8b788f216854044','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2655,'cmii-uav-gateway.yml','5.2.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','a123e2be8c541baf8e53dc0df3803585','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2656,'cmii-uav-industrial-portfolio.yml','5.2.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138537\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.service.impl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler: warn\nemergency:\n station:\n closeStation: false\n stationHost: http://192.168.36.214:8086\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','ba487ffa42406589e433c3c9359eee16','2024-01-25 15:17:41','2024-02-04 18:54:41','developer','192.168.102.60','','','','','','yaml','',''),(2657,'cmii-uav-kpi-monitor.yml','5.2.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2658,'cmii-uav-logger.yml','5.2.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2659,'cmii-uav-material-warehouse.yml','5.2.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n\ncom:\n cmii:\n chinamobile:\n defaultPath: ','487768236488ac1039f92000813ff51e','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2660,'cmii-uav-mission.yml','5.2.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2661,'cmii-uav-mqtthandler.yml','5.2.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2662,'cmii-uav-notice.yml','5.2.0','bizName: 通知系统\ndbSchema: uav_notice\napiDeclaration: uav,admin\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','89bdcbab8b05a524305fcf9c3c9174dd','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2663,'cmii-uav-oauth.yml','5.2.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n limit-pwd-expire: false\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n base-client-id: APP_9LY41OaKSqk2btY0\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','1fd02866a55b5a590546908f5bfa108e','2024-01-25 15:17:41','2024-01-26 11:18:47','developer','192.168.102.102','','','','','','yaml','',''),(2664,'cmii-uav-process.yml','5.2.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2665,'cmii-uav-security-system.yml','5.2.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2666,'cmii-uav-surveillance.yml','5.2.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','9b8bcdf873b139514ed74bafae82c2af','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2667,'cmii-uav-user.yml','5.2.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2668,'cmii-uav-waypoint.yml','5.2.0','bizName: 航线服务\ndbSchema: uav_waypoint\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\nsimulation:\n remote:\n host: ${com.cmii.chinamobile.signal-simulation.url}\n port: ${com.cmii.chinamobile.signal-simulation.port}\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\nribbon:\n ReadTimeout: 60000\n ConnectTimeout: 60000\n','c5ecb6111c01bed9af3997046eba568a','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2669,'cmii-uav-gis-server.yml','5.2.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2670,'cmii-suav-supervision.yml','5.2.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n','1cee41d5c0115bbcb91ae2bef85fc37c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2671,'cmii-suav-gateway.yml','5.2.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2672,'cmii-uav-emergency.yml','5.2.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2673,'cmii-uav-grid-datasource.yml','5.2.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','5b343814e8caae20fd2e7aa22c461d94','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2674,'cmii-uav-grid-engine.yml','5.2.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2675,'cmii-uav-grid-surveilliance.yml','5.2.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2676,'cmii-uav-grid-manage.yml','5.2.0','spring:\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\nuav:\n safe-distance: 100\n offset-distance: 100\n\n# 温部署的引擎地址\niwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n','e16326b64f3af694c5a24d13e8b921ba','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2677,'cmii-uav-grid-elasticsearch.yml','5.2.0','spring:\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202','95332d6917683f020f0d7f0061948c00','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2678,'cmii-live-operator.yml','5.2.0','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2679,'cmii-uav-tower.yml','5.2.0','bizName: 黑龙江铁塔\napiDeclaration: uav,admin\ndbSchema: cmii_iron_tower\n\nminio:\n srcId: 1323096648758464519\n\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\n','e1448cae712147322edaca81598e6e6b','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2680,'cmii-backend-system.yml','5.2.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8197\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n ping-connection-interval: 5000\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n\n','3478bb244d4b3d7444d8f1c31fa8d07a','2024-01-25 15:17:41','2024-01-31 11:02:04','nacos','10.244.212.128','','','','','','yaml','',''),(2681,'cmii-app-release.yml','5.2.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2682,'cmii-uav-integration.yml','5.2.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn','082ae61c7633136f5f929d5fb541ec35','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2683,'cmii-uav-threedsimulation.yml','5.2.0','spring:\n jackson:\n time-zone: GMT+8\n datasource:\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n\nribbon:\n ReadTimeout: 20000\n ConnectTimeout: 10000\n \n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n\n','66f84b24313fc7cfdde563738dab41aa','2024-01-25 15:17:41','2024-01-25 15:17:41',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2685,'cmii-admin-data.yml','5.0.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2686,'cmii-admin-gateway.yml','5.0.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /webjars/**\n# - /doc.html\n# - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n sign-ignores:\n - /*/system/**\n mode: autoTest\n','c00c3236df426b657cfa44a273ade5aa','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2687,'cmii-admin-user.yml','5.0.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2688,'cmii-omoc-gateway.yml','5.0.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2689,'cmii-omoc-process.yml','5.0.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2690,'cmii-omoc-user.yml','5.0.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2691,'cmii-open-gateway.yml','5.0.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n# - /**/v2/api-docs/**\n# - /**/swagger-resources/**\n# - /**/webjars/**\n# - /**/doc.html\n# - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n\n','a6c10aa799cf809b6d0c0812fe1a899f','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2692,'cmii-uav-airspace.yml','5.0.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2693,'cmii-uav-alarm.yml','5.0.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2694,'cmii-uav-brain.yml','5.0.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2695,'cmii-uav-cloud-live.yml','5.0.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer \n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','8ce5cc1d0c2c67a499e7d8eb544c0e23','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2696,'cmii-uav-clusters.yml','5.0.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2697,'cmii-uav-cms.yml','5.0.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2698,'cmii-uav-data-post-process.yml','5.0.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://minio.ig-uat.uavcmlc.com:30306\n # accessKey: L67YyU7WuCTAZmtt\n # secretKey: 0roAwjpRuZ4u5CAZZbSzjWR8S6dScQur\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\nlogging:\n level:\n com.alibaba.nacos: off\n\n','413830ffb78ea7152ca847605c2ed8ea','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2699,'cmii-uav-developer.yml','5.0.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','654a0189b95a46da219281b29d5e9893','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2700,'cmii-uav-device.yml','5.0.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\n\n','74f6a248d767f85a3fca360ddeff278e','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2701,'cmii-uav-gateway.yml','5.0.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-yaw/**\n - /surveillance/single-surveillance-yaw/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n','60092690b4b0a93ac93ec27f028aabdd','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2702,'cmii-uav-industrial-portfolio.yml','5.0.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\npublic:\n security:\n onlineExpireSec: 60\n maxPlaybackTrackSec: 3600\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','82c3e55e17a7ff963d3ac7bc48ac17dc','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2703,'cmii-uav-kpi-monitor.yml','5.0.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2704,'cmii-uav-logger.yml','5.0.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2705,'cmii-uav-material-warehouse.yml','5.0.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n # endPoint: https://oss.uavcmlc.com\n # accessKey: L67YyU7WuCTAZmtt\n # secretKey: 0roAwjpRuZ4u5CAZZbSzjWR8S6dScQur\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','7692ff3fce48adc737f1dcbdc0b26aea','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2706,'cmii-uav-mission.yml','5.0.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2707,'cmii-uav-mqtthandler.yml','5.0.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2708,'cmii-uav-notice.yml','5.0.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','0153bc6f5ef8c3985a5eca1d283235c9','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2709,'cmii-uav-oauth.yml','5.0.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: true\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','4f0bcaf9279a8f10a720f6c60ac0e518','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2710,'cmii-uav-process.yml','5.0.0','bizName: 流程系统\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','0b05544622c721d7dac5bb77965c63fa','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2711,'cmii-uav-security-system.yml','5.0.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2712,'cmii-uav-surveillance.yml','5.0.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.common.scheduling: NONE\n com.cmii.chinamobile.surveillance.service.impl: DEBUG\n com.cmii.chinamobile.surveillance.schedule: DEBUG\n com.cmii.chinamobile.surveillance.websocket: DEBUG\n com.cmii.chinamobile.surveillance.uncoupleApi: DEBUG\n com.cmii.chinamobile.surveillance.utils: DEBUG\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','f9b0fc5d4f2e5f93290d908989270f20','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2713,'cmii-uav-user.yml','5.0.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2','45adb3695bf57c1188cf1a2f5c5b4452','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2714,'cmii-uav-waypoint.yml','5.0.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2715,'cmii-uav-gis-server.yml','5.0.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n\nlogging:\n level:\n com.alibaba.nacos: off\n','3e2d19f15d8f8e1d64ca218779bbb354','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2716,'cmii-suav-supervision.yml','5.0.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n#终审流程配置\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n','1cee41d5c0115bbcb91ae2bef85fc37c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2717,'cmii-suav-gateway.yml','5.0.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','a677d1bd81b276430ffe2727e4a5fc05','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2718,'cmii-uav-emergency.yml','5.0.0','bizName: 应急管理\ndbSchema: uav_emergency\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','502769f9a901693c27d29742505dc1a8','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2719,'cmii-uav-grid-datasource.yml','5.0.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','5b343814e8caae20fd2e7aa22c461d94','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2720,'cmii-uav-grid-engine.yml','5.0.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2721,'cmii-uav-grid-surveilliance.yml','5.0.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2722,'cmii-uav-grid-manage.yml','5.0.0','spring:\n elasticsearch:\n username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}\n\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\nuav:\n safe-distance: 100\n offset-distance: 100\n\n# 温部署的引擎地址\niwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n','e16326b64f3af694c5a24d13e8b921ba','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2723,'cmii-uav-grid-elasticsearch.yml','5.0.0','spring:\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:29200\n\n # username: ${com.cmii.chinamobile.iwhere.elasticsearch.username}\n # password: ${com.cmii.chinamobile.iwhere.elasticsearch.password}\n # uris: ${com.cmii.chinamobile.iwhere.elasticsearch.uris}','3784c2c516ea75d085ac9fa1feb8967b','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2724,'cmii-backend-system.yml','5.0.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.uat.uavcmlc.com:30307\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8192/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-uat.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://minio.ig-uat.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.108\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:29200\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.233\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.233\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.233\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@孙建博)\n url: 192.168.35.227\n port: 6514\n video-plate-recognition: # 车牌识别(基于视频)(@吴强)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6534\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23457\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 人群计数检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8201\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8198 #demo环境使用8197\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8198 #demo环境使用8197\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n ping-connection-interval: 5000\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: admin\n password: admin123\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\n','58af80c64a665cabbdad087c5af971f2','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2725,'cmii-uav-tower.yml','5.0.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n','a33564390d57a58dc6d955c298813966','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2726,'cmii-app-release.yml','5.0.0','bizName: APP发布服务\ndbSchema: cmii_app_release\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','2b83724526aa3ad5c9bfc357758b9b12','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2727,'cmii-live-operator.yml','5.0.0','spring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 4.0.6\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n redis:\n host: helm-redis-master\n\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n url: jdbc:mysql://cmii-mysql:13306/cmii_live_srs_op?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n driver-class-name: com.mysql.cj.jdbc.Driver\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','49c48403675ebd49f05997f4a90c14ee','2024-01-25 15:24:56','2024-01-25 15:24:56',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2737,'cmii-admin-data.yml','5.3.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2738,'cmii-admin-gateway.yml','5.3.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2739,'cmii-admin-user.yml','5.3.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2740,'cmii-omoc-gateway.yml','5.3.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2741,'cmii-omoc-process.yml','5.3.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2742,'cmii-omoc-user.yml','5.3.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2743,'cmii-open-gateway.yml','5.3.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2744,'cmii-uav-airspace.yml','5.3.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2745,'cmii-uav-alarm.yml','5.3.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2746,'cmii-uav-brain.yml','5.3.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2747,'cmii-uav-cloud-live.yml','5.3.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003_\n - wrjxh052/xh009_\n - wrjxh063/xh024_\n - wrjxh063/_\n - wrjxh064/_\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','726ae4de8aab4cba06b0035f7186e54d','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2748,'cmii-uav-clusters.yml','5.3.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2749,'cmii-uav-cms.yml','5.3.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2750,'cmii-uav-data-post-process.yml','5.3.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','250fa42c199f0b6a1deffd79d082b927','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2751,'cmii-uav-developer.yml','5.3.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2752,'cmii-uav-device.yml','5.3.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\n\n','e6d7ba68d05ad3d636c69c778684f1a6','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2753,'cmii-uav-gateway.yml','5.3.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','6ca7211e5e98437bc1e2632027a984db','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2754,'cmii-uav-industrial-portfolio.yml','5.3.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138537\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2','32ae347c72a73daa5f5ab8f4775b6579','2024-02-07 10:34:05','2024-02-21 17:23:08','developer','192.168.102.173','','','','','','yaml','',''),(2755,'cmii-uav-kpi-monitor.yml','5.3.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2756,'cmii-uav-logger.yml','5.3.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2757,'cmii-uav-material-warehouse.yml','5.3.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU','d8c990e22c394688b0813f07d684a825','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2758,'cmii-uav-mission.yml','5.3.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2759,'cmii-uav-mqtthandler.yml','5.3.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ae030a086bb1cb54f174878edf0a393d','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2760,'cmii-uav-notice.yml','5.3.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2761,'cmii-uav-oauth.yml','5.3.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','0aae517621a79d64e2ee4f14a460c341','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2762,'cmii-uav-process.yml','5.3.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2763,'cmii-uav-security-system.yml','5.3.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2764,'cmii-uav-surveillance.yml','5.3.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','9b8bcdf873b139514ed74bafae82c2af','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2765,'cmii-uav-user.yml','5.3.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2766,'cmii-uav-waypoint.yml','5.3.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2767,'cmii-uav-gis-server.yml','5.3.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2768,'cmii-suav-supervision.yml','5.3.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2769,'cmii-suav-gateway.yml','5.3.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','','',NULL,NULL,'yaml',NULL,''),(2770,'cmii-app-release','5.3.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2771,'cmii-uav-emergency.yml','5.3.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2772,'cmii-uav-grid-datasource.yml','5.3.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2773,'cmii-uav-grid-engine.yml','5.3.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2774,'cmii-uav-grid-surveilliance.yml','5.3.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2775,'cmii-uav-grid-manage.yml','5.3.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2776,'cmii-uav-grid-elasticsearch.yml','5.3.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2777,'cmii-uav-tower.yml','5.3.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2778,'cmii-live-operator.yml','5.3.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2779,'cmii-uav-multilink.yml','5.3.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-02-07 10:34:05','2024-02-07 10:34:05',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2780,'cmii-backend-system.yml','5.3.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n redisson:\n model: MASTERSLAVE\n password: Mcache@4522\n multiple-server-config:\n database: 0\n node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n master-name: helm-redis\n slave-connection-pool-size: 16\n master-connection-pool-size: 16\n slave-connection-minimum-idle-size: 8\n master-connection-minimum-idle-size: 8\n ping-connection-interval: 5000\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongo\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://helm-emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','a3b0b8034170c926d4045c94969f81fd','2024-02-07 10:34:05','2024-02-07 10:38:04','nacos','10.244.212.128','','','','','','yaml','',''),(2782,'cmii-admin-data.yml','5.4.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2783,'cmii-admin-gateway.yml','5.4.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2784,'cmii-admin-user.yml','5.4.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2785,'cmii-omoc-gateway.yml','5.4.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2786,'cmii-omoc-process.yml','5.4.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2787,'cmii-omoc-user.yml','5.4.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2788,'cmii-open-gateway.yml','5.4.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2789,'cmii-uav-airspace.yml','5.4.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2790,'cmii-uav-alarm.yml','5.4.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2791,'cmii-uav-brain.yml','5.4.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-02-21 15:23:24','2024-02-21 15:24:13',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2792,'cmii-uav-cloud-live.yml','5.4.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM\n','8a229d994a17bb40ae6967cde9034f3f','2024-02-21 15:23:24','2024-03-26 14:53:17','nacos','192.168.34.234','','','','','','yaml','',''),(2793,'cmii-uav-clusters.yml','5.4.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2794,'cmii-uav-cms.yml','5.4.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2795,'cmii-uav-data-post-process.yml','5.4.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','0faff74fdfd7fee3cf9f37c556c71621','2024-02-21 15:23:24','2024-04-03 17:52:49','nacos','192.168.34.234','','','','','','yaml','',''),(2796,'cmii-uav-developer.yml','5.4.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2797,'cmii-uav-device.yml','5.4.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-02-21 15:23:24','2024-02-29 11:51:37','nacos','10.244.212.128','','','','','','yaml','',''),(2798,'cmii-uav-gateway.yml','5.4.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','613a86870a5fd0813aced222b9c6b91c','2024-02-21 15:23:24','2024-04-10 11:50:39','developer','192.168.103.194','','','','','','yaml','',''),(2799,'cmii-uav-industrial-portfolio.yml','5.4.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138536\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\n lae:\n radar-id: 1508482221\n detect-uav-id: 10001\n companies: 394\n area-expands-distance: 5\n area-expands-lon: 0.00005\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00016322\n shareTarget: \n - shanghai\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','bd82947e98305880a05c22797df36c1b','2024-02-21 15:23:24','2024-04-12 10:31:10','developer','192.168.102.68','','','','','','yaml','',''),(2800,'cmii-uav-kpi-monitor.yml','5.4.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2801,'cmii-uav-logger.yml','5.4.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2802,'cmii-uav-material-warehouse.yml','5.4.0','bizName: 素材仓库\ndbSchema: cmii_material_warehouse\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','09a22a6a28fbe2357f3d22064e98a586','2024-02-21 15:23:24','2024-03-20 17:13:04','nacos','10.244.179.192','','','','','','yaml','',''),(2803,'cmii-uav-mission.yml','5.4.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: debug','a172b2f18a2917dab8369f3b9bc3417c','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2804,'cmii-uav-mqtthandler.yml','5.4.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','3ca1fdbef8f40416fc12527625399e69','2024-02-21 15:23:24','2024-04-12 10:32:04','developer','192.168.102.68','','','','','','yaml','',''),(2805,'cmii-uav-notice.yml','5.4.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-02-21 15:23:24','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2806,'cmii-uav-oauth.yml','5.4.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','0aae517621a79d64e2ee4f14a460c341','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2807,'cmii-uav-process.yml','5.4.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2808,'cmii-uav-security-system.yml','5.4.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2809,'cmii-uav-surveillance.yml','5.4.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','f3281d266dd16c277e1d6e30265744ff','2024-02-21 15:23:25','2024-02-29 11:06:28','nacos','10.244.212.128','','','','','','yaml','',''),(2810,'cmii-uav-user.yml','5.4.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 8400\n expireDay: 9100\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','b902cdd7ac917644c09417ee35257ec1','2024-02-21 15:23:25','2024-02-21 18:21:07','nacos','10.244.212.128','','','','','','yaml','',''),(2811,'cmii-uav-waypoint.yml','5.4.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2812,'cmii-uav-gis-server.yml','5.4.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2813,'cmii-suav-supervision.yml','5.4.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2814,'cmii-suav-gateway.yml','5.4.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2815,'cmii-app-release','5.4.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2816,'cmii-uav-emergency.yml','5.4.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2817,'cmii-uav-grid-datasource.yml','5.4.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2818,'cmii-uav-grid-engine.yml','5.4.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2819,'cmii-uav-grid-surveilliance.yml','5.4.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2820,'cmii-uav-grid-manage.yml','5.4.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2821,'cmii-uav-grid-elasticsearch.yml','5.4.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2822,'cmii-uav-tower.yml','5.4.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2823,'cmii-live-operator.yml','5.4.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2824,'cmii-uav-multilink.yml','5.4.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-02-21 15:23:25','2024-02-21 15:24:14',NULL,'10.244.212.128','','',NULL,NULL,NULL,'yaml',NULL,''),(2868,'cmii-backend-system.yml','5.4.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','2a2da30f0e33d911b16e7d898faa952e','2024-02-21 15:24:14','2024-04-22 09:42:46','nacos','10.244.192.64','','','','','','yaml','',''),(2884,'cmii-uav-integration.yml','5.4.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.194.193:26686','869667d13e73ba36a94e1a670294d74e','2024-03-07 17:02:28','2024-04-17 10:12:22','nacos','192.168.34.234','','','','','','yaml','',''),(2886,'cmii-uav-surveillance.yml','5.5.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','f3281d266dd16c277e1d6e30265744ff','2024-03-11 15:11:06','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2887,'cmii-backend-system.yml','5.5.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','9431ffe62ddcb594d49e97b0ff571a92','2024-03-11 15:12:59','2024-04-22 13:53:18','nacos','10.244.192.64','','','','','','yaml','',''),(2935,'cmii-uav-grid-datasource.yml','5.5.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-04-03 10:19:09','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2970,'cmii-uav-threedsimulation.yml','5.4.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-04-12 17:39:38','2024-04-12 17:39:38',NULL,'192.168.34.234','','',NULL,NULL,NULL,'yaml',NULL,''),(2972,'cmii-admin-data.yml','5.5.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-04-17 15:55:48','2024-04-17 15:56:08',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2973,'cmii-admin-gateway.yml','5.5.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-04-17 15:55:48','2024-04-17 15:56:08',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2974,'cmii-admin-user.yml','5.5.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2975,'cmii-omoc-gateway.yml','5.5.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2976,'cmii-omoc-process.yml','5.5.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2977,'cmii-omoc-user.yml','5.5.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2978,'cmii-open-gateway.yml','5.5.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2979,'cmii-uav-airspace.yml','5.5.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2980,'cmii-uav-alarm.yml','5.5.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-04-17 15:55:48','2024-04-17 15:56:09',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2981,'cmii-uav-brain.yml','5.5.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2982,'cmii-uav-cloud-live.yml','5.5.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n closeLiveQuotaLimit: false\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM\n','b626db27709e1afa976754588eef3929','2024-04-17 15:55:49','2024-11-13 09:14:52','developer','10.244.179.192','','','','','','yaml','',''),(2983,'cmii-uav-clusters.yml','5.5.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2984,'cmii-uav-cms.yml','5.5.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2985,'cmii-uav-data-post-process.yml','5.5.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: false\n geoCS: EPSG:4544\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','50b7775b91c539cd666cd8918f036b6e','2024-04-17 15:55:49','2024-04-25 16:01:16','nacos','192.168.34.234','','','','','','yaml','',''),(2986,'cmii-uav-developer.yml','5.5.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-04-17 15:55:49','2024-04-17 15:56:10',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2987,'cmii-uav-device.yml','5.5.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-04-17 15:55:49','2024-04-17 15:56:11',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2988,'cmii-uav-gateway.yml','5.5.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','e3732895cf382543cccec232cda8f3a9','2024-04-17 15:55:50','2024-04-28 14:34:54','nacos','192.168.34.234','','','','','','yaml','',''),(2989,'cmii-uav-industrial-portfolio.yml','5.5.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - event.SF.control.StartTask\n - event.SF.control.StopTask\n - event.SF.control.CapabilitySynReq\n - event.SF.control.SendKeepAlive\n civil-military:\n mock-civil-military: false\n min-lat: 29.371512\n max-lat: 29.396064\n min-lng: 104.000000\n max-lng: 104.6138536\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: true\n update-bts-frequency: -1\n lae:\n radar-id: 1508482221\n detect-uav-id: 10001\n companies: 394\n area-expands-distance: 5\n area-expands-lon: 0.00005\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00016322\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221\n disable: false\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractHttpDataSenderStrategy: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','32bfb7f3da3a5edfe4e199bc26bd9dfd','2024-04-17 15:55:50','2024-06-06 22:44:52','developer','192.168.102.203','','','','','','yaml','',''),(2990,'cmii-uav-kpi-monitor.yml','5.5.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-04-17 15:55:50','2024-04-17 15:56:11',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2991,'cmii-uav-logger.yml','5.5.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-04-17 15:55:51','2024-04-17 15:56:11',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2992,'cmii-uav-material-warehouse.yml','5.5.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','d29bda9e6ea7378b58820ac08bf2e124','2024-04-17 15:55:51','2024-07-10 17:16:29','nacos','192.168.35.125','','','','','','yaml','',''),(2993,'cmii-uav-mission.yml','5.5.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','fa40705c92d11c928a390ecf58f2ae6d','2024-04-17 15:55:51','2024-05-08 10:12:16','nacos','192.168.34.234','','','','','','yaml','',''),(2994,'cmii-uav-mqtthandler.yml','5.5.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','3ca1fdbef8f40416fc12527625399e69','2024-04-17 15:55:51','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2995,'cmii-uav-notice.yml','5.5.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-04-17 15:55:51','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2996,'cmii-uav-oauth.yml','5.5.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','0aae517621a79d64e2ee4f14a460c341','2024-04-17 15:55:51','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2997,'cmii-uav-process.yml','5.5.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(2998,'cmii-uav-security-system.yml','5.5.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3000,'cmii-uav-user.yml','5.5.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 8400\n expireDay: 9100\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','b902cdd7ac917644c09417ee35257ec1','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3001,'cmii-uav-waypoint.yml','5.5.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3002,'cmii-uav-gis-server.yml','5.5.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3003,'cmii-suav-supervision.yml','5.5.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-04-17 15:55:52','2024-04-17 15:56:12',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3004,'cmii-suav-gateway.yml','5.5.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3005,'cmii-app-release','5.5.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3006,'cmii-uav-emergency.yml','5.5.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3008,'cmii-uav-grid-engine.yml','5.5.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3009,'cmii-uav-grid-surveilliance.yml','5.5.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''); +INSERT INTO `config_info` VALUES (3010,'cmii-uav-grid-manage.yml','5.5.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3011,'cmii-uav-grid-elasticsearch.yml','5.5.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3012,'cmii-uav-tower.yml','5.5.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-04-17 15:55:53','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3013,'cmii-live-operator.yml','5.5.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-04-17 15:55:54','2024-04-17 15:56:13',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3014,'cmii-uav-multilink.yml','5.5.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-04-17 15:55:54','2024-04-17 15:56:14',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3016,'cmii-uav-integration.yml','5.5.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.194.193:26686','869667d13e73ba36a94e1a670294d74e','2024-04-17 15:55:54','2024-04-17 15:56:14',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3017,'cmii-uav-threedsimulation.yml','5.5.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-04-17 15:55:54','2024-04-17 15:56:14',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3086,'cmii-uav-surveillance.yml','5.6.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n','278ca722c160aeda07ecc3466d0881d7','2024-05-08 17:14:12','2024-07-03 18:26:19','developer','192.168.102.203','','','','','','yaml','',''),(3087,'cmii-uav-grid-datasource.yml','5.6.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3088,'cmii-admin-data.yml','5.6.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3089,'cmii-admin-gateway.yml','5.6.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3090,'cmii-admin-user.yml','5.6.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3091,'cmii-omoc-gateway.yml','5.6.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3092,'cmii-omoc-process.yml','5.6.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3093,'cmii-omoc-user.yml','5.6.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3094,'cmii-open-gateway.yml','5.6.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3095,'cmii-uav-airspace.yml','5.6.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3096,'cmii-uav-alarm.yml','5.6.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3097,'cmii-uav-brain.yml','5.6.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-05-08 17:14:12','2024-05-08 17:14:23',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3098,'cmii-uav-cloud-live.yml','5.6.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: false\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','60ddbe48ef4fe51b6bc2e1e17627f8c2','2024-05-08 17:14:12','2024-11-13 09:12:35','developer','10.244.179.192','','','','','','yaml','',''),(3099,'cmii-uav-clusters.yml','5.6.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3100,'cmii-uav-cms.yml','5.6.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3101,'cmii-uav-data-post-process.yml','5.6.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: false\n geoCS: EPSG:4544\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','50b7775b91c539cd666cd8918f036b6e','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3102,'cmii-uav-developer.yml','5.6.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: true\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','dad662f63d620389eeede14835ac8a3a','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3103,'cmii-uav-device.yml','5.6.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3104,'cmii-uav-gateway.yml','5.6.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','4188c5b6c88b17d570eeb562d9611eb7','2024-05-08 17:14:12','2024-07-18 18:19:43','developer','192.168.103.80','','','','','','yaml','',''),(3105,'cmii-uav-industrial-portfolio.yml','5.6.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n stream-url-map:\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','ec8eb7dafaf1c48dc58e25bd00b81e6e','2024-05-08 17:14:12','2024-07-18 15:43:39','developer','192.168.103.80','','','','','','yaml','',''),(3106,'cmii-uav-kpi-monitor.yml','5.6.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3107,'cmii-uav-logger.yml','5.6.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3108,'cmii-uav-material-warehouse.yml','5.6.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /iam/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','d07c5510e6e9cf57de37ae97fb090e2d','2024-05-08 17:14:12','2024-07-10 17:16:43','nacos','192.168.35.125','','','','','','yaml','',''),(3109,'cmii-uav-mission.yml','5.6.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','fa40705c92d11c928a390ecf58f2ae6d','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3110,'cmii-uav-mqtthandler.yml','5.6.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','cd4e874c82ba272027f712627f0c59ee','2024-05-08 17:14:12','2024-07-13 12:24:47','developer','192.168.102.71','','','','','','yaml','',''),(3111,'cmii-uav-notice.yml','5.6.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3112,'cmii-uav-oauth.yml','5.6.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-05-08 17:14:12','2024-07-09 09:57:01','developer','192.168.102.113','','','','','','yaml','',''),(3113,'cmii-uav-process.yml','5.6.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3114,'cmii-uav-security-system.yml','5.6.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3115,'cmii-uav-user.yml','5.6.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 8400\n expireDay: 9100\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','b902cdd7ac917644c09417ee35257ec1','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3116,'cmii-uav-waypoint.yml','5.6.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3117,'cmii-uav-gis-server.yml','5.6.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3118,'cmii-suav-supervision.yml','5.6.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-05-08 17:14:12','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3119,'cmii-suav-gateway.yml','5.6.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3120,'cmii-app-release','5.6.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3121,'cmii-uav-emergency.yml','5.6.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3122,'cmii-uav-grid-engine.yml','5.6.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3123,'cmii-uav-grid-surveilliance.yml','5.6.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3124,'cmii-uav-grid-manage.yml','5.6.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3125,'cmii-uav-grid-elasticsearch.yml','5.6.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3126,'cmii-uav-tower.yml','5.6.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3127,'cmii-live-operator.yml','5.6.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3128,'cmii-uav-multilink.yml','5.6.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3129,'cmii-uav-integration.yml','5.6.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.194.193:26686\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345','66e393d5ac27b6a40aa3c2a83981b669','2024-05-08 17:14:13','2024-06-07 17:52:22','nacos','192.168.35.125','','','','','','yaml','',''),(3130,'cmii-uav-threedsimulation.yml','5.6.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-05-08 17:14:13','2024-05-08 17:14:24',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3132,'cmii-backend-system.yml','5.6.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','329a6e61f49b48dc29be8d30a1370ebe','2024-05-08 17:14:23','2024-10-22 14:52:06','nacos','10.244.192.64','','','','','','yaml','',''),(3182,'cmii-uas-gateway.yml','5.5.0','debug: true\nspring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/** \n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/** \n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/**\n - /lifecycle/regulator/auth/logout\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/auth/logout\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /warehouse/manufacturer/**','ffb863af2e9d8f20ea72c62616ea0200','2024-05-10 09:28:23','2024-05-10 09:28:42','developer','192.168.102.107','','','','','','yaml','',''),(3183,'cmii-uas-gateway.yml','5.6.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/getImageCodeByImageId\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','5542ee8f97668ba00b51571a362b397b','2024-05-10 09:28:23','2024-11-12 17:13:57','developer','192.168.102.255','','','','','','yaml','',''),(3186,'cmii-uas-lifecycle.yml','5.5.0','spring:\n cache:\n type: none\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n # uav_doris:\n # type: com.zaxxer.hikari.HikariDataSource\n # driver-class-name: com.mysql.cj.jdbc.Driver\n # url: jdbc:mysql://192.168.34.234:43855/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n # username: root\n # password:\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address \n host: https://lab.uavcmlc.com/dev\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\nlogging:\n level:\n com.cmii.chinamobile: debug','e8eef322cdeec9c3c4953ec64187ba53','2024-05-10 09:29:08','2024-06-17 11:29:00','nacos','192.168.35.125','','','','','','yaml','',''),(3187,'cmii-uas-lifecycle.yml','5.6.0','spring:\n cache:\n type: none\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.34.234:43855/cmii_demo?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: root\n password:\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n stream-url-map:\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: true\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\ndoris:\n endPoint: http://192.168.34.234:37162 \n user: root\n password:\n database: cmii_demo\nwarn:\n data:\n closeIdType4: false ','cad99f2edb2503b326b37cdd519837a0','2024-05-10 09:29:08','2024-07-31 15:29:06','nacos','10.244.179.192','','','','','','yaml','',''),(3204,'cmii-uav-iot-dispatcher.yml','5.7.0','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','ee4de99d25ffa3afc6b8fee27f901280','2024-05-29 15:03:12','2024-09-05 14:51:10','developer','10.244.179.192','','','','','','yaml','',''),(3231,'cmii-uav-sense-adapter.yml','5.6.0','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n qos: 0\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #(设置后需重启服务); 也可通过swagger接口设置(实时生效, 但设置后重启失效);\n max-control-packets-per-second: 5\n max-control-bytes-per-second: 10480\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #(设置后需重启服务); 也可通过swagger接口设置(实时生效, 但设置后重启失效);\n max-user-data-packets-per-second: 5\n max-user-data-bytes-per-second: 10480\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:S_sfId_T_taskId\n # 景德镇SF 36798, 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"36798,16\"\n# need-process-sf-ids: \"\"\n #(设置后需重启服务); 也可通过swagger接口设置(实时生效, 但设置后重启失效);\n sf-rate-limit:\n - sf-id: 8002\n max-control-packets-per-second: 3\n max-control-bytes-per-second: 10240\n max-user-data-packets-per-second: 3\n max-user-data-bytes-per-second: 10240\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4a7cb9e412fa0047dc3d8f8838a37f74','2024-06-14 09:56:13','2024-07-29 17:14:01','developer','192.168.102.67','','','','','','yaml','',''),(3324,'cmii-uav-surveillance.yml','5.7.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n\nlifecycle:\n isOpen: true\n companyIds: 2\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n# 机库虚拟摇杆ws连接\nmqtt-cloudAPI:\n wss: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token','75ce9995e13a6a05a795cb690bba9844','2024-07-18 17:18:55','2024-08-06 09:23:28','nacos','10.244.179.192','','','','','','yaml','',''),(3325,'cmii-uav-grid-datasource.yml','5.7.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3326,'cmii-admin-data.yml','5.7.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3327,'cmii-admin-gateway.yml','5.7.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3328,'cmii-admin-user.yml','5.7.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3329,'cmii-omoc-gateway.yml','5.7.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3330,'cmii-omoc-process.yml','5.7.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3331,'cmii-omoc-user.yml','5.7.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3332,'cmii-open-gateway.yml','5.7.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-07-18 17:18:55','2024-07-18 17:19:31',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3333,'cmii-uav-airspace.yml','5.7.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3334,'cmii-uav-alarm.yml','5.7.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3335,'cmii-uav-brain.yml','5.7.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3336,'cmii-uav-cloud-live.yml','5.7.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: false\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','60ddbe48ef4fe51b6bc2e1e17627f8c2','2024-07-18 17:18:55','2024-11-13 09:11:14','developer','10.244.179.192','','','','','','yaml','',''),(3337,'cmii-uav-clusters.yml','5.7.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3338,'cmii-uav-cms.yml','5.7.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3339,'cmii-uav-data-post-process.yml','5.7.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: true\n geoCS: EPSG:4326\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','eaac7453e9c1769e2fa513f524ae0015','2024-07-18 17:18:55','2024-07-24 14:26:41','nacos','192.168.35.125','','','','','','yaml','',''),(3340,'cmii-uav-developer.yml','5.7.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','f42ada80a212f6f5e4116f0fe0adcba4','2024-07-18 17:18:55','2024-08-19 16:48:25','developer','192.168.103.45','','','','','','yaml','',''),(3341,'cmii-uav-device.yml','5.7.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: info\n\n','afb2ada198e4b085f744e5970001de9d','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3342,'cmii-uav-gateway.yml','5.7.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','831af85efefbceaad33bf27eff92e8fe','2024-07-18 17:18:55','2024-10-08 16:41:32','developer','192.168.102.86','','','','','','yaml','',''),(3343,'cmii-uav-industrial-portfolio.yml','5.7.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: debug\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','b1c681d30f86d4ad8643d57c16f7b2d9','2024-07-18 17:18:55','2024-09-12 11:07:15','developer','192.168.102.12','','','','','','yaml','',''),(3344,'cmii-uav-kpi-monitor.yml','5.7.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3345,'cmii-uav-logger.yml','5.7.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3346,'cmii-uav-material-warehouse.yml','5.7.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /uas/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','a815811e029fa70d0d7d80f39dc6a4d0','2024-07-18 17:18:55','2024-09-04 09:31:29','nacos','10.244.179.192','','','','','','yaml','',''),(3347,'cmii-uav-mission.yml','5.7.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\n ai:\n ip: 192.168.34.227\n port: 19000\n waterUrl: /v2/models/water_segment/infer\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','99601af8f85be4408167d8cdd7a86625','2024-07-18 17:18:55','2024-08-15 11:19:29','nacos','10.244.179.192','','','','','','yaml','',''),(3348,'cmii-uav-mqtthandler.yml','5.7.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\n send-bridge: false\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','0b4ad7606fd92323a19dcf3c556c5a36','2024-07-18 17:18:55','2024-08-22 10:03:24','developer','192.168.103.197','','','','','','yaml','',''),(3349,'cmii-uav-notice.yml','5.7.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3350,'cmii-uav-oauth.yml','5.7.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3351,'cmii-uav-process.yml','5.7.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3352,'cmii-uav-security-system.yml','5.7.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-07-18 17:18:55','2024-07-18 17:19:32',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3353,'cmii-uav-user.yml','5.7.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-07-18 17:18:55','2024-07-20 10:01:17','developer','192.168.102.63','','','','','','yaml','',''),(3354,'cmii-uav-waypoint.yml','5.7.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3355,'cmii-uav-gis-server.yml','5.7.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3356,'cmii-suav-supervision.yml','5.7.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3357,'cmii-suav-gateway.yml','5.7.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3358,'cmii-app-release','5.7.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3359,'cmii-uav-emergency.yml','5.7.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3360,'cmii-uav-grid-engine.yml','5.7.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3361,'cmii-uav-grid-surveilliance.yml','5.7.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3362,'cmii-uav-grid-manage.yml','5.7.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-07-18 17:18:55','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3363,'cmii-uav-grid-elasticsearch.yml','5.7.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3364,'cmii-uav-tower.yml','5.7.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3365,'cmii-live-operator.yml','5.7.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3366,'cmii-uav-multilink.yml','5.7.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3367,'cmii-uav-integration.yml','5.7.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345','d4948f96e8f0fbe2f0a37c4c944eeccf','2024-07-18 17:18:56','2024-07-23 13:59:16','nacos','192.168.35.125','','','','','','yaml','',''),(3368,'cmii-uav-threedsimulation.yml','5.7.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-07-18 17:18:56','2024-07-18 17:19:33',NULL,'192.168.35.125','','',NULL,NULL,NULL,'yaml',NULL,''),(3369,'cmii-backend-system.yml','5.7.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2024-07-18 17:18:56','2024-07-22 09:14:38','nacos','192.168.35.125','','','','','','yaml','',''),(3370,'cmii-uas-gateway.yml','5.7.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','a29dcbddb5509ab006947f0ec5f03b5b','2024-07-18 17:18:56','2024-09-02 13:54:36','developer','192.168.102.201','','','','','','yaml','',''),(3371,'cmii-uas-lifecycle.yml','5.7.0','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','69c34d6951d2d7430729a121ddc6d0d6','2024-07-18 17:18:56','2024-08-28 10:48:39','nacos','10.244.179.192','','','','','','yaml','',''),(3372,'cmii-uav-sense-adapter.yml','5.7.0','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 50\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 40\n max-user-data-bytes-per-second: 1480000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n\n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"1040265216,587345920,36798,1102\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"587345920,553725952,20240626,101,12727754,8005,9001,285712,1315,838938628,2032,112,570503172,2101,8004,36798,8008,1102,570503168,537604096,123,9527,1040265216\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n - sf-id: 8002\n max-control-packets-per-second: 3\n max-control-bytes-per-second: 10240\n max-user-data-packets-per-second: 3\n max-user-data-bytes-per-second: 10240\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','a83399f1c3e58b913b047b37e713ad81','2024-07-18 17:18:56','2024-08-30 10:29:40','developer','192.168.102.235','','','','','','yaml','',''),(3526,'cmii-uav-iot-dispatcher.yml','5.8.0','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔\n coop_uav_takeoff_altitude: 500.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','b6a2c724e822b2d54d078d6938fbe0bf','2024-08-22 16:31:37','2024-09-06 17:10:31','developer','10.244.179.192','','','','','','yaml','',''),(3527,'cmii-uav-surveillance.yml','5.8.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n org.springframework.amqp.rabbit.connection.AbstractConnectionFactory: none\n\nlifecycle:\n isOpen: true\n companyIds: 2\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n # delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n delay-uas-ids: \'\'\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 0\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n# 机库虚拟摇杆ws连接\nmqtt-cloudAPI:\n wss: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token','c1fa48ec9e5e2b25579d15fe7b2bb47d','2024-08-22 16:31:37','2024-08-26 17:10:16','nacos','10.244.179.192','','','','','','yaml','',''),(3528,'cmii-uav-grid-datasource.yml','5.8.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3529,'cmii-admin-data.yml','5.8.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3530,'cmii-admin-gateway.yml','5.8.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3531,'cmii-admin-user.yml','5.8.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3532,'cmii-omoc-gateway.yml','5.8.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3533,'cmii-omoc-process.yml','5.8.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3534,'cmii-omoc-user.yml','5.8.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3535,'cmii-open-gateway.yml','5.8.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3536,'cmii-uav-airspace.yml','5.8.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3537,'cmii-uav-alarm.yml','5.8.0','bizName: 告警系统\r\ndbSchema: uav_alarm\r\napiDeclaration: uav,admin\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n clients: cmii-admin-data, cmii-uav-user\r\n ReadTimeout: 40000\r\n ConnectTimeout: 20000\r\ncom:\r\n cmii:\r\n chinamobile:\r\n eventbus:\r\n broadcast-events:\r\n - REDIS_SYN_EVENT\r\nlog:\r\n opt: true\r\n fly: true\r\n','c0c1a3079f63ed9a34551d2d5b348adc','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3538,'cmii-uav-brain.yml','5.8.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3539,'cmii-uav-cloud-live.yml','5.8.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: false\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','60ddbe48ef4fe51b6bc2e1e17627f8c2','2024-08-22 16:31:37','2024-11-13 09:10:53','developer','10.244.179.192','','','','','','yaml','',''),(3540,'cmii-uav-clusters.yml','5.8.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3541,'cmii-uav-cms.yml','5.8.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3542,'cmii-uav-data-post-process.yml','5.8.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: true\n geoCS: EPSG:4326\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','eaac7453e9c1769e2fa513f524ae0015','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3543,'cmii-uav-developer.yml','5.8.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','f42ada80a212f6f5e4116f0fe0adcba4','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3544,'cmii-uav-device.yml','5.8.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n','487e018d0c50d8ba348dc00545e20950','2024-08-22 16:31:37','2024-09-05 17:00:36','developer','10.244.192.64','','','','','','yaml','',''),(3545,'cmii-uav-gateway.yml','5.8.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','9df6994ec1390ea9669183c840d12b2a','2024-08-22 16:31:37','2024-08-30 09:52:09','developer','10.244.179.192','','','','','','yaml','',''),(3546,'cmii-uav-industrial-portfolio.yml','5.8.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244\n deny-flying-companies: 178\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: \'\'\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 0\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','a9a28d7897d0c9765a3a06168959ecd9','2024-08-22 16:31:37','2024-08-26 10:03:20','developer','192.168.102.176','','','','','','yaml','',''),(3547,'cmii-uav-kpi-monitor.yml','5.8.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3548,'cmii-uav-logger.yml','5.8.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3549,'cmii-uav-material-warehouse.yml','5.8.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /uas/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','a815811e029fa70d0d7d80f39dc6a4d0','2024-08-22 16:31:37','2024-09-04 10:21:14','nacos','10.244.179.192','','','','','','yaml','',''),(3550,'cmii-uav-mission.yml','5.8.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\n ai:\n ip: 192.168.34.227\n port: 19000\n waterUrl: /v2/models/water_segment/infer\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','99601af8f85be4408167d8cdd7a86625','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3551,'cmii-uav-mqtthandler.yml','5.8.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\n send-bridge: false\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','0b4ad7606fd92323a19dcf3c556c5a36','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3552,'cmii-uav-notice.yml','5.8.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3553,'cmii-uav-oauth.yml','5.8.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3554,'cmii-uav-process.yml','5.8.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3555,'cmii-uav-security-system.yml','5.8.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3556,'cmii-uav-user.yml','5.8.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3557,'cmii-uav-waypoint.yml','5.8.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3558,'cmii-uav-gis-server.yml','5.8.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3559,'cmii-suav-supervision.yml','5.8.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3560,'cmii-suav-gateway.yml','5.8.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3561,'cmii-app-release','5.8.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3562,'cmii-uav-emergency.yml','5.8.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3563,'cmii-uav-grid-engine.yml','5.8.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3564,'cmii-uav-grid-surveilliance.yml','5.8.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3565,'cmii-uav-grid-manage.yml','5.8.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3566,'cmii-uav-grid-elasticsearch.yml','5.8.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3567,'cmii-uav-tower.yml','5.8.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3568,'cmii-live-operator.yml','5.8.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3569,'cmii-uav-multilink.yml','5.8.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3570,'cmii-uav-integration.yml','5.8.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345','d4948f96e8f0fbe2f0a37c4c944eeccf','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3571,'cmii-uav-threedsimulation.yml','5.8.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3572,'cmii-backend-system.yml','5.8.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2024-08-22 16:31:37','2024-08-22 16:31:37',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3573,'cmii-uas-gateway.yml','5.8.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','a29dcbddb5509ab006947f0ec5f03b5b','2024-08-22 16:31:37','2024-09-02 13:55:12','developer','192.168.102.201','','','','','','yaml','',''),(3574,'cmii-uas-lifecycle.yml','5.8.0','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\n\ncyy:\n aes: 696f4b09f80633a10eca593aa4dac727\n public:\n key: 042606569DF5B422596B78FEFC7A7087D618F339BCB3FE02DEDF3E733B4E5A8FE32DEA162DC12D31F03464F071EA9CEA1DE233FC9250C63005C401B9CAC030A155\n private:\n key: 73607410C0B2D9038D29738FC253B704E120FDC1A6C5D5E07AD038C9EE29D77C\n sim:\n debug: false\n bip:\n debug: false\n safeAid:\n aid: xxxx\n version: 1.0\n apdu:\n - 80E6200016000010D15600010181017B00000000B0010101000000\n - 80E281000400B20000\n execCount: 3\n chainingValue: \"01\"\n uavProductNO: 81145541533030303139363639393932313233343031\n imei: 820F383635303837303530333333333434\n terminalNO: 8306443830454538\n imsi: 840F343630303131303331363335313437\n result:\n success: \"009000\"\n command:\n install: 80E6200016000010D15600010181017B00000000B0010101000000\n query: 80E281000400B20000\n platform:\n version: 1.0\n url: https://www.demo.uavcmlc.com/uas/api/lifecycle/regulator/epc/auth\n debug: false\nxinshen:\n public:\n key: 04AF6C1BD30C3AE944A3E15E2F069F79EA2DC321DF26FBA6531BD1B58383C0E54F5F44A374E0FE3EFA7D1F307B6D3E54AC7352E8768470539EF2D6BDFBCBE279D5\n url: http://1.119.150.199:20016/cmiot/seitsm/cardinality/seOperatorApply\n spid: CYY04009','cb14398848d34d1c50ac379ea43281e4','2024-08-22 16:31:37','2024-11-11 10:58:51','nacos','10.244.179.192','','','','','','yaml','',''),(3575,'cmii-uav-sense-adapter.yml','5.8.0','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10480000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n - sf-id: 101\n task-id: 1659845102\n \n\n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"1040265216,587345920,36798,1102\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"587345920,553725952,20240626,101,12727754,8005,9001,285712,1315,838938628,2032,112,570503172,2101,8004,36798,8008,1102,570503168,537604096,123,9527,1040265216\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n - sf-id: 8002\n max-control-packets-per-second: 3\n max-control-bytes-per-second: 10240\n max-user-data-packets-per-second: 3\n max-user-data-bytes-per-second: 10240\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','b19eb4aab2fbef80013745a029f70bd8','2024-08-22 16:31:37','2024-09-09 11:37:19','developer','10.244.192.64','','','','','','yaml','',''),(3611,'cmii-uav-iot-dispatcher.yml','6.0.0','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)。\n # 1. 最好设置的和摄像头海拔一致,边端收到的高度是该等高线海拔加相对地面高度。比如摄像头配置了1000m海拔和20m相对高度,那么下面的值应该填成1000m\n coop_uav_takeoff_altitude: 0.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','ce9c11016511c65993e3587e7a105ad0','2024-09-09 17:04:01','2024-10-23 10:51:16','developer','10.244.179.192','','','','','','yaml','',''),(3612,'cmii-uav-surveillance.yml','6.0.0','bizName: 飞行监视\ndbSchema: uav_mission\nmybatis-plus:\n type-aliases-package: com.cmii.chinamobile.surveillance.beans.po\n global-config:\n enable-sql-runner: true\nribbon:\n ConnectTimeout: 5000 #请求连接的超时时间,默认时间为1秒\n ReadTimeout: 5000 #请求处理的超时时间\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.surveillance.websocketViaBoot.TotalWebsocket: info\n org.springframework.amqp.rabbit.connection.AbstractConnectionFactory: none\n\nlifecycle:\n isOpen: true\n companyIds: 2\n\ncustom:\n data-delay:\n #需要延迟的无人机id集合\n # delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370,UAS00016957\n delay-uas-ids: \'\'\n # delay-uas-ids: 1\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 0\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n - event.UAV.Simulator.VirtualStick\n# 机库虚拟摇杆ws连接\nmqtt-cloudAPI:\n wss: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token','c1fa48ec9e5e2b25579d15fe7b2bb47d','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3613,'cmii-uav-grid-datasource.yml','6.0.0','bizName: 网格数据管理服务\nspring:\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n main:\n allow-bean-definition-overriding: true\n allow-circular-references: true\n platform:\n info:\n name: 网格数据管理服务\n description: 网格数据管理服务\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_waypoint\n datasource:\n uav_waypoint:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_waypoint?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_airspace:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_airspace?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n suav_supervision:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/suav_supervision?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n uav_dev:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/uav_dev?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n # data:\n # elasticsearch:\n # cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\n # cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9201\n\nmanagement:\n health:\n elasticsearch:\n enabled: false\n\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\n\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\n\nlogging:\n level:\n com.alibaba.nacos.client.config.impl: WARN\n com.cmii: DEBUG\n','a632cc11558d3055f0500db42317d3ba','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3614,'cmii-admin-data.yml','6.0.0','bizName: 字典表单管理\ndbSchema: admin_data\napiDeclaration: uav,admin\nmap:\n gaode:\n key: ${com.cmii.chinamobile.gaode.key}\ncaiyun:\n token: ${com.cmii.chinamobile.caiyun.token}\n host: ${com.cmii.chinamobile.caiyun.host}\narea:\n limitProvince: false\n limitProvinceAreaCode: 810000\n','16c5eebcdc71fe8ad4debe592d8aedd6','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3615,'cmii-admin-gateway.yml','6.0.0','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','47c6c85c2be605767e19db82e8e2f201','2024-09-09 17:04:01','2024-10-11 09:29:52','developer','192.168.102.167','','','','','','yaml','',''),(3616,'cmii-admin-user.yml','6.0.0','bizName: 运营平台用户\ndbSchema: admin_user\napiDeclaration: admin\nspring:\n login:\n kicked-support: false\n login-error-limit: true\n img-code-support: true\nmin:\n io:\n bucket: pub-cms','90526474285ff377446e754338cfd1a5','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3617,'cmii-omoc-gateway.yml','6.0.0','bizName: 一机一码网关\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n discovery:\r\n locator:\r\n enabled: true #让gateway从nacos中获取服务信息\r\n routes:\r\n - id: process\r\n uri: lb://cmii-omoc-process\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/process/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n - id: user\r\n uri: lb://cmii-omoc-user\r\n order: 1 #优先级\r\n predicates: #断言 (用来判断请求是否放行的依据返回true则放行,false则返回404)\r\n - Path=/user/**\r\n filters: #过滤器\r\n - StripPrefix=1\r\n','958f7976cb2ed712f4c05cc50c422547','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3618,'cmii-omoc-process.yml','6.0.0','bizName: 一机一码业务\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','1ac7a7e5602a2b30bedc264f4b1be17c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3619,'cmii-omoc-user.yml','6.0.0','bizName: 一机一码用户\r\nlogin:\r\n remoteUrl: ${com.cmii.chinamobile.omoc.url}\r\n lingyunurl_dev: ${com.cmii.chinamobile.root}','f7cdf2f9e96958e28bfdfafc0d26b125','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3620,'cmii-open-gateway.yml','6.0.0','bizName: 开放平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: developer-socket\n uri: lb:ws://cmii-uav-developer\n predicates:\n - Path=/developer/oapi/wexecute\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - path: /test\n pathArgs:\n between: 2018-03-18T17:32:58.129+08:00,2023-03-23T17:32:58.129+08:00\n - /developer/login\n - /developer/code/login\n - /developer/registry\n - /developer/registry-for-test\n - /developer/oapi/**\n - /developer/profile/doUpdateEmail #用户修改邮箱\n - /developer/verifyCode/sendLogin #发送登陆验证码\n - /developer/verifyCode/checkLogin #验证登陆验证码\n - /developer/verifyCode/sendRegisty #发送注册验证码\n - /developer/verifyCode/checkRegisty #验证注册验证码\n - /developer/verifyCode/sendResetPassword #发送找回密码\n - /developer/verifyCode/checkResetPassword #验证找回密码\n - /developer/verifyCode/getImgCode\n - /developer/verifyCode/getImageCode\n - /developer/verifyCode/checkImgCode\n - /developer/verifyCode/get_image_code_by_image_id\n - /developer/profile/findPwd #找回密码\n - /developer/docs\n - /developer/docs/**\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /**/webjars/**\n - /**/doc.html\n - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/public/**\n - /warehouse/api/v1/warehouse/project/user/getToken\n - /warehouse/api/v1/warehouse/project/getObjectByUrl\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /developer/profile/**\n - /developer/logout #登出接口\n - /warehouse/**\n sign-ignores: #忽略签名\n - /system/\n','fa59a33c17634ce217d331fa86ce92bd','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3621,'cmii-uav-airspace.yml','6.0.0','bizName: 空域管理\r\ndbSchema: uav_airspace\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n#终审流程配置\r\nprocedure:\r\n type: 0 # 0:无终审 1:自动终审 2:手动终审\r\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\r\n version: 1.0\r\n secretKey: 904c396f6956d02c59a6ad35c08f5678\r\n\r\nwebminio:\r\n bucket: jadenq\r\n\r\n','5c51ea8169b7dae399c3daf61dfc221f','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3622,'cmii-uav-alarm.yml','6.0.0','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\nsec:\n db:\n table:\n uav_airspace:\n - efence_airspace_copy:org_id,id\n # uav_dev:\n # - uav_plane:company_id,uav_code\n # - uav_load\n tpIndex: tp_id\n flag: true\n\n mqtt:\n server:\n #mqtt server\n host: 192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n\n listener:\n topic:\n - mission/info\n missionType: 5000,5001,5002,5003,5004,5005,5006,5007,5008,5009\n flag: true\n\n report:\n server:\n #mqtt server\n host: tcp://192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\nlogging:\n level:\n com.cmii.chinamobile: debug','beb41333605ebd49070429b21c2da46b','2024-09-09 17:04:01','2024-10-15 17:32:27','developer','192.168.102.148','','','','','','yaml','',''),(3623,'cmii-uav-brain.yml','6.0.0','bizName: AI大脑\ndbSchema: uav_brain\nbrain:\n ai:\n server:\n tritonHost: ${com.cmii.chinamobile.ai.image-triton.url} # 图像去雾+人群计数+车牌识别\n tritonPort: ${com.cmii.chinamobile.ai.image-triton.port} # 图像去雾+人群计数+车牌识别\n tfSafeHostIp: ${com.cmii.chinamobile.ai.image-helmet-recognition.url} # 安全帽识别\n tfSafeHostPort: ${com.cmii.chinamobile.ai.image-helmet-recognition.port} # 安全帽识别\n tfRoadHostIp: ${com.cmii.chinamobile.ai.image-road-segmentation.url} # 道路分割\n tfRoadHostPort: ${com.cmii.chinamobile.ai.image-road-segmentation.port} # 道路分割\n tianQinUrl: ${com.cmii.chinamobile.ai.tian-qin.url} #天勤桥梁识别\n nongYeBehavior: ${com.cmii.chinamobile.ai.nong-ye-behavior.url} #农业人体姿态检测\n nongYeArea: ${com.cmii.chinamobile.ai.nong-ye-area.url} #农业区域目标检测\n nongyeConfThresh: 60\noauth:\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n','1a6897660c137aa9824db3ec015caf0b','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3624,'cmii-uav-cloud-live.yml','6.0.0','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: false\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@141 # 地标检测\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','2820b29b5cb11eb67bdd7e5ea3f058c9','2024-09-09 17:04:01','2024-11-13 09:10:34','developer','10.244.179.192','','','','','','yaml','',''),(3625,'cmii-uav-clusters.yml','6.0.0','bizName: 集群纳管SkyCenter # @袁雪波 不需要system-config纳管\r\ndbSchema: uav_cluster\r\nrancher:\r\n io:\r\n # 模拟K8S通过env传入,所以下面乱写一个值即可。eg: -Drancher.io.endPoint=\"https://192.168.11.163\"\r\n endPoint: https://rancher.107474.xyz/\r\n apiKey: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n apiKeys: token-jqchm:f7kk6vtdcnmzmkqjp7twsxzh26g8qfb7rknl46b52l6478tnxc22b6\r\n scaleQuota: 10\r\nprometheus:\r\n io:\r\n endPoint: http://access-prometheus.cattle-prometheus.svc.cluster.local/\r\n # endPoint: http://192.168.11.169:30999/\r\n # 设置Prometheus的瞬时查询的平均值计算时间范围\r\n instantQueryCalculateRange: 5m\r\n','bd3ed5e2898f5ffacebeec29d3ddfc31','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3626,'cmii-uav-cms.yml','6.0.0','bizName: cms系统\ndbSchema: uav_mcms\nmybatis:\n mapper-locations: classpath*:com/mobile/cms/dao/**/*.xml\n type-aliases-package: com.mobile.cms.entity \nbone:\n enable-swagger: false\n owner-company-ids: 2,52,172\n\n# logo/channel,多个以逗号相隔,连续的使用短线相连。举例:1,3,4,5,6,7 可写为 1,3-7\ncms:\n logo-ids: 1\n channel-ids: 2-100\n#登录过期时间12小时\nsession:\n # timeOut: 43200\n timeOut: 1800\nos:\n path: xxx\n\n#单个文件最大\nmultipart:\n maxFileSize: 3000MB\n #设置总上传数据总大小\n maxRequestSize: 10000MB\nmin:\n io:\n bucket: pub-cms\n','35305f9a3ebf2e4d68a29e3cd584fcb6','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3627,'cmii-uav-data-post-process.yml','6.0.0','bizName: 内业处理\ndbSchema: uav_data_post_process\nmin:\n io:\n srcId: 1323096648758464516\n localMinio: https://oss.demo.uavcmlc.com\nterra:\n secret: ${com.cmii.chinamobile.terra-cloud.secret}\n url: ${com.cmii.chinamobile.terra-cloud.url}\n localUrl: ${com.cmii.chinamobile.terra-cloud.localUrl}\n useLocal: true\n geoCS: EPSG:4326\nfeign:\n httpclient:\n connection-timeout: 600000\nribbon:\n ReadTimeout: 600000\n ConnectTimeout: 600000\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\namap:\n secretKey: 9dd3daa175f31d6bdd462f11474955a3\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n#第三方系统接入权限管理配置\noauth:\n visual:\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra:\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess:\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n\n','eaac7453e9c1769e2fa513f524ae0015','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3628,'cmii-uav-developer.yml','6.0.0','bizName: 开发者平台\ndbSchema: uav_developer\napiDeclaration: admin\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n max-connections: 500\n discovery:\n locator:\n enabled: true\n default-filters:\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n open:\n login:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 3600\n callback-fail-url: /open/#/updateEmail/fail\n callback-success-url: /open/#/updateEmail/success\n request:\n #是否校验签名\n check-sign: false\n #默认限制额度\n limit-quality: 100\n #请求的超时时间\n timeout: 300\n #配置接口刷新时间,单位秒\n api-sync-interval: 120\n #是否校验时间\n check-time: true\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-user\n','f42ada80a212f6f5e4116f0fe0adcba4','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3629,'cmii-uav-device.yml','6.0.0','bizName: 载荷管理\ndbSchema: uav_dev\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data\n ReadTimeout: 20000\n ConnectTimeout: 10000\noauth:\n free:\n grantType: authorization_code\n clientId: APP_9LY41OaKSqk2btY0\n clientSecret: jvFyQdjU6IzEiqyic5TaWYPTuwjQAX\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\n - uav.auth.5G.log.update.event\nlog:\n opt: true\n fly: true\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n\n','487e018d0c50d8ba348dc00545e20950','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3630,'cmii-uav-gateway.yml','6.0.0','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n websocket:\n max-frame-payload-length: 12480000\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n - id: advanced5g-websocket\n uri: lb:ws://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/sense/data/**\n - Path=/advanced5g/sense/detectionData/**\n - id: ruoyi\n uri: http://192.168.34.234:38080\n predicates:\n - Path=/ruoyi/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n - /ruoyi/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','ae80e81a8c9dbc963605ab286a22c20d','2024-09-09 17:04:01','2024-10-21 18:10:36','nacos','10.244.179.192','','','','','','yaml','',''),(3631,'cmii-uav-industrial-portfolio.yml','6.0.0','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n # mock-uas-id: \'UAS00018318\'\n mock-uas-id: \'UAS00020836\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00000\n padding-lon: 0.00000\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: \'CYY001\'\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: false\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9392632576454,22.51082064788392,0 113.9402619756469,22.50951374325599,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f7b6eefc547069ffc001a83b72adbaa7','2024-09-09 17:04:01','2024-11-06 09:14:27','developer','192.168.102.178','','','','','','yaml','',''),(3632,'cmii-uav-kpi-monitor.yml','6.0.0','bizName: 指标监测\r\ndbSchema: uav_kpi_monitor\r\napiDeclaration: uav,admin\r\nkpi:\r\n report:\r\n businessPlatform: uavcloud\r\n productName: 中移凌云\r\n hostName: \r\n hostIp:\r\n reportUrl: ${com.cmii.chinamobile.cmii-operation.url}\r\n reportFetchKpi: false\r\n reportStaticKpi: true\r\nlog:\r\n db:\r\n url: ${com.cmii.chinamobile.jdbc.url}/admin_user?${com.cmii.chinamobile.jdbc.params}\r\n userName: ${com.cmii.chinamobile.jdbc.username}\r\n password: ${com.cmii.chinamobile.jdbc.password}\r\n','d008c9c4265fe47597127009ccc9a311','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3633,'cmii-uav-logger.yml','6.0.0','bizName: 业务日志平台\ndbSchema: uav_logger\napiDeclaration: uav,admin\n','370093453cee84da4398a86a34ca2e7c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3634,'cmii-uav-material-warehouse.yml','6.0.0','spring:\n datasource:\n type: com.alibaba.druid.pool.DruidDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n druid:\n db-type: mysql\n url: jdbc:mysql://cmii-mysql:13306/cmii_material_warehouse?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n initial-size: 5\n min-idle: 5\n max-active: 20\n max-wait: 60000\n time-between-eviction-runs-millis: 60000\n min-evictable-idle-time-millis: 300000\n validation-query: SELECT \'x\'\n test-on-borrow: false\n test-on-return: false\n test-while-idle: true\n max-open-prepared-statements: 20\n filters: stat, wall\n kill-when-socket-read-timeout: true\n\nmin:\n io:\n defProjectThumbnailImg: defimage/def.jpg\n minIoExpiredTime: 28800\n typeId: MWS\n bucketName: jadenq\n\nfile:\n upload:\n tempWorkBasePath: /cmii/cache/warehouse/upload/temp/ #path update 无需共享存储\n thumbnail: thumbnail\n tusMaxSize: 21474836480\n tus: tus\n urlPrefix: ${com.cmii.chinamobile.root}/\n urlPrefixLifecycle: /uas/api/warehouse/regulator/\n download:\n urlPrefix: ${com.cmii.chinamobile.root}/api/warehouse/api/v1/warehouse/project/downloadFile/\n\noauth:\n dataprocess:\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\ncom:\n cmii:\n chinamobile:\n root: https://www.demo.uavcmlc.com\n default-path: ','a815811e029fa70d0d7d80f39dc6a4d0','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3635,'cmii-uav-mission.yml','6.0.0','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\n ai:\n ip: 192.168.34.227\n port: 19000\n waterUrl: /v2/models/water_segment/infer\n YuHangTransmissionPort: 6515\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','603ab12502e4ef5e3e1e06d9cca87c43','2024-09-09 17:04:01','2024-11-12 09:15:15','developer','10.244.179.192','','','','','','yaml','',''),(3636,'cmii-uav-mqtthandler.yml','6.0.0','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\n send-bridge: true\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','ab9fbce3b21c004f1f968a20db6acbe5','2024-09-09 17:04:01','2024-11-04 11:36:34','developer','192.168.103.100','','','','','','yaml','',''),(3637,'cmii-uav-notice.yml','6.0.0','bizName: 通知系统\ndbSchema: uav_notice\ncom:\n cmii:\n chinamobile:\n mq:\n sms:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_sms\n queue: ${spring.application.name}_sms\n email:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_email\n queue: ${spring.application.name}_email\n webmsg:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_webmsg\n queue: ${spring.application.name}_webmsg\nnotice:\n sms:\n aliyun:\n accessKeyId: LTAIXmLt59OuwPjS\n accessKeySecret: hp0oFL0MKiyvlmS7kRzVbvk7EYUl66\n signName: 中移凌云\n mas:\n host: ${com.cmii.chinamobile.mas.url}\n ecName: 中移(成都)信息通信科技有限公司\n apId: ${com.cmii.chinamobile.mas.apId}\n secretKey: ${com.cmii.chinamobile.mas.secretKey}\n sign: ${com.cmii.chinamobile.mas.sign}\n limit:\n minute: 1\n hour: 20\n day: 50\n ipHour: 500\n\nwebsocket: open\ndayreceivestart: 7\ndayreceiveend: 22\nHKTel: open\n','29f10857e9e5347a4274ce0415c3573c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3638,'cmii-uav-oauth.yml','6.0.0','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2024-09-09 17:04:01','2024-11-02 11:47:30','nacos','10.244.179.192','','','','','','yaml','',''),(3639,'cmii-uav-process.yml','6.0.0','bizName: 流程系统\napiDeclaration: uav,admin\ndbSchema: uav_process\ncom:\n cmii:\n chinamobile:\n mq:\n callback:\n exchange: ${spring.application.name}\n key: ${spring.application.name}_callback\n queue: ${spring.application.name}_callback\nprocess:\n notice:\n taskExpireHour:48\nflowable:\n#关闭定时任务JOB\n async-executor-activate: false\n#将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。\n database-schema-update: false\n\n','441ef5567308900bdd808ef83952d4c8','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3640,'cmii-uav-security-system.yml','6.0.0','bizName: 安全系统\r\ndbSchema: uav_security\r\n#爬取天气数据周期,每天9点和21点爬取\r\nweb:\r\n crawler:\r\n weather:\r\n cron: 0 1 0,9,21 * * ?\r\n watch-city-codes:\r\n - 56294\r\n\r\n','09aa7c6466e10d6a1e88ff0363565d1b','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3641,'cmii-uav-user.yml','6.0.0','bizName: 用户平台\ndbSchema: uav_user\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data,cmii-uav-notice\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n#notice address\n host: ${com.cmii.chinamobile.root}\nspring:\n redisson:\n multiple-server-config:\n database: 2\ncom:\n cmii:\n chinamobile:\n user:\n callback-fail-url: /#/update-email-status?status=fail\n callback-success-url: /#/update-email-status?status=success\n','6948b1c915b7c1293ab64a5752f202aa','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','','',NULL,NULL,'yaml',NULL,''),(3642,'cmii-uav-waypoint.yml','6.0.0','bizName: 航线服务\r\ndbSchema: uav_waypoint\r\nwaypoint:\r\n rangeDistance: 2000\r\n validatorPackage: com.cmii.chinamobile.waypoint.common.action.validator\r\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\r\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\r\nsimulation:\r\n remote:\r\n host: ${com.cmii.chinamobile.signal-simulation.url}\r\n port: ${com.cmii.chinamobile.signal-simulation.port}\r\n ak: ${com.cmii.chinamobile.signal-simulation.ak}\r\nribbon:\r\n ReadTimeout: 60000\r\n ConnectTimeout: 60000\r\n','e626260f173e5e5b7f4bc8034a0fc9dd','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3643,'cmii-uav-gis-server.yml','6.0.0','bizName: 兴趣点管理\ndbSchema: uav_gis\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nmap:\n gaode:\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\n\nfilePath:\n tempWorkBasePath: /cmii/cache/datapost/upload/temp/\n saveFileBasePath: /cmii/cache/datapost/upload/\n\nmin:\n io:\n srcId: 1323096648758464520\n','80de9948606d6b7f2c6c75783fdd4db1','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3644,'cmii-suav-supervision.yml','6.0.0','bizName: 政府监管\ndbSchema: suav_supervision\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\nspring:\n elasticsearch:\n uris: ${elasticsearch.uris}\n clusterName: ${elasticsearch.clusterName}\n username: ${elasticsearch.username}\n password: ${elasticsearch.password} \n application:\n name: cmii-suav-supervision\n messages:\n basename: i18n/messages\n login:\n supervisor:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\n user:\n img-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n session-timeout: 1800\nmybatis-plus:\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n global-config:\n db-config:\n id-type: auto\n update-strategy: not_null\n banner: off\n mapper-locations: classpath*:com/cmii/chinamobile/suav/supervision/mapper/**/*.xml\n\nidgen:\n worker-id: 0\n datacenter-id: 0\nprocedure:\n url: ${com.cmii.chinamobile.avicatm-cloud.url}\n version: 1.0\n secretKey: 904c396f6956d02c59a6ad35c08f5678\n\nmap:\n gaode:\n key: 50c5a7ac73f7c97960f5c923bcb804dc\n\nwebminio:\n bucket: jadenq\n\noauth:\n supervision:\n grantType: ${com.cmii.chinamobile.oauth.supervision.grantType}\n clientId: ${com.cmii.chinamobile.oauth.supervision.clientId}\n clientSecret: ${com.cmii.chinamobile.oauth.supervision.clientSecret}\n military-permission:\n client-id: APP_UIegse6Lfou9pO1U\n client-secret: iCyoZXtzuTWR89BevVltbs5JnvXiGw\n grant-type: authorization_code\n\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: uav,admin\nfilePath:\n tempWorkBasePath: /usr/local/data/datapost/upload/temp/\n saveFileBasePath: /usr/local/data/datapost/upload/\nwaypoint:\n rangeDistance: 2000\n validatorPackage: com.cmii.chinamobile.suav.supervision.airspace.service.airline.impl\n ruleClassNameMap: {001001: YawAngleRule,002001: HoverDurationRule,003001: PhotoFormatRule,004001: VideoResolutionRule,004002: VideoFormatRule,006001: SteerPitchAngleRule,006003: SteerTransitionAngleRule,006005: SteerHorizonRollAngleRule}\n paramIdRuleIdMap: {uavYaw-yaw: 001001,hover-hoverTime: 002001,photo-picFormat: 003001,startRecord-videoResolution: 004001,startRecord-videoFormat: 004002,cameraPanControl-cameraPitch: 006001,cameraPanControl-cameraYaw: 006003,cameraPanControl-cameraRoll: 006005}\n','4e1bd9af6592355c8f673c4853cdc4f2','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3645,'cmii-suav-gateway.yml','6.0.0','bizName: 政府监管平台网关\nenable-swagger: false\nspring:\n main:\n allow-bean-definition-overriding: true\n messages:\n basename: i18n/messages\n platform:\n info:\n name: 监管平台网关\n description: 监管平台网关\n version: 1.0.0\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\nsecurity:\n oauth2:\n permit-all:\n visitor:\n - /supervision/getImageCode\n - /supervision/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/code/login\n - /supervision/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /supervision/registry #用户注册地址\n - /supervision/profile/findPwd\n - /supervision/profile/doUpdateEmail\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n - /supervision/permission/getToken\n supervisor:\n - /supervision/supervisor/getImageCode\n - /supervision/supervisor/login #登陆接口,手机密码登陆,手机验证码登陆\n - /supervision/supervisor/verifyCode/* #发送验证码接口,登陆验证码,注册验证码,找回密码验证码\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /logger/**\n authority-ignores:\n visitor:\n - /supervision/logout #登出接口\n - /supervision/**/getMyDetail #获取自己详细信息\n - /supervision/profile/* #获取自己详细信息\n supervisor:\n - /supervision/supervisor/logout #登出接口\n - /supervision/supervisor/**/getMyDetail #获取自己详细信息\n - /supervision/supervisor/profile\n - /supervision/supervisor/profile/**\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n \ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n','ab5296574a4e7c986c1d51c59d8a8ac0','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3646,'cmii-app-release','6.0.0','bizName: APP发布服务\ndbSchema: cmii_app_release\napiDeclaration: uav,admin\nspring:\n jmx:\n enabled: false\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数','fe623ebf106fa27c02a42d396917e37d','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3647,'cmii-uav-emergency.yml','6.0.0','bizName: 应急管理\ndbSchema: uav_emergency\nfeign:\n client:\n config:\n default:\n connectTimeout: 20000\n readTimeout: 60000\nrestTemplate:\n clientHttpRequestFactory:\n connectTimeout: 6000\n readTimeout: 6000\n connectionRequestTimeout: 5000\nhttpClientConnectionManager:\n poolingConnectionManager:\n maxTotal: 1000\n defaultMaxPerRoute: 5000\n validateAfterInactivity: 30000\n','e092ae47e7664031796cddea97e8060e','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3648,'cmii-uav-grid-engine.yml','6.0.0','iwhere-engine:\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\n','f8d1b2146c23712eb0eef97e705dbb8c','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3649,'cmii-uav-grid-surveilliance.yml','6.0.0','logging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n','a90aad5a6a18dfd6403dcff7caeeec47','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3650,'cmii-uav-grid-manage.yml','6.0.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-nodes}\r\n cluster-name: ${com.cmii.chinamobile.iwhere.elasticsearch.cluster-name}\r\n main:\r\n allow-bean-definition-overriding: true\r\n allow-circular-references: true\r\n mvc:\r\n pathmatch:\r\n matching-strategy: ant_path_matcher\r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: info\r\n\r\nuav:\r\n safe-distance: 100\r\n offset-distance: 100\r\n\r\n# 温部署的引擎地址\r\niwhere-engine:\r\n url: ${com.cmii.chinamobile.iwhere.iwhere-engine.url}\r\n libraryId: ${com.cmii.chinamobile.iwhere.iwhere-engine.libraryId}\r\n\r\nmanagement:\r\n health:\r\n elasticsearch:\r\n enabled: false\r\n','975a07fa581c3c2ed50e3b52d16eaea2','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3651,'cmii-uav-grid-elasticsearch.yml','6.0.0','spring:\r\n data:\r\n elasticsearch:\r\n cluster-nodes: 192.168.35.243:60015\r\n cluster-name: elasticsearch','6c42a18f14e3537c0874d2663c97a79b','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3652,'cmii-uav-tower.yml','6.0.0','bizName: 黑龙江铁塔\r\ndbSchema: cmii_iron_tower\r\nfeign:\r\n client:\r\n config:\r\n default:\r\n connectTimeout: 20000\r\n readTimeout: 60000\r\nrestTemplate:\r\n clientHttpRequestFactory:\r\n connectTimeout: 6000\r\n readTimeout: 6000\r\n connectionRequestTimeout: 5000\r\nhttpClientConnectionManager:\r\n poolingConnectionManager:\r\n maxTotal: 1000\r\n defaultMaxPerRoute: 5000\r\n validateAfterInactivity: 30000\r\n\r\nminio:\r\n srcId: 1323096648758464519\r\n\r\nmap:\r\n gaode:\r\n key: e1f8da0bc7fa8415e6af52a1ae6d16f7\r\n\r\n','4b1ab6eab9be48de6f4c6f31144b2d4e','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3653,'cmii-live-operator.yml','6.0.0','bizName: live-op\ndbSchema: cmii_live_srs_op\n\nspring:\n application:\n name: cmii-live-operator\n platform:\n info:\n name: cmii-live-operator\n description: cmii-live-operator\n version: 5.2.0\n scanPackage: com.cmii.live.op\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n \ndruid:\n mysql:\n usePingMethod: false\n\nopentracing:\n jaeger:\n enabled: false\n\nlive:\n hls:\n max-ts: 200\n interval-ms: 6000\n\n hook:\n on-push:\n - http://cmii-uav-cloud-live:8080/client/live/stream/reportVideoEvent\n\n sync:\n onStart: false\n pool:\n core: 8\n max: 12\n queue: 0\n keepalive: 20\n interval:\n sync: 6000\n elect: 8\n keepalive: 20\n heartbeat: 8\n\nlogging:\n level:\n com.cmii.live.op.mapper: info','4c3e234be018e64f26037f552f95a403','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3654,'cmii-uav-multilink.yml','6.0.0','spring:\r\n platform:\r\n info:\r\n name: 多链路冗余\r\n description: 多链路冗余\r\n version: 1.0.0\r\n scan-package: com.cmii.chinamobile\r\n\r\nbizName: 多链路冗余\r\ndbSchema: uav_multi_link\r\n\r\nlog:\r\n flag: true\r\n','70ff50b0a07b1c37085d9b54bc7fc9f8','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3655,'cmii-uav-integration.yml','6.0.0','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.integration.cmii.service.DockOnlineService: error\n com.cmii.chinamobile.integration.cmii.service.impl.telemetries.DroneTelemetryServiceImpl: error\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345\nemqx:\n external:\n tcpHost: 183.220.196.113:26689\n tcpUsername: drcdji\n tcpPassword: CMII112233!\n wsHost: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token\n wsUsername: drcdji\n wsPassword: CMII112233!','9a1b2fa6fcb605c1b547c369c01c98ef','2024-09-09 17:04:01','2024-09-25 11:01:26','nacos','10.244.179.192','','','','','','yaml','',''),(3656,'cmii-uav-threedsimulation.yml','6.0.0','spring:\r\n jackson:\r\n time-zone: GMT+8\r\n datasource:\r\n url: jdbc:mysql://cmii-mysql:13306/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8\r\n\r\nribbon:\r\n ReadTimeout: 20000\r\n ConnectTimeout: 10000\r\n \r\n\r\nlogging:\r\n level:\r\n com.cmii.chinamobile: debug\r\n\r\n\r\n','4149352b2ff64ff6aa486bf3d7b7a9fe','2024-09-09 17:04:01','2024-09-09 17:04:01',NULL,'10.244.192.64','','',NULL,NULL,NULL,'yaml',NULL,''),(3657,'cmii-backend-system.yml','6.0.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.233\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','3baf9b7f917472a24ceebd7795b324a6','2024-09-09 17:04:01','2024-11-09 18:35:28','developer','192.168.103.141','','','','','','yaml','',''),(3658,'cmii-uas-gateway.yml','6.0.0','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - Path=/lifecycle/regulator/sense/universalData/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/sense/universalData/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /lifecycle/regulator/sim/** #超级sim卡\n - /lifecycle/regulator/cmiot/** #超级sim卡\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','bf28c1bcfd5dadfef52ef263578f28d8','2024-09-09 17:04:01','2024-11-11 15:28:21','nacos','10.244.179.192','','','','','','yaml','',''),(3659,'cmii-uas-lifecycle.yml','6.0.0','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.fusiontrack: WARN\nmqtt:\n single:\n host: tcp://emqxs:1883\n hosts: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\n deviceType: 5ga\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true\n\ncyy:\n aes: 696f4b09f80633a10eca593aa4dac727\n public:\n key: 042606569DF5B422596B78FEFC7A7087D618F339BCB3FE02DEDF3E733B4E5A8FE32DEA162DC12D31F03464F071EA9CEA1DE233FC9250C63005C401B9CAC030A155\n private:\n key: 73607410C0B2D9038D29738FC253B704E120FDC1A6C5D5E07AD038C9EE29D77C\n sim:\n debug: true\n bip:\n debug: true\n safeAid:\n aid: xxxx\n version: 1.0\n apdu:\n - 80E6200016000010D15600010181017B00000000B0010101000000\n - 80E281000400B20000\n execCount: 3\n chainingValue: \"01\"\n uavProductNO: 81145541533030303139363639393932313233343031\n imei: 820F383635303837303530333333333434\n terminalNO: 8306443830454538\n imsi: 840F343630303131303331363335313437\n result:\n success: \"009000\"\n command:\n install: 80E6200016000010D15600010181017B00000000B0010101000000\n query: 80E281000400B20000\n platform:\n version: 1.0\n url: https://www.demo.uavcmlc.com/uas/api/lifecycle/regulator/epc/auth\n debug: true\nxinshen:\n public:\n key: 04AF6C1BD30C3AE944A3E15E2F069F79EA2DC321DF26FBA6531BD1B58383C0E54F5F44A374E0FE3EFA7D1F307B6D3E54AC7352E8768470539EF2D6BDFBCBE279D5\n url: http://1.119.150.199:20016/cmiot/seitsm/cardinality/seOperatorApply\n spid: CYY04009','0624068a08be8569fbbf5684fdd52f77','2024-09-09 17:04:01','2024-11-12 16:08:23','nacos','10.244.179.192','','','','','','yaml','',''),(3660,'cmii-uav-sense-adapter.yml','6.0.0','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 0\n task-id: 0\n # #杭州华为任务\n # - sf-id: 553725952\n # task-id: 884001\n # - sf-id: 553725952\n # task-id: 64090602\n # #广东深圳华为:(保利香雪山)\n # # - sf-id: 12727754\n # # task-id: 12653338\n # - sf-id: 553725952\n # task-id: 5151\n # - sf-id: 553725952\n # task-id: 5752\n # - sf-id: 553725952\n # task-id: 640906101\n # #杭州萧山: \n # - sf-id: 553725952\n # task-id: 914\n # - sf-id: 553725952\n # task-id: 915 \n # #杭州余杭仓前杭师大体育馆 \n # - sf-id: 553725952\n # task-id: 916\n # #杭州萧山佳境天城西\n # - sf-id: 553725952\n # task-id: 917\n # #浙江温州苍南: \n # - sf-id: 553725952\n # task-id: 921 \n # #浙江-东钱湖: \n # - sf-id: 553725952\n # task-id: 5128\n # #浙江-宁波船厂:宁波咸祥:\n # - sf-id: 553725952\n # task-id: 5129\n # #浙江-舟山:\n # - sf-id: 553725952\n # task-id: 10410\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 30000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','78658d35601886bef68a111e5140d191','2024-09-09 17:04:01','2024-11-08 10:35:02','developer','10.244.192.64','','','','','','yaml','',''),(3736,'cmii-uav-advanced5g.yml','5.7.0','bizName: 通感一体化系统\r\ndbSchema: uav_industrial_portfolio\r\nspring:\r\n cache:\r\n type: none\r\nspringdoc:\r\n api-docs:\r\n version: openapi_3_1\r\n group-configs:\r\n - group: common\r\n display-name: 公共能力\r\n paths-to-match:\r\n - /cmii/**\r\n - group: all\r\n display-name: 所有的服务能力\r\n paths-to-match:\r\n - /**\r\nknife4j:\r\n enable: true\r\n basic:\r\n enable: true\r\n username: admin\r\n password: Yunying123\r\nadvanced5g:\r\n send-all-data: false\r\n device-control-user-ids: 414\r\n calculate-area-type: true\r\n calculate-tracking: true','4ab76a2d3788e3140137b49c2e07c937','2024-10-08 16:42:45','2024-10-08 16:42:45',NULL,'192.168.102.86','','',NULL,NULL,NULL,'yaml',NULL,''),(3737,'cmii-uav-advanced5g.yml','6.0.0','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\n filter:\n enabled: false\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9392632576454,22.51082064788392,0 113.9402619756469,22.50951374325599,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','a8afb0dc6ecf51858b2e02a61d6c016c','2024-10-08 16:43:11','2024-11-06 09:14:42','developer','192.168.102.178','','','','','','yaml','',''),(3904,'cmii-backend-system.yml','6.1.0','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.233\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\n single:\n host: tcp://124.70.192.237:1883\n hosts: tcp://124.70.192.237:1883\n #username: cmlc\n #password: 4YPk*DS%+5\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','930cb7082da56f1432737fee1dd6e9a1','2024-11-08 16:07:19','2024-11-08 16:07:19',NULL,'10.244.179.192','','','',NULL,NULL,'yaml',NULL,''); /*!40000 ALTER TABLE `config_info` ENABLE KEYS */; UNLOCK TABLES; @@ -252,7 +252,7 @@ CREATE TABLE `his_config_info` ( KEY `idx_gmt_create` (`gmt_create`) USING BTREE, KEY `idx_gmt_modified` (`gmt_modified`) USING BTREE, KEY `idx_did` (`data_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=4159 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='多租户改造'; +) ENGINE=InnoDB AUTO_INCREMENT=4278 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin ROW_FORMAT=DYNAMIC COMMENT='多租户改造'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -261,7 +261,7 @@ CREATE TABLE `his_config_info` ( LOCK TABLES `his_config_info` WRITE; /*!40000 ALTER TABLE `his_config_info` DISABLE KEYS */; -INSERT INTO `his_config_info` VALUES (3660,4039,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n - sf-id: 101\n task-id: 165539311\n - sf-id: 101\n task-id: 165539312\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"1040265216,587345920,36798,1102\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"587345920,553725952,20240626,101,12727754,8005,9001,285712,1315,838938628,2032,112,570503172,2101,8004,36798,8008,1102,570503168,537604096,123,9527,1040265216\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4c162062ddc79d21a6802c1526fb62de','2010-05-05 00:00:00','2024-09-17 22:43:51','developer','10.244.192.64','U','',''),(3660,4040,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"1040265216,587345920,36798,1102\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"587345920,20240626,12727754,8005,9001,285712,1315,838938628,2032,112,570503172,2101,8004,36798,8008,1102,570503168,537604096,123,9527,1040265216\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','823abf39501970bdb502f9de49971321','2010-05-05 00:00:00','2024-09-17 22:49:00','developer','10.244.192.64','U','',''),(3660,4041,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"0\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"20240626,8005,9001,285712,1315,838938628,2032,112,570503172,2101,8004,8008,570503168,537604096,123,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','bd5277afaca8bcdfacf691e42dbf9e1c','2010-05-05 00:00:00','2024-09-17 22:56:03','developer','10.244.192.64','U','',''),(3660,4042,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"0\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','40cef4f86a2fc6eac2af5b75eb113f59','2010-05-05 00:00:00','2024-09-17 22:57:35','developer','10.244.192.64','U','',''),(3660,4043,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"0\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','f56c7cf6269398b6dfbed49eb21e9c2b','2010-05-05 00:00:00','2024-09-17 23:00:29','developer','10.244.192.64','U','',''),(3631,4044,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','6a39a2f853a0dcd022d70331e4f5aad5','2010-05-05 00:00:00','2024-09-18 10:38:43','developer','192.168.103.2','U','',''),(3631,4045,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','11f29cce63f9cd056736f286624770f6','2010-05-05 00:00:00','2024-09-18 11:29:28','developer','192.168.103.2','U','',''),(3660,4046,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','3fad58c486668f76db27a1585abcbb27','2010-05-05 00:00:00','2024-09-18 18:24:18','developer','10.244.192.64','U','',''),(3660,4047,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','de2143c39cf0eb447047aa68a7f17c08','2010-05-05 00:00:00','2024-09-20 09:32:08','developer','10.244.192.64','U','',''),(3660,4048,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10240000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','2e896d0f9c033c884ea598724c2b179f','2010-05-05 00:00:00','2024-09-20 09:33:54','developer','10.244.192.64','U','',''),(3660,4049,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10240000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','8abfd2c831312eb11362a9567822b2b5','2010-05-05 00:00:00','2024-09-20 09:34:17','developer','10.244.192.64','U','',''),(3624,4050,'cmii-uav-cloud-live.yml','6.0.0','','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','f0bfedbd38d02208364c28c3771bc40f','2010-05-05 00:00:00','2024-09-20 10:35:35','nacos','10.244.179.192','U','',''),(3660,4051,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n # - sf-id: 1315\n # max-control-packets-per-second: 100\n # max-control-bytes-per-second: 10240000\n # max-user-data-packets-per-second: 100\n # max-user-data-bytes-per-second: 10240000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','8eea08f9a34aa56a762dea2e21c0977e','2010-05-05 00:00:00','2024-09-20 14:20:12','developer','10.244.192.64','U','',''),(3660,4052,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n # - sf-id: 1315\n # max-control-packets-per-second: 100\n # max-control-bytes-per-second: 10240000\n # max-user-data-packets-per-second: 100\n # max-user-data-bytes-per-second: 10240000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','47836cd81c4545b7cab7ca9a97e5750a','2010-05-05 00:00:00','2024-09-20 14:22:27','developer','10.244.192.64','U','',''),(3631,4053,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','e5cdea6ef0025dadebdafb52d9564b68','2010-05-05 00:00:00','2024-09-20 16:37:45','developer','192.168.103.207','U','',''),(3631,4054,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00020533\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','4cd1d52f51f44243e0f1f8d360ef6a51','2010-05-05 00:00:00','2024-09-20 16:40:56','developer','192.168.103.207','U','',''),(3631,4055,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00020570\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','a77ae5ed3ef715a5dabcfc3463cce4b8','2010-05-05 00:00:00','2024-09-20 16:43:08','developer','192.168.103.207','U','',''),(3631,4056,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00020570\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','04f2a14fbf4e16e0d737514eea2dc388','2010-05-05 00:00:00','2024-09-20 16:51:47','developer','192.168.103.207','U','',''),(3660,4057,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','79466974e8d06887a5ba636a42e8ab37','2010-05-05 00:00:00','2024-09-22 19:53:14','developer','10.244.192.64','U','',''),(3660,4058,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','becebb3ed28d2404f4f830a2757de75d','2010-05-05 00:00:00','2024-09-22 19:54:02','developer','10.244.192.64','U','',''),(3660,4059,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','bdeaffd7fb03ee1a4d02eca61ee6fa0f','2010-05-05 00:00:00','2024-09-22 19:56:46','developer','10.244.192.64','U','',''),(3660,4060,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','638c035566e01eef809e772c058544b6','2010-05-05 00:00:00','2024-09-22 20:06:51','developer','10.244.192.64','U','',''),(3660,4061,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','becebb3ed28d2404f4f830a2757de75d','2010-05-05 00:00:00','2024-09-22 20:08:42','developer','10.244.192.64','U','',''),(3655,4062,'cmii-uav-integration.yml','6.0.0','','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345','d4948f96e8f0fbe2f0a37c4c944eeccf','2010-05-05 00:00:00','2024-09-23 13:55:20','nacos','10.244.179.192','U','',''),(3655,4063,'cmii-uav-integration.yml','6.0.0','','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345\nemqx:\n external:\n tcpHost: 183.220.196.113:26689\n tcpUsername: drcdji\n tcpPassword: CMII112233!\n wsHost: ws://192.168.35.178:38085/mqtt\n wsUsername: drcdji\n wsPassword: CMII112233!','3e054f3b45cb08fff0246880451a98ef','2010-05-05 00:00:00','2024-09-23 13:55:48','nacos','10.244.179.192','U','',''),(3660,4064,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','d07e5c408f2b652315a5ecd112448f87','2010-05-05 00:00:00','2024-09-24 09:33:44','developer','10.244.192.64','U','',''),(3660,4065,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','0325c7927762a1925f4bf59ed368263d','2010-05-05 00:00:00','2024-09-24 17:53:45','developer','10.244.192.64','U','',''),(3660,4066,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 9100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 93000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 94000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 920000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','46c6fb919e7d2d8bba9b32b1f880babe','2010-05-05 00:00:00','2024-09-24 18:06:57','developer','10.244.192.64','U','',''),(3660,4067,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','6eaa95585604603fc41459c1ad5121e6','2010-05-05 00:00:00','2024-09-24 18:07:42','developer','10.244.192.64','U','',''),(3655,4068,'cmii-uav-integration.yml','6.0.0','','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\n\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345\nemqx:\n external:\n tcpHost: 183.220.196.113:26689\n tcpUsername: drcdji\n tcpPassword: CMII112233!\n wsHost: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token\n wsUsername: drcdji\n wsPassword: CMII112233!','5deee1ef3ad9529ab282440d2a946a9e','2010-05-05 00:00:00','2024-09-25 10:26:46','nacos','10.244.179.192','U','',''),(3655,4069,'cmii-uav-integration.yml','6.0.0','','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.integration.cmii.service.DockOnlineService: debug\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345\nemqx:\n external:\n tcpHost: 183.220.196.113:26689\n tcpUsername: drcdji\n tcpPassword: CMII112233!\n wsHost: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token\n wsUsername: drcdji\n wsPassword: CMII112233!','84c4ec86c979007b5d5d4687c9363326','2010-05-05 00:00:00','2024-09-25 10:34:48','nacos','10.244.179.192','U','',''),(3655,4070,'cmii-uav-integration.yml','6.0.0','','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.integration.cmii.service.DockOnlineService: error\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345\nemqx:\n external:\n tcpHost: 183.220.196.113:26689\n tcpUsername: drcdji\n tcpPassword: CMII112233!\n wsHost: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token\n wsUsername: drcdji\n wsPassword: CMII112233!','85576968ae41d28732c3408bcd4f2128','2010-05-05 00:00:00','2024-09-25 10:35:26','nacos','10.244.179.192','U','',''),(3655,4071,'cmii-uav-integration.yml','6.0.0','','spring:\n platform:\n info:\n name: 能力集成\n description: 能力集成服务\n version: 1.0.0\n scan-package: com.cmii.chinamobile\n datasource:\n url: jdbc:mysql://helm-proxysql:6033/uav_mission?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 \n# rabbitmq:\n# host: helm-rabbitmq\n# port: 5672\n# username: admin\n# password: nYcRN91r._hj\n# virtual-host: /\n\n \n# ribbon:\n# ConnectTimeout: 3000 # 连接超时时间(ms)\n# ReadTimeout: 3000 # 通信超时时间(ms)\n# OkToRetryOnAllOperations: true # 是否对所有操作重试\n# MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n# MaxAutoRetries: 1 # 同一实例的重试次数\n\nbizName: 能力集成服务\ndbSchema: uav_mission\n\n\n\njouav:\n accessKey: LTAI5tRHfjbQ3imcpFbjoDQ3\n accessSecret: EgdQw2nPeF6jUonABMYAwuFQIKRSNM\n consumerGroupId: ssnlbwbu05ZGAOUxxj3E000100\n clientId: 5g-uav-cyy\n host: 285145647851108384.iot-amqp.cn-shanghai.aliyuncs.com\n productKey: a1PGU0HzdWY\n\n\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile.integration.cmii.service.DockOnlineService: error\n com.cmii.chinamobile.integration.cmii.service.impl.telemetries.DroneTelemetryServiceImpl: debug\n\n# tusserver:\n# tusmaxsize: 1073741824\n# storagefolder: /cmii/cache/\n# urlprefix: https://lab.uavcmlc.com/\n# env: devflight/\n\n#dji配置\nurl:\n manage:\n prefix: /manage\n version: /api/v1\n map:\n prefix: /map\n version: /api/v1\n media:\n prefix: /media\n version: /api/v1\n wayline:\n prefix: /wayline\n version: /api/v1\n storage:\n prefix: /storage\n version: /api/v1\n control:\n prefix: /control\n version: /api/v1\njwt:\n issuer: DJI\n subject: CloudApiSample\n secret: CloudApiSample\n age: 86400\n\nmqtt-dji:\n protocol: tcp\n host: helm-emqxs:1883\n username: cmlc\n password: odD8#Ve7.B\n client-id: dji_dock_mqtt\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n # + 号是单级通配符,在使用时,必须占满整个层级\n inbound-topic: sys/product/+/status,thing/product/+/requests\nntp:\n server:\n host: cn.ntp.org.cn\nmqtt-jouav:\n url: ${mqtt.host}\n # url: tcp://112.19.241.133:30305\n username: ${mqtt.username}\n password: ${mqtt.password}\n client-id: /jopc-001\n keep-alive-interval: 20\n timeout: 10\n topics: $queue//+/heartBeat\n\nmqtt-cloudAPI:\n host: 183.220.196.113:26689\n username: drcdji\n password: CMII112233!\nszy:\n platform:\n host: http://221.6.105.230:18088/uav\n username: userdzc\n password: Dzc@12345\nemqx:\n external:\n tcpHost: 183.220.196.113:26689\n tcpUsername: drcdji\n tcpPassword: CMII112233!\n wsHost: wss://www.demo.uavcmlc.com/api/mqtt_ws2/token\n wsUsername: drcdji\n wsPassword: CMII112233!','af4b5e535cb39636b843c0a43ac94146','2010-05-05 00:00:00','2024-09-25 11:01:26','nacos','10.244.179.192','U','',''),(3631,4072,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: false\n mock-uas-id: UAS00020570\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','649bb5325cd122822fa3929eb72c6d3a','2010-05-05 00:00:00','2024-09-25 17:29:27','developer','192.168.103.47','U','',''),(3660,4073,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 3000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','bda814586172c80ea205d6d5f55185d6','2010-05-05 00:00:00','2024-09-27 09:04:28','developer','10.244.192.64','U','',''),(3660,4074,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','e1fd048eb81bc17884460f8793895349','2010-05-05 00:00:00','2024-09-27 09:19:14','developer','10.244.192.64','U','',''),(3631,4075,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: false\n mock-uas-id: UAS00020570\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','fba345c06d90ba36b9fa120176836071','2010-05-05 00:00:00','2024-09-27 10:16:14','developer','192.168.103.198','U','',''),(3660,4076,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','7a6f8b391520990d4a4c35a9cb80248d','2010-05-05 00:00:00','2024-09-27 10:16:22','developer','10.244.192.64','U','',''),(3631,4077,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: UAS00018318\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: 10002\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','6cc43950d5467cb336a6a0573d54f2eb','2010-05-05 00:00:00','2024-09-27 10:18:02','developer','192.168.103.198','U','',''),(3631,4078,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f12f076639fb76cd9139694765a59b9c','2010-05-05 00:00:00','2024-09-27 10:19:54','developer','192.168.103.198','U','',''),(3631,4079,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','ace0944128fc4881f3ef13d1788c4b90','2010-05-05 00:00:00','2024-09-27 13:46:27','developer','192.168.102.20','U','',''),(3660,4080,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','6fee6ec04ee7aaf28392561701531c3d','2010-05-05 00:00:00','2024-09-27 17:50:03','developer','10.244.192.64','U','',''),(3660,4081,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','da4dcf42046974490fd4cd89fee6e3dd','2010-05-05 00:00:00','2024-09-27 17:52:03','developer','10.244.192.64','U','',''),(3631,4082,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n - \'Sf1102Task925051\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','226c16e488babc7a9f6a1778dc7cb3ba','2010-05-05 00:00:00','2024-09-27 18:04:22','developer','10.244.192.64','U','',''),(3660,4083,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','264d14e99d791cf2935d9c6b0979445b','2010-05-05 00:00:00','2024-09-28 17:41:21','developer','10.244.192.64','U','',''),(3631,4084,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n # - \'Sf1102Task925051\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','170fb94d76f01c2aff5842ecd9978f71','2010-05-05 00:00:00','2024-09-29 10:34:38','developer','10.244.192.64','U','',''),(3660,4085,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 2000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','0a394cd2eee1f615754a3703bc1d8533','2010-05-05 00:00:00','2024-09-29 10:36:03','developer','10.244.192.64','U','',''),(3660,4086,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','264d14e99d791cf2935d9c6b0979445b','2010-05-05 00:00:00','2024-09-29 10:38:05','developer','10.244.192.64','U','',''),(3631,4087,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','d50463964ab7c284fd5d7493d892fa3e','2010-05-05 00:00:00','2024-09-29 11:16:54','developer','10.244.192.64','U','',''),(3631,4088,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n # - \'Sf1102Task925051\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','170fb94d76f01c2aff5842ecd9978f71','2010-05-05 00:00:00','2024-10-08 15:28:38','developer','192.168.102.86','U','',''),(3630,4089,'cmii-uav-gateway.yml','6.0.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','f485165435b2be7f26977e7e2a5645d5','2010-05-05 00:00:00','2024-10-08 16:41:00','developer','192.168.102.86','U','',''),(3342,4090,'cmii-uav-gateway.yml','5.7.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','fb33e04ebffa34ffb680213a56ec4e78','2010-05-05 00:00:00','2024-10-08 16:41:32','developer','192.168.102.86','U','',''),(0,4091,'cmii-uav-advanced5g.yml','5.7.0','','bizName: 通感一体化系统\r\ndbSchema: uav_industrial_portfolio\r\nspring:\r\n cache:\r\n type: none\r\nspringdoc:\r\n api-docs:\r\n version: openapi_3_1\r\n group-configs:\r\n - group: common\r\n display-name: 公共能力\r\n paths-to-match:\r\n - /cmii/**\r\n - group: all\r\n display-name: 所有的服务能力\r\n paths-to-match:\r\n - /**\r\nknife4j:\r\n enable: true\r\n basic:\r\n enable: true\r\n username: admin\r\n password: Yunying123\r\nadvanced5g:\r\n send-all-data: false\r\n device-control-user-ids: 414\r\n calculate-area-type: true\r\n calculate-tracking: true','4ab76a2d3788e3140137b49c2e07c937','2010-05-05 00:00:00','2024-10-08 16:42:45',NULL,'192.168.102.86','I','',''),(0,4092,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\r\ndbSchema: uav_industrial_portfolio\r\nspring:\r\n cache:\r\n type: none\r\nspringdoc:\r\n api-docs:\r\n version: openapi_3_1\r\n group-configs:\r\n - group: common\r\n display-name: 公共能力\r\n paths-to-match:\r\n - /cmii/**\r\n - group: all\r\n display-name: 所有的服务能力\r\n paths-to-match:\r\n - /**\r\nknife4j:\r\n enable: true\r\n basic:\r\n enable: true\r\n username: admin\r\n password: Yunying123\r\nadvanced5g:\r\n send-all-data: false\r\n device-control-user-ids: 414\r\n calculate-area-type: true\r\n calculate-tracking: true','4ab76a2d3788e3140137b49c2e07c937','2010-05-05 00:00:00','2024-10-08 16:43:11',NULL,'192.168.102.86','I','',''),(3737,4093,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\r\ndbSchema: uav_industrial_portfolio\r\nspring:\r\n cache:\r\n type: none\r\nspringdoc:\r\n api-docs:\r\n version: openapi_3_1\r\n group-configs:\r\n - group: common\r\n display-name: 公共能力\r\n paths-to-match:\r\n - /cmii/**\r\n - group: all\r\n display-name: 所有的服务能力\r\n paths-to-match:\r\n - /**\r\nknife4j:\r\n enable: true\r\n basic:\r\n enable: true\r\n username: admin\r\n password: Yunying123\r\nadvanced5g:\r\n send-all-data: false\r\n device-control-user-ids: 414\r\n calculate-area-type: true\r\n calculate-tracking: true','4ab76a2d3788e3140137b49c2e07c937','2010-05-05 00:00:00','2024-10-08 17:25:02','developer','192.168.102.86','U','',''),(3737,4094,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: true\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true','198002a2c1674b6a9046b538caee4242','2010-05-05 00:00:00','2024-10-08 17:43:58','developer','192.168.102.86','U','',''),(3737,4095,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true','84f99b03c995eac9f0dd4cdf7c742570','2010-05-05 00:00:00','2024-10-08 18:15:35','developer','192.168.102.86','U','',''),(3630,4096,'cmii-uav-gateway.yml','6.0.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','81f38c45106f2cd819b1c31042bd6d6e','2010-05-05 00:00:00','2024-10-08 18:29:17','developer','192.168.102.86','U','',''),(3630,4097,'cmii-uav-gateway.yml','6.0.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n - id: advanced5g-websocket\n uri: lb:ws://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/sense/data/**\n - Path=/advanced5g/sense/detectionData/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','c0db70edc9fed179a39fe220bdf74e5f','2010-05-05 00:00:00','2024-10-09 10:07:07','developer','192.168.102.235','U','',''),(3737,4098,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: true\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true','198002a2c1674b6a9046b538caee4242','2010-05-05 00:00:00','2024-10-09 15:50:53','developer','192.168.102.235','U','',''),(3660,4099,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4582fafcfaf2d6a65cb5a84ac38973af','2010-05-05 00:00:00','2024-10-09 15:58:38','developer','10.244.192.64','U','',''),(3660,4100,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','264d14e99d791cf2935d9c6b0979445b','2010-05-05 00:00:00','2024-10-09 16:01:21','developer','10.244.192.64','U','',''),(3737,4101,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true','84f99b03c995eac9f0dd4cdf7c742570','2010-05-05 00:00:00','2024-10-09 16:01:55','developer','192.168.102.235','U','',''),(3737,4102,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: debug','64e4f9ca29351be056331c6628257fa5','2010-05-05 00:00:00','2024-10-09 16:09:51','developer','192.168.102.235','U','',''),(3737,4103,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: true\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: debug','56154f041536ba6aea6f8a3cd50c823d','2010-05-05 00:00:00','2024-10-09 16:10:04','developer','192.168.102.235','U','',''),(3737,4104,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: debug','64e4f9ca29351be056331c6628257fa5','2010-05-05 00:00:00','2024-10-09 16:22:33','developer','192.168.102.235','U','',''),(3660,4105,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 50000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','cfff8bed9fa47595f48dc0675e3e0a60','2010-05-05 00:00:00','2024-10-09 16:22:54','developer','10.244.192.64','U','',''),(3660,4106,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4582fafcfaf2d6a65cb5a84ac38973af','2010-05-05 00:00:00','2024-10-09 16:36:55','developer','10.244.192.64','U','',''),(3660,4107,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','da4dcf42046974490fd4cd89fee6e3dd','2010-05-05 00:00:00','2024-10-09 16:37:04','developer','10.244.192.64','U','',''),(3660,4108,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4582fafcfaf2d6a65cb5a84ac38973af','2010-05-05 00:00:00','2024-10-09 16:49:38','developer','10.244.192.64','U','',''),(3660,4109,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','264d14e99d791cf2935d9c6b0979445b','2010-05-05 00:00:00','2024-10-09 16:50:24','developer','10.244.192.64','U','',''),(3660,4110,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','da4dcf42046974490fd4cd89fee6e3dd','2010-05-05 00:00:00','2024-10-09 16:50:59','developer','10.244.192.64','U','',''),(3660,4111,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4582fafcfaf2d6a65cb5a84ac38973af','2010-05-05 00:00:00','2024-10-09 16:55:54','developer','10.244.192.64','U','',''),(3660,4112,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','264d14e99d791cf2935d9c6b0979445b','2010-05-05 00:00:00','2024-10-09 16:56:35','developer','10.244.192.64','U','',''),(3660,4113,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4582fafcfaf2d6a65cb5a84ac38973af','2010-05-05 00:00:00','2024-10-09 16:57:51','developer','10.244.192.64','U','',''),(3660,4114,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4582fafcfaf2d6a65cb5a84ac38973af','2010-05-05 00:00:00','2024-10-09 17:01:10','developer','10.244.192.64','U','',''),(3660,4115,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','264d14e99d791cf2935d9c6b0979445b','2010-05-05 00:00:00','2024-10-09 17:03:29','developer','10.244.192.64','U','',''),(3660,4116,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','7e52665d5f5ddf3df2238d1b5d83e8b8','2010-05-05 00:00:00','2024-10-09 17:18:31','developer','10.244.192.64','U','',''),(3737,4117,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','9a540f596a19a20d303ccae025ab20f4','2010-05-05 00:00:00','2024-10-09 20:01:35','developer','192.168.103.69','U','',''),(3660,4118,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','ffd571fd6e045a6711d4fb0d0d069fec','2010-05-05 00:00:00','2024-10-10 00:01:53','developer','10.244.192.64','U','',''),(3660,4119,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n #20000\n max-user-data-bytes-per-second: 0\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','b9950778d589cb5a856cdac88f00d3e1','2010-05-05 00:00:00','2024-10-10 00:02:37','developer','10.244.192.64','U','',''),(3660,4120,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n #\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','58ddfda1915aa44a2c8ff1a456f07908','2010-05-05 00:00:00','2024-10-10 00:02:47','developer','10.244.192.64','U','',''),(3660,4121,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','ffd571fd6e045a6711d4fb0d0d069fec','2010-05-05 00:00:00','2024-10-10 00:12:11','developer','10.244.192.64','U','',''),(3660,4122,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','4c422821f3e42cd813efdd7b99894f11','2010-05-05 00:00:00','2024-10-10 00:13:06','developer','10.244.192.64','U','',''),(3631,4123,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n # - \'Sf1102Task925051\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','87f0c57d7464364a22597015566e60ea','2010-05-05 00:00:00','2024-10-10 09:17:40','developer','10.244.192.64','U','',''),(3660,4124,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n #湖南 中兴 \n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100 \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','dc28e54b714a788c48a84a15bec9bc30','2010-05-05 00:00:00','2024-10-11 08:47:45','developer','10.244.192.64','U','',''),(3615,4125,'cmii-admin-gateway.yml','6.0.0','','bizName: 运营平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: user\n uri: lb://cmii-admin-user\n predicates:\n - Path=/user/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: zyly\n uri: lb://cmii-uav-user\n predicates:\n - Path=/zyly/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: data-process\n uri: lb://cmii-uav-data-process\n predicates:\n - Path=/dataprocess/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: onesupport\n uri: lb://cmii-uav-onesupport\n predicates:\n - Path=/onesupport/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n\n\nribbon:\n ReadTimeout: 10000\n ConnectTimeout: 9000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\nsecurity:\n oauth2:\n permit-all:\n - /user/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /user/getImgCode\n - /user/getImageCode\n - /user/get_image_code_by_image_id\n - /**/v2/api-docs/**\n - /**/swagger-resources/**\n - /webjars/**\n - /doc.html\n - /swagger-ui.html\n - /error\n - /favicon.ico\n - /user/api/admin/role/querySelected\n - /admin/api/admin/language/**\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /zyly/api/uav/resource/queryResourceLanguage\n - /airspace/**/listAirport.do #查询机场\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /user/logout #登出接口\n - /user/**/getMyDetail #获取自己详细信息\n - /user/api/admin/user/profile/**\n - /user/api/admin/user/getUserResources\n - /user/api/admin/user/getUserResourceTree\n - /user/api/admin/resource/queryResourceTree\n - /user/api/admin/resource/queryResourceLanguage\n - /zyly/api/uav/role/del #删除角色\n - /warehouse/**\n # - /developer/**\n - /api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/grid/drawGridOnMap\n sign-ignores:\n - /*/system/**\n\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n','cb4505e369575e33f6400092c0d28e0a','2010-05-05 00:00:00','2024-10-11 09:29:52','developer','192.168.102.167','U','',''),(3622,4126,'cmii-uav-alarm.yml','6.0.0','','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\nsec:\n db:\n table:\n uav_airspace:\n - efence_airspace_copy:org_id,id\n uav_dev:\n - uav_plane:company_id,uav_code\n - uav_load\n tpIndex: tp_id\n flag: true\n\n mqtt:\n server:\n #mqtt server\n host: emqxs:1883\n user: cmlc\n password: odD8#Cr628\n\n listener:\n topic:\n - mission/info\n missionType: 5000,5001,5002,5003,5004,5005,5006,5007,5008,5009\n flag: true\n\n report:\n server:\n #mqtt server\n host: tcp://emqxs:1883\n user: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n','a76877278375da0d336ed66c7f182abd','2010-05-05 00:00:00','2024-10-11 09:45:07','developer','192.168.102.167','U','',''),(3622,4127,'cmii-uav-alarm.yml','6.0.0','','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\nsec:\n db:\n table:\n uav_airspace:\n - efence_airspace_copy:org_id,id\n uav_dev:\n - uav_plane:company_id,uav_code\n - uav_load\n tpIndex: tp_id\n flag: true\n\n mqtt:\n server:\n #mqtt server\n host: 192.168.34.245:37326\n user: cmlc\n password: odD8#Ve7.B\n\n listener:\n topic:\n - mission/info\n missionType: 5000,5001,5002,5003,5004,5005,5006,5007,5008,5009\n flag: true\n\n report:\n server:\n #mqtt server\n host: tcp://192.168.34.245:37326\n user: cmlc\n password: odD8#Ve7.B\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n','ce9c64940ac6ba00b0dfe90c3203fd77','2010-05-05 00:00:00','2024-10-11 10:46:20','developer','192.168.102.167','U','',''),(3631,4128,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f14f2dd5e43214f9404f8af452f549a0','2010-05-05 00:00:00','2024-10-11 11:20:07','developer','192.168.102.167','U','',''),(3657,4129,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2010-05-05 00:00:00','2024-10-11 15:16:31','nacos','10.244.192.64','U','',''),(3660,4130,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 10000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','a9ab7f388d71b762bb1e33fa13a86ef8','2010-05-05 00:00:00','2024-10-11 15:22:16','developer','10.244.192.64','U','',''),(3660,4131,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','ea2ad0c13e3f73c6f0211dc9ebd18c77','2010-05-05 00:00:00','2024-10-11 15:51:40','developer','10.244.192.64','U','',''),(3660,4132,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 20000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','33243c25e1af27651c5ab66abf51d78f','2010-05-05 00:00:00','2024-10-11 15:52:04','developer','10.244.192.64','U','',''),(3660,4133,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','7b894d39f0515aec8b686e56a39aebd7','2010-05-05 00:00:00','2024-10-11 15:52:21','developer','10.244.192.64','U','',''),(3660,4134,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','237b9ce992c4ccf36bc8757d9d528517','2010-05-05 00:00:00','2024-10-11 15:52:40','developer','10.244.192.64','U','',''),(3660,4135,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','237b9ce992c4ccf36bc8757d9d528517','2010-05-05 00:00:00','2024-10-11 15:52:56','developer','10.244.192.64','U','',''),(3657,4136,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','9bbae9af320f56a6b42ce6c8fd6f57b9','2010-05-05 00:00:00','2024-10-11 16:15:10','nacos','10.244.179.192','U','',''),(3631,4137,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f75a96ea66f84c079c35c358caba5d10','2010-05-05 00:00:00','2024-10-11 17:30:10','developer','192.168.102.205','U','',''),(3660,4138,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info','99f234ef3d5ea38f975ef90e576701c7','2010-05-05 00:00:00','2024-10-12 10:15:10','developer','10.244.192.64','U','',''),(3660,4139,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','0b6cae16eaef860994488b8adf855d0a','2010-05-05 00:00:00','2024-10-12 11:00:55','developer','10.244.192.64','U','',''),(3660,4140,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:\n - sf-id: 12727754\n task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: error\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','6a47d26080fb228e5b4252ecd490adcf','2010-05-05 00:00:00','2024-10-12 15:05:10','developer','10.244.192.64','U','',''),(3660,4141,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: error\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','8e66970c5dc4159462a4bf7810fff374','2010-05-05 00:00:00','2024-10-12 16:03:56','developer','10.244.192.64','U','',''),(3660,4142,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:\n - sf-id: 553725952\n task-id: 5129\n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: error\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','0e8242535a99c15ee4ce4afb8b5e2cda','2010-05-05 00:00:00','2024-10-12 16:26:44','developer','10.244.192.64','U','',''),(3660,4143,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:\n - sf-id: 553725952\n task-id: 5129\n # 宁波咸祥:\n - sf-id: 553725952\n task-id: 31514101\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: error\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','e92da2aab5e5d0532abdf26da1c0d623','2010-05-05 00:00:00','2024-10-12 16:54:26','developer','10.244.192.64','U','',''),(3631,4144,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','38d2a13e6a527a36ce419b64c4001b5b','2010-05-05 00:00:00','2024-10-12 17:26:10','developer','192.168.102.97','U','',''),(3631,4145,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 492\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','1ee098b77c8e71a45a03117154cdb1f6','2010-05-05 00:00:00','2024-10-14 11:30:50','developer','192.168.103.58','U','',''),(3631,4146,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','cc224101001601a78489035995954101','2010-05-05 00:00:00','2024-10-14 11:33:55','developer','192.168.103.58','U','',''),(3660,4147,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: error\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','aa23ac93bdb3d9b1a21263e5b0d26100','2010-05-05 00:00:00','2024-10-14 16:28:24','developer','10.244.192.64','U','',''),(3631,4148,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: debug\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','6a7e0c4f158745c1d9d6180d24c2d1df','2010-05-05 00:00:00','2024-10-14 16:32:25','developer','192.168.102.147','U','',''),(3631,4149,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','80dace1e6ac422176e4fdb457b2e6075','2010-05-05 00:00:00','2024-10-14 16:34:48','developer','192.168.102.147','U','',''),(3631,4150,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','ba2c045c8ffa29b9dec453d979a27e1f','2010-05-05 00:00:00','2024-10-14 16:37:18','developer','192.168.102.147','U','',''),(3631,4151,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: debug\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','37c99afebcfa87ffd2f46c8b86350aa3','2010-05-05 00:00:00','2024-10-14 16:37:47','developer','192.168.102.147','U','',''),(3631,4152,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','e00ca45577cdd6490e92c877e4878e56','2010-05-05 00:00:00','2024-10-14 16:45:26','developer','192.168.102.84','U','',''),(3631,4153,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: debug\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','8eab11f575bd156f91ba7ea8d463bcb3','2010-05-05 00:00:00','2024-10-14 16:45:45','developer','192.168.102.84','U','',''),(3631,4154,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f342ccfe1c0b3e4b5e8c258ebf6eb70d','2010-05-05 00:00:00','2024-10-14 17:00:38','developer','192.168.102.84','U','',''),(3631,4155,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: debug\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','a5e7ee05044c1117e128f3c7ce483f8e','2010-05-05 00:00:00','2024-10-14 17:05:21','developer','192.168.102.84','U','',''),(3631,4156,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: info\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','34f2b2ac16faf83bc6e96244d37e839f','2010-05-05 00:00:00','2024-10-14 17:06:31','developer','192.168.102.84','U','',''),(3659,4157,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','69c34d6951d2d7430729a121ddc6d0d6','2010-05-05 00:00:00','2024-10-14 17:43:55','nacos','10.244.179.192','U','',''),(3660,4158,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: uav_industrial_portfolio\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','4f316382b76c8f8179de4d1b9afd1b73','2010-05-05 00:00:00','2024-10-14 19:43:23','developer','10.244.192.64','U','',''); +INSERT INTO `his_config_info` VALUES (3622,4159,'cmii-uav-alarm.yml','6.0.0','','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\nsec:\n db:\n table:\n uav_airspace:\n - efence_airspace_copy:org_id,id\n uav_dev:\n - uav_plane:company_id,uav_code\n - uav_load\n tpIndex: tp_id\n flag: true\n\n mqtt:\n server:\n #mqtt server\n host: 192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n\n listener:\n topic:\n - mission/info\n missionType: 5000,5001,5002,5003,5004,5005,5006,5007,5008,5009\n flag: true\n\n report:\n server:\n #mqtt server\n host: tcp://192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n','11ee88d96f6470a3e155393734776019','2010-05-05 00:00:00','2024-10-15 15:26:50','developer','192.168.102.148','U','',''),(3622,4160,'cmii-uav-alarm.yml','6.0.0','','bizName: 告警系统\ndbSchema: uav_alarm\napiDeclaration: uav,admin\nribbon:\n eager-load:\n enabled: true\n clients: cmii-admin-data, cmii-uav-user\n ReadTimeout: 40000\n ConnectTimeout: 20000\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - REDIS_SYN_EVENT\nlog:\n opt: true\n fly: true\n\nsec:\n db:\n table:\n uav_airspace:\n - efence_airspace_copy:org_id,id\n uav_dev:\n - uav_plane:company_id,uav_code\n - uav_load\n tpIndex: tp_id\n flag: true\n\n mqtt:\n server:\n #mqtt server\n host: 192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n\n listener:\n topic:\n - mission/info\n missionType: 5000,5001,5002,5003,5004,5005,5006,5007,5008,5009\n flag: true\n\n report:\n server:\n #mqtt server\n host: tcp://192.168.34.245:37326\n user: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\nlogging:\n level:\n com.cmii.chinamobile: debug','8d27f2c5e310e8b6d847c1f928440592','2010-05-05 00:00:00','2024-10-15 17:32:27','developer','192.168.102.148','U','',''),(3660,4161,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n ','3c4ee812aa55286828390b19ddf99a9a','2010-05-05 00:00:00','2024-10-15 19:18:38','developer','10.244.192.64','U','',''),(3657,4162,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2010-05-05 00:00:00','2024-10-16 09:22:31','nacos','10.244.192.64','U','',''),(3659,4163,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','cd87832b1daa87f1a6a24e7721866fde','2010-05-05 00:00:00','2024-10-16 09:32:38','developer','192.168.102.66','U','',''),(3659,4164,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','321364a6b9963bb5deb47b663b400edb','2010-05-05 00:00:00','2024-10-16 09:33:36','developer','192.168.102.66','U','',''),(3659,4165,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','b7515aa923e6a0d38c08a16222e32b54','2010-05-05 00:00:00','2024-10-16 09:34:56','developer','192.168.102.66','U','',''),(3659,4166,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','a1314c3f3523ccad4d559f3a517acb00','2010-05-05 00:00:00','2024-10-16 09:36:25','developer','192.168.102.66','U','',''),(3659,4167,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','fe55acdd22525e10a2cf2cf8a808e2cc','2010-05-05 00:00:00','2024-10-16 09:39:36','developer','192.168.102.66','U','',''),(3657,4168,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: debug\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','9bbae9af320f56a6b42ce6c8fd6f57b9','2010-05-05 00:00:00','2024-10-16 09:56:35','developer','192.168.102.66','U','',''),(3660,4169,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','bd576a06050f7182ddf20b0c2ed39331','2010-05-05 00:00:00','2024-10-16 11:27:32','developer','10.244.192.64','U','',''),(3660,4170,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','9ddd4085adfbda57a7cd50a1a03518e4','2010-05-05 00:00:00','2024-10-17 16:33:12','developer','10.244.192.64','U','',''),(3659,4171,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','01901505478fad402d10eb4aae59e3fb','2010-05-05 00:00:00','2024-10-17 18:46:34','developer','192.168.103.113','U','',''),(3660,4172,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 4100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','df9fdd19cb950eb93cb2e5fe80614442','2010-05-05 00:00:00','2024-10-18 10:39:51','developer','10.244.192.64','U','',''),(3660,4173,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','45e7270a60d878d1eda6483caa974efe','2010-05-05 00:00:00','2024-10-18 10:40:12','developer','10.244.192.64','U','',''),(3660,4174,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 400100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','a2ce8691cb387f078241bdd3c81ecc57','2010-05-05 00:00:00','2024-10-18 10:40:30','developer','10.244.192.64','U','',''),(3660,4175,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','fc832f599f8e548c008f69254163ecfa','2010-05-05 00:00:00','2024-10-18 10:40:54','developer','10.244.192.64','U','',''),(3660,4176,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 100100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','c6b9b6589b52faedfec9ca8611141a9d','2010-05-05 00:00:00','2024-10-18 14:33:07','developer','10.244.192.64','U','',''),(3611,4177,'cmii-uav-iot-dispatcher.yml','6.0.0','','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)\n coop_uav_takeoff_altitude: 0.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','135e9564da1c69849e70c48f248df8ea','2010-05-05 00:00:00','2024-10-18 16:16:17','developer','10.244.179.192','U','',''),(3611,4178,'cmii-uav-iot-dispatcher.yml','6.0.0','','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)。边端收到的高度是该等高线海拔加相对地面高度\n coop_uav_takeoff_altitude: 0.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','159b40e0f8bbbd287bf03fcbc3e32527','2010-05-05 00:00:00','2024-10-18 16:17:14','developer','10.244.179.192','U','',''),(3631,4179,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','329bdb20ff869d0b1534bd4412b5e0c2','2010-05-05 00:00:00','2024-10-19 14:17:30','developer','192.168.102.164','U','',''),(3631,4180,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n - \'127265611\'\n - \'127266081\'\n - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','4462f61288142362ce414b1d55afe044','2010-05-05 00:00:00','2024-10-19 14:23:42','developer','192.168.102.164','U','',''),(3631,4181,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','7dd8f31011bd2a85e16886136df0dbed','2010-05-05 00:00:00','2024-10-19 20:57:20','developer','192.168.103.19','U','',''),(3631,4182,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','0099c0dfb8e3bc52d994d06fbc21887c','2010-05-05 00:00:00','2024-10-19 22:58:42','developer','192.168.103.48','U','',''),(3631,4183,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','02fba5ca8c81fbb3af16500ad2d12238','2010-05-05 00:00:00','2024-10-19 23:01:36','developer','192.168.103.48','U','',''),(3631,4184,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','1a2abceb22c7d6d9370437d05d734e21','2010-05-05 00:00:00','2024-10-19 23:03:58','developer','192.168.103.48','U','',''),(3660,4185,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n #华为云南昆明: \n - sf-id: 101\n task-id: 1659845102\n #云南保山1:\n - sf-id: 101\n task-id: 165539311\n #云南保山2:\n - sf-id: 101\n task-id: 165539312\n #云南德宏瑞丽\n - sf-id: 101\n task-id: 1659845103 \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n# need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','fc832f599f8e548c008f69254163ecfa','2010-05-05 00:00:00','2024-10-20 11:51:41','developer','10.244.192.64','U','',''),(3660,4186,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 1111130\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','bd112afa8c7c86f008da01e56b63d066','2010-05-05 00:00:00','2024-10-20 11:53:13','developer','10.244.192.64','U','',''),(3660,4187,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: debug\n \n ','389fcdd857dd737e4ac4a001ad28b3d3','2010-05-05 00:00:00','2024-10-20 12:01:24','developer','10.244.192.64','U','',''),(3737,4188,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','f69a426498b8ee135bc54f73631cd3d9','2010-05-05 00:00:00','2024-10-20 21:45:15','developer','192.168.102.239','U','',''),(3737,4189,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\n filter:\n enabled: true\n task-filters:\n - bts-code: \'Sf1102Task92501\'\n enabled: true\n access-area:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','f653af38490f41ae2d0f6d9233b7939f','2010-05-05 00:00:00','2024-10-20 22:47:17','developer','192.168.102.254','U','',''),(3631,4190,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','be8c5c9206303045979e314e3e14cd66','2010-05-05 00:00:00','2024-10-20 23:33:35','developer','192.168.102.254','U','',''),(3631,4191,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','4d8de66ba87627c2db6c464869a08f67','2010-05-05 00:00:00','2024-10-20 23:40:08','developer','192.168.102.254','U','',''),(3737,4192,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\n filter:\n enabled: true\n task-filters:\n - bts-code: \'Sf1102Task92501\'\n enabled: true\n access-area:\n - \'113.9512041025142,22.52315161403556,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9405559075596,22.51378380220906,0 113.9390097378891,22.51369607062693,0 113.9319213459807,22.5140506087827,0 113.9322062059513,22.51233138024399,0 113.9384939716786,22.51183435643572,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9511026797797,22.51513233288373,0 113.9512041025142,22.52315161403556,0\'\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','afd9b82e59955b480f1d3850d1eca423','2010-05-05 00:00:00','2024-10-20 23:48:40','developer','192.168.102.254','U','',''),(3631,4193,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','6e0bd90eaaa13bdac5536ab828ab1d41','2010-05-05 00:00:00','2024-10-21 00:00:55','developer','192.168.102.254','U','',''),(3631,4194,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: false\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','a3421e522b80b1899233e583302f7153','2010-05-05 00:00:00','2024-10-21 00:01:40','developer','192.168.102.254','U','',''),(3631,4195,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','6e0bd90eaaa13bdac5536ab828ab1d41','2010-05-05 00:00:00','2024-10-21 12:31:12','developer','192.168.102.57','U','',''),(3631,4196,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: true\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f133301e2d0a0fb94b015090398901a7','2010-05-05 00:00:00','2024-10-21 12:31:54','developer','192.168.102.57','U','',''),(3630,4197,'cmii-uav-gateway.yml','6.0.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n websocket:\n max-frame-payload-length: 12480000\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n - id: advanced5g-websocket\n uri: lb:ws://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/sense/data/**\n - Path=/advanced5g/sense/detectionData/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','52bceffb72a72f7993d20e60174e6787','2010-05-05 00:00:00','2024-10-21 17:47:28','nacos','10.244.179.192','U','',''),(3630,4198,'cmii-uav-gateway.yml','6.0.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n websocket:\n max-frame-payload-length: 12480000\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n - id: advanced5g-websocket\n uri: lb:ws://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/sense/data/**\n - Path=/advanced5g/sense/detectionData/**\n - id: ruoyi\n uri: http://192.168.34.234:38080\n predicates:\n - Path=/ruoyi/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','5d19b68a52d9a89c0062ee7308c04d2f','2010-05-05 00:00:00','2024-10-21 18:00:14','nacos','10.244.179.192','U','',''),(3630,4199,'cmii-uav-gateway.yml','6.0.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n websocket:\n max-frame-payload-length: 12480000\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n - id: advanced5g-websocket\n uri: lb:ws://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/sense/data/**\n - Path=/advanced5g/sense/detectionData/**\n - id: ruoyi\n uri: http://192.168.34.234:38080\n predicates:\n - Path=/ruoyi/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n - /ruoyi/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','47522ed3b1b218a4738097735e6f3e36','2010-05-05 00:00:00','2024-10-21 18:07:31','nacos','10.244.179.192','U','',''),(3630,4200,'cmii-uav-gateway.yml','6.0.0','','bizName: 平台网关\nenable-swagger: false\nspring:\n cloud:\n gateway:\n httpclient:\n websocket:\n max-frame-payload-length: 12480000\n pool:\n max-idle-time: 5000\n discovery:\n locator:\n enabled: true\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: oauth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/ca/**\n - id: auth\n uri: lb://cmii-uav-oauth\n predicates:\n - Path=/auth/**\n - id: user\n uri: lb://cmii-uav-user\n predicates:\n - Path=/user/**\n - id: org\n uri: lb://cmii-uav-user\n predicates:\n - Path=/org/**\n - id: resource\n uri: lb://cmii-uav-user\n predicates:\n - Path=/resource/**\n - id: websocket\n uri: lb:ws://cmii-uav-logger\n predicates:\n - Path=/logger/wbsocket/**\n - id: logger\n uri: lb://cmii-uav-logger\n predicates:\n - Path=/logger/**\n - id: airspace\n uri: lb://cmii-uav-airspace\n predicates:\n - Path=/airspace/**\n - id: foia\n uri: lb://cmii-uav-foia\n predicates:\n - Path=/foia/**\n - id: surveillance\n uri: lb://cmii-uav-surveillance\n predicates:\n - Path=/surveillance/**\n - id: surveillance-websocket\n uri: lb:ws://cmii-uav-surveillance\n predicates:\n # - Path=/surveillance/**\n - Path=/surveillance/total-surveillance/**\n - Path=/surveillance/single-surveillance/**\n - Path=/surveillance/nj-surveillance/**\n - Path=/surveillance/surveillance/command/**\n - Path=/surveillance/single-surveillance-basic/**\n - Path=/surveillance/total-surveillance-basic/**\n - Path=/surveillance/single-surveillance-yaw/**\n - Path=/surveillance/single-surveillance-app/**\n - Path=/surveillance/communication-surveillance/** #websocket链接,应急通信\n - Path=/surveillance/total-surveillance-JT/** # 交通场景\n - Path=/surveillance/advanced_total_surveillance/**\n - Path=/surveillance/advanced_traffic_surveillance/** # 交通ws\n - id: integration\n uri: lb://cmii-uav-integration\n predicates:\n - Path=/integration/**\n - id: integration-websocket\n uri: lb:ws://cmii-uav-integration\n predicates:\n # - Path=/surveillance/**\n - Path=/integration/hangarServer/**\n - id: dev\n uri: lb://cmii-uav-device\n predicates:\n - Path=/dev/**\n - id: alarm\n uri: lb://cmii-uav-alarm\n predicates:\n - Path=/alarm/**\n - id: feedback\n uri: lb://cmii-uav-user\n predicates:\n - Path=/feedback/**\n - id: waypoint\n uri: lb://cmii-uav-waypoint\n predicates:\n - Path=/waypoint/**\n - id: mission\n uri: lb://cmii-uav-mission\n predicates:\n - Path=/mission/**\n - id: mission-websocket\n uri: lb:ws://cmii-uav-mission\n predicates:\n - Path=/mission/single-monitor/**\n - id: live\n uri: lb://cmii-uav-live\n predicates:\n - Path=/live/**\n - id: admin-data\n uri: lb://cmii-admin-data\n predicates:\n - Path=/admin/**\n - id: developer\n uri: lb://cmii-uav-developer\n predicates:\n - Path=/developer/**\n - id: notice\n uri: lb://cmii-uav-notice\n predicates:\n - Path=/notice/**\n - id: notice-websocket\n uri: lb:ws://cmii-uav-notice\n predicates:\n - Path=/notice/notice/**\n - id: process\n uri: lb://cmii-uav-process\n predicates:\n - Path=/process/**\n - id: cloudLive\n uri: lb://cmii-uav-cloud-live\n predicates:\n - Path=/cloudLive/**\n - id: mqtthandler\n uri: lb://cmii-uav-mqtthandler\n predicates:\n - Path=/mqtt/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n - id: securitySystem\n uri: lb://cmii-uav-security-system\n predicates:\n - Path=/securitySystem/**\n - id: brain\n uri: lb://cmii-uav-brain\n predicates:\n - Path=/brain/**\n - id: apprelease\n uri: lb://cmii-app-release\n predicates:\n - Path=/apprelease/**\n - id: data-post-process\n uri: lb://cmii-uav-data-post-process\n predicates:\n - Path=/dpp/**\n - id: cmii-uav-hyperspectral-provider\n uri: lb://cmii-uav-hyperspectral-provider\n predicates:\n - Path=/hy-provider/**\n - id: cmii-uav-hyperspectral-consumer\n uri: lb://cmii-uav-hyperspectral-consumer\n predicates:\n - Path=/hy-consumer/**\n - id: cmii-uav-hyperspectral-publish\n uri: lb://cmii-uav-hyperspectral-publish\n predicates:\n - Path=/hy-publish/**\n - id: cmii-uav-industrial-portfolio\n uri: lb://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/**\n - id: industrial-portfolio-websocket\n uri: lb:ws://cmii-uav-industrial-portfolio\n predicates:\n - Path=/industrial/police_platform/**\n - Path=/industrial/surveillance_detection/**\n - Path=/industrial/surveillance_civil_military/**\n - Path=/industrial/emergency_management/**\n - Path=/industrial/medical_logistics/**\n - Path=/industrial/detection/data/**\n - Path=/industrial/surveillance_5GA/**\n - Path=/industrial/cameras/**\n - Path=/industrial/universal/**\n - id: cmii-uav-cms\n uri: lb://cmii-uav-cms\n predicates:\n - Path=/cms/**\n - id: gis-server\n uri: lb://cmii-uav-gis-server\n predicates:\n - Path=/gis/**\n - id: supervision\n uri: lb://cmii-suav-supervision\n predicates:\n - Path=/supervision/**\n - id: cmii-uav-emergency\n uri: lb://cmii-uav-emergency\n predicates:\n - Path=/emergency/**\n - id: cmii-uav-grid-datasource\n uri: lb://cmii-uav-grid-datasource\n predicates:\n - Path=/datasource/**\n - id: cmii-uav-grid-engine\n uri: lb://cmii-uav-grid-engine\n predicates:\n - Path=/engine/**\n - id: cmii-uav-grid-manage\n uri: lb://cmii-uav-grid-manage\n predicates:\n - Path=/manage/**\n - id: cmii-uav-grid-manage-websocket\n uri: lb:ws://cmii-uav-grid-manage\n predicates:\n - Path=/manage/uav-surveillance/**\n - id: cmii-uav-grid-surveilliance\n uri: lb://cmii-uav-grid-surveilliance\n predicates:\n - Path=/surveilliance/**\n - id: tower\n uri: lb://cmii-uav-tower\n predicates:\n - Path=/tower/**\n - id: simulation\n uri: lb://cmii-uav-threedsimulation\n predicates:\n - Path=/simulation/**\n - id: multilink\n uri: lb://cmii-uav-multilink\n predicates:\n - Path=/multilink/**\n - id: adapter\n uri: lb://cmii-uav-sense-adapter\n predicates:\n - Path=/adapter/**\n - id: advanced5g\n uri: lb://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/**\n - id: advanced5g-websocket\n uri: lb:ws://cmii-uav-advanced5g\n predicates:\n - Path=/advanced5g/sense/data/**\n - Path=/advanced5g/sense/detectionData/**\n - id: ruoyi\n uri: http://192.168.34.234:38080\n predicates:\n - Path=/ruoyi/**\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 3000\n ServerListRefreshInterval: 5000 #注册中心刷新时间,默认30秒\n\n#---------------------OAuth2---------------------\nsecurity:\n oauth2:\n permit-all: # 全部通行,不进行认证和鉴权\n - /ca/oauth/token\n - /ca/checkAccessToken\n - /ca/checkToken\n - /ca/oauth/authorize\n - /ca/oauth/check_token\n - /ca/commonToken\n # - /developer/**\n - /ca/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/**/elogin #登陆接口,手机密码登陆,手机验证码登陆\n - /auth/**/login #登陆接口,手机密码登陆,手机验证码登陆\n - /ca/simpleAuthorize\n - /ca/code/autoLogin\n - /ca/code/zysiStLogin\n - /ca/code/signLogin\n - /ca/login2\n - /ca/logout #登出接口\n - /ca/getVerifyCode\n - /ca/getImgCode\n - /ca/getImageCode\n - /ca/get_image_code_by_image_id\n - /user/api/uav/user/profile/doUpdateEmail #用户修改邮箱\n - /user/api/uav/user/profile/verifyCode/getImageCode #获取图片验证码\n - /user/api/uav/user/profile/verifyCode/sendLogin #发送登陆验证码\n - /user/api/uav/user/profile/verifyCode/checkLogin #验证登陆验证码\n - /user/api/uav/user/profile/verifyCode/sendRegisty #发送注册验证码\n - /user/api/uav/user/profile/verifyCode/checkRegisty #验证注册验证码\n - /user/api/uav/user/profile/verifyCode/sendResetPassword #发送找回密码\n - /user/api/uav/user/profile/verifyCode/checkResetPassword #验证找回密码\n - /user/api/uav/user/profile/findPwd #找回密码\n - /user/api/uav/user/checkAccountPwd #检查账号密码\n - /user/api/uav/user/modifyPwd #利用原密码验证修改密码\n - /user/registry/** #用户注册地址\n - /securitySystem/**\n # - /**/v2/api-docs/**\n # - /**/swagger-resources/**\n # - /**/webjars/**\n # - /**/doc.html\n # - /**/swagger-ui.html\n - /error\n - /favicon.ico\n - /*/system/**\n - /*/public/**\n - /notice/notice/** #websocket链接,全部放行\n - /surveillance/total-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance/** #websocket链接,全部放行\n - /surveillance/nj-surveillance/** #websocket链接,全部放行\n - /surveillance/single-surveillance-app/** # app ws\n - /surveillance/single-surveillance-yaw/** # 单机监视偏航预警ws\n - /surveillance/advanced_traffic_surveillance/** # 新交通ws\n - /surveillance/communication-surveillance/** #websocket链接,应急通信\n - /surveillance/single-surveillance-basic/**\n - /surveillance/total-surveillance-basic/**\n - /surveillance/total-surveillance-JT/** # 交通ws\n - /integration/hangarServer/** # 数字鹰ws\n - /surveillance/advanced_total_surveillance/** #websocket链接,全部放行\n - /surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /industrial/police_platform/**\n - /industrial/surveillance_detection/** # 低空探测\n - /industrial/surveillance_civil_military/**\n - /industrial/medical_logistics/**\n - /industrial/surveillance_5GA/**\n - /industrial/cameras/**\n - /industrial/universal/**\n - /mission/single-monitor/** #websocket链接,全部放行\n - /feedback/api/uav/feedback/queryFeedbackType #查询问题反馈类型\n - /feedback/api/uav/feedback/queryApps #查询应用列表\n - /feedback/api/uav/solution/**\n # - /foia/**\n - /admin/api/admin/language/**\n - /airspace/**/getZydDicFlytask.do #查询飞行任务类型\n - /airspace/**/queryAppr.do #审批状态\n - /mqtt/uav/uavInfo #天途回调接口\n # - /live/**\n - /apprelease/release/info\n - /apprelease/version/info\n - /dpp/v1/permission/**\n - /dpp/product/download\n - /dpp/result/download\n - /dpp/product/report/download\n - /warehouse/api/v1/warehouse/user/getToken\n - /brain/brain/user/permission/getToken\n - /hy-consumer/v1/permission/user/getHyperToken\n - /cloudLive/user/getToken\n - /dev/**/queryBoundDetailByDeviceNo\n - /warehouse/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/project/downloadFileBySign/** #素材仓库文件下载\n - /warehouse/api/v1/warehouse/item/public/**/download/**\n - /industrial/v1/permission/user/getDataProcessToken\n - /cms/api/article/**\n - /cms/api/column/**\n - /cms/api/label/**\n - /cms/api/menu/**\n - /cms/api/upload/**\n - /cms/api/user/**\n - /cms/v1/front/**\n - /industrial/v1/permission/share/get_uav_point # 公安分享接口\n - /industrial/v1/permission/share/check_share_code # 公安分享接口\n - /industrial/api/uav/industrial/portfolio/common/user/getDataProcessToken\n - /industrial/emergency_management/** # 应急\n - /industrial/api/uav/industrial/portfolio/emergency/emergency_token\n - /mission/report_and_video/video_share/** #作业报告和视频分享\n - /mission/report_and_video/report_share/** #作业报告和视频分享\n - /industrial/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken\n - /industrial/senseAf/**\n - /dev/api/uav/permission/user/getUavFreeTokenByCode\n - /supervision/permission/getToken\n - /supervision/permission/getCivilMilitaryToken\n - /manage/uav-surveillance/**\n - /surveillance/surveillance/surveillance/authority_transfer/check_by_token # 飞行控制权信息获取\n - /surveillance/surveillance/surveillance/authority_transfer/approve_transfer_by_token # 飞行控制权批准\n - /cmii-app-release/version/pub_version_info_detail/*\n - /adapter/**\n - /industrial/detection/data/**\n - /advanced5g/sense/data/**\n - /advanced5g/sense/detectionData/**\n - /ruoyi/*\n authority-ignores: # 不进行鉴权,比如个人的接口\n - /*/personal/**\n - /ca/ssoLogout\n - /waypoint/api/uav/waypoint/app/**\n - /user/**/getMyDetail #获取自己详细信息\n - /user/**/getMyDetail/fallBack\n - /user/quota/personal/hasQuota\n - /user/api/uav/user/profile/**\n - /user/api/uav/user/getUserResources\n - /user/api/uav/user/getResourceTree\n - /user/api/uav/user/getSuperiorAndSubordinatetUser\n - /user/api/uav/resource/queryResourceLanguage\n - /user/api/uav/resource/queryResourceTree\n - /user/api/uav/platform/queryPlatformsByGroup\n - /user/api/uav/resource/queryPlatformResourceTreeForUser\n - /user/api/uav/resource/queryPlatformsGroupResourceTreeForUser\n - /user/api/uav/org/descendants_with_own\n - /user/api/uav/org/company_scopes\n - /user/suav/user/applyCertification\n - /user/suav/user/getUserDetail\n - /admin/**/getLangValueFromRedisByKey\n - /admin/**/getDictListFromRedis\n - /admin/**/getValiableDictRedisByType\n - /mission/api/uav/mission/surveillance/queryOneButtonMissionList\n - /mqtt/**\n - /surveillance/dictionary/getDictList\n - /surveillance/surveillance/basic/**\n# - /surveillance/**\n # - /industrial/**\n - /brain/**\n - /camera/**\n - /feedback/api/uav/feedback/add #添加反馈\n - /feedback/api/uav/solution/**\n - /feedback/api/uav/dynamic/**\n - /process/process/start/procDef/get\n - /process/process/manage/get/user/list\n - /process/process/audit/procInst/node/detail\n - /process/process/power/getPermission\n - /process/process/audit/procInst/detail\n - /process/process/audit/modifyNodeAssignee\n - /process/process/manage/get/user/list/vague\n - /warehouse/**\n - /dpp/**\n - /hy-consumer/**\n - /hy-provider/**\n - /mission/api/uav/mission/surveillance/openAIProcess/**\n - /mission/api/uav/mission/surveillance/switchAIDetection/**\n - /mission/api/uav/mission/surveillance/trackSingleTarget/**\n - /mission/api/uav/mission/surveillance/setAIThreshold\n - /mission/api/uav/mission/surveillance/setAlarmPic\n - /admin/api/admin/arealimit/queryZydAreaLimitByJouav.do\n - /supervision/app/**\n - /mission/api/uav/mission/mission_info_list/force_delete\n - /tower/**\n - /industrial/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase\n - /industrial/api/uav/industrial/emergency/commSupport/getPlaneTrack\n - /supervision/airspace/front/** ##空域管理面向公众接口\n - /supervision/grid/drawGridOnMap\n - /supervision/iwhere/admin/obstacle/getObstacles\n - /supervision/data/datasearch/geometrysearch\n - /gis/gis/gisInfoList\n - /surveillance/surveillance/uav_command/go_homeforSimulator\n - /surveillance/surveillance/uav_command/landingForSimulator\n sign-ignores: #忽略签名\n - /*/sys/**\n - /*/oapi/**\n disable-access-log: false\n disable-authority: false\n use-sign-cache: true\n use-authority-cache: true\n # 注意,该单位为分钟\n cache-timeout: 5\n interface-encrypt: false\n check-tanent-time: false\n #仅用于integration环境\n mode: ${com.cmii.chinamobile.gateway.autoTest}\n\ncmii-uav-data-post-process:\n ribbon:\n NFLoadBalancerRuleClassName: com.cmii.chinamobile.gateway.utils.CmiiLoadBalanceRule\n\n','47522ed3b1b218a4738097735e6f3e36','2010-05-05 00:00:00','2024-10-21 18:10:36','nacos','10.244.179.192','U','',''),(3657,4201,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2010-05-05 00:00:00','2024-10-21 18:42:47','nacos','10.244.179.192','U','',''),(3657,4202,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.233\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','4ab0a9d942a44b15dd1fbb165e75eea6','2010-05-05 00:00:00','2024-10-21 18:52:39',NULL,'10.244.179.192','U','',''),(3657,4203,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2010-05-05 00:00:00','2024-10-21 19:54:01','nacos','10.244.179.192','U','',''),(3631,4204,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Ceg3s9@Ye2wX\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','80ea76b2492b6be553bcaa0c151c93f2','2010-05-05 00:00:00','2024-10-22 09:57:07','developer','192.168.102.40','U','',''),(3631,4205,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f253541a43b0cbdc3e55f5792ade388d','2010-05-05 00:00:00','2024-10-22 10:10:29','developer','192.168.102.40','U','',''),(3631,4206,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','d5c920f04fbaad474b2ef6ccb3920270','2010-05-05 00:00:00','2024-10-22 10:18:06','developer','192.168.102.40','U','',''),(3659,4207,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','c7f960e9278ed47162d19cb3678fad7b','2010-05-05 00:00:00','2024-10-22 11:21:47','developer','192.168.102.40','U','',''),(3659,4208,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','d5ed3bdd7b54daa4ce483e9f1c0b6c52','2010-05-05 00:00:00','2024-10-22 11:43:33','developer','192.168.102.40','U','',''),(3659,4209,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','b18d6fa714ac311edc2251f218c424e2','2010-05-05 00:00:00','2024-10-22 11:44:34','developer','192.168.102.40','U','',''),(3659,4210,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: guest\n password: guest\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','bbc7d475155e74acaf6a01f9d9e76830','2010-05-05 00:00:00','2024-10-22 11:46:46','developer','192.168.102.40','U','',''),(3132,4211,'cmii-backend-system.yml','5.6.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.227\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.227\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.227\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','06156b8c90041f8003708b788856c9ed','2010-05-05 00:00:00','2024-10-22 14:52:06','nacos','10.244.192.64','U','',''),(3657,4212,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.233\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: cyy&uav1122\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','fafa911795925c9c9ea01db32fcc16c2','2010-05-05 00:00:00','2024-10-22 14:54:54','nacos','10.244.192.64','U','',''),(3631,4213,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','f253541a43b0cbdc3e55f5792ade388d','2010-05-05 00:00:00','2024-10-22 16:06:03','developer','192.168.103.253','U','',''),(3631,4214,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','423564d7b6af19037e344ec5e5747e43','2010-05-05 00:00:00','2024-10-22 16:07:38','developer','192.168.103.253','U','',''),(3657,4215,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.233\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','3baf9b7f917472a24ceebd7795b324a6','2010-05-05 00:00:00','2024-10-22 17:13:28','nacos','10.244.192.64','U','',''),(3611,4216,'cmii-uav-iot-dispatcher.yml','6.0.0','','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)。最好设置的和摄像头海拔一致,边端收到的高度是该等高线海拔加相对地面高度\n coop_uav_takeoff_altitude: 0.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','93288d38baadc91fb1acf12edecabffe','2010-05-05 00:00:00','2024-10-23 09:29:23','developer','10.244.179.192','U','',''),(3611,4217,'cmii-uav-iot-dispatcher.yml','6.0.0','','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)。\n # 1. 最好设置的和摄像头海拔一致,边端收到的高度是该等高线海拔加相对地面高度。比如摄像头配置了1000m海拔和20m相对高度,那么下面的值应该填成1000m\n coop_uav_takeoff_altitude: 0.0\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','ce9c11016511c65993e3587e7a105ad0','2010-05-05 00:00:00','2024-10-23 09:35:19','developer','10.244.179.192','U','',''),(3611,4218,'cmii-uav-iot-dispatcher.yml','6.0.0','','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)。\n # 1. 最好设置的和摄像头海拔一致,边端收到的高度是该等高线海拔加相对地面高度。比如摄像头配置了1000m海拔和20m相对高度,那么下面的值应该填成1000m\n coop_uav_takeoff_altitude: 36.5\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','b983e7ec686f3e0d8bae6cb7f91e0aed','2010-05-05 00:00:00','2024-10-23 09:35:42','developer','10.244.179.192','U','',''),(3631,4219,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: false\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','2dd665d0c1292a5c09d2ac6bcfc28709','2010-05-05 00:00:00','2024-10-23 10:04:48','developer','192.168.102.51','U','',''),(3611,4220,'cmii-uav-iot-dispatcher.yml','6.0.0','','spring:\n datasource:\n url: cmii-mysql:13306/uav_iot_dispatcher\n username: k8s_admin\n password: Uc@bkTCPuD4g\n redis:\n tracking: # 额外信息\n status: tracking:heartbeat:{device_id}:realtime\n petrack: tracking:petrack:{bs_id}\nmqtt:\n qos: 0\n keepAliveInterval: 20\n topic: # 额外\n default: iot-dispatcher/system_topic\niotEventDriver: # 额外\n topic:\n dispatcher: iot-dispatcher/{project_id}-{device_id}\n reporting: iot-reporting/{project_id}-{device_id}\n event:\n beginTracking: BeginTracking\n endTracking: EndTracking\n beginStreaming: BeginStreaming\n endStreaming: EndStreaming\n initializeServo: InitializeServo\ntrajectory:\n # 针对合作类飞机的跟踪策略:基于海拔或相对高度高度跟踪,填 altitude 或 height\n policy: height\n # 当且仅当policy为height时,下面配置生效。表示合作类飞机起飞点的海拔(米)。\n # 1. 最好设置的和摄像头海拔一致,边端收到的高度是该等高线海拔加相对地面高度。比如摄像头配置了1000m海拔和20m相对高度,那么下面的值应该填成1000m\n coop_uav_takeoff_altitude: 36.5\n # 以当前轨迹点为基准,最大的摄像头搜索范围(米)\n max_camera_search_range: 1200.0\n anchor:\n speed: 60\n distance: 100\nclient:\n live:\n endpoint: http://helm-live-op-svc-v2:8080\n','b983e7ec686f3e0d8bae6cb7f91e0aed','2010-05-05 00:00:00','2024-10-23 10:51:16','developer','10.244.179.192','U','',''),(3631,4221,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','bf43b7bffd1df8bf5d1579d6529b80d9','2010-05-05 00:00:00','2024-10-23 11:45:15','developer','192.168.102.51','U','',''),(3631,4222,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','02c94ffc624c2f38532481a3c61bc933','2010-05-05 00:00:00','2024-10-23 12:47:55','developer','192.168.102.51','U','',''),(3660,4223,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 200000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','898bd59c493168844d5c08ba16a86a0a','2010-05-05 00:00:00','2024-10-23 15:12:33','developer','10.244.192.64','U','',''),(3660,4224,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 50000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','fe1d6b2786f942203b0182509f672188','2010-05-05 00:00:00','2024-10-23 15:12:53','developer','10.244.192.64','U','',''),(3660,4225,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 200\n max-user-data-bytes-per-second: 200100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','03c26b51e0c2d51d482c4c6227c7480b','2010-05-05 00:00:00','2024-10-23 15:13:11','developer','10.244.192.64','U','',''),(3660,4226,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','1eaa2cdd9c05e6b81196f0caa0f4a408','2010-05-05 00:00:00','2024-10-23 15:14:03','developer','10.244.192.64','U','',''),(3660,4227,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','b9ba02b6f937d992101740003dd281f1','2010-05-05 00:00:00','2024-10-23 15:14:32','developer','10.244.192.64','U','',''),(3660,4228,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 9900\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','72d961ba29ddfa8c320b35f5884864a9','2010-05-05 00:00:00','2024-10-23 15:40:44','developer','10.244.192.64','U','',''),(3658,4229,'cmii-uas-gateway.yml','6.0.0','','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','a29dcbddb5509ab006947f0ec5f03b5b','2010-05-05 00:00:00','2024-10-24 11:01:51','developer','192.168.102.39','U','',''),(3631,4230,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','7bb42a2af846a5d71f6dc0e85aaa4654','2010-05-05 00:00:00','2024-10-24 14:43:40','developer','192.168.102.39','U','',''),(3631,4231,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: 1315\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','4a32390a2776a18d100325aeee1bf680','2010-05-05 00:00:00','2024-10-24 14:57:03','developer','192.168.102.39','U','',''),(3660,4232,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 13000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','3ae4123886f3dfe76f4437d52cdd2c83','2010-05-05 00:00:00','2024-10-28 10:21:42','developer','10.244.192.64','U','',''),(3660,4233,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','4029182be4478ee4286beb862978433a','2010-05-05 00:00:00','2024-10-28 10:23:10','developer','10.244.192.64','U','',''),(3660,4234,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','02c306f60b15abd0eb75c4a200aa675b','2010-05-05 00:00:00','2024-10-28 10:23:44','developer','10.244.192.64','U','',''),(3660,4235,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 7300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','a5d4670ebf7b971b55f501a709f16dea','2010-05-05 00:00:00','2024-10-28 11:00:05','developer','10.244.192.64','U','',''),(3631,4236,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n mock-uas-id: \'UAS00018318\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: 10001\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','7e34eea8d83e4babd85f141d8bb94a34','2010-05-05 00:00:00','2024-10-29 16:24:39','developer','192.168.102.41','U','',''),(3631,4237,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n # mock-uas-id: \'UAS00018318\'\n mock-uas-id: \'UAS00020836\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00002\n padding-lon: 0.00003\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: \'CYY001\'\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','c4e71d816760bdf63a2c83f86b67a616','2010-05-05 00:00:00','2024-10-29 16:26:45','developer','192.168.102.41','U','',''),(3631,4238,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n # mock-uas-id: \'UAS00018318\'\n mock-uas-id: \'UAS00020836\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00000\n padding-lon: 0.00000\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: \'CYY001\'\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','71b75eeadaa05877d21c8824cb17aa6a','2010-05-05 00:00:00','2024-10-31 10:46:20','developer','192.168.102.234','U','',''),(3631,4239,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n # mock-uas-id: \'UAS00018318\'\n mock-uas-id: \'UAS00020836\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00000\n padding-lon: 0.00000\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: \'CYY001\'\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9394861578962,22.51054847202285,0 113.9407063705392,22.50982107208502,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','7775a74f2d12a166b1a93d14bf9ff8a7','2010-05-05 00:00:00','2024-10-31 10:46:20','developer','192.168.102.234','U','',''),(3737,4240,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\n filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9488595287688,22.52384291456306,0 113.9443210259257,22.52420695695345,0 113.9429224519894,22.5176786481871,0 113.9411879761963,22.51570157396214,0 113.9406755708308,22.51388881177831,0 113.939170775994,22.51322243808533,0 113.9320200268305,22.51328025648795,0 113.9319888389936,22.51268834861307,0 113.9389810139541,22.51265992677425,0 113.9390607382173,22.51040665856385,0 113.9404247598083,22.50920799769292,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.94641398618,22.50979732814141,0 113.947723096712,22.51513156505693,0 113.9488595287688,22.52384291456306,0\'\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','a939a82acdc19099b92841737bb7228f','2010-05-05 00:00:00','2024-10-31 10:46:40','developer','192.168.102.234','U','',''),(3660,4241,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','02c306f60b15abd0eb75c4a200aa675b','2010-05-05 00:00:00','2024-11-01 09:05:47','developer','10.244.192.64','U','',''),(3660,4242,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n #杭州华为任务\n - sf-id: 553725952\n task-id: 884001\n - sf-id: 553725952\n task-id: 64090602\n #广东深圳华为:(保利香雪山)\n # - sf-id: 12727754\n # task-id: 12653338\n - sf-id: 553725952\n task-id: 5151\n - sf-id: 553725952\n task-id: 5752\n - sf-id: 553725952\n task-id: 640906101\n #杭州萧山: \n - sf-id: 553725952\n task-id: 914\n - sf-id: 553725952\n task-id: 915 \n #杭州余杭仓前杭师大体育馆 \n - sf-id: 553725952\n task-id: 916\n #杭州萧山佳境天城西\n - sf-id: 553725952\n task-id: 917\n #浙江温州苍南: \n - sf-id: 553725952\n task-id: 921 \n #浙江-东钱湖: \n - sf-id: 553725952\n task-id: 5128\n #浙江-宁波船厂:宁波咸祥:\n - sf-id: 553725952\n task-id: 5129\n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 6000 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','131ccb1a1537692c636c19f1c0b314d8','2010-05-05 00:00:00','2024-11-01 13:57:40','developer','10.244.192.64','U','',''),(3660,4243,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 0\n task-id: 0\n # #杭州华为任务\n # - sf-id: 553725952\n # task-id: 884001\n # - sf-id: 553725952\n # task-id: 64090602\n # #广东深圳华为:(保利香雪山)\n # # - sf-id: 12727754\n # # task-id: 12653338\n # - sf-id: 553725952\n # task-id: 5151\n # - sf-id: 553725952\n # task-id: 5752\n # - sf-id: 553725952\n # task-id: 640906101\n # #杭州萧山: \n # - sf-id: 553725952\n # task-id: 914\n # - sf-id: 553725952\n # task-id: 915 \n # #杭州余杭仓前杭师大体育馆 \n # - sf-id: 553725952\n # task-id: 916\n # #杭州萧山佳境天城西\n # - sf-id: 553725952\n # task-id: 917\n # #浙江温州苍南: \n # - sf-id: 553725952\n # task-id: 921 \n # #浙江-东钱湖: \n # - sf-id: 553725952\n # task-id: 5128\n # #浙江-宁波船厂:宁波咸祥:\n # - sf-id: 553725952\n # task-id: 5129\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 6000 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','ad156d6aa6b636070e95e841d09703b2','2010-05-05 00:00:00','2024-11-01 13:59:14','developer','10.244.192.64','U','',''),(3638,4244,'cmii-uav-oauth.yml','6.0.0','','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: true\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','43fcf7b07e7e2d076115f399f289dbff','2010-05-05 00:00:00','2024-11-02 11:24:33','nacos','10.244.179.192','U','',''),(3638,4245,'cmii-uav-oauth.yml','6.0.0','','bizName: 用户认证平台\ndbSchema: uav_oauth\nspring:\n security:\n oauth2:\n kicked-support: false\n img-code-support: false\n session-timeout: 3600\n #是否开启账户锁定\n login-error-limit: true\n #登陆失败限制次数,此为运营配置,必须大于0,开启锁定后有效\n login-error-limit-count: 5\n #账户锁定时间,单位秒,此为运营人员配置,必须大于0,开启锁定后有效\n login-error-limit-time: 300\n # img-code-ignore-for-ips: 192.168.102.190,10.244.48.192 # @Deprecated 下个版本删除 临时开放 @秦正\n # img-code-ignore-for-accounts: zhangwei # @Deprecated 下个版本删除 临时开放 @秦正\n ignore-platform-codes:\n - pilot\n - integrationpilot\n platforms-for-visitor: \'\'\n common-client-id: APP_Jc8i2wOQ1t73QEJS\n common-client-secret: kxemTYIVV7vhZ7JmfjkEBHZ2JWiRdy\n# default-user-id: 549 # 生产环境\n default-user-id: 499 # demo环境\n zysi:\n server: https://oneoffice.hecmcc.com:961\n service-url: https://www.demo.uavcmlc.com:18000/pangu/#/zysicallback\n user-id: 508\n user-mock: false\n redisson:\n multiple-server-config:\n database: 2\nribbon:\n eager-load:\n enabled: true\n clients: cmii-uav-developer,cmii-uav-user','001bce0538230da56b376071e78cc774','2010-05-05 00:00:00','2024-11-02 11:47:30','nacos','10.244.179.192','U','',''),(3636,4246,'cmii-uav-mqtthandler.yml','6.0.0','','bizName: MQTT服务\nfeign:\n hystrix:\n enabled: false\n# AK\nApiKey: 983336ea87a04d1c8756657a0f03553e\n#openApi访问地址\nbasic: ${com.cmii.chinamobile.ttaviation.url}\nsubscribeUrl: ${com.cmii.chinamobile.ttaviation.subscribeUrl}\ntiantu:\n uas: UAS88888933\n sn: \'00800202066603\'\n checkInterval: 5000\ndji:\n pushUrl: http://test.dji.push.com # @Deprecated 下个版本删除。此配置表示gdr转码,下个版本通过rtmp直接推流\n pushGDRUrl: xxxxxx # @Deprecated 同上\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: info\nmqtt:\n limit:\n bridge-radar-frequency: 0\n ne-frequency: 1000\n bridgeSFFrequency: 0\n send-bridge: false\ncom:\n cmii:\n chinamobile:\n eventbus:\n broadcast-events:\n - MQTT_DOWNLOADFILE_NOTICE\n','0b4ad7606fd92323a19dcf3c556c5a36','2010-05-05 00:00:00','2024-11-04 11:36:34','developer','192.168.103.100','U','',''),(3659,4247,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','74c97eb5aaeaa9497e93dd8fbf75824c','2010-05-05 00:00:00','2024-11-04 12:40:22','developer','10.244.179.192','U','',''),(3659,4248,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','be8e64daa7195c39690ac6771640722b','2010-05-05 00:00:00','2024-11-04 16:10:58','nacos','10.244.179.192','U','',''),(3659,4249,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: debug\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','b24a801154a9e6864f74436195cd9ba8','2010-05-05 00:00:00','2024-11-04 16:12:18','nacos','10.244.179.192','U','',''),(3631,4250,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n # mock-uas-id: \'UAS00018318\'\n mock-uas-id: \'UAS00020836\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00000\n padding-lon: 0.00000\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: \'CYY001\'\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9394861578962,22.51054847202285,0 113.9407063705392,22.50982107208502,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','7775a74f2d12a166b1a93d14bf9ff8a7','2010-05-05 00:00:00','2024-11-04 21:07:52','developer','192.168.103.5','U','',''),(3737,4251,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\n filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9394861578962,22.51054847202285,0 113.9407063705392,22.50982107208502,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','81a75fee80718efe5227b8c3af2984e9','2010-05-05 00:00:00','2024-11-04 21:09:21','developer','192.168.103.5','U','',''),(3737,4252,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\n filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9394861578962,22.51054847202285,0 113.9401664375758,22.50935716350814,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','0e4a5f796822373bcf3085e4a8fb3124','2010-05-05 00:00:00','2024-11-04 21:10:46','developer','192.168.103.5','U','',''),(3631,4253,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n # mock-uas-id: \'UAS00018318\'\n mock-uas-id: \'UAS00020836\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00000\n padding-lon: 0.00000\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: \'CYY001\'\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9394861578962,22.51054847202285,0 113.9401664375758,22.50935716350814,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','0fdd643d23184ebb560b32e63c9dacdb','2010-05-05 00:00:00','2024-11-04 21:11:23','developer','192.168.103.5','U','',''),(3660,4254,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 0\n task-id: 0\n # #杭州华为任务\n # - sf-id: 553725952\n # task-id: 884001\n # - sf-id: 553725952\n # task-id: 64090602\n # #广东深圳华为:(保利香雪山)\n # # - sf-id: 12727754\n # # task-id: 12653338\n # - sf-id: 553725952\n # task-id: 5151\n # - sf-id: 553725952\n # task-id: 5752\n # - sf-id: 553725952\n # task-id: 640906101\n # #杭州萧山: \n # - sf-id: 553725952\n # task-id: 914\n # - sf-id: 553725952\n # task-id: 915 \n # #杭州余杭仓前杭师大体育馆 \n # - sf-id: 553725952\n # task-id: 916\n # #杭州萧山佳境天城西\n # - sf-id: 553725952\n # task-id: 917\n # #浙江温州苍南: \n # - sf-id: 553725952\n # task-id: 921 \n # #浙江-东钱湖: \n # - sf-id: 553725952\n # task-id: 5128\n # #浙江-宁波船厂:宁波咸祥:\n # - sf-id: 553725952\n # task-id: 5129\n # #浙江-舟山:\n # - sf-id: 553725952\n # task-id: 10410\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 6000 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','63d2eb7ad425877fa787bb4aabdd281b','2010-05-05 00:00:00','2024-11-04 22:10:58','developer','10.244.192.64','U','',''),(3660,4255,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 0\n task-id: 0\n # #杭州华为任务\n # - sf-id: 553725952\n # task-id: 884001\n # - sf-id: 553725952\n # task-id: 64090602\n # #广东深圳华为:(保利香雪山)\n # # - sf-id: 12727754\n # # task-id: 12653338\n # - sf-id: 553725952\n # task-id: 5151\n # - sf-id: 553725952\n # task-id: 5752\n # - sf-id: 553725952\n # task-id: 640906101\n # #杭州萧山: \n # - sf-id: 553725952\n # task-id: 914\n # - sf-id: 553725952\n # task-id: 915 \n # #杭州余杭仓前杭师大体育馆 \n # - sf-id: 553725952\n # task-id: 916\n # #杭州萧山佳境天城西\n # - sf-id: 553725952\n # task-id: 917\n # #浙江温州苍南: \n # - sf-id: 553725952\n # task-id: 921 \n # #浙江-东钱湖: \n # - sf-id: 553725952\n # task-id: 5128\n # #浙江-宁波船厂:宁波咸祥:\n # - sf-id: 553725952\n # task-id: 5129\n # #浙江-舟山:\n # - sf-id: 553725952\n # task-id: 10410\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 19100 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','85564dd66b3ee9f89d9d1406b8f6cd8f','2010-05-05 00:00:00','2024-11-04 22:11:28','developer','10.244.192.64','U','',''),(3631,4256,'cmii-uav-industrial-portfolio.yml','6.0.0','','bizName: 行业应用项目包--[定制化需求]\ndbSchema: uav_industrial_portfolio\nspring:\n data:\n mongodb:\n host: helm-uas-mongo\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\ncom:\n cmii:\n chinamobile:\n yihang:\n domain: ${com.cmii.chinamobile.yihang.domainBase}\n device:\n url: ${com.cmii.chinamobile.yihang.url}\n clientName: medical_logistics\n #userName: 98677f1b-8b94-4000-a5a4-138fe55d8bd4\n userName: medicalDelivery\n password: \'@MedicalDelivery2021\'\n cabinet:\n #在线的智能柜编码\n code:\n A: V00003\n B: V00004\n # 在线智能柜图片地址\n img:\n A: ${com.cmii.chinamobile.yihang.img.A}\n B: ${com.cmii.chinamobile.yihang.img.B}\n eventbus:\n broadcast-events:\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanChange\n - com.cmii.chinamobile.uav.civilMilitary:areaPlanTimeRoll\n - industrial.detection.data:GONGAN\n - industrial.detection.photo.data:GONGAN\n civil-military:\n mock-civil-military: true\n # mock-uas-id: \'UAS00018318\'\n mock-uas-id: \'UAS00020836\'\n min-lat: 30.231673\n max-lat: 30.235383\n min-lng: 120.230950\n max-lng: 120.233870\n padding-lat: 0.00000\n padding-lon: 0.00000\n tcp-server-host: 39.108.139.115\n tcp-server-port: 9100\n share-data: false\n use-new-radar: false\n track-warning-fast: false\n update-bts-frequency: -1\n send-ws-text: false\n check-detection: true\n detection-exclude-radar-ids: \'1315\'\n lae:\n radar-id: \'CYY001\'\n detect-uav-id: UAS00018318\n companies: 394,178,2,431,228,232,453,477,448,411,115,244,556\n deny-flying-companies: 178,2\n only-show-in-advanced5g-area-uav: UAS00020533\n device-control-user-ids: 414,1549,1568\n # area-expands-distance: 5\n # area-expands-lon: 0.00005\n area-expands-distance: 0\n area-expands-lon: 0\n #默认跟踪的无人机UASID,如果配置为空,则使用前端传的数据\n default-uas-id: UAS00018319\n # project-i-d: XMYS\n # default-uas-id: UAS00018371\n project-i-d: ZGYS\n #需要延迟的无人机id集合\n delay-uas-ids: UAS00011575,UAS00018445,UAS00018371,UAS00018370\n #RTK数据延迟推送时间,默认0,或者小于0,不延迟,单位:毫秒\n delay-time: 7000\n hfyd:\n device-data-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceFindInfo\'\n device-status-url: \'https://61.191.199.84:21673/api/external/antiDeviceInfo/report/anti/deviceWorkInfo\'\n source-bts-list: 1508482123,1508482221,1508482321,1509526123,1509526221,570503168,57050316802,57050316803,57050316804,57050316805,57050316806\n enable: true\n share:\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'00000077\'\n - \'00000025\'\n - \'00000156\'\n - \'00000026\'\n - \'00000061\'\n - \'1058808922\'\n - \'1055906322\'\n - \'1055906323\'\n - \'123\'\n #华为广州:分享给图南\n - \'Sf12727754Task12653338\'\n - \'12727754\'\n #中兴广州:分享给图南\n - \'Sf1102Task925051\'\n # 宁波咸祥 华为基站,分享给新奇点智能科技集团有限公司\n - \'Sf553725952Task5129\'\n - host: tcp://183.62.69.35:1883\n username: MX0055-T00006fb7\n password: 9a48695c1388e89507cabb78adde1fa3\n qos: 0\n enable: true\n radar-ids:\n #深圳中兴:分享给深城交\n - \'Sf1102Task92501\'\n dqh-mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n - host: tcp://115.231.59.152:31007\n username: nbyd\n password: \'12345678\'\n qos: 0\n enable: true\n radar-ids:\n - \'Sf553725952Task5128\'\n - \'Sf553725952Task5128s2\'\n - \'Sf553725952Task5128s3\'\n - \'Sf553725952Task5128s4\'\n upds:\n - ip: 1.45.28.241\n port: 19002\n enable: true\n source-port: 19002\n radar-ids:\n - \'00000117\'\n - \'00000119\'\n - \'00000118\'\n - \'00000114\'\n - \'00000115\'\n - \'00000111\'\n - \'00000120\'\n - \'00000121\'\n - \'00000122\'\n - \'00000035\'\n - \'00000116\'\n - \'00000112\'\n - \'00000113\'\n - \'184631300\'\n - \'Sf184631300Task12653338\'\n - \'Sf184631300Task12653339\'\n - \'Sf184631300Task12653340\'\n - \'Sf184631300Task12653341\'\n - \'Sf184631300Task12653342\'\n - \'Sf184631300Task12653343\'\n - \'Sf184631300Task12653344\'\n - \'Sf184631300Task12653345\'\n - \'Sf184631300Task12653346\'\n - \'Sf184631300Task12653347\'\n - \'Sf184631300Task12653348\'\n - \'Sf184631300Task12653349\'\n - \'Sf184631300Task12653350\'\n - \'Sf184631300Task12653351\'\n - \'Sf184631300Task12653352\'\n - \'Sf184631300Task12653353\'\n - \'Sf184631300Task12653354\'\n - \'Sf184631300Task12653355\'\n\n idea:\n enable: true\n host: ssl://mqtt-dev.silassz.com:1883\n username: cmcc-sz\n password: Hks84@09kdem\n qos: 0\n radar-ids:\n # - \'127265611\'\n # - \'127266081\'\n # - \'127266091\'\n - \'Sf1102Task92501\'\n share-filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9392632576454,22.51082064788392,0 113.9402619756469,22.50951374325599,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\n shareTarget: \n - shanghai\n - hefei\n radcam:\n btsToCamMap:\n \"11538531121\": 123\n \"11538531123\": 123\n \"11538531221\": 123\n \"11538531321\": 123\n sourceBtsList: \n - \"11538531121\"\n - \"11538531123\"\n - \"11538531221\"\n - \"11538531321\"\n sourceTarget:\n camLoc: 120.2236898,30.2383471,21.0\n angleRange: -90,90\n toleranceThreshold: 10\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n report-share: true\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a226073066: webrtc://live.uavcmlc.com:443/live/DEV02002496\nlogging:\n level:\n com.cmii.chinamobile.industrial.portfolio.config.mqtt: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.DataPushScheduel: info\n com.cmii.chinamobile.mqtthandler.service.impl.DetectionMessageServiceImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataMqttSender: info \n # com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.CivilMilitaryCheckFlyRealtimeZoneSubscriber: debug\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarUdpHandler: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.huaweiRadar.handler.RadarAfTcpDecoderAdapter: warn\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningRunner: error\n com.cmii.chinamobile.industrial.portfolio.service.impl.ConflictWarningContext: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.impl.CivilMilitaryAlarmServiceImpl: error\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.RadarBizDeviceReceiveSubscriber: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.IdeaDataSenderStrategy: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.AbstractSenseMinDataUdpSender: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.RadarServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.service.detection.impl.AOAServiceImpl: info\n com.cmii.chinamobile.industrial.portfolio.websocket.Advanced5GDataPushWebsocket: info\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.event.DetectDataMockFromFlyDataReceiveSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.service.universalDetectionAndCounter.event.DeviceWorkChangeSubscriber: info\n com.cmii.chinamobile.industrial.portfolio.websocket.UniversalDeviceWSServer: OFF\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.Advanced5gDeviceDataShareHandler: info\n com.cmii.chinamobile.industrial.portfolio.config.mqtt.handler.TdoaDeviceDataShareHandler: INFO\n com.cmii.chinamobile.industrial.portfolio.config.device.BridgeDeviceRunnerContainer: INFO\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.dataShare.impl.MqttCallbackImpl: warn\n com.cmii.chinamobile.industrial.portfolio.service.IntegratedSensingAndCommunication.schedule.ISDetectionInfoJobHandler: warn\n\nribbon:\n ConnectTimeout: 10000 # 连接超时时间(ms)\n ReadTimeout: 10000 # 通信超时时间(ms)\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 10000\noauth:\n police:\n grantType: authorization_code\n clientId: APP_JUSEMc7afyWXxvE7\n clientSecret: 2QTFZouJNhMYDwogLDCNUjivAWtwUv\n integratedsensing:\n grantType: authorization_code\n clientId: APP_FDHW2VLVDWPnnOCy\n clientSecret: R8PfcXU5xvCXfE3USeZ90Tbte6mZj3\n emergency:\n grantType: authorization_code\n clientId: APP_aGsTAY1uMZrpKdfk\n clientSecret: FFkDqqDLTIBwct6xHGOtQOEU6F8qM0\n medicallogistics:\n grantType: authorization_code\n clientId: APP_PvdfRRRBPL8xbIwl\n clientSecret: F6sxMBBiB6ILu1seYhIPrMYEVUFpy2\nstation:\n mqtt:\n host: tcp://192.168.36.214:1883\n username: emerlingyu\n password: Em1101@WGFe\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://192.168.36.214:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: station_publish_02\n #消息订阅者clientId\n subscribeClientId: station_subscribe_02','5274e31e275979f9a75e8ed644d5829f','2010-05-05 00:00:00','2024-11-06 09:14:27','developer','192.168.102.178','U','',''),(3737,4257,'cmii-uav-advanced5g.yml','6.0.0','','bizName: 通感一体化系统\ndbSchema: uav_industrial_portfolio\nspring:\n cache:\n type: none\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\nknife4j:\n enable: true\n basic:\n enable: true\n username: admin\n password: Yunying123\nadvanced5g:\n send-all-data: false\n device-control-user-ids: 414\n calculate-area-type: true\n calculate-tracking: true\n calculate-alarm-camera: false\n calculate-area-plan-refresh: false\n filter:\n enabled: true\n task-filters:\n \'Sf1102Task92501\':\n enabled: true\n access-areas:\n - \'113.9512041025142,22.52315161403556,0 113.9454553854807,22.52376469743208,0 113.9441554735381,22.51733900541257,0 113.9424373532521,22.51612286880821,0 113.9410024253898,22.51419900761115,0 113.9400246181128,22.51332888279351,0 113.9386169494329,22.51380738299169,0 113.9367103211707,22.51418914554504,0 113.93287895648,22.51378784554091,0 113.9329471321592,22.51254019869863,0 113.9393145631865,22.51233276486502,0 113.9392632576454,22.51082064788392,0 113.9402619756469,22.50951374325599,0 113.9418316575008,22.50927769405895,0 113.9434539477957,22.50958308060848,0 113.9444938629723,22.50989356851763,0 113.9494017577807,22.51007467588934,0 113.9503563852446,22.5150811851489,0 113.9512041025142,22.52315161403556,0\'\nlogging:\n level:\n com.cmii.chinamobile.uav.advanced5g.websocket.SenseUniversalDetectionDataWSServer: info','facf2e4e8f74096efac0d3f4576286f3','2010-05-05 00:00:00','2024-11-06 09:14:42','developer','192.168.102.178','U','',''),(3660,4258,'cmii-uav-sense-adapter.yml','6.0.0','','bizName: 通感AS-e\ndbSchema: sense_adapter\nsense:\n data:\n target:\n config-type: property\n mqtts:\n - host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 0\n#sense:\n af-config:\n control-plane:\n # 用于设置SF连接AF时,AF是否校验SF_ID。(默认不校验)(设置后直接生效, 无需重启服务)\n check-sf-id-and-vender_name: false\n control-port: 8010\n af-id : 100860001\n af-vender_name: cmii-cd\n\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-control-packets-per-second: 1000\n max-control-bytes-per-second: 10480000\n api:\n # 调用API接口的时候,是否检查 Token: (设置后直接生效, 无需重启服务)\n check-token: false\n user-plane:\n user-data-port: 8011\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n dtls:\n #UDP SERVER的绑定IP:\n server-ip: 0.0.0.0\n server-port: 8013\n #-1 表示不需要清理dtls会话; 单位:毫秒;\n idle-timeout: -1\n sf-id-convertion:\n # 更改后的基站ID:SfxxxTaskyyy, xxx: 表示SF ID, yyy: 表示 task ID\n # 优先级最高; (这里出现的SF ID, 以这里的信息为准,仅针对该SF的某些task id进行处理;)\n #华为杭州SF:553725952\n sf-id-and-task-ids:\n - sf-id: 0\n task-id: 0\n # #杭州华为任务\n # - sf-id: 553725952\n # task-id: 884001\n # - sf-id: 553725952\n # task-id: 64090602\n # #广东深圳华为:(保利香雪山)\n # # - sf-id: 12727754\n # # task-id: 12653338\n # - sf-id: 553725952\n # task-id: 5151\n # - sf-id: 553725952\n # task-id: 5752\n # - sf-id: 553725952\n # task-id: 640906101\n # #杭州萧山: \n # - sf-id: 553725952\n # task-id: 914\n # - sf-id: 553725952\n # task-id: 915 \n # #杭州余杭仓前杭师大体育馆 \n # - sf-id: 553725952\n # task-id: 916\n # #杭州萧山佳境天城西\n # - sf-id: 553725952\n # task-id: 917\n # #浙江温州苍南: \n # - sf-id: 553725952\n # task-id: 921 \n # #浙江-东钱湖: \n # - sf-id: 553725952\n # task-id: 5128\n # #浙江-宁波船厂:宁波咸祥:\n # - sf-id: 553725952\n # task-id: 5129\n # #浙江-舟山:\n # - sf-id: 553725952\n # task-id: 10410\n \n \n # 华为景德镇SF 36798,中兴深圳SF,甘肃华为SF:1040265216,厦门华为SF:587345920 用半角逗号分隔, 无空格:例如: 1001,1002,1003\n need-process-sf-ids: \"\"\n\n # 如果上面两个条件均不符合,如果SF ID不在下面列表中, 当做新的SF,会按照SF+TASK ID方式转换;\n # 截止到 8-3日; 在线的sf id如下:\n old-sf-ids: \"1315,8008,537604096,9527\"\n #设置后马上生效; 也可通过swagger接口设置(实时生效, 但改了nacos,或者重启后,失效);\n sf-rate-limit:\n #华为浙江:\n - sf-id: 553725952\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 100000\n #华为辽宁有海域:\n - sf-id: 352399360\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000\n #中兴辽宁有海域:\n - sf-id: 352403460\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 100\n max-user-data-bytes-per-second: 5000 \n #江苏中兴海域:\n - sf-id: 1315\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 57300\n #湖南张家界中兴:\n - sf-id: 4308410\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 1000\n max-user-data-bytes-per-second: 191000\n #广东中兴:\n - sf-id: 1102\n max-control-packets-per-second: 100\n max-control-bytes-per-second: 10240000\n max-user-data-packets-per-second: 300\n max-user-data-bytes-per-second: 45000 \n \n \n\nlicense:\n status: \'off\'\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.sense.handler.RadarUdpHandler: error\n com.cmii.chinamobile.sense.handler.RadarAfTcpDecoderAdapter: error\n \n ','3297388b1fd9b9162310d5064a2ef0bf','2010-05-05 00:00:00','2024-11-08 10:35:02','developer','10.244.192.64','U','',''),(0,4259,'cmii-backend-system.yml','6.1.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.233\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\n single:\n host: tcp://124.70.192.237:1883\n hosts: tcp://124.70.192.237:1883\n #username: cmlc\n #password: 4YPk*DS%+5\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','930cb7082da56f1432737fee1dd6e9a1','2010-05-05 00:00:00','2024-11-08 16:07:19',NULL,'10.244.179.192','I','',''),(3659,4260,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','be8e64daa7195c39690ac6771640722b','2010-05-05 00:00:00','2024-11-09 17:34:12','developer','192.168.103.141','U','',''),(3659,4261,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','6ad6cd1fb9e25a6b4f804e09f05c39be','2010-05-05 00:00:00','2024-11-09 18:07:46','developer','192.168.103.141','U','',''),(3659,4262,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \nmqtt:\n single:\n host: \'tcp://39.103.139.174:3883\'\n hosts: \'tcp://39.103.139.174:3883\'\n username: \'mqtthf\'\n password: \'M4df2234f$2cd2111\'\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','e9c34363dcce759331993cd2dacaf86c','2010-05-05 00:00:00','2024-11-09 18:15:11','developer','192.168.103.141','U','',''),(3659,4263,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \nmqtt:\n single:\n host: \'tcp://39.103.139.174:3883\'\n hosts: \'tcp://39.103.139.174:3883\'\n username: \'mqtthf\'\n password: \'M4df2234f$2cd2111\'\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\n deviceType: 5ga\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','9eaad29c8b4d6699a28e41f703ebdcb5','2010-05-05 00:00:00','2024-11-09 18:31:18','developer','192.168.103.141','U','',''),(3657,4264,'cmii-backend-system.yml','6.0.0','','# !! 只能基础能力组修改此文件 !! @秦正\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: ${apiDeclaration:uav}\n version: 3.2.4 # 随着版本迭代变化\n root: https://www.demo.uavcmlc.com\n default-path: /pangu\n is-domain-name-support: true\n jdbc:\n url: jdbc:mysql://cmii-mysql:13306\n params: allowMultiQueries=true&useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8 # &nullCatalogMeansCurrent=true\n username: k8s_admin\n password: Uc@bkTCPuD4g\n omoc: # 一机一码平台(@傅军),仅dev,integration。其它环境不上此应用\n url: http://123.56.14.31:9334\n caiyun: # 彩云api(@唐志梁)\n token: xDOIZZRe66hXl6bc\n host: https://api.caiyunapi.com\n gaode: # 高德(@唐志梁)\n key: 9dd3daa175f31d6bdd462f11474955a3\n avicatm-cloud: # 中航空管平台(@罗文)\n url: http://tanglei.top:8182 # 仅生产环境修改为:https://api.avicatm-cloud.com/api/openApplyAirspace\n terra-cloud: # 二三维快拼(@罗文),所有环境均为这个地址\n url: https://stag-dsapi.dbeta.me/terra-gpu/terra-rescon-be\n secret: Y9mvZc8SjZSsAcGuAkmkYUgdCHQ8xpqX\n localUrl: http://183.220.196.113:38100;http://183.220.196.113:38200 # 不同环境这个地址不一样,3.2.0新增(@罗文)\n signal-simulation: # 信号仿真(@李航宇)。所有环境均为这个地址\n url: 114.242.26.182\n port: 29008\n ak: cyy123\n yihang: # 亿航API(@龙卫)。所有环境均为这个地址\n domainBase: 171.109.118.191:18080\n url: http://171.109.118.191:18080/dispatcher\n img: # 在线智能柜图片地址。不同环境配置不同\n A: hangar/image/a4118cd137ee4217ae63ae8a218ae3da/智能柜A.png\n B: hangar/image/856de88e14ff453eafb1ddd7ddd11207/智能柜B.png\n video-merge: # 视频合成能力(@胡宝顺),其中callback接口由 @李志杨 维护\n url: http://192.168.35.30:8193/client/video/noticeMerge # 仅研发测试域,生产环境需要重新部署!\n srcId: 1323096648758464513\n callbackUrl: http://cmii-uav-cloud-live.uavcloud-demo.io:30500/client/video/mergeComplete # 视频合成server回调live的地址\n closePlusVideo: false\n cmii-operation: # 运维支撑管理系统(@李志杨).所有环境均为这个地址\n url: http://192.168.92.132/test-api/flow/push/ambulance\n mas: # 云MAS业务平台 (@李志杨) 提供短信发送通道。所有环境均为这个地址\n url: http://112.35.1.155:1992/sms/tmpsubmit\n apId: notice\n secretKey: notice@123\n sign: ynYl2Vpl7\n ttaviation: # 天途(@任一珂)\n url: http://cloud.ttaviation.com:20043/ # 固定地址,每个环境都使用该地址。openApi访问地址\n subscribeUrl: https://dev-mqtt.demo.uavcmlc.com:18000/api/mqtt # 不固定地址,每个环境不一样,为临时暴露到公网的地址。天途回调地址。\n minio: # minio (@周金福)\n url: https://oss.demo.uavcmlc.com # 不同环境需要修改此配置\n accessKey: cmii\n secretKey: B#923fC7mk\n jaeger: # 链路追踪(@秦正)\n enabled: false\n url: jaeger-agent.testing.svc\n port: 6831\n fmv: # FMV @吴庆州 不同环境配置不同\n fmvIP: 192.168.35.3\n fmvPort: 8013\n iwhere: # 网格服务 唐志梁\n elasticsearch:\n username: elastic\n password: Iwhere@2023\n uris: http://192.168.35.222:9202\n iwhere-engine:\n url: https://lab.uavcmlc.com/devoperation/gisapi/\n libraryId: AYIa10h8-pvyf9uCqRK0\n oauth:\n supervision: #政府监管oauth配置\n grantType: authorization_code\n clientId: APP_qqSu82THfexI8PLM\n clientSecret: UJgOiLmMd4zk56Gy5Uw25MH91CijC5\n visual: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_XCkvK89FeX6lGp0Z\n clientSecret: VzWUJMOuslWN97NRf3Gk4xEk6Xb6iV\n terra: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_tN53ELBlzbRWjDHq\n clientSecret: gnaeeuGcwOk6qjNOgN5LIuT3EKtgI5\n dataprocess: #二三维建模oauth配置\n grantType: authorization_code\n clientId: APP_l4HIMixfIXhlCTi9\n clientSecret: QJfg2lO9lOHzwsu11lDCjrR0MWkoa4\n brain: #AI大脑oauth配置\n grantType: authorization_code\n clientId: APP_0BF17ayVaSpY89O4\n clientSecret: xHxlLbPV0pJ021JJ4PqGnnC5z4nGPV\n warehouse: #素材仓库oauth配置\n grantType: authorization_code\n clientId: APP_MEeBJHp1fSVD1Wuw\n clientSecret: Jf9OzhdEdeAhaVHqCZGMTRj1uMUiUU\n ai: # AI能力。下面所有ai配置均是 demo环境\n video-person-detection: # 人识别(@吴强)(1)\n url: 192.168.35.235\n port: 6512\n video-vehicle-detection: # 车辆识别(@吴强)(2)\n url: 192.168.35.235\n port: 6512\n video-person-video-vehicle-detection: # 人群计数 + 车辆识别(@吴强)(3)\n url: 192.168.35.235\n port: 6512\n video-fire-detection: # 火情识别(@崔成昱)(171)\n url: 192.168.35.233\n port: 6526\n video-smoke-recognition: # 烟雾识别(@崔成昱)\n url: 192.168.35.233\n port: 6506\n video-plate-recognition: # 车牌识别(基于视频)(@米俊华)(8)\n url: 192.168.35.233\n port: 10003\n video-safetyHat-recognition: # 安全帽识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6514\n video-tonggan-recognition: # 通感 无人机 鸟(基于视频)(@崔成昱)\n url: 192.168.34.228\n port: 2333\n video-excavator-recognition: # 挖挖机识别(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 23458\n video-highway-obstacle-detection: # 高速公路障碍检测172(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6527\n video-highway-person-detection: # 高速公路行人检测173(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6528\n video-highway-vehicle-detection: # 高速公路车辆检测174(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6529\n video-people-crowd-detection: # 密集人群检测175(基于视频)(@崔成昱)\n url: 192.168.35.233\n port: 6536\n video-pull-stream: # rtmp拉流转发到新的rtmp地址(基于视频)(@胡宝顺)\n url: 192.168.35.2\n port: 8197\n video-switch-stream: # 多链路冗余视频流切换(基于视频)(@胡宝顺)\n url: 192.168.35.30\n port: 8203\n image-person-crowd-count: # 人群计数(@吴强)\n url: 192.168.35.3\n port: 8001\n image-plate-recognition: # 车牌识别(基于图片)(@吴强)\n url: 192.168.35.3\n port: 8001\n image-dehazing: # 图片去雾(@吴强)\n url: 192.168.35.3\n port: 8001\n image-triton: # integrate with below three plugin, which is person-crowd-count + plate-recognition + dehazing(@吴强)\n url: 192.168.35.3\n port: 8001\n image-helmet-recognition: # 安全帽识别(@吴强)\n url: 192.168.35.3\n port: 8033\n image-road-segmentation: # 道路分割(@吴强)\n url: 192.168.35.3\n port: 2050\n gdr-server: # GDR转码服务插件(预先统一转码模式)。(@胡宝顺) 插件拉流地址动态生成,为临时地址,插件转码处理后推流地址为 载荷标准地址,该插件一般独立使用\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n gdr-transcode: # GDR转码服务(使用时转码模式)。(@胡宝顺) 一般对应拉流地址为载荷标准拉流地址(但不是强制要求,用于插件组装),处理后推流地址也是动态地址,临时地址\n url: 192.168.35.30\n port: 8197 #demo环境使用8191\n file2rtmp: # 文件推流插件, 加载mp4文件推流到目标rtmp地址\n url: helm-live-rtsp-op-svc\n port: 8080\n tian-qin: #天勤桥梁识别\n url: \"http://120.79.96.134:10022/recognize\"\n nong-ye-behavior: #农业人体姿态检测\n url: \"http://192.168.11.167:8099/behavior\"\n nong-ye-area: #农业区域目标检测\n url: \"http://192.168.11.167:8084/area_detection\"\n #仅用于integration环境,其他地方删除掉该配置\n gateway:\n autoTest: autoTest\nserver:\n port: 8080\n max-http-header-size: 10485760\n servlet:\n context-path: /\nspring:\n platform:\n info:\n name: ${bizName}\n description: ${bizName}\n version: ${com.cmii.chinamobile.version}\n scan-package: com.cmii.chinamobile\n enable-swagger: ${enable-swagger:true}\n idgen:\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n servlet:\n multipart:\n enabled: true\n max-file-size: 5000MB\n max-request-size: 5000MB\n messages:\n basename: i18n/messages\n cloud:\n k8s:\n discovery:\n enabled: false\n load-balance-endpoint: \'{}.integration.io\'\n load-balance-endpoint-port: 30500\n clients: cmii-admin-user,cmii-uav-material-warehouse\n scheme: https\n datasource:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: ${com.cmii.chinamobile.jdbc.url}/${dbSchema}?${com.cmii.chinamobile.jdbc.params}\n username: ${com.cmii.chinamobile.jdbc.username}\n password: ${com.cmii.chinamobile.jdbc.password}\n hikari:\n minimum-idle: 2\n # 空闲连接存活最大时间,默认600000(10分钟)\n idle-timeout: 180000\n # 连接池最大连接数,默认是10\n maximum-pool-size: 5\n # 此属性控制从池返回的连接的默认自动提交行为,默认值:true\n auto-commit: true\n connection-test-query: SELECT 1\n redis:\n host: helm-redis-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-master:6379\n database: 0\n password: Mcache@4522\n rabbitmq:\n host: helm-rabbitmq\n port: 5672\n username: admin\n password: sMSk81Plb1\n virtual-host: /\n data:\n mongodb:\n host: helm-mongos\n port: 27017\n database: admin\n username: cmlc\n password: REdPza8#oVlt\n jackson:\n time-zone: GMT+8\n mvc:\n pathmatch:\n matching-strategy: ANT_PATH_MATCHER\n\nmin:\n io:\n endPoint: ${com.cmii.chinamobile.minio.url} # 不同环境需要修改此配置 @周金福\n accessKey: ${com.cmii.chinamobile.minio.accessKey}\n secretKey: ${com.cmii.chinamobile.minio.secretKey}\nopentracing:\n jaeger:\n enabled: ${com.cmii.chinamobile.jaeger.enabled}\n log-spans: false\n const-sampler:\n decision: true\n udp-sender:\n host: ${com.cmii.chinamobile.jaeger.url}\n port: ${com.cmii.chinamobile.jaeger.port}\nmqtt:\n host: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n #服务质量\n #0代表“至多一次”,消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。\n #1代表“至少一次”,确保消息到达,但消息重复可能会发生。\n #2代表“只有一次”,确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。\n qos: 1\n #服务器列表,多个以英文逗号拼接\n hosts: tcp://emqxs:1883\n #超时时间 单位为秒\n connectionTimeout: 10\n #会话心跳时间 单位为秒\n #若心跳时间过短,在消费端繁忙时会无法完成服务端的心跳回复导致服务端认为消费端下线而无法完成订阅\n #可采用MQ接收端和消费端之间加上队列\n keepAliveInterval: 20\n #消息发布者clientId\n publishClientId: my_publish_02\n #消息订阅者clientId\n subscribeClientId: my_subscribe_02\n single:\n host: tcp://124.70.192.237:1883\n hosts: tcp://124.70.192.237:1883\n #username: cmlc\n #password: 4YPk*DS%+5\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\nliteflow:\n rule-source: yml:com.cmii.chinamobile.common.orchestration.flow.config.NacosFlowDefinationParser\nmybatis-plus:\n type-handlers-package: com.cmii.chinamobile.common.typehandler\n configuration:\n cache-enabled: false\n map-underscore-to-camel-case: true\n# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl\n log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl\n global-config:\n db-config:\n id-type: input\n update-strategy: NOT_NULL\n worker-id: ${random.int(1,31)}\n datacenter-id: ${random.int(1,31)}\n banner: false\n mapper-locations: classpath*:com/cmii/chinamobile/**/mapper/**/*.xml,classpath*:com/cmii/chinamobile/**/beans/**/*.xml\nlogging:\n level:\n com.cmii.chinamobile: info\n com.alibaba.nacos.client.config.impl: WARN\n io.swagger.models.parameters.AbstractSerializableParameter: error\n io.opentracing: error\nfeign:\n sentinel:\n enabled: true\n hystrix:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n # 最大的连接数,默认200\n max-connections: 200\n # 每个路由最大的连接数,默认50,计算方式max-connections/(目标服务数*每个服务节点数)\n # 比如max-connections=200,调用目标5个微服务,每个微服务2个节点,结果则为200/(5*2)=20\n max-connections-per-route: 20\n # 是否禁用SSL验证,默认 false\n disable-ssl-validation: true\n # 链接超时时间,默认2000\n connection-timeout: 2000\n # 链接存活时间,单位秒,默认值15分钟\n time-to-live: 300\n ok-http:\n read-timeout: 5000\n client:\n default:\n read-timeout: 3000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 5000\n threadpool:\n default:\n #核心线程数 默认10\n coreSize: 20\n #最大线程数,只有在allowMaximumSizeToDivergeFromCoreSize为true的时候才生效,默认值10\n maximumSize: 200\n #非核心线程存活时间,单位,分,默认1分钟\n keepAliveTimeMinutes: 1\n # 是否允许最大线程数生效,默认关闭\n allowMaximumSizeToDivergeFromCoreSize: true\nribbon:\n ReadTimeout: 3000\n ConnectTimeout: 10000\n #注册中心刷新时间,默认30秒\n ServerListRefreshInterval: 5000\nmanagement:\n endpoint:\n gateway:\n enabled: false\n endpoints:\n web:\n exposure:\n include: health\n base-path: /m6u6c5bsvkto4fvs\nxxl:\n job:\n executor-log-retention-days: 7\n executor-port: 9999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nelasticsearch:\n uris: http://192.168.35.243:29201\n clusterName: elasticsearch\n username: elastic\n password: Iwhere@2023\ndata:\n terrain: /terrain/\n terrain-url: https://lab.uavcmlc.com/devoperation/jinchang\n#iwhere引擎\niWhereEngine:\n url:\n iwhereEngine-grid: http://192.168.35.243:28000\n tree: 101\n \ndeploy:\n closeOldSupervision: true\n env: integration\n warningCloseTime: 7200\n flightDeleteDay: 732\n\n','930cb7082da56f1432737fee1dd6e9a1','2010-05-05 00:00:00','2024-11-09 18:35:28','developer','192.168.103.141','U','',''),(3659,4265,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \nmqtt:\n single:\n host: tcp://39.103.139.174:3883\n hosts: tcp://39.103.139.174:3883\n username: mqtthf\n password: M4df2234f$2cd2111\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\n deviceType: 5ga\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','975b5aa2e31394774f08a44dca40da3c','2010-05-05 00:00:00','2024-11-09 22:46:28','developer','192.168.102.42','U','',''),(3659,4266,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \nmqtt:\n single:\n host: tcp://emqxs:1883\n hosts: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\n deviceType: 5ga\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true','4eee02daff118d8669897bba5b763e62','2010-05-05 00:00:00','2024-11-11 10:58:39','nacos','10.244.179.192','U','',''),(3574,4267,'cmii-uas-lifecycle.yml','5.8.0','','spring:\n # cache:\n # type: none\n # redis:\n # host: helm-redis-uas-master\n # port: 6379\n # database: 0\n # password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n # redisson:\n # model: SINGLE\n # single-server-config:\n # address: helm-redis-uas-master:6379\n # database: 0\n # password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\npassword:\n noticeChangePwdDay: 84\n expireDay: 91\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: info\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: DEBUG\n\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii','69c34d6951d2d7430729a121ddc6d0d6','2010-05-05 00:00:00','2024-11-11 10:58:51','nacos','10.244.179.192','U','',''),(3658,4268,'cmii-uas-gateway.yml','6.0.0','','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - Path=/lifecycle/regulator/sense/universalData/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/sense/universalData/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','98086a3e2077f4e0fdb879a81d1444a0','2010-05-05 00:00:00','2024-11-11 15:28:21','nacos','10.244.179.192','U','',''),(3635,4269,'cmii-uav-mission.yml','6.0.0','','bizName: 作业管理服务\ndbSchema: uav_mission\nspring:\n jmx:\n enabled: false\nmission:\n ShareUrlPrefix: lab.uavcmlc # @Deprecated 下个版本删除(使用${com.cmii.chinamobile.root}) 需要@李航宇 确认\n shareEnvPath: com/integration # @Deprecated 同上\n AiListerMqName: aiVideo\n FmvIP: ${com.cmii.chinamobile.fmv.fmvIP}\n FmvPort: ${com.cmii.chinamobile.fmv.fmvPort}\n ai:\n ip: 192.168.34.227\n port: 19000\n waterUrl: /v2/models/water_segment/infer\ncmii-uav-cloud-live: # 该名称为feign中调用的微服务名称 需要@李航宇 确认\n ribbon:\n ReadTimeout: 15000\n ConnectTimeout: 15000\nfeign:\n hystrix:\n enabled: true\n client:\n config:\n mission-ai: # 该名称为feign中的contextId 需要@李航宇 确认\n ConnectTimeout: 20000\n ReadTimeout: 20000\nhystrix:\n command:\n default:\n execution:\n isolation:\n thread:\n timeoutInMilliseconds: 20000\nribbon:\n OkToRetryOnAllOperations: true # 是否对所有操作重试\n MaxAutoRetriesNextServer: 2 # 同一服务不同实例的重试次数\n MaxAutoRetries: 1 # 同一实例的重试次数\n #指的是建立连接后从服务器读取到可用资源所用的时间\n ReadTimeout: 20000\n #指的是建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间\n ConnectTimeout: 20000\nbucket: foia\nmis:\n foia:\n pic:\n url: ${min.io.endPoint}/${bucket}/\nlog:\n flag: true\nlogging:\n level:\n com.cmii.chinamobile: info','99601af8f85be4408167d8cdd7a86625','2010-05-05 00:00:00','2024-11-12 09:15:15','developer','10.244.179.192','U','',''),(3659,4270,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info \nmqtt:\n single:\n host: tcp://emqxs:1883\n hosts: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\n deviceType: 5ga\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true\n\ncyy:\n aes: 696f4b09f80633a10eca593aa4dac727\n public:\n key: 042606569DF5B422596B78FEFC7A7087D618F339BCB3FE02DEDF3E733B4E5A8FE32DEA162DC12D31F03464F071EA9CEA1DE233FC9250C63005C401B9CAC030A155\n private:\n key: 73607410C0B2D9038D29738FC253B704E120FDC1A6C5D5E07AD038C9EE29D77C\n sim:\n debug: false\n bip:\n debug: false\n safeAid:\n aid: xxxx\n version: 1.0\n apdu:\n - 80E6200016000010D15600010181017B00000000B0010101000000\n - 80E281000400B20000\n execCount: 3\n chainingValue: \"01\"\n uavProductNO: 81145541533030303139363639393932313233343031\n imei: 820F383635303837303530333333333434\n terminalNO: 8306443830454538\n imsi: 840F343630303131303331363335313437\n result:\n success: \"009000\"\n command:\n install: 80E6200016000010D15600010181017B00000000B0010101000000\n query: 80E281000400B20000\n platform:\n version: 1.0\n url: https://www.demo.uavcmlc.com/uas/api/lifecycle/regulator/epc/auth\n debug: false\nxinshen:\n public:\n key: 04AF6C1BD30C3AE944A3E15E2F069F79EA2DC321DF26FBA6531BD1B58383C0E54F5F44A374E0FE3EFA7D1F307B6D3E54AC7352E8768470539EF2D6BDFBCBE279D5\n url: http://1.119.150.199:20016/cmiot/seitsm/cardinality/seOperatorApply\n spid: CYY04009','472ebc7c0c32fc43a11cfa66f2899464','2010-05-05 00:00:00','2024-11-12 15:04:06','developer','192.168.102.255','U','',''),(3659,4271,'cmii-uas-lifecycle.yml','6.0.0','','spring:\n cache:\n type: none\n redis:\n host: helm-redis-uas-master\n port: 6379\n database: 0\n password: Mcache@4522\n # redisson:\n # model: MASTERSLAVE\n # password: Mcache@4522\n # multiple-server-config:\n # database: 0\n # node-addresses: helm-redis-master:6379,helm-redis-slave:6379\n # master-name: helm-redis\n # slave-connection-pool-size: 16\n # master-connection-pool-size: 16\n # slave-connection-minimum-idle-size: 8\n # master-connection-minimum-idle-size: 8\n # ping-connection-interval: 5000\n redisson:\n model: SINGLE\n single-server-config:\n address: helm-redis-uas-master:6379\n database: 0\n password: Mcache@4522\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n platform:\n info:\n name: 无人机身份认证\n description: 无人机身份认证\n version: 1.0.0\n datasource:\n dynamic:\n primary: uav_lifecycle\n datasource:\n uav_lifecycle:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/uav_lifecycle?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&&allowMultiQueries=true&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n emqx:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.35.205:13306/emqx?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: k8s_admin\n password: Uc@bkTCPuD4g\n uav_doris:\n type: com.zaxxer.hikari.HikariDataSource\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://192.168.11.90:9031/cmii?characterEncoding=UTF-8&useSSL=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8\n username: cmii\n password: Gy8F5jpaFG@G\n rabbitmq:\n host: helm-uas-rabbitmqs\n port: 5672\n username: admin\n password: nYcRN91r._hj\n virtual-host: /\npassword:\n noticeChangePwdDay: 840\n expireDay: 910\n emailNotice: true\n smsNotice: true\n #notice address\n host: https://www.demo.uavcmlc.com/\nxxl:\n job:\n executor-log-retention-days: 1\n executor-port: 19999\n executor-log-path: ./logs/xxljob/logpath\n access-token: xxl-job\nspringdoc:\n api-docs:\n version: openapi_3_1\n group-configs:\n - group: common\n display-name: 公共能力\n paths-to-match:\n - /cmii/**\n - group: owner\n display-name: 无人机使用者服务能力\n paths-to-match:\n - /owner/**\n - group: manufacturer\n display-name: 无人机厂商服务能力\n paths-to-match:\n - /manufacturer/**\n - group: regulator\n display-name: 无人机监管服务能力\n paths-to-match:\n - /regulator/**\n - group: all\n display-name: 所有的服务能力\n paths-to-match:\n - /**\n override-with-generic-response: true\n info:\n title: 无人机身份认证服务\n description: 无人机身份认证服务,用于管理无人机使用者,无人机生产厂商,无人机监管者\n version: 5.3.0\nauth:\n envs:\n owner:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n manufacturer:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\n regulator:\n image-code-support: true\n kicked-support: false\n login-error-limit: true\n login-error-limit-count: 5\n login-error-limit-time: 300\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n register-request-mapping: true\n group: regulator\n eventbus:\n broadcast-events:\n - lifecycle.detection:SUPERVISE_DETECTION\n kongyu:\n host: http://1.95.2.44:8080\n url-jam: /cy\n url-aoa: /cy\n url-radar: /cy\n urlinduce: /cy\n urltracktarget: /cy\n urlqueryalldevicelist: /cy\n urlqueryalldevicerelations: /cy\n heartbeatinterval: 7\n guardmode: /cy\n radarlatitude: 30.4070238\n radarlongitude: 104.0884845\n jamlatitude: 30.4070038\n jamlongitude: 104.0884645\n photoelectricitylatitude: 30.4070438\n photoelectricitylongitude: 104.0884345\n inducelatitude: 30.4071238\n inducelongitude: 104.0885245\n provider-code: DP21743e0f10ada3fb\n stream-url-map:\n #37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.demo.uavcmlc.com:443/origin/test\n #6706029766384f7496cf72a22607305a: webrtc://live.demo.uavcmlc.com:443/origin/test\n 37bbc0f0a5e145f3b2022d607j3k6-gd: webrtc://live.uavcmlc.com:443/live/DEV02002483\n 6706029766384f7496cf72a22607305a: webrtc://live.uavcmlc.com:443/live/DEV02002483\n\n\nlogging:\n level:\n com.cmii.chinamobile: INFO\n com.cmii.chinamobile.uas.lifecycle.service.detection.impl.GeneralServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.service.detection.DetectionDeviceClient: OFF\n com.cmii.chinamobile.uas.lifecycle.service.biz.warn.impl.WarnJudgmentServiceImpl: OFF\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.IAMMessageHandler: INFO\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.SenseMessageHandler: info\n com.cmii.chinamobile.alarm.service.impl.SecAlarmMQReceiver: info\n com.cmii.chinamobile.uas.lifecycle.config.mqtt.handler.fusiontrack: WARN\nmqtt:\n single:\n host: tcp://emqxs:1883\n hosts: tcp://emqxs:1883\n username: cmlc\n password: odD8#Cr628\n qos: 1\n connectionTimeout: 10\n keepAliveInterval: 20\n H1CX1CTDOATopicPrefix: server/chan\n H1CX1CRIDTopicPrefix: server/chan\n H1CX1CTDOATopicSuffix: /api/locate\n H1CX1CRIDTopicSuffix: /api/rd1\n deviceType: 5ga\nlifecycle:\n srcId: 1323096648758464519\n modelSrcId: 1323096648758464521\n isOpen: false\n companyIds: 2\n isOpenPushDate: false\n isOpenSaveDate: true\n isOpenHeight: false\n isOpenModels: false\n modelType: 2\n trackFusionProviderCode: DP74b4ef9fb4aaf269\n thirdPartyProviderCode: sf\nairspace:\n deploy:\n closeAreaRiskEvaluate: false\n closeCaculateAirspaceCapacity: false\n riskAssessmentUrl: http://192.168.35.229:18081/get_data\n riskHotGridLevel: 17\ndoris:\n endPoint: http://192.168.11.90:8041 \n user: cmii\n password: Gy8F5jpaFG@G\n database: cmii\nwarn:\n data:\n closeTerrain: true\n\ncyy:\n aes: 696f4b09f80633a10eca593aa4dac727\n public:\n key: 042606569DF5B422596B78FEFC7A7087D618F339BCB3FE02DEDF3E733B4E5A8FE32DEA162DC12D31F03464F071EA9CEA1DE233FC9250C63005C401B9CAC030A155\n private:\n key: 73607410C0B2D9038D29738FC253B704E120FDC1A6C5D5E07AD038C9EE29D77C\n sim:\n debug: false\n bip:\n debug: false\n safeAid:\n aid: xxxx\n version: 1.0\n apdu:\n - 80E6200016000010D15600010181017B00000000B0010101000000\n - 80E281000400B20000\n execCount: 3\n chainingValue: \"01\"\n uavProductNO: 81145541533030303139363639393932313233343031\n imei: 820F383635303837303530333333333434\n terminalNO: 8306443830454538\n imsi: 840F343630303131303331363335313437\n result:\n success: \"009000\"\n command:\n install: 80E6200016000010D15600010181017B00000000B0010101000000\n query: 80E281000400B20000\n platform:\n version: 1.0\n url: https://www.demo.uavcmlc.com/uas/api/lifecycle/regulator/epc/auth\n debug: false\nxinshen:\n public:\n key: 04AF6C1BD30C3AE944A3E15E2F069F79EA2DC321DF26FBA6531BD1B58383C0E54F5F44A374E0FE3EFA7D1F307B6D3E54AC7352E8768470539EF2D6BDFBCBE279D5\n url: http://1.119.150.199:20016/cmiot/seitsm/cardinality/seOperatorApply\n spid: CYY04009','7b49941f26c6e2893b3a4ced6d0ac875','2010-05-05 00:00:00','2024-11-12 16:08:23','nacos','10.244.179.192','U','',''),(3183,4272,'cmii-uas-gateway.yml','5.6.0','','spring:\n application:\n name: cmii-uas-gateway\n platform:\n info:\n name: 无人机身份认证网关\n description: 无人机身份认证网关\n version: 1.0.0\n cloud:\n gateway:\n default-filters:\n - StripPrefix=1 #去掉路径的第一级如/logger\n - AddResponseHeader= X-Frame-Options,SAMEORIGIN\n routes:\n - id: lifecycle\n uri: lb://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/**\n - id: lifecycle-websocket\n uri: lb:ws://cmii-uas-lifecycle\n predicates:\n - Path=/lifecycle/regulator/detection/data/**\n - id: warehouse\n uri: lb://cmii-uav-material-warehouse\n predicates:\n - Path=/warehouse/**\n filters:\n - StripPrefix=1\n\nsecurity:\n oauth2:\n regulator:\n permit-all:\n - /lifecycle/regulator/auth/login\n - /lifecycle/regulator/auth/code/login\n - /lifecycle/regulator/auth/getImageCode\n - /lifecycle/regulator/auth/sendLogin\n - /lifecycle/regulator/detection/data/**\n - /lifecycle/regulator/epc/auth\n - /lifecycle/regulator/auth/sendFindPassword\n - /lifecycle/regulator/auth/findPwdByOrig\n - /lifecycle/regulator/auth/findPwd\n - /warehouse/regulator/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/regulator/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/regulator/personal/**\n - /lifecycle/regulator/owner/**\n - /lifecycle/regulator/auth/logout\n - /lifecycle/regulator/uav/**\n - /lifecycle/regulator/**\n - /warehouse/regulator/**\n owner:\n permit-all:\n - /lifecycle/owner/auth/login\n - /lifecycle/owner/auth/code/login\n - /lifecycle/owner/auth/getImageCode\n - /lifecycle/owner/auth/sendLogin\n - /lifecycle/owner/auth/sendRegistry\n - /lifecycle/owner/auth/sendFindPassword\n - /lifecycle/owner/auth/findPwdByOrig\n - /lifecycle/owner/auth/findPwd\n - /lifecycle/owner/auth/registry\n - /warehouse/owner/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/owner/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/owner/personal/**\n - /lifecycle/owner/auth/logout\n - /lifecycle/owner/uavoperator/**\n - /lifecycle/owner/flightactivity/** \n - /lifecycle/owner/airspace/traffic/**\n - /lifecycle/owner/airspace/admin/**\n - /lifecycle/owner/gis/** \n - /warehouse/owner/**\n manufacturer:\n permit-all:\n - /lifecycle/manufacturer/auth/login\n - /lifecycle/manufacturer/auth/code/login\n - /lifecycle/manufacturer/auth/getImageCode\n - /lifecycle/manufacturer/auth/sendLogin\n - /lifecycle/manufacturer/auth/sendRegistry\n - /lifecycle/manufacturer/auth/sendFindPassword\n - /lifecycle/manufacturer/auth/findPwd\n - /lifecycle/manufacturer/auth/findPwdByOrig\n - /lifecycle/manufacturer/auth/registry\n - /lifecycle/manufacturer/syncMnf\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFile/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadFileByToken/** #素材仓库文件下载\n - /warehouse/manufacturer/api/v1/warehouse/project/downloadModelFile/** #素材仓库文件下载\n authority-ignores:\n - /lifecycle/manufacturer/syncMnf\n - /lifecycle/manufacturer/personal/**\n - /lifecycle/manufacturer/ca/**\n - /lifecycle/manufacturer/cert/**\n - /lifecycle/manufacturer/auth/logout\n - /warehouse/manufacturer/**','0c01d7c15c182ff47723ca5895b2dc58','2010-05-05 00:00:00','2024-11-12 17:13:57','developer','192.168.102.255','U','',''),(3624,4273,'cmii-uav-cloud-live.yml','6.0.0','','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@141 # 地标检测\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','108429c031330d1b8797f3c042433d2d','2010-05-05 00:00:00','2024-11-13 09:10:34','developer','10.244.179.192','U','',''),(3539,4274,'cmii-uav-cloud-live.yml','5.8.0','','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','f0bfedbd38d02208364c28c3771bc40f','2010-05-05 00:00:00','2024-11-13 09:10:53','developer','10.244.179.192','U','',''),(3336,4275,'cmii-uav-cloud-live.yml','5.7.0','','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','f0bfedbd38d02208364c28c3771bc40f','2010-05-05 00:00:00','2024-11-13 09:11:14','developer','10.244.179.192','U','',''),(3098,4276,'cmii-uav-cloud-live.yml','5.6.0','','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: boat_detection # 海只检测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\n closePlusVideo: ${com.cmii.chinamobile.video-merge.closePlusVideo} \nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 16 过时算法\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-ai.url}:${com.cmii.chinamobile.ai.video-fire-ai.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@114\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@122\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@131\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM','f0bfedbd38d02208364c28c3771bc40f','2010-05-05 00:00:00','2024-11-13 09:12:35','developer','10.244.179.192','U','',''),(2982,4277,'cmii-uav-cloud-live.yml','5.5.0','','bizName: 视频流媒体管理\ndbSchema: uav_cloud_live\ncmii:\n flow:\n chain:\n - name: createTempLive\n condition:\n - type: then\n value: \'createTempLive\'\n - name: createLive\n condition:\n - type: then\n value: \'createLive\'\n - name: gdrServer\n condition:\n - type: then\n value: \'gdr_server\'\n - name: pullStreamServer\n condition:\n - type: then\n value: \'pullStreamServer\'\n - name: aijob\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: personAi\n condition:\n - type: then\n value: \'createLive,personAi\'\n - name: vehicleAi\n condition:\n - type: then\n value: \'createLive,vehicleAi\'\n - name: personVehicleAi\n condition:\n - type: then\n value: \'createLive,personVehicleAi\'\n - name: vehicleTrackAi\n condition:\n - type: then\n value: \'createLive,vehicleTrackAi\' \n - name: plateAi\n condition:\n - type: then\n value: \'createLive,plateAi\' \n - name: fireAi\n condition:\n - type: then\n value: \'createLive,fireAi\' \n - name: smokeAi\n condition:\n - type: then\n value: \'createLive,smokeAi\'\n - name: safetyHatAi\n condition:\n - type: then\n value: \'createLive,safetyHatAi\'\n - name: excavatorAi\n condition:\n - type: then\n value: \'createLive,excavatorAi\'\n - name: fireDetection\n condition:\n - type: then\n value: \'createLive,fireDetection\'\n - name: highwayManyVehicleDetection\n condition:\n - type: then\n value: \'createLive,highwayManyVehicleDetection\'\n - name: highwayObstacleDetection\n condition:\n - type: then\n value: \'createLive,highwayObstacleDetection\'\n - name: highwayPersonDetection\n condition:\n - type: then\n value: \'createLive,highwayPersonDetection\'\n - name: peopleCrowdDetection\n condition:\n - type: then\n value: \'createLive,peopleCrowdDetection\'\n - name: gdr2idr\n condition:\n - type: then\n value: \'createLive,gdr_transcode\'\n - name: file2rtmp\n condition:\n - type: then\n value: \'file2rtmp\'\n - name: switchStream\n condition:\n - type: then\n value: \'switchStream\'\n - name: people_vehicle_detection\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: infrared_people_detection # 红外人体识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: people_in_sea_detection # 海上救援人员识别\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\n - name: drone_bird_detection # 无人机、鸟类监测\n condition:\n - type: then\n value: \'createLive,ai_recognition\'\nstream:\n engine:\n # host: 192.168.11.137:29999\n host: helm-vms-svc:29999\n wareHouseSrcId: 1323096648758464518\n #1. old 2. new\n partFileType: 1\n saveAllTsFile: false\n tsHost: ${com.cmii.chinamobile.root}/api/cloudLive\n tsPath: /public/his/playback/ts\n cloudLiveHost: ${com.cmii.chinamobile.root}/api/cloudLive\nvideo:\n merge:\n endpoint: ${com.cmii.chinamobile.video-merge.url}\n srcId: ${com.cmii.chinamobile.video-merge.srcId}\n callbackUrl: ${com.cmii.chinamobile.video-merge.callbackUrl}\nlive:\n#vms,srs-op\n closeLiveQuotaLimit: true\n defaultEngine: live-op-01\n engines:\n - name: live-op-01\n desc: live service powered by live-op\n type: live-op\n endpoint: http://helm-live-op-svc-v2:8080\n - name: srs-vms\n desc: live service powered by srs-vms\n type: srs-vms\n endpoint: helm-vms-svc:29999\n plugins:\n - pluginName: ai_recognition@1 # 人群统计\n endpoint: http://${com.cmii.chinamobile.ai.video-person-detection.url}:${com.cmii.chinamobile.ai.video-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@2 # 车\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@3 # 人群统计+车\n endpoint: http://${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-person-video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@4 # 车辆跟踪\n endpoint: http://${com.cmii.chinamobile.ai.video-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@8 # 车牌识别\n endpoint: http://${com.cmii.chinamobile.ai.video-plate-recognition.url}:${com.cmii.chinamobile.ai.video-plate-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@16 # 火识别 过时算法被171代替\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@32 # 烟雾识别\n endpoint: http://${com.cmii.chinamobile.ai.video-smoke-recognition.url}:${com.cmii.chinamobile.ai.video-smoke-recognition.port}/cmii/ai/service/v1\n # GDR说明:\n # M210:方案一:标准H264 + RTMP;方案二:维斯格TCP裸流\n # M300: 1. GDR + RTMP 推到SRS(新),8191端口进行转码:“rtmp -> srs -> gdr -> H264(转码) -> srs”\n # 2. GDR + TCP(老),用另外一个端口26688进行转码(仅demo)\n - pluginName: gdr_server\n endpoint: http://${com.cmii.chinamobile.ai.gdr-server.url}:${com.cmii.chinamobile.ai.gdr-server.port}\n - pluginName: gdr_transcode\n endpoint: http://${com.cmii.chinamobile.ai.gdr-transcode.url}:${com.cmii.chinamobile.ai.gdr-transcode.port}\n - pluginName: file2rtmp\n endpoint: http://${com.cmii.chinamobile.ai.file2rtmp.url}:${com.cmii.chinamobile.ai.file2rtmp.port}/api/v1/file2rtmp \n - pluginName: ai_recognition@64 ## 安全帽\n endpoint: http://${com.cmii.chinamobile.ai.video-safetyHat-recognition.url}:${com.cmii.chinamobile.ai.video-safetyHat-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@111 # 人车\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@112 # 红外人体\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@113 # 海上救援\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@121 # 通感 无人机 鸟\n endpoint: http://${com.cmii.chinamobile.ai.video-tonggan-recognition.url}:${com.cmii.chinamobile.ai.video-tonggan-recognition.port}/api/cmlc\n - pluginName: ai_recognition@128 ## 挖挖机\n endpoint: http://${com.cmii.chinamobile.ai.video-excavator-recognition.url}:${com.cmii.chinamobile.ai.video-excavator-recognition.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@171 # 火情识别\n endpoint: http://${com.cmii.chinamobile.ai.video-fire-detection.url}:${com.cmii.chinamobile.ai.video-fire-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@172\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-obstacle-detection.url}:${com.cmii.chinamobile.ai.video-highway-obstacle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@173\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-person-detection.url}:${com.cmii.chinamobile.ai.video-highway-person-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@174\n endpoint: http://${com.cmii.chinamobile.ai.video-highway-vehicle-detection.url}:${com.cmii.chinamobile.ai.video-highway-vehicle-detection.port}/cmii/ai/service/v1\n - pluginName: ai_recognition@175\n endpoint: http://${com.cmii.chinamobile.ai.video-people-crowd-detection.url}:${com.cmii.chinamobile.ai.video-people-crowd-detection.port}/cmii/ai/service/v1\n - pluginName: pullStreamServer\n endpoint: http://${com.cmii.chinamobile.ai.video-pull-stream.url}:${com.cmii.chinamobile.ai.video-pull-stream.port}/pullStreamServer\n - pluginName: switchStream\n endpoint: http://${com.cmii.chinamobile.ai.video-switch-stream.url}:${com.cmii.chinamobile.ai.video-switch-stream.port}/switchStream\n closeCheckStreamTask: true\n closeCheckPluginTask: true\ncom:\n cmii:\n chinamobile:\n request:\n mapping:\n scan:\n group: uav,admin\ntranscode:\n gdr2idrModels:\n - wrjxh052/xh003\n - wrjxh052/xh009\n - wrjxh063/xh024\n - wrjxh063/\n - wrjxh064/\nrabbit:\n queue:\n aiQueue: aiVideo\n\noauth:\n grantType: authorization_code\n clientId: APP_4AU8lbifESQO4FD6\n clientSecret: FK1BraFkJpsiN48GS3JuXtrxreWUrM\n','8a229d994a17bb40ae6967cde9034f3f','2010-05-05 00:00:00','2024-11-13 09:14:52','developer','10.244.179.192','U','',''); /*!40000 ALTER TABLE `his_config_info` ENABLE KEYS */; UNLOCK TABLES; @@ -411,4 +411,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:31 +-- Dump completed on 2024-11-14 11:14:07 diff --git a/999-数据库脚本/6.0.0/suav_supervision.sql b/999-数据库脚本/6.0.0/suav_supervision.sql index 7c74eff..f1e828f 100644 --- a/999-数据库脚本/6.0.0/suav_supervision.sql +++ b/999-数据库脚本/6.0.0/suav_supervision.sql @@ -55,4 +55,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/uav_airspace.sql b/999-数据库脚本/6.0.0/uav_airspace.sql index 83e2153..201b305 100644 --- a/999-数据库脚本/6.0.0/uav_airspace.sql +++ b/999-数据库脚本/6.0.0/uav_airspace.sql @@ -35,4 +35,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:29 +-- Dump completed on 2024-11-14 11:14:04 diff --git a/999-数据库脚本/6.0.0/uav_brain.sql b/999-数据库脚本/6.0.0/uav_brain.sql index f5c16cc..9ea60d6 100644 --- a/999-数据库脚本/6.0.0/uav_brain.sql +++ b/999-数据库脚本/6.0.0/uav_brain.sql @@ -45,4 +45,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/uav_gis.sql b/999-数据库脚本/6.0.0/uav_gis.sql index de0ca98..458d6a9 100644 --- a/999-数据库脚本/6.0.0/uav_gis.sql +++ b/999-数据库脚本/6.0.0/uav_gis.sql @@ -36,4 +36,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:31 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/uav_lifecycle.sql b/999-数据库脚本/6.0.0/uav_lifecycle.sql index b082e14..94d5e2e 100644 --- a/999-数据库脚本/6.0.0/uav_lifecycle.sql +++ b/999-数据库脚本/6.0.0/uav_lifecycle.sql @@ -35,4 +35,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:31 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/uav_mission.sql b/999-数据库脚本/6.0.0/uav_mission.sql index 175cb15..7cda7d9 100644 --- a/999-数据库脚本/6.0.0/uav_mission.sql +++ b/999-数据库脚本/6.0.0/uav_mission.sql @@ -46,4 +46,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:05 diff --git a/999-数据库脚本/6.0.0/uav_notice.sql b/999-数据库脚本/6.0.0/uav_notice.sql index a39eef5..7bfa31c 100644 --- a/999-数据库脚本/6.0.0/uav_notice.sql +++ b/999-数据库脚本/6.0.0/uav_notice.sql @@ -32,7 +32,7 @@ UNLOCK TABLES; LOCK TABLES `msg_tpl` WRITE; /*!40000 ALTER TABLE `msg_tpl` DISABLE KEYS */; -INSERT INTO `msg_tpl` VALUES (2929,'email','test','test-email-tpl','测试Email模板','Hi${name}中移凌云向你发送了一封邮件2','Hi ${name} 点击查看 ${content}','cmii-uav-email-server',NULL,'sys',0,'NORMAL',NULL,'2020122111030112345601','测试模板,向某个用户发送电子邮件',NULL,NULL,'2020-08-10 06:56:19','2020-08-10 06:02:49'),(2930,'sms','test','sms-verification-code ','中移凌云验证码',NULL,'验证码${para1},您正在进行中移凌云身份验证,工作人员不会索取该验证码,请勿泄漏!','aliyun','SMS_200175939','sys',0,'NORMAL',NULL,'2020122111030112345602','测试模板,向某个用户发送短信',NULL,NULL,'2020-08-20 02:32:58','2020-08-20 02:32:58'),(2931,'sms','uav-user','sms_reg','注册','注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','8fcde17d01384f83bf3cb3efc379e207','sys',0,'NORMAL',NULL,'2020122111030112345603','注册',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(2932,'sms','uav-user','sms_login','登录','登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','b9e3985bc47b4376891da5cebdb82f25','sys',0,'NORMAL',NULL,'2020122111030112345604','登录',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(2933,'sms','uav-user','sms_findpwd','找回密码','找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','f8f2edd4435042cfb87cf9a63cd4fcab','sys',0,'NORMAL',NULL,'2020122111030112345605','找回密码',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(2934,'sms','uav-user','sms_modifyphone','修改手机号-原手机号验证','修改手机号-原手机号验证','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','e4ea811efa0f4df3a640d21cc9545771','sys',0,'NORMAL',NULL,'2020122111030112345606','修改手机号-原手机号验证',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(2935,'sms','uav-user','sms_bindnewphone','修改手机号-新手机号绑定','修改手机号-新手机号绑定','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','26b568aa988d4f97beaa7d0b6311c583','sys',0,'NORMAL',NULL,'2020122111030112345607','修改手机号-新手机号绑定',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(2936,'email','uav-user','email_modifyemail','邮箱修改确认','中移凌云邮箱修改确认通知','\r\n\r\n \r\n \r\n \r\n 中移凌云邮箱修改确认通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您申请了邮箱修改,请在24小时以内确认新邮箱,如未做任何操作,系统将保留原邮箱。\r\n

\r\n

\r\n \r\n 立即确认新邮箱\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${url}\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n','cmii-uav-email-server','','sys',0,'NORMAL',NULL,'2020122111030112345608','邮箱修改确认',NULL,NULL,'2020-08-26 08:02:45','2020-08-26 08:02:45'),(2937,'sms','test app id ','tpl1598430143447','测试模板名称','测试模板名称','Hi ${para1} 点击查看${para2}','aliyun',NULL,'sys',0,'NORMAL',NULL,'2020122111030112345609','测试模板备注',NULL,NULL,'2020-08-26 08:22:23','2020-08-26 08:22:23'),(2938,'sms','cmii-uav-developer','open_sms_reg','注册','注册','验证码:${para1},您正在进行开放平台注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','bd384678c96b4ebbb1aba87902c67e40','sys',0,'NORMAL',NULL,'2020122111030112345613','注册',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(2939,'sms','cmii-uav-developer','open_sms_login','登录','登录','验证码:${para1},您正在进行开放平台登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','661b38c8440a4acf941672409a993a1d','sys',0,'NORMAL',NULL,'2020122111030112345614','登录',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(2940,'sms','cmii-uav-developer','open_sms_findpwd','找回密码','找回密码','验证码:${para1},您正在进行开放平台找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','e007c512a52a4b83adc867afc5c9bf12','sys',0,'NORMAL',NULL,'2020122111030112345615','找回密码',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(2941,'sms','cmii-uav-developer','open_sms_modifyphone','修改手机号-原手机号验证','修改手机号-原手机号验证','验证码:${para1},您正在进行开放平台修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','8dabb1c670994f50bc4e66c676b41db0','sys',0,'NORMAL',NULL,'2020122111030112345616','修改手机号-原手机号验证',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(2942,'sms','cmii-uav-developer','open_sms_bindnewphone','修改手机号-新手机号绑定','修改手机号-新手机号绑定','验证码:${para1},您正在进行开放平台手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','cd2fb4efc0b54436b3fae6d6780c8817','sys',0,'NORMAL',NULL,'2020122111030112345617','修改手机号-新手机号绑定',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(2943,'webmsg','test','test-webmsg-tpl','测试WebMsg模板','Hi${name}中移凌云向你发送了一封站内信','Hi ${name} 点击查看 ${content}','web','','biz',0,'NORMAL',NULL,'2020122111030112345610','发送站内信',NULL,NULL,'2020-11-06 08:47:27','2020-10-22 03:39:25'),(2944,'email','uav_process','process_notice','流程通知','${emailTitle}','\r\n\r\n\r\n \r\n \r\n 中移凌云审批系统通知\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n 您有新的审批待处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n \r\n 您申请的 ${processName} 流程 有新的审批进度!\r\n \r\n (${eventTime})\r\n

\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n 有审批流程需要您介入处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n https://${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n','cmii-uav-email-server',NULL,'biz',0,'NORMAL',NULL,'2020122111030112345611','通知待审批人',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(2945,'webmsg','uav_process','process_notice_webmsg','站内信流程通知','${emailTitle}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n
','cmii-uav-email-server',NULL,'biz',0,'NORMAL',NULL,'2020122111030112345612','通知待审批人',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(2946,'email','cmii-uav-mission','mission_notice_email','中移凌云定时作业通知','${emailTitle}','\r\n\r\n \r\n \r\n \r\n 中移凌云定时作业通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃\r\n ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n \r\n\r\n','cmii-uav-email-server',NULL,'biz',1,'NORMAL',NULL,'20210319170600','中移凌云定时作业通知',NULL,NULL,'2021-03-19 09:07:04','2021-03-19 09:07:04'),(2947,'webmsg','cmii-uav-mission','mission_notice_webmsg','中移凌云定时作业通知','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n','web',NULL,'biz',0,'NORMAL',NULL,'20210319170601','中移凌云定时作业通知',NULL,NULL,'2021-03-19 09:45:45','2021-03-19 09:45:45'),(2948,'sms','cmii-uav-mission','mission-timerMissionStart','中移凌云定时作业开始通知','定时作业开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已经开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}','mas','bf304ef675c5424aa8b5765d8f330996','biz',0,'NORMAL',NULL,'2021032201','定时作业开始通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(2949,'sms','cmii-uav-mission','mission-timerMissionFinish','定时作业结束通知','定时作业结束通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已结束。\r\n结束时间:{[para4:字母+数字+英文符号,总长度20]}','mas','c3173ca768b445299ef4faa1d9f75457','biz',0,'NORMAL',NULL,'2021032202','定时作业结束通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(2950,'sms','cmii-uav-mission','mission-tenMinutesEarly','中移凌云定时作业即将开始通知','中移凌云定时作业即将开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}即将开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}\r\n如非本人操作,请立即前往平台进行确认。','mas','43983dee913746e1b2e3787ea1ad6918','biz',0,'NORMAL',NULL,'2021032203','定时作业即将开始通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(2951,'sms','cmii-uav-mission','mission-timerMissionStartFail','中移凌云定时作业启动失败通知','中移凌云定时作业启动失败通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}启动失败,请前往平台查看详情。','mas','25838ae2cb43411dae591912fc2ae20e','biz',0,'NORMAL',NULL,'2021032204','中移凌云定时作业启动失败通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(2952,'sms','cmii-uav-mission','temperatureWarningTplCodeWeb','中移凌云定时作业执行异常通知','中移凌云定时作业执行异常通知','尊敬的中移凌云用户!您创建的定时作业${para1} ${para2} ${para3}在执行中,发现一处异常。\r\n发现时间:${para4}\r\n位置:航点${para5}\r\n温度/温度阈值:${para6}℃/${para7}℃${para8} ${para9}','mas','475d94964dc24309a5147997ed1e9769','biz',1,'NORMAL',NULL,'2021032205','定时作业执行异常通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(2953,'webmsg','cmii-uav-mission','mission_notice_webmsg_e','中移凌云定时作业通知','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n','web',NULL,'biz',1,'NORMAL',NULL,'20210319170602','中移凌云定时作业通知',NULL,NULL,'2021-03-19 09:45:45','2021-03-19 09:45:45'),(2954,'sms','yihang_sms','yh_login','亿航登录验证码','登录验证码','验证码:${para1},您正在登录,若非本人操作,请勿泄露。','mas','c8b06af9063b436287a68ed8e1f79ebb','sys',0,'NORMAL',NULL,'2021052101','中移凌云-亿航登录验证码',NULL,NULL,'2021-05-21 06:57:08','2021-05-21 06:57:08'),(2955,'sms','yihang_sms','yh_peisong_notice','亿航配送通知','配送通知','${para1}您好,您订单号为${para2}的快件正在配送中,可点击http://${para3}/${para4}链接查看配送情况。','mas','8f4416797b9246808799c46a13eb85f9','sys',0,'NORMAL',NULL,'2021052102','中移领云-亿航配送通知',NULL,NULL,'2021-05-21 07:08:31','2021-05-21 07:08:31'),(2956,'sms','yihang_sms','yh_peisong_wb_notice','亿航取件通知','取件通知','${para1}您好,您订单号为${para2}的快件已配送到${para3}智能柜,取件码为${para4},请凭取件码前往智能柜进行取件。','mas','3950c06ca7af435c93b41050fd30b8ca','sys',0,'NORMAL',NULL,'2021052103','中移凌云-取件通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2957,'sms','test app id ','tpl1623231209965','测试模板名称',NULL,'Hi ${para1} 点击查看${para2}','aliyun','tpl1623231209965','sys',1,'NORMAL',NULL,'20210609173329bc0hg401','测试模板备注',NULL,NULL,'2021-06-09 09:33:29','2021-06-09 09:33:29'),(2958,'sms','cmii-uav-user','pwd_will_expire_sms','密码即将过期短信通知','密码即将过期通知','您的密码将在一周后过期,请及时修改。','mas',NULL,'sys',1,'NORMAL',NULL,'2021090901','密码即将过期通知',NULL,NULL,'2021-09-09 04:01:48','2021-09-09 04:01:48'),(2959,'sms','cmii-uav-user','pwd_expired_sms','密码过期短信通知','密码过期通知','您的密码已过期,请及时修改。','mas',NULL,'sys',1,'NORMAL',NULL,'2021090902','密码过期通知',NULL,NULL,'2021-09-09 04:56:33','2021-09-09 04:56:33'),(2960,'email','cmii-uav-user','pwd_will_expire_email','密码即将过期邮件通知','您的密码将在一周后过期','\r\n\r\n \r\n \r\n \r\n 您的密码将在一周后过期\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您的密码将在一周后过期,请及时修改。\r\n

\r\n

\r\n \r\n 跳转连接\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${host}/#/personalInfo\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n ','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2021090903','密码即将过期邮件通知模板',NULL,NULL,'2021-09-09 05:04:01','2021-09-09 05:04:01'),(2961,'email','cmii-uav-user','pwd_expired_email','密码过期邮件通知','您的密码已过期','\r\n\r\n \r\n \r\n \r\n 您的密码已过期\r\n \r\n \r\n \r\n \r\n \r\n ','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2021-90904','密码过期邮件通知模板',NULL,NULL,'2021-09-09 05:05:48','2021-09-09 05:05:48'),(2962,'webmsg','cmii-uav-alarm','alarm_notice_webmsg','ddd','${alarmObject}${alarmContent}','','web','','sys',1,'NORMAL',NULL,'2021090802','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2963,'email','cmii-uav-alarm','alarm_notice_email','ddd','${alarmObject}${alarmContent}','','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2021090803','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2964,'sms','cmii-uav-alarm','alarm_notice_sms_1','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090804','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2965,'sms','cmii-uav-alarm','alarm_notice_sms_2','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090805','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2966,'sms','cmii-uav-alarm','alarm_notice_sms_3','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090806','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2967,'sms','cmii-uav-alarm','alarm_notice_sms_4','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090807','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2968,'sms','cmii-uav-alarm','alarm_notice_sms_5','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090808','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2969,'sms','cmii-uav-alarm','alarm_notice_sms_elec','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090809','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2970,'sms','cmii-uav-alarm','alarm_notice_sms_speed','速度过快告警v1','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090810','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(2971,'sms','cmii-uav-mission','aijob_result_notice1','AI作业任务完成通知','AI作业任务完成通知','','mas',NULL,'sys',1,'NORMAL',NULL,'2021122301','ai作业完成通知',NULL,NULL,'2021-12-23 01:15:16','2021-12-23 01:15:16'),(2972,'sms','cmii-uav-mission','aijob_result_notice2','AI作业任务过程中发现目标通知','AI作业任务过程中发现目标通知',NULL,'mas',NULL,'sys',1,'NORMAL',NULL,'2021122302','AI任务过程中发现目标通知',NULL,NULL,'2021-12-23 01:17:44','2021-12-23 01:17:44'),(2973,'sms','cmii-uav-mission','mission_shareVideo','飞行监视视频分享','飞行监视视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/report/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022042401','飞行监视分享视频',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(2974,'sms','cmii-uav-notice','mission_area_alarm','管辖区域发生告警','管辖区域发生告警','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2}\r\n时间:${para3}\r\n描述:${para4} ${para5}\r\n状态:${para6}','mas',NULL,'sys',1,'NORMAL',NULL,'2022062801','管辖区域发生告警',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(2975,'sms','cmii-uav-notice','mission_area_alarm2','管辖区域发生告警优化版','管辖区域发生告警','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2} ${para3}\r\n时间:${para4}\r\n描述:${para5} ${para6}\r\n状态:${para7}','mas',NULL,'sys',1,'NORMAL',NULL,'2022083101','管辖区域发生告警',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(2976,'sms','cmii-uav-emergency','emergency_shareVideo','应急系统视频分享','应急系统视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/report/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022090101','飞行监视分享视频',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(2977,'sms','cmii-uav-mission','mission_shareVideo2','飞行监视视频分享2','飞行监视视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:https://${para1}.${para2}/share/#/share/${para3},提取码为:${para4}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022092301','飞行监视分享视频2',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(2978,'sms','cmii-uav-mission','mission_shareVideo3','飞行监视视频分享3','飞行监视视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022101101','飞行监视分享视频2',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(2979,'sms','cmii-uav-surveillance','control_apply_sms','控制权申请','您收到一条控制权申请!','尊敬的中移凌云用户,您收到一条控制权申请!\r\n用户【${para1} ${para2}****${para3}】申请无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/control/${para8}进行处理。','mas','2659581843b74a5991a607b0ca068b64','sys',1,'NORMAL',NULL,'2022102101','控制权申请',NULL,NULL,'2022-10-21 05:46:21','2022-10-21 05:46:21'),(2980,'sms','cmii-uav-surveillance','control_back_apply_sms','控制权归还申请','您收到一条控制权归还申请!','尊敬的中移凌云用户,您收到一条控制权归还申请!\r\n用户【${para1} ${para2}****${para3】申请归还无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/back/${para8}进行处理。','mas','69b54f65038a486e848a01b171ddcea3','sys',1,'NORMAL',NULL,'2022102102','控制权归还申请',NULL,NULL,'2022-10-21 05:48:21','2022-10-21 05:48:21'),(2981,'webmsg','cmii-uav-surveillance','control_apply_webmsg','控制权申请','您收到一条控制权申请!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102401','控制权申请',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(2982,'webmsg','cmii-uav-surveillance','control_apply_agree_webmsg','控制申请通过','控制权已移交给您!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102402','控制权申请通过',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(2983,'webmsg','cmii-uav-surveillance','control_taken_back_apply_webmsg','控制权归还申请','您收到一条控制权归还申请!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102403','控制权归还申请',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(2984,'webmsg','cmii-uav-surveillance','control_taken_back_webmsg','控制权被收回','控制权被收回!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102404','控制权被收回',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(2985,'webmsg','cmii-uav-surveillance','control_apply_ok_webmsg','控制权申请成功','控制权申请成功!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102701','控制权申请成功!',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(2986,'webmsg','cmii-uav-surveillance','control_taken_back_ok_webmsg','控制权归还成功','控制权已归还!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102702','控制权归还成功!',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(2987,'sms','cmii-uav-alarm','alarm_notice_sms_speed_1','速度过快告警v2','速度过快告警',NULL,'mas',NULL,'sys',1,'NORMAL',NULL,'2022112201','速度过快告警',NULL,NULL,'2022-11-22 08:15:56','2022-11-22 08:15:56'),(2988,'sms','cmii-uav-mission','aijob_result_notice1_1 ','AI作业任务完成通知(升级版)','AI作业任务完成通知','','mas',NULL,'sys',1,'NORMAL',NULL,'2022121201','ai作业完成通知',NULL,NULL,'2021-12-23 01:15:16','2021-12-23 01:15:16'),(2989,'sms','cmii-uav-mission','aijob_result_notice2_1','AI作业任务过程中发现目标通知(升级版)','AI作业任务过程中发现目标通知',NULL,'mas',NULL,'sys',1,'NORMAL',NULL,'2022121202','AI任务过程中发现目标通知',NULL,NULL,'2021-12-23 01:17:44','2021-12-23 01:17:44'),(2990,'sms','cmii-uav-industrial-portfolio','pubSec_shareVideo','侦察大屏无人机视频分享','侦察大屏无人机视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2023032901','侦察大屏无人机视频分享',NULL,NULL,'2023-03-29 06:04:18','2023-03-29 06:04:18'),(2991,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_40','侦察大屏分享警情地址31到40个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5}\r\n报警人:${para6}\r\n所属支队:${para7}','mas','ee6f102eb5574fceb7ef9a60d3b5698b','sys',1,'NORMAL',NULL,'2023033001','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(2992,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_10','侦察大屏分享警情地址1到10个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2}\r\n报警人:${para3}\r\n所属支队:${para4}','mas','5d02d06fc15449f885601f0ff91434fb','sys',1,'NORMAL',NULL,'2023033002','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(2993,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_20','侦察大屏分享警情地址11到20个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3}\r\n报警人:${para4}\r\n所属支队:${para5}','mas','7fb4e6e295b94ec48545cce8d221774b','sys',1,'NORMAL',NULL,'2023033003','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(2994,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_30','侦察大屏分享警情地址21到30个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4}\r\n报警人:${para5}\r\n所属支队:${para6}','mas','12a076a7035341128b34049950f5ffd2','sys',1,'NORMAL',NULL,'2023033004','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(2995,'sms','cmii-uav-yinji','yingji_noticesms','应急通信通知接入用户','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','mas','1ed5fc096aa54a2d864554aae34f0a81','sys',1,'NORMAL',NULL,'2023050801','应急通信短信通知',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(2996,'sms','cmii-uav-yinji','yingji_noticesms2','应急通信通知接入用户','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','mas','e64f1d5138804331baca2567e99c6f12','sys',1,'NORMAL',NULL,'2023050802','应急通信短信通知',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(2997,'webmsg','cmii-uav-surveillance','aijob_find_fire_webmsg','AI识别通知','AI识别通知','\r\n','web',NULL,'sys',1,'NORMAL',NULL,'2023052201','AI识别通知',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(2998,'webmsg','cmii-uav-surveillance','aijob_find_fire_nohover_webmsg','AI识别通知nohover','AI识别通知','\r\n','web',NULL,'sys',1,'NORMAL',NULL,'2023052202','AI识别通知nohover',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(2999,'sms','cmii-uav-mission','mission_shareVideo4','飞行视频分享4','飞行监视视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4}?extractCode=${para5}。','mas','827adf726fc247ceaa001821a93c34e1','sys',1,'NORMAL',NULL,'2023061201','飞行监视分享视频3',NULL,NULL,'2023-06-12 12:17:13','2023-06-12 12:17:13'),(3000,'sms','cmii-uav-process','bizproc_warn_sms','告警提示信息','告警提示信息','尊敬的中移凌云用户,您收到一条告警信息:\r\n告警环境:${para1}\r\n告警内容:${para2} ${para3}','mas','97c04f8be3624feeb5d91c6f7f73c8a8','sys',1,'NORMAL',NULL,'2023072001','告警提示',NULL,NULL,'2023-07-20 09:43:41','2023-07-20 09:43:41'),(3001,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_40B','侦察大屏分享警情地址31到40个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5} ${para6}\r\n报警人:${para7} ${para8}\r\n所属支队:${para9}','mas','851bac4729da40379b9d61f287189a3a','sys',1,'NORMAL',NULL,'2023080401','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3002,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_10B','侦察大屏分享警情地址1到10个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2} ${para3}\r\n报警人:${para4} ${para5}\r\n所属支队:${para6}','mas','1d4db44455ca4235b16292b9652bf25d','sys',1,'NORMAL',NULL,'2023080402','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3003,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_20B','侦察大屏分享警情地址11到20个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3} ${para4}\r\n报警人:${para5} ${para6}\r\n所属支队:${para7}','mas','e68b71b7b3eb44aaa25f4df187147e1e','sys',1,'NORMAL',NULL,'2023080403','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3004,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_30B','侦察大屏分享警情地址21到30个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4} ${para5}\r\n报警人:${para6} ${para7}\r\n所属支队:${para8}','mas','31bebf7fb5f44a8397cb6bc104503361','sys',1,'NORMAL',NULL,'2023080404','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3005,'webmsg','cmii-uav-user','user_pwd_modify_suc_webmsg','密码修改成功','密码修改成功','尊敬的中移凌云用户:\r\n您的密码已修改成功,请牢记您的密码,以便登录使用。','web',NULL,'sys',0,'NORMAL',NULL,'2023082401','密码修改成功',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3006,'sms','cmii-uav-mission','mission_shareVideoEm','应急通信保障大屏视频分享','应急通信保障大屏视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/communication/${para4}?extractCode=${para5}&uavCode=${para6}。','mas','8feb44e8d0934c13a3f72b43c49c7f7c','sys',1,'NORMAL',NULL,'2023092701','应急大屏分享',NULL,NULL,'2023-09-27 10:03:03','2023-09-27 10:03:03'),(3007,'sms','cmii-uas-lifecycle','jg_sms_login','政府监管登录','政府监管登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','be3961c9736a4634b7257a9cee1a5da8','sys',1,'NORMAL',NULL,'2024032501','政府监管登录',NULL,NULL,'2024-03-25 01:37:50','2024-03-25 01:37:50'),(3008,'sms','cmii-uas-lifecycle','jg_sms_modifyphone','政府监管修改手机号','政府监管修改手机号','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','9a35510eab9d4b58b65f85b9e61fd2c1','sys',1,'NORMAL',NULL,'2024032502','政府监管修改手机号',NULL,NULL,'2024-03-25 01:49:23','2024-03-25 01:49:23'),(3009,'sms','cmii-uas-lifecycle','jg_updatecode','政府监管设备校验码更新','政府监管设备校验码更新','设备标识为${para1}的无人机,已被注销,校验码更新为${para2}。','mas','ae13526874544f66bc18ae527e516f11','sys',1,'NORMAL',NULL,'2024032503','政府监管设备校验码更新',NULL,NULL,'2024-03-25 02:04:05','2024-03-25 02:04:05'),(3010,'sms','cmii-uas-lifecycle','jg_sms_findpwd','政府监管找回密码','政府监管找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','5a228b4eba1b421e8c68d6c402b7cd97','sys',1,'NORMAL',NULL,'2024032504','政府监管找回密码',NULL,NULL,'2024-03-25 02:07:54','2024-03-25 02:07:54'),(3011,'sms','cmii-uas-lifecycle','jg_sms_reg','政府监管注册','政府监管注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','f3a6f892dac44af39a2baa119283195d','sys',1,'NORMAL',NULL,'2024032505','政府监管注册',NULL,NULL,'2024-03-25 02:11:54','2024-03-25 02:11:54'),(3012,'sms','cmii-uas-lifecycle','jg_regplane','政府监管设备身份验证','政府监管设备身份验证','验证码:${para1},您正在进行身份验证。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','255cbc702f6f4936be1025239551fea1','sys',1,'NORMAL',NULL,'2024032506','政府监管设备身份验证',NULL,NULL,'2024-03-25 02:14:46','2024-03-25 02:14:46'),(3013,'sms','cmii-uas-lifecycle','jg_sms_bindnewphone','政府监管绑定新手机号','政府监管绑定新手机号','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','4312f0e063364075acef17cd149841b1','sys',1,'NORMAL',NULL,'2024032507','政府监管绑定新手机号',NULL,NULL,'2024-03-25 02:17:17','2024-03-25 02:17:17'),(3014,'sms','cmii-uas-lifecycle','jg_dongtai','发布了一条新的动态提醒','你有一条新的动态提醒','凌云动态发布了一条新的动态,请登录电脑端查看。','mas','3267348d0ac54a0498b9f33f71fee555','sys',1,'NORMAL',NULL,'2024042301','发布了一条新的动态提醒',NULL,NULL,'2024-04-23 02:20:44','2024-04-23 02:20:44'),(3015,'sms','cmii-uav-user','validatecode','发送验证码','发送验证码','验证码:${para1},3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','ded6b1eeeb924bd7935644fb21967c4b','sys',1,'NORMAL',NULL,'2024042601','通用验证码',NULL,NULL,'2024-04-26 07:00:33','2024-04-26 07:00:33'),(3016,'sms','cmii-uav-lifecycle','jg_tonggan_notice','发现目标通知','发现目标通知','5G-A通感一体平台提醒:【${para1} ${para2}】侦测到飞行物,编号【#{para3}】,位置【${para4},${para5},${para6}】,所属基站为【${para7}】飞行轨迹详情可登录平台进行查看','mas','9053c4226dc2468d87f9aec7f05b8470','sys',1,'NORMAL',NULL,'2024042602','发现目标通知',NULL,NULL,'2024-04-26 07:35:57','2024-04-26 07:35:57'),(3017,'sms','cmii-uas-lifecycle','jg_onekey_cleanair','一键净空通知','一键净空通知','无人机${para1},监管员已进行一键净空操作,请尽快处理。','mas','dcd6cae37ddc4f31ac86ef8548b1532c','biz',1,'NORMAL',NULL,'2024070501','一键净空通知',NULL,NULL,'2024-07-05 06:03:04','2024-07-05 06:03:04'),(3018,'sms','cmii-uas-lifecycle','jg_warn_handle1_notice','告警处置1个告警通知','告警处置通知','无人机${para1},${para2},监管员已进行${para3}操作,处置位置:${para4},${para5}','mas','a41df66417fd471394a11d74a8d18660','biz',1,'NORMAL',NULL,'2024070502','告警处置通知',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3019,'sms','cmii-uas-lifecycle','jg_warn_handle2_notice','告警处置2个告警通知','告警处置通知','无人机${para1},${para2}/${para3},监管员已进行${para4}操作,处置位置:${para5},${para6}','mas','d0daf289f2b64fb9afac64c73c593c24','biz',1,'NORMAL',NULL,'2024070503','告警处置通知',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3020,'sms','cmii-uas-lifecycle','jg_warn_handle3_notice','告警处置3个告警通知','告警处置通知','无人机${para1},${para2}/${para3}/${para4},监管员已进行${para5}操作,处置位置:${para6},${para7}','mas','54e514da6e3b44729e6c980b6cf1066b','biz',1,'NORMAL',NULL,'2024070504','告警处置通知',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3021,'sms','cmii-uav-alarm','sec_alarm_sms','安全告警','安全告警','尊敬的中移凌云用户:\r\n平台监测到一个${para1}告警;\r\n发现时间:${para2} ${para3};\r\n为确保飞行安全,请你尽快处理。','mas','d7a711e8b18a415aaa96bd2a8cec4587','sys',1,'NORMAL',NULL,'2024070120','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3022,'email','cmii-uav-alarm','sec_alarm_email','安全告警','安全告警','','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2024070121','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3023,'webmsg','cmii-uav-alarm','sec_alarm_webmsg','安全告警','安全告警','','web','','sys',1,'NORMAL',NULL,'2024070122','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3024,'webmsg','cmii-uav-mission','zjjt_create_task_webmsg','派发作业通知','派发作业通知','${para1}派发了一条作业,请尽快处理','web',NULL,'biz',1,'NORMAL',NULL,'2024072201','派发作业通知',NULL,NULL,'2024-07-21 16:00:00','2024-07-21 16:00:00'),(3025,'sms','cmii-uas-lifecycle','jg_warn_handle_noti','处置无人机迫降&返航','处置无人机迫降&返航','无人机${para1},监管员已进行${para2}操作,处置位置:${para3},${para4}','mas','ff25df878007456081f5f057dd077a4f','biz',1,'NORMAL',NULL,'2024072901','无人机处置迫降&返航',NULL,NULL,'2024-07-29 07:46:15','2024-07-29 07:46:15'),(3026,'sms','cmii-uav-emergency','emergency_duty_task','您有一个值班任务','您有一个值班任务','您于${para1}有一个值班任务,详情请登录中移凌云查看。','mas','06e79370ec314a9e8baadb55570ed345','biz',1,'NORMAL',NULL,'2024081401','您有一个值班任务通知',NULL,NULL,'2024-08-14 06:12:30','2024-08-14 06:12:30'); +INSERT INTO `msg_tpl` VALUES (3027,'email','test','test-email-tpl','测试Email模板','Hi${name}中移凌云向你发送了一封邮件2','Hi ${name} 点击查看 ${content}','cmii-uav-email-server',NULL,'sys',0,'NORMAL',NULL,'2020122111030112345601','测试模板,向某个用户发送电子邮件',NULL,NULL,'2020-08-10 06:56:19','2020-08-10 06:02:49'),(3028,'sms','test','sms-verification-code ','中移凌云验证码',NULL,'验证码${para1},您正在进行中移凌云身份验证,工作人员不会索取该验证码,请勿泄漏!','aliyun','SMS_200175939','sys',0,'NORMAL',NULL,'2020122111030112345602','测试模板,向某个用户发送短信',NULL,NULL,'2020-08-20 02:32:58','2020-08-20 02:32:58'),(3029,'sms','uav-user','sms_reg','注册','注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','8fcde17d01384f83bf3cb3efc379e207','sys',0,'NORMAL',NULL,'2020122111030112345603','注册',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(3030,'sms','uav-user','sms_login','登录','登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','b9e3985bc47b4376891da5cebdb82f25','sys',0,'NORMAL',NULL,'2020122111030112345604','登录',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(3031,'sms','uav-user','sms_findpwd','找回密码','找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','f8f2edd4435042cfb87cf9a63cd4fcab','sys',0,'NORMAL',NULL,'2020122111030112345605','找回密码',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(3032,'sms','uav-user','sms_modifyphone','修改手机号-原手机号验证','修改手机号-原手机号验证','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','e4ea811efa0f4df3a640d21cc9545771','sys',0,'NORMAL',NULL,'2020122111030112345606','修改手机号-原手机号验证',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(3033,'sms','uav-user','sms_bindnewphone','修改手机号-新手机号绑定','修改手机号-新手机号绑定','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','26b568aa988d4f97beaa7d0b6311c583','sys',0,'NORMAL',NULL,'2020122111030112345607','修改手机号-新手机号绑定',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(3034,'email','uav-user','email_modifyemail','邮箱修改确认','中移凌云邮箱修改确认通知','\r\n\r\n \r\n \r\n \r\n 中移凌云邮箱修改确认通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您申请了邮箱修改,请在24小时以内确认新邮箱,如未做任何操作,系统将保留原邮箱。\r\n

\r\n

\r\n \r\n 立即确认新邮箱\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${url}\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n','cmii-uav-email-server','','sys',0,'NORMAL',NULL,'2020122111030112345608','邮箱修改确认',NULL,NULL,'2020-08-26 08:02:45','2020-08-26 08:02:45'),(3035,'sms','test app id ','tpl1598430143447','测试模板名称','测试模板名称','Hi ${para1} 点击查看${para2}','aliyun',NULL,'sys',0,'NORMAL',NULL,'2020122111030112345609','测试模板备注',NULL,NULL,'2020-08-26 08:22:23','2020-08-26 08:22:23'),(3036,'sms','cmii-uav-developer','open_sms_reg','注册','注册','验证码:${para1},您正在进行开放平台注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','bd384678c96b4ebbb1aba87902c67e40','sys',0,'NORMAL',NULL,'2020122111030112345613','注册',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(3037,'sms','cmii-uav-developer','open_sms_login','登录','登录','验证码:${para1},您正在进行开放平台登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','661b38c8440a4acf941672409a993a1d','sys',0,'NORMAL',NULL,'2020122111030112345614','登录',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(3038,'sms','cmii-uav-developer','open_sms_findpwd','找回密码','找回密码','验证码:${para1},您正在进行开放平台找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','e007c512a52a4b83adc867afc5c9bf12','sys',0,'NORMAL',NULL,'2020122111030112345615','找回密码',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(3039,'sms','cmii-uav-developer','open_sms_modifyphone','修改手机号-原手机号验证','修改手机号-原手机号验证','验证码:${para1},您正在进行开放平台修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','8dabb1c670994f50bc4e66c676b41db0','sys',0,'NORMAL',NULL,'2020122111030112345616','修改手机号-原手机号验证',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(3040,'sms','cmii-uav-developer','open_sms_bindnewphone','修改手机号-新手机号绑定','修改手机号-新手机号绑定','验证码:${para1},您正在进行开放平台手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','cd2fb4efc0b54436b3fae6d6780c8817','sys',0,'NORMAL',NULL,'2020122111030112345617','修改手机号-新手机号绑定',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(3041,'webmsg','test','test-webmsg-tpl','测试WebMsg模板','Hi${name}中移凌云向你发送了一封站内信','Hi ${name} 点击查看 ${content}','web','','biz',0,'NORMAL',NULL,'2020122111030112345610','发送站内信',NULL,NULL,'2020-11-06 08:47:27','2020-10-22 03:39:25'),(3042,'email','uav_process','process_notice','流程通知','${emailTitle}','\r\n\r\n\r\n \r\n \r\n 中移凌云审批系统通知\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n 您有新的审批待处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n \r\n 您申请的 ${processName} 流程 有新的审批进度!\r\n \r\n (${eventTime})\r\n

\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n 有审批流程需要您介入处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n https://${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n','cmii-uav-email-server',NULL,'biz',0,'NORMAL',NULL,'2020122111030112345611','通知待审批人',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3043,'webmsg','uav_process','process_notice_webmsg','站内信流程通知','${emailTitle}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n
','cmii-uav-email-server',NULL,'biz',0,'NORMAL',NULL,'2020122111030112345612','通知待审批人',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3044,'email','cmii-uav-mission','mission_notice_email','中移凌云定时作业通知','${emailTitle}','\r\n\r\n \r\n \r\n \r\n 中移凌云定时作业通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃\r\n ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n \r\n\r\n','cmii-uav-email-server',NULL,'biz',1,'NORMAL',NULL,'20210319170600','中移凌云定时作业通知',NULL,NULL,'2021-03-19 09:07:04','2021-03-19 09:07:04'),(3045,'webmsg','cmii-uav-mission','mission_notice_webmsg','中移凌云定时作业通知','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n','web',NULL,'biz',0,'NORMAL',NULL,'20210319170601','中移凌云定时作业通知',NULL,NULL,'2021-03-19 09:45:45','2021-03-19 09:45:45'),(3046,'sms','cmii-uav-mission','mission-timerMissionStart','中移凌云定时作业开始通知','定时作业开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已经开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}','mas','bf304ef675c5424aa8b5765d8f330996','biz',0,'NORMAL',NULL,'2021032201','定时作业开始通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(3047,'sms','cmii-uav-mission','mission-timerMissionFinish','定时作业结束通知','定时作业结束通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已结束。\r\n结束时间:{[para4:字母+数字+英文符号,总长度20]}','mas','c3173ca768b445299ef4faa1d9f75457','biz',0,'NORMAL',NULL,'2021032202','定时作业结束通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(3048,'sms','cmii-uav-mission','mission-tenMinutesEarly','中移凌云定时作业即将开始通知','中移凌云定时作业即将开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}即将开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}\r\n如非本人操作,请立即前往平台进行确认。','mas','43983dee913746e1b2e3787ea1ad6918','biz',0,'NORMAL',NULL,'2021032203','定时作业即将开始通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(3049,'sms','cmii-uav-mission','mission-timerMissionStartFail','中移凌云定时作业启动失败通知','中移凌云定时作业启动失败通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}启动失败,请前往平台查看详情。','mas','25838ae2cb43411dae591912fc2ae20e','biz',0,'NORMAL',NULL,'2021032204','中移凌云定时作业启动失败通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(3050,'sms','cmii-uav-mission','temperatureWarningTplCodeWeb','中移凌云定时作业执行异常通知','中移凌云定时作业执行异常通知','尊敬的中移凌云用户!您创建的定时作业${para1} ${para2} ${para3}在执行中,发现一处异常。\r\n发现时间:${para4}\r\n位置:航点${para5}\r\n温度/温度阈值:${para6}℃/${para7}℃${para8} ${para9}','mas','475d94964dc24309a5147997ed1e9769','biz',1,'NORMAL',NULL,'2021032205','定时作业执行异常通知',NULL,NULL,'2021-03-19 09:48:41','2021-03-19 09:48:41'),(3051,'webmsg','cmii-uav-mission','mission_notice_webmsg_e','中移凌云定时作业通知','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n','web',NULL,'biz',1,'NORMAL',NULL,'20210319170602','中移凌云定时作业通知',NULL,NULL,'2021-03-19 09:45:45','2021-03-19 09:45:45'),(3052,'sms','yihang_sms','yh_login','亿航登录验证码','登录验证码','验证码:${para1},您正在登录,若非本人操作,请勿泄露。','mas','c8b06af9063b436287a68ed8e1f79ebb','sys',0,'NORMAL',NULL,'2021052101','中移凌云-亿航登录验证码',NULL,NULL,'2021-05-21 06:57:08','2021-05-21 06:57:08'),(3053,'sms','yihang_sms','yh_peisong_notice','亿航配送通知','配送通知','${para1}您好,您订单号为${para2}的快件正在配送中,可点击http://${para3}/${para4}链接查看配送情况。','mas','8f4416797b9246808799c46a13eb85f9','sys',0,'NORMAL',NULL,'2021052102','中移领云-亿航配送通知',NULL,NULL,'2021-05-21 07:08:31','2021-05-21 07:08:31'),(3054,'sms','yihang_sms','yh_peisong_wb_notice','亿航取件通知','取件通知','${para1}您好,您订单号为${para2}的快件已配送到${para3}智能柜,取件码为${para4},请凭取件码前往智能柜进行取件。','mas','3950c06ca7af435c93b41050fd30b8ca','sys',0,'NORMAL',NULL,'2021052103','中移凌云-取件通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3055,'sms','test app id ','tpl1623231209965','测试模板名称',NULL,'Hi ${para1} 点击查看${para2}','aliyun','tpl1623231209965','sys',1,'NORMAL',NULL,'20210609173329bc0hg401','测试模板备注',NULL,NULL,'2021-06-09 09:33:29','2021-06-09 09:33:29'),(3056,'sms','cmii-uav-user','pwd_will_expire_sms','密码即将过期短信通知','密码即将过期通知','您的密码将在一周后过期,请及时修改。','mas',NULL,'sys',1,'NORMAL',NULL,'2021090901','密码即将过期通知',NULL,NULL,'2021-09-09 04:01:48','2021-09-09 04:01:48'),(3057,'sms','cmii-uav-user','pwd_expired_sms','密码过期短信通知','密码过期通知','您的密码已过期,请及时修改。','mas',NULL,'sys',1,'NORMAL',NULL,'2021090902','密码过期通知',NULL,NULL,'2021-09-09 04:56:33','2021-09-09 04:56:33'),(3058,'email','cmii-uav-user','pwd_will_expire_email','密码即将过期邮件通知','您的密码将在一周后过期','\r\n\r\n \r\n \r\n \r\n 您的密码将在一周后过期\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您的密码将在一周后过期,请及时修改。\r\n

\r\n

\r\n \r\n 跳转连接\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${host}/#/personalInfo\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n ','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2021090903','密码即将过期邮件通知模板',NULL,NULL,'2021-09-09 05:04:01','2021-09-09 05:04:01'),(3059,'email','cmii-uav-user','pwd_expired_email','密码过期邮件通知','您的密码已过期','\r\n\r\n \r\n \r\n \r\n 您的密码已过期\r\n \r\n \r\n \r\n \r\n \r\n ','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2021-90904','密码过期邮件通知模板',NULL,NULL,'2021-09-09 05:05:48','2021-09-09 05:05:48'),(3060,'webmsg','cmii-uav-alarm','alarm_notice_webmsg','ddd','${alarmObject}${alarmContent}','','web','','sys',1,'NORMAL',NULL,'2021090802','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3061,'email','cmii-uav-alarm','alarm_notice_email','ddd','${alarmObject}${alarmContent}','','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2021090803','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3062,'sms','cmii-uav-alarm','alarm_notice_sms_1','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090804','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3063,'sms','cmii-uav-alarm','alarm_notice_sms_2','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090805','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3064,'sms','cmii-uav-alarm','alarm_notice_sms_3','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090806','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3065,'sms','cmii-uav-alarm','alarm_notice_sms_4','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090807','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3066,'sms','cmii-uav-alarm','alarm_notice_sms_5','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090808','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3067,'sms','cmii-uav-alarm','alarm_notice_sms_elec','ddd','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090809','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3068,'sms','cmii-uav-alarm','alarm_notice_sms_speed','速度过快告警v1','','','mas',NULL,'sys',1,'NORMAL',NULL,'2021090810','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3069,'sms','cmii-uav-mission','aijob_result_notice1','AI作业任务完成通知','AI作业任务完成通知','','mas',NULL,'sys',1,'NORMAL',NULL,'2021122301','ai作业完成通知',NULL,NULL,'2021-12-23 01:15:16','2021-12-23 01:15:16'),(3070,'sms','cmii-uav-mission','aijob_result_notice2','AI作业任务过程中发现目标通知','AI作业任务过程中发现目标通知',NULL,'mas',NULL,'sys',1,'NORMAL',NULL,'2021122302','AI任务过程中发现目标通知',NULL,NULL,'2021-12-23 01:17:44','2021-12-23 01:17:44'),(3071,'sms','cmii-uav-mission','mission_shareVideo','飞行监视视频分享','飞行监视视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/report/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022042401','飞行监视分享视频',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(3072,'sms','cmii-uav-notice','mission_area_alarm','管辖区域发生告警','管辖区域发生告警','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2}\r\n时间:${para3}\r\n描述:${para4} ${para5}\r\n状态:${para6}','mas',NULL,'sys',1,'NORMAL',NULL,'2022062801','管辖区域发生告警',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(3073,'sms','cmii-uav-notice','mission_area_alarm2','管辖区域发生告警优化版','管辖区域发生告警','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2} ${para3}\r\n时间:${para4}\r\n描述:${para5} ${para6}\r\n状态:${para7}','mas',NULL,'sys',1,'NORMAL',NULL,'2022083101','管辖区域发生告警',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(3074,'sms','cmii-uav-emergency','emergency_shareVideo','应急系统视频分享','应急系统视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/report/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022090101','飞行监视分享视频',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(3075,'sms','cmii-uav-mission','mission_shareVideo2','飞行监视视频分享2','飞行监视视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:https://${para1}.${para2}/share/#/share/${para3},提取码为:${para4}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022092301','飞行监视分享视频2',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(3076,'sms','cmii-uav-mission','mission_shareVideo3','飞行监视视频分享3','飞行监视视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2022101101','飞行监视分享视频2',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(3077,'sms','cmii-uav-surveillance','control_apply_sms','控制权申请','您收到一条控制权申请!','尊敬的中移凌云用户,您收到一条控制权申请!\r\n用户【${para1} ${para2}****${para3}】申请无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/control/${para8}进行处理。','mas','2659581843b74a5991a607b0ca068b64','sys',1,'NORMAL',NULL,'2022102101','控制权申请',NULL,NULL,'2022-10-21 05:46:21','2022-10-21 05:46:21'),(3078,'sms','cmii-uav-surveillance','control_back_apply_sms','控制权归还申请','您收到一条控制权归还申请!','尊敬的中移凌云用户,您收到一条控制权归还申请!\r\n用户【${para1} ${para2}****${para3】申请归还无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/back/${para8}进行处理。','mas','69b54f65038a486e848a01b171ddcea3','sys',1,'NORMAL',NULL,'2022102102','控制权归还申请',NULL,NULL,'2022-10-21 05:48:21','2022-10-21 05:48:21'),(3079,'webmsg','cmii-uav-surveillance','control_apply_webmsg','控制权申请','您收到一条控制权申请!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102401','控制权申请',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(3080,'webmsg','cmii-uav-surveillance','control_apply_agree_webmsg','控制申请通过','控制权已移交给您!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102402','控制权申请通过',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(3081,'webmsg','cmii-uav-surveillance','control_taken_back_apply_webmsg','控制权归还申请','您收到一条控制权归还申请!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102403','控制权归还申请',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(3082,'webmsg','cmii-uav-surveillance','control_taken_back_webmsg','控制权被收回','控制权被收回!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102404','控制权被收回',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(3083,'webmsg','cmii-uav-surveillance','control_apply_ok_webmsg','控制权申请成功','控制权申请成功!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102701','控制权申请成功!',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(3084,'webmsg','cmii-uav-surveillance','control_taken_back_ok_webmsg','控制权归还成功','控制权已归还!',NULL,'web',NULL,'biz',1,'NORMAL',NULL,'2022102702','控制权归还成功!',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(3085,'sms','cmii-uav-alarm','alarm_notice_sms_speed_1','速度过快告警v2','速度过快告警',NULL,'mas',NULL,'sys',1,'NORMAL',NULL,'2022112201','速度过快告警',NULL,NULL,'2022-11-22 08:15:56','2022-11-22 08:15:56'),(3086,'sms','cmii-uav-mission','aijob_result_notice1_1 ','AI作业任务完成通知(升级版)','AI作业任务完成通知','','mas',NULL,'sys',1,'NORMAL',NULL,'2022121201','ai作业完成通知',NULL,NULL,'2021-12-23 01:15:16','2021-12-23 01:15:16'),(3087,'sms','cmii-uav-mission','aijob_result_notice2_1','AI作业任务过程中发现目标通知(升级版)','AI作业任务过程中发现目标通知',NULL,'mas',NULL,'sys',1,'NORMAL',NULL,'2022121202','AI任务过程中发现目标通知',NULL,NULL,'2021-12-23 01:17:44','2021-12-23 01:17:44'),(3088,'sms','cmii-uav-industrial-portfolio','pubSec_shareVideo','侦察大屏无人机视频分享','侦察大屏无人机视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','mas',NULL,'sys',1,'NORMAL',NULL,'2023032901','侦察大屏无人机视频分享',NULL,NULL,'2023-03-29 06:04:18','2023-03-29 06:04:18'),(3089,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_40','侦察大屏分享警情地址31到40个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5}\r\n报警人:${para6}\r\n所属支队:${para7}','mas','ee6f102eb5574fceb7ef9a60d3b5698b','sys',1,'NORMAL',NULL,'2023033001','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3090,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_10','侦察大屏分享警情地址1到10个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2}\r\n报警人:${para3}\r\n所属支队:${para4}','mas','5d02d06fc15449f885601f0ff91434fb','sys',1,'NORMAL',NULL,'2023033002','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3091,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_20','侦察大屏分享警情地址11到20个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3}\r\n报警人:${para4}\r\n所属支队:${para5}','mas','7fb4e6e295b94ec48545cce8d221774b','sys',1,'NORMAL',NULL,'2023033003','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3092,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_30','侦察大屏分享警情地址21到30个字符(4.2版本)','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4}\r\n报警人:${para5}\r\n所属支队:${para6}','mas','12a076a7035341128b34049950f5ffd2','sys',1,'NORMAL',NULL,'2023033004','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3093,'sms','cmii-uav-yinji','yingji_noticesms','应急通信通知接入用户','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','mas','1ed5fc096aa54a2d864554aae34f0a81','sys',1,'NORMAL',NULL,'2023050801','应急通信短信通知',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(3094,'sms','cmii-uav-yinji','yingji_noticesms2','应急通信通知接入用户','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','mas','e64f1d5138804331baca2567e99c6f12','sys',1,'NORMAL',NULL,'2023050802','应急通信短信通知',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(3095,'webmsg','cmii-uav-surveillance','aijob_find_fire_webmsg','AI识别通知','AI识别通知','\r\n','web',NULL,'sys',1,'NORMAL',NULL,'2023052201','AI识别通知',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3096,'webmsg','cmii-uav-surveillance','aijob_find_fire_nohover_webmsg','AI识别通知nohover','AI识别通知','\r\n','web',NULL,'sys',1,'NORMAL',NULL,'2023052202','AI识别通知nohover',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3097,'sms','cmii-uav-mission','mission_shareVideo4','飞行视频分享4','飞行监视视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4}?extractCode=${para5}。','mas','827adf726fc247ceaa001821a93c34e1','sys',1,'NORMAL',NULL,'2023061201','飞行监视分享视频3',NULL,NULL,'2023-06-12 12:17:13','2023-06-12 12:17:13'),(3098,'sms','cmii-uav-process','bizproc_warn_sms','告警提示信息','告警提示信息','尊敬的中移凌云用户,您收到一条告警信息:\r\n告警环境:${para1}\r\n告警内容:${para2} ${para3}','mas','97c04f8be3624feeb5d91c6f7f73c8a8','sys',1,'NORMAL',NULL,'2023072001','告警提示',NULL,NULL,'2023-07-20 09:43:41','2023-07-20 09:43:41'),(3099,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_40B','侦察大屏分享警情地址31到40个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5} ${para6}\r\n报警人:${para7} ${para8}\r\n所属支队:${para9}','mas','851bac4729da40379b9d61f287189a3a','sys',1,'NORMAL',NULL,'2023080401','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3100,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_10B','侦察大屏分享警情地址1到10个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2} ${para3}\r\n报警人:${para4} ${para5}\r\n所属支队:${para6}','mas','1d4db44455ca4235b16292b9652bf25d','sys',1,'NORMAL',NULL,'2023080402','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3101,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_20B','侦察大屏分享警情地址11到20个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3} ${para4}\r\n报警人:${para5} ${para6}\r\n所属支队:${para7}','mas','e68b71b7b3eb44aaa25f4df187147e1e','sys',1,'NORMAL',NULL,'2023080403','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3102,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_30B','侦察大屏分享警情地址21到30个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4} ${para5}\r\n报警人:${para6} ${para7}\r\n所属支队:${para8}','mas','31bebf7fb5f44a8397cb6bc104503361','sys',1,'NORMAL',NULL,'2023080404','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3103,'webmsg','cmii-uav-user','user_pwd_modify_suc_webmsg','密码修改成功','密码修改成功','尊敬的中移凌云用户:\r\n您的密码已修改成功,请牢记您的密码,以便登录使用。','web',NULL,'sys',0,'NORMAL',NULL,'2023082401','密码修改成功',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3104,'sms','cmii-uav-mission','mission_shareVideoEm','应急通信保障大屏视频分享','应急通信保障大屏视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/communication/${para4}?extractCode=${para5}&uavCode=${para6}。','mas','8feb44e8d0934c13a3f72b43c49c7f7c','sys',1,'NORMAL',NULL,'2023092701','应急大屏分享',NULL,NULL,'2023-09-27 10:03:03','2023-09-27 10:03:03'),(3105,'sms','cmii-uas-lifecycle','jg_sms_login','政府监管登录','政府监管登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','be3961c9736a4634b7257a9cee1a5da8','sys',1,'NORMAL',NULL,'2024032501','政府监管登录',NULL,NULL,'2024-03-25 01:37:50','2024-03-25 01:37:50'),(3106,'sms','cmii-uas-lifecycle','jg_sms_modifyphone','政府监管修改手机号','政府监管修改手机号','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','9a35510eab9d4b58b65f85b9e61fd2c1','sys',1,'NORMAL',NULL,'2024032502','政府监管修改手机号',NULL,NULL,'2024-03-25 01:49:23','2024-03-25 01:49:23'),(3107,'sms','cmii-uas-lifecycle','jg_updatecode','政府监管设备校验码更新','政府监管设备校验码更新','设备标识为${para1}的无人机,已被注销,校验码更新为${para2}。','mas','ae13526874544f66bc18ae527e516f11','sys',1,'NORMAL',NULL,'2024032503','政府监管设备校验码更新',NULL,NULL,'2024-03-25 02:04:05','2024-03-25 02:04:05'),(3108,'sms','cmii-uas-lifecycle','jg_sms_findpwd','政府监管找回密码','政府监管找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','5a228b4eba1b421e8c68d6c402b7cd97','sys',1,'NORMAL',NULL,'2024032504','政府监管找回密码',NULL,NULL,'2024-03-25 02:07:54','2024-03-25 02:07:54'),(3109,'sms','cmii-uas-lifecycle','jg_sms_reg','政府监管注册','政府监管注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','f3a6f892dac44af39a2baa119283195d','sys',1,'NORMAL',NULL,'2024032505','政府监管注册',NULL,NULL,'2024-03-25 02:11:54','2024-03-25 02:11:54'),(3110,'sms','cmii-uas-lifecycle','jg_regplane','政府监管设备身份验证','政府监管设备身份验证','验证码:${para1},您正在进行身份验证。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','255cbc702f6f4936be1025239551fea1','sys',1,'NORMAL',NULL,'2024032506','政府监管设备身份验证',NULL,NULL,'2024-03-25 02:14:46','2024-03-25 02:14:46'),(3111,'sms','cmii-uas-lifecycle','jg_sms_bindnewphone','政府监管绑定新手机号','政府监管绑定新手机号','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','4312f0e063364075acef17cd149841b1','sys',1,'NORMAL',NULL,'2024032507','政府监管绑定新手机号',NULL,NULL,'2024-03-25 02:17:17','2024-03-25 02:17:17'),(3112,'sms','cmii-uas-lifecycle','jg_dongtai','发布了一条新的动态提醒','你有一条新的动态提醒','凌云动态发布了一条新的动态,请登录电脑端查看。','mas','3267348d0ac54a0498b9f33f71fee555','sys',1,'NORMAL',NULL,'2024042301','发布了一条新的动态提醒',NULL,NULL,'2024-04-23 02:20:44','2024-04-23 02:20:44'),(3113,'sms','cmii-uav-user','validatecode','发送验证码','发送验证码','验证码:${para1},3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','ded6b1eeeb924bd7935644fb21967c4b','sys',1,'NORMAL',NULL,'2024042601','通用验证码',NULL,NULL,'2024-04-26 07:00:33','2024-04-26 07:00:33'),(3114,'sms','cmii-uav-lifecycle','jg_tonggan_notice','发现目标通知','发现目标通知','5G-A通感一体平台提醒:【${para1} ${para2}】侦测到飞行物,编号【#{para3}】,位置【${para4},${para5},${para6}】,所属基站为【${para7}】飞行轨迹详情可登录平台进行查看','mas','9053c4226dc2468d87f9aec7f05b8470','sys',1,'NORMAL',NULL,'2024042602','发现目标通知',NULL,NULL,'2024-04-26 07:35:57','2024-04-26 07:35:57'),(3115,'sms','cmii-uas-lifecycle','jg_onekey_cleanair','一键净空通知','一键净空通知','无人机${para1},监管员已进行一键净空操作,请尽快处理。','mas','dcd6cae37ddc4f31ac86ef8548b1532c','biz',1,'NORMAL',NULL,'2024070501','一键净空通知',NULL,NULL,'2024-07-05 06:03:04','2024-07-05 06:03:04'),(3116,'sms','cmii-uas-lifecycle','jg_warn_handle1_notice','告警处置1个告警通知','告警处置通知','无人机${para1},${para2},监管员已进行${para3}操作,处置位置:${para4},${para5}','mas','a41df66417fd471394a11d74a8d18660','biz',1,'NORMAL',NULL,'2024070502','告警处置通知',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3117,'sms','cmii-uas-lifecycle','jg_warn_handle2_notice','告警处置2个告警通知','告警处置通知','无人机${para1},${para2}/${para3},监管员已进行${para4}操作,处置位置:${para5},${para6}','mas','d0daf289f2b64fb9afac64c73c593c24','biz',1,'NORMAL',NULL,'2024070503','告警处置通知',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3118,'sms','cmii-uas-lifecycle','jg_warn_handle3_notice','告警处置3个告警通知','告警处置通知','无人机${para1},${para2}/${para3}/${para4},监管员已进行${para5}操作,处置位置:${para6},${para7}','mas','54e514da6e3b44729e6c980b6cf1066b','biz',1,'NORMAL',NULL,'2024070504','告警处置通知',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3119,'sms','cmii-uav-alarm','sec_alarm_sms','安全告警','安全告警','尊敬的中移凌云用户:\r\n平台监测到一个${para1}告警;\r\n发现时间:${para2} ${para3};\r\n为确保飞行安全,请您尽快处理。','mas','41373a17a8f84e4ca11b9c3c8fcf8dc5','sys',1,'NORMAL',NULL,'2024070120','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3120,'email','cmii-uav-alarm','sec_alarm_email','安全告警','安全告警','','cmii-uav-email-server',NULL,'sys',1,'NORMAL',NULL,'2024070121','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3121,'webmsg','cmii-uav-alarm','sec_alarm_webmsg','安全告警','安全告警','','web','','sys',1,'NORMAL',NULL,'2024070122','告警通知',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3122,'webmsg','cmii-uav-mission','zjjt_create_task_webmsg','派发作业通知','派发作业通知','${para1}派发了一条作业,请尽快处理','web',NULL,'biz',1,'NORMAL',NULL,'2024072201','派发作业通知',NULL,NULL,'2024-07-21 16:00:00','2024-07-21 16:00:00'),(3123,'sms','cmii-uas-lifecycle','jg_warn_handle_noti','处置无人机迫降&返航','处置无人机迫降&返航','无人机${para1},监管员已进行${para2}操作,处置位置:${para3},${para4}','mas','ff25df878007456081f5f057dd077a4f','biz',1,'NORMAL',NULL,'2024072901','无人机处置迫降&返航',NULL,NULL,'2024-07-29 07:46:15','2024-07-29 07:46:15'),(3124,'sms','cmii-uav-emergency','emergency_duty_task','您有一个值班任务','您有一个值班任务','您于${para1}有一个值班任务,详情请登录中移凌云查看。','mas','06e79370ec314a9e8baadb55570ed345','biz',1,'NORMAL',NULL,'2024081401','您有一个值班任务通知',NULL,NULL,'2024-08-14 06:12:30','2024-08-14 06:12:30'),(3125,'sms','cmii-uas-user','jg_sms_modifypwd','修改密码','修改密码','验证码:${para1},您正在进行修改密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','mas','f3b11b2ce28546f5b9f22cdfd59d2adf','biz',1,'NORMAL',NULL,'2024091101','修改密码',NULL,NULL,'2024-09-11 06:04:11','2024-09-11 06:04:11'),(3126,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_40B1','侦察大屏分享警情地址31到40个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5} ${para6}\r\n报警人:${para7} ${para8}\r\n所属支队:${para9} ${para10}','mas','1e163f4dc1524373b30ad6ff9369abdc','sys',1,'NORMAL',NULL,'2024092601','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3127,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_10B1','侦察大屏分享警情地址1到10个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2} ${para3}\r\n报警人:${para4} ${para5}\r\n所属支队:${para6} ${para7}','mas','feb75d76edda44468f5a6db6a1d84679','sys',1,'NORMAL',NULL,'2024092602','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3128,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_20B1','侦察大屏分享警情地址11到20个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3} ${para4}\r\n报警人:${para5} ${para6}\r\n所属支队:${para7} ${para8}','mas','36f2a76fd0784fdaa563cc779f5e5ff4','sys',1,'NORMAL',NULL,'2024092603','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3129,'sms','cmii-uav-industrial-portfolio','pubSec_shareCase_30B1','侦察大屏分享警情地址21到30个字符','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4} ${para5}\r\n报警人:${para6} ${para7}\r\n所属支队:${para8} ${para9}','mas','8981480641d341b98a51b91cdfb0efae','sys',1,'NORMAL',NULL,'2024092604','侦察大屏分享警情',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'); /*!40000 ALTER TABLE `msg_tpl` ENABLE KEYS */; UNLOCK TABLES; @@ -42,7 +42,7 @@ UNLOCK TABLES; LOCK TABLES `msg_tpl_lang` WRITE; /*!40000 ALTER TABLE `msg_tpl_lang` DISABLE KEYS */; -INSERT INTO `msg_tpl_lang` VALUES (3762,'email','test-email-tpl','zh_CN','Hi${name}中移凌云向你发送了一封邮件2','Hi ${name} 点击查看 ${content}',NULL,'2020122111030112345601',NULL,NULL,'2020-08-10 06:56:19','2020-08-10 06:02:49'),(3763,'sms','sms-verification-code ','zh_CN',NULL,'验证码${para1},您正在进行中移凌云身份验证,工作人员不会索取该验证码,请勿泄漏!','SMS_200175939','2020122111030112345602',NULL,NULL,'2020-08-20 02:32:58','2020-08-20 02:32:58'),(3764,'sms','sms_reg','zh_CN','注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','8fcde17d01384f83bf3cb3efc379e207','2020122111030112345603',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(3765,'sms','sms_login','zh_CN','登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','b9e3985bc47b4376891da5cebdb82f25','2020122111030112345604',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(3766,'sms','sms_findpwd','zh_CN','找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','f8f2edd4435042cfb87cf9a63cd4fcab','2020122111030112345605',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(3767,'sms','sms_modifyphone','zh_CN','修改手机号-原手机号验证','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','e4ea811efa0f4df3a640d21cc9545771','2020122111030112345606',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(3768,'sms','sms_bindnewphone','zh_CN','修改手机号-新手机号绑定','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','26b568aa988d4f97beaa7d0b6311c583','2020122111030112345607',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(3769,'email','email_modifyemail','zh_CN','中移凌云邮箱修改确认通知','\r\n\r\n \r\n \r\n \r\n 中移凌云邮箱修改确认通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您申请了邮箱修改,请在24小时以内确认新邮箱,如未做任何操作,系统将保留原邮箱。\r\n

\r\n

\r\n \r\n 立即确认新邮箱\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${url}\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n','','2020122111030112345608',NULL,NULL,'2020-08-26 08:02:45','2020-08-26 08:02:45'),(3770,'sms','tpl1598430143447','zh_CN','测试模板名称','Hi ${para1} 点击查看${para2}',NULL,'2020122111030112345609',NULL,NULL,'2020-08-26 08:22:23','2020-08-26 08:22:23'),(3771,'sms','open_sms_reg','zh_CN','注册','验证码:${para1},您正在进行开放平台注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','bd384678c96b4ebbb1aba87902c67e40','2020122111030112345613',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(3772,'sms','open_sms_login','zh_CN','登录','验证码:${para1},您正在进行开放平台登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','661b38c8440a4acf941672409a993a1d','2020122111030112345614',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(3773,'sms','open_sms_findpwd','zh_CN','找回密码','验证码:${para1},您正在进行开放平台找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','e007c512a52a4b83adc867afc5c9bf12','2020122111030112345615',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(3774,'sms','open_sms_modifyphone','zh_CN','修改手机号-原手机号验证','验证码:${para1},您正在进行开放平台修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','8dabb1c670994f50bc4e66c676b41db0','2020122111030112345616',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(3775,'sms','open_sms_bindnewphone','zh_CN','修改手机号-新手机号绑定','验证码:${para1},您正在进行开放平台手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','cd2fb4efc0b54436b3fae6d6780c8817','2020122111030112345617',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(3776,'webmsg','test-webmsg-tpl','zh_CN','Hi${name}中移凌云向你发送了一封站内信','Hi ${name} 点击查看 ${content}','','2020122111030112345610',NULL,NULL,'2020-11-06 08:47:27','2020-10-22 03:39:25'),(3777,'email','process_notice','zh_CN','${emailTitle}','\r\n\r\n\r\n \r\n \r\n 中移凌云审批系统通知\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n 您有新的审批待处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n \r\n 您申请的 ${processName} 流程 有新的审批进度!\r\n \r\n (${eventTime})\r\n

\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n 有审批流程需要您介入处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n https://${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2020122111030112345611',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3778,'webmsg','process_notice_webmsg','zh_CN','${emailTitle}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n
',NULL,'2020122111030112345612',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3779,'webmsg','process_notice_webmsg','en_US','${emailTitleEn}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName} submitted an approval at ${procInstStartTime}, please click on the details to manage.\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName} ${auditResultDescEn} your application at ${eventTime}, The approval opinions are as follows:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n In the approval process submitted by ${startUserName} at ${procInstStartTime}, the reviewer may not be able to operate. Please click details to manage.\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n The approval process you submitted in ${procInstStartTime} has been rejected automatically due to multiple rejections. Please reapply if necessary.\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n The approval process that you submitted in ${procInstStartTime} has been updated. To ensure that the process is correct, your process has been rejected automatically. Please reapply if necessary.\r\n

\r\n #end\r\n View details\r\n
',NULL,'2020122111030112345612',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3780,'webmsg','process_notice_webmsg','zh_TW','${emailTitleFanti}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName}在${procInstStartTime}提交了壹個審批,請點擊詳情處理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDescFanti}了您的申請。審批意見如下:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n ${startUserName}在${procInstStartTime}提交的審批流程中有審批人可能無法處理,請點擊詳情處理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您在${procInstStartTime}提交的審批流程,由於被多次駁回,系統已自動拒絕了該流程。如有需要請重新申請。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您在${procInstStartTime}提交的審批流程,由於該流程已被更新,為了確保流程正確,系統已自動拒絕了您的流程。如有需要請重新發起申請。\r\n

\r\n #end\r\n 查看詳情\r\n
',NULL,'2020122111030112345612',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3781,'email','mission_notice_email','zh_CN','${emailTitle}','\r\n\r\n \r\n \r\n \r\n 中移凌云定时作业通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃\r\n ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n \r\n\r\n',NULL,'20210319170600',NULL,NULL,'2021-03-19 09:09:15','2021-03-19 09:09:15'),(3782,'webmsg','mission_notice_webmsg','zh_CN','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业${timerMissionName}在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业${timerMissionName}即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业${timerMissionName}已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业${timerMissionName}启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业${timerMissionName}已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
',NULL,'20210319170601',NULL,NULL,'2021-03-19 09:46:49','2021-03-19 09:46:49'),(3783,'sms','mission-timerMissionStart','zh_CN','定时作业开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已经开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}','bf304ef675c5424aa8b5765d8f330996','2021032201',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3784,'sms','mission-timerMissionFinish','zh_CN','定时作业结束通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已结束。\r\n结束时间:{[para4:字母+数字+英文符号,总长度20]}','c3173ca768b445299ef4faa1d9f75457','2021032202',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3785,'sms','mission-tenMinutesEarly','zh_CN','中移凌云定时作业即将开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}即将开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}\r\n如非本人操作,请立即前往平台进行确认。','43983dee913746e1b2e3787ea1ad6918','2021032203',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3786,'sms','mission-timerMissionStartFail','zh_CN','中移凌云定时作业启动失败通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}启动失败,请前往平台查看详情。','25838ae2cb43411dae591912fc2ae20e','2021032204',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3787,'sms','temperatureWarningTplCodeWeb','zh_CN','中移凌云定时作业执行异常通知','尊敬的中移凌云用户!您创建的定时作业${para1} ${para2} ${para3}在执行中,发现一处异常。\r\n发现时间:${para4}\r\n位置:航点${para5}\r\n温度/温度阈值:${para6}℃/${para7}℃${para8} ${para9}','475d94964dc24309a5147997ed1e9769','2021032205',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3788,'webmsg','mission_notice_webmsg_e','zh_CN','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
',NULL,'20210319170602',NULL,NULL,'2021-03-19 09:46:49','2021-03-19 09:46:49'),(3789,'sms','yh_login','zh_CN','登录验证码','验证码:${para1},您正在登录,若非本人操作,请勿泄露。','c8b06af9063b436287a68ed8e1f79ebb','2021052101',NULL,NULL,'2021-05-21 06:57:08','2021-05-21 06:57:08'),(3790,'sms','yh_peisong_notice','zh_CN','配送通知','${para1}您好,您订单号为${para2}的快件正在配送中,可点击链接查看配送情况,链接http://${para3}/${para4}','0ba2270d0ec84e04955214826f95fce5','2021052102',NULL,NULL,'2021-05-21 07:08:31','2021-05-21 07:08:31'),(3791,'sms','yh_peisong_wb_notice','zh_CN','取件通知','${para1}您好,您订单号为${para2}的快件已配送到${para3}智能柜,取件码为${para4},请凭取件码前往智能柜进行取件。','3950c06ca7af435c93b41050fd30b8ca','2021052103',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3792,'sms','tpl1623231209965','zh_CN',NULL,'Hi ${para1} 点击查看${para2}','tpl1623231209965','20210609173329bc0hg401',NULL,NULL,'2021-06-09 09:33:30','2021-06-09 09:33:30'),(3793,'sms','pwd_will_expire_sms','zh_CN','密码即将过期通知','您的密码将在一周后过期,请及时修改。','1241098da2814a64be0e31f640df13b3','2021090901',NULL,NULL,'2021-09-09 04:01:48','2021-09-09 04:01:48'),(3794,'sms','pwd_expired_sms','zh_CN','密码过期通知','您的密码已过期,请及时修改。','f1be04b61b8745919fc1fa704bc64407','2021090902',NULL,NULL,'2021-09-09 04:56:33','2021-09-09 04:56:33'),(3795,'email','pwd_will_expire_email','zh_CN','您的密码将在一周后过期','\r\n\r\n \r\n \r\n \r\n 您的密码将在一周后过期\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您的密码将在一周后过期,请及时修改。\r\n

\r\n

\r\n \r\n 跳转连接\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${host}/#/personalInfo\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n ',NULL,'2021090903',NULL,NULL,'2021-09-09 05:04:01','2021-09-09 05:04:01'),(3796,'email','pwd_expired_email','zh_CN','您的密码已过期','\r\n\r\n \r\n \r\n \r\n 您的密码已过期\r\n \r\n \r\n \r\n \r\n \r\n ',NULL,'2021-90904',NULL,NULL,'2021-09-09 05:05:48','2021-09-09 05:05:48'),(3797,'webmsg','alarm_notice_webmsg','zh_CN','${alarmObject}${alarmContent}','\r\n
\r\n

\r\n 尊敬的中移凌云用户:\r\n

\r\n

\r\n 您的${alarmObject}${alarmContent};\r\n

\r\n

\r\n 发现时间:${alarmTime};\r\n

\r\n

\r\n 为确保飞行安全,请您尽快处理。\r\n

\r\n
',NULL,'2021090802',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3798,'email','alarm_notice_email','zh_CN','${alarmObject}${alarmContent}','\r\n\r\n\r\n \r\n \r\n 中移凌云邮件通知\r\n \r\n\r\n\r\n
\r\n\r\n',NULL,'2021090803',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3799,'webmsg','alarm_notice_webmsg','zh_TW','${alarmObject}${alarmContentTW}','\r\n
\r\n

\r\n 尊敬的中移凌雲用戶:\r\n

\r\n

\r\n 您的${alarmObject}${alarmContentTW};\r\n

\r\n

\r\n 發現時間:${alarmTime};\r\n

\r\n

\r\n 為確保飛行安全,請您儘快處理。\r\n

\r\n
',NULL,'2021090802',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3800,'email','alarm_notice_email','zh_TW','${alarmObject}${alarmContentTW}','\r\n\r\n\r\n \r\n \r\n 中移凌雲郵件通知\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌雲\r\n
\r\n\r\n
\r\n

尊敬的中移凌雲用戶:

\r\n\r\n

\r\n 您的${alarmObject}${alarmContentTW};\r\n

\r\n

\r\n 發現時間:${alarmTime};\r\n

\r\n

\r\n 為確保飛行安全,請您儘快處理。\r\n

\r\n\r\n

\r\n 親點擊鏈接跳轉至平臺查看:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2021090803',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3801,'email','alarm_notice_email','en_US','${alarmObject}${alarmContentEN}','\r\n\r\n\r\n \r\n \r\n email notice\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

Dir customer:

\r\n\r\n

\r\n Your ${alarmObject}${alarmContentEN};\r\n

\r\n

\r\n Discovery time:${alarmTime};\r\n

\r\n

\r\n To ensure flight safety, please handle it as soon as possible.\r\n

\r\n\r\n

\r\n Click the link to jump to the platform for viewing:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2021090803',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3802,'webmsg','alarm_notice_webmsg','en_US','${alarmObject}${alarmContentEN}','\r\n
\r\n

\r\n Dir user,\r\n

\r\n

\r\n Your ${alarmObject}${alarmContentEN};\r\n

\r\n

\r\n Discovery time:${alarmTime};\r\n

\r\n

\r\n To ensure flight safety, please handle it as soon as possible.\r\n

\r\n
',NULL,'2021090802',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3803,'sms','alarm_notice_sms_5','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3} ${para4} ${para5} ${para6};\r\n发现时间:${para7} ${para8};\r\n为确保飞行安全,请你尽快处理。','d4fb1a0435a14a3da6e804ffd000bff1','2021090808',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3804,'sms','alarm_notice_sms_1','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2};\r\n发现时间:${para3} ${para4};\r\n为确保飞行安全,请你尽快处理。','589ffb7bd9dd401cb9af0fe180c5bbef','2021090804',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3805,'sms','alarm_notice_sms_2','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3};\r\n发现时间:${para4} ${para5};\r\n为确保飞行安全,请你尽快处理。','957391e4309f4361bb4f9203d0e1443b','2021090805',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3806,'sms','alarm_notice_sms_3','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3} ${para4};\r\n发现时间:${para5} ${para6};\r\n为确保飞行安全,请你尽快处理。','13f38c5bf21f4b3582b5676d5b39e6ee','2021090806',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3807,'sms','alarm_notice_sms_4','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3} ${para4} ${para5};\r\n发现时间:${para6} ${para7};\r\n为确保飞行安全,请你尽快处理。','69861a64a1b0412fa7e7aba185178c3f','2021090807',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3808,'sms','alarm_notice_sms_elec','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2}%;\r\n发现时间:${para3} ${para4};\r\n为确保飞行安全,请你尽快处理。','e67e78a1cacb46daab4d678543017c75','2021090809',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3809,'sms','aijob_result_notice1','zh_CN','AI作业任务完成通知','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}已完成。\r\n请点击链接查看作业报告:https://${para4}.${para5}/share/#/report/${para6},提取码为:${para7}','3944f5f6cce842d7adeb643dbba16328','2021122301',NULL,NULL,'2021-12-23 01:29:48','2021-12-23 01:29:48'),(3810,'sms','aijob_result_notice2','zh_CN','AI作业任务过程中发现目标通知','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}监测到${para4}。\r\n发现时间:${para5};\r\n作业地点:${para6} ${para7};\r\n无人机当前位置:(${para8},${para9},${para10});\r\n请您尽快处理。\r\n\r\n请点击链接查看截图和实时视频:https://${para11}.${para12}/share/#/live/${para13},提取码为:${para14}','ef729ecbf86648a9b9d3fe873d7f9d8a','2021122302',NULL,NULL,'2021-12-23 01:42:38','2021-12-23 01:42:38'),(3811,'sms','mission_shareVideo','zh_CN','飞行监视视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','9e6feabc1da94567a8ff6396f164e241','2022042401',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(3812,'sms','mission_area_alarm','zh_CN','管辖区域发生告警','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2}\r\n时间:${para3}\r\n描述:${para4} ${para5}\r\n状态:${para6}','5e5965b6fab348c79df7f44943fce152','2022062801',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(3813,'sms','mission_area_alarm2','zh_CN','管辖区域发生告警优化版','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2} ${para3}\r\n时间:${para4}\r\n描述:${para5} ${para6}\r\n状态:${para7}','e75bf56af287493ba7905ff8ab03804f','2022083101',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(3814,'sms','emergency_shareVideo','zh_CN','应急系统视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','9e6feabc1da94567a8ff6396f164e241','2022090101',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(3815,'sms','mission_shareVideo2','zh_CN','飞行监视视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:https://${para1}.${para2}/share/#/share/${para3},提取码为:${para4}。','fbe7c7ef25d442618292750c4c512178','2022092301',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(3816,'sms','alarm_notice_sms_speed','zh_CN','速度过快告警','尊敬的中移凌云用户:\r\n您的${para1} ${para2}m/s;\r\n发现时间:${para3} ${para4};\r\n为确保飞行安全,请你尽快处理。','ccb7e787bb0c4e86bdbb68207a7bb638','2021090810',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3817,'sms','mission_shareVideo3','zh_CN','飞行监视视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','50040105acc74ed8afd6ba71036dc394','2022101101',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(3818,'sms','control_apply_sms','zh_CN','您收到一条控制权申请!','尊敬的中移凌云用户,您收到一条控制权申请!\r\n用户【${para1} ${para2}****${para3}】申请无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/control/${para8} 进行处理。','dba47cc508434435bc5286b568ae46f7','2022102101',NULL,NULL,'2022-10-21 05:46:21','2022-10-21 05:46:21'),(3819,'sms','control_back_apply_sms','zh_CN','您收到一条控制权归还申请!','尊敬的中移凌云用户,您收到一条控制权归还申请!\r\n用户【${para1} ${para2}****${para3}】申请归还无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/back/${para8} 进行处理。','1f04c1077571487e8bec5b1e945912eb','2022102102',NULL,NULL,'2022-10-21 05:48:21','2022-10-21 05:48:21'),(3820,'webmsg','control_apply_webmsg','zh_CN','您收到一条控制权申请!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】申请无人机【${uavName}】的控制权,是否同意?\r\n

\r\n

\r\n 涉及飞行安全,请谨慎操作!\r\n

\r\n
',NULL,'2022102401',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(3821,'webmsg','control_apply_agree_webmsg','zh_CN','控制权已移交给您!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已将无人机【${uavName}】的控制权移交给您,请尽快前往单机监视。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102402',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(3822,'webmsg','control_taken_back_apply_webmsg','zh_CN','您收到一条控制权归还申请!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】申请归还无人机【${uavName}】的控制权,是否同意?\r\n

\r\n

\r\n 涉及飞行安全,请谨慎操作!\r\n

\r\n
',NULL,'2022102403',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(3823,'webmsg','control_taken_back_webmsg','zh_CN','控制权被收回!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已收回无人机【${uavName}】的控制权。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102404',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(3824,'webmsg','control_apply_webmsg','en_US','You have received a control application!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] applies for control of UAV [${uavName}]. Do you agree?\r\n

\r\n

\r\nPlease operate with caution when flight safety is involved!\r\n

\r\n
',NULL,'2022102401',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(3825,'webmsg','control_apply_agree_webmsg','en_US','Control has been transferred to you!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has handed over the control of UAV [${uavName}] to you. Please go to the stand-alone monitoring as soon as possible.\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102402',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(3826,'webmsg','control_taken_back_apply_webmsg','en_US','You have received a control right return application!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] applies to return the control right of UAV [${uavName}], do you agree?\r\n

\r\n

\r\n Please operate with caution when flight safety is involved!\r\n

\r\n
',NULL,'2022102403',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(3827,'webmsg','control_taken_back_webmsg','en_US','Control is taken back!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has taken back control of UAV [${uavName}].\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102404',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(3828,'webmsg','control_apply_webmsg','zh_TW','您收到一條控製權申請!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】申請無人機【${uavName}】的控製權,是否同意?\r\n

\r\n

\r\n 涉及飛行安全,請謹慎操作!\r\n

\r\n
',NULL,'2022102401',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(3829,'webmsg','control_apply_agree_webmsg','zh_TW','控製權已移交給您!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已將無人機【${uavName}】的控製權移交給您,請儘快前往單機監視。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102402',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(3830,'webmsg','control_taken_back_apply_webmsg','zh_TW','您收到一條控製權歸還申請!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】申請歸還無人機【${uavName}】的控製權,是否同意?\r\n

\r\n

\r\n 涉及飛行安全,請謹慎操作!\r\n

\r\n
',NULL,'2022102403',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(3831,'webmsg','control_taken_back_webmsg','zh_TW','控製權被收回!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已收回無人機【${uavName}】的控製權。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102404',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(3832,'webmsg','control_apply_ok_webmsg','zh_CN','控制权申请成功!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已同意无人机【${uavName}】的控制权申请,请尽快前往单机监视。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102701',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(3833,'webmsg','control_taken_back_ok_webmsg','zh_CN','控制权已归还!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已同意无人机【${uavName}】的控制权归还申请。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102702',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(3834,'webmsg','control_apply_ok_webmsg','zh_TW','控製權申請成功!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已同意無人機【${uavName}】的控製權申請,請盡快前往單機監視。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102701',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(3835,'webmsg','control_taken_back_ok_webmsg','zh_TW','控製權已歸還!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已同意無人機【${uavName}】的控製權歸還申請。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102702',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(3836,'webmsg','control_apply_ok_webmsg','en_US','Control right application succeeded!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has agreed to the control right application of UAV [${uavName}],Please go to the stand-alone monitoring as soon as possible.\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102701',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(3837,'webmsg','control_taken_back_ok_webmsg','en_US','Control has been returned!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has agreed to return the control right of UAV [${uavName}].\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102702',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(3838,'sms','alarm_notice_sms_speed_1','zh_CN','速度过快告警','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3}m/s;\r\n发现时间:${para4} ${para5};\r\n为确保飞行安全,请你尽快处理。','9209efd62b1a43f48b0e4d182e250c39','2022112201',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3839,'sms','aijob_result_notice1_1','zh_CN','AI作业任务完成通知(升级版)','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}已完成。\r\n请点击链接查看作业报告:${para4}://${para5}.${para6}/share/#/report/${para7},提取码为:${para8}','e07616a4dab947dd9c73cb98189a8070','2022121201',NULL,NULL,'2021-12-23 01:29:48','2021-12-23 01:29:48'),(3840,'sms','aijob_result_notice2_1','zh_CN','AI作业任务过程中发现目标通知(升级版)','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}监测到${para4}。\r\n发现时间:${para5};\r\n作业地点:${para6} ${para7};\r\n无人机当前位置:(${para8},${para9},${para10});\r\n请您尽快处理。\r\n\r\n请点击链接查看截图和实时视频:${para11}://${para12}.${para13}/share/#/live/${para14},提取码为:${para15}','82d8f031b3444048b30911809d022734','2022121202',NULL,NULL,'2021-12-23 01:42:38','2021-12-23 01:42:38'),(3841,'sms','pubSec_shareVideo','zh_CN','侦察大屏无人机视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','50caabc01d494ac78b1325c588321863','2023032901',NULL,NULL,'2023-03-29 06:04:55','2023-03-29 06:04:55'),(3842,'sms','pubSec_shareCase_40','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5}\r\n报警人:${para6}\r\n所属支队:${para7}','ee6f102eb5574fceb7ef9a60d3b5698b','2023033001',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3843,'sms','pubSec_shareCase_10','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2}\r\n报警人:${para3}\r\n所属支队:${para4}','5d02d06fc15449f885601f0ff91434fb','2023033002',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3844,'sms','pubSec_shareCase_20','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3}\r\n报警人:${para4}\r\n所属支队:${para5}','7fb4e6e295b94ec48545cce8d221774b','2023033003',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3845,'sms','pubSec_shareCase_30','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4}\r\n报警人:${para5}\r\n所属支队:${para6}','12a076a7035341128b34049950f5ffd2','2023033004',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3846,'sms','yingji_noticesms','zh_CN','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','1ed5fc096aa54a2d864554aae34f0a81','2023050801',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(3847,'sms','yingji_noticesms2','zh_CN','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','e64f1d5138804331baca2567e99c6f12','2023050802',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(3848,'webmsg','aijob_find_fire_webmsg','zh_CN','AI识别通知','\r\n
\r\n
\r\n
\r\n

\r\n 无人机【${uavName}】监测到火情,已暂停,请尽快处理。\r\n

\r\n

发现位置:${position}

\r\n 前往单机监视\r\n
\r\n
\r\n
',NULL,'2023052201',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3849,'webmsg','aijob_find_fire_webmsg','zh_TW','AI识别通知','\r\n',NULL,'2023052201',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3850,'webmsg','aijob_find_fire_webmsg','en_US','AI识别通知','\r\n',NULL,'2023052201',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3851,'webmsg','aijob_find_fire_nohover_webmsg','zh_CN','AI识别通知','\r\n',NULL,'2023052202',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3852,'webmsg','aijob_find_fire_nohover_webmsg','zh_TW','AI识别通知','\r\n',NULL,'2023052202',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3853,'webmsg','aijob_find_fire_nohover_webmsg','en_US','AI识别通知','\r\n',NULL,'2023052202',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3854,'sms','mission_shareVideo4','zh_CN','飞行监视视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4}?extractCode=${para5}。','31296c539b8f4826ace09f893692539f','2023061201',NULL,NULL,'2023-06-12 12:17:13','2023-06-12 12:17:13'),(3855,'sms','bizproc_warn_sms','zh_CN','告警提示信息','尊敬的中移凌云用户,您收到一条告警信息:\r\n告警环境:${para1}\r\n告警内容:${para2} ${para3}\r\n','97c04f8be3624feeb5d91c6f7f73c8a8','2023072001',NULL,NULL,'2023-07-20 09:43:41','2023-07-20 09:43:41'),(3856,'sms','pubSec_shareCase_40B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5} ${para6}\r\n报警人:${para7} ${para8}\r\n所属支队:${para9}','851bac4729da40379b9d61f287189a3a','2023080401',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3857,'sms','pubSec_shareCase_10B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2} ${para3}\r\n报警人:${para4} ${para5}\r\n所属支队:${para6}','1d4db44455ca4235b16292b9652bf25d','2023080402',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3858,'sms','pubSec_shareCase_20B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3} ${para4}\r\n报警人:${para5} ${para6}\r\n所属支队:${para7}','e68b71b7b3eb44aaa25f4df187147e1e','2023080403',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3859,'sms','pubSec_shareCase_30B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4} ${para5}\r\n报警人:${para6} ${para7}\r\n所属支队:${para8}','31bebf7fb5f44a8397cb6bc104503361','2023080404',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3860,'webmsg','user_pwd_modify_suc_webmsg','zh_CN','密码修改成功','\r\n
\r\n

\r\n尊敬的中移凌云用户:
\r\n

\r\n

\r\n    您的密码已修改成功,请牢记您的密码,以便登录使用。\r\n

\r\n
',NULL,'2023082401',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3861,'webmsg','user_pwd_modify_suc_webmsg','en_US','Password modification successful','\r\n
\r\n

\r\nDear Lingyun user of China Mobile:
\r\n

\r\n

\r\n    Your password has been successfully modified. Please remember your password so that you can log in and use it. \r\n

\r\n
',NULL,'2023082401',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3862,'webmsg','user_pwd_modify_suc_webmsg','zh_TW','密碼修改成功','\r\n
\r\n

\r\n 尊敬的中移淩雲用戶:
\r\n

\r\n

\r\n    您的密碼已修改成功,請牢記您的密碼,以便登入使用。\r\n

\r\n
',NULL,'2023082401',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3863,'sms','mission_shareVideoEm','zh_CN','应急通信保障大屏视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/communication/${para4}?extractCode=${para5}&uavCode=${para6}。','e67f0321cdcd4915bccc641b1abb5ba0','2023092701',NULL,NULL,'2023-09-27 10:03:03','2023-09-27 10:03:03'),(3864,'sms','jg_sms_login','zh_CN','政府监管登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','be3961c9736a4634b7257a9cee1a5da8','2024032501',NULL,NULL,'2024-03-25 01:37:50','2024-03-25 01:37:50'),(3865,'sms','jg_sms_modifyphone','zh_CN','政府监管修改手机号','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','9a35510eab9d4b58b65f85b9e61fd2c1','2024032502',NULL,NULL,'2024-03-25 01:49:23','2024-03-25 01:49:23'),(3866,'sms','jg_updatecode','zh_CN','政府监管设备校验码更新','设备标识为${para1}的无人机,已被注销,校验码更新为${para2}。','ae13526874544f66bc18ae527e516f11','2024032503',NULL,NULL,'2024-03-25 02:04:05','2024-03-25 02:04:05'),(3867,'sms','jg_sms_findpwd','zh_CN','政府监管找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','5a228b4eba1b421e8c68d6c402b7cd97','2024032504',NULL,NULL,'2024-03-25 02:07:54','2024-03-25 02:07:54'),(3868,'sms','jg_sms_reg','zh_CN','政府监管注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','f3a6f892dac44af39a2baa119283195d','2024032505',NULL,NULL,'2024-03-25 02:11:54','2024-03-25 02:11:54'),(3869,'sms','jg_regplane','zh_CN','政府监管设备身份验证','验证码:${para1},您正在进行身份验证。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','255cbc702f6f4936be1025239551fea1','2024032506',NULL,NULL,'2024-03-25 02:14:46','2024-03-25 02:14:46'),(3870,'sms','jg_sms_bindnewphone','zh_CN','政府监管绑定新手机号','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','4312f0e063364075acef17cd149841b1','2024032507',NULL,NULL,'2024-03-25 02:17:17','2024-03-25 02:17:17'),(3871,'sms','jg_dongtai','zh_CN','你有一条新的动态提醒','凌云动态发布了一条新的动态,请登录电脑端查看。','3267348d0ac54a0498b9f33f71fee555','2024042301',NULL,NULL,'2024-04-23 02:20:44','2024-04-23 02:20:44'),(3872,'sms','validatecode','zh_CN','发送验证码','验证码:{para1},3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','ded6b1eeeb924bd7935644fb21967c4b','2024042601',NULL,NULL,'2024-04-26 07:00:33','2024-04-26 07:00:33'),(3873,'sms','jg_tonggan_notice','zh_CN','发现目标通知','5G-A通感一体平台提醒:【${para1} ${para2}】侦测到飞行物,编号【#{para3}】,位置【${para4},${para5},${para6}】,所属基站为【${para7}】飞行轨迹详情可登录平台进行查看','9053c4226dc2468d87f9aec7f05b8470','2024042602',NULL,NULL,'2024-04-26 07:35:57','2024-04-26 07:35:57'),(3874,'sms','jg_warn_handle1_notice','zh_CN','告警处置通知','无人机${para1},${para2},监管员已进行${para3}操作,处置位置:${para4},${para5}','a41df66417fd471394a11d74a8d18660','2024070502',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3875,'sms','jg_warn_handle2_notice','zh_CN','告警处置通知','无人机${para1},${para2}/${para3},监管员已进行${para4}操作,处置位置:${para5},${para6}','d0daf289f2b64fb9afac64c73c593c24','2024070503',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3876,'sms','jg_warn_handle3_notice','zh_CN','告警处置通知','无人机${para1},${para2}/${para3}/${para4},监管员已进行${para5}操作,处置位置:${para6},${para7}','54e514da6e3b44729e6c980b6cf1066b','2024070504',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3877,'sms','jg_onekey_cleanair','zh_CN','一键净空通知','无人机${para1},监管员已进行一键净空操作,请尽快处理。','dcd6cae37ddc4f31ac86ef8548b1532c','2024070501',NULL,NULL,'2024-07-05 06:03:04','2024-07-05 06:03:04'),(3878,'sms','sec_alarm_sms','zh_CN','安全告警','尊敬的中移凌云用户:\r\n平台监测到一个${para1}告警;\r\n发现时间:${para2} ${para3};\r\n为确保飞行安全,请你尽快处理。','d7a711e8b18a415aaa96bd2a8cec4587','2024070120',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3879,'email','sec_alarm_email','zh_CN','安全告警','\r\n\r\n\r\n \r\n \r\n 中移凌云邮件通知\r\n \r\n\r\n\r\n
\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n\r\n

\r\n 平台监测到一个${alarmType}告警;\r\n

\r\n

\r\n 发现时间:${alarmTime};\r\n

\r\n

\r\n 为确保飞行安全,请您尽快处理。\r\n

\r\n\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2024070121',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3880,'webmsg','sec_alarm_webmsg','zh_CN','安全告警','\r\n
\r\n

\r\n 尊敬的中移凌云用户:\r\n

\r\n

\r\n 平台监测到一个${alarmType}告警;\r\n

\r\n

\r\n 发现时间:${alarmTime};\r\n

\r\n

\r\n 为确保飞行安全,请您尽快处理。\r\n

\r\n
',NULL,'2024070122',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3881,'webmsg','zjjt_create_task_webmsg','zh_CN','派发作业通知','${para1}派发了一条作业,请尽快处理',NULL,'2024072201',NULL,NULL,'2024-07-21 16:00:00','2024-07-21 16:00:00'),(3882,'sms','jg_warn_handle_noti','zh_CN','处置无人机迫降&返航','无人机${para1},监管员已进行${para2}操作,处置位置:${para3},${para4}','ff25df878007456081f5f057dd077a4f','2024072901',NULL,NULL,'2024-07-29 07:46:15','2024-07-29 07:46:15'),(3883,'sms','emergency_duty_task','zh_CN','您有一个值班任务','您于${para1}有一个值班任务,详情请登录中移凌云查看。','06e79370ec314a9e8baadb55570ed345','2024081401',NULL,NULL,'2024-08-14 06:12:30','2024-08-14 06:12:30'); +INSERT INTO `msg_tpl_lang` VALUES (3884,'email','test-email-tpl','zh_CN','Hi${name}中移凌云向你发送了一封邮件2','Hi ${name}
点击查看 ${content}',NULL,'2020122111030112345601',NULL,NULL,'2020-08-10 06:56:19','2020-08-10 06:02:49'),(3885,'sms','sms-verification-code ','zh_CN',NULL,'验证码${para1},您正在进行中移凌云身份验证,工作人员不会索取该验证码,请勿泄漏!','SMS_200175939','2020122111030112345602',NULL,NULL,'2020-08-20 02:32:58','2020-08-20 02:32:58'),(3886,'sms','sms_reg','zh_CN','注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','8fcde17d01384f83bf3cb3efc379e207','2020122111030112345603',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(3887,'sms','sms_login','zh_CN','登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','b9e3985bc47b4376891da5cebdb82f25','2020122111030112345604',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(3888,'sms','sms_findpwd','zh_CN','找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','f8f2edd4435042cfb87cf9a63cd4fcab','2020122111030112345605',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(3889,'sms','sms_modifyphone','zh_CN','修改手机号-原手机号验证','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','e4ea811efa0f4df3a640d21cc9545771','2020122111030112345606',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(3890,'sms','sms_bindnewphone','zh_CN','修改手机号-新手机号绑定','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','26b568aa988d4f97beaa7d0b6311c583','2020122111030112345607',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(3891,'email','email_modifyemail','zh_CN','中移凌云邮箱修改确认通知','\r\n\r\n \r\n \r\n \r\n 中移凌云邮箱修改确认通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您申请了邮箱修改,请在24小时以内确认新邮箱,如未做任何操作,系统将保留原邮箱。\r\n

\r\n

\r\n \r\n 立即确认新邮箱\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${url}\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n','','2020122111030112345608',NULL,NULL,'2020-08-26 08:02:45','2020-08-26 08:02:45'),(3892,'sms','tpl1598430143447','zh_CN','测试模板名称','Hi ${para1} 点击查看${para2}',NULL,'2020122111030112345609',NULL,NULL,'2020-08-26 08:22:23','2020-08-26 08:22:23'),(3893,'sms','open_sms_reg','zh_CN','注册','验证码:${para1},您正在进行开放平台注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','bd384678c96b4ebbb1aba87902c67e40','2020122111030112345613',NULL,NULL,'2020-08-26 05:36:00','2020-08-26 05:36:00'),(3894,'sms','open_sms_login','zh_CN','登录','验证码:${para1},您正在进行开放平台登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','661b38c8440a4acf941672409a993a1d','2020122111030112345614',NULL,NULL,'2020-08-26 05:45:55','2020-08-26 05:45:55'),(3895,'sms','open_sms_findpwd','zh_CN','找回密码','验证码:${para1},您正在进行开放平台找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','e007c512a52a4b83adc867afc5c9bf12','2020122111030112345615',NULL,NULL,'2020-08-26 05:47:50','2020-08-26 05:47:50'),(3896,'sms','open_sms_modifyphone','zh_CN','修改手机号-原手机号验证','验证码:${para1},您正在进行开放平台修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','8dabb1c670994f50bc4e66c676b41db0','2020122111030112345616',NULL,NULL,'2020-08-26 05:51:01','2020-08-26 05:51:01'),(3897,'sms','open_sms_bindnewphone','zh_CN','修改手机号-新手机号绑定','验证码:${para1},您正在进行开放平台手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','cd2fb4efc0b54436b3fae6d6780c8817','2020122111030112345617',NULL,NULL,'2020-08-26 05:52:32','2020-08-26 05:52:32'),(3898,'webmsg','test-webmsg-tpl','zh_CN','Hi${name}中移凌云向你发送了一封站内信','Hi ${name} 点击查看 ${content}','','2020122111030112345610',NULL,NULL,'2020-11-06 08:47:27','2020-10-22 03:39:25'),(3899,'email','process_notice','zh_CN','${emailTitle}','\r\n\r\n\r\n \r\n \r\n 中移凌云审批系统通知\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n 您有新的审批待处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n \r\n 您申请的 ${processName} 流程 有新的审批进度!\r\n \r\n (${eventTime})\r\n

\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n 有审批流程需要您介入处理!\r\n (${eventTime})\r\n

\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您的一个审批被系统拒绝!\r\n (${eventTime})\r\n

\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n https://${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2020122111030112345611',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3900,'webmsg','process_notice_webmsg','zh_CN','${emailTitle}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName}在${procInstStartTime}提交了一个审批,请点击详情处理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDesc}了您的申请。审批意见如下:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n ${startUserName}在${procInstStartTime}提交的审批流程中有审批人可能无法处理,请点击详情处理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于被多次驳回,系统已自动拒绝了该流程。如有需要请重新申请。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您在${procInstStartTime}提交的审批流程,由于该流程已被更新,为了确保流程正确,系统已自动拒绝了您的流程。如有需要请重新发起申请。\r\n

\r\n #end\r\n 查看详情\r\n
',NULL,'2020122111030112345612',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3901,'webmsg','process_notice_webmsg','en_US','${emailTitleEn}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName} submitted an approval at ${procInstStartTime}, please click on the details to manage.\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName} ${auditResultDescEn} your application at ${eventTime}, The approval opinions are as follows:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n In the approval process submitted by ${startUserName} at ${procInstStartTime}, the reviewer may not be able to operate. Please click details to manage.\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n The approval process you submitted in ${procInstStartTime} has been rejected automatically due to multiple rejections. Please reapply if necessary.\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n The approval process that you submitted in ${procInstStartTime} has been updated. To ensure that the process is correct, your process has been rejected automatically. Please reapply if necessary.\r\n

\r\n #end\r\n View details\r\n
',NULL,'2020122111030112345612',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3902,'webmsg','process_notice_webmsg','zh_TW','${emailTitleFanti}','\r\n
\r\n #if ($eventType == \'waitAudit\')\r\n

\r\n ${startUserName}在${procInstStartTime}提交了壹個審批,請點擊詳情處理。\r\n

\r\n #elseif ($eventType == \'audit\')\r\n

\r\n ${assigneeName}在${eventTime}${auditResultDescFanti}了您的申請。審批意見如下:\r\n
\r\n ${comment}\r\n

\r\n #elseif ($eventType==\'auditPersonLock\' ||\r\n $eventType==\'taskExpireNotice\' )\r\n

\r\n ${startUserName}在${procInstStartTime}提交的審批流程中有審批人可能無法處理,請點擊詳情處理。\r\n

\r\n #elseif ($eventType==\'rejectExceedMax\')\r\n

\r\n 您在${procInstStartTime}提交的審批流程,由於被多次駁回,系統已自動拒絕了該流程。如有需要請重新申請。\r\n

\r\n #elseif ($eventType==\'updateProcessNode\')\r\n

\r\n 您在${procInstStartTime}提交的審批流程,由於該流程已被更新,為了確保流程正確,系統已自動拒絕了您的流程。如有需要請重新發起申請。\r\n

\r\n #end\r\n 查看詳情\r\n
',NULL,'2020122111030112345612',NULL,NULL,'2020-10-26 10:09:22','2020-10-26 10:09:22'),(3903,'email','mission_notice_email','zh_CN','${emailTitle}','\r\n\r\n \r\n \r\n \r\n 中移凌云定时作业通知\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃\r\n ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业 ${timerMissionName} 已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n \r\n\r\n',NULL,'20210319170600',NULL,NULL,'2021-03-19 09:09:15','2021-03-19 09:09:15'),(3904,'webmsg','mission_notice_webmsg','zh_CN','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的定时作业${timerMissionName}在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的定时作业${timerMissionName}即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的定时作业${timerMissionName}已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的定时作业${timerMissionName}启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的定时作业${timerMissionName}已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
',NULL,'20210319170601',NULL,NULL,'2021-03-19 09:46:49','2021-03-19 09:46:49'),(3905,'sms','mission-timerMissionStart','zh_CN','定时作业开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已经开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}','bf304ef675c5424aa8b5765d8f330996','2021032201',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3906,'sms','mission-timerMissionFinish','zh_CN','定时作业结束通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}已结束。\r\n结束时间:{[para4:字母+数字+英文符号,总长度20]}','c3173ca768b445299ef4faa1d9f75457','2021032202',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3907,'sms','mission-tenMinutesEarly','zh_CN','中移凌云定时作业即将开始通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}即将开始。\r\n作业时间:{[para4:字母+数字+英文符号,总长度20]}\r\n作业地点:{[para5:中文+字母+数字,总长度10]}{[para6:中文+字母+数字,总长度10]}\r\n如非本人操作,请立即前往平台进行确认。','43983dee913746e1b2e3787ea1ad6918','2021032203',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3908,'sms','mission-timerMissionStartFail','zh_CN','中移凌云定时作业启动失败通知','尊敬的中移凌云用户!您创建的定时作业{[para1:中文+字母+数字,总长度10]}{[para2:中文+字母+数字,总长度10]} {[para3:字母+数字+英文符号,总长度20]}启动失败,请前往平台查看详情。','25838ae2cb43411dae591912fc2ae20e','2021032204',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3909,'sms','temperatureWarningTplCodeWeb','zh_CN','中移凌云定时作业执行异常通知','尊敬的中移凌云用户!您创建的定时作业${para1} ${para2} ${para3}在执行中,发现一处异常。\r\n发现时间:${para4}\r\n位置:航点${para5}\r\n温度/温度阈值:${para6}℃/${para7}℃${para8} ${para9}','475d94964dc24309a5147997ed1e9769','2021032205',NULL,NULL,'2021-03-22 03:22:04','2021-03-22 03:22:04'),(3910,'webmsg','mission_notice_webmsg_e','zh_CN','${emailTitle}','\r\n
\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n #if ($eventType == \'temperatureWarningTplCodeWeb\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}在执行中,发现一处异常;\r\n

\r\n

发现时间:${time}

\r\n

位置:航点${waypointNumber}

\r\n

\r\n 温度/温度阈值:${highTemperature}℃/${maxTemperature}℃ ${temperatureDesc}\r\n

\r\n #elseif ($eventType == \'mission-tenMinutesEarly\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}即将开始;\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n

如非本人操作,请立即前往平台进行确认

\r\n\r\n #elseif ($eventType==\'mission-timerMissionStart\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}已经开始\r\n

\r\n

作业时间:${time}

\r\n

作业地点:${airZone}

\r\n #elseif ($eventType==\'mission-timerMissionStartFail\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}启动失败。\r\n

\r\n #elseif ($eventType==\'mission-timerMissionFinish\')\r\n

\r\n 您创建的${jobType}作业${timerMissionName}已结束\r\n

\r\n

结束时间:${time}

\r\n #end\r\n 查看详情\r\n

\r\n 如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
',NULL,'20210319170602',NULL,NULL,'2021-03-19 09:46:49','2021-03-19 09:46:49'),(3911,'sms','yh_login','zh_CN','登录验证码','验证码:${para1},您正在登录,若非本人操作,请勿泄露。','c8b06af9063b436287a68ed8e1f79ebb','2021052101',NULL,NULL,'2021-05-21 06:57:08','2021-05-21 06:57:08'),(3912,'sms','yh_peisong_notice','zh_CN','配送通知','${para1}您好,您订单号为${para2}的快件正在配送中,可点击链接查看配送情况,链接http://${para3}/${para4}','0ba2270d0ec84e04955214826f95fce5','2021052102',NULL,NULL,'2021-05-21 07:08:31','2021-05-21 07:08:31'),(3913,'sms','yh_peisong_wb_notice','zh_CN','取件通知','${para1}您好,您订单号为${para2}的快件已配送到${para3}智能柜,取件码为${para4},请凭取件码前往智能柜进行取件。','3950c06ca7af435c93b41050fd30b8ca','2021052103',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3914,'sms','tpl1623231209965','zh_CN',NULL,'Hi ${para1} 点击查看${para2}','tpl1623231209965','20210609173329bc0hg401',NULL,NULL,'2021-06-09 09:33:30','2021-06-09 09:33:30'),(3915,'sms','pwd_will_expire_sms','zh_CN','密码即将过期通知','您的密码将在一周后过期,请及时修改。','1241098da2814a64be0e31f640df13b3','2021090901',NULL,NULL,'2021-09-09 04:01:48','2021-09-09 04:01:48'),(3916,'sms','pwd_expired_sms','zh_CN','密码过期通知','您的密码已过期,请及时修改。','f1be04b61b8745919fc1fa704bc64407','2021090902',NULL,NULL,'2021-09-09 04:56:33','2021-09-09 04:56:33'),(3917,'email','pwd_will_expire_email','zh_CN','您的密码将在一周后过期','\r\n\r\n \r\n \r\n \r\n 您的密码将在一周后过期\r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n
\r\n

尊敬的中移凌云用户:

\r\n

\r\n 您的密码将在一周后过期,请及时修改。\r\n

\r\n

\r\n \r\n 跳转连接\r\n \r\n

\r\n

如点击无效,请点击下方网页链接或复制到浏览器地址栏中打开:

\r\n

\r\n ${host}/#/personalInfo\r\n

\r\n
\r\n
\r\n
\r\n
\r\n \r\n ',NULL,'2021090903',NULL,NULL,'2021-09-09 05:04:01','2021-09-09 05:04:01'),(3918,'email','pwd_expired_email','zh_CN','您的密码已过期','\r\n\r\n \r\n \r\n \r\n 您的密码已过期\r\n \r\n \r\n \r\n \r\n \r\n ',NULL,'2021-90904',NULL,NULL,'2021-09-09 05:05:48','2021-09-09 05:05:48'),(3919,'webmsg','alarm_notice_webmsg','zh_CN','${alarmObject}${alarmContent}','\r\n
\r\n

\r\n 尊敬的中移凌云用户:\r\n

\r\n

\r\n 您的${alarmObject}${alarmContent};\r\n

\r\n

\r\n 发现时间:${alarmTime};\r\n

\r\n

\r\n 为确保飞行安全,请您尽快处理。\r\n

\r\n
',NULL,'2021090802',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3920,'email','alarm_notice_email','zh_CN','${alarmObject}${alarmContent}','\r\n\r\n\r\n \r\n \r\n 中移凌云邮件通知\r\n \r\n\r\n\r\n
\r\n\r\n',NULL,'2021090803',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3921,'webmsg','alarm_notice_webmsg','zh_TW','${alarmObject}${alarmContentTW}','\r\n
\r\n

\r\n 尊敬的中移凌雲用戶:\r\n

\r\n

\r\n 您的${alarmObject}${alarmContentTW};\r\n

\r\n

\r\n 發現時間:${alarmTime};\r\n

\r\n

\r\n 為確保飛行安全,請您儘快處理。\r\n

\r\n
',NULL,'2021090802',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3922,'email','alarm_notice_email','zh_TW','${alarmObject}${alarmContentTW}','\r\n\r\n\r\n \r\n \r\n 中移凌雲郵件通知\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌雲\r\n
\r\n\r\n
\r\n

尊敬的中移凌雲用戶:

\r\n\r\n

\r\n 您的${alarmObject}${alarmContentTW};\r\n

\r\n

\r\n 發現時間:${alarmTime};\r\n

\r\n

\r\n 為確保飛行安全,請您儘快處理。\r\n

\r\n\r\n

\r\n 親點擊鏈接跳轉至平臺查看:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2021090803',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3923,'email','alarm_notice_email','en_US','${alarmObject}${alarmContentEN}','\r\n\r\n\r\n \r\n \r\n email notice\r\n \r\n\r\n\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n 中移凌云\r\n
\r\n\r\n
\r\n

Dir customer:

\r\n\r\n

\r\n Your ${alarmObject}${alarmContentEN};\r\n

\r\n

\r\n Discovery time:${alarmTime};\r\n

\r\n

\r\n To ensure flight safety, please handle it as soon as possible.\r\n

\r\n\r\n

\r\n Click the link to jump to the platform for viewing:\r\n

\r\n

\r\n \r\n ${url}\r\n \r\n

\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2021090803',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3924,'webmsg','alarm_notice_webmsg','en_US','${alarmObject}${alarmContentEN}','\r\n
\r\n

\r\n Dir user,\r\n

\r\n

\r\n Your ${alarmObject}${alarmContentEN};\r\n

\r\n

\r\n Discovery time:${alarmTime};\r\n

\r\n

\r\n To ensure flight safety, please handle it as soon as possible.\r\n

\r\n
',NULL,'2021090802',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3925,'sms','alarm_notice_sms_5','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3} ${para4} ${para5} ${para6};\r\n发现时间:${para7} ${para8};\r\n为确保飞行安全,请你尽快处理。','d4fb1a0435a14a3da6e804ffd000bff1','2021090808',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3926,'sms','alarm_notice_sms_1','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2};\r\n发现时间:${para3} ${para4};\r\n为确保飞行安全,请你尽快处理。','589ffb7bd9dd401cb9af0fe180c5bbef','2021090804',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3927,'sms','alarm_notice_sms_2','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3};\r\n发现时间:${para4} ${para5};\r\n为确保飞行安全,请你尽快处理。','957391e4309f4361bb4f9203d0e1443b','2021090805',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3928,'sms','alarm_notice_sms_3','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3} ${para4};\r\n发现时间:${para5} ${para6};\r\n为确保飞行安全,请你尽快处理。','13f38c5bf21f4b3582b5676d5b39e6ee','2021090806',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3929,'sms','alarm_notice_sms_4','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3} ${para4} ${para5};\r\n发现时间:${para6} ${para7};\r\n为确保飞行安全,请你尽快处理。','69861a64a1b0412fa7e7aba185178c3f','2021090807',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3930,'sms','alarm_notice_sms_elec','zh_CN','${para1} ${para2}','尊敬的中移凌云用户:\r\n您的${para1} ${para2}%;\r\n发现时间:${para3} ${para4};\r\n为确保飞行安全,请你尽快处理。','e67e78a1cacb46daab4d678543017c75','2021090809',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(3931,'sms','aijob_result_notice1','zh_CN','AI作业任务完成通知','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}已完成。\r\n请点击链接查看作业报告:https://${para4}.${para5}/share/#/report/${para6},提取码为:${para7}','3944f5f6cce842d7adeb643dbba16328','2021122301',NULL,NULL,'2021-12-23 01:29:48','2021-12-23 01:29:48'),(3932,'sms','aijob_result_notice2','zh_CN','AI作业任务过程中发现目标通知','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}监测到${para4}。\r\n发现时间:${para5};\r\n作业地点:${para6} ${para7};\r\n无人机当前位置:(${para8},${para9},${para10});\r\n请您尽快处理。\r\n\r\n请点击链接查看截图和实时视频:https://${para11}.${para12}/share/#/live/${para13},提取码为:${para14}','ef729ecbf86648a9b9d3fe873d7f9d8a','2021122302',NULL,NULL,'2021-12-23 01:42:38','2021-12-23 01:42:38'),(3933,'sms','mission_shareVideo','zh_CN','飞行监视视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','9e6feabc1da94567a8ff6396f164e241','2022042401',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(3934,'sms','mission_area_alarm','zh_CN','管辖区域发生告警','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2}\r\n时间:${para3}\r\n描述:${para4} ${para5}\r\n状态:${para6}','5e5965b6fab348c79df7f44943fce152','2022062801',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(3935,'sms','mission_area_alarm2','zh_CN','管辖区域发生告警优化版','尊敬的中移凌云用户,您管辖的区域发生告警。\r\n类型:${para1}\r\n地点:${para2} ${para3}\r\n时间:${para4}\r\n描述:${para5} ${para6}\r\n状态:${para7}','e75bf56af287493ba7905ff8ab03804f','2022083101',NULL,NULL,'2022-06-28 08:07:44','2022-06-28 08:07:44'),(3936,'sms','emergency_shareVideo','zh_CN','应急系统视频分享','${para1}给您分享了一个无人机第一视角实时视频,请点击链接查看:https://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','9e6feabc1da94567a8ff6396f164e241','2022090101',NULL,NULL,'2022-04-24 06:37:57','2022-04-24 06:37:57'),(3937,'sms','mission_shareVideo2','zh_CN','飞行监视视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:https://${para1}.${para2}/share/#/share/${para3},提取码为:${para4}。','fbe7c7ef25d442618292750c4c512178','2022092301',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(3938,'sms','alarm_notice_sms_speed','zh_CN','速度过快告警','尊敬的中移凌云用户:\r\n您的${para1} ${para2}m/s;\r\n发现时间:${para3} ${para4};\r\n为确保飞行安全,请你尽快处理。','ccb7e787bb0c4e86bdbb68207a7bb638','2021090810',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3939,'sms','mission_shareVideo3','zh_CN','飞行监视视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','50040105acc74ed8afd6ba71036dc394','2022101101',NULL,NULL,'2022-09-23 06:10:47','2022-09-23 06:10:47'),(3940,'sms','control_apply_sms','zh_CN','您收到一条控制权申请!','尊敬的中移凌云用户,您收到一条控制权申请!\r\n用户【${para1} ${para2}****${para3}】申请无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/control/${para8} 进行处理。','dba47cc508434435bc5286b568ae46f7','2022102101',NULL,NULL,'2022-10-21 05:46:21','2022-10-21 05:46:21'),(3941,'sms','control_back_apply_sms','zh_CN','您收到一条控制权归还申请!','尊敬的中移凌云用户,您收到一条控制权归还申请!\r\n用户【${para1} ${para2}****${para3}】申请归还无人机【${para4}】的控制权,请点击链接${para5}://${para6}.${para7}/share/#/back/${para8} 进行处理。','1f04c1077571487e8bec5b1e945912eb','2022102102',NULL,NULL,'2022-10-21 05:48:21','2022-10-21 05:48:21'),(3942,'webmsg','control_apply_webmsg','zh_CN','您收到一条控制权申请!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】申请无人机【${uavName}】的控制权,是否同意?\r\n

\r\n

\r\n 涉及飞行安全,请谨慎操作!\r\n

\r\n
',NULL,'2022102401',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(3943,'webmsg','control_apply_agree_webmsg','zh_CN','控制权已移交给您!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已将无人机【${uavName}】的控制权移交给您,请尽快前往单机监视。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102402',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(3944,'webmsg','control_taken_back_apply_webmsg','zh_CN','您收到一条控制权归还申请!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】申请归还无人机【${uavName}】的控制权,是否同意?\r\n

\r\n

\r\n 涉及飞行安全,请谨慎操作!\r\n

\r\n
',NULL,'2022102403',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(3945,'webmsg','control_taken_back_webmsg','zh_CN','控制权被收回!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已收回无人机【${uavName}】的控制权。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102404',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(3946,'webmsg','control_apply_webmsg','en_US','You have received a control application!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] applies for control of UAV [${uavName}]. Do you agree?\r\n

\r\n

\r\nPlease operate with caution when flight safety is involved!\r\n

\r\n
',NULL,'2022102401',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(3947,'webmsg','control_apply_agree_webmsg','en_US','Control has been transferred to you!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has handed over the control of UAV [${uavName}] to you. Please go to the stand-alone monitoring as soon as possible.\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102402',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(3948,'webmsg','control_taken_back_apply_webmsg','en_US','You have received a control right return application!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] applies to return the control right of UAV [${uavName}], do you agree?\r\n

\r\n

\r\n Please operate with caution when flight safety is involved!\r\n

\r\n
',NULL,'2022102403',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(3949,'webmsg','control_taken_back_webmsg','en_US','Control is taken back!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has taken back control of UAV [${uavName}].\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102404',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(3950,'webmsg','control_apply_webmsg','zh_TW','您收到一條控製權申請!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】申請無人機【${uavName}】的控製權,是否同意?\r\n

\r\n

\r\n 涉及飛行安全,請謹慎操作!\r\n

\r\n
',NULL,'2022102401',NULL,NULL,'2022-10-24 03:02:30','2022-10-24 03:02:30'),(3951,'webmsg','control_apply_agree_webmsg','zh_TW','控製權已移交給您!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已將無人機【${uavName}】的控製權移交給您,請儘快前往單機監視。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102402',NULL,NULL,'2022-10-24 03:02:31','2022-10-24 03:02:31'),(3952,'webmsg','control_taken_back_apply_webmsg','zh_TW','您收到一條控製權歸還申請!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】申請歸還無人機【${uavName}】的控製權,是否同意?\r\n

\r\n

\r\n 涉及飛行安全,請謹慎操作!\r\n

\r\n
',NULL,'2022102403',NULL,NULL,'2022-10-24 03:02:33','2022-10-24 03:02:33'),(3953,'webmsg','control_taken_back_webmsg','zh_TW','控製權被收回!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已收回無人機【${uavName}】的控製權。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102404',NULL,NULL,'2022-10-24 03:02:12','2022-10-24 03:02:12'),(3954,'webmsg','control_apply_ok_webmsg','zh_CN','控制权申请成功!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已同意无人机【${uavName}】的控制权申请,请尽快前往单机监视。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102701',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(3955,'webmsg','control_taken_back_ok_webmsg','zh_CN','控制权已归还!','\r\n
\r\n

\r\n 用户【${userName} ${userPhone}】已同意无人机【${uavName}】的控制权归还申请。\r\n

\r\n 前往单机监视\r\n
',NULL,'2022102702',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(3956,'webmsg','control_apply_ok_webmsg','zh_TW','控製權申請成功!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已同意無人機【${uavName}】的控製權申請,請盡快前往單機監視。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102701',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(3957,'webmsg','control_taken_back_ok_webmsg','zh_TW','控製權已歸還!','\r\n
\r\n

\r\n 用戶【${userName} ${userPhone}】已同意無人機【${uavName}】的控製權歸還申請。\r\n

\r\n 前往單機監視\r\n
',NULL,'2022102702',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(3958,'webmsg','control_apply_ok_webmsg','en_US','Control right application succeeded!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has agreed to the control right application of UAV [${uavName}],Please go to the stand-alone monitoring as soon as possible.\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102701',NULL,NULL,'2022-10-27 01:50:33','2022-10-27 01:50:33'),(3959,'webmsg','control_taken_back_ok_webmsg','en_US','Control has been returned!','\r\n
\r\n

\r\n User [${userName} ${userPhone}] has agreed to return the control right of UAV [${uavName}].\r\n

\r\n Go to stand-alone monitoring\r\n
',NULL,'2022102702',NULL,NULL,'2022-10-27 01:50:38','2022-10-27 01:50:38'),(3960,'sms','alarm_notice_sms_speed_1','zh_CN','速度过快告警','尊敬的中移凌云用户:\r\n您的${para1} ${para2} ${para3}m/s;\r\n发现时间:${para4} ${para5};\r\n为确保飞行安全,请你尽快处理。','9209efd62b1a43f48b0e4d182e250c39','2022112201',NULL,NULL,'2021-05-21 07:16:22','2021-05-21 07:16:22'),(3961,'sms','aijob_result_notice1_1','zh_CN','AI作业任务完成通知(升级版)','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}已完成。\r\n请点击链接查看作业报告:${para4}://${para5}.${para6}/share/#/report/${para7},提取码为:${para8}','e07616a4dab947dd9c73cb98189a8070','2022121201',NULL,NULL,'2021-12-23 01:29:48','2021-12-23 01:29:48'),(3962,'sms','aijob_result_notice2_1','zh_CN','AI作业任务过程中发现目标通知(升级版)','尊敬的中移凌云用户:\r\n您的关联作业${para1} ${para2} ${para3}监测到${para4}。\r\n发现时间:${para5};\r\n作业地点:${para6} ${para7};\r\n无人机当前位置:(${para8},${para9},${para10});\r\n请您尽快处理。\r\n\r\n请点击链接查看截图和实时视频:${para11}://${para12}.${para13}/share/#/live/${para14},提取码为:${para15}','82d8f031b3444048b30911809d022734','2022121202',NULL,NULL,'2021-12-23 01:42:38','2021-12-23 01:42:38'),(3963,'sms','pubSec_shareVideo','zh_CN','侦察大屏无人机视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4},提取码为:${para5}。','50caabc01d494ac78b1325c588321863','2023032901',NULL,NULL,'2023-03-29 06:04:55','2023-03-29 06:04:55'),(3964,'sms','pubSec_shareCase_40','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5}\r\n报警人:${para6}\r\n所属支队:${para7}','ee6f102eb5574fceb7ef9a60d3b5698b','2023033001',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3965,'sms','pubSec_shareCase_10','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2}\r\n报警人:${para3}\r\n所属支队:${para4}','5d02d06fc15449f885601f0ff91434fb','2023033002',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3966,'sms','pubSec_shareCase_20','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3}\r\n报警人:${para4}\r\n所属支队:${para5}','7fb4e6e295b94ec48545cce8d221774b','2023033003',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3967,'sms','pubSec_shareCase_30','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4}\r\n报警人:${para5}\r\n所属支队:${para6}','12a076a7035341128b34049950f5ffd2','2023033004',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3968,'sms','yingji_noticesms','zh_CN','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','1ed5fc096aa54a2d864554aae34f0a81','2023050801',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(3969,'sms','yingji_noticesms2','zh_CN','应急通信通知接入用户','${para1}的乡亲们,因地震导致通信中断,应急管理部紧急调派翼龙无人机抵达你市上空,可暂时恢复公网通信,请尽快报告情况、联系家人。祝平安!','e64f1d5138804331baca2567e99c6f12','2023050802',NULL,NULL,'2023-05-08 03:09:49','2023-05-08 03:09:49'),(3970,'webmsg','aijob_find_fire_webmsg','zh_CN','AI识别通知','\r\n
\r\n
\r\n
\r\n

\r\n 无人机【${uavName}】监测到火情,已暂停,请尽快处理。\r\n

\r\n

发现位置:${position}

\r\n 前往单机监视\r\n
\r\n
\r\n
',NULL,'2023052201',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3971,'webmsg','aijob_find_fire_webmsg','zh_TW','AI识别通知','\r\n',NULL,'2023052201',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3972,'webmsg','aijob_find_fire_webmsg','en_US','AI识别通知','\r\n',NULL,'2023052201',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3973,'webmsg','aijob_find_fire_nohover_webmsg','zh_CN','AI识别通知','\r\n',NULL,'2023052202',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3974,'webmsg','aijob_find_fire_nohover_webmsg','zh_TW','AI识别通知','\r\n',NULL,'2023052202',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3975,'webmsg','aijob_find_fire_nohover_webmsg','en_US','AI识别通知','\r\n',NULL,'2023052202',NULL,NULL,'2023-05-22 03:31:53','2023-05-22 03:31:53'),(3976,'sms','mission_shareVideo4','zh_CN','飞行监视视频分享','尊敬的中移凌云用户,您收到一个视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/share/${para4}?extractCode=${para5}。','31296c539b8f4826ace09f893692539f','2023061201',NULL,NULL,'2023-06-12 12:17:13','2023-06-12 12:17:13'),(3977,'sms','bizproc_warn_sms','zh_CN','告警提示信息','尊敬的中移凌云用户,您收到一条告警信息:\r\n告警环境:${para1}\r\n告警内容:${para2} ${para3}\r\n','97c04f8be3624feeb5d91c6f7f73c8a8','2023072001',NULL,NULL,'2023-07-20 09:43:41','2023-07-20 09:43:41'),(3978,'sms','pubSec_shareCase_40B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5} ${para6}\r\n报警人:${para7} ${para8}\r\n所属支队:${para9}','851bac4729da40379b9d61f287189a3a','2023080401',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3979,'sms','pubSec_shareCase_10B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2} ${para3}\r\n报警人:${para4} ${para5}\r\n所属支队:${para6}','1d4db44455ca4235b16292b9652bf25d','2023080402',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3980,'sms','pubSec_shareCase_20B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3} ${para4}\r\n报警人:${para5} ${para6}\r\n所属支队:${para7}','e68b71b7b3eb44aaa25f4df187147e1e','2023080403',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3981,'sms','pubSec_shareCase_30B','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4} ${para5}\r\n报警人:${para6} ${para7}\r\n所属支队:${para8}','31bebf7fb5f44a8397cb6bc104503361','2023080404',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(3982,'webmsg','user_pwd_modify_suc_webmsg','zh_CN','密码修改成功','\r\n
\r\n

\r\n尊敬的中移凌云用户:
\r\n

\r\n

\r\n    您的密码已修改成功,请牢记您的密码,以便登录使用。\r\n

\r\n
',NULL,'2023082401',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3983,'webmsg','user_pwd_modify_suc_webmsg','en_US','Password modification successful','\r\n
\r\n

\r\nDear Lingyun user of China Mobile:
\r\n

\r\n

\r\n    Your password has been successfully modified. Please remember your password so that you can log in and use it. \r\n

\r\n
',NULL,'2023082401',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3984,'webmsg','user_pwd_modify_suc_webmsg','zh_TW','密碼修改成功','\r\n
\r\n

\r\n 尊敬的中移淩雲用戶:
\r\n

\r\n

\r\n    您的密碼已修改成功,請牢記您的密碼,以便登入使用。\r\n

\r\n
',NULL,'2023082401',NULL,NULL,'2023-08-24 03:18:09','2023-08-24 03:18:09'),(3985,'sms','mission_shareVideoEm','zh_CN','应急通信保障大屏视频分享','尊敬的中移凌云用户,您收到一条视频分享,请点击链接查看:${para1}://${para2}.${para3}/share/#/communication/${para4}?extractCode=${para5}&uavCode=${para6}。','e67f0321cdcd4915bccc641b1abb5ba0','2023092701',NULL,NULL,'2023-09-27 10:03:03','2023-09-27 10:03:03'),(3986,'sms','jg_sms_login','zh_CN','政府监管登录','验证码:${para1},您正在进行登录操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','be3961c9736a4634b7257a9cee1a5da8','2024032501',NULL,NULL,'2024-03-25 01:37:50','2024-03-25 01:37:50'),(3987,'sms','jg_sms_modifyphone','zh_CN','政府监管修改手机号','验证码:${para1},您正在进行修改手机号操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','9a35510eab9d4b58b65f85b9e61fd2c1','2024032502',NULL,NULL,'2024-03-25 01:49:23','2024-03-25 01:49:23'),(3988,'sms','jg_updatecode','zh_CN','政府监管设备校验码更新','设备标识为${para1}的无人机,已被注销,校验码更新为${para2}。','ae13526874544f66bc18ae527e516f11','2024032503',NULL,NULL,'2024-03-25 02:04:05','2024-03-25 02:04:05'),(3989,'sms','jg_sms_findpwd','zh_CN','政府监管找回密码','验证码:${para1},您正在进行找回密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','5a228b4eba1b421e8c68d6c402b7cd97','2024032504',NULL,NULL,'2024-03-25 02:07:54','2024-03-25 02:07:54'),(3990,'sms','jg_sms_reg','zh_CN','政府监管注册','验证码:${para1},您正在进行注册操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','f3a6f892dac44af39a2baa119283195d','2024032505',NULL,NULL,'2024-03-25 02:11:54','2024-03-25 02:11:54'),(3991,'sms','jg_regplane','zh_CN','政府监管设备身份验证','验证码:${para1},您正在进行身份验证。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','255cbc702f6f4936be1025239551fea1','2024032506',NULL,NULL,'2024-03-25 02:14:46','2024-03-25 02:14:46'),(3992,'sms','jg_sms_bindnewphone','zh_CN','政府监管绑定新手机号','验证码:${para1},您正在进行手机号绑定操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','4312f0e063364075acef17cd149841b1','2024032507',NULL,NULL,'2024-03-25 02:17:17','2024-03-25 02:17:17'),(3993,'sms','jg_dongtai','zh_CN','你有一条新的动态提醒','凌云动态发布了一条新的动态,请登录电脑端查看。','3267348d0ac54a0498b9f33f71fee555','2024042301',NULL,NULL,'2024-04-23 02:20:44','2024-04-23 02:20:44'),(3994,'sms','validatecode','zh_CN','发送验证码','验证码:{para1},3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','ded6b1eeeb924bd7935644fb21967c4b','2024042601',NULL,NULL,'2024-04-26 07:00:33','2024-04-26 07:00:33'),(3995,'sms','jg_tonggan_notice','zh_CN','发现目标通知','5G-A通感一体平台提醒:【${para1} ${para2}】侦测到飞行物,编号【#{para3}】,位置【${para4},${para5},${para6}】,所属基站为【${para7}】飞行轨迹详情可登录平台进行查看','9053c4226dc2468d87f9aec7f05b8470','2024042602',NULL,NULL,'2024-04-26 07:35:57','2024-04-26 07:35:57'),(3996,'sms','jg_warn_handle1_notice','zh_CN','告警处置通知','无人机${para1},${para2},监管员已进行${para3}操作,处置位置:${para4},${para5}','a41df66417fd471394a11d74a8d18660','2024070502',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3997,'sms','jg_warn_handle2_notice','zh_CN','告警处置通知','无人机${para1},${para2}/${para3},监管员已进行${para4}操作,处置位置:${para5},${para6}','d0daf289f2b64fb9afac64c73c593c24','2024070503',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3998,'sms','jg_warn_handle3_notice','zh_CN','告警处置通知','无人机${para1},${para2}/${para3}/${para4},监管员已进行${para5}操作,处置位置:${para6},${para7}','54e514da6e3b44729e6c980b6cf1066b','2024070504',NULL,NULL,'2024-07-05 06:03:51','2024-07-05 06:03:51'),(3999,'sms','jg_onekey_cleanair','zh_CN','一键净空通知','无人机${para1},监管员已进行一键净空操作,请尽快处理。','dcd6cae37ddc4f31ac86ef8548b1532c','2024070501',NULL,NULL,'2024-07-05 06:03:04','2024-07-05 06:03:04'),(4000,'sms','sec_alarm_sms','zh_CN','安全告警','尊敬的中移凌云用户:\r\n平台监测到一个${para1}告警;\r\n发现时间:${para2} ${para3};\r\n为确保飞行安全,请您尽快处理。','41373a17a8f84e4ca11b9c3c8fcf8dc5','2024070120',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(4001,'email','sec_alarm_email','zh_CN','安全告警','\r\n\r\n\r\n \r\n \r\n 中移凌云邮件通知\r\n \r\n\r\n\r\n
\r\n
\r\n\r\n
\r\n

尊敬的中移凌云用户:

\r\n\r\n

\r\n 平台监测到一个${alarmType}告警;\r\n

\r\n

\r\n 发现时间:${alarmTime};\r\n

\r\n

\r\n 为确保飞行安全,请您尽快处理。\r\n

\r\n\r\n
\r\n
\r\n
\r\n\r\n',NULL,'2024070121',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(4002,'webmsg','sec_alarm_webmsg','zh_CN','安全告警','\r\n
\r\n

\r\n 尊敬的中移凌云用户:\r\n

\r\n

\r\n 平台监测到一个${alarmType}告警;\r\n

\r\n

\r\n 发现时间:${alarmTime};\r\n

\r\n

\r\n 为确保飞行安全,请您尽快处理。\r\n

\r\n
',NULL,'2024070122',NULL,NULL,'2021-06-24 01:49:37','2021-06-24 01:49:37'),(4003,'webmsg','zjjt_create_task_webmsg','zh_CN','派发作业通知','${para1}派发了一条作业,请尽快处理',NULL,'2024072201',NULL,NULL,'2024-07-21 16:00:00','2024-07-21 16:00:00'),(4004,'sms','jg_warn_handle_noti','zh_CN','处置无人机迫降&返航','无人机${para1},监管员已进行${para2}操作,处置位置:${para3},${para4}','ff25df878007456081f5f057dd077a4f','2024072901',NULL,NULL,'2024-07-29 07:46:15','2024-07-29 07:46:15'),(4005,'sms','emergency_duty_task','zh_CN','您有一个值班任务','您于${para1}有一个值班任务,详情请登录中移凌云查看。','06e79370ec314a9e8baadb55570ed345','2024081401',NULL,NULL,'2024-08-14 06:12:30','2024-08-14 06:12:30'),(4006,'sms','jg_sms_modifypwd','zh_CN','修改密码','验证码:${para1},您正在进行修改密码操作。3分钟以内有效,请您尽快完成验证,切勿将验证码告知他人。','f3b11b2ce28546f5b9f22cdfd59d2adf','2024091101',NULL,NULL,'2024-09-11 06:01:55','2024-09-11 06:01:55'),(4007,'sms','pubSec_shareCase_40B1','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3} ${para4}\r\n报警时间:${para5} ${para6}\r\n报警人:${para7} ${para8}\r\n所属支队:${para9} ${para10}','1e163f4dc1524373b30ad6ff9369abdc','2024092601',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(4008,'sms','pubSec_shareCase_10B1','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1}\r\n报警时间:${para2} ${para3}\r\n报警人:${para4} ${para5}\r\n所属支队:${para6} ${para7}','feb75d76edda44468f5a6db6a1d84679','2024092602',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(4009,'sms','pubSec_shareCase_20B1','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2}\r\n报警时间:${para3} ${para4}\r\n报警人:${para5} ${para6}\r\n所属支队:${para7} ${para8}','36f2a76fd0784fdaa563cc779f5e5ff4','2024092603',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'),(4010,'sms','pubSec_shareCase_30B1','zh_CN','侦察大屏分享警情','尊敬的中移凌云用户,您管辖的区域发生报警。\r\n事发地点:${para1} ${para2} ${para3}\r\n报警时间:${para4} ${para5}\r\n报警人:${para6} ${para7}\r\n所属支队:${para8} ${para9}','8981480641d341b98a51b91cdfb0efae','2024092604',NULL,NULL,'2023-03-30 01:37:57','2023-03-30 01:37:57'); /*!40000 ALTER TABLE `msg_tpl_lang` ENABLE KEYS */; UNLOCK TABLES; @@ -65,4 +65,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:29 +-- Dump completed on 2024-11-14 11:14:04 diff --git a/999-数据库脚本/6.0.0/uav_oauth.sql b/999-数据库脚本/6.0.0/uav_oauth.sql index 64081f7..2317a94 100644 --- a/999-数据库脚本/6.0.0/uav_oauth.sql +++ b/999-数据库脚本/6.0.0/uav_oauth.sql @@ -22,7 +22,7 @@ use uav_oauth; LOCK TABLES `oauth_client_details` WRITE; /*!40000 ALTER TABLE `oauth_client_details` DISABLE KEYS */; -INSERT INTO `oauth_client_details` VALUES ('15oM5kxouECva8pU','oauth2-resource','{bcrypt}$2a$10$CZLl.EZolyBux4CCkGpwierPub90X3/tj7B7TTFl.DA2h8grcIIl.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('1adjizleTe2wdABP','oauth2-resource','{bcrypt}$2a$10$ltFBQ1Li7tBpx6GQBAEP6utrmsaLbYGM0JKJl/kQUy92mteZYNfU6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('1vUiNDYoSxTMMbBe','oauth2-resource','{bcrypt}$2a$10$4UnDkgMGGOzcdNq3C/Qhp.JJnYrSanh938oqOv8isZF7aGqqaLvLm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('2SZStPJdTYeEugL5','oauth2-resource','{bcrypt}$2a$10$dREKHiqYhWfIWUmOWudciu6Iq0G7Qh1.KpECdEyzuWgAZ/Ka9tBKG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('49C8u7qdeiteDGHb','oauth2-resource','{bcrypt}$2a$10$caOwNNd5Ptyfl0tMFdYsWu2hxoPdvA0Eh2H3z9l2F6pmMoMOHavV.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4hMNlkCCIDhrQP0q','oauth2-resource','{bcrypt}$2a$10$T2XaEDA9No5qZo0jfiN7jelXS4B81kY2ZgB9y22Av0UrQHfoUGft2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4MTIWgCWrPydO6Uz','oauth2-resource','{bcrypt}$2a$10$11YqwEsaQKifnGkYsT5a5eBL8CP1/5AzEPcxmfF8qMAX7oSCgB1H.','all','client_credentials,password,refresh_token,authorization_code','https://www.baidu.com','',86400,2592000,'{}','true'),('4nB0n8VkRLA98umd','oauth2-resource','{bcrypt}$2a$10$r4g/h.dME/yohZeZXz86SOKo3R.1WqXgrBK1l2z3BcLB/YADiz6jK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4TBfeQxr8rg33qX8','oauth2-resource','{bcrypt}$2a$10$jlYzmxHmVEdXdPdnrmAeXuZ/y6M/a3N75KWsvww8Y6BXMQMuL3hAi','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4vMasVq4Vw3QhimI','oauth2-resource','{bcrypt}$2a$10$Dgamu.yKSidJWkK6klZy9.tOmswcQ2WlZp9JwdZlDt8VKHTi025Xq','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('5U6c9TrOv1OF66oT','oauth2-resource','{bcrypt}$2a$10$FiSwy6xQBDl84yrx9ofKEeB2wCbOFZf7etNxFJLdEuVTyX4arsIjm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('5y21QWseic7oUPs5','oauth2-resource','{bcrypt}$2a$10$68n14Itq0Zvcf5vFnafy7upTcWkfwilmYGdErfsSXP1CWTpyknZnm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('6EWDvxwoxV6zmDph','oauth2-resource','{bcrypt}$2a$10$5f/I/CkiQjfRBtOri5FExuB4lfmpAhizBthe7DzfWt1tbPytzIms2','all','client_credentials,password,refresh_token,authorization_code','http://baidu.com','',86400,2592000,'{}','true'),('7nHVOAyGHYG7xJDj','oauth2-resource','{bcrypt}$2a$10$QN/N54RuAI50c7kxtMQNoOY.RW8JLzN0HqL.ZD/awZTkh/iZw.sbW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('7u64ID0HswBBmFeg','oauth2-resource','{bcrypt}$2a$10$qjVKEqOvvsFlpTmikavEx.Q/O67yFmkGHP60rg9q6iWHADIIMiY9W','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('8lRFVA1ywhgXxFdP','oauth2-resource','{bcrypt}$2a$10$GNxKccYa9w7YbIvbNVMMZ.thZQxFK6RZxhaXBxCeoq.v49mPctoXG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('9bv1qrK4VS1Oc78u','oauth2-resource','{bcrypt}$2a$10$o48mzIEzw9Q.9EvtDDdarOFe72v/RY7S9BXuq46ldsZAmfu8JLyiC','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('9dfmB6CnXo9sJuGr','oauth2-resource','{bcrypt}$2a$10$yoVvQJVYlUeWk3yAxwIBFecVsFsCsirzq78VZGAl1Nf6tJCrhERPO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('APP_0BF17ayVaSpY89O4','oauth2-resource','{bcrypt}$2a$10$qgoxJUIcYjDiBIMVZbuyqOe5XycFSfwcwOU/yjZcDkplyG0ghWVQK','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/ai-brain/#/oauth','',86400,2592000,'{}','true'),('APP_1QeaPD3Kd90jPh88','oauth2-resource','{bcrypt}$2a$10$PRCsQjC9spE6jBKWB6htLeSk49y4crHkWCY9GnVp9OLxYt1N1bxBW','all','client_credentials,password,refresh_token,authorization_code',' //www.demo.uavcmlc.com:18000/inspection/#/auth','',86400,2592000,'{}','true'),('APP_2O6gzQqdt1gVGByW','oauth2-resource','{bcrypt}$2a$10$.L0Au0SeUuRJD7VJHKUX2OKyUB1mMFdca0wWSuP16DWlHHqwKdwpe','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/#/fireRescue','',86400,2592000,'{}','true'),('APP_3RmcJaecdbsvQwZn','oauth2-resource','{bcrypt}$2a$10$ihMa0pQCipsEEpB12sLHtO8j4rBNQbaN5uG842gRH6fjGBXoexOAC','all','client_credentials,password,refresh_token,authorization_code','https://demo.terjin.com:30043/api/v1/uavcmlc/callback','',86400,2592000,'{}','true'),('APP_4AU8lbifESQO4FD6','oauth2-resource','{bcrypt}$2a$10$qPN8MyHvxCXkvmR9LNfLieNylNxX4TEo056OgTv0COp0IZlZeEN2.','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/media/#/oauth','',86400,2592000,'{}','true'),('APP_4pOYDvnA55Xupznq','oauth2-resource','{bcrypt}$2a$10$pupeWmnjMdmPg2wTU8arGeJvdKTsIgp..fghHSgY6LbxAWl01YK22','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_9LY41OaKSqk2btY0','oauth2-resource','{bcrypt}$2a$10$xRYXbJqho1LkYeO8AJZZauTKqEDTB6p/p50aKnIUcsKKSignA/mYi','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/base/#/oauth','',86400,2592000,'{}','true'),('APP_aCOx0NkGTtMweRRL','oauth2-resource','{bcrypt}$2a$10$iR3TrRLqBibxW0nwkqA3weLqLVRUyCkAwudH/8kmQzal/GVI.XVGC','all','client_credentials,password,refresh_token,authorization_code','https://lab.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_aDxbkOxldQw2GW6h','oauth2-resource','{bcrypt}$2a$10$TV1kAFV4EEkZgoUQCOqXf.UGDwh59KD77W4NVxwbT4tnZJQdvYb9u','all','client_credentials,password,refresh_token,authorization_code','http://yc.flision.com:9302/login','',86400,2592000,'{}','true'),('APP_aGsTAY1uMZrpKdfk','oauth2-resource','{bcrypt}$2a$10$211IxYlPL15c0IR1R35Haeeo86ruKl2RBlHVj94FqIwewyREli5VC','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/emersupport/#/oauth','',86400,2592000,'{}','true'),('APP_b46KkuWDTE725RP3','oauth2-resource','{bcrypt}$2a$10$l1A2JZ3tzD2PkRc7fw308.PDn7631A6bclyQfK6I6nxemGbrtSdTK','all','client_credentials,password,refresh_token,authorization_code','as','',86400,2592000,'{}','true'),('APP_BMxntZu3pjr4Y4lW','oauth2-resource','{bcrypt}$2a$10$SvIgFFOZVLPY36O0e28n2OOHkZDUaaGbXRMIQ0TwBU4mBt40/HBvK','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/splice-visual/#/oauth','',86400,2592000,'{}','true'),('APP_D9yHWNgGtayZnEUG','oauth2-resource','{bcrypt}$2a$10$88xmnZjOdTJXKKYpV1Sj/uLxfzLpfDgIk2vr4PVL1L8NLTbarfQd6','all','client_credentials,password,refresh_token,authorization_code','test','',86400,2592000,'{}','true'),('APP_e98donoShXhPfUeb','oauth2-resource','{bcrypt}$2a$10$.MI2z9U0WfXXATqlNCm7OuexUk94PEhrdRrc4NnVfwudgdHj2U2qy','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_ezhJe6BZFIcWK52h','oauth2-resource','{bcrypt}$2a$10$Y66cb87.OdlgTLmbtbGHQORevbxbu1cvVfBM9TE4R5ed7KK5KfCHe','all','client_credentials,password,refresh_token,authorization_code','//','',86400,2592000,'{}','true'),('APP_FAiE5CmLnI1D5uSn','oauth2-resource','{bcrypt}$2a$10$BrSZg1AtkZZ5D5r8fuh7LuKa0IeIGd3rkTpvVRbbSDxEn9w.7hQMK','all','client_credentials,password,refresh_token,authorization_code','d','',86400,2592000,'{}','true'),('APP_FDHW2VLVDWPnnOCy','oauth2-resource','{bcrypt}$2a$10$HD1h1NMiPHedR2xXt7sX.eetjPJaQrYWtL058b4Okq8rhL.UvjD6q','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/detection/#/oauth','',86400,2592000,'{}','true'),('APP_GggMNtv9QlP4c9Or','oauth2-resource','{bcrypt}$2a$10$kc.QIBEKGCwO5SErXouIn.DM83R15QU4WOfhan76HmLy0M1TicuKG','all','client_credentials,password,refresh_token,authorization_code','https://sentry.dev.linxot.com','',86400,2592000,'{}','true'),('APP_GN6Mqzr6pCwZwtya','oauth2-resource','{bcrypt}$2a$10$E3Ufnoa1fOUpzL3hoUcS9eMvQs6uXkniuHl09w8LnKumEDktbjtUa','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com:18000/traffic','',86400,2592000,'{}','true'),('APP_gXFErCPp54rC0ase','oauth2-resource','{bcrypt}$2a$10$TcquwxxldAFpthVM.LQaZ.3DHaZUXPz96NE9qyyfcdmUrMaYMaeeG','all','client_credentials,password,refresh_token,authorization_code','about:blank','',86400,2592000,'{}','true'),('APP_HqVAZZ55EWfLQ063','oauth2-resource','{bcrypt}$2a$10$w2l2yzC0wTaZCfCBuvmYs.LEztibRgD0pmKuvIPE4mrNRFsFjT0f.','all','client_credentials,password,refresh_token,authorization_code','https://isv-rsi.i-tudou.com/login/oauth2/code/PANGU-RSI','',86400,2592000,'{}','true'),('APP_Jc8i2wOQ1t73QEJS','oauth2-resource','{bcrypt}$2a$10$K3/EC.L2epfQMw1Qe3Mrp.mZxvMo4wsq0IsF.Tgd/r4kzyGn3KGdC','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/visualization/#/oauth','',86400,2592000,'{}','true'),('APP_jf04PerIBiDeRO6l','oauth2-resource','{bcrypt}$2a$10$/sSDpTV66PkRnO9Ay9iwb.vb2pMszQTwog.OsPCbWiNFiRYdEGLny','all','client_credentials,password,refresh_token,authorization_code','http://116.63.168.191:8184/analystrunner/a953b977-21fe-465f-99d1-e1d9351bd90c','',86400,2592000,'{}','true'),('APP_JUSEMc7afyWXxvE7','oauth2-resource','{bcrypt}$2a$10$M1vK3afxbWLxscTH/CBNxOxuSjKRPyAcUArsxH/cFHgqYqmTw94mS','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/security/#/oauth','',86400,2592000,'{}','true'),('APP_k5cbUcneptCuDAMM','oauth2-resource','{bcrypt}$2a$10$F1GOE1V5hDiT2a30KYoozegbj.d.LHxBh7gWx.O3wJTLR/t2Tm24O','all','client_credentials,password,refresh_token,authorization_code','http://192.168.34.201:9527/callback.html','',86400,2592000,'{}','true'),('APP_kvVZWQ2VDP64l5Hk','oauth2-resource','{bcrypt}$2a$10$GpVKqhISmaD1urK2Wz0OEeTGFFtMss9mzq/w51hd7jLS0/br3663a','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/infrastructure/#/oauth','',86400,2592000,'{}','true'),('APP_l4HIMixfIXhlCTi9','oauth2-resource','{bcrypt}$2a$10$MPaf075Oi31rRiEG5rINouDLzx4L9cXECmmkG2H08KzR5S3DfQWT6','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/splice/#/oauth','',86400,2592000,'{}','true'),('APP_lkAjaqyoJIYqQhmc','oauth2-resource','{bcrypt}$2a$10$CDm/go4s2IfvNudAQ6F1seETcDrc1F7NiYH4PkCjZxlsX1uJWPZHO','all','client_credentials,password,refresh_token,authorization_code','https://runtoint.com:21800/ssoLogin','',86400,2592000,'{}','true'),('APP_m524AblyDIK4I4QT','oauth2-resource','{bcrypt}$2a$10$Li.HBYA4Y0rD3A32TUXVA..LaGyW7uoIURDN6Q3eoMUADB3GReRnC','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_MEeBJHp1fSVD1Wuw','oauth2-resource','{bcrypt}$2a$10$SJSziqlVSBUR.cGaVIO8Run9cNg1ckXk9D2Nkt8QnF9JAom8Te9lS','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/mws/#/oauth','',86400,2592000,'{}','true'),('APP_mOX7BPo2fRyS0SHk','oauth2-resource','{bcrypt}$2a$10$zvoswOEady9RntsI01Ify.Reh1KtMHsil3Pa6njaeyu7VdOqTdGtG','all','client_credentials,password,refresh_token,authorization_code','ddsadfsf2','',86400,2592000,'{}','true'),('APP_oL9KHzs8vLkCYgGO','oauth2-resource','{bcrypt}$2a$10$CEDLN/HbZvrCom.D3DtQ2eb2/BygGO/U4F1YA2irBAhDm/y4Dn9ja','all','client_credentials,password,refresh_token,authorization_code','sfa','',86400,2592000,'{}','true'),('APP_OoWgL4xwb2TJIAHv','oauth2-resource','{bcrypt}$2a$10$.zsHcjOzUmIGq4/G2bqo3uOEySAQdL/UCQRTyl/PH7EK5fekJyGXi','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/#/park','',86400,2592000,'{}','true'),('APP_OqOQxwHnYizTFEu4','oauth2-resource','{bcrypt}$2a$10$AF1z.U11D35evDlThPgfmut56SC5Z58r.1.Cwnren3hfbzwLnPdgC','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_OUrP03UOTECGIxH8','oauth2-resource','{bcrypt}$2a$10$3goXDasMuzxcVJQ/vtsRIuyRK99D2EP7xcN3oQ7UkEEcR/2dFxM1a','all','client_credentials,password,refresh_token,authorization_code','http://47.96.112.120:8012/cyycallback','',86400,2592000,'{}','true'),('APP_pRD4netwRenuNWYt','oauth2-resource','{bcrypt}$2a$10$FcP3ScYm6QBQ.PRkNsm3aOh0mYz42EaD3Tq12rakEcIvflL7gjp4S','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/#/communication','',86400,2592000,'{}','true'),('APP_PvdfRRRBPL8xbIwl','oauth2-resource','{bcrypt}$2a$10$afiTFwEVvI/jhZ1.WpZ1u.fzQ5AN57OhnlMJA5fKwmSGoJ.hTDR0C','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/logistics/#/oauth','',86400,2592000,'{}','true'),('APP_pWf3ddV5e6HXrSVG','oauth2-resource','{bcrypt}$2a$10$2hEy9mLSEY7gkyT1hTyJLuTKg0tem955Qt3v8cGH7Bbrhvd7hn42O','all','client_credentials,password,refresh_token,authorization_code','http://222.128.5.18:32092/tlcp/f/autoLogin','',86400,2592000,'{}','true'),('APP_Q61lT2i6zhnf5pvo','oauth2-resource','{bcrypt}$2a$10$tfQ6mWk1nYlJRDeU1Oym0eVDBlJ7LeytydT/jaxaxLPUwvj7V4IdK','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_qqSu82THfexI8PLM','oauth2-resource','{bcrypt}$2a$10$Zr7M5K0PmoaOmHBx6svyvehpHRrK7Sldvwb8JNTnx5.PdR9i/N7ha','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/supervision/#/oauth','',86400,2592000,'{}','true'),('APP_sbp9mWGgvgmFVNKc','oauth2-resource','{bcrypt}$2a$10$FMeLr4BShTJ4pRFeIlLqAuAqJwG8JnAjPgZWbNv.aM9kTG6dmnGN2','all','client_credentials,password,refresh_token,authorization_code','http://117.139.13.157:25057/#/autologin','',86400,2592000,'{}','true'),('APP_UIegse6Lfou9pO1U','oauth2-resource','{bcrypt}$2a$10$wupyrnaMMryvpiP5dspakO6ok6RtcLS8ez3d4rUb9xaKQUyqojTH2','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/armypeople/#/oauth','',86400,2592000,'{}','true'),('APP_uzUqFHEchpNE8ZwX','oauth2-resource','{bcrypt}$2a$10$Gqnw4l3I6r9Xq7tePNDPbe3PKn2O8FikuzDXVQHf.QiWA7fYiSbFG','all','client_credentials,password,refresh_token,authorization_code','https://isv-3dacqm.i-tudou.com/login/oauth2/code/PANGU-3DACQ','',86400,2592000,'{}','true'),('APP_VDAsQoijztZcgcNl','oauth2-resource','{bcrypt}$2a$10$rjhYusxCB/yLaK4iY3Q7rujyHWVyN7FU1KrLcQwl8Eha0mymhmgGK','all','client_credentials,password,refresh_token,authorization_code','#/simulation','',86400,2592000,'{}','true'),('APP_VNsPETiwZpNBFmrT','oauth2-resource','{bcrypt}$2a$10$Huf8L3qeHxmHqaESAEz2q.Vp2HYA.0PfOMaop3.EEyp9lcl3SE4Ru','all','client_credentials,password,refresh_token,authorization_code',' //www.demo.uavcmlc.com/green/#/auth','',86400,2592000,'{}','true'),('APP_WXC98VROH3JWNUcw','oauth2-resource','{bcrypt}$2a$10$VUhUAxR7qpUx2uKLkoWH1OHIeV6lE8anJbROVXyQQncc2xMkrwcf2','all','client_credentials,password,refresh_token,authorization_code',' //www.demo.uavcmlc.com/threedsimulation/','',86400,2592000,'{}','true'),('APP_X4KkxRzeqPyE0b1f','oauth2-resource','{bcrypt}$2a$10$anjsamTxvvk1HtrtNHgpEuJFFqzXcljXojpn7nzi1Uk/jhx1gvWuq','all','client_credentials,password,refresh_token,authorization_code','http://118.114.172.141:51103/#/autologin','',86400,2592000,'{}','true'),('APP_xtN9XF2L1J4IRHaB','oauth2-resource','{bcrypt}$2a$10$Gp4JyOGJa9zntmCRKUPabe/hLBKIXcyZY/RTJaoCosNnzt60y530e','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/hyper/#/oauth','',86400,2592000,'{}','true'),('APP_YXXwlSJI0eIj0qoA','oauth2-resource','{bcrypt}$2a$10$ivijiTXV3SGgP0.fhFTtTOx/BXi6EDpfRfm.x38y51gBdPrCm6Yxe','all','client_credentials,password,refresh_token,authorization_code','pangu','',86400,2592000,'{}','true'),('APP_z1aks5MqgKXJ9hry','oauth2-resource','{bcrypt}$2a$10$8ehYiqf88soxdtnYTNJLzumWDCRGmOnqbNhC9kUWuKlMB9NYrNg8y','all','client_credentials,password,refresh_token,authorization_code','https://192.168.34.33:19092/callback.html','',86400,2592000,'{}','true'),('AucvTNtcLqIiefb3','oauth2-resource','{bcrypt}$2a$10$M6wf8L.fQ8pCCiAbv8oFie8ioXbQ4y.nrp5/..Fz9qx.TsBjzjZly','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('B50M5wmp1pKg9Liy','oauth2-resource','{bcrypt}$2a$10$oMR9HD2lnTJ3gGWbGZ7rQuiLq0fw9Jt4sau3q0DdjQyVaOlTQkY6S','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('bpv9889lSpjubYka','oauth2-resource','{bcrypt}$2a$10$gGnUydBa.Y3mm9IOWaLNJeHS9WEo.zu5Tf1TAU3eWfHk6wFzE1op2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('bvadukd07KOsq4Lj','oauth2-resource','{bcrypt}$2a$10$AdEP.yoPaiZIL6WbrQbqYOVmoYhgOTF8PFb.uFlg7DxFU9oWXuGYe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('C9EvPzYe7aB454zG','oauth2-resource','{bcrypt}$2a$10$j8lhivVzrqk5NfCgAm8nGOgv.DGIO.iJjNdMvFirvgmF3ygt1Jvs2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('cDBc7XuAJMYfGX1C','oauth2-resource','{bcrypt}$2a$10$zh/ZLtgpBu3wNRzaFUz2z.xZEiqZ2yl98wYvs4/Et/7ESCsoGvYYO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Ch3KyCtMKqtRgDzI','oauth2-resource','{bcrypt}$2a$10$ZdEIGaS.QIabVCNEKZ7C8eFIE7ZPgXSh.TfeSB9qJathWOQ9iIIE6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('cJHO4oeAAwLX4zNw','oauth2-resource','{bcrypt}$2a$10$gewQUIYx16NlG/Obz6X8fu.r4dVvxbFkGO5C7q2sYOSmuJlZNH2LO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('D26SF7ky8vQweHgP','oauth2-resource','{bcrypt}$2a$10$ANHBJ8uUsLkx8FIIvEyZo.Bt7to0hUhwwvBWAYTjix2EIbkLEoZ/2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('de9m4Mc5nUv2GvQ1','oauth2-resource','{bcrypt}$2a$10$5S7xBj6uraBCZy.nGClMXOeIGETU1bq.F6EjB0xDN6Vh7j4WkM/BS','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('deQXLIM0czv9fhel','oauth2-resource','{bcrypt}$2a$10$iP.r6bD.IUl6.Lxki.4MRu2u0Ilr2z4C7DL35i4mTk4fngb8TsiHK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('dm1npsXLQk2iRH2u','oauth2-resource','{bcrypt}$2a$10$8v4aWDQiDInfdZNFLPTAnOeOOKtey0p/mYtMFoleLcnS9hX6VTR7G','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('dy8AHJmXblTbz0SV','oauth2-resource','{bcrypt}$2a$10$Ouf3wAdPcRzNlyCfJQ3Vsevt0UxvyXHHnFc518xiPO8SJCBSRV2bW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('E5Mm3ICZg089nlvd','oauth2-resource','{bcrypt}$2a$10$v/UUpWxa8o5kLx6Fmet/qOHRdNx0P4dCdniQRI68gV6LcVyq73bRy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('E8TKEUvWkiSA11GX','oauth2-resource','{bcrypt}$2a$10$8aOSSw8WcropH.jHWZAhxu3i0n2J3XGf3VLbKEtT24RvBsfKFfWey','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('errC2h4TZxa4XJW1','oauth2-resource','{bcrypt}$2a$10$TbPqw7JELBsKxjH17aehReHhaogefYJLhKNCFgU/my7XcD4eVcji6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('fcwcDJhVMO1pqN0b','oauth2-resource','{bcrypt}$2a$10$QRVgOM66QztZraNysMPpUOdL6zLUuUnXDgkQCteQgU6sQTMwZOPIi','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com:18000/open/#/console/application/detail/setting?appId=474246619413348352','',86400,2592000,'{}','true'),('ff4mXSniVzQmWTiQ','oauth2-resource','{bcrypt}$2a$10$q0didxbRVyT//KLa2//XEOJcynu25gwi8jydNrpWU0u4Z.auBErnG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('FL8SbZX4hs2qPhmm','oauth2-resource','{bcrypt}$2a$10$e2pjpwaOmYGK/vpzQMRmO.08.c7LrPlYKKWH0FPlj6L6wlexFQa2O','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('g8HyyTC72dEDiDsK','oauth2-resource','{bcrypt}$2a$10$pBSLSDHTmpErLU7z6wI4V.KqCxDYs865Lm8nIagU0r8LFz5g74PAW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('gateway','resource,oauth2-resource','{bcrypt}$2a$10$0KKNS7inDBjnX2G34s/7fe5XpO7YdeQ2RcBdwspL/aB7ZI45fFO1O','all','password',NULL,NULL,1800,NULL,NULL,NULL),('gateway_app','resource,oauth2-resource','{bcrypt}$2a$10$0KKNS7inDBjnX2G34s/7fe5XpO7YdeQ2RcBdwspL/aB7ZI45fFO1O','all','password',NULL,NULL,2592000,NULL,NULL,NULL),('GrYb2kHtX01b7E1s','oauth2-resource','{bcrypt}$2a$10$87sWbwY0HFwJXDNyqcBiqOW4lPfp8n.NHl8Kdzh5mcDP/ZPwoj0Ny','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('GVahSvoIkVCvN1ZT','oauth2-resource','{bcrypt}$2a$10$ItIdvut0QhJwm/3TaXGCguXUWGx9Ht3CXRYlVDTyhXQVKS0zI5Xd.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('h20Z6cVxke9SaI9Z','oauth2-resource','{bcrypt}$2a$10$TYTuEpFlViUS5HdkxcIC8O3vTFZUQk8TIX/tHxQPmpoIBGiEZmJnG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('habGqomHztrBNjqi','oauth2-resource','{bcrypt}$2a$10$j/Q1RXKemyWLVq/Q5bTp1epiLPV0JhBvJDxG.0844SssAUKzWxdSe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('IaIYAnKu0sU1NXDL','oauth2-resource','{bcrypt}$2a$10$/POw/u1u05DWhp5pTVb6Ne1DkP0H.pKMyBW/hO3ttDci9ZW18WHxO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('IHxy9UQfssyDEdql','oauth2-resource','{bcrypt}$2a$10$gXf5V9nmU8HHEHY46MoX8uJ94hD5mDWvpAdLYZnOmwgRQUYoKdV7K','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('J9cTJG2qwq46orza','oauth2-resource','{bcrypt}$2a$10$xOFyNtToN3atbjeQEXmAwO0OVtpeVBWnjOejYDkPauAmZM7/S0A9q','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Ji5MavNrmlugG3Nw','oauth2-resource','{bcrypt}$2a$10$ePJqM6YUOur7q1sG7z3gC.q5CSakuB6m2PKPeiQoeicLYdo61oHI2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('JNipQ9PuZeb5taI2','oauth2-resource','{bcrypt}$2a$10$Ayd1iz4Sh/T7YPNxN6oJJeoQI3NZKQdvi1teF5e6t8daoc9aEKc4q','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('jxavoqlzRW9rJbMv','oauth2-resource','{bcrypt}$2a$10$5OpmCWD.1msfmPH8BrgH5e7ofHgSMssG6IX3ON8HMjVVsx3AOvcuy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('K14gDYI9CVyuSbxI','oauth2-resource','{bcrypt}$2a$10$ivFYTPzls7v0tXXiJmrpF.oyv8PaApj3ylECixW6Y.dVNUpufx.Ki','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('K2GWdIPTqeea3JBw','oauth2-resource','{bcrypt}$2a$10$Luj1V8M8bJnr9M/DtoINO.JCY2sr//Rsjja82A.ZlvT2P0miXe6s6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('kf8tjZDIv71acAD1','oauth2-resource','{bcrypt}$2a$10$wO6esoRLntZMd6duPfy1ROdogQ5o4NUU5GsR0DcBkjPlFlmliUpWu','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Kl14XjSdWNdNZ3GS','oauth2-resource','{bcrypt}$2a$10$dvkMd6KDwOD4urmhT51wTujUPlHJm7k5boG8PzBpEuDEPJlHdXluW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('KLL3Zu6a6d8WeIbr','oauth2-resource','{bcrypt}$2a$10$2kXhqeUmGoLIoekFQAlXNOIyM2JIiJiPIe..M5J5M4/OFyMlA/oV6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('kSt0cITaYjwijgIY','oauth2-resource','{bcrypt}$2a$10$QUAQR6D/CdB5kGdAo8phJO0OaVOXGf8s5j4mFlWERzom3lCzMaGbS','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('lCOOsj39WQ4LkdMo','oauth2-resource','{bcrypt}$2a$10$X2R57Mkf02F1LL90ISpFfuW9BlBl.dkkQCvBmkPmxazv7t64za6AS','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('LhiYSXv5Yy2vksto','oauth2-resource','{bcrypt}$2a$10$bEs4Ni6l5n1c/QyQLfqPwes/pX0r4IIZAJUx4Dp398osgutorPvG.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('lsAfRs5c0j7cGIdQ','oauth2-resource','{bcrypt}$2a$10$VNDQgoBm5FNzkOqZICwMJOuim/urXnYrm6EW.RFxCrOhBCBupbhuK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('lzTaGWYIcvNHevgQ','oauth2-resource','{bcrypt}$2a$10$GmATetLnq9nmQBXPDaKIEOs/mPp1Rru2Yn9y2Uw4XtPsjH3ZhTGSK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('NckRUGzbzfsnfOp4','oauth2-resource','{bcrypt}$2a$10$kp3OGQIO7aRtWDV/WwyNF.RSTd.JRYlKl4mp59gsnviYKPMZ0nRJq','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('NFCaNEzq5jOI7ajY','oauth2-resource','{bcrypt}$2a$10$nG97Vlbd.Bvc2ZV8JqvM5.8H6a9hVNelMXDHrhSUbZHJMPVfrZaW.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('NQI1QhgYDoU5SHy2','oauth2-resource','{bcrypt}$2a$10$YI3D7KF87.6pvA0FWO1cz.hpIAUNQGegmwgt7HI83nDczU5epMitO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('O4Dr8hVqn6cUCbf7','oauth2-resource','{bcrypt}$2a$10$ZB/exZ17DJt5yOBwDWzP7Oqas/s8BlxOOkRxrWEEG/nRRaLEOczPO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('OQfNmSqDixTbpuxJ','oauth2-resource','{bcrypt}$2a$10$knKfLboI1EM1CCtLWCio1OP8jtqwSewaM1wMMvNXHfPUfU37LQQ9S','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('oytDkqppMU4WR4H1','oauth2-resource','{bcrypt}$2a$10$9l4HYbaYppKIlGHWZWQVHejUtLTOlUGLv6T0LRqz1Oxf0/eSDvVlm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('ozdOgG6tarMBRmfl','oauth2-resource','{bcrypt}$2a$10$6BcUnguPSmCr4d9d3nkKle7MKp9QpJac1qukKnY/N3cned6R1gYeW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('p6dTB1NmOsRCfDAa','oauth2-resource','{bcrypt}$2a$10$Auf1Tie90X.agUte/pW53eVpui0RCS9gLSzknfBkVK47GXSRnIS5e','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('pd6dRhICfH7BkwG2','oauth2-resource','{bcrypt}$2a$10$rab7QSSmYDL6Xo8df7QDE.nsnpjWOdRU4ZXiaS.7yyS8nbmZqBNHe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('QB46nC0eKMSDZP1v','oauth2-resource','{bcrypt}$2a$10$Lc8frO8M0.689tVbNnkBPe8DhZIxXNUCqiEY.etIouGaqvm5GjPru','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('qiSVgPXIIWWQzkeu','oauth2-resource','{bcrypt}$2a$10$E2ofF/3s8cow45x2F/205ezNd2imHf3M4GuUZT4WIK0/wflAWwHMG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('qQDMgiNgGnWncB1e','oauth2-resource','{bcrypt}$2a$10$/kqmyJfzMsX/jjMhd.SpY.NjqBgN8moGXcrOHa5udQN3MFYCiB7rG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('qZirRd12P84XGJ77','oauth2-resource','{bcrypt}$2a$10$fgtj8pGhQlL2EYEJhQBt4OkRCIy2R8nJMhHkj.skbM9Ehqt9RBj6a','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('RMADKvD3bYmqU5vI','oauth2-resource','{bcrypt}$2a$10$iY23C/d7HdhkTx24egvCyOzSeDbe2U299Au3FdTiczagYuKRo05Ci','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('t449G2PIalwkR3kM','oauth2-resource','{bcrypt}$2a$10$.UBR0uwq6SuYaWPCRbFwJ.Rkz5BRNC5WUJ49Nlz6pSOSbMIZPs6My','all','client_credentials,refresh_token','','',3600,7200,'{}','true'),('t9Dj1d248bKLQHKM','oauth2-resource','{bcrypt}$2a$10$fJq3kiOvx6f4B.cxzdPql.ndz6QhoAJFfNBft3UDnN4cA/7omjtoe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('tFyEE1UR42vlmoWZ','oauth2-resource','{bcrypt}$2a$10$CcBYHxlw6TmrjgqxQ5SOOeMkTcAUCOuRjELU7CjS0.WYoPHIt/tMW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('TWbKMB84WSg3tjFq','oauth2-resource','{bcrypt}$2a$10$c/TxR7skLwu0pXMIp7vFm.2JocAEsDKigdpZTNqOVB2HUxMfCcW4m','all','client_credentials,password,refresh_token,authorization_code','http://927bb192d5.ipv6.1433.eu.org','',86400,2592000,'{}','true'),('ucurTc73uqVla13E','oauth2-resource','{bcrypt}$2a$10$ZxGNZ2iEzM8B9eQGzDiYY.qB0Zk/pvuX9sK0OjjT3f2aVrWXFkdM.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('VD5O5hAaSHwvYJPM','oauth2-resource','{bcrypt}$2a$10$138BNTVJcQKtuBMO8yN.o.Mzd6J0Vr16NlrGuRY2yzey1nE8OfTg.','all','client_credentials,refresh_token','','',3600,7200,'{}','true'),('VzW9o3mzYMAAf1Wo','oauth2-resource','{bcrypt}$2a$10$9keGEozeNUHUr9x2VIftKeUFtzhHE63nA9FueyncW2eXY4aLMJ9HW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('W5EZZg3NCz7I1rXd','oauth2-resource','{bcrypt}$2a$10$8G5b3q2YrAycD69.gCgMdOHVh0RoZNUA7MlioSubsXTKavCpcaUfe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('x7vc3sG6Ze0cZD4m','oauth2-resource','{bcrypt}$2a$10$6r9zHn6TefYnYptZqhtkPOzqgkvSgk88yr81qw2O6ZZCSovtX/Hda','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('xVHfHua7HJTWABYn','oauth2-resource','{bcrypt}$2a$10$kp5XAAqe4AlgvaH5oksvCec9TvS5WQELX.r5TmN0BbaIBrunxsL5.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('YFwXSbZTyrwjQMFG','oauth2-resource','{bcrypt}$2a$10$lwaNACDPvMJHvR1emhC3mu/DYUQtUsidzaLTQLcdxC.WxN5F4I4qy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Yik5RhgClTf9SvMM','oauth2-resource','{bcrypt}$2a$10$.n.lapfSc5JN8MQqgO6wMeVqDRQ/RQ3xUr7jJXEsQkXURe6lee60C','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('YJbJoB7ZsIGFmtxh','oauth2-resource','{bcrypt}$2a$10$a0T4xF4qmF9lOJ000prwm.WWXhzY/1YhmgwWman2SncH.4RMTqQLy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Ym2P9kdjKCr0n0lI','oauth2-resource','{bcrypt}$2a$10$2k1SPOBAIhNT2ZhWtkIIZ.c2QaaKbKN8aSRoJuudXuX8HQh5/upMu','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('YZxYPIVEibyiwn7t','oauth2-resource','{bcrypt}$2a$10$VbPI5dwZ0TNi4qpCxqsOCu2QXc0rIun9jkIdXH8sYZAorJOTlx.Yy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('zF2GeZsBQ4G4ynTc','oauth2-resource','{bcrypt}$2a$10$66W18ltWQpp9sPp/9IQ5qe8MS4lOu9qCKKFSTFTbY9wrdflX1cCZG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Zq1m9viuyDwZnKjf','oauth2-resource','{bcrypt}$2a$10$q4/vOHgGPuMEXkhMwESHpO5h.OalRIX4nhsHQmM12ix2LNKAPkCya','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'); +INSERT INTO `oauth_client_details` VALUES ('15oM5kxouECva8pU','oauth2-resource','{bcrypt}$2a$10$CZLl.EZolyBux4CCkGpwierPub90X3/tj7B7TTFl.DA2h8grcIIl.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('1adjizleTe2wdABP','oauth2-resource','{bcrypt}$2a$10$ltFBQ1Li7tBpx6GQBAEP6utrmsaLbYGM0JKJl/kQUy92mteZYNfU6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('1oaJyIJdELGwmefc','oauth2-resource','{bcrypt}$2a$10$trml4N1i4L.o4UZAihz3RuLkBG2z5FsB9xRMOn5nHO781fFC5h5KK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('1vUiNDYoSxTMMbBe','oauth2-resource','{bcrypt}$2a$10$4UnDkgMGGOzcdNq3C/Qhp.JJnYrSanh938oqOv8isZF7aGqqaLvLm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('2SZStPJdTYeEugL5','oauth2-resource','{bcrypt}$2a$10$dREKHiqYhWfIWUmOWudciu6Iq0G7Qh1.KpECdEyzuWgAZ/Ka9tBKG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('49C8u7qdeiteDGHb','oauth2-resource','{bcrypt}$2a$10$caOwNNd5Ptyfl0tMFdYsWu2hxoPdvA0Eh2H3z9l2F6pmMoMOHavV.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4Hi7m4HMKdLcLtWn','oauth2-resource','{bcrypt}$2a$10$/c0wd3HL3ETd9HUlBlkVmuVCkCJzCyPV6FO1zbXz4ss5RK4X.b0.G','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4hMNlkCCIDhrQP0q','oauth2-resource','{bcrypt}$2a$10$T2XaEDA9No5qZo0jfiN7jelXS4B81kY2ZgB9y22Av0UrQHfoUGft2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4MTIWgCWrPydO6Uz','oauth2-resource','{bcrypt}$2a$10$11YqwEsaQKifnGkYsT5a5eBL8CP1/5AzEPcxmfF8qMAX7oSCgB1H.','all','client_credentials,password,refresh_token,authorization_code','https://www.baidu.com','',86400,2592000,'{}','true'),('4nB0n8VkRLA98umd','oauth2-resource','{bcrypt}$2a$10$r4g/h.dME/yohZeZXz86SOKo3R.1WqXgrBK1l2z3BcLB/YADiz6jK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4TBfeQxr8rg33qX8','oauth2-resource','{bcrypt}$2a$10$jlYzmxHmVEdXdPdnrmAeXuZ/y6M/a3N75KWsvww8Y6BXMQMuL3hAi','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('4vMasVq4Vw3QhimI','oauth2-resource','{bcrypt}$2a$10$Dgamu.yKSidJWkK6klZy9.tOmswcQ2WlZp9JwdZlDt8VKHTi025Xq','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('5U6c9TrOv1OF66oT','oauth2-resource','{bcrypt}$2a$10$FiSwy6xQBDl84yrx9ofKEeB2wCbOFZf7etNxFJLdEuVTyX4arsIjm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('5y21QWseic7oUPs5','oauth2-resource','{bcrypt}$2a$10$68n14Itq0Zvcf5vFnafy7upTcWkfwilmYGdErfsSXP1CWTpyknZnm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('6EWDvxwoxV6zmDph','oauth2-resource','{bcrypt}$2a$10$5f/I/CkiQjfRBtOri5FExuB4lfmpAhizBthe7DzfWt1tbPytzIms2','all','client_credentials,password,refresh_token,authorization_code','http://baidu.com','',86400,2592000,'{}','true'),('7nHVOAyGHYG7xJDj','oauth2-resource','{bcrypt}$2a$10$QN/N54RuAI50c7kxtMQNoOY.RW8JLzN0HqL.ZD/awZTkh/iZw.sbW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('7u64ID0HswBBmFeg','oauth2-resource','{bcrypt}$2a$10$qjVKEqOvvsFlpTmikavEx.Q/O67yFmkGHP60rg9q6iWHADIIMiY9W','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('8IJLqY7JQVMpLf6X','oauth2-resource','{bcrypt}$2a$10$dT2K9E37OAMnjnQDk8mDlulg47R9l9d3HSRU9cXufhblPcmmmfthK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('8lRFVA1ywhgXxFdP','oauth2-resource','{bcrypt}$2a$10$GNxKccYa9w7YbIvbNVMMZ.thZQxFK6RZxhaXBxCeoq.v49mPctoXG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('9bv1qrK4VS1Oc78u','oauth2-resource','{bcrypt}$2a$10$o48mzIEzw9Q.9EvtDDdarOFe72v/RY7S9BXuq46ldsZAmfu8JLyiC','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('9dfmB6CnXo9sJuGr','oauth2-resource','{bcrypt}$2a$10$yoVvQJVYlUeWk3yAxwIBFecVsFsCsirzq78VZGAl1Nf6tJCrhERPO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('aGUWYadzbIOZXfMD','oauth2-resource','{bcrypt}$2a$10$XmHFLkHQdRLuC7TNbA8Qo.4QYHht7q1W8kh5aoISg/OyU4eSdaOri','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('APP_0BF17ayVaSpY89O4','oauth2-resource','{bcrypt}$2a$10$qgoxJUIcYjDiBIMVZbuyqOe5XycFSfwcwOU/yjZcDkplyG0ghWVQK','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/ai-brain/#/oauth','',86400,2592000,'{}','true'),('APP_1QeaPD3Kd90jPh88','oauth2-resource','{bcrypt}$2a$10$PRCsQjC9spE6jBKWB6htLeSk49y4crHkWCY9GnVp9OLxYt1N1bxBW','all','client_credentials,password,refresh_token,authorization_code',' //www.demo.uavcmlc.com:18000/inspection/#/auth','',86400,2592000,'{}','true'),('APP_2O6gzQqdt1gVGByW','oauth2-resource','{bcrypt}$2a$10$.L0Au0SeUuRJD7VJHKUX2OKyUB1mMFdca0wWSuP16DWlHHqwKdwpe','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/#/fireRescue','',86400,2592000,'{}','true'),('APP_3RmcJaecdbsvQwZn','oauth2-resource','{bcrypt}$2a$10$ihMa0pQCipsEEpB12sLHtO8j4rBNQbaN5uG842gRH6fjGBXoexOAC','all','client_credentials,password,refresh_token,authorization_code','https://demo.terjin.com:30043/api/v1/uavcmlc/callback','',86400,2592000,'{}','true'),('APP_4AU8lbifESQO4FD6','oauth2-resource','{bcrypt}$2a$10$qPN8MyHvxCXkvmR9LNfLieNylNxX4TEo056OgTv0COp0IZlZeEN2.','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/media/#/oauth','',86400,2592000,'{}','true'),('APP_4pOYDvnA55Xupznq','oauth2-resource','{bcrypt}$2a$10$pupeWmnjMdmPg2wTU8arGeJvdKTsIgp..fghHSgY6LbxAWl01YK22','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_9LY41OaKSqk2btY0','oauth2-resource','{bcrypt}$2a$10$xRYXbJqho1LkYeO8AJZZauTKqEDTB6p/p50aKnIUcsKKSignA/mYi','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/base/#/oauth','',86400,2592000,'{}','true'),('APP_aCOx0NkGTtMweRRL','oauth2-resource','{bcrypt}$2a$10$iR3TrRLqBibxW0nwkqA3weLqLVRUyCkAwudH/8kmQzal/GVI.XVGC','all','client_credentials,password,refresh_token,authorization_code','https://lab.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_aDxbkOxldQw2GW6h','oauth2-resource','{bcrypt}$2a$10$TV1kAFV4EEkZgoUQCOqXf.UGDwh59KD77W4NVxwbT4tnZJQdvYb9u','all','client_credentials,password,refresh_token,authorization_code','http://yc.flision.com:9302/login','',86400,2592000,'{}','true'),('APP_aGsTAY1uMZrpKdfk','oauth2-resource','{bcrypt}$2a$10$211IxYlPL15c0IR1R35Haeeo86ruKl2RBlHVj94FqIwewyREli5VC','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/emersupport/#/oauth','',86400,2592000,'{}','true'),('APP_b46KkuWDTE725RP3','oauth2-resource','{bcrypt}$2a$10$l1A2JZ3tzD2PkRc7fw308.PDn7631A6bclyQfK6I6nxemGbrtSdTK','all','client_credentials,password,refresh_token,authorization_code','as','',86400,2592000,'{}','true'),('APP_BMxntZu3pjr4Y4lW','oauth2-resource','{bcrypt}$2a$10$SvIgFFOZVLPY36O0e28n2OOHkZDUaaGbXRMIQ0TwBU4mBt40/HBvK','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/splice-visual/#/oauth','',86400,2592000,'{}','true'),('APP_D9yHWNgGtayZnEUG','oauth2-resource','{bcrypt}$2a$10$88xmnZjOdTJXKKYpV1Sj/uLxfzLpfDgIk2vr4PVL1L8NLTbarfQd6','all','client_credentials,password,refresh_token,authorization_code','test','',86400,2592000,'{}','true'),('APP_e98donoShXhPfUeb','oauth2-resource','{bcrypt}$2a$10$.MI2z9U0WfXXATqlNCm7OuexUk94PEhrdRrc4NnVfwudgdHj2U2qy','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_ezhJe6BZFIcWK52h','oauth2-resource','{bcrypt}$2a$10$Y66cb87.OdlgTLmbtbGHQORevbxbu1cvVfBM9TE4R5ed7KK5KfCHe','all','client_credentials,password,refresh_token,authorization_code','//','',86400,2592000,'{}','true'),('APP_FAiE5CmLnI1D5uSn','oauth2-resource','{bcrypt}$2a$10$BrSZg1AtkZZ5D5r8fuh7LuKa0IeIGd3rkTpvVRbbSDxEn9w.7hQMK','all','client_credentials,password,refresh_token,authorization_code','d','',86400,2592000,'{}','true'),('APP_FDHW2VLVDWPnnOCy','oauth2-resource','{bcrypt}$2a$10$HD1h1NMiPHedR2xXt7sX.eetjPJaQrYWtL058b4Okq8rhL.UvjD6q','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/detection/#/oauth','',86400,2592000,'{}','true'),('APP_GggMNtv9QlP4c9Or','oauth2-resource','{bcrypt}$2a$10$kc.QIBEKGCwO5SErXouIn.DM83R15QU4WOfhan76HmLy0M1TicuKG','all','client_credentials,password,refresh_token,authorization_code','https://sentry.dev.linxot.com','',86400,2592000,'{}','true'),('APP_GN6Mqzr6pCwZwtya','oauth2-resource','{bcrypt}$2a$10$E3Ufnoa1fOUpzL3hoUcS9eMvQs6uXkniuHl09w8LnKumEDktbjtUa','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com:18000/traffic','',86400,2592000,'{}','true'),('APP_gXFErCPp54rC0ase','oauth2-resource','{bcrypt}$2a$10$TcquwxxldAFpthVM.LQaZ.3DHaZUXPz96NE9qyyfcdmUrMaYMaeeG','all','client_credentials,password,refresh_token,authorization_code','about:blank','',86400,2592000,'{}','true'),('APP_HqVAZZ55EWfLQ063','oauth2-resource','{bcrypt}$2a$10$w2l2yzC0wTaZCfCBuvmYs.LEztibRgD0pmKuvIPE4mrNRFsFjT0f.','all','client_credentials,password,refresh_token,authorization_code','https://isv-rsi.i-tudou.com/login/oauth2/code/PANGU-RSI','',86400,2592000,'{}','true'),('APP_Jc8i2wOQ1t73QEJS','oauth2-resource','{bcrypt}$2a$10$K3/EC.L2epfQMw1Qe3Mrp.mZxvMo4wsq0IsF.Tgd/r4kzyGn3KGdC','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/visualization/#/oauth','',86400,2592000,'{}','true'),('APP_jf04PerIBiDeRO6l','oauth2-resource','{bcrypt}$2a$10$/sSDpTV66PkRnO9Ay9iwb.vb2pMszQTwog.OsPCbWiNFiRYdEGLny','all','client_credentials,password,refresh_token,authorization_code','http://116.63.168.191:8184/analystrunner/a953b977-21fe-465f-99d1-e1d9351bd90c','',86400,2592000,'{}','true'),('APP_JUSEMc7afyWXxvE7','oauth2-resource','{bcrypt}$2a$10$M1vK3afxbWLxscTH/CBNxOxuSjKRPyAcUArsxH/cFHgqYqmTw94mS','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/security/#/oauth','',86400,2592000,'{}','true'),('APP_k5cbUcneptCuDAMM','oauth2-resource','{bcrypt}$2a$10$F1GOE1V5hDiT2a30KYoozegbj.d.LHxBh7gWx.O3wJTLR/t2Tm24O','all','client_credentials,password,refresh_token,authorization_code','http://192.168.34.201:9527/callback.html','',86400,2592000,'{}','true'),('APP_kvVZWQ2VDP64l5Hk','oauth2-resource','{bcrypt}$2a$10$GpVKqhISmaD1urK2Wz0OEeTGFFtMss9mzq/w51hd7jLS0/br3663a','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/infrastructure/#/oauth','',86400,2592000,'{}','true'),('APP_l4HIMixfIXhlCTi9','oauth2-resource','{bcrypt}$2a$10$MPaf075Oi31rRiEG5rINouDLzx4L9cXECmmkG2H08KzR5S3DfQWT6','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/splice/#/oauth','',86400,2592000,'{}','true'),('APP_lkAjaqyoJIYqQhmc','oauth2-resource','{bcrypt}$2a$10$CDm/go4s2IfvNudAQ6F1seETcDrc1F7NiYH4PkCjZxlsX1uJWPZHO','all','client_credentials,password,refresh_token,authorization_code','https://runtoint.com:21800/ssoLogin','',86400,2592000,'{}','true'),('APP_m524AblyDIK4I4QT','oauth2-resource','{bcrypt}$2a$10$Li.HBYA4Y0rD3A32TUXVA..LaGyW7uoIURDN6Q3eoMUADB3GReRnC','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_MEeBJHp1fSVD1Wuw','oauth2-resource','{bcrypt}$2a$10$SJSziqlVSBUR.cGaVIO8Run9cNg1ckXk9D2Nkt8QnF9JAom8Te9lS','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/mws/#/oauth','',86400,2592000,'{}','true'),('APP_mOX7BPo2fRyS0SHk','oauth2-resource','{bcrypt}$2a$10$zvoswOEady9RntsI01Ify.Reh1KtMHsil3Pa6njaeyu7VdOqTdGtG','all','client_credentials,password,refresh_token,authorization_code','ddsadfsf2','',86400,2592000,'{}','true'),('APP_oL9KHzs8vLkCYgGO','oauth2-resource','{bcrypt}$2a$10$CEDLN/HbZvrCom.D3DtQ2eb2/BygGO/U4F1YA2irBAhDm/y4Dn9ja','all','client_credentials,password,refresh_token,authorization_code','sfa','',86400,2592000,'{}','true'),('APP_OoWgL4xwb2TJIAHv','oauth2-resource','{bcrypt}$2a$10$.zsHcjOzUmIGq4/G2bqo3uOEySAQdL/UCQRTyl/PH7EK5fekJyGXi','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/#/park','',86400,2592000,'{}','true'),('APP_OqOQxwHnYizTFEu4','oauth2-resource','{bcrypt}$2a$10$AF1z.U11D35evDlThPgfmut56SC5Z58r.1.Cwnren3hfbzwLnPdgC','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_OUrP03UOTECGIxH8','oauth2-resource','{bcrypt}$2a$10$3goXDasMuzxcVJQ/vtsRIuyRK99D2EP7xcN3oQ7UkEEcR/2dFxM1a','all','client_credentials,password,refresh_token,authorization_code','http://47.96.112.120:8012/cyycallback','',86400,2592000,'{}','true'),('APP_pRD4netwRenuNWYt','oauth2-resource','{bcrypt}$2a$10$FcP3ScYm6QBQ.PRkNsm3aOh0mYz42EaD3Tq12rakEcIvflL7gjp4S','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/#/communication','',86400,2592000,'{}','true'),('APP_PvdfRRRBPL8xbIwl','oauth2-resource','{bcrypt}$2a$10$afiTFwEVvI/jhZ1.WpZ1u.fzQ5AN57OhnlMJA5fKwmSGoJ.hTDR0C','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/logistics/#/oauth','',86400,2592000,'{}','true'),('APP_pWf3ddV5e6HXrSVG','oauth2-resource','{bcrypt}$2a$10$2hEy9mLSEY7gkyT1hTyJLuTKg0tem955Qt3v8cGH7Bbrhvd7hn42O','all','client_credentials,password,refresh_token,authorization_code','http://222.128.5.18:32092/tlcp/f/autoLogin','',86400,2592000,'{}','true'),('APP_Q61lT2i6zhnf5pvo','oauth2-resource','{bcrypt}$2a$10$tfQ6mWk1nYlJRDeU1Oym0eVDBlJ7LeytydT/jaxaxLPUwvj7V4IdK','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com/','',86400,2592000,'{}','true'),('APP_qqSu82THfexI8PLM','oauth2-resource','{bcrypt}$2a$10$Zr7M5K0PmoaOmHBx6svyvehpHRrK7Sldvwb8JNTnx5.PdR9i/N7ha','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/supervision/#/oauth','',86400,2592000,'{}','true'),('APP_sbp9mWGgvgmFVNKc','oauth2-resource','{bcrypt}$2a$10$FMeLr4BShTJ4pRFeIlLqAuAqJwG8JnAjPgZWbNv.aM9kTG6dmnGN2','all','client_credentials,password,refresh_token,authorization_code','http://117.139.13.157:25057/#/autologin','',86400,2592000,'{}','true'),('APP_UIegse6Lfou9pO1U','oauth2-resource','{bcrypt}$2a$10$wupyrnaMMryvpiP5dspakO6ok6RtcLS8ez3d4rUb9xaKQUyqojTH2','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com/armypeople/#/oauth','',86400,2592000,'{}','true'),('APP_uzUqFHEchpNE8ZwX','oauth2-resource','{bcrypt}$2a$10$Gqnw4l3I6r9Xq7tePNDPbe3PKn2O8FikuzDXVQHf.QiWA7fYiSbFG','all','client_credentials,password,refresh_token,authorization_code','https://isv-3dacqm.i-tudou.com/login/oauth2/code/PANGU-3DACQ','',86400,2592000,'{}','true'),('APP_VDAsQoijztZcgcNl','oauth2-resource','{bcrypt}$2a$10$rjhYusxCB/yLaK4iY3Q7rujyHWVyN7FU1KrLcQwl8Eha0mymhmgGK','all','client_credentials,password,refresh_token,authorization_code','#/simulation','',86400,2592000,'{}','true'),('APP_VNsPETiwZpNBFmrT','oauth2-resource','{bcrypt}$2a$10$Huf8L3qeHxmHqaESAEz2q.Vp2HYA.0PfOMaop3.EEyp9lcl3SE4Ru','all','client_credentials,password,refresh_token,authorization_code',' //www.demo.uavcmlc.com/green/#/auth','',86400,2592000,'{}','true'),('APP_WXC98VROH3JWNUcw','oauth2-resource','{bcrypt}$2a$10$VUhUAxR7qpUx2uKLkoWH1OHIeV6lE8anJbROVXyQQncc2xMkrwcf2','all','client_credentials,password,refresh_token,authorization_code',' //www.demo.uavcmlc.com/threedsimulation/','',86400,2592000,'{}','true'),('APP_X4KkxRzeqPyE0b1f','oauth2-resource','{bcrypt}$2a$10$anjsamTxvvk1HtrtNHgpEuJFFqzXcljXojpn7nzi1Uk/jhx1gvWuq','all','client_credentials,password,refresh_token,authorization_code','http://118.114.172.141:51103/#/autologin','',86400,2592000,'{}','true'),('APP_xtN9XF2L1J4IRHaB','oauth2-resource','{bcrypt}$2a$10$Gp4JyOGJa9zntmCRKUPabe/hLBKIXcyZY/RTJaoCosNnzt60y530e','all','client_credentials,password,refresh_token,authorization_code','//www.demo.uavcmlc.com:18000/hyper/#/oauth','',86400,2592000,'{}','true'),('APP_Y3Y4WynWsFYtr14z','oauth2-resource','{bcrypt}$2a$10$xrZCC6KUSMQ.ynNuUWEuYu93KtVfW3My9ztgF2MDA/dSNBDmiZc2C','all','client_credentials,password,refresh_token,authorization_code','http','',86400,2592000,'{}','true'),('APP_YXXwlSJI0eIj0qoA','oauth2-resource','{bcrypt}$2a$10$ivijiTXV3SGgP0.fhFTtTOx/BXi6EDpfRfm.x38y51gBdPrCm6Yxe','all','client_credentials,password,refresh_token,authorization_code','pangu','',86400,2592000,'{}','true'),('APP_z1aks5MqgKXJ9hry','oauth2-resource','{bcrypt}$2a$10$8ehYiqf88soxdtnYTNJLzumWDCRGmOnqbNhC9kUWuKlMB9NYrNg8y','all','client_credentials,password,refresh_token,authorization_code','https://192.168.34.33:19092/callback.html','',86400,2592000,'{}','true'),('AucvTNtcLqIiefb3','oauth2-resource','{bcrypt}$2a$10$M6wf8L.fQ8pCCiAbv8oFie8ioXbQ4y.nrp5/..Fz9qx.TsBjzjZly','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('B50M5wmp1pKg9Liy','oauth2-resource','{bcrypt}$2a$10$oMR9HD2lnTJ3gGWbGZ7rQuiLq0fw9Jt4sau3q0DdjQyVaOlTQkY6S','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('bpv9889lSpjubYka','oauth2-resource','{bcrypt}$2a$10$gGnUydBa.Y3mm9IOWaLNJeHS9WEo.zu5Tf1TAU3eWfHk6wFzE1op2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('bvadukd07KOsq4Lj','oauth2-resource','{bcrypt}$2a$10$AdEP.yoPaiZIL6WbrQbqYOVmoYhgOTF8PFb.uFlg7DxFU9oWXuGYe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('C9EvPzYe7aB454zG','oauth2-resource','{bcrypt}$2a$10$j8lhivVzrqk5NfCgAm8nGOgv.DGIO.iJjNdMvFirvgmF3ygt1Jvs2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('cDBc7XuAJMYfGX1C','oauth2-resource','{bcrypt}$2a$10$zh/ZLtgpBu3wNRzaFUz2z.xZEiqZ2yl98wYvs4/Et/7ESCsoGvYYO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Ch3KyCtMKqtRgDzI','oauth2-resource','{bcrypt}$2a$10$ZdEIGaS.QIabVCNEKZ7C8eFIE7ZPgXSh.TfeSB9qJathWOQ9iIIE6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('cJHO4oeAAwLX4zNw','oauth2-resource','{bcrypt}$2a$10$gewQUIYx16NlG/Obz6X8fu.r4dVvxbFkGO5C7q2sYOSmuJlZNH2LO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('coNgArn75quIQoFo','oauth2-resource','{bcrypt}$2a$10$WxzoW2mJ8kb9D0oxnnDTdevY22Sj/J.Trs56bdObS7wX2Rw2zDaDm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('D26SF7ky8vQweHgP','oauth2-resource','{bcrypt}$2a$10$ANHBJ8uUsLkx8FIIvEyZo.Bt7to0hUhwwvBWAYTjix2EIbkLEoZ/2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('de9m4Mc5nUv2GvQ1','oauth2-resource','{bcrypt}$2a$10$5S7xBj6uraBCZy.nGClMXOeIGETU1bq.F6EjB0xDN6Vh7j4WkM/BS','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('deQXLIM0czv9fhel','oauth2-resource','{bcrypt}$2a$10$iP.r6bD.IUl6.Lxki.4MRu2u0Ilr2z4C7DL35i4mTk4fngb8TsiHK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('dm1npsXLQk2iRH2u','oauth2-resource','{bcrypt}$2a$10$8v4aWDQiDInfdZNFLPTAnOeOOKtey0p/mYtMFoleLcnS9hX6VTR7G','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('E5Mm3ICZg089nlvd','oauth2-resource','{bcrypt}$2a$10$v/UUpWxa8o5kLx6Fmet/qOHRdNx0P4dCdniQRI68gV6LcVyq73bRy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('E8TKEUvWkiSA11GX','oauth2-resource','{bcrypt}$2a$10$8aOSSw8WcropH.jHWZAhxu3i0n2J3XGf3VLbKEtT24RvBsfKFfWey','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('errC2h4TZxa4XJW1','oauth2-resource','{bcrypt}$2a$10$TbPqw7JELBsKxjH17aehReHhaogefYJLhKNCFgU/my7XcD4eVcji6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('f6r7nAFsOXlI4Sc8','oauth2-resource','{bcrypt}$2a$10$xp3cvOu1eCbdMWj3TnNxpeUtdPIg.zTUEdAaLlUD4jhfdXMDN6dG6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('fcwcDJhVMO1pqN0b','oauth2-resource','{bcrypt}$2a$10$QRVgOM66QztZraNysMPpUOdL6zLUuUnXDgkQCteQgU6sQTMwZOPIi','all','client_credentials,password,refresh_token,authorization_code','https://www.demo.uavcmlc.com:18000/open/#/console/application/detail/setting?appId=474246619413348352','',86400,2592000,'{}','true'),('ff4mXSniVzQmWTiQ','oauth2-resource','{bcrypt}$2a$10$q0didxbRVyT//KLa2//XEOJcynu25gwi8jydNrpWU0u4Z.auBErnG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('FL8SbZX4hs2qPhmm','oauth2-resource','{bcrypt}$2a$10$e2pjpwaOmYGK/vpzQMRmO.08.c7LrPlYKKWH0FPlj6L6wlexFQa2O','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('g8HyyTC72dEDiDsK','oauth2-resource','{bcrypt}$2a$10$pBSLSDHTmpErLU7z6wI4V.KqCxDYs865Lm8nIagU0r8LFz5g74PAW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('gateway','resource,oauth2-resource','{bcrypt}$2a$10$0KKNS7inDBjnX2G34s/7fe5XpO7YdeQ2RcBdwspL/aB7ZI45fFO1O','all','password',NULL,NULL,1800,NULL,NULL,NULL),('gateway_app','resource,oauth2-resource','{bcrypt}$2a$10$0KKNS7inDBjnX2G34s/7fe5XpO7YdeQ2RcBdwspL/aB7ZI45fFO1O','all','password',NULL,NULL,2592000,NULL,NULL,NULL),('GrYb2kHtX01b7E1s','oauth2-resource','{bcrypt}$2a$10$87sWbwY0HFwJXDNyqcBiqOW4lPfp8n.NHl8Kdzh5mcDP/ZPwoj0Ny','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('GVahSvoIkVCvN1ZT','oauth2-resource','{bcrypt}$2a$10$ItIdvut0QhJwm/3TaXGCguXUWGx9Ht3CXRYlVDTyhXQVKS0zI5Xd.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('h20Z6cVxke9SaI9Z','oauth2-resource','{bcrypt}$2a$10$TYTuEpFlViUS5HdkxcIC8O3vTFZUQk8TIX/tHxQPmpoIBGiEZmJnG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('h6Xt8joeCwgofGoT','oauth2-resource','{bcrypt}$2a$10$xowih4dqEKj5rVwHMqWzKunQ0VmWvrAI1do7pYnQa/aPcweAtRoD.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('habGqomHztrBNjqi','oauth2-resource','{bcrypt}$2a$10$j/Q1RXKemyWLVq/Q5bTp1epiLPV0JhBvJDxG.0844SssAUKzWxdSe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('IaIYAnKu0sU1NXDL','oauth2-resource','{bcrypt}$2a$10$/POw/u1u05DWhp5pTVb6Ne1DkP0H.pKMyBW/hO3ttDci9ZW18WHxO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('IHxy9UQfssyDEdql','oauth2-resource','{bcrypt}$2a$10$gXf5V9nmU8HHEHY46MoX8uJ94hD5mDWvpAdLYZnOmwgRQUYoKdV7K','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('J9cTJG2qwq46orza','oauth2-resource','{bcrypt}$2a$10$xOFyNtToN3atbjeQEXmAwO0OVtpeVBWnjOejYDkPauAmZM7/S0A9q','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Ji5MavNrmlugG3Nw','oauth2-resource','{bcrypt}$2a$10$ePJqM6YUOur7q1sG7z3gC.q5CSakuB6m2PKPeiQoeicLYdo61oHI2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('JNipQ9PuZeb5taI2','oauth2-resource','{bcrypt}$2a$10$Ayd1iz4Sh/T7YPNxN6oJJeoQI3NZKQdvi1teF5e6t8daoc9aEKc4q','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('jxavoqlzRW9rJbMv','oauth2-resource','{bcrypt}$2a$10$5OpmCWD.1msfmPH8BrgH5e7ofHgSMssG6IX3ON8HMjVVsx3AOvcuy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('K14gDYI9CVyuSbxI','oauth2-resource','{bcrypt}$2a$10$ivFYTPzls7v0tXXiJmrpF.oyv8PaApj3ylECixW6Y.dVNUpufx.Ki','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('K2GWdIPTqeea3JBw','oauth2-resource','{bcrypt}$2a$10$Luj1V8M8bJnr9M/DtoINO.JCY2sr//Rsjja82A.ZlvT2P0miXe6s6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('kf8tjZDIv71acAD1','oauth2-resource','{bcrypt}$2a$10$wO6esoRLntZMd6duPfy1ROdogQ5o4NUU5GsR0DcBkjPlFlmliUpWu','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Kl14XjSdWNdNZ3GS','oauth2-resource','{bcrypt}$2a$10$dvkMd6KDwOD4urmhT51wTujUPlHJm7k5boG8PzBpEuDEPJlHdXluW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('KLL3Zu6a6d8WeIbr','oauth2-resource','{bcrypt}$2a$10$2kXhqeUmGoLIoekFQAlXNOIyM2JIiJiPIe..M5J5M4/OFyMlA/oV6','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('kSt0cITaYjwijgIY','oauth2-resource','{bcrypt}$2a$10$QUAQR6D/CdB5kGdAo8phJO0OaVOXGf8s5j4mFlWERzom3lCzMaGbS','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('lCOOsj39WQ4LkdMo','oauth2-resource','{bcrypt}$2a$10$X2R57Mkf02F1LL90ISpFfuW9BlBl.dkkQCvBmkPmxazv7t64za6AS','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('LhiYSXv5Yy2vksto','oauth2-resource','{bcrypt}$2a$10$bEs4Ni6l5n1c/QyQLfqPwes/pX0r4IIZAJUx4Dp398osgutorPvG.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('lsAfRs5c0j7cGIdQ','oauth2-resource','{bcrypt}$2a$10$VNDQgoBm5FNzkOqZICwMJOuim/urXnYrm6EW.RFxCrOhBCBupbhuK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('lzTaGWYIcvNHevgQ','oauth2-resource','{bcrypt}$2a$10$GmATetLnq9nmQBXPDaKIEOs/mPp1Rru2Yn9y2Uw4XtPsjH3ZhTGSK','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('NckRUGzbzfsnfOp4','oauth2-resource','{bcrypt}$2a$10$kp3OGQIO7aRtWDV/WwyNF.RSTd.JRYlKl4mp59gsnviYKPMZ0nRJq','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('NFCaNEzq5jOI7ajY','oauth2-resource','{bcrypt}$2a$10$nG97Vlbd.Bvc2ZV8JqvM5.8H6a9hVNelMXDHrhSUbZHJMPVfrZaW.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('nMTcAhqasRuMZ2tG','oauth2-resource','{bcrypt}$2a$10$108mdNTjuSIa0M98zKqN8Ofmi0et46Gf3rwXGe/5Ji9Oj4jB4npkq','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('NQI1QhgYDoU5SHy2','oauth2-resource','{bcrypt}$2a$10$YI3D7KF87.6pvA0FWO1cz.hpIAUNQGegmwgt7HI83nDczU5epMitO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('O4Dr8hVqn6cUCbf7','oauth2-resource','{bcrypt}$2a$10$ZB/exZ17DJt5yOBwDWzP7Oqas/s8BlxOOkRxrWEEG/nRRaLEOczPO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('O4FDK15T89EdOqJA','oauth2-resource','{bcrypt}$2a$10$I3458aE72ewBgSBsHIjq4up1jeweCkI9r3UEmFm1TwOtCoBeBiGTm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('oE7NwOlaoybSC24s','oauth2-resource','{bcrypt}$2a$10$6YjfJXlHITf2W./8I1i82O1h6DM0eTBGOt3QMVz/x3yerpBFr3Eje','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('OQfNmSqDixTbpuxJ','oauth2-resource','{bcrypt}$2a$10$knKfLboI1EM1CCtLWCio1OP8jtqwSewaM1wMMvNXHfPUfU37LQQ9S','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('oytDkqppMU4WR4H1','oauth2-resource','{bcrypt}$2a$10$9l4HYbaYppKIlGHWZWQVHejUtLTOlUGLv6T0LRqz1Oxf0/eSDvVlm','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('ozdOgG6tarMBRmfl','oauth2-resource','{bcrypt}$2a$10$6BcUnguPSmCr4d9d3nkKle7MKp9QpJac1qukKnY/N3cned6R1gYeW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('p6dTB1NmOsRCfDAa','oauth2-resource','{bcrypt}$2a$10$Auf1Tie90X.agUte/pW53eVpui0RCS9gLSzknfBkVK47GXSRnIS5e','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('pd6dRhICfH7BkwG2','oauth2-resource','{bcrypt}$2a$10$rab7QSSmYDL6Xo8df7QDE.nsnpjWOdRU4ZXiaS.7yyS8nbmZqBNHe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('pJ98gvHSpLJBYOua','oauth2-resource','{bcrypt}$2a$10$FO9t7a62yQLvqTrL2lESP.UtqBfftPXgIjy2sfhJL7AnLCLH7mmSO','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('QB46nC0eKMSDZP1v','oauth2-resource','{bcrypt}$2a$10$Lc8frO8M0.689tVbNnkBPe8DhZIxXNUCqiEY.etIouGaqvm5GjPru','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('qiSVgPXIIWWQzkeu','oauth2-resource','{bcrypt}$2a$10$E2ofF/3s8cow45x2F/205ezNd2imHf3M4GuUZT4WIK0/wflAWwHMG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('qQDMgiNgGnWncB1e','oauth2-resource','{bcrypt}$2a$10$/kqmyJfzMsX/jjMhd.SpY.NjqBgN8moGXcrOHa5udQN3MFYCiB7rG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('qZirRd12P84XGJ77','oauth2-resource','{bcrypt}$2a$10$fgtj8pGhQlL2EYEJhQBt4OkRCIy2R8nJMhHkj.skbM9Ehqt9RBj6a','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('RMADKvD3bYmqU5vI','oauth2-resource','{bcrypt}$2a$10$iY23C/d7HdhkTx24egvCyOzSeDbe2U299Au3FdTiczagYuKRo05Ci','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('t449G2PIalwkR3kM','oauth2-resource','{bcrypt}$2a$10$.UBR0uwq6SuYaWPCRbFwJ.Rkz5BRNC5WUJ49Nlz6pSOSbMIZPs6My','all','client_credentials,refresh_token','','',3600,7200,'{}','true'),('t9Dj1d248bKLQHKM','oauth2-resource','{bcrypt}$2a$10$fJq3kiOvx6f4B.cxzdPql.ndz6QhoAJFfNBft3UDnN4cA/7omjtoe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('tFyEE1UR42vlmoWZ','oauth2-resource','{bcrypt}$2a$10$CcBYHxlw6TmrjgqxQ5SOOeMkTcAUCOuRjELU7CjS0.WYoPHIt/tMW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('TWbKMB84WSg3tjFq','oauth2-resource','{bcrypt}$2a$10$c/TxR7skLwu0pXMIp7vFm.2JocAEsDKigdpZTNqOVB2HUxMfCcW4m','all','client_credentials,password,refresh_token,authorization_code','http://qvporq.dnslog.cn','',86400,2592000,'{}','true'),('ucurTc73uqVla13E','oauth2-resource','{bcrypt}$2a$10$ZxGNZ2iEzM8B9eQGzDiYY.qB0Zk/pvuX9sK0OjjT3f2aVrWXFkdM.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('VD5O5hAaSHwvYJPM','oauth2-resource','{bcrypt}$2a$10$138BNTVJcQKtuBMO8yN.o.Mzd6J0Vr16NlrGuRY2yzey1nE8OfTg.','all','client_credentials,refresh_token','','',3600,7200,'{}','true'),('VzW9o3mzYMAAf1Wo','oauth2-resource','{bcrypt}$2a$10$9keGEozeNUHUr9x2VIftKeUFtzhHE63nA9FueyncW2eXY4aLMJ9HW','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('W5EZZg3NCz7I1rXd','oauth2-resource','{bcrypt}$2a$10$8G5b3q2YrAycD69.gCgMdOHVh0RoZNUA7MlioSubsXTKavCpcaUfe','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('x7vc3sG6Ze0cZD4m','oauth2-resource','{bcrypt}$2a$10$6r9zHn6TefYnYptZqhtkPOzqgkvSgk88yr81qw2O6ZZCSovtX/Hda','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('xVHfHua7HJTWABYn','oauth2-resource','{bcrypt}$2a$10$kp5XAAqe4AlgvaH5oksvCec9TvS5WQELX.r5TmN0BbaIBrunxsL5.','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('XVoZAn8n5a84P2sw','oauth2-resource','{bcrypt}$2a$10$Xm1xat3JoYZVE8VYm9eJxe.TFqxjHmrTUgAuUI6lzRDp5Jj0ULCca','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('YFwXSbZTyrwjQMFG','oauth2-resource','{bcrypt}$2a$10$lwaNACDPvMJHvR1emhC3mu/DYUQtUsidzaLTQLcdxC.WxN5F4I4qy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Yik5RhgClTf9SvMM','oauth2-resource','{bcrypt}$2a$10$.n.lapfSc5JN8MQqgO6wMeVqDRQ/RQ3xUr7jJXEsQkXURe6lee60C','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('YJbJoB7ZsIGFmtxh','oauth2-resource','{bcrypt}$2a$10$a0T4xF4qmF9lOJ000prwm.WWXhzY/1YhmgwWman2SncH.4RMTqQLy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Ym2P9kdjKCr0n0lI','oauth2-resource','{bcrypt}$2a$10$2k1SPOBAIhNT2ZhWtkIIZ.c2QaaKbKN8aSRoJuudXuX8HQh5/upMu','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('YZxYPIVEibyiwn7t','oauth2-resource','{bcrypt}$2a$10$VbPI5dwZ0TNi4qpCxqsOCu2QXc0rIun9jkIdXH8sYZAorJOTlx.Yy','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Z07wBraOb4vkxR1k','oauth2-resource','{bcrypt}$2a$10$6oOdtvzb52fXe4Bwt8WMY.ul6KxDbGCumxJYfNr1bc/shUv/z81l2','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('zF2GeZsBQ4G4ynTc','oauth2-resource','{bcrypt}$2a$10$66W18ltWQpp9sPp/9IQ5qe8MS4lOu9qCKKFSTFTbY9wrdflX1cCZG','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'),('Zq1m9viuyDwZnKjf','oauth2-resource','{bcrypt}$2a$10$q4/vOHgGPuMEXkhMwESHpO5h.OalRIX4nhsHQmM12ix2LNKAPkCya','all','client_credentials,password,refresh_token,authorization_code','','',86400,2592000,'{}','true'); /*!40000 ALTER TABLE `oauth_client_details` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -35,4 +35,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:04 diff --git a/999-数据库脚本/6.0.0/uav_process.sql b/999-数据库脚本/6.0.0/uav_process.sql index b75b071..4c0cac4 100644 --- a/999-数据库脚本/6.0.0/uav_process.sql +++ b/999-数据库脚本/6.0.0/uav_process.sql @@ -35,4 +35,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:29 +-- Dump completed on 2024-11-14 11:14:04 diff --git a/999-数据库脚本/6.0.0/uav_user.sql b/999-数据库脚本/6.0.0/uav_user.sql index c760b23..8225868 100644 --- a/999-数据库脚本/6.0.0/uav_user.sql +++ b/999-数据库脚本/6.0.0/uav_user.sql @@ -32,7 +32,7 @@ UNLOCK TABLES; LOCK TABLES `sys_resource` WRITE; /*!40000 ALTER TABLE `sys_resource` DISABLE KEYS */; -INSERT INTO `sys_resource` VALUES (24,'MENU_ACCOUNT','用户服务',NULL,'',0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-05-28 01:55:07',1,'2021-11-05 10:28:48'),(25,'MENU_ACCOUNT_CONSUMER','用户管理',NULL,'etste',0,NULL,24,_binary '\0',NULL,NULL,NULL,2,'2020-05-28 01:56:31',1,'2020-06-29 10:07:27'),(26,'MENU_ACCOUNT_AUTHORITY','模块管理',NULL,'test',0,NULL,24,_binary '',NULL,NULL,NULL,2,'2020-05-28 01:58:36',1,'2020-11-11 09:14:57'),(27,'MENU_ACCOUNT_ROLE','角色管理',NULL,NULL,0,NULL,24,_binary '\0',NULL,NULL,NULL,2,'2020-05-28 01:59:08',1,NULL),(28,'MENU_ACCOUNT_COMPANY','公司管理',NULL,NULL,0,NULL,24,_binary '',NULL,NULL,NULL,2,'2020-05-28 01:59:49',1,'2020-11-11 09:15:42'),(29,'ACTION_ACCOUNT_CONSUMER_SEARCH','查询',NULL,NULL,1,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-05-28 02:38:47',1,NULL),(34,'ACTION_ACCOUNT_AUTHORITY_ADD','新增',NULL,NULL,1,NULL,26,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:00:15',1,'2020-11-11 09:14:46'),(35,'ACTION_ACCOUNT_AUTHORITY_UPDATE','修改',NULL,'test',1,NULL,26,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:01:01',1,'2020-11-11 09:14:50'),(36,'ACTION_ACCOUNT_AUTHORITY_DEL','删除',NULL,NULL,1,NULL,26,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:01:23',1,'2020-11-11 09:14:53'),(37,'ACTION_ACCOUNT_ROLE_SEARCH','查询',NULL,NULL,1,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-05-28 03:02:34',1,NULL),(43,'ACTION_ACCOUNT_COMPANY_SEARCH','查询',NULL,NULL,1,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:08:08',1,'2020-11-11 09:15:05'),(46,'MENU_ACCOUNT_COMPANY_EDIT','编辑',NULL,NULL,0,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-06-03 08:35:29',1,'2020-11-11 09:15:23'),(48,'MENU_ACCOUNT_COMPANY_CHECK','查看详情',NULL,NULL,0,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-06-03 11:29:27',1,'2020-11-11 09:15:31'),(49,'ACTION_ACCOUNT_COMPANY_UPDATE','更新',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-03 11:31:34',1,'2020-11-11 09:15:09'),(50,'ACTION_ACCOUNT_COMPANY_CHECK','查看',NULL,NULL,1,NULL,48,_binary '',NULL,NULL,NULL,4,'2020-06-03 11:32:53',1,'2020-11-11 09:15:27'),(51,'MENU_ACCOUNT_ROLE_EDIT','编辑',NULL,NULL,0,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-06-03 11:57:26',1,'2020-07-15 06:26:51'),(53,'ACTION_ACCOUNT_ROLE_UPDATE','更新',NULL,NULL,1,NULL,51,_binary '\0',NULL,NULL,NULL,4,'2020-06-03 12:03:40',1,NULL),(54,'MENU_ACCOUNT_CONSUMER_EDIT','编辑',NULL,'test',0,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-03 12:16:39',1,'2022-04-27 03:29:09'),(55,'MENU_ACCOUNT_CONSUMER_CHECK','查看详情',NULL,NULL,0,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-03 12:17:10',1,'2020-07-15 06:27:39'),(57,'ACTION_ACCOUNT_CONSUMER_UPDATE','更新',NULL,NULL,1,NULL,54,_binary '\0',NULL,NULL,NULL,4,'2020-06-03 12:20:11',1,NULL),(58,'ACTION_ACCOUNT_CONSUMER_CHECK','查看',NULL,NULL,1,NULL,55,_binary '\0',NULL,NULL,NULL,4,'2020-06-03 12:20:52',1,NULL),(60,'ACTION_ACCOUNT_CONSUMER_UPLOAD','批量上传',NULL,NULL,1,' ',25,_binary '\0',NULL,NULL,NULL,3,'2020-06-04 09:35:56',1,'2020-06-10 03:45:40'),(61,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','模版下载',NULL,NULL,1,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-04 09:36:42',1,NULL),(62,'MENU_AIRSPACE','空域服务',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-05 07:13:06',1,NULL),(63,'MENU_AIRSPACE_APPLY','空域申请',NULL,NULL,0,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-06-05 07:15:30',1,NULL),(64,'MENU_AIRSPACE_LIMIT','空域限制管理',NULL,NULL,0,NULL,62,_binary '',NULL,NULL,NULL,2,'2020-06-05 07:17:43',1,'2020-11-11 08:49:33'),(65,'MENU_AIRSPACE_QUERY','空域查询',NULL,NULL,0,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-06-05 07:18:22',1,NULL),(74,'ACTION_ACCOUNT_CONSUMER_INVITE','邀请注册',NULL,NULL,1,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-11 09:13:32',1,NULL),(75,'MENU_ACCOUNT_FEEDBACK_INDEX','问题反馈',NULL,NULL,0,'',24,_binary '',NULL,NULL,NULL,2,'2020-06-16 01:16:59',1,'2020-11-11 09:15:55'),(78,'MENU_ACCOUNT_ROLE_CHECK','查看详情',NULL,NULL,0,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-06-22 06:01:56',1,'2020-07-15 06:26:56'),(79,'ACTION_ACCOUNT_ROLE_CHECK','查看',NULL,NULL,1,NULL,78,_binary '\0',NULL,NULL,NULL,4,'2020-06-22 06:04:46',1,NULL),(80,'MENU_DEVICE','设备管理',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-22 07:42:18',1,'2020-06-23 02:32:31'),(81,'MENU_DEVICE_PAYLOAD','载荷管理',NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,NULL,2,'2020-06-22 07:43:43',1,'2020-06-23 02:33:19'),(87,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','批量删除',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-22 08:07:45',1,'2020-06-23 02:14:23'),(89,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','单个删除',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-22 08:17:00',1,'2020-06-23 02:15:08'),(90,'MENU_DEVICE_UAV','无人机管理',NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,NULL,2,'2020-06-22 09:07:47',1,'2020-06-23 02:33:50'),(91,'ACTION_ACCOUNT_COMPANY_DISABLE','关停公司',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-22 10:12:27',1,'2020-11-11 09:15:11'),(92,'ACTION_ACCOUNT_COMPANY_ENABLE','启用公司',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-22 10:13:17',1,'2020-11-11 09:15:14'),(93,'ACTION_ACCOUNT_CONSUMER_RESET','重置密码',NULL,NULL,1,NULL,54,_binary '\0',NULL,NULL,NULL,4,'2020-06-22 10:18:38',1,NULL),(94,'ACTION_ACCOUNT_COMPANY_RESET','重置密码',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-22 10:19:39',1,'2020-11-11 09:15:17'),(95,'MENU_DEVICE_PAYLOAD_ADD','新建载荷',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 01:23:27',1,'2020-07-15 06:18:49'),(96,'MENU_DEVICE_PAYLOAD_VIEW','查看详情',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 01:24:14',1,'2020-07-15 06:35:05'),(97,'MENU_DEVICE_PAYLOAD_EDIT','编辑',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 01:24:49',1,'2020-07-15 06:19:26'),(100,'MENU_DEVICE_PAYLOAD_LIST','载荷管理列表',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:22:02',1,NULL),(102,'MENU_DEVICE_UVA_VIEW','查看详情',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:34:57',1,'2020-07-15 06:35:16'),(103,'MENU_DEVICE_UVA_EDIT','编辑',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:36:00',1,'2020-07-15 06:21:06'),(104,'MENU_DEVICE_UVA_ADD','新建无人机',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:36:51',1,'2020-07-15 06:20:30'),(105,'MENU_DEVICE_UVA_PAYLOAD_LIST','载荷',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:38:39',1,'2020-07-15 06:22:03'),(106,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','载荷详情',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:39:19',1,'2020-07-15 06:23:10'),(111,'ACTION_ACCOUNT_FEEDBACK_SEARCH','查询',NULL,'问题反馈查询、重置按钮',1,NULL,75,_binary '',NULL,NULL,NULL,3,'2020-06-24 01:31:40',1,'2020-11-11 09:15:47'),(112,'ACTION_ACCOUNT_FEEDBACK_EXPORT','导出',NULL,'导出问题反馈excel',1,NULL,75,_binary '',NULL,NULL,NULL,3,'2020-06-24 01:32:51',1,'2020-11-11 09:15:51'),(114,'ACTION_DEVICE_UVA_FETCH_LIST','查询列表按钮',NULL,'查询无人机分页列表按钮',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:00:49',1,NULL),(115,'ACTION_DEVICE_UVA_RESET','重置按钮',NULL,'无人机列表重置按钮',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:01:52',1,NULL),(116,'ACTION_DEVICE_UVA_BULK_DELETE','批量删除按钮',NULL,'批量删除按钮',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:02:48',1,NULL),(119,'ACTION_DIVICE_UVA_DELETE_SINGLE','删除按钮',NULL,NULL,1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:07:40',1,NULL),(120,'ACTION_AIRSPACE_LIMIT_ADD','新增',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-24 05:35:54',1,'2020-11-11 08:49:33'),(121,'ACTION_AIRSPACE_LIMIT_UPDATE','编辑',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-24 05:36:53',1,'2020-11-11 08:49:33'),(122,'ACTION_AIRSPACE_LIMIT_DEL','删除',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-24 05:38:10',1,'2020-11-11 08:49:33'),(124,'MENU_AIRLINE','航线管理',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-24 06:25:19',1,NULL),(125,'MENU_AIRLINE_SYSTEM_MANAGEMENT','航线管理',NULL,'系统航线管理',0,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2020-06-24 06:30:56',1,'2021-04-20 09:53:00'),(138,'MENU_MISSION1','作业管理',NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,NULL,1,'2020-06-24 07:08:18',1,'2021-07-06 01:54:40'),(139,'MENU_MISSION_LIST1','作业管理',NULL,NULL,0,NULL,138,_binary '',NULL,NULL,NULL,2,'2020-06-24 07:09:07',1,'2021-07-06 01:54:27'),(140,'MENU_MISSION_DETAIL1','查看详情',NULL,NULL,0,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-06-24 07:10:35',1,'2021-07-06 01:54:21'),(158,'MENU_MISSION_ADD1','新建作业',NULL,NULL,0,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-06-24 07:48:22',1,'2021-07-06 01:53:56'),(170,'MENU_PILOT','飞手管理',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-29 09:49:52',1,'2022-07-08 06:50:58'),(171,'MENU_AUDIT','审核系统',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-29 09:50:11',1,'2020-06-29 09:52:14'),(173,'MENU_AUDIT_MANAGER','审核系统',NULL,NULL,0,NULL,171,_binary '\0',NULL,NULL,NULL,2,'2020-06-29 09:54:11',1,NULL),(174,'MENU_AIRSPACE_ADD','新建空域申请',NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-06-29 10:28:15',1,NULL),(175,'MENU_DRONE_MANAGER','飞手管理',NULL,NULL,0,NULL,170,_binary '',NULL,NULL,NULL,2,'2020-06-30 01:19:24',1,'2022-07-08 06:51:27'),(179,'ACTION_AIRSPACE_LIMIT_QUERY','查询',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-30 06:28:28',1,'2020-11-11 08:49:33'),(180,'ACTION_AIRSPACE_QUERY_QUERY','查询',NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 06:30:44',1,NULL),(184,'MENU_ACCOUNT_ROLE_ADD','新建角色',NULL,NULL,0,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 06:36:37',1,NULL),(189,'MENU_ACCOUNT_CONSUMER_ADD','新建用户',NULL,NULL,0,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 07:55:24',1,NULL),(190,'MENU_ACCOUNT_COMPANY_ADD','新建公司',NULL,NULL,0,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-06-30 07:58:43',1,'2020-11-11 09:15:38'),(191,'ACTION_AIRSPACE_NOW_QUERY','查询当前空域',NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 07:59:55',132,NULL),(192,'ACTION_AIRSPACE_AIRPORT_QUERY','查询机场',NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 08:00:41',132,NULL),(197,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','查询按钮',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-07-01 01:49:08',1,NULL),(198,'ACTION_DEVICE_PAYLOAD_RESET_LIST','重置按钮',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-07-01 01:49:39',1,NULL),(199,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','跳转无人机按',NULL,'跳转所属无人机按钮',1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-07-01 01:56:06',1,NULL),(205,'MENU_MISSION_EDIT1','编辑',NULL,NULL,0,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-07-01 06:26:17',131,'2021-07-06 01:52:28'),(206,'ACTION_MISSION_SEARCH1','查询作业列表',NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-07-01 08:33:37',131,'2021-07-06 01:52:20'),(213,'ACTION_DEVICE_PAYLOAD_ADD','新增载荷按钮',NULL,NULL,1,NULL,95,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:10:02',1,NULL),(214,'ACTION_DEVICE_PAYLOAD_EDIT','编辑载荷按钮',NULL,NULL,1,NULL,97,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:11:30',1,NULL),(216,'ACTION_DEVICE_PAYLOAD_VIEW','查看详情按钮',NULL,NULL,1,NULL,96,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:12:32',1,NULL),(217,'ACTION_DEVEICE_UVA_VIEW','查看详情按钮',NULL,NULL,1,NULL,102,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:14:15',1,NULL),(220,'ACTION_DEVICE_UVA_EDIT','编辑按钮',NULL,NULL,1,NULL,103,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:16:19',1,NULL),(221,'ACTION_DEVICE_UVA_ADD','新建按钮',NULL,NULL,1,NULL,104,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:17:42',1,NULL),(222,'ACTION_DEVICE_UVA_PAYLOAD_LIST','载荷按钮',NULL,NULL,1,NULL,105,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:19:34',1,NULL),(224,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','载荷详情按钮',NULL,NULL,1,NULL,106,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:41:33',1,NULL),(225,'ACTION_DEVICE_UVA_PAYLOAD_TIE','绑定载荷',NULL,NULL,1,NULL,105,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:53:32',1,NULL),(227,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','解绑载荷',NULL,NULL,1,NULL,105,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:54:23',1,NULL),(232,'ACTION_AIRSPACE_OVERLAP_QUERY','查询交叉空域',NULL,NULL,1,NULL,174,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 03:33:06',1,NULL),(236,'MENU_AIRSPACE_DETAIL','空域详情',NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 05:56:49',1,NULL),(238,'MENU_AIRLINE_DETAIL','查看详情',NULL,NULL,0,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:21:04',131,'2020-07-15 06:46:16'),(239,'MENU_AIRLINE_CREATE','新建航线',NULL,'创建航线',0,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:23:11',131,'2020-10-09 09:38:16'),(240,'MENU_AIRLINE_EDIT','编辑',NULL,'编辑航线',0,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:23:31',131,'2020-10-09 09:38:17'),(241,'MENU_AIRLINE_MAP_DETAIL_1','航线地图详情',NULL,NULL,0,NULL,125,_binary '',NULL,NULL,NULL,3,'2020-07-02 06:24:50',131,'2021-04-20 09:52:59'),(243,'ACTION_AIRLINE_SAVE','保存航线',NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 06:32:16',131,NULL),(246,'ACTION_AIRLINE_DETAIL','查询航线详情',NULL,NULL,1,NULL,238,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 06:36:51',131,NULL),(258,'MENU_DEVICE_LIST','查询列表',NULL,'查询无人机列表',0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:57:08',1,NULL),(259,'ACTION_DEVICE_CODE_TYPE_LIST','编码型号列表',NULL,'查询无人机编码和型号列表',1,NULL,258,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 07:00:20',1,NULL),(260,'ACTION_MISSION_SAVE1','保存作业',NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-07-02 07:07:08',131,'2021-07-06 01:53:50'),(265,'ACTION_MISSION_DETAIL1','查看作业详情',NULL,NULL,1,NULL,140,_binary '',NULL,NULL,NULL,4,'2020-07-02 07:38:17',131,'2021-07-06 01:54:11'),(284,'ACTION_ACCOUNT_CONSUMER_ADD','新增',NULL,NULL,1,NULL,189,_binary '\0',NULL,NULL,NULL,4,'2020-07-06 01:23:40',1,NULL),(285,'ACTION_ACCOUNT_ROLE_ADD','新增',NULL,NULL,1,NULL,184,_binary '\0',NULL,NULL,NULL,4,'2020-07-06 01:25:41',1,'2020-07-06 01:26:19'),(286,'ACTION_ACCOUNT_COMPANY_ADD','新增',NULL,NULL,1,NULL,190,_binary '',NULL,NULL,NULL,4,'2020-07-06 01:27:25',1,'2020-11-11 09:15:35'),(288,'ACTION_AIRSPACE_APPLY_ADD','新增',NULL,NULL,1,NULL,174,_binary '\0',NULL,NULL,NULL,4,'2020-07-07 02:50:22',140,NULL),(289,'ACTION_AIRSPACE_DETAIL','查看详情',NULL,NULL,1,NULL,236,_binary '\0',NULL,NULL,NULL,4,'2020-07-07 02:52:10',140,NULL),(297,'MENU_ACCOUNT_FLYER_INDEX',NULL,NULL,NULL,0,NULL,24,_binary '\0',NULL,NULL,0,2,'2020-10-09 09:38:06',1,NULL),(298,'MENU_SYSTEMCONFIG',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,0,1,'2020-10-09 09:38:06',1,'2020-11-11 09:17:09'),(299,'MENU_SYSTEMCONFIG_DIC',NULL,NULL,NULL,0,NULL,298,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:06',1,'2020-11-11 09:17:01'),(300,'MENU_SYSTEMCONFIG_FORM',NULL,NULL,NULL,0,NULL,298,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:06',1,'2020-11-11 09:17:05'),(301,'ACTION_AIRSPACE_APPLY_RESET',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:07',1,NULL),(302,'ACTION_AIRSPACE_APPLY_DEL',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:07',1,NULL),(303,'ACTION_AIRSPACE_APPLY_DOWNLOAD',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:07',1,NULL),(304,'MENU_AIRSPACE_APPLY_EDIT',NULL,NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:07',1,NULL),(305,'ACTION_AIRSPACE_APPLY_EDIT',NULL,NULL,NULL,1,NULL,304,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:07',1,NULL),(306,'ACTION_AIRSAPCE_AREANAME',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:08',1,NULL),(307,'ACTION_AIRSPACE_APPLY_SEARCH',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:08',1,NULL),(308,'ACTION_AIRSPACE_QUERY_5KM',NULL,NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:09',1,NULL),(309,'ACTION_AIRSPACE_SAME_AREANAME',NULL,NULL,NULL,1,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-10-09 09:38:10',1,NULL),(310,'MENU_DEVICE_HANGAR',NULL,NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,0,2,'2020-10-09 09:38:10',1,NULL),(311,'ACTION_DEVICE_HANGAR_FETCH_LIST',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:10',1,NULL),(312,'ACTION_DEVICE_HANGAR_RESET_LIST',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:10',1,NULL),(313,'MENU_DEVICE_HANGAR_VIEW',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:11',1,NULL),(314,'ACTION_DEVICE_HANGAR_DETAIL',NULL,NULL,NULL,1,NULL,313,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:11',1,NULL),(315,'MENU_DEVICE_HANGAR_EDIT',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:11',1,NULL),(316,'ACTION_DEVICE_HANGAR_EDIT',NULL,NULL,NULL,1,NULL,315,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:11',1,NULL),(317,'ACTION_DEVICE_HANGAR_DELETE',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:11',1,NULL),(318,'MENU_DEVICE_HANGAR_UAV',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:11',1,NULL),(319,'ACTION_DEVICE_HANGAR_UAV_TIE',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:11',1,NULL),(320,'ACTION_DEVICE_HANGAR_UAV_VIEW',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(321,'ACTION_DEVICE_HANGAR_UAV_UNTIE',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(322,'ACTION_DEVICE_HANGAR_UAV_LIST',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(323,'ACTION_DEVICE_HANGAR_DELETE_BULK',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:12',1,NULL),(324,'MENU_DEVICE_HANGAR_ADD',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:12',1,NULL),(325,'ACTION_DEVICE_HANGAR_ADD',NULL,NULL,NULL,1,NULL,324,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(326,'MENU_DEVICE_HANGAR_UAV_DETAIL',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:12',1,NULL),(327,'ACTION_DEVICE_UAV_JUMP_HANGAR',NULL,NULL,'跳转对应机库详情',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:14',1,NULL),(328,'ACTION_AIRLINE_UAV_LIST',NULL,NULL,'无人机列表',1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:16',1,NULL),(329,'ACTION_AIRLINE_CHECK_AIRLINE_NAME',NULL,NULL,'校验航线名称',1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:16',1,NULL),(330,'ACTION_AIRLINE_UAV_LOAD',NULL,NULL,'无人机绑定的载荷列表查询',1,NULL,239,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:16',1,'2020-11-11 10:04:23'),(331,'MENU_AIRLINE_MAP',NULL,NULL,NULL,0,NULL,124,_binary '\0',NULL,NULL,0,2,'2020-10-09 09:38:16',1,NULL),(332,'ACTION_AIRLINE_ACTIONLIST',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(333,'ACTION_AIRLINE_SAVE_POINTS',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(334,'ACTION_AIRLINE_GET_POINTS',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(335,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL',NULL,NULL,'摄像头载荷设备型号详情',1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(336,'ACTION_AIRLINE_UAVMODEL_DETAIL',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(337,'ACTION_AIRLINE_BLOCKED',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(338,'ACTION_AIRLINE_UPDATE',NULL,NULL,'更新航线信息',1,NULL,240,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:17',1,NULL),(339,'ACTION_AIRLINE_COPY',NULL,NULL,'复制航线',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(340,'ACTION_AIRLINE_DEL',NULL,NULL,'删除航线',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(341,'ACTION_AIRLINE_FILTER',NULL,NULL,'查询条件筛选',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(342,'ACTION_AIRLINE_BULK_DEL',NULL,NULL,'批量删除航线',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(343,'ACTION_AIRLINE_LIST',NULL,NULL,'查询航线列表',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,NULL),(344,'ACTION_MISSON_FILTER1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:52:16'),(345,'ACTION_MISSION_BULKDEL1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:52:10'),(346,'ACTION_MISSION_CLONE1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:52:03'),(347,'ACTION_MISSION_DEL1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:51:56'),(348,'ACTION_MISSION_NAME_CONFLICT1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:51:52'),(349,'MENU_MISSION_REPLAY1',NULL,NULL,NULL,0,NULL,139,_binary '',NULL,NULL,0,3,'2020-10-09 09:38:19',1,'2021-07-06 01:51:48'),(350,'ACTION_MISSION_REPLAY_DATA1',NULL,NULL,NULL,1,NULL,349,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:51:42'),(351,'ACTION_MISSION_GET_HANGAR_INSTANCE1',NULL,NULL,'获取机库实例',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:41'),(352,'ACTION_MISSION_GET_UAV_INSTANCE1',NULL,NULL,'获取无人机实例',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:46'),(353,'ACTION_MISSION_GET_LOAD_INSTANCE1',NULL,NULL,'获取载荷实例',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:35'),(354,'ACTION_MISSION_GET_AIRLINE_LIST1',NULL,NULL,'获取航线名称全集',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:28'),(355,'ACTION_MISSION_EXECUTOR_LIST1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:31'),(356,'ACTION_MISSION_CHECK_MISSION_NAME1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:20',1,'2021-07-06 01:53:20'),(357,'ACTION_MISSION_GET_AIRSPACE1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:20',1,'2021-07-06 01:53:16'),(358,'MENU_FLIGHTMONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,0,1,'2020-10-09 09:38:20',1,NULL),(359,'ACTION_MISSION_STATUS_EDIT',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2020-10-09 09:38:20',1,NULL),(360,'ACTION_WAYPOINT_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2020-10-09 09:38:20',1,'2021-11-05 10:30:18'),(361,'MENU_APPROVAL',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,0,1,'2020-10-09 09:38:20',1,'2020-10-28 09:58:00'),(362,'MENU_APPROVAL_LIST',NULL,NULL,NULL,0,NULL,361,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:20',1,'2020-10-28 09:57:43'),(363,'MENU_APPROVAL_DETAIL',NULL,NULL,NULL,0,NULL,362,_binary '',NULL,NULL,0,3,'2020-10-09 09:38:21',1,'2020-10-28 09:57:39'),(364,'MENU_APPROVAL_MANAGER',NULL,NULL,NULL,0,NULL,361,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:21',1,'2020-10-28 09:57:55'),(365,'MENU_APPROVAL_EDITPROCESS',NULL,NULL,NULL,0,NULL,364,_binary '',NULL,NULL,0,3,'2020-10-09 09:38:21',1,'2020-10-28 09:57:51'),(366,'MENU_APPROVAL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,0,1,'2020-11-11 07:06:08',1,NULL),(367,'MENU_APPROVAL_MANAGER',NULL,NULL,NULL,0,NULL,366,_binary '\0',NULL,NULL,0,2,'2020-11-11 07:06:08',1,NULL),(368,'ACTION_APPROVAL_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,367,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(369,'ACTION_APPROVAL_MANAGE_EDITINFO',NULL,NULL,NULL,1,NULL,367,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(370,'MENU_APPROVAL_EDITPROCESS',NULL,NULL,NULL,0,NULL,367,_binary '\0',NULL,NULL,0,3,'2020-11-11 07:06:08',1,NULL),(371,'ACTION_APPROVAL_MANAGE_EDITPROCESS',NULL,NULL,NULL,1,NULL,370,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 07:06:08',1,NULL),(372,'MENU_APPROVAL_LIST_ADMIN',NULL,NULL,NULL,0,NULL,366,_binary '\0',NULL,NULL,0,2,'2020-11-11 07:06:08',1,NULL),(373,'ACTION_APPROVAL_LIST_SEARCH_ADMIN',NULL,NULL,NULL,1,NULL,372,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(374,'MENU_APPROVAL_DETAIL_ADMIN',NULL,NULL,NULL,0,NULL,372,_binary '\0',NULL,NULL,0,3,'2020-11-11 07:06:08',1,NULL),(375,'ACTION_APPROVAL_LIST_DETAIL_ADMIN',NULL,NULL,NULL,1,NULL,374,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 07:06:08',1,NULL),(376,'MENU_APPROVAL_LIST',NULL,NULL,NULL,0,NULL,366,_binary '\0',NULL,NULL,0,2,'2020-11-11 07:06:08',1,NULL),(377,'ACTION_APPROVAL_LIST_SEARCH',NULL,NULL,NULL,1,NULL,376,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(378,'MENU_APPROVAL_DETAIL',NULL,NULL,NULL,0,NULL,376,_binary '\0',NULL,NULL,0,3,'2020-11-11 07:06:08',1,NULL),(379,'ACTION_APPROVAL_LIST_DETAIL',NULL,NULL,NULL,1,NULL,378,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 07:06:08',1,NULL),(380,'ACTION_MISSION_APPLY_APPROVAL1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-11-11 07:20:49',1,'2021-07-06 01:52:43'),(381,'MENU_AIRSPACE_APPROVAL',NULL,NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,0,3,'2020-11-11 08:49:33',1,NULL),(382,'ACTION_AIRSPACE_APPLY_APPROVAL',NULL,NULL,NULL,1,NULL,381,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 08:49:33',1,NULL),(383,'ACTION_AIRLINE_UAV_MODEL_LIST',NULL,NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 10:04:23',1,NULL),(384,'ACTION_AIRLINE_LOAD_AND_HANGER',NULL,NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 10:04:23',1,NULL),(385,'ACTION_AIRLINE_IMPORT_KML',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 10:04:24',1,NULL),(386,'ACTION_AIRLINE_EXPORT_KML',NULL,NULL,NULL,1,NULL,238,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 10:04:24',1,NULL),(387,'ACTION_UPLOAD',NULL,NULL,NULL,1,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-12-28 08:04:01',1,NULL),(388,'MENU_SIMULATION',NULL,NULL,'',0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-12-28 08:04:03',1,NULL),(389,'ACTION_simulation',NULL,NULL,'信号仿真模块相关接口',1,NULL,388,_binary '\0',NULL,NULL,NULL,2,'2020-12-28 08:04:03',1,NULL),(390,'MENU_WAREHOUSE_INDEX',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51694469166137344,NULL,1,'2020-12-28 09:13:13',1,'2021-03-19 07:03:42'),(391,'MENU_TASK_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694469166137344,NULL,1,'2020-12-28 09:13:13',1,'2021-03-19 07:04:28'),(392,'MENU_WAREHOUSE_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694469166137344,NULL,1,'2020-12-31 02:59:51',1,NULL),(393,'MENU_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-01-29 10:20:33',1,NULL),(394,'ACTION_screen1',NULL,NULL,NULL,1,NULL,393,_binary '',NULL,NULL,NULL,2,'2021-01-29 10:20:33',1,'2023-03-27 07:18:19'),(395,'MENU_IMAGE_TECH',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51700779089657856,NULL,1,'2021-02-01 06:36:26',1,NULL),(396,'MENU_IMAGE_VEHICLE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(397,'MENU_IMAGE_HANDLE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(398,'MENU_IMAGE_SAFETYHAT',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(399,'MENU_IMAGE_ROADSEG',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(400,'MENU_IMAGE_ENHANCE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(401,'MENU_IMAGE_DEFOGGING',NULL,NULL,NULL,0,NULL,400,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(402,'MENU_IMAGE_BODY',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(403,'MENU_IMAGE_DENSITY',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(404,'MENU_VIDEO_TECH',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51700779089657856,NULL,1,'2021-02-01 06:36:26',1,NULL),(405,'MENU_test123',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,85391985304666112,NULL,1,'2021-03-12 07:17:42',70213995537104896,'2021-03-12 07:34:11'),(406,'ACTION_0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012',NULL,NULL,'01234567890123456789012345678901234567890123456789',1,NULL,24,_binary '',NULL,NULL,NULL,2,'2021-03-19 06:10:38',70213995537104896,'2021-03-19 06:13:37'),(407,'MENU_cjdn',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,87911866017251328,NULL,1,'2021-03-19 06:11:27',1,'2021-03-19 06:22:32'),(408,'MENU_123',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,NULL,1,'2021-03-19 06:14:52',70213995537104896,'2021-03-19 06:15:20'),(409,'ACTION_AIRLINE_CHECK_QUOTA',NULL,NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2021-03-19 06:27:45',1,NULL),(410,'ACTION_MISSION_CHECK_QUOTA1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2021-03-19 06:27:45',1,'2021-07-06 01:52:37'),(411,'ACTION_IMAGE_VEHICLE',NULL,NULL,NULL,1,NULL,396,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:44',1,NULL),(412,'ACTION_IMAGE_HANDLE',NULL,NULL,NULL,1,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:45',1,NULL),(413,'ACTION_IMAGE_ENHANCE',NULL,NULL,NULL,1,NULL,400,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:45',1,NULL),(414,'ACTION_IMAGE_BODY',NULL,NULL,NULL,1,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:45',1,NULL),(415,'MENU_TASK_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:21',1,'2021-07-30 10:05:41'),(416,'MENU_TASK_MODEL',NULL,NULL,NULL,0,NULL,415,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:32'),(417,'MENU_TASK_REALTIME',NULL,NULL,NULL,0,NULL,415,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:35'),(418,'MENU_TASK_AI',NULL,NULL,NULL,0,NULL,415,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:38'),(419,'MENU_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:22',1,'2021-07-30 10:05:59'),(420,'MENU_MONITOR_INDEX',NULL,NULL,NULL,0,NULL,419,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:56'),(421,'MENU_AI_SERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:22',1,'2021-07-30 10:05:53'),(422,'MENU_AI_BILITY',NULL,NULL,NULL,0,NULL,421,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:50'),(423,'MENU_AI_MODEL',NULL,NULL,NULL,0,NULL,421,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:47'),(424,'MENU_PRODUCT_SEARCH',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:22',1,'2021-07-30 10:05:44'),(425,'MENU_PRODUCT_SEARCH_INDEX',NULL,NULL,NULL,0,NULL,424,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:28'),(429,'MENU_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694469166137344,NULL,1,'2021-03-19 06:32:34',1,NULL),(430,'MENU_WAREHOUSE_DETAIL',NULL,NULL,NULL,0,NULL,390,_binary '',NULL,51694469166137344,NULL,2,'2021-03-19 06:32:34',1,'2021-03-19 07:03:39'),(431,'MENU_WAREHOUSE_MANAGE_INDEX',NULL,NULL,NULL,0,NULL,392,_binary '\0',NULL,51694469166137344,NULL,2,'2021-03-19 06:32:34',1,NULL),(432,'MENU_WAREHOUSE_INDEX',NULL,NULL,NULL,0,NULL,429,_binary '\0',NULL,51694469166137344,NULL,2,'2021-03-19 07:03:55',87912590847508480,NULL),(433,'MENU_WAREHOUSE_DETAIL',NULL,NULL,NULL,0,NULL,432,_binary '\0',NULL,51694469166137344,NULL,3,'2021-03-19 07:04:10',87912590847508480,NULL),(434,'MENU_TASK_MONITOR_INDEX',NULL,NULL,NULL,0,NULL,391,_binary '\0',NULL,51694469166137344,NULL,2,'2021-03-19 07:04:41',87912590847508480,NULL),(435,'MENU_APP',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,92183251954696192,NULL,1,'2021-03-31 09:30:46',1,NULL),(436,'MENU_APP_RESULT',NULL,NULL,NULL,0,NULL,435,_binary '\0',NULL,92183251954696192,NULL,2,'2021-03-31 09:30:46',1,NULL),(437,'MENU_DATA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,92183251954696192,NULL,1,'2021-03-31 09:30:47',1,NULL),(438,'MENU_DATA_MANAGE',NULL,NULL,NULL,0,NULL,437,_binary '\0',NULL,92183251954696192,NULL,2,'2021-03-31 09:30:47',1,NULL),(439,'MENU_TIMING_MISSION1',NULL,NULL,'定时作业菜单',0,NULL,138,_binary '',NULL,NULL,NULL,2,'2021-03-31 09:54:08',1,'2021-07-06 01:51:29'),(440,'MENU_TIMING_MISSION_ADD1',NULL,NULL,'新增定时作业',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:09',1,'2021-07-06 01:51:21'),(441,'ACTION_ADD_TIMING_MISSION1',NULL,NULL,'创建定时作业',1,NULL,440,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:51:14'),(442,'ACTION_UPDATE_TIMING_MISSION1',NULL,NULL,'更新定时作业',1,NULL,440,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:51:07'),(443,'MENU_TIMING_MISSION_LIST1',NULL,NULL,'定时作业列表',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:09',1,'2021-07-06 01:51:00'),(444,'ACTION_TIMING_MISSION_LIST1',NULL,NULL,'定时列表',1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:56'),(445,'ACTION_TIMING_MISSION_DELETE1',NULL,NULL,NULL,1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:50'),(446,'ACTION_TIMING_MISSION_BULK_DELETE1',NULL,NULL,NULL,1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:39'),(447,'ACTION_TIMING_MISSION_ENABLE1',NULL,NULL,NULL,1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:33'),(448,'MENU_TIMING_MISSION_DETAIL1',NULL,NULL,'定时作业详情',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:10',1,'2021-07-06 01:50:23'),(449,'ACTION_TIMING_MISSION_DETAIL1',NULL,NULL,NULL,1,NULL,448,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:10',1,'2021-07-06 01:49:57'),(450,'MENU_TIMING_MISSION_EDIT1',NULL,NULL,'编辑定时作业',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:10',1,'2021-07-06 01:49:48'),(451,'MENU_',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51701172477624320,NULL,1,'2021-04-20 09:44:32',1,NULL),(452,'MENU_SIMULATION_LIST',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51700961512521728,NULL,1,'2021-04-20 09:45:11',1,NULL),(453,'MENU_IMAGE_LICENSEPLATE',NULL,NULL,NULL,0,NULL,396,_binary '\0',NULL,51700779089657856,NULL,3,'2021-04-20 09:45:44',1,NULL),(454,'ACTION_forcedelete',NULL,NULL,'测试使用',1,NULL,63,_binary '',NULL,NULL,NULL,3,'2021-04-20 09:46:44',1,'2021-07-30 09:57:02'),(455,'ACTION_MULTIMONITOR_VIDEO',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-04-20 09:48:46',1,NULL),(456,'ACTION_LOAD_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-04-20 09:48:46',1,'2021-06-16 07:50:15'),(457,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2021-04-20 09:53:00',1,NULL),(458,'MENU_AIRLINE_MAP_DETAIL',NULL,NULL,NULL,0,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2021-04-20 09:53:00',1,NULL),(459,'ACTION_123456',NULL,NULL,'12345612345612345612345612345612345612345612345612',1,NULL,24,_binary '',NULL,NULL,NULL,2,'2021-04-21 02:48:44',70213995537104896,'2021-04-21 02:48:50'),(460,'MENU_11',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51701711122726912,NULL,1,'2021-04-21 03:19:46',1,'2021-04-21 03:20:11'),(463,'MENU_MISSION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-05-12 07:09:20',1,NULL),(464,'MENU_TIMING_MISSION',NULL,NULL,'定时作业菜单',0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:09:20',1,NULL),(465,'ACTION_MISSION_ENABLE',NULL,NULL,NULL,1,NULL,463,_binary '',NULL,NULL,NULL,2,'2021-05-12 07:09:20',1,'2021-07-06 06:47:46'),(466,'ACTION_SUBTASK_DELETE1',NULL,NULL,NULL,1,NULL,140,_binary '',NULL,NULL,NULL,4,'2021-05-12 07:09:20',1,'2021-07-06 01:54:02'),(467,'ACTION_MISSION_SEARCH',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:37:20',89730635001757696,NULL),(468,'ACTION_MISSON_FILTER',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:38:05',89730635001757696,NULL),(469,'ACTION_MISSION_BULKDEL',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:38:45',89730635001757696,NULL),(470,'ACTION_MISSION_CLONE',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:39:16',89730635001757696,NULL),(471,'MENU_TIMING_MISSION_ADD',NULL,NULL,'新增定时作业',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(472,'ACTION_ADD_TIMING_MISSION',NULL,NULL,'创建定时作业',1,NULL,471,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(473,'ACTION_UPDATE_TIMING_MISSION',NULL,NULL,'更新定时作业',1,NULL,471,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(474,'MENU_TIMING_MISSION_LIST',NULL,NULL,'定时作业列表',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(475,'ACTION_TIMING_MISSION_LIST',NULL,NULL,'定时列表',1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(476,'ACTION_TIMING_MISSION_DELETE',NULL,NULL,NULL,1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(477,'ACTION_TIMING_MISSION_BULK_DELETE',NULL,NULL,NULL,1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(478,'ACTION_MISSION_ENABLE',NULL,NULL,NULL,1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,'2021-07-06 07:49:39'),(479,'MENU_TIMING_MISSION_DETAIL',NULL,NULL,'定时作业详情',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(480,'ACTION_TIMING_MISSION_DETAIL',NULL,NULL,NULL,1,NULL,479,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(481,'MENU_TIMING_MISSION_EDIT',NULL,NULL,'编辑定时作业',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(482,'MENU_MISSION_EDIT',NULL,NULL,NULL,0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(483,'ACTION_MISSION_DEL',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(484,'MENU_MISSION_REPLAY',NULL,NULL,NULL,0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(485,'ACTION_MISSION_REPLAY_DATA',NULL,NULL,NULL,1,NULL,484,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(486,'MENU_MISSION_DETAIL',NULL,NULL,NULL,0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(487,'ACTION_MISSION_DETAIL',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(488,'ACTION_SUBTASK_DELETE',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(489,'MENU_MISSION_ADD',NULL,NULL,'在飞行记录分页查询列表,是为了导入飞行记录',0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,'2022-10-13 02:35:33'),(490,'ACTION_MISSION_CHECK_MISSION_NAME',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(491,'ACTION_MISSION_APPLY_APPROVAL',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(492,'ACTION_MISSION_CHECK_QUOTA',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(493,'ACTION_MISSION_GET_HANGAR_INSTANCE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(494,'ACTION_MISSION_GET_UAV_INSTANCE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(495,'ACTION_MISSION_GET_LOAD_INSTANCE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(496,'ACTION_MISSION_SAVE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(497,'ACTION_MISSION_GET_AIRLINE_LIST',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(498,'ACTION_MISSION_EXECUTOR_LIST',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(499,'MENU_AIRLINE_KML_LIST',NULL,NULL,NULL,0,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2021-05-26 03:24:13',1,NULL),(500,'MENU_AIRLINE_KML_IMPORT',NULL,NULL,NULL,0,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(501,'ACTION_AIRLINE_KML_IMPORT',NULL,NULL,NULL,1,NULL,500,_binary '\0',NULL,NULL,NULL,4,'2021-05-26 03:24:13',1,NULL),(502,'ACTION_AIRLINE_KML_LIST',NULL,NULL,NULL,1,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(503,'ACTION_AIRLINE_KML_LIST_OPTIONS',NULL,NULL,NULL,1,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(504,'ACTION_AIRLINE_KML_DELETE',NULL,NULL,'批量删除和删除',1,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(505,'ACTION_SIMULATION_SEARCH',NULL,NULL,NULL,1,NULL,452,_binary '',NULL,51700961512521728,NULL,2,'2021-05-26 06:34:42',89730635001757696,'2021-05-26 06:52:16'),(506,'ACTION_SIMULATION_BTN',NULL,NULL,NULL,1,NULL,452,_binary '\0',NULL,51700961512521728,NULL,2,'2021-05-26 07:02:48',89730635001757696,NULL),(507,'MENU_oo',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,92183251954696192,NULL,1,'2021-05-26 07:59:58',292,'2021-05-26 08:00:03'),(508,'ACTION_AIRLINE_GET_STRAP_LINE',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2021-06-01 10:04:14',1,NULL),(509,'MENU_INDEX',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694291109543936,NULL,1,'2021-06-09 07:53:41',1,NULL),(510,'ACTION_AI_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-06-16 07:50:15',1,'2021-11-05 10:30:18'),(511,'MENU_TRAFFIC',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2021-06-23 09:43:08',89730635001757696,NULL),(512,'MENU_OFFICE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51694103410245632,NULL,1,'2021-06-23 09:43:28',89730635001757696,'2023-05-04 09:52:33'),(513,'MENU_EMERGENCY',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51693249240236032,NULL,1,'2021-06-23 09:43:50',89730635001757696,'2022-07-08 06:53:50'),(514,'ACTION_EFENCE_ENABLE_SWITCH',NULL,NULL,'启用、禁用电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:03',1,NULL),(515,'ACTION_CREAT_EFENCE_INFO',NULL,NULL,'创建、编辑电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(516,'ACTION_DEL_EFENCE',NULL,NULL,'删除电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(517,'ACTION_EFENCE_DETAI_INFO',NULL,NULL,'电子围栏详情',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(518,'ACTION_EFENCE_LIST',NULL,NULL,'查询电子围栏列表',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(519,'ACTION_EFENCE_PAGE_FILTER',NULL,NULL,'模糊搜索电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(520,'ACTION_CHECK_EFENCE_NAME',NULL,NULL,'校验围栏名称重复',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(521,'ACTION_MULTIMONITOR_FINDDEVICES',NULL,NULL,'全局监视查找设备',1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-07-30 09:58:33',1,NULL),(522,'ACTION_LOAD_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-07-30 09:58:33',1,'2021-11-05 10:30:18'),(523,'ACTION_HANGAR_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-07-30 09:58:33',1,'2021-11-05 10:30:18'),(524,'MENU_PRODUCE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51695802510213120,NULL,1,'2021-07-30 10:06:53',1,NULL),(525,'MENU_PRODUCE_LIST',NULL,NULL,NULL,0,NULL,524,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:53',1,NULL),(526,'ACTION_PRODUCE_LIST_BULKDEL',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(527,'MENU_PRODUCE_DETAIL',NULL,NULL,NULL,0,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(528,'ACTION_PRODUCE_DETAIL',NULL,NULL,NULL,1,NULL,527,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:53',1,NULL),(529,'ACTION_PRODUCE_LIST_SEARCH',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(530,'ACTION_PRODUCT_LIST_START',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(531,'MENU_PRODUCE_EDIT',NULL,NULL,NULL,0,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(532,'ACTION_PRODUCE_EDIT',NULL,NULL,NULL,1,NULL,531,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:53',1,NULL),(533,'ACTION_PRODUCE_LIST_DEL',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(534,'MENU_PRODUCE_ADD',NULL,NULL,NULL,0,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(535,'ACTION_PRODUCE_ADD',NULL,NULL,NULL,1,NULL,534,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:53',1,NULL),(536,'MENU_RESULT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51695802510213120,NULL,1,'2021-07-30 10:06:53',1,NULL),(537,'MENU_RESULT_VISUALIZATION',NULL,NULL,NULL,0,NULL,536,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:54',1,NULL),(538,'MENU_RESULT_MANAGE',NULL,NULL,NULL,0,NULL,536,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:54',1,NULL),(539,'ACTION_RESULT_LIST_DEL',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(540,'ACTION_RESULT_BULKDEL',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(541,'ACTION_RESULT_LIST_SEARCH',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(542,'ACTION_RESULT_DOWNLOAD',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(543,'ACTION_RESULT_LIST_PUBLISH',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(544,'MENU_RESULT_MANAGE_ADD',NULL,NULL,NULL,0,'',538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(545,'ACTION_RESULT_ADD',NULL,NULL,NULL,1,NULL,544,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:54',1,NULL),(546,'MENU_RESULT_MANAGE_EDIT',NULL,NULL,NULL,0,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(547,'ACTION_RESULT_EDIT',NULL,NULL,NULL,1,NULL,546,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:54',1,NULL),(548,'MENU_RESULT_MANAGE_DETAIL',NULL,NULL,NULL,0,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(549,'ACTION_RESULT_DETAIL',NULL,NULL,NULL,1,NULL,548,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:54',1,NULL),(550,'MENU_DATA_MA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51695802510213120,NULL,1,'2021-07-30 10:06:54',1,NULL),(551,'MENU_DATA_MA_LIST',NULL,NULL,NULL,0,NULL,550,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:54',1,NULL),(552,'ACTION_DATA_DELETE',NULL,NULL,NULL,1,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(553,'ACTION_DATA_LIST_SEARCH',NULL,NULL,NULL,1,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(554,'MENU_DATA_MA_EDIT',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(555,'ACTION_DATA_EDIT',NULL,NULL,NULL,1,NULL,554,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:55',1,NULL),(556,'MENU_DATA_MA_DETAIL',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(557,'ACTION_DATA_DETAIL',NULL,NULL,NULL,1,NULL,556,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:55',1,NULL),(558,'MENU_DATA_MA_ADD',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(559,'ACTION_DATA_ADD',NULL,NULL,NULL,1,NULL,558,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:55',1,NULL),(560,'ACTION_DATA_BULKDEL',NULL,NULL,NULL,1,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(561,'ACTION_BATCH_DOWNLOAD',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2021-08-12 02:19:01',1,NULL),(562,'ACTION_FLIGHT_TO_3D_ROUTE',NULL,NULL,NULL,1,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:29:24',1,NULL),(563,'MENU_ALARM',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:29:54',1,NULL),(564,'MENU_ALARM_STATISTIC',NULL,NULL,NULL,0,NULL,563,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:29:54',1,NULL),(565,'MENU_ALARM_STATISTIC_DETAIL',NULL,NULL,NULL,0,NULL,564,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(566,'ACTION_ALARM_STATISTIC_DETAIL',NULL,NULL,NULL,1,NULL,565,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(567,'ACTION_ALARM_STATISTIC_LIST',NULL,NULL,'',1,NULL,564,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(568,'ACTION_ALARM_QUERY_STATIC',NULL,NULL,'告警数量统计信息',1,NULL,564,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(569,'MENU_ALARM_CONFIG',NULL,NULL,NULL,0,NULL,563,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:29:54',1,NULL),(570,'MENU_ALARM_CONFIG_ADD',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(571,'ACTION_ALARM_CONFIG_ADD',NULL,NULL,NULL,1,NULL,570,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(572,'MENU_ALARM_CONFIG_EDIT',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(573,'ACTION_ALARM_CONFIG_EDIT',NULL,NULL,NULL,1,NULL,572,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(574,'MENU_ALARM_CONFIG_DETAIL',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(575,'ACTION_ALARM_CONFIG_DETAIL',NULL,NULL,NULL,1,NULL,574,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(576,'ACTION_ALARM_CONFIG_DELETE',NULL,NULL,NULL,1,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:55',1,NULL),(577,'ACTION_ALARM_CONFIG_ONOFF',NULL,NULL,NULL,1,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:55',1,NULL),(578,'MENU_ALARM_CONFIG_LIST',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:55',1,NULL),(579,'ACTION_ALARM_CONFIG_SEARCHOPTION',NULL,NULL,NULL,1,NULL,578,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:55',1,NULL),(580,'ACTION_ALARM_CONFIG_SEARCHLIST',NULL,NULL,NULL,1,NULL,578,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:55',1,NULL),(581,'MENU_FLIGHTMONITOR_FIRE_ALERT',NULL,NULL,'全局监视火情功能',0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:18',1,NULL),(582,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST',NULL,NULL,'火情信息列表展示',1,NULL,581,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(583,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND',NULL,NULL,'火情出警按钮权限',1,NULL,581,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(584,'MENU_UAV_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:18',1,NULL),(585,'ACTION_UAV_BPERM',NULL,NULL,'起飞、暂停、继续、返航、停止、迫降、升起、指点飞行',1,NULL,584,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,'2023-06-16 09:17:34'),(586,'ACTION_UAV_STK_BPERM',NULL,NULL,'开启摇杆、关闭摇杆、设置',1,NULL,584,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(587,'MENU_LOAD_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:18',1,NULL),(588,'MENU_CAM_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(589,'ACTION_CAM_BPERM',NULL,NULL,'拍照、自动对焦、云台控制、拍照模式、设置',1,NULL,588,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(590,'ACTION_CAM_HEAT_BPERM',NULL,NULL,NULL,1,NULL,588,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(591,'MENU_MEG_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(592,'ACTION_MEG_BPERM',NULL,NULL,'即时喊话、播放录音',1,NULL,591,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(593,'MENU_SPR_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(594,'ACTION_SPR_BPERM',NULL,NULL,'开始喷洒、停止喷洒',1,NULL,593,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(595,'MENU_AI_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:19',1,NULL),(596,'MENU_AI_VSTITCH_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(597,'ACTION_VIDEO_VSTITCH_BPERM',NULL,NULL,NULL,1,NULL,596,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(598,'MENU_AI_CAR_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(599,'ACTION_AI_CAR_BPERM',NULL,NULL,NULL,1,NULL,598,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(600,'ACTION_AI_CARTRACK_BPERM',NULL,NULL,NULL,1,NULL,598,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(601,'MENU_AI_MUTI_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,'2022-04-02 07:37:10'),(602,'ACTION_AI_MUTI_BPERM',NULL,NULL,NULL,1,NULL,601,_binary '',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,'2022-04-02 07:37:10'),(603,'MENU_AI_PER_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(604,'ACTION_AI_PER_BPERM',NULL,NULL,NULL,1,NULL,603,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(605,'MENU_HGR_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:19',1,NULL),(606,'ACTION_HGR_BPERM',NULL,NULL,'机库准备、结束流程',1,NULL,605,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(607,'ACTION_HGR_EMG_BPERM',NULL,NULL,'机库急停、机库复位、Home点标记、紧急降落点标记',1,NULL,605,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(608,'ACTION_MUTI_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:19',1,NULL),(609,'MENU_FLIGHTSERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:30:44',1,NULL),(610,'MENU_INDUSTRIALAPP',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:30:47',1,NULL),(611,'MENU_VALUE_ADDED_SERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:30:49',1,NULL),(612,'MENU_FLIGHT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,171690764403736576,NULL,1,'2021-11-05 10:38:09',1,NULL),(613,'MENU_TOWER',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,171689982405115904,NULL,1,'2021-11-05 10:45:26',1,NULL),(614,'MENU_TOWER_LEDGER',NULL,NULL,NULL,0,NULL,613,_binary '\0',NULL,171689982405115904,NULL,2,'2021-11-05 10:45:26',1,NULL),(615,'ACTION_TOWER_IMPORT_FILE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(616,'ACTION_TOWER_DELETE_LINE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(617,'ACTION_TOWER_EDIT_ROUTE_NAME',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(618,'ACTION_TOWER_DOWNLOAD_TEMPLATE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(619,'ACTION_TOWER_DELETE_TOWER',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(620,'ACTION_TOWER_CHANGE_ORDER',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(621,'ACTION_TOWER_NEW',NULL,NULL,'创建杆塔',1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(622,'ACTION_TOWER_MODIFY',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(623,'ACTION_TOWER_DETAIL',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(624,'ACTION_TOWER_TOWERLIST',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(625,'ACTION_TOWER_ADD_ROUTE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(626,'ACTION_TOWER_EXPORT_TOWER',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(627,'MENU_TOWER_PHOTO',NULL,NULL,NULL,0,NULL,613,_binary '\0',NULL,171689982405115904,NULL,2,'2021-11-05 10:45:26',1,NULL),(628,'ACTION_TOWER_INSPECTION_PHOTO_LIST',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(629,'ACTION_TOWER_DELETE_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(630,'ACTION_TOWER_MOVE_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(631,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(632,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(633,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(634,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(635,'ACTION_TOWER_MODIFY_DEFECT_LIST',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(636,'MENU_TOWER_ROUTE',NULL,NULL,NULL,0,NULL,613,_binary '\0',NULL,171689982405115904,NULL,2,'2021-11-05 10:45:27',1,NULL),(637,'ACTION_TOWER_LINECONNECT',NULL,NULL,'关联、取消关联航线',1,NULL,636,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(638,'ACTION_TOWER_UNCONNECT',NULL,NULL,'取消关联航线',1,NULL,636,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(639,'ACTION_TOWER_CONNECTDETAIL',NULL,NULL,NULL,1,NULL,636,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(640,'ACTION_ONEKEYFLY',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-11-09 08:59:01',1,'2022-03-11 05:52:53'),(641,'MENU_LOW_DET',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,194515901263904768,NULL,1,'2022-01-18 11:17:19',1,NULL),(642,'MENU_POLICE_SYSTEM_ALARM',NULL,NULL,'出警权限',0,NULL,NULL,_binary '',NULL,51694103410245632,NULL,1,'2022-01-18 11:22:41',1,'2023-05-04 09:52:40'),(643,'MENU_POLICE_SYSTEM_VISIT',NULL,NULL,'公安警务系统访问权限',0,NULL,NULL,_binary '',NULL,51694103410245632,NULL,1,'2022-01-18 11:22:41',1,'2023-05-04 09:52:51'),(644,'MENU_LOG',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-01-18 11:23:05',1,NULL),(645,'ACTION_LOG_OPTION_TYPE',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(646,'MENU_FLIGHTLOG',NULL,NULL,NULL,0,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(647,'ACTION_LOG_FLIGHTLOGLIST',NULL,NULL,NULL,1,NULL,646,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:05',1,NULL),(648,'ACTION_LOG_LOGLIST',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(649,'ACTION_LOG_USERLIST',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(650,'ACTION_LOG_DEVICELIST',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(651,'ACTION_AIRSPACE_GET_DICT',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:29',1,NULL),(652,'ACTION_AI_SEND_SMS',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:37',1,NULL),(653,'MENU_AI_FIRE_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:37',1,NULL),(654,'ACTION_AI_FIRE_BPERM',NULL,NULL,NULL,1,NULL,653,_binary '\0',NULL,NULL,NULL,4,'2022-01-18 11:23:37',1,NULL),(655,'ACTION_MISSION_SEND_SMS',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:44',1,NULL),(656,'MENU_DATA_MWA_IMAGE',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2022-01-18 11:24:28',1,NULL),(657,'ACTION_DATA_IMAGE',NULL,NULL,NULL,1,NULL,656,_binary '\0',NULL,51695802510213120,NULL,4,'2022-01-18 11:24:28',1,NULL),(658,'MENU_DATA_MWA_EDIT_IMAGE',NULL,NULL,NULL,0,NULL,554,_binary '\0',NULL,51695802510213120,NULL,4,'2022-01-18 11:24:28',1,NULL),(659,'MENU_DATA_MWA_ADD_IMAGE',NULL,NULL,NULL,0,NULL,558,_binary '\0',NULL,51695802510213120,NULL,4,'2022-01-18 11:24:28',1,NULL),(660,'MENU_aasdsds',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51691621233721344,NULL,1,'2022-03-01 05:46:34',188243415207510016,'2022-03-01 05:46:39'),(661,'MENU_iiiiiiii',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51691621233721344,NULL,1,'2022-03-02 03:33:53',188243415207510016,'2022-03-02 03:33:57'),(662,'MENU_MONITOR_MEDICAL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,216936325675220992,NULL,1,'2022-03-10 07:39:37',1,NULL),(663,'MENU_GENERAL_SERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,216936325675220992,NULL,1,'2022-03-10 07:39:37',1,NULL),(664,'MENU_DEVICE_SIMULATED_UAV',NULL,NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2022-03-14 01:55:55',1,NULL),(665,'MENU_ENVIRONMENT',NULL,NULL,'智慧环保大屏',0,NULL,NULL,_binary '',NULL,NULL,NULL,1,'2022-03-15 08:00:44',1,'2022-03-30 09:08:26'),(666,'ACTION_ENVIRONMENT_API',NULL,NULL,'环保大屏接口',1,NULL,665,_binary '',NULL,NULL,NULL,2,'2022-03-15 08:00:44',1,'2022-03-30 09:08:16'),(667,'MENU_GREEN_SCREEN',NULL,NULL,'智慧环保行业应用接口',0,NULL,NULL,_binary '\0',NULL,218767711973408768,NULL,1,'2022-03-15 08:28:20',1,'2022-04-27 06:12:17'),(668,'MENU_VISITOR',NULL,NULL,'基础版权限',0,NULL,NULL,_binary '\0',NULL,217309254481084416,NULL,1,'2022-03-30 02:02:43',1,NULL),(669,'MENU_SUPERVISION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,224170096870817792,NULL,1,'2022-03-30 06:13:53',1,'2022-09-20 08:37:25'),(670,'ACTION_ONEKEYFLY',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-03-31 07:04:49',1,NULL),(671,'MENU_INSPECTION_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,224558648645386240,NULL,1,'2022-03-31 07:56:28',1,'2022-04-27 06:11:06'),(672,'MENU_AI_SMOG_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-04-02 07:37:11',1,NULL),(673,'ACTION_AI_SMOG_BPERM',NULL,NULL,NULL,1,NULL,672,_binary '\0',NULL,NULL,NULL,4,'2022-04-02 07:37:11',1,NULL),(674,'MENU_COMPANY',NULL,NULL,NULL,0,NULL,24,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:29:09',1,NULL),(675,'MENU_COMPANY_EDIT',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(676,'ACTION_COMPANY_ENABLE',NULL,NULL,NULL,1,NULL,675,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:09',1,NULL),(677,'ACTION_COMPANY_DISABLE',NULL,NULL,NULL,1,NULL,675,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:09',1,NULL),(678,'ACTION_COMPANY_RESET',NULL,NULL,NULL,1,NULL,675,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:09',1,NULL),(679,'MENU_COMPANY_ADD',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(680,'MENU_COMPANY_CHECK',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(681,'ACTION_COMPANY_SEARCH',NULL,NULL,NULL,1,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(682,'MENU_DEVICE_WAREHOUSE',NULL,NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:29:17',1,NULL),(683,'MENU_AI_MUTI_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:23',1,NULL),(684,'ACTION_AI_MUTI_BPERM',NULL,NULL,NULL,1,NULL,683,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:24',1,NULL),(685,'MENU_FLIGHT_MONITOR_TETHERED',NULL,NULL,'勾选可查看单机监视中基站相关信息,包括左侧基站&卫星信息卡片、地图右下角文字、无人机信号范围',0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:43:03',1,NULL),(686,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG',NULL,NULL,'发送视频流分享链接短信',1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:43:03',1,NULL),(687,'MENU_tlcp_index',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,239746594734342144,NULL,1,'2022-05-12 05:48:05',188243415207510016,NULL),(688,'ACTION_OPTIMIZATION_VERSION',NULL,NULL,'数据大屏平台使用情况统计(2022.5)',1,NULL,393,_binary '\0',NULL,NULL,NULL,2,'2022-05-13 02:13:57',1,NULL),(689,'MENU_POI_BAK',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-05-25 09:56:08',1,'2023-06-14 10:07:58'),(690,'MENU_POI_CHANGE_TYPE',NULL,NULL,NULL,0,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(691,'ACTION_POI_DELETE_POINT',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(692,'ACTION_POI_ADD_EDIT_POI',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(693,'ACTION_POI_DELETE_TYPE',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(694,'ACTION_POI_IMPORT_POINTS',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(695,'ACTION_POI_DOWNLOAD_TEMPLATE',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(696,'MENU_PARK_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,244750226999476224,NULL,1,'2022-05-26 01:10:40',1,NULL),(697,'MENU_PLAYBACK',NULL,NULL,'数据回放菜单',0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-05-26 01:15:48',1,NULL),(698,'MENU_TDOA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,245144849337024512,NULL,1,'2022-05-27 03:51:17',188243415207510016,NULL),(699,'ACTION_AI_CARNUMBER_BPERM',NULL,NULL,NULL,1,NULL,598,_binary '\0',NULL,NULL,NULL,4,'2022-06-08 05:48:52',1,NULL),(700,'ACTION_3D_HISTORY_TRACK',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-06-09 01:21:55',1,NULL),(701,'MENU_risk_index',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,249904145316708352,NULL,1,'2022-06-09 06:30:32',188243415207510016,NULL),(702,'MENU_IMAGE_BRIDGE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2022-06-22 07:20:50',1,NULL),(703,'MENU_IMAGE_BRIDGE_SLOPE',NULL,NULL,NULL,0,NULL,702,_binary '\0',NULL,51700779089657856,NULL,3,'2022-06-22 07:20:51',1,NULL),(704,'MENU_IMAGE_BRIDGE_UNDER',NULL,NULL,NULL,0,NULL,702,_binary '\0',NULL,51700779089657856,NULL,3,'2022-06-22 07:20:51',1,NULL),(705,'MENU_IMAGE_BRIDGE_JOINT',NULL,NULL,NULL,0,NULL,702,_binary '\0',NULL,51700779089657856,NULL,3,'2022-06-22 07:20:51',1,NULL),(706,'MENU_AIRSPACE_PLAN',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-06-22 07:54:11',1,NULL),(707,'MENU_AIRSPACE_PLAN_APPROVAL',NULL,NULL,'计划审批的查看权限',0,NULL,706,_binary '\0',NULL,224170096870817792,NULL,3,'2022-06-22 07:54:11',1,NULL),(708,'ACTION_AIRSPACE_APPROVAL_EDIT',NULL,NULL,NULL,1,NULL,707,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:11',1,NULL),(709,'MENU_SUPERVISION_AIRSPACE_QUERY',NULL,NULL,NULL,0,NULL,706,_binary '\0',NULL,224170096870817792,NULL,3,'2022-06-22 07:54:11',1,NULL),(710,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT',NULL,NULL,NULL,1,NULL,709,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:11',1,NULL),(711,'ACTION_SUPERVISION_AIRSPACE_DELETE',NULL,NULL,NULL,1,NULL,709,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:11',1,NULL),(712,'MENU_SUPERVISION_REGION',NULL,NULL,NULL,0,NULL,706,_binary '\0',NULL,224170096870817792,NULL,3,'2022-06-22 07:54:11',1,NULL),(713,'ACTION_SUPERVISION_REGION_ADD_EDIT',NULL,NULL,NULL,1,NULL,712,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:12',1,NULL),(714,'ACTION_SUPERVISION_REGION_DELETE',NULL,NULL,NULL,1,NULL,712,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:12',1,NULL),(715,'MENU_INDEX_5G',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,254659367012401152,NULL,1,'2022-06-22 09:32:12',188243415207510016,NULL),(716,'MENU_tudou_sensing',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,256733978294222848,NULL,1,'2022-06-30 06:18:43',188243415207510016,'2022-09-22 01:31:25'),(717,'MENU_COMMUNICATION_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2022-06-30 09:22:07',1,NULL),(718,'MENU_PILOT_MESSAGE_SEARCH',NULL,NULL,NULL,0,NULL,170,_binary '\0',NULL,NULL,NULL,2,'2022-07-08 06:51:11',1,NULL),(719,'ACTION_PILOT_MESSAGE_LIST',NULL,NULL,NULL,1,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(720,'ACTION_PILOT_MESSAGE_AUDIT',NULL,NULL,NULL,1,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(721,'MENU__PILOT_ADD',NULL,NULL,NULL,0,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(722,'MENU_PILOT_EDIT',NULL,NULL,NULL,0,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(723,'MENU_PILOT_DETAIL',NULL,NULL,NULL,0,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(726,'MENU_EMERGENCY_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693249240236032,NULL,1,'2022-07-08 06:53:54',1,NULL),(727,'MENU_fire_emergency',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,262610103520198656,NULL,1,'2022-07-14 08:02:49',188243415207510016,NULL),(728,'MENU_INFRASTRUCTURE_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,266603863711154176,NULL,1,'2022-07-25 08:29:07',1,NULL),(729,'MENU_INFRASTRUCTURE_BOOK',NULL,NULL,NULL,0,'',728,_binary '',NULL,266603863711154176,NULL,2,'2022-07-25 08:29:07',1,'2022-07-27 09:25:31'),(730,'MENU_INFRASTRUCTURE_BOOK',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,266603863711154176,NULL,1,'2022-07-27 09:25:35',1,NULL),(731,'MENU_SCENE_SIMULATION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-08-04 10:54:23',1,NULL),(732,'MENU_nematode',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,273132440472518656,NULL,1,'2022-08-12 08:53:23',188243415207510016,NULL),(733,'MENU_hub',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,275322748887105536,NULL,1,'2022-08-19 01:30:53',188243415207510016,NULL),(734,'MENU_latn',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,275323102710202368,NULL,1,'2022-08-19 01:31:39',188243415207510016,NULL),(735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:03',1,NULL),(736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST',NULL,NULL,NULL,0,NULL,735,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:03',1,NULL),(737,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH',NULL,NULL,NULL,1,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:03',1,NULL),(738,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD',NULL,NULL,NULL,0,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:03',1,NULL),(739,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE',NULL,NULL,NULL,1,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(740,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL',NULL,NULL,NULL,0,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(741,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT',NULL,NULL,NULL,0,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(742,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE',NULL,NULL,NULL,1,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(743,'MENU_VIDEO_PROCESS_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(744,'MENU_VIDEO_PROCESS_MANAGE_LIST',NULL,NULL,NULL,0,NULL,743,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:04',1,NULL),(745,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(746,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(747,'ACTION_VIDEO_PROCESS_MANAGE_DELETE',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(748,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(749,'MENU_VIDEO_PROCESS_MANAGE_ADD',NULL,NULL,NULL,0,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(750,'MENU_VIDEO_PROCESS_MANAGE_DETAIL',NULL,NULL,NULL,0,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(751,'MENU_VIDEO_OPEN_INTERFACE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(752,'MENU_VIDEO_DEVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(753,'MENU_VIDEO_DEVICE_MANAGE',NULL,NULL,NULL,0,NULL,752,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:04',1,NULL),(754,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(755,'MENU_VIDEO_DEVICE_DETAIL',NULL,NULL,NULL,0,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(756,'ACTION_VIDEO_MANAGE_PLAYBACK',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(757,'ACTION_VIDEO_MANAGE_DELETE',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(758,'MENU_VIDEO_DEVICE_EDIT',NULL,NULL,NULL,0,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(759,'ACTION_VIDEO_MANAGE_BATCH_DELETE',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(760,'MENU_VIDEO_DEVICE_ADD',NULL,NULL,NULL,0,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(761,'MENU_VIDEO_PLAYBACK',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(762,'MENU_VIDEO_PLAYBACK_INDEX',NULL,NULL,NULL,0,NULL,761,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:04',1,NULL),(763,'MENU_FLIGHT_RECORDS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-09-20 08:30:36',1,NULL),(764,'MENU_FLIGHT_RECORDS_DETAIL',NULL,NULL,NULL,0,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(765,'ACTION_FLIGHT_RECORDS_DETAIL',NULL,NULL,NULL,1,NULL,764,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:30:36',1,NULL),(766,'ACTION_FLIGHT_RECORDS_EXPORT',NULL,NULL,NULL,1,NULL,764,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:30:36',1,NULL),(767,'ACTION_FLIGHT_RECORDS_SEARCH',NULL,NULL,NULL,1,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(768,'ACTION_FLIGHT_RECORDS_DELETE',NULL,NULL,NULL,1,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(769,'ACTION_FLIGHT_RECORDS_BATCH_DELETE',NULL,NULL,NULL,1,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(770,'ACTION_MISSION_FILE_UPLOAD',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:30:52',1,NULL),(771,'MENU_MISSION_DISPATCH',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-09-20 08:32:50',1,NULL),(772,'MENU_MISSION_DISPATCH_MY_AGENT',NULL,NULL,NULL,0,NULL,771,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:32:50',1,NULL),(773,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL',NULL,NULL,NULL,0,NULL,772,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(774,'MENU_MISSION_DISPATCH_MY_AGENT_LIST',NULL,NULL,NULL,0,NULL,772,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(775,'MENU_MISSION_DISPATCH_SETTING',NULL,NULL,NULL,0,NULL,771,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:32:50',1,NULL),(776,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL',NULL,NULL,NULL,0,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(777,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT',NULL,NULL,NULL,1,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(778,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT',NULL,NULL,NULL,1,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(779,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL',NULL,NULL,NULL,0,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(780,'MENU_MISSION_DISPATCH_MY_TASK',NULL,NULL,NULL,0,NULL,771,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:32:50',1,NULL),(781,'MENU_MISSION_DISPATCH_MY_TASK_ADD',NULL,NULL,NULL,0,NULL,780,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(782,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL',NULL,NULL,NULL,0,NULL,780,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(783,'MENU_MISSION_DISPATCH_MY_TASK_LIST',NULL,NULL,NULL,0,NULL,780,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:51',1,NULL),(785,'MENU_COMMUNICATION_NAME_LIST',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2022-09-20 08:33:32',1,NULL),(788,'MENU_SUPERVISION_FLIGHT',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:43',1,NULL),(789,'MENU_SUPERVISION_FLIGHT_MONITOR',NULL,NULL,NULL,0,NULL,788,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:43',1,NULL),(790,'MENU_SUPERVISION_FLIGHT_CONFLICT',NULL,NULL,NULL,0,NULL,788,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(791,'MENU_SUPERVISION_FLIGHT_ANALYSIS',NULL,NULL,NULL,0,NULL,788,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(792,'MENU_SUPERVISION_SCREEN',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:44',1,NULL),(793,'MENU_SUPERVISION_COUNTER',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:44',1,NULL),(794,'ACTION_AIRSPACE_APPROVAL_VIEW',NULL,NULL,NULL,1,NULL,707,_binary '\0',NULL,224170096870817792,NULL,4,'2022-09-20 08:37:44',1,NULL),(795,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW',NULL,NULL,NULL,0,NULL,709,_binary '\0',NULL,224170096870817792,NULL,4,'2022-09-20 08:37:44',1,NULL),(796,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW',NULL,NULL,NULL,0,NULL,712,_binary '\0',NULL,224170096870817792,NULL,4,'2022-09-20 08:37:44',1,NULL),(797,'MENU_SUPERVISION_CUSTOMER',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:44',1,NULL),(798,'ACTION_SUPERVISION_CUSTOMER_VIEW',NULL,NULL,NULL,1,NULL,797,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(799,'ACTION_SUPERVISION_CUSTOMER_EDIT',NULL,NULL,NULL,1,NULL,797,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(800,'MENU_AI_TRANSMISSION_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-09-21 03:08:03',1,NULL),(801,'ACTION_AI_TRANSMISSION_BPERM',NULL,NULL,NULL,1,NULL,800,_binary '\0',NULL,NULL,NULL,4,'2022-09-21 03:08:03',1,NULL),(802,'MENU_tudou_3d',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,287875985993367552,NULL,1,'2022-09-22 01:32:09',188243415207510016,NULL),(803,'MENU_SUB_MISSION_DETAIL',NULL,NULL,NULL,0,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-10-13 02:35:32',1,NULL),(804,'ACTION_MISSION_FILE_DELETE',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-10-13 02:35:32',1,NULL),(805,'MENU_IMAGE_POSTURE',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2022-10-25 09:51:32',1,NULL),(806,'MENU_IMAGE_COMMON',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2022-10-25 09:51:32',1,NULL),(807,'MENU_IMAGE_DEBRIS_FLOW',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2022-10-25 09:51:33',1,NULL),(808,'MENU_IMAGE_DEBRIS_FLOW_DETAIL',NULL,NULL,NULL,0,NULL,807,_binary '\0',NULL,51700779089657856,NULL,3,'2022-10-25 09:51:33',1,NULL),(809,'MENU_VIDEO_SYSTEM_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-10-27 08:10:11',1,NULL),(810,'MENU_VIDEO_SYSTEM_MANAGE_LIST',NULL,NULL,NULL,0,NULL,809,_binary '\0',NULL,279567198865850368,NULL,2,'2022-10-27 08:10:11',1,NULL),(811,'ACTION_VIDEO_COMPOSE_SEARCH',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:11',1,NULL),(812,'ACTION_VIDEO_COMPOSE_MERGE',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:11',1,NULL),(813,'ACTION_VIDEO_COMPOSE_DEL',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(814,'ACTION_VIDEO_SLICE_SEARCH',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(815,'ACTION_VIDEO_SLICE_DEL',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(816,'MENU_VIDEO_LIVE_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-10-27 08:10:12',1,NULL),(817,'MENU_VIDEO_LIVE_MANAGE_LIST',NULL,NULL,NULL,0,NULL,816,_binary '\0',NULL,279567198865850368,NULL,2,'2022-10-27 08:10:12',1,NULL),(818,'ACTION_VIDEO_LIVE_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(819,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(820,'ACTION_VIDEO_LIVE_MANAGE_DELETE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(821,'MENU_VIDEO_LIVE_MANAGE_ADD',NULL,NULL,NULL,0,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(822,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(823,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(824,'ACTION_VIDEO_LIVE_MANAGE_SHARE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(825,'ACTION_VIDEO_LIVE_MANAGE_END',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(826,'ACTION_CONTROL_MANAGE',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-11-09 09:00:33',1,NULL),(827,'MENU_EMERGENCY_RESOURCE_SHOW',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693249240236032,NULL,1,'2022-12-02 03:02:25',188243415207510016,NULL),(828,'MENU_COMPANY_MAP',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2023-01-17 08:08:25',1,NULL),(829,'MENU_IMAGE_VEHICLE_INDENTIFY',NULL,NULL,NULL,0,NULL,396,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(830,'MENU_IMAGE_BODY_DETECTION',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(831,'MENU_IMAGE_CROWD_COUNT',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(832,'MENU_IMAGE_PEDESTRIAN',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(833,'MENU_ACHIEVEMENT_BAK',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-02-08 09:29:36',1,'2023-06-15 06:54:21'),(834,'MENU_ACHIEVEMENT_2D',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:36',1,NULL),(835,'MENU_ACHIEVEMENT_2D_LIST',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(836,'ACTION_ACHIEVEMENT_2D_DELETE',NULL,NULL,NULL,1,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(837,'MENU_ACHIEVEMENT_2D_EDIT',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(838,'MENU_ACHIEVEMENT_2D_DETAIL',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(839,'MENU_ACHIEVEMENT_2D_CONTRAST',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(840,'MENU_ACHIEVEMENT_2D_ADD',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(841,'MENU_ACHIEVEMENT_3D',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:36',1,NULL),(842,'MENU_ACHIEVEMENT_3D_LIST',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(843,'ACTION_ACHIEVEMENT_3D_DELETE',NULL,NULL,NULL,1,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(844,'MENU_ACHIEVEMENT_3D_EDIT',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(845,'MENU_ACHIEVEMENT_3D_DETAIL',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(846,'MENU_ACHIEVEMENT_3D_CONTRAST',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:37',1,NULL),(847,'MENU_ACHIEVEMENT_3D_ADD',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:37',1,NULL),(848,'MENU_ACHIEVEMENT_RETURN_IMG',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:37',1,NULL),(849,'MENU_ACHIEVEMENT_PANORAMIC_IMG',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:37',1,NULL),(851,'MENU_COMMOM_SCREEN',NULL,NULL,NULL,0,NULL,393,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:38:05',1,NULL),(852,'MENU_ZIGONG_SCREEN_BAK',NULL,NULL,NULL,0,NULL,393,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:38:06',1,'2023-06-27 08:33:59'),(853,'MENU_AI_EXCAVATOR_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-02-09 01:20:47',188243415207510016,NULL),(854,'MENU_AI_SAFEHAT_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-02-09 01:21:57',188243415207510016,NULL),(855,'ACTION_DEVICE_WAREHOUSE_EDIT',NULL,NULL,NULL,1,NULL,682,_binary '\0',NULL,NULL,NULL,3,'2023-02-14 05:59:41',1,NULL),(856,'ACTION_DEVICE_WAREHOUSE_CHECK',NULL,NULL,NULL,1,NULL,682,_binary '\0',NULL,NULL,NULL,3,'2023-02-14 05:59:41',1,NULL),(857,'MENU_DATA_STATISTIC',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,218767711973408768,NULL,1,'2023-03-29 09:38:33',1,NULL),(858,'MENU_FLIGHT_PLAN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-04-12 08:00:30',1,NULL),(859,'MENU_FLIGHT_PLAN_CREATE',NULL,NULL,NULL,0,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(860,'ACTION_FLIGHT_PLAN_SAVE',NULL,NULL,NULL,1,NULL,859,_binary '\0',NULL,NULL,NULL,3,'2023-04-12 08:00:31',1,NULL),(861,'MENU_FLIGHT_PLAN_EDIT',NULL,NULL,NULL,0,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(862,'ACTION_FLIGHT_PLAN_EDIT',NULL,NULL,NULL,1,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(863,'ACTION_FLIGHT_PLAN_SEARCH',NULL,NULL,NULL,1,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(864,'ACTION_FLIGHT_PLAN_DEL',NULL,NULL,NULL,1,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(865,'MENU_runtoint_index',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,365173608686157824,NULL,1,'2023-04-23 08:47:55',188243415207510016,NULL),(866,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING',NULL,NULL,NULL,0,NULL,789,_binary '\0',NULL,224170096870817792,NULL,4,'2023-05-04 09:43:01',1,NULL),(867,'MENU_SECURITY_H5',NULL,NULL,'侦查员h5相关权限',0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:49',1,NULL),(868,'MENU_POLICE_MULTIPLE_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:49',1,NULL),(869,'MENU_POLICE_GLOBAL_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:50',1,NULL),(870,'MENU_POLICE_SINGLE_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:50',1,NULL),(871,'MENU_SECURITY_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:50',1,NULL),(872,'MENU_FLIGHT_PLAN_DETAIL',NULL,NULL,NULL,0,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-05-05 09:28:07',1,NULL),(873,'MENU_TRAFFIC_WAREHOUSE_DETAIL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(874,'MENU_TRAFFIC_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(875,'MENU_TRAFFIC_GUIDE_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(876,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(877,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(878,'MENU_TRAFFIC_GUIDE_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(879,'MENU_PILOT_SCOUTING',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,374257704400846848,NULL,1,'2023-05-18 10:08:00',1,NULL),(880,'MENU_flyer_basic',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,374257704400846848,NULL,1,'2023-05-18 10:08:00',1,NULL),(881,'MENU_COMMUNICATION_EMERGENCYMAP',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2023-05-18 10:49:02',1,NULL),(882,'MENU_COMMUNICATION_DATAMANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2023-05-18 10:49:02',1,NULL),(883,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(884,'ACTION_COMMUNICATION_ADD',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(885,'ACTION_COMMUNICATION_EDIT',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(886,'ACTION_COMMUNICATION_DELETE',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(887,'MENU_FIRE_RESCUE_SCREEN',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,375599197049585664,NULL,1,'2023-05-22 02:57:12',1,NULL),(888,'MENU_FIRE_RESCUE_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,375599197049585664,NULL,1,'2023-05-22 02:57:12',1,NULL),(889,'MENU_FIRE_RESCUE_MULTI_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,375599197049585664,NULL,1,'2023-05-22 02:57:12',1,NULL),(890,'MENU_GEO',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-06-14 10:06:01',1,NULL),(891,'MENU_GEO_POI',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:01',1,NULL),(892,'MENU_GEO_POI_TYPE',NULL,NULL,NULL,0,NULL,891,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:01',1,NULL),(893,'ACTION_GEO_POI_TYPE_EDIT',NULL,NULL,NULL,1,NULL,892,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:01',1,NULL),(894,'ACTION_GEO_POI_TYPE_ADD',NULL,NULL,NULL,1,NULL,892,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:01',1,NULL),(895,'ACTION_GEO_POI_TYPE_DELETE',NULL,NULL,NULL,1,NULL,892,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(896,'MENU_GEO_POI_POINT',NULL,NULL,NULL,0,NULL,891,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:02',1,NULL),(897,'ACTION_GEO_POI_POINT_ADD',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(898,'ACTION_GEO_POI_POINT_EDIT',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(899,'ACTION_GEO_POI_POINT_DELETE',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(900,'ACTION_GEO_POI_POINT_PUBLISH',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(901,'MENU_GEO_MODEL_2D',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:02',1,NULL),(902,'MENU_GEO_MODEL_2D_ADD',NULL,NULL,NULL,0,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(903,'MENU_GEO_MODEL_2D_EDIT',NULL,NULL,NULL,0,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(904,'ACTION_GEO_MODEL_2D_PUBLISH',NULL,NULL,NULL,1,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(905,'ACTION_GEO_MODEL_2D_DELETE',NULL,NULL,NULL,1,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(906,'MENU_GEO_MODEL_3D',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:03',1,NULL),(907,'MENU_GEO_MODEL_3D_EDIT',NULL,NULL,NULL,0,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(908,'MENU_GEO_MODEL_3D_ADD',NULL,NULL,NULL,0,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:04',1,NULL),(909,'ACTION_GEO_MODEL_3D_PUBLISH',NULL,NULL,NULL,1,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:04',1,NULL),(910,'ACTION_GEO_MODEL_3D_DELETE',NULL,NULL,NULL,1,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:04',1,NULL),(911,'MENU_GEO_RETURN_IMG',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:04',1,NULL),(912,'MENU_GEO_PANORAMIC_IMG',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:04',1,NULL),(913,'MENU_COMMON_TOOL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-06-16 09:16:28',1,NULL),(914,'MENU_GEO_LAYER',NULL,NULL,NULL,0,NULL,913,_binary '\0',NULL,NULL,NULL,2,'2023-06-16 09:16:28',1,NULL),(915,'ACTION_GEO_LAYER_2D',NULL,NULL,NULL,1,NULL,914,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(916,'ACTION_GEO_LAYER_3D',NULL,NULL,NULL,1,NULL,914,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(917,'ACTION_GEO_LAYER_POI',NULL,NULL,NULL,1,NULL,914,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(918,'MENU_AIRSPACE_TOOLS',NULL,NULL,NULL,0,NULL,913,_binary '\0',NULL,NULL,NULL,2,'2023-06-16 09:16:28',1,NULL),(919,'MENU_COMPARE',NULL,NULL,NULL,0,NULL,913,_binary '\0',NULL,NULL,NULL,2,'2023-06-16 09:16:28',1,NULL),(920,'ACTION_COMPARE_ROLL',NULL,NULL,NULL,1,NULL,919,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(921,'ACTION_COMPARE_SPLIT',NULL,NULL,NULL,1,NULL,919,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(922,'MENU_ARMY_PEOPLE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,389735663221211136,NULL,1,'2023-06-30 06:14:08',1,'2024-07-18 09:43:12'),(923,'MENU_ARMY_PEOPLE_SCREEN',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:42:11'),(924,'MENU_ARMY_PEOPLE_SCREEN_DETECTION',NULL,NULL,NULL,0,NULL,923,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:59'),(925,'MENU_ARMY_PEOPLE_SCREEN_REPLAY',NULL,NULL,NULL,0,NULL,923,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:42:04'),(926,'MENU_ARMY_PEOPLE_CUSTOMER',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:41:48'),(927,'ACTION_ARMY_PEOPLE_CUSTOMER_VIEW',NULL,NULL,NULL,1,NULL,926,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:43'),(928,'ACTION_ARMY_PEOPLE_CUSTOMER_EDIT',NULL,NULL,NULL,1,NULL,926,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:38'),(929,'MENU_ARMY_PEOPLE_FLIGHT_SERVICES',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:41:30'),(930,'MENU_ARMY_PEOPLE_AIRSPACE_MANAGEMENT',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:41:24'),(931,'MENU_ARMY_PEOPLE_AIRSPACE_PLAN_APPROVAL',NULL,NULL,'计划审批的查看权限',0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:12'),(932,'ACTION_ARMY_PEOPLE_AIRSPACE_APPROVAL_EDIT',NULL,NULL,NULL,1,NULL,931,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:08',1,'2024-07-18 09:41:04'),(933,'ACTION_ARMY_PEOPLE_AIRSPACE_APPROVAL_VIEW',NULL,NULL,NULL,1,NULL,931,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:08',1,'2024-07-18 09:41:08'),(934,'MENU_ARMY_PEOPLE_ALARM_MANAGEMENT',NULL,NULL,NULL,0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:40:58'),(935,'MENU_ARMY_PEOPLE_REGION',NULL,NULL,NULL,0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:09',1,'2024-07-18 09:40:53'),(936,'ACTION_ARMY_PEOPLE_REGION_DELETE',NULL,NULL,NULL,1,NULL,935,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:09',1,'2024-07-18 09:40:48'),(937,'MENU_ARMY_PEOPLE_AIRSPACE_PLAN_APPROVAL_VIEW',NULL,NULL,NULL,0,NULL,935,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:09',1,'2024-07-18 09:40:43'),(938,'ACTION_ARMY_PEOPLE_REGION_ADD_EDIT',NULL,NULL,NULL,1,NULL,935,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:09',1,'2024-07-18 09:40:37'),(939,'MENU_BASESTATION_MANAGEMENT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-08-07 07:24:42',89730635001757696,NULL),(940,'MENU_BASESTATION_SEARCH',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:25:19',89730635001757696,NULL),(941,'MENU_BASESTATION_IMPORT',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:26:12',89730635001757696,NULL),(942,'MENU_BASESTATION_EDIT',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:37:32',89730635001757696,NULL),(943,'MENU_BASESTATION_ADD',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:38:32',89730635001757696,NULL),(944,'MENU_BASESTATION_DETAIL',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:38:56',89730635001757696,NULL),(945,'MENU_PERSONNELINFO_MANAGEMENT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-08-07 07:41:41',89730635001757696,NULL),(946,'MENU_PERSONNELINFO_IMPORT',NULL,NULL,NULL,0,NULL,945,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:42:30',89730635001757696,NULL),(947,'MENU_QUALITYCONTROL_MANAGEMENT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-08-07 07:43:20',89730635001757696,NULL),(948,'MENU_QUALITYCONTROL_CREATE',NULL,NULL,NULL,0,NULL,947,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:44:16',89730635001757696,NULL),(949,'MENU_QUALITYCONTROL_DETAIL',NULL,NULL,NULL,0,NULL,947,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:47:13',89730635001757696,NULL),(950,'MENU_HEILONGJIANGTIETA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,403580659618807808,NULL,1,'2023-08-07 08:07:29',89730635001757696,NULL),(951,'ACTION_YAW_WARNING',NULL,NULL,NULL,1,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-08-28 05:57:06',188243415207510016,NULL),(952,'ACTION_MULTIMONITOR_MODEL_LAYER',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2023-09-12 01:19:30',1,NULL),(953,'MENU_GAS_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2023-09-12 01:19:31',1,NULL),(954,'MENU_AI_CROWD',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-09-12 01:19:32',1,NULL),(955,'MENU_AI_HIGHWAY',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-09-12 01:19:32',1,NULL),(956,'ACTION_AI_HIGHWAY_OBSTACLES',NULL,NULL,NULL,1,NULL,955,_binary '\0',NULL,NULL,NULL,4,'2023-09-12 01:19:32',1,NULL),(957,'ACTION_AI_HIGHWAY_PEDESTRIANS',NULL,NULL,NULL,1,NULL,955,_binary '\0',NULL,NULL,NULL,4,'2023-09-12 01:19:32',1,NULL),(958,'ACTION_AI_HIGHWAY_CONGESTION',NULL,NULL,NULL,1,NULL,955,_binary '\0',NULL,NULL,NULL,4,'2023-09-12 01:19:32',1,NULL),(959,'ACTION_process-delete',NULL,NULL,NULL,1,NULL,372,_binary '\0',NULL,NULL,NULL,3,'2023-09-27 10:02:57',1,NULL),(960,'MENU_COMMUNICATION_DATA',NULL,NULL,'通信数据对应的是大屏中的【通信监测】【xx场景】模块,只有内部的账号才能看见,给外面客户部署不能要',0,NULL,NULL,_binary '',NULL,257530550208692224,NULL,1,'2023-10-11 01:31:47',1,'2023-10-11 01:41:15'),(961,'MENU_THREED_SIMULATION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,439357001011167232,NULL,1,'2023-11-14 08:03:06',188243415207510016,NULL),(962,'ACTION_FLIGHTMONITOR_USERGUIDE',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2023-11-29 09:46:31',1,NULL),(963,'ACTION_GAS_PIC_SET',NULL,NULL,NULL,1,NULL,953,_binary '\0',NULL,NULL,NULL,4,'2023-11-29 09:46:32',1,NULL),(964,'ACTION_UAV_NETWORKLINK_BPERM',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2024-02-22 08:23:56',1,NULL),(965,'MENU_AI_PEO_VEH',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-02-23 01:57:25',1,NULL),(966,'MENU_COMMUNICATION_DECISION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-04-01 06:25:37',1,NULL),(967,'MENU_ARMY_PEOPLE_MONITOR',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2024-04-09 12:46:42',89730635001757696,'2024-07-18 09:42:52'),(968,'MENU_ARMY_PEOPLE_STORY',NULL,NULL,NULL,0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2024-04-09 14:20:05',1,'2024-07-18 09:41:20'),(969,'MENU_ARMY_PEOPLE_PRECESION_ANALYSIS',NULL,NULL,NULL,0,NULL,923,_binary '',NULL,389735663221211136,NULL,3,'2024-04-09 14:20:05',1,'2024-07-18 09:41:55'),(970,'MENU_SECURITY_DETECTION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2024-05-29 02:31:11',89730635001757696,NULL),(971,'MENU_AI_COMPASS',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-14 08:41:59',89730635001757696,NULL),(972,'MENU_ARMY_PEOPLE_CONFIG',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2024-06-17 02:17:01',89730635001757696,'2024-07-18 09:43:08'),(973,'MENU_ARMY_PEOPLE_REGION_1',NULL,NULL,NULL,0,NULL,972,_binary '',NULL,389735663221211136,NULL,3,'2024-06-17 02:19:12',89730635001757696,'2024-07-18 09:42:33'),(974,'MENU_ARMY_PEOPLE_DEVCIE',NULL,NULL,NULL,0,NULL,972,_binary '',NULL,389735663221211136,NULL,3,'2024-06-17 02:20:14',89730635001757696,'2024-07-18 09:43:02'),(975,'MENU_ARMY_PEOPLE_STORY_1',NULL,NULL,NULL,0,NULL,972,_binary '',NULL,389735663221211136,NULL,3,'2024-06-17 02:21:04',89730635001757696,'2024-07-18 09:43:05'),(976,'ACTION_ARMY_PEOPLE_REGION_ADD_EDIT_1',NULL,NULL,NULL,1,NULL,973,_binary '',NULL,389735663221211136,NULL,4,'2024-06-17 02:22:27',89730635001757696,'2024-07-18 09:42:20'),(977,'MENU_ARMY_PEOPLE_AIRSPACE_PLAN_APPROVAL_VIEW_1',NULL,NULL,NULL,0,NULL,973,_binary '',NULL,389735663221211136,NULL,4,'2024-06-17 02:23:17',89730635001757696,'2024-07-18 09:42:24'),(978,'ACTION_ARMY_PEOPLE_REGION_DELETE_1',NULL,NULL,NULL,1,NULL,973,_binary '',NULL,389735663221211136,NULL,4,'2024-06-17 02:23:49',89730635001757696,'2024-07-18 09:42:28'),(982,'MENU_AI_CAR_FOLLOW',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:35:59',1,NULL),(983,'MENU_AI_UAV',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:37:10',1,NULL),(984,'MENU_AI_INFRARED',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:37:32',1,NULL),(985,'MENU_AI_SEA_HUMAN',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:37:53',1,NULL),(986,'MENU_AI_SEA_BOAT',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:38:11',1,NULL),(987,'MENU_STORAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2024-07-18 09:27:06',1,NULL),(988,'MENU_STORAGE_INDEX',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:06',1,NULL),(989,'MENU_STORAGE_VIDEO',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:06',1,NULL),(990,'MENU_STORAGE_IMG',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:07',1,NULL),(991,'MENU_STORAGE_MODEL',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:08',1,NULL),(992,'MENU_STORAGE_SETTING',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:08',1,NULL),(993,'MENU_5G_A',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,389735663221211136,NULL,1,'2024-07-18 09:31:14',1,NULL),(994,'MENU_5G_A_FLIGHT_SERVICES',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:15',1,NULL),(995,'MENU_5G_A_PERMISSIONS',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:15',1,NULL),(996,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD',NULL,NULL,'',1,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(997,'MENU_5G_A_FLIGHT_STATION_COUNT',NULL,NULL,NULL,0,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(998,'ACTION_5G_A_DETECTION_TRACK',NULL,NULL,NULL,1,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(999,'ACTION_5G_A_DETECTION_TOOL_WEATHER',NULL,NULL,NULL,1,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(1000,'MENU_5G_A_DETECTION',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:16',1,NULL),(1001,'MENU_5G_A_DETECTION_ANALYSE',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:16',1,NULL),(1002,'MENU_5G_A_DETECTION_ALARM',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:17',1,NULL),(1003,'MENU_5G_A_DETECTION_HOME',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:17',1,NULL),(1004,'MENU_5G_A_DETECTION_REPLAY',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:18',1,NULL),(1005,'MENU_5G_A_SETTING',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:18',1,NULL),(1006,'MENU_5G_A_SETTING_REGION_PLAN',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:18',1,NULL),(1007,'MENU_5G_A_SETTING_DEVICE',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:19',1,NULL),(1008,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL',NULL,NULL,NULL,0,NULL,1007,_binary '\0',NULL,389735663221211136,NULL,4,'2024-07-18 09:31:19',1,NULL),(1009,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL',NULL,NULL,NULL,0,NULL,1007,_binary '\0',NULL,389735663221211136,NULL,4,'2024-07-18 09:31:20',1,NULL),(1010,'MENU_5G_A_SETTING_STORY',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:20',1,NULL),(1011,'MENU_5G_A_MONITOR',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:20',1,NULL),(1012,'ACTION_AIRLINE_TRANSLATION',NULL,NULL,NULL,1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2024-08-22 02:06:19',89730635001757696,NULL),(1013,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2024-08-22 02:13:09',188243415207510016,NULL),(1014,'MENU_TRAFFIC_AIRPORT_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2024-08-23 02:32:34',1,NULL),(1015,'MENU_TRAFFIC_HIGHSPEED_SCREEN',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2024-08-23 02:32:34',1,NULL),(1016,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2024-08-23 02:32:35',1,NULL),(1017,'MENU_5G_A_SETTING_PERCEPTTASK',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-08-27 01:56:07',89730635001757696,NULL),(1018,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:57:12',89730635001757696,NULL),(1019,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:58:14',89730635001757696,NULL),(1020,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:58:34',89730635001757696,NULL),(1021,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:58:57',89730635001757696,NULL),(1022,'MENU_SECURITY_ALERTS',NULL,NULL,NULL,0,NULL,563,_binary '\0',NULL,NULL,NULL,2,'2024-09-10 01:46:27',1,NULL),(1023,'MENU_SECURITY_ALERTS_DETAIL',NULL,NULL,NULL,0,NULL,1022,_binary '\0',NULL,NULL,NULL,3,'2024-09-10 01:46:27',1,NULL),(1024,'MENU_COMMUNICATION_EVENTS_REPORT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:12',1,NULL),(1025,'MENU_COMMUNICATION_DATA',NULL,NULL,'通信数据对应的是大屏中的【通信监测】【xx场景】模块,只有内部的账号才能看见,给外面客户部署不能要',0,'',NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:13',1,NULL),(1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:13',1,NULL),(1027,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE',NULL,NULL,NULL,0,'',1026,_binary '\0',NULL,257530550208692224,NULL,2,'2024-09-29 02:10:14',1,NULL),(1028,'MENU_COMMUNICATION_EMERGENCY_DETAIL',NULL,NULL,NULL,0,NULL,1027,_binary '\0',NULL,257530550208692224,NULL,3,'2024-09-29 02:10:14',1,NULL),(1029,'MENU_COMMUNICATION_EMERGENCY_ADD',NULL,NULL,NULL,0,NULL,1027,_binary '\0',NULL,257530550208692224,NULL,3,'2024-09-29 02:10:14',1,NULL),(1030,'MENU_COMMUNICATION_EMERGENCY_EDIT',NULL,NULL,NULL,0,NULL,1027,_binary '\0',NULL,257530550208692224,NULL,3,'2024-09-29 02:10:14',1,NULL),(1031,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC',NULL,NULL,NULL,0,NULL,1026,_binary '\0',NULL,257530550208692224,NULL,2,'2024-09-29 02:10:15',1,NULL),(1032,'MENU_COMMUNICATION_PROCESS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:16',1,NULL),(1033,'MENU_COMMUNICATION_EMERGENCY_DUTY',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:16',1,NULL),(1034,'MENU_COMMUNICATION_EMERGENCY_STATISTICS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:16',1,NULL); +INSERT INTO `sys_resource` VALUES (24,'MENU_ACCOUNT','用户服务',NULL,'',0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-05-28 01:55:07',1,'2021-11-05 10:28:48'),(25,'MENU_ACCOUNT_CONSUMER','用户管理',NULL,'etste',0,NULL,24,_binary '\0',NULL,NULL,NULL,2,'2020-05-28 01:56:31',1,'2020-06-29 10:07:27'),(26,'MENU_ACCOUNT_AUTHORITY','模块管理',NULL,'test',0,NULL,24,_binary '',NULL,NULL,NULL,2,'2020-05-28 01:58:36',1,'2020-11-11 09:14:57'),(27,'MENU_ACCOUNT_ROLE','角色管理',NULL,NULL,0,NULL,24,_binary '\0',NULL,NULL,NULL,2,'2020-05-28 01:59:08',1,NULL),(28,'MENU_ACCOUNT_COMPANY','公司管理',NULL,NULL,0,NULL,24,_binary '',NULL,NULL,NULL,2,'2020-05-28 01:59:49',1,'2020-11-11 09:15:42'),(29,'ACTION_ACCOUNT_CONSUMER_SEARCH','查询',NULL,NULL,1,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-05-28 02:38:47',1,NULL),(34,'ACTION_ACCOUNT_AUTHORITY_ADD','新增',NULL,NULL,1,NULL,26,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:00:15',1,'2020-11-11 09:14:46'),(35,'ACTION_ACCOUNT_AUTHORITY_UPDATE','修改',NULL,'test',1,NULL,26,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:01:01',1,'2020-11-11 09:14:50'),(36,'ACTION_ACCOUNT_AUTHORITY_DEL','删除',NULL,NULL,1,NULL,26,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:01:23',1,'2020-11-11 09:14:53'),(37,'ACTION_ACCOUNT_ROLE_SEARCH','查询',NULL,NULL,1,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-05-28 03:02:34',1,NULL),(43,'ACTION_ACCOUNT_COMPANY_SEARCH','查询',NULL,NULL,1,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-05-28 03:08:08',1,'2020-11-11 09:15:05'),(46,'MENU_ACCOUNT_COMPANY_EDIT','编辑',NULL,NULL,0,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-06-03 08:35:29',1,'2020-11-11 09:15:23'),(48,'MENU_ACCOUNT_COMPANY_CHECK','查看详情',NULL,NULL,0,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-06-03 11:29:27',1,'2020-11-11 09:15:31'),(49,'ACTION_ACCOUNT_COMPANY_UPDATE','更新',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-03 11:31:34',1,'2020-11-11 09:15:09'),(50,'ACTION_ACCOUNT_COMPANY_CHECK','查看',NULL,NULL,1,NULL,48,_binary '',NULL,NULL,NULL,4,'2020-06-03 11:32:53',1,'2020-11-11 09:15:27'),(51,'MENU_ACCOUNT_ROLE_EDIT','编辑',NULL,NULL,0,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-06-03 11:57:26',1,'2020-07-15 06:26:51'),(53,'ACTION_ACCOUNT_ROLE_UPDATE','更新',NULL,NULL,1,NULL,51,_binary '\0',NULL,NULL,NULL,4,'2020-06-03 12:03:40',1,NULL),(54,'MENU_ACCOUNT_CONSUMER_EDIT','编辑',NULL,'test',0,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-03 12:16:39',1,'2022-04-27 03:29:09'),(55,'MENU_ACCOUNT_CONSUMER_CHECK','查看详情',NULL,NULL,0,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-03 12:17:10',1,'2020-07-15 06:27:39'),(57,'ACTION_ACCOUNT_CONSUMER_UPDATE','更新',NULL,NULL,1,NULL,54,_binary '\0',NULL,NULL,NULL,4,'2020-06-03 12:20:11',1,NULL),(58,'ACTION_ACCOUNT_CONSUMER_CHECK','查看',NULL,NULL,1,NULL,55,_binary '\0',NULL,NULL,NULL,4,'2020-06-03 12:20:52',1,NULL),(60,'ACTION_ACCOUNT_CONSUMER_UPLOAD','批量上传',NULL,NULL,1,' ',25,_binary '\0',NULL,NULL,NULL,3,'2020-06-04 09:35:56',1,'2020-06-10 03:45:40'),(61,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','模版下载',NULL,NULL,1,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-04 09:36:42',1,NULL),(62,'MENU_AIRSPACE','空域服务',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-05 07:13:06',1,NULL),(63,'MENU_AIRSPACE_APPLY','空域申请',NULL,NULL,0,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-06-05 07:15:30',1,NULL),(64,'MENU_AIRSPACE_LIMIT','空域限制管理',NULL,NULL,0,NULL,62,_binary '',NULL,NULL,NULL,2,'2020-06-05 07:17:43',1,'2020-11-11 08:49:33'),(65,'MENU_AIRSPACE_QUERY','空域查询',NULL,NULL,0,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-06-05 07:18:22',1,NULL),(74,'ACTION_ACCOUNT_CONSUMER_INVITE','邀请注册',NULL,NULL,1,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-11 09:13:32',1,NULL),(75,'MENU_ACCOUNT_FEEDBACK_INDEX','问题反馈',NULL,NULL,0,'',24,_binary '',NULL,NULL,NULL,2,'2020-06-16 01:16:59',1,'2020-11-11 09:15:55'),(78,'MENU_ACCOUNT_ROLE_CHECK','查看详情',NULL,NULL,0,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-06-22 06:01:56',1,'2020-07-15 06:26:56'),(79,'ACTION_ACCOUNT_ROLE_CHECK','查看',NULL,NULL,1,NULL,78,_binary '\0',NULL,NULL,NULL,4,'2020-06-22 06:04:46',1,NULL),(80,'MENU_DEVICE','设备管理',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-22 07:42:18',1,'2020-06-23 02:32:31'),(81,'MENU_DEVICE_PAYLOAD','载荷管理',NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,NULL,2,'2020-06-22 07:43:43',1,'2020-06-23 02:33:19'),(87,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','批量删除',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-22 08:07:45',1,'2020-06-23 02:14:23'),(89,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','单个删除',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-22 08:17:00',1,'2020-06-23 02:15:08'),(90,'MENU_DEVICE_UAV','无人机管理',NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,NULL,2,'2020-06-22 09:07:47',1,'2020-06-23 02:33:50'),(91,'ACTION_ACCOUNT_COMPANY_DISABLE','关停公司',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-22 10:12:27',1,'2020-11-11 09:15:11'),(92,'ACTION_ACCOUNT_COMPANY_ENABLE','启用公司',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-22 10:13:17',1,'2020-11-11 09:15:14'),(93,'ACTION_ACCOUNT_CONSUMER_RESET','重置密码',NULL,NULL,1,NULL,54,_binary '\0',NULL,NULL,NULL,4,'2020-06-22 10:18:38',1,NULL),(94,'ACTION_ACCOUNT_COMPANY_RESET','重置密码',NULL,NULL,1,NULL,46,_binary '',NULL,NULL,NULL,4,'2020-06-22 10:19:39',1,'2020-11-11 09:15:17'),(95,'MENU_DEVICE_PAYLOAD_ADD','新建载荷',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 01:23:27',1,'2020-07-15 06:18:49'),(96,'MENU_DEVICE_PAYLOAD_VIEW','查看详情',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 01:24:14',1,'2020-07-15 06:35:05'),(97,'MENU_DEVICE_PAYLOAD_EDIT','编辑',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 01:24:49',1,'2020-07-15 06:19:26'),(100,'MENU_DEVICE_PAYLOAD_LIST','载荷管理列表',NULL,NULL,0,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:22:02',1,NULL),(102,'MENU_DEVICE_UVA_VIEW','查看详情',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:34:57',1,'2020-07-15 06:35:16'),(103,'MENU_DEVICE_UVA_EDIT','编辑',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:36:00',1,'2020-07-15 06:21:06'),(104,'MENU_DEVICE_UVA_ADD','新建无人机',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:36:51',1,'2020-07-15 06:20:30'),(105,'MENU_DEVICE_UVA_PAYLOAD_LIST','载荷',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:38:39',1,'2020-07-15 06:22:03'),(106,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','载荷详情',NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-23 02:39:19',1,'2020-07-15 06:23:10'),(111,'ACTION_ACCOUNT_FEEDBACK_SEARCH','查询',NULL,'问题反馈查询、重置按钮',1,NULL,75,_binary '',NULL,NULL,NULL,3,'2020-06-24 01:31:40',1,'2020-11-11 09:15:47'),(112,'ACTION_ACCOUNT_FEEDBACK_EXPORT','导出',NULL,'导出问题反馈excel',1,NULL,75,_binary '',NULL,NULL,NULL,3,'2020-06-24 01:32:51',1,'2020-11-11 09:15:51'),(114,'ACTION_DEVICE_UVA_FETCH_LIST','查询列表按钮',NULL,'查询无人机分页列表按钮',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:00:49',1,NULL),(115,'ACTION_DEVICE_UVA_RESET','重置按钮',NULL,'无人机列表重置按钮',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:01:52',1,NULL),(116,'ACTION_DEVICE_UVA_BULK_DELETE','批量删除按钮',NULL,'批量删除按钮',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:02:48',1,NULL),(119,'ACTION_DIVICE_UVA_DELETE_SINGLE','删除按钮',NULL,NULL,1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-06-24 02:07:40',1,NULL),(120,'ACTION_AIRSPACE_LIMIT_ADD','新增',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-24 05:35:54',1,'2020-11-11 08:49:33'),(121,'ACTION_AIRSPACE_LIMIT_UPDATE','编辑',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-24 05:36:53',1,'2020-11-11 08:49:33'),(122,'ACTION_AIRSPACE_LIMIT_DEL','删除',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-24 05:38:10',1,'2020-11-11 08:49:33'),(124,'MENU_AIRLINE','航线管理',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-24 06:25:19',1,NULL),(125,'MENU_AIRLINE_SYSTEM_MANAGEMENT','航线管理',NULL,'系统航线管理',0,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2020-06-24 06:30:56',1,'2021-04-20 09:53:00'),(138,'MENU_MISSION1','作业管理',NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,NULL,1,'2020-06-24 07:08:18',1,'2021-07-06 01:54:40'),(139,'MENU_MISSION_LIST1','作业管理',NULL,NULL,0,NULL,138,_binary '',NULL,NULL,NULL,2,'2020-06-24 07:09:07',1,'2021-07-06 01:54:27'),(140,'MENU_MISSION_DETAIL1','查看详情',NULL,NULL,0,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-06-24 07:10:35',1,'2021-07-06 01:54:21'),(158,'MENU_MISSION_ADD1','新建作业',NULL,NULL,0,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-06-24 07:48:22',1,'2021-07-06 01:53:56'),(170,'MENU_PILOT','飞手管理',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-29 09:49:52',1,'2022-07-08 06:50:58'),(171,'MENU_AUDIT','审核系统',NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-06-29 09:50:11',1,'2020-06-29 09:52:14'),(173,'MENU_AUDIT_MANAGER','审核系统',NULL,NULL,0,NULL,171,_binary '\0',NULL,NULL,NULL,2,'2020-06-29 09:54:11',1,NULL),(174,'MENU_AIRSPACE_ADD','新建空域申请',NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-06-29 10:28:15',1,NULL),(175,'MENU_DRONE_MANAGER','飞手管理',NULL,NULL,0,NULL,170,_binary '',NULL,NULL,NULL,2,'2020-06-30 01:19:24',1,'2022-07-08 06:51:27'),(179,'ACTION_AIRSPACE_LIMIT_QUERY','查询',NULL,NULL,1,NULL,64,_binary '',NULL,NULL,NULL,3,'2020-06-30 06:28:28',1,'2020-11-11 08:49:33'),(180,'ACTION_AIRSPACE_QUERY_QUERY','查询',NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 06:30:44',1,NULL),(184,'MENU_ACCOUNT_ROLE_ADD','新建角色',NULL,NULL,0,NULL,27,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 06:36:37',1,NULL),(189,'MENU_ACCOUNT_CONSUMER_ADD','新建用户',NULL,NULL,0,NULL,25,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 07:55:24',1,NULL),(190,'MENU_ACCOUNT_COMPANY_ADD','新建公司',NULL,NULL,0,NULL,28,_binary '',NULL,NULL,NULL,3,'2020-06-30 07:58:43',1,'2020-11-11 09:15:38'),(191,'ACTION_AIRSPACE_NOW_QUERY','查询当前空域',NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 07:59:55',132,NULL),(192,'ACTION_AIRSPACE_AIRPORT_QUERY','查询机场',NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-06-30 08:00:41',132,NULL),(197,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','查询按钮',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-07-01 01:49:08',1,NULL),(198,'ACTION_DEVICE_PAYLOAD_RESET_LIST','重置按钮',NULL,NULL,1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-07-01 01:49:39',1,NULL),(199,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','跳转无人机按',NULL,'跳转所属无人机按钮',1,NULL,81,_binary '\0',NULL,NULL,NULL,3,'2020-07-01 01:56:06',1,NULL),(205,'MENU_MISSION_EDIT1','编辑',NULL,NULL,0,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-07-01 06:26:17',131,'2021-07-06 01:52:28'),(206,'ACTION_MISSION_SEARCH1','查询作业列表',NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-07-01 08:33:37',131,'2021-07-06 01:52:20'),(213,'ACTION_DEVICE_PAYLOAD_ADD','新增载荷按钮',NULL,NULL,1,NULL,95,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:10:02',1,NULL),(214,'ACTION_DEVICE_PAYLOAD_EDIT','编辑载荷按钮',NULL,NULL,1,NULL,97,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:11:30',1,NULL),(216,'ACTION_DEVICE_PAYLOAD_VIEW','查看详情按钮',NULL,NULL,1,NULL,96,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:12:32',1,NULL),(217,'ACTION_DEVEICE_UVA_VIEW','查看详情按钮',NULL,NULL,1,NULL,102,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:14:15',1,NULL),(220,'ACTION_DEVICE_UVA_EDIT','编辑按钮',NULL,NULL,1,NULL,103,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:16:19',1,NULL),(221,'ACTION_DEVICE_UVA_ADD','新建按钮',NULL,NULL,1,NULL,104,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:17:42',1,NULL),(222,'ACTION_DEVICE_UVA_PAYLOAD_LIST','载荷按钮',NULL,NULL,1,NULL,105,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:19:34',1,NULL),(224,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','载荷详情按钮',NULL,NULL,1,NULL,106,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:41:33',1,NULL),(225,'ACTION_DEVICE_UVA_PAYLOAD_TIE','绑定载荷',NULL,NULL,1,NULL,105,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:53:32',1,NULL),(227,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','解绑载荷',NULL,NULL,1,NULL,105,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 02:54:23',1,NULL),(232,'ACTION_AIRSPACE_OVERLAP_QUERY','查询交叉空域',NULL,NULL,1,NULL,174,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 03:33:06',1,NULL),(236,'MENU_AIRSPACE_DETAIL','空域详情',NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 05:56:49',1,NULL),(238,'MENU_AIRLINE_DETAIL','查看详情',NULL,NULL,0,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:21:04',131,'2020-07-15 06:46:16'),(239,'MENU_AIRLINE_CREATE','新建航线',NULL,'创建航线',0,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:23:11',131,'2020-10-09 09:38:16'),(240,'MENU_AIRLINE_EDIT','编辑',NULL,'编辑航线',0,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:23:31',131,'2020-10-09 09:38:17'),(241,'MENU_AIRLINE_MAP_DETAIL_1','航线地图详情',NULL,NULL,0,NULL,125,_binary '',NULL,NULL,NULL,3,'2020-07-02 06:24:50',131,'2021-04-20 09:52:59'),(243,'ACTION_AIRLINE_SAVE','保存航线',NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 06:32:16',131,NULL),(246,'ACTION_AIRLINE_DETAIL','查询航线详情',NULL,NULL,1,NULL,238,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 06:36:51',131,NULL),(258,'MENU_DEVICE_LIST','查询列表',NULL,'查询无人机列表',0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-07-02 06:57:08',1,NULL),(259,'ACTION_DEVICE_CODE_TYPE_LIST','编码型号列表',NULL,'查询无人机编码和型号列表',1,NULL,258,_binary '\0',NULL,NULL,NULL,4,'2020-07-02 07:00:20',1,NULL),(260,'ACTION_MISSION_SAVE1','保存作业',NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-07-02 07:07:08',131,'2021-07-06 01:53:50'),(265,'ACTION_MISSION_DETAIL1','查看作业详情',NULL,NULL,1,NULL,140,_binary '',NULL,NULL,NULL,4,'2020-07-02 07:38:17',131,'2021-07-06 01:54:11'),(284,'ACTION_ACCOUNT_CONSUMER_ADD','新增',NULL,NULL,1,NULL,189,_binary '\0',NULL,NULL,NULL,4,'2020-07-06 01:23:40',1,NULL),(285,'ACTION_ACCOUNT_ROLE_ADD','新增',NULL,NULL,1,NULL,184,_binary '\0',NULL,NULL,NULL,4,'2020-07-06 01:25:41',1,'2020-07-06 01:26:19'),(286,'ACTION_ACCOUNT_COMPANY_ADD','新增',NULL,NULL,1,NULL,190,_binary '',NULL,NULL,NULL,4,'2020-07-06 01:27:25',1,'2020-11-11 09:15:35'),(288,'ACTION_AIRSPACE_APPLY_ADD','新增',NULL,NULL,1,NULL,174,_binary '\0',NULL,NULL,NULL,4,'2020-07-07 02:50:22',140,NULL),(289,'ACTION_AIRSPACE_DETAIL','查看详情',NULL,NULL,1,NULL,236,_binary '\0',NULL,NULL,NULL,4,'2020-07-07 02:52:10',140,NULL),(297,'MENU_ACCOUNT_FLYER_INDEX',NULL,NULL,NULL,0,NULL,24,_binary '\0',NULL,NULL,0,2,'2020-10-09 09:38:06',1,NULL),(298,'MENU_SYSTEMCONFIG',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,0,1,'2020-10-09 09:38:06',1,'2020-11-11 09:17:09'),(299,'MENU_SYSTEMCONFIG_DIC',NULL,NULL,NULL,0,NULL,298,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:06',1,'2020-11-11 09:17:01'),(300,'MENU_SYSTEMCONFIG_FORM',NULL,NULL,NULL,0,NULL,298,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:06',1,'2020-11-11 09:17:05'),(301,'ACTION_AIRSPACE_APPLY_RESET',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:07',1,NULL),(302,'ACTION_AIRSPACE_APPLY_DEL',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:07',1,NULL),(303,'ACTION_AIRSPACE_APPLY_DOWNLOAD',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:07',1,NULL),(304,'MENU_AIRSPACE_APPLY_EDIT',NULL,NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:07',1,NULL),(305,'ACTION_AIRSPACE_APPLY_EDIT',NULL,NULL,NULL,1,NULL,304,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:07',1,NULL),(306,'ACTION_AIRSAPCE_AREANAME',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:08',1,NULL),(307,'ACTION_AIRSPACE_APPLY_SEARCH',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:08',1,NULL),(308,'ACTION_AIRSPACE_QUERY_5KM',NULL,NULL,NULL,1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:09',1,NULL),(309,'ACTION_AIRSPACE_SAME_AREANAME',NULL,NULL,NULL,1,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-10-09 09:38:10',1,NULL),(310,'MENU_DEVICE_HANGAR',NULL,NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,0,2,'2020-10-09 09:38:10',1,NULL),(311,'ACTION_DEVICE_HANGAR_FETCH_LIST',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:10',1,NULL),(312,'ACTION_DEVICE_HANGAR_RESET_LIST',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:10',1,NULL),(313,'MENU_DEVICE_HANGAR_VIEW',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:11',1,NULL),(314,'ACTION_DEVICE_HANGAR_DETAIL',NULL,NULL,NULL,1,NULL,313,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:11',1,NULL),(315,'MENU_DEVICE_HANGAR_EDIT',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:11',1,NULL),(316,'ACTION_DEVICE_HANGAR_EDIT',NULL,NULL,NULL,1,NULL,315,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:11',1,NULL),(317,'ACTION_DEVICE_HANGAR_DELETE',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:11',1,NULL),(318,'MENU_DEVICE_HANGAR_UAV',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:11',1,NULL),(319,'ACTION_DEVICE_HANGAR_UAV_TIE',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:11',1,NULL),(320,'ACTION_DEVICE_HANGAR_UAV_VIEW',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(321,'ACTION_DEVICE_HANGAR_UAV_UNTIE',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(322,'ACTION_DEVICE_HANGAR_UAV_LIST',NULL,NULL,NULL,1,NULL,318,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(323,'ACTION_DEVICE_HANGAR_DELETE_BULK',NULL,NULL,NULL,1,NULL,310,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:12',1,NULL),(324,'MENU_DEVICE_HANGAR_ADD',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:12',1,NULL),(325,'ACTION_DEVICE_HANGAR_ADD',NULL,NULL,NULL,1,NULL,324,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:12',1,NULL),(326,'MENU_DEVICE_HANGAR_UAV_DETAIL',NULL,NULL,NULL,0,NULL,310,_binary '\0',NULL,NULL,0,3,'2020-10-09 09:38:12',1,NULL),(327,'ACTION_DEVICE_UAV_JUMP_HANGAR',NULL,NULL,'跳转对应机库详情',1,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:14',1,NULL),(328,'ACTION_AIRLINE_UAV_LIST',NULL,NULL,'无人机列表',1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:16',1,NULL),(329,'ACTION_AIRLINE_CHECK_AIRLINE_NAME',NULL,NULL,'校验航线名称',1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:16',1,NULL),(330,'ACTION_AIRLINE_UAV_LOAD',NULL,NULL,'无人机绑定的载荷列表查询',1,NULL,239,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:16',1,'2020-11-11 10:04:23'),(331,'MENU_AIRLINE_MAP',NULL,NULL,NULL,0,NULL,124,_binary '\0',NULL,NULL,0,2,'2020-10-09 09:38:16',1,NULL),(332,'ACTION_AIRLINE_ACTIONLIST',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(333,'ACTION_AIRLINE_SAVE_POINTS',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(334,'ACTION_AIRLINE_GET_POINTS',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(335,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL',NULL,NULL,'摄像头载荷设备型号详情',1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:16',1,NULL),(336,'ACTION_AIRLINE_UAVMODEL_DETAIL',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(337,'ACTION_AIRLINE_BLOCKED',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(338,'ACTION_AIRLINE_UPDATE',NULL,NULL,'更新航线信息',1,NULL,240,_binary '\0',NULL,NULL,NULL,4,'2020-10-09 09:38:17',1,NULL),(339,'ACTION_AIRLINE_COPY',NULL,NULL,'复制航线',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(340,'ACTION_AIRLINE_DEL',NULL,NULL,'删除航线',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(341,'ACTION_AIRLINE_FILTER',NULL,NULL,'查询条件筛选',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(342,'ACTION_AIRLINE_BULK_DEL',NULL,NULL,'批量删除航线',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:17',1,NULL),(343,'ACTION_AIRLINE_LIST',NULL,NULL,'查询航线列表',1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,NULL),(344,'ACTION_MISSON_FILTER1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:52:16'),(345,'ACTION_MISSION_BULKDEL1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:52:10'),(346,'ACTION_MISSION_CLONE1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:52:03'),(347,'ACTION_MISSION_DEL1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:51:56'),(348,'ACTION_MISSION_NAME_CONFLICT1',NULL,NULL,NULL,1,NULL,139,_binary '',NULL,NULL,NULL,3,'2020-10-09 09:38:18',1,'2021-07-06 01:51:52'),(349,'MENU_MISSION_REPLAY1',NULL,NULL,NULL,0,NULL,139,_binary '',NULL,NULL,0,3,'2020-10-09 09:38:19',1,'2021-07-06 01:51:48'),(350,'ACTION_MISSION_REPLAY_DATA1',NULL,NULL,NULL,1,NULL,349,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:51:42'),(351,'ACTION_MISSION_GET_HANGAR_INSTANCE1',NULL,NULL,'获取机库实例',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:41'),(352,'ACTION_MISSION_GET_UAV_INSTANCE1',NULL,NULL,'获取无人机实例',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:46'),(353,'ACTION_MISSION_GET_LOAD_INSTANCE1',NULL,NULL,'获取载荷实例',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:35'),(354,'ACTION_MISSION_GET_AIRLINE_LIST1',NULL,NULL,'获取航线名称全集',1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:28'),(355,'ACTION_MISSION_EXECUTOR_LIST1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:19',1,'2021-07-06 01:53:31'),(356,'ACTION_MISSION_CHECK_MISSION_NAME1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:20',1,'2021-07-06 01:53:20'),(357,'ACTION_MISSION_GET_AIRSPACE1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-10-09 09:38:20',1,'2021-07-06 01:53:16'),(358,'MENU_FLIGHTMONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,0,1,'2020-10-09 09:38:20',1,NULL),(359,'ACTION_MISSION_STATUS_EDIT',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2020-10-09 09:38:20',1,NULL),(360,'ACTION_WAYPOINT_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2020-10-09 09:38:20',1,'2021-11-05 10:30:18'),(361,'MENU_APPROVAL',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,0,1,'2020-10-09 09:38:20',1,'2020-10-28 09:58:00'),(362,'MENU_APPROVAL_LIST',NULL,NULL,NULL,0,NULL,361,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:20',1,'2020-10-28 09:57:43'),(363,'MENU_APPROVAL_DETAIL',NULL,NULL,NULL,0,NULL,362,_binary '',NULL,NULL,0,3,'2020-10-09 09:38:21',1,'2020-10-28 09:57:39'),(364,'MENU_APPROVAL_MANAGER',NULL,NULL,NULL,0,NULL,361,_binary '',NULL,NULL,0,2,'2020-10-09 09:38:21',1,'2020-10-28 09:57:55'),(365,'MENU_APPROVAL_EDITPROCESS',NULL,NULL,NULL,0,NULL,364,_binary '',NULL,NULL,0,3,'2020-10-09 09:38:21',1,'2020-10-28 09:57:51'),(366,'MENU_APPROVAL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,0,1,'2020-11-11 07:06:08',1,NULL),(367,'MENU_APPROVAL_MANAGER',NULL,NULL,NULL,0,NULL,366,_binary '\0',NULL,NULL,0,2,'2020-11-11 07:06:08',1,NULL),(368,'ACTION_APPROVAL_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,367,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(369,'ACTION_APPROVAL_MANAGE_EDITINFO',NULL,NULL,NULL,1,NULL,367,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(370,'MENU_APPROVAL_EDITPROCESS',NULL,NULL,NULL,0,NULL,367,_binary '\0',NULL,NULL,0,3,'2020-11-11 07:06:08',1,NULL),(371,'ACTION_APPROVAL_MANAGE_EDITPROCESS',NULL,NULL,NULL,1,NULL,370,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 07:06:08',1,NULL),(372,'MENU_APPROVAL_LIST_ADMIN',NULL,NULL,NULL,0,NULL,366,_binary '\0',NULL,NULL,0,2,'2020-11-11 07:06:08',1,NULL),(373,'ACTION_APPROVAL_LIST_SEARCH_ADMIN',NULL,NULL,NULL,1,NULL,372,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(374,'MENU_APPROVAL_DETAIL_ADMIN',NULL,NULL,NULL,0,NULL,372,_binary '\0',NULL,NULL,0,3,'2020-11-11 07:06:08',1,NULL),(375,'ACTION_APPROVAL_LIST_DETAIL_ADMIN',NULL,NULL,NULL,1,NULL,374,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 07:06:08',1,NULL),(376,'MENU_APPROVAL_LIST',NULL,NULL,NULL,0,NULL,366,_binary '\0',NULL,NULL,0,2,'2020-11-11 07:06:08',1,NULL),(377,'ACTION_APPROVAL_LIST_SEARCH',NULL,NULL,NULL,1,NULL,376,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 07:06:08',1,NULL),(378,'MENU_APPROVAL_DETAIL',NULL,NULL,NULL,0,NULL,376,_binary '\0',NULL,NULL,0,3,'2020-11-11 07:06:08',1,NULL),(379,'ACTION_APPROVAL_LIST_DETAIL',NULL,NULL,NULL,1,NULL,378,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 07:06:08',1,NULL),(380,'ACTION_MISSION_APPLY_APPROVAL1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2020-11-11 07:20:49',1,'2021-07-06 01:52:43'),(381,'MENU_AIRSPACE_APPROVAL',NULL,NULL,NULL,0,NULL,63,_binary '\0',NULL,NULL,0,3,'2020-11-11 08:49:33',1,NULL),(382,'ACTION_AIRSPACE_APPLY_APPROVAL',NULL,NULL,NULL,1,NULL,381,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 08:49:33',1,NULL),(383,'ACTION_AIRLINE_UAV_MODEL_LIST',NULL,NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 10:04:23',1,NULL),(384,'ACTION_AIRLINE_LOAD_AND_HANGER',NULL,NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 10:04:23',1,NULL),(385,'ACTION_AIRLINE_IMPORT_KML',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2020-11-11 10:04:24',1,NULL),(386,'ACTION_AIRLINE_EXPORT_KML',NULL,NULL,NULL,1,NULL,238,_binary '\0',NULL,NULL,NULL,4,'2020-11-11 10:04:24',1,NULL),(387,'ACTION_UPLOAD',NULL,NULL,NULL,1,NULL,62,_binary '\0',NULL,NULL,NULL,2,'2020-12-28 08:04:01',1,NULL),(388,'MENU_SIMULATION',NULL,NULL,'',0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2020-12-28 08:04:03',1,NULL),(389,'ACTION_simulation',NULL,NULL,'信号仿真模块相关接口',1,NULL,388,_binary '\0',NULL,NULL,NULL,2,'2020-12-28 08:04:03',1,NULL),(390,'MENU_WAREHOUSE_INDEX',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51694469166137344,NULL,1,'2020-12-28 09:13:13',1,'2021-03-19 07:03:42'),(391,'MENU_TASK_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694469166137344,NULL,1,'2020-12-28 09:13:13',1,'2021-03-19 07:04:28'),(392,'MENU_WAREHOUSE_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694469166137344,NULL,1,'2020-12-31 02:59:51',1,NULL),(393,'MENU_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-01-29 10:20:33',1,NULL),(394,'ACTION_screen1',NULL,NULL,NULL,1,NULL,393,_binary '',NULL,NULL,NULL,2,'2021-01-29 10:20:33',1,'2023-03-27 07:18:19'),(395,'MENU_IMAGE_TECH',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51700779089657856,NULL,1,'2021-02-01 06:36:26',1,NULL),(396,'MENU_IMAGE_VEHICLE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(397,'MENU_IMAGE_HANDLE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(398,'MENU_IMAGE_SAFETYHAT',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(399,'MENU_IMAGE_ROADSEG',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(400,'MENU_IMAGE_ENHANCE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(401,'MENU_IMAGE_DEFOGGING',NULL,NULL,NULL,0,NULL,400,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(402,'MENU_IMAGE_BODY',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2021-02-01 06:36:26',1,NULL),(403,'MENU_IMAGE_DENSITY',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2021-02-01 06:36:26',1,NULL),(404,'MENU_VIDEO_TECH',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51700779089657856,NULL,1,'2021-02-01 06:36:26',1,NULL),(405,'MENU_test123',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,85391985304666112,NULL,1,'2021-03-12 07:17:42',70213995537104896,'2021-03-12 07:34:11'),(406,'ACTION_0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012',NULL,NULL,'01234567890123456789012345678901234567890123456789',1,NULL,24,_binary '',NULL,NULL,NULL,2,'2021-03-19 06:10:38',70213995537104896,'2021-03-19 06:13:37'),(407,'MENU_cjdn',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,87911866017251328,NULL,1,'2021-03-19 06:11:27',1,'2021-03-19 06:22:32'),(408,'MENU_123',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,NULL,NULL,1,'2021-03-19 06:14:52',70213995537104896,'2021-03-19 06:15:20'),(409,'ACTION_AIRLINE_CHECK_QUOTA',NULL,NULL,NULL,1,NULL,239,_binary '\0',NULL,NULL,NULL,4,'2021-03-19 06:27:45',1,NULL),(410,'ACTION_MISSION_CHECK_QUOTA1',NULL,NULL,NULL,1,NULL,158,_binary '',NULL,NULL,NULL,4,'2021-03-19 06:27:45',1,'2021-07-06 01:52:37'),(411,'ACTION_IMAGE_VEHICLE',NULL,NULL,NULL,1,NULL,396,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:44',1,NULL),(412,'ACTION_IMAGE_HANDLE',NULL,NULL,NULL,1,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:45',1,NULL),(413,'ACTION_IMAGE_ENHANCE',NULL,NULL,NULL,1,NULL,400,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:45',1,NULL),(414,'ACTION_IMAGE_BODY',NULL,NULL,NULL,1,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2021-03-19 06:28:45',1,NULL),(415,'MENU_TASK_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:21',1,'2021-07-30 10:05:41'),(416,'MENU_TASK_MODEL',NULL,NULL,NULL,0,NULL,415,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:32'),(417,'MENU_TASK_REALTIME',NULL,NULL,NULL,0,NULL,415,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:35'),(418,'MENU_TASK_AI',NULL,NULL,NULL,0,NULL,415,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:38'),(419,'MENU_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:22',1,'2021-07-30 10:05:59'),(420,'MENU_MONITOR_INDEX',NULL,NULL,NULL,0,NULL,419,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:56'),(421,'MENU_AI_SERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:22',1,'2021-07-30 10:05:53'),(422,'MENU_AI_BILITY',NULL,NULL,NULL,0,NULL,421,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:50'),(423,'MENU_AI_MODEL',NULL,NULL,NULL,0,NULL,421,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:47'),(424,'MENU_PRODUCT_SEARCH',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51695802510213120,NULL,1,'2021-03-19 06:29:22',1,'2021-07-30 10:05:44'),(425,'MENU_PRODUCT_SEARCH_INDEX',NULL,NULL,NULL,0,NULL,424,_binary '',NULL,51695802510213120,NULL,2,'2021-03-19 06:29:22',1,'2021-07-30 10:05:28'),(429,'MENU_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694469166137344,NULL,1,'2021-03-19 06:32:34',1,NULL),(430,'MENU_WAREHOUSE_DETAIL',NULL,NULL,NULL,0,NULL,390,_binary '',NULL,51694469166137344,NULL,2,'2021-03-19 06:32:34',1,'2021-03-19 07:03:39'),(431,'MENU_WAREHOUSE_MANAGE_INDEX',NULL,NULL,NULL,0,NULL,392,_binary '\0',NULL,51694469166137344,NULL,2,'2021-03-19 06:32:34',1,NULL),(432,'MENU_WAREHOUSE_INDEX',NULL,NULL,NULL,0,NULL,429,_binary '\0',NULL,51694469166137344,NULL,2,'2021-03-19 07:03:55',87912590847508480,NULL),(433,'MENU_WAREHOUSE_DETAIL',NULL,NULL,NULL,0,NULL,432,_binary '\0',NULL,51694469166137344,NULL,3,'2021-03-19 07:04:10',87912590847508480,NULL),(434,'MENU_TASK_MONITOR_INDEX',NULL,NULL,NULL,0,NULL,391,_binary '\0',NULL,51694469166137344,NULL,2,'2021-03-19 07:04:41',87912590847508480,NULL),(435,'MENU_APP',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,92183251954696192,NULL,1,'2021-03-31 09:30:46',1,NULL),(436,'MENU_APP_RESULT',NULL,NULL,NULL,0,NULL,435,_binary '\0',NULL,92183251954696192,NULL,2,'2021-03-31 09:30:46',1,NULL),(437,'MENU_DATA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,92183251954696192,NULL,1,'2021-03-31 09:30:47',1,NULL),(438,'MENU_DATA_MANAGE',NULL,NULL,NULL,0,NULL,437,_binary '\0',NULL,92183251954696192,NULL,2,'2021-03-31 09:30:47',1,NULL),(439,'MENU_TIMING_MISSION1',NULL,NULL,'定时作业菜单',0,NULL,138,_binary '',NULL,NULL,NULL,2,'2021-03-31 09:54:08',1,'2021-07-06 01:51:29'),(440,'MENU_TIMING_MISSION_ADD1',NULL,NULL,'新增定时作业',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:09',1,'2021-07-06 01:51:21'),(441,'ACTION_ADD_TIMING_MISSION1',NULL,NULL,'创建定时作业',1,NULL,440,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:51:14'),(442,'ACTION_UPDATE_TIMING_MISSION1',NULL,NULL,'更新定时作业',1,NULL,440,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:51:07'),(443,'MENU_TIMING_MISSION_LIST1',NULL,NULL,'定时作业列表',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:09',1,'2021-07-06 01:51:00'),(444,'ACTION_TIMING_MISSION_LIST1',NULL,NULL,'定时列表',1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:56'),(445,'ACTION_TIMING_MISSION_DELETE1',NULL,NULL,NULL,1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:50'),(446,'ACTION_TIMING_MISSION_BULK_DELETE1',NULL,NULL,NULL,1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:39'),(447,'ACTION_TIMING_MISSION_ENABLE1',NULL,NULL,NULL,1,NULL,443,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:09',1,'2021-07-06 01:50:33'),(448,'MENU_TIMING_MISSION_DETAIL1',NULL,NULL,'定时作业详情',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:10',1,'2021-07-06 01:50:23'),(449,'ACTION_TIMING_MISSION_DETAIL1',NULL,NULL,NULL,1,NULL,448,_binary '',NULL,NULL,NULL,4,'2021-03-31 09:54:10',1,'2021-07-06 01:49:57'),(450,'MENU_TIMING_MISSION_EDIT1',NULL,NULL,'编辑定时作业',0,NULL,439,_binary '',NULL,NULL,NULL,3,'2021-03-31 09:54:10',1,'2021-07-06 01:49:48'),(451,'MENU_',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51701172477624320,NULL,1,'2021-04-20 09:44:32',1,NULL),(452,'MENU_SIMULATION_LIST',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51700961512521728,NULL,1,'2021-04-20 09:45:11',1,NULL),(453,'MENU_IMAGE_LICENSEPLATE',NULL,NULL,NULL,0,NULL,396,_binary '\0',NULL,51700779089657856,NULL,3,'2021-04-20 09:45:44',1,NULL),(454,'ACTION_forcedelete',NULL,NULL,'测试使用',1,NULL,63,_binary '',NULL,NULL,NULL,3,'2021-04-20 09:46:44',1,'2021-07-30 09:57:02'),(455,'ACTION_MULTIMONITOR_VIDEO',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-04-20 09:48:46',1,NULL),(456,'ACTION_LOAD_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-04-20 09:48:46',1,'2021-06-16 07:50:15'),(457,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2021-04-20 09:53:00',1,NULL),(458,'MENU_AIRLINE_MAP_DETAIL',NULL,NULL,NULL,0,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2021-04-20 09:53:00',1,NULL),(459,'ACTION_123456',NULL,NULL,'12345612345612345612345612345612345612345612345612',1,NULL,24,_binary '',NULL,NULL,NULL,2,'2021-04-21 02:48:44',70213995537104896,'2021-04-21 02:48:50'),(460,'MENU_11',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51701711122726912,NULL,1,'2021-04-21 03:19:46',1,'2021-04-21 03:20:11'),(463,'MENU_MISSION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-05-12 07:09:20',1,NULL),(464,'MENU_TIMING_MISSION',NULL,NULL,'定时作业菜单',0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:09:20',1,NULL),(465,'ACTION_MISSION_ENABLE',NULL,NULL,NULL,1,NULL,463,_binary '',NULL,NULL,NULL,2,'2021-05-12 07:09:20',1,'2021-07-06 06:47:46'),(466,'ACTION_SUBTASK_DELETE1',NULL,NULL,NULL,1,NULL,140,_binary '',NULL,NULL,NULL,4,'2021-05-12 07:09:20',1,'2021-07-06 01:54:02'),(467,'ACTION_MISSION_SEARCH',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:37:20',89730635001757696,NULL),(468,'ACTION_MISSON_FILTER',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:38:05',89730635001757696,NULL),(469,'ACTION_MISSION_BULKDEL',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:38:45',89730635001757696,NULL),(470,'ACTION_MISSION_CLONE',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:39:16',89730635001757696,NULL),(471,'MENU_TIMING_MISSION_ADD',NULL,NULL,'新增定时作业',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(472,'ACTION_ADD_TIMING_MISSION',NULL,NULL,'创建定时作业',1,NULL,471,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(473,'ACTION_UPDATE_TIMING_MISSION',NULL,NULL,'更新定时作业',1,NULL,471,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(474,'MENU_TIMING_MISSION_LIST',NULL,NULL,'定时作业列表',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(475,'ACTION_TIMING_MISSION_LIST',NULL,NULL,'定时列表',1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(476,'ACTION_TIMING_MISSION_DELETE',NULL,NULL,NULL,1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(477,'ACTION_TIMING_MISSION_BULK_DELETE',NULL,NULL,NULL,1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(478,'ACTION_MISSION_ENABLE',NULL,NULL,NULL,1,NULL,474,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,'2021-07-06 07:49:39'),(479,'MENU_TIMING_MISSION_DETAIL',NULL,NULL,'定时作业详情',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(480,'ACTION_TIMING_MISSION_DETAIL',NULL,NULL,NULL,1,NULL,479,_binary '\0',NULL,NULL,NULL,4,'2021-05-12 07:40:01',1,NULL),(481,'MENU_TIMING_MISSION_EDIT',NULL,NULL,'编辑定时作业',0,NULL,464,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(482,'MENU_MISSION_EDIT',NULL,NULL,NULL,0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(483,'ACTION_MISSION_DEL',NULL,NULL,NULL,1,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(484,'MENU_MISSION_REPLAY',NULL,NULL,NULL,0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(485,'ACTION_MISSION_REPLAY_DATA',NULL,NULL,NULL,1,NULL,484,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(486,'MENU_MISSION_DETAIL',NULL,NULL,NULL,0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,NULL),(487,'ACTION_MISSION_DETAIL',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(488,'ACTION_SUBTASK_DELETE',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(489,'MENU_MISSION_ADD',NULL,NULL,'在飞行记录分页查询列表,是为了导入飞行记录',0,NULL,463,_binary '\0',NULL,NULL,NULL,2,'2021-05-12 07:40:01',1,'2022-10-13 02:35:33'),(490,'ACTION_MISSION_CHECK_MISSION_NAME',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(491,'ACTION_MISSION_APPLY_APPROVAL',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(492,'ACTION_MISSION_CHECK_QUOTA',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(493,'ACTION_MISSION_GET_HANGAR_INSTANCE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(494,'ACTION_MISSION_GET_UAV_INSTANCE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:01',1,NULL),(495,'ACTION_MISSION_GET_LOAD_INSTANCE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(496,'ACTION_MISSION_SAVE',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(497,'ACTION_MISSION_GET_AIRLINE_LIST',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(498,'ACTION_MISSION_EXECUTOR_LIST',NULL,NULL,NULL,1,NULL,489,_binary '\0',NULL,NULL,NULL,3,'2021-05-12 07:40:02',1,NULL),(499,'MENU_AIRLINE_KML_LIST',NULL,NULL,NULL,0,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2021-05-26 03:24:13',1,NULL),(500,'MENU_AIRLINE_KML_IMPORT',NULL,NULL,NULL,0,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(501,'ACTION_AIRLINE_KML_IMPORT',NULL,NULL,NULL,1,NULL,500,_binary '\0',NULL,NULL,NULL,4,'2021-05-26 03:24:13',1,NULL),(502,'ACTION_AIRLINE_KML_LIST',NULL,NULL,NULL,1,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(503,'ACTION_AIRLINE_KML_LIST_OPTIONS',NULL,NULL,NULL,1,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(504,'ACTION_AIRLINE_KML_DELETE',NULL,NULL,'批量删除和删除',1,NULL,499,_binary '\0',NULL,NULL,NULL,3,'2021-05-26 03:24:13',1,NULL),(505,'ACTION_SIMULATION_SEARCH',NULL,NULL,NULL,1,NULL,452,_binary '',NULL,51700961512521728,NULL,2,'2021-05-26 06:34:42',89730635001757696,'2021-05-26 06:52:16'),(506,'ACTION_SIMULATION_BTN',NULL,NULL,NULL,1,NULL,452,_binary '\0',NULL,51700961512521728,NULL,2,'2021-05-26 07:02:48',89730635001757696,NULL),(507,'MENU_oo',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,92183251954696192,NULL,1,'2021-05-26 07:59:58',292,'2021-05-26 08:00:03'),(508,'ACTION_AIRLINE_GET_STRAP_LINE',NULL,NULL,NULL,1,NULL,331,_binary '\0',NULL,NULL,NULL,3,'2021-06-01 10:04:14',1,NULL),(509,'MENU_INDEX',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694291109543936,NULL,1,'2021-06-09 07:53:41',1,NULL),(510,'ACTION_AI_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-06-16 07:50:15',1,'2021-11-05 10:30:18'),(511,'MENU_TRAFFIC',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2021-06-23 09:43:08',89730635001757696,NULL),(512,'MENU_OFFICE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51694103410245632,NULL,1,'2021-06-23 09:43:28',89730635001757696,'2023-05-04 09:52:33'),(513,'MENU_EMERGENCY',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51693249240236032,NULL,1,'2021-06-23 09:43:50',89730635001757696,'2022-07-08 06:53:50'),(514,'ACTION_EFENCE_ENABLE_SWITCH',NULL,NULL,'启用、禁用电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:03',1,NULL),(515,'ACTION_CREAT_EFENCE_INFO',NULL,NULL,'创建、编辑电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(516,'ACTION_DEL_EFENCE',NULL,NULL,'删除电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(517,'ACTION_EFENCE_DETAI_INFO',NULL,NULL,'电子围栏详情',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(518,'ACTION_EFENCE_LIST',NULL,NULL,'查询电子围栏列表',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(519,'ACTION_EFENCE_PAGE_FILTER',NULL,NULL,'模糊搜索电子围栏',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(520,'ACTION_CHECK_EFENCE_NAME',NULL,NULL,'校验围栏名称重复',1,NULL,65,_binary '\0',NULL,NULL,NULL,3,'2021-07-30 09:57:04',1,NULL),(521,'ACTION_MULTIMONITOR_FINDDEVICES',NULL,NULL,'全局监视查找设备',1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-07-30 09:58:33',1,NULL),(522,'ACTION_LOAD_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-07-30 09:58:33',1,'2021-11-05 10:30:18'),(523,'ACTION_HANGAR_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-07-30 09:58:33',1,'2021-11-05 10:30:18'),(524,'MENU_PRODUCE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51695802510213120,NULL,1,'2021-07-30 10:06:53',1,NULL),(525,'MENU_PRODUCE_LIST',NULL,NULL,NULL,0,NULL,524,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:53',1,NULL),(526,'ACTION_PRODUCE_LIST_BULKDEL',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(527,'MENU_PRODUCE_DETAIL',NULL,NULL,NULL,0,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(528,'ACTION_PRODUCE_DETAIL',NULL,NULL,NULL,1,NULL,527,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:53',1,NULL),(529,'ACTION_PRODUCE_LIST_SEARCH',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(530,'ACTION_PRODUCT_LIST_START',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(531,'MENU_PRODUCE_EDIT',NULL,NULL,NULL,0,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(532,'ACTION_PRODUCE_EDIT',NULL,NULL,NULL,1,NULL,531,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:53',1,NULL),(533,'ACTION_PRODUCE_LIST_DEL',NULL,NULL,NULL,1,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(534,'MENU_PRODUCE_ADD',NULL,NULL,NULL,0,NULL,525,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:53',1,NULL),(535,'ACTION_PRODUCE_ADD',NULL,NULL,NULL,1,NULL,534,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:53',1,NULL),(536,'MENU_RESULT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51695802510213120,NULL,1,'2021-07-30 10:06:53',1,NULL),(537,'MENU_RESULT_VISUALIZATION',NULL,NULL,NULL,0,NULL,536,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:54',1,NULL),(538,'MENU_RESULT_MANAGE',NULL,NULL,NULL,0,NULL,536,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:54',1,NULL),(539,'ACTION_RESULT_LIST_DEL',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(540,'ACTION_RESULT_BULKDEL',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(541,'ACTION_RESULT_LIST_SEARCH',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(542,'ACTION_RESULT_DOWNLOAD',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(543,'ACTION_RESULT_LIST_PUBLISH',NULL,NULL,NULL,1,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(544,'MENU_RESULT_MANAGE_ADD',NULL,NULL,NULL,0,'',538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(545,'ACTION_RESULT_ADD',NULL,NULL,NULL,1,NULL,544,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:54',1,NULL),(546,'MENU_RESULT_MANAGE_EDIT',NULL,NULL,NULL,0,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(547,'ACTION_RESULT_EDIT',NULL,NULL,NULL,1,NULL,546,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:54',1,NULL),(548,'MENU_RESULT_MANAGE_DETAIL',NULL,NULL,NULL,0,NULL,538,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(549,'ACTION_RESULT_DETAIL',NULL,NULL,NULL,1,NULL,548,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:54',1,NULL),(550,'MENU_DATA_MA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51695802510213120,NULL,1,'2021-07-30 10:06:54',1,NULL),(551,'MENU_DATA_MA_LIST',NULL,NULL,NULL,0,NULL,550,_binary '\0',NULL,51695802510213120,NULL,2,'2021-07-30 10:06:54',1,NULL),(552,'ACTION_DATA_DELETE',NULL,NULL,NULL,1,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(553,'ACTION_DATA_LIST_SEARCH',NULL,NULL,NULL,1,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:54',1,NULL),(554,'MENU_DATA_MA_EDIT',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(555,'ACTION_DATA_EDIT',NULL,NULL,NULL,1,NULL,554,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:55',1,NULL),(556,'MENU_DATA_MA_DETAIL',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(557,'ACTION_DATA_DETAIL',NULL,NULL,NULL,1,NULL,556,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:55',1,NULL),(558,'MENU_DATA_MA_ADD',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(559,'ACTION_DATA_ADD',NULL,NULL,NULL,1,NULL,558,_binary '\0',NULL,51695802510213120,NULL,4,'2021-07-30 10:06:55',1,NULL),(560,'ACTION_DATA_BULKDEL',NULL,NULL,NULL,1,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2021-07-30 10:06:55',1,NULL),(561,'ACTION_BATCH_DOWNLOAD',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2021-08-12 02:19:01',1,NULL),(562,'ACTION_FLIGHT_TO_3D_ROUTE',NULL,NULL,NULL,1,NULL,124,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:29:24',1,NULL),(563,'MENU_ALARM',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:29:54',1,NULL),(564,'MENU_ALARM_STATISTIC',NULL,NULL,NULL,0,NULL,563,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:29:54',1,NULL),(565,'MENU_ALARM_STATISTIC_DETAIL',NULL,NULL,NULL,0,NULL,564,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(566,'ACTION_ALARM_STATISTIC_DETAIL',NULL,NULL,NULL,1,NULL,565,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(567,'ACTION_ALARM_STATISTIC_LIST',NULL,NULL,'',1,NULL,564,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(568,'ACTION_ALARM_QUERY_STATIC',NULL,NULL,'告警数量统计信息',1,NULL,564,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(569,'MENU_ALARM_CONFIG',NULL,NULL,NULL,0,NULL,563,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:29:54',1,NULL),(570,'MENU_ALARM_CONFIG_ADD',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(571,'ACTION_ALARM_CONFIG_ADD',NULL,NULL,NULL,1,NULL,570,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(572,'MENU_ALARM_CONFIG_EDIT',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(573,'ACTION_ALARM_CONFIG_EDIT',NULL,NULL,NULL,1,NULL,572,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(574,'MENU_ALARM_CONFIG_DETAIL',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:54',1,NULL),(575,'ACTION_ALARM_CONFIG_DETAIL',NULL,NULL,NULL,1,NULL,574,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:54',1,NULL),(576,'ACTION_ALARM_CONFIG_DELETE',NULL,NULL,NULL,1,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:55',1,NULL),(577,'ACTION_ALARM_CONFIG_ONOFF',NULL,NULL,NULL,1,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:55',1,NULL),(578,'MENU_ALARM_CONFIG_LIST',NULL,NULL,NULL,0,NULL,569,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:29:55',1,NULL),(579,'ACTION_ALARM_CONFIG_SEARCHOPTION',NULL,NULL,NULL,1,NULL,578,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:55',1,NULL),(580,'ACTION_ALARM_CONFIG_SEARCHLIST',NULL,NULL,NULL,1,NULL,578,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:29:55',1,NULL),(581,'MENU_FLIGHTMONITOR_FIRE_ALERT',NULL,NULL,'全局监视火情功能',0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:18',1,NULL),(582,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST',NULL,NULL,'火情信息列表展示',1,NULL,581,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(583,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND',NULL,NULL,'火情出警按钮权限',1,NULL,581,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(584,'MENU_UAV_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:18',1,NULL),(585,'ACTION_UAV_BPERM',NULL,NULL,'起飞、暂停、继续、返航、停止、迫降、升起、指点飞行',1,NULL,584,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,'2023-06-16 09:17:34'),(586,'ACTION_UAV_STK_BPERM',NULL,NULL,'开启摇杆、关闭摇杆、设置',1,NULL,584,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(587,'MENU_LOAD_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:18',1,NULL),(588,'MENU_CAM_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(589,'ACTION_CAM_BPERM',NULL,NULL,'拍照、自动对焦、云台控制、拍照模式、设置',1,NULL,588,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(590,'ACTION_CAM_HEAT_BPERM',NULL,NULL,NULL,1,NULL,588,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(591,'MENU_MEG_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(592,'ACTION_MEG_BPERM',NULL,NULL,'即时喊话、播放录音',1,NULL,591,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(593,'MENU_SPR_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:18',1,NULL),(594,'ACTION_SPR_BPERM',NULL,NULL,'开始喷洒、停止喷洒',1,NULL,593,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:18',1,NULL),(595,'MENU_AI_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:19',1,NULL),(596,'MENU_AI_VSTITCH_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(597,'ACTION_VIDEO_VSTITCH_BPERM',NULL,NULL,NULL,1,NULL,596,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(598,'MENU_AI_CAR_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(599,'ACTION_AI_CAR_BPERM',NULL,NULL,NULL,1,NULL,598,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(600,'ACTION_AI_CARTRACK_BPERM',NULL,NULL,NULL,1,NULL,598,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(601,'MENU_AI_MUTI_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,'2022-04-02 07:37:10'),(602,'ACTION_AI_MUTI_BPERM',NULL,NULL,NULL,1,NULL,601,_binary '',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,'2022-04-02 07:37:10'),(603,'MENU_AI_PER_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(604,'ACTION_AI_PER_BPERM',NULL,NULL,NULL,1,NULL,603,_binary '\0',NULL,NULL,NULL,4,'2021-11-05 10:30:19',1,NULL),(605,'MENU_HGR_BPERM',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:19',1,NULL),(606,'ACTION_HGR_BPERM',NULL,NULL,'机库准备、结束流程',1,NULL,605,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(607,'ACTION_HGR_EMG_BPERM',NULL,NULL,'机库急停、机库复位、Home点标记、紧急降落点标记',1,NULL,605,_binary '\0',NULL,NULL,NULL,3,'2021-11-05 10:30:19',1,NULL),(608,'ACTION_MUTI_CONTROL',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2021-11-05 10:30:19',1,NULL),(609,'MENU_FLIGHTSERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:30:44',1,NULL),(610,'MENU_INDUSTRIALAPP',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:30:47',1,NULL),(611,'MENU_VALUE_ADDED_SERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2021-11-05 10:30:49',1,NULL),(612,'MENU_FLIGHT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,171690764403736576,NULL,1,'2021-11-05 10:38:09',1,NULL),(613,'MENU_TOWER',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,171689982405115904,NULL,1,'2021-11-05 10:45:26',1,NULL),(614,'MENU_TOWER_LEDGER',NULL,NULL,NULL,0,NULL,613,_binary '\0',NULL,171689982405115904,NULL,2,'2021-11-05 10:45:26',1,NULL),(615,'ACTION_TOWER_IMPORT_FILE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(616,'ACTION_TOWER_DELETE_LINE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(617,'ACTION_TOWER_EDIT_ROUTE_NAME',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(618,'ACTION_TOWER_DOWNLOAD_TEMPLATE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(619,'ACTION_TOWER_DELETE_TOWER',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(620,'ACTION_TOWER_CHANGE_ORDER',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(621,'ACTION_TOWER_NEW',NULL,NULL,'创建杆塔',1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(622,'ACTION_TOWER_MODIFY',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(623,'ACTION_TOWER_DETAIL',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(624,'ACTION_TOWER_TOWERLIST',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(625,'ACTION_TOWER_ADD_ROUTE',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(626,'ACTION_TOWER_EXPORT_TOWER',NULL,NULL,NULL,1,NULL,614,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(627,'MENU_TOWER_PHOTO',NULL,NULL,NULL,0,NULL,613,_binary '\0',NULL,171689982405115904,NULL,2,'2021-11-05 10:45:26',1,NULL),(628,'ACTION_TOWER_INSPECTION_PHOTO_LIST',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(629,'ACTION_TOWER_DELETE_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(630,'ACTION_TOWER_MOVE_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(631,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(632,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:26',1,NULL),(633,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(634,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(635,'ACTION_TOWER_MODIFY_DEFECT_LIST',NULL,NULL,NULL,1,NULL,627,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(636,'MENU_TOWER_ROUTE',NULL,NULL,NULL,0,NULL,613,_binary '\0',NULL,171689982405115904,NULL,2,'2021-11-05 10:45:27',1,NULL),(637,'ACTION_TOWER_LINECONNECT',NULL,NULL,'关联、取消关联航线',1,NULL,636,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(638,'ACTION_TOWER_UNCONNECT',NULL,NULL,'取消关联航线',1,NULL,636,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(639,'ACTION_TOWER_CONNECTDETAIL',NULL,NULL,NULL,1,NULL,636,_binary '\0',NULL,171689982405115904,NULL,3,'2021-11-05 10:45:27',1,NULL),(640,'ACTION_ONEKEYFLY',NULL,NULL,NULL,1,NULL,358,_binary '',NULL,NULL,NULL,2,'2021-11-09 08:59:01',1,'2022-03-11 05:52:53'),(641,'MENU_LOW_DET',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,194515901263904768,NULL,1,'2022-01-18 11:17:19',1,NULL),(642,'MENU_POLICE_SYSTEM_ALARM',NULL,NULL,'出警权限',0,NULL,NULL,_binary '',NULL,51694103410245632,NULL,1,'2022-01-18 11:22:41',1,'2023-05-04 09:52:40'),(643,'MENU_POLICE_SYSTEM_VISIT',NULL,NULL,'公安警务系统访问权限',0,NULL,NULL,_binary '',NULL,51694103410245632,NULL,1,'2022-01-18 11:22:41',1,'2023-05-04 09:52:51'),(644,'MENU_LOG',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-01-18 11:23:05',1,NULL),(645,'ACTION_LOG_OPTION_TYPE',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(646,'MENU_FLIGHTLOG',NULL,NULL,NULL,0,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(647,'ACTION_LOG_FLIGHTLOGLIST',NULL,NULL,NULL,1,NULL,646,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:05',1,NULL),(648,'ACTION_LOG_LOGLIST',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(649,'ACTION_LOG_USERLIST',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(650,'ACTION_LOG_DEVICELIST',NULL,NULL,NULL,1,NULL,644,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:05',1,NULL),(651,'ACTION_AIRSPACE_GET_DICT',NULL,NULL,NULL,1,NULL,63,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:29',1,NULL),(652,'ACTION_AI_SEND_SMS',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-01-18 11:23:37',1,NULL),(653,'MENU_AI_FIRE_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:37',1,NULL),(654,'ACTION_AI_FIRE_BPERM',NULL,NULL,NULL,1,NULL,653,_binary '\0',NULL,NULL,NULL,4,'2022-01-18 11:23:37',1,NULL),(655,'ACTION_MISSION_SEND_SMS',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-01-18 11:23:44',1,NULL),(656,'MENU_DATA_MWA_IMAGE',NULL,NULL,NULL,0,NULL,551,_binary '\0',NULL,51695802510213120,NULL,3,'2022-01-18 11:24:28',1,NULL),(657,'ACTION_DATA_IMAGE',NULL,NULL,NULL,1,NULL,656,_binary '\0',NULL,51695802510213120,NULL,4,'2022-01-18 11:24:28',1,NULL),(658,'MENU_DATA_MWA_EDIT_IMAGE',NULL,NULL,NULL,0,NULL,554,_binary '\0',NULL,51695802510213120,NULL,4,'2022-01-18 11:24:28',1,NULL),(659,'MENU_DATA_MWA_ADD_IMAGE',NULL,NULL,NULL,0,NULL,558,_binary '\0',NULL,51695802510213120,NULL,4,'2022-01-18 11:24:28',1,NULL),(660,'MENU_aasdsds',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51691621233721344,NULL,1,'2022-03-01 05:46:34',188243415207510016,'2022-03-01 05:46:39'),(661,'MENU_iiiiiiii',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,51691621233721344,NULL,1,'2022-03-02 03:33:53',188243415207510016,'2022-03-02 03:33:57'),(662,'MENU_MONITOR_MEDICAL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,216936325675220992,NULL,1,'2022-03-10 07:39:37',1,NULL),(663,'MENU_GENERAL_SERVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,216936325675220992,NULL,1,'2022-03-10 07:39:37',1,NULL),(664,'MENU_DEVICE_SIMULATED_UAV',NULL,NULL,NULL,0,NULL,90,_binary '\0',NULL,NULL,NULL,3,'2022-03-14 01:55:55',1,NULL),(665,'MENU_ENVIRONMENT',NULL,NULL,'智慧环保大屏',0,NULL,NULL,_binary '',NULL,NULL,NULL,1,'2022-03-15 08:00:44',1,'2022-03-30 09:08:26'),(666,'ACTION_ENVIRONMENT_API',NULL,NULL,'环保大屏接口',1,NULL,665,_binary '',NULL,NULL,NULL,2,'2022-03-15 08:00:44',1,'2022-03-30 09:08:16'),(667,'MENU_GREEN_SCREEN',NULL,NULL,'智慧环保行业应用接口',0,NULL,NULL,_binary '\0',NULL,218767711973408768,NULL,1,'2022-03-15 08:28:20',1,'2022-04-27 06:12:17'),(668,'MENU_VISITOR',NULL,NULL,'基础版权限',0,NULL,NULL,_binary '\0',NULL,217309254481084416,NULL,1,'2022-03-30 02:02:43',1,NULL),(669,'MENU_SUPERVISION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,224170096870817792,NULL,1,'2022-03-30 06:13:53',1,'2022-09-20 08:37:25'),(670,'ACTION_ONEKEYFLY',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-03-31 07:04:49',1,NULL),(671,'MENU_INSPECTION_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,224558648645386240,NULL,1,'2022-03-31 07:56:28',1,'2022-04-27 06:11:06'),(672,'MENU_AI_SMOG_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-04-02 07:37:11',1,NULL),(673,'ACTION_AI_SMOG_BPERM',NULL,NULL,NULL,1,NULL,672,_binary '\0',NULL,NULL,NULL,4,'2022-04-02 07:37:11',1,NULL),(674,'MENU_COMPANY',NULL,NULL,NULL,0,NULL,24,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:29:09',1,NULL),(675,'MENU_COMPANY_EDIT',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(676,'ACTION_COMPANY_ENABLE',NULL,NULL,NULL,1,NULL,675,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:09',1,NULL),(677,'ACTION_COMPANY_DISABLE',NULL,NULL,NULL,1,NULL,675,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:09',1,NULL),(678,'ACTION_COMPANY_RESET',NULL,NULL,NULL,1,NULL,675,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:09',1,NULL),(679,'MENU_COMPANY_ADD',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(680,'MENU_COMPANY_CHECK',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(681,'ACTION_COMPANY_SEARCH',NULL,NULL,NULL,1,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:09',1,NULL),(682,'MENU_DEVICE_WAREHOUSE',NULL,NULL,NULL,0,NULL,80,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:29:17',1,NULL),(683,'MENU_AI_MUTI_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-04-27 03:29:23',1,NULL),(684,'ACTION_AI_MUTI_BPERM',NULL,NULL,NULL,1,NULL,683,_binary '\0',NULL,NULL,NULL,4,'2022-04-27 03:29:24',1,NULL),(685,'MENU_FLIGHT_MONITOR_TETHERED',NULL,NULL,'勾选可查看单机监视中基站相关信息,包括左侧基站&卫星信息卡片、地图右下角文字、无人机信号范围',0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:43:03',1,NULL),(686,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG',NULL,NULL,'发送视频流分享链接短信',1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-04-27 03:43:03',1,NULL),(687,'MENU_tlcp_index',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,239746594734342144,NULL,1,'2022-05-12 05:48:05',188243415207510016,NULL),(688,'ACTION_OPTIMIZATION_VERSION',NULL,NULL,'数据大屏平台使用情况统计(2022.5)',1,NULL,393,_binary '\0',NULL,NULL,NULL,2,'2022-05-13 02:13:57',1,NULL),(689,'MENU_POI_BAK',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-05-25 09:56:08',1,'2023-06-14 10:07:58'),(690,'MENU_POI_CHANGE_TYPE',NULL,NULL,NULL,0,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(691,'ACTION_POI_DELETE_POINT',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(692,'ACTION_POI_ADD_EDIT_POI',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(693,'ACTION_POI_DELETE_TYPE',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(694,'ACTION_POI_IMPORT_POINTS',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(695,'ACTION_POI_DOWNLOAD_TEMPLATE',NULL,NULL,NULL,1,NULL,689,_binary '\0',NULL,NULL,NULL,2,'2022-05-25 09:56:08',1,NULL),(696,'MENU_PARK_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,244750226999476224,NULL,1,'2022-05-26 01:10:40',1,NULL),(697,'MENU_PLAYBACK',NULL,NULL,'数据回放菜单',0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-05-26 01:15:48',1,NULL),(698,'MENU_TDOA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,245144849337024512,NULL,1,'2022-05-27 03:51:17',188243415207510016,NULL),(699,'ACTION_AI_CARNUMBER_BPERM',NULL,NULL,NULL,1,NULL,598,_binary '\0',NULL,NULL,NULL,4,'2022-06-08 05:48:52',1,NULL),(700,'ACTION_3D_HISTORY_TRACK',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-06-09 01:21:55',1,NULL),(701,'MENU_risk_index',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,249904145316708352,NULL,1,'2022-06-09 06:30:32',188243415207510016,NULL),(702,'MENU_IMAGE_BRIDGE',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2022-06-22 07:20:50',1,NULL),(703,'MENU_IMAGE_BRIDGE_SLOPE',NULL,NULL,NULL,0,NULL,702,_binary '\0',NULL,51700779089657856,NULL,3,'2022-06-22 07:20:51',1,NULL),(704,'MENU_IMAGE_BRIDGE_UNDER',NULL,NULL,NULL,0,NULL,702,_binary '\0',NULL,51700779089657856,NULL,3,'2022-06-22 07:20:51',1,NULL),(705,'MENU_IMAGE_BRIDGE_JOINT',NULL,NULL,NULL,0,NULL,702,_binary '\0',NULL,51700779089657856,NULL,3,'2022-06-22 07:20:51',1,NULL),(706,'MENU_AIRSPACE_PLAN',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-06-22 07:54:11',1,NULL),(707,'MENU_AIRSPACE_PLAN_APPROVAL',NULL,NULL,'计划审批的查看权限',0,NULL,706,_binary '\0',NULL,224170096870817792,NULL,3,'2022-06-22 07:54:11',1,NULL),(708,'ACTION_AIRSPACE_APPROVAL_EDIT',NULL,NULL,NULL,1,NULL,707,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:11',1,NULL),(709,'MENU_SUPERVISION_AIRSPACE_QUERY',NULL,NULL,NULL,0,NULL,706,_binary '\0',NULL,224170096870817792,NULL,3,'2022-06-22 07:54:11',1,NULL),(710,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT',NULL,NULL,NULL,1,NULL,709,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:11',1,NULL),(711,'ACTION_SUPERVISION_AIRSPACE_DELETE',NULL,NULL,NULL,1,NULL,709,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:11',1,NULL),(712,'MENU_SUPERVISION_REGION',NULL,NULL,NULL,0,NULL,706,_binary '\0',NULL,224170096870817792,NULL,3,'2022-06-22 07:54:11',1,NULL),(713,'ACTION_SUPERVISION_REGION_ADD_EDIT',NULL,NULL,NULL,1,NULL,712,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:12',1,NULL),(714,'ACTION_SUPERVISION_REGION_DELETE',NULL,NULL,NULL,1,NULL,712,_binary '\0',NULL,224170096870817792,NULL,4,'2022-06-22 07:54:12',1,NULL),(715,'MENU_INDEX_5G',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,254659367012401152,NULL,1,'2022-06-22 09:32:12',188243415207510016,NULL),(716,'MENU_tudou_sensing',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,256733978294222848,NULL,1,'2022-06-30 06:18:43',188243415207510016,'2022-09-22 01:31:25'),(717,'MENU_COMMUNICATION_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2022-06-30 09:22:07',1,NULL),(718,'MENU_PILOT_MESSAGE_SEARCH',NULL,NULL,NULL,0,NULL,170,_binary '\0',NULL,NULL,NULL,2,'2022-07-08 06:51:11',1,NULL),(719,'ACTION_PILOT_MESSAGE_LIST',NULL,NULL,NULL,1,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(720,'ACTION_PILOT_MESSAGE_AUDIT',NULL,NULL,NULL,1,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(721,'MENU__PILOT_ADD',NULL,NULL,NULL,0,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(722,'MENU_PILOT_EDIT',NULL,NULL,NULL,0,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(723,'MENU_PILOT_DETAIL',NULL,NULL,NULL,0,NULL,718,_binary '\0',NULL,NULL,NULL,3,'2022-07-08 06:51:11',1,NULL),(726,'MENU_EMERGENCY_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693249240236032,NULL,1,'2022-07-08 06:53:54',1,NULL),(727,'MENU_fire_emergency',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,262610103520198656,NULL,1,'2022-07-14 08:02:49',188243415207510016,NULL),(728,'MENU_INFRASTRUCTURE_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,266603863711154176,NULL,1,'2022-07-25 08:29:07',1,NULL),(729,'MENU_INFRASTRUCTURE_BOOK',NULL,NULL,NULL,0,'',728,_binary '',NULL,266603863711154176,NULL,2,'2022-07-25 08:29:07',1,'2022-07-27 09:25:31'),(730,'MENU_INFRASTRUCTURE_BOOK',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,266603863711154176,NULL,1,'2022-07-27 09:25:35',1,NULL),(731,'MENU_SCENE_SIMULATION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-08-04 10:54:23',1,NULL),(732,'MENU_nematode',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,273132440472518656,NULL,1,'2022-08-12 08:53:23',188243415207510016,NULL),(733,'MENU_hub',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,275322748887105536,NULL,1,'2022-08-19 01:30:53',188243415207510016,NULL),(734,'MENU_latn',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,275323102710202368,NULL,1,'2022-08-19 01:31:39',188243415207510016,NULL),(735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:03',1,NULL),(736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST',NULL,NULL,NULL,0,NULL,735,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:03',1,NULL),(737,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH',NULL,NULL,NULL,1,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:03',1,NULL),(738,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD',NULL,NULL,NULL,0,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:03',1,NULL),(739,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE',NULL,NULL,NULL,1,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(740,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL',NULL,NULL,NULL,0,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(741,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT',NULL,NULL,NULL,0,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(742,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE',NULL,NULL,NULL,1,NULL,736,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(743,'MENU_VIDEO_PROCESS_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(744,'MENU_VIDEO_PROCESS_MANAGE_LIST',NULL,NULL,NULL,0,NULL,743,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:04',1,NULL),(745,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(746,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(747,'ACTION_VIDEO_PROCESS_MANAGE_DELETE',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(748,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION',NULL,NULL,NULL,1,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(749,'MENU_VIDEO_PROCESS_MANAGE_ADD',NULL,NULL,NULL,0,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(750,'MENU_VIDEO_PROCESS_MANAGE_DETAIL',NULL,NULL,NULL,0,NULL,744,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(751,'MENU_VIDEO_OPEN_INTERFACE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(752,'MENU_VIDEO_DEVICE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(753,'MENU_VIDEO_DEVICE_MANAGE',NULL,NULL,NULL,0,NULL,752,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:04',1,NULL),(754,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(755,'MENU_VIDEO_DEVICE_DETAIL',NULL,NULL,NULL,0,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(756,'ACTION_VIDEO_MANAGE_PLAYBACK',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(757,'ACTION_VIDEO_MANAGE_DELETE',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(758,'MENU_VIDEO_DEVICE_EDIT',NULL,NULL,NULL,0,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(759,'ACTION_VIDEO_MANAGE_BATCH_DELETE',NULL,NULL,NULL,1,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(760,'MENU_VIDEO_DEVICE_ADD',NULL,NULL,NULL,0,NULL,753,_binary '\0',NULL,279567198865850368,NULL,3,'2022-08-30 03:01:04',1,NULL),(761,'MENU_VIDEO_PLAYBACK',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-08-30 03:01:04',1,NULL),(762,'MENU_VIDEO_PLAYBACK_INDEX',NULL,NULL,NULL,0,NULL,761,_binary '\0',NULL,279567198865850368,NULL,2,'2022-08-30 03:01:04',1,NULL),(763,'MENU_FLIGHT_RECORDS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-09-20 08:30:36',1,NULL),(764,'MENU_FLIGHT_RECORDS_DETAIL',NULL,NULL,NULL,0,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(765,'ACTION_FLIGHT_RECORDS_DETAIL',NULL,NULL,NULL,1,NULL,764,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:30:36',1,NULL),(766,'ACTION_FLIGHT_RECORDS_EXPORT',NULL,NULL,NULL,1,NULL,764,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:30:36',1,NULL),(767,'ACTION_FLIGHT_RECORDS_SEARCH',NULL,NULL,NULL,1,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(768,'ACTION_FLIGHT_RECORDS_DELETE',NULL,NULL,NULL,1,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(769,'ACTION_FLIGHT_RECORDS_BATCH_DELETE',NULL,NULL,NULL,1,NULL,763,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:30:36',1,NULL),(770,'ACTION_MISSION_FILE_UPLOAD',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:30:52',1,NULL),(771,'MENU_MISSION_DISPATCH',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2022-09-20 08:32:50',1,NULL),(772,'MENU_MISSION_DISPATCH_MY_AGENT',NULL,NULL,NULL,0,NULL,771,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:32:50',1,NULL),(773,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL',NULL,NULL,NULL,0,NULL,772,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(774,'MENU_MISSION_DISPATCH_MY_AGENT_LIST',NULL,NULL,NULL,0,NULL,772,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(775,'MENU_MISSION_DISPATCH_SETTING',NULL,NULL,NULL,0,NULL,771,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:32:50',1,NULL),(776,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL',NULL,NULL,NULL,0,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(777,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT',NULL,NULL,NULL,1,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(778,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT',NULL,NULL,NULL,1,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(779,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL',NULL,NULL,NULL,0,NULL,775,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(780,'MENU_MISSION_DISPATCH_MY_TASK',NULL,NULL,NULL,0,NULL,771,_binary '\0',NULL,NULL,NULL,2,'2022-09-20 08:32:50',1,NULL),(781,'MENU_MISSION_DISPATCH_MY_TASK_ADD',NULL,NULL,NULL,0,NULL,780,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(782,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL',NULL,NULL,NULL,0,NULL,780,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:50',1,NULL),(783,'MENU_MISSION_DISPATCH_MY_TASK_LIST',NULL,NULL,NULL,0,NULL,780,_binary '\0',NULL,NULL,NULL,3,'2022-09-20 08:32:51',1,NULL),(785,'MENU_COMMUNICATION_NAME_LIST',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2022-09-20 08:33:32',1,NULL),(788,'MENU_SUPERVISION_FLIGHT',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:43',1,NULL),(789,'MENU_SUPERVISION_FLIGHT_MONITOR',NULL,NULL,NULL,0,NULL,788,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:43',1,NULL),(790,'MENU_SUPERVISION_FLIGHT_CONFLICT',NULL,NULL,NULL,0,NULL,788,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(791,'MENU_SUPERVISION_FLIGHT_ANALYSIS',NULL,NULL,NULL,0,NULL,788,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(792,'MENU_SUPERVISION_SCREEN',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:44',1,NULL),(793,'MENU_SUPERVISION_COUNTER',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:44',1,NULL),(794,'ACTION_AIRSPACE_APPROVAL_VIEW',NULL,NULL,NULL,1,NULL,707,_binary '\0',NULL,224170096870817792,NULL,4,'2022-09-20 08:37:44',1,NULL),(795,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW',NULL,NULL,NULL,0,NULL,709,_binary '\0',NULL,224170096870817792,NULL,4,'2022-09-20 08:37:44',1,NULL),(796,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW',NULL,NULL,NULL,0,NULL,712,_binary '\0',NULL,224170096870817792,NULL,4,'2022-09-20 08:37:44',1,NULL),(797,'MENU_SUPERVISION_CUSTOMER',NULL,NULL,NULL,0,NULL,669,_binary '\0',NULL,224170096870817792,NULL,2,'2022-09-20 08:37:44',1,NULL),(798,'ACTION_SUPERVISION_CUSTOMER_VIEW',NULL,NULL,NULL,1,NULL,797,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(799,'ACTION_SUPERVISION_CUSTOMER_EDIT',NULL,NULL,NULL,1,NULL,797,_binary '\0',NULL,224170096870817792,NULL,3,'2022-09-20 08:37:44',1,NULL),(800,'MENU_AI_TRANSMISSION_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2022-09-21 03:08:03',1,NULL),(801,'ACTION_AI_TRANSMISSION_BPERM',NULL,NULL,NULL,1,NULL,800,_binary '\0',NULL,NULL,NULL,4,'2022-09-21 03:08:03',1,NULL),(802,'MENU_tudou_3d',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,287875985993367552,NULL,1,'2022-09-22 01:32:09',188243415207510016,NULL),(803,'MENU_SUB_MISSION_DETAIL',NULL,NULL,NULL,0,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-10-13 02:35:32',1,NULL),(804,'ACTION_MISSION_FILE_DELETE',NULL,NULL,NULL,1,NULL,486,_binary '\0',NULL,NULL,NULL,3,'2022-10-13 02:35:32',1,NULL),(805,'MENU_IMAGE_POSTURE',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2022-10-25 09:51:32',1,NULL),(806,'MENU_IMAGE_COMMON',NULL,NULL,NULL,0,NULL,397,_binary '\0',NULL,51700779089657856,NULL,3,'2022-10-25 09:51:32',1,NULL),(807,'MENU_IMAGE_DEBRIS_FLOW',NULL,NULL,NULL,0,NULL,395,_binary '\0',NULL,51700779089657856,NULL,2,'2022-10-25 09:51:33',1,NULL),(808,'MENU_IMAGE_DEBRIS_FLOW_DETAIL',NULL,NULL,NULL,0,NULL,807,_binary '\0',NULL,51700779089657856,NULL,3,'2022-10-25 09:51:33',1,NULL),(809,'MENU_VIDEO_SYSTEM_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-10-27 08:10:11',1,NULL),(810,'MENU_VIDEO_SYSTEM_MANAGE_LIST',NULL,NULL,NULL,0,NULL,809,_binary '\0',NULL,279567198865850368,NULL,2,'2022-10-27 08:10:11',1,NULL),(811,'ACTION_VIDEO_COMPOSE_SEARCH',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:11',1,NULL),(812,'ACTION_VIDEO_COMPOSE_MERGE',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:11',1,NULL),(813,'ACTION_VIDEO_COMPOSE_DEL',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(814,'ACTION_VIDEO_SLICE_SEARCH',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(815,'ACTION_VIDEO_SLICE_DEL',NULL,NULL,NULL,1,NULL,810,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(816,'MENU_VIDEO_LIVE_MANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,279567198865850368,NULL,1,'2022-10-27 08:10:12',1,NULL),(817,'MENU_VIDEO_LIVE_MANAGE_LIST',NULL,NULL,NULL,0,NULL,816,_binary '\0',NULL,279567198865850368,NULL,2,'2022-10-27 08:10:12',1,NULL),(818,'ACTION_VIDEO_LIVE_MANAGE_SEARCH',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(819,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(820,'ACTION_VIDEO_LIVE_MANAGE_DELETE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(821,'MENU_VIDEO_LIVE_MANAGE_ADD',NULL,NULL,NULL,0,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(822,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(823,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(824,'ACTION_VIDEO_LIVE_MANAGE_SHARE',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(825,'ACTION_VIDEO_LIVE_MANAGE_END',NULL,NULL,NULL,1,NULL,817,_binary '\0',NULL,279567198865850368,NULL,3,'2022-10-27 08:10:12',1,NULL),(826,'ACTION_CONTROL_MANAGE',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2022-11-09 09:00:33',1,NULL),(827,'MENU_EMERGENCY_RESOURCE_SHOW',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693249240236032,NULL,1,'2022-12-02 03:02:25',188243415207510016,NULL),(828,'MENU_COMPANY_MAP',NULL,NULL,NULL,0,NULL,674,_binary '\0',NULL,NULL,NULL,3,'2023-01-17 08:08:25',1,NULL),(829,'MENU_IMAGE_VEHICLE_INDENTIFY',NULL,NULL,NULL,0,NULL,396,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(830,'MENU_IMAGE_BODY_DETECTION',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(831,'MENU_IMAGE_CROWD_COUNT',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(832,'MENU_IMAGE_PEDESTRIAN',NULL,NULL,NULL,0,NULL,402,_binary '\0',NULL,51700779089657856,NULL,3,'2023-02-07 06:51:00',1,NULL),(833,'MENU_ACHIEVEMENT_BAK',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-02-08 09:29:36',1,'2023-06-15 06:54:21'),(834,'MENU_ACHIEVEMENT_2D',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:36',1,NULL),(835,'MENU_ACHIEVEMENT_2D_LIST',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(836,'ACTION_ACHIEVEMENT_2D_DELETE',NULL,NULL,NULL,1,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(837,'MENU_ACHIEVEMENT_2D_EDIT',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(838,'MENU_ACHIEVEMENT_2D_DETAIL',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(839,'MENU_ACHIEVEMENT_2D_CONTRAST',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(840,'MENU_ACHIEVEMENT_2D_ADD',NULL,NULL,NULL,0,NULL,834,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(841,'MENU_ACHIEVEMENT_3D',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:36',1,NULL),(842,'MENU_ACHIEVEMENT_3D_LIST',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(843,'ACTION_ACHIEVEMENT_3D_DELETE',NULL,NULL,NULL,1,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(844,'MENU_ACHIEVEMENT_3D_EDIT',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(845,'MENU_ACHIEVEMENT_3D_DETAIL',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:36',1,NULL),(846,'MENU_ACHIEVEMENT_3D_CONTRAST',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:37',1,NULL),(847,'MENU_ACHIEVEMENT_3D_ADD',NULL,NULL,NULL,0,NULL,841,_binary '\0',NULL,NULL,NULL,3,'2023-02-08 09:29:37',1,NULL),(848,'MENU_ACHIEVEMENT_RETURN_IMG',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:37',1,NULL),(849,'MENU_ACHIEVEMENT_PANORAMIC_IMG',NULL,NULL,NULL,0,NULL,833,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:29:37',1,NULL),(851,'MENU_COMMOM_SCREEN',NULL,NULL,NULL,0,NULL,393,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:38:05',1,NULL),(852,'MENU_ZIGONG_SCREEN_BAK',NULL,NULL,NULL,0,NULL,393,_binary '\0',NULL,NULL,NULL,2,'2023-02-08 09:38:06',1,'2023-06-27 08:33:59'),(853,'MENU_AI_EXCAVATOR_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-02-09 01:20:47',188243415207510016,NULL),(854,'MENU_AI_SAFEHAT_BPERM',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-02-09 01:21:57',188243415207510016,NULL),(855,'ACTION_DEVICE_WAREHOUSE_EDIT',NULL,NULL,NULL,1,NULL,682,_binary '\0',NULL,NULL,NULL,3,'2023-02-14 05:59:41',1,NULL),(856,'ACTION_DEVICE_WAREHOUSE_CHECK',NULL,NULL,NULL,1,NULL,682,_binary '\0',NULL,NULL,NULL,3,'2023-02-14 05:59:41',1,NULL),(857,'MENU_DATA_STATISTIC',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,218767711973408768,NULL,1,'2023-03-29 09:38:33',1,NULL),(858,'MENU_FLIGHT_PLAN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-04-12 08:00:30',1,NULL),(859,'MENU_FLIGHT_PLAN_CREATE',NULL,NULL,NULL,0,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(860,'ACTION_FLIGHT_PLAN_SAVE',NULL,NULL,NULL,1,NULL,859,_binary '\0',NULL,NULL,NULL,3,'2023-04-12 08:00:31',1,NULL),(861,'MENU_FLIGHT_PLAN_EDIT',NULL,NULL,NULL,0,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(862,'ACTION_FLIGHT_PLAN_EDIT',NULL,NULL,NULL,1,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(863,'ACTION_FLIGHT_PLAN_SEARCH',NULL,NULL,NULL,1,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(864,'ACTION_FLIGHT_PLAN_DEL',NULL,NULL,NULL,1,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-04-12 08:00:31',1,NULL),(865,'MENU_runtoint_index',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,365173608686157824,NULL,1,'2023-04-23 08:47:55',188243415207510016,NULL),(866,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING',NULL,NULL,NULL,0,NULL,789,_binary '\0',NULL,224170096870817792,NULL,4,'2023-05-04 09:43:01',1,NULL),(867,'MENU_SECURITY_H5',NULL,NULL,'侦查员h5相关权限',0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:49',1,NULL),(868,'MENU_POLICE_MULTIPLE_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:49',1,NULL),(869,'MENU_POLICE_GLOBAL_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:50',1,NULL),(870,'MENU_POLICE_SINGLE_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:50',1,NULL),(871,'MENU_SECURITY_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2023-05-04 09:43:50',1,NULL),(872,'MENU_FLIGHT_PLAN_DETAIL',NULL,NULL,NULL,0,NULL,858,_binary '\0',NULL,NULL,NULL,2,'2023-05-05 09:28:07',1,NULL),(873,'MENU_TRAFFIC_WAREHOUSE_DETAIL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(874,'MENU_TRAFFIC_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(875,'MENU_TRAFFIC_GUIDE_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(876,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(877,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(878,'MENU_TRAFFIC_GUIDE_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2023-05-18 10:07:48',1,NULL),(879,'MENU_PILOT_SCOUTING',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,374257704400846848,NULL,1,'2023-05-18 10:08:00',1,NULL),(880,'MENU_flyer_basic',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,374257704400846848,NULL,1,'2023-05-18 10:08:00',1,NULL),(881,'MENU_COMMUNICATION_EMERGENCYMAP',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2023-05-18 10:49:02',1,NULL),(882,'MENU_COMMUNICATION_DATAMANAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2023-05-18 10:49:02',1,NULL),(883,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(884,'ACTION_COMMUNICATION_ADD',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(885,'ACTION_COMMUNICATION_EDIT',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(886,'ACTION_COMMUNICATION_DELETE',NULL,NULL,NULL,1,NULL,882,_binary '\0',NULL,257530550208692224,NULL,2,'2023-05-18 10:49:03',1,NULL),(887,'MENU_FIRE_RESCUE_SCREEN',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,375599197049585664,NULL,1,'2023-05-22 02:57:12',1,NULL),(888,'MENU_FIRE_RESCUE_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,375599197049585664,NULL,1,'2023-05-22 02:57:12',1,NULL),(889,'MENU_FIRE_RESCUE_MULTI_MONITOR',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,375599197049585664,NULL,1,'2023-05-22 02:57:12',1,NULL),(890,'MENU_GEO',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-06-14 10:06:01',1,NULL),(891,'MENU_GEO_POI',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:01',1,NULL),(892,'MENU_GEO_POI_TYPE',NULL,NULL,NULL,0,NULL,891,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:01',1,NULL),(893,'ACTION_GEO_POI_TYPE_EDIT',NULL,NULL,NULL,1,NULL,892,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:01',1,NULL),(894,'ACTION_GEO_POI_TYPE_ADD',NULL,NULL,NULL,1,NULL,892,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:01',1,NULL),(895,'ACTION_GEO_POI_TYPE_DELETE',NULL,NULL,NULL,1,NULL,892,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(896,'MENU_GEO_POI_POINT',NULL,NULL,NULL,0,NULL,891,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:02',1,NULL),(897,'ACTION_GEO_POI_POINT_ADD',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(898,'ACTION_GEO_POI_POINT_EDIT',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(899,'ACTION_GEO_POI_POINT_DELETE',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(900,'ACTION_GEO_POI_POINT_PUBLISH',NULL,NULL,NULL,1,NULL,896,_binary '\0',NULL,NULL,NULL,4,'2023-06-14 10:06:02',1,NULL),(901,'MENU_GEO_MODEL_2D',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:02',1,NULL),(902,'MENU_GEO_MODEL_2D_ADD',NULL,NULL,NULL,0,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(903,'MENU_GEO_MODEL_2D_EDIT',NULL,NULL,NULL,0,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(904,'ACTION_GEO_MODEL_2D_PUBLISH',NULL,NULL,NULL,1,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(905,'ACTION_GEO_MODEL_2D_DELETE',NULL,NULL,NULL,1,NULL,901,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(906,'MENU_GEO_MODEL_3D',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:03',1,NULL),(907,'MENU_GEO_MODEL_3D_EDIT',NULL,NULL,NULL,0,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:03',1,NULL),(908,'MENU_GEO_MODEL_3D_ADD',NULL,NULL,NULL,0,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:04',1,NULL),(909,'ACTION_GEO_MODEL_3D_PUBLISH',NULL,NULL,NULL,1,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:04',1,NULL),(910,'ACTION_GEO_MODEL_3D_DELETE',NULL,NULL,NULL,1,NULL,906,_binary '\0',NULL,NULL,NULL,3,'2023-06-14 10:06:04',1,NULL),(911,'MENU_GEO_RETURN_IMG',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:04',1,NULL),(912,'MENU_GEO_PANORAMIC_IMG',NULL,NULL,NULL,0,NULL,890,_binary '\0',NULL,NULL,NULL,2,'2023-06-14 10:06:04',1,NULL),(913,'MENU_COMMON_TOOL',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-06-16 09:16:28',1,NULL),(914,'MENU_GEO_LAYER',NULL,NULL,NULL,0,NULL,913,_binary '\0',NULL,NULL,NULL,2,'2023-06-16 09:16:28',1,NULL),(915,'ACTION_GEO_LAYER_2D',NULL,NULL,NULL,1,NULL,914,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(916,'ACTION_GEO_LAYER_3D',NULL,NULL,NULL,1,NULL,914,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(917,'ACTION_GEO_LAYER_POI',NULL,NULL,NULL,1,NULL,914,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(918,'MENU_AIRSPACE_TOOLS',NULL,NULL,NULL,0,NULL,913,_binary '\0',NULL,NULL,NULL,2,'2023-06-16 09:16:28',1,NULL),(919,'MENU_COMPARE',NULL,NULL,NULL,0,NULL,913,_binary '\0',NULL,NULL,NULL,2,'2023-06-16 09:16:28',1,NULL),(920,'ACTION_COMPARE_ROLL',NULL,NULL,NULL,1,NULL,919,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(921,'ACTION_COMPARE_SPLIT',NULL,NULL,NULL,1,NULL,919,_binary '\0',NULL,NULL,NULL,3,'2023-06-16 09:16:28',1,NULL),(922,'MENU_ARMY_PEOPLE',NULL,NULL,NULL,0,NULL,NULL,_binary '',NULL,389735663221211136,NULL,1,'2023-06-30 06:14:08',1,'2024-07-18 09:43:12'),(923,'MENU_ARMY_PEOPLE_SCREEN',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:42:11'),(924,'MENU_ARMY_PEOPLE_SCREEN_DETECTION',NULL,NULL,NULL,0,NULL,923,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:59'),(925,'MENU_ARMY_PEOPLE_SCREEN_REPLAY',NULL,NULL,NULL,0,NULL,923,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:42:04'),(926,'MENU_ARMY_PEOPLE_CUSTOMER',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:41:48'),(927,'ACTION_ARMY_PEOPLE_CUSTOMER_VIEW',NULL,NULL,NULL,1,NULL,926,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:43'),(928,'ACTION_ARMY_PEOPLE_CUSTOMER_EDIT',NULL,NULL,NULL,1,NULL,926,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:38'),(929,'MENU_ARMY_PEOPLE_FLIGHT_SERVICES',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:41:30'),(930,'MENU_ARMY_PEOPLE_AIRSPACE_MANAGEMENT',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2023-06-30 06:14:08',1,'2024-07-18 09:41:24'),(931,'MENU_ARMY_PEOPLE_AIRSPACE_PLAN_APPROVAL',NULL,NULL,'计划审批的查看权限',0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:41:12'),(932,'ACTION_ARMY_PEOPLE_AIRSPACE_APPROVAL_EDIT',NULL,NULL,NULL,1,NULL,931,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:08',1,'2024-07-18 09:41:04'),(933,'ACTION_ARMY_PEOPLE_AIRSPACE_APPROVAL_VIEW',NULL,NULL,NULL,1,NULL,931,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:08',1,'2024-07-18 09:41:08'),(934,'MENU_ARMY_PEOPLE_ALARM_MANAGEMENT',NULL,NULL,NULL,0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:08',1,'2024-07-18 09:40:58'),(935,'MENU_ARMY_PEOPLE_REGION',NULL,NULL,NULL,0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2023-06-30 06:14:09',1,'2024-07-18 09:40:53'),(936,'ACTION_ARMY_PEOPLE_REGION_DELETE',NULL,NULL,NULL,1,NULL,935,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:09',1,'2024-07-18 09:40:48'),(937,'MENU_ARMY_PEOPLE_AIRSPACE_PLAN_APPROVAL_VIEW',NULL,NULL,NULL,0,NULL,935,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:09',1,'2024-07-18 09:40:43'),(938,'ACTION_ARMY_PEOPLE_REGION_ADD_EDIT',NULL,NULL,NULL,1,NULL,935,_binary '',NULL,389735663221211136,NULL,4,'2023-06-30 06:14:09',1,'2024-07-18 09:40:37'),(939,'MENU_BASESTATION_MANAGEMENT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-08-07 07:24:42',89730635001757696,NULL),(940,'MENU_BASESTATION_SEARCH',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:25:19',89730635001757696,NULL),(941,'MENU_BASESTATION_IMPORT',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:26:12',89730635001757696,NULL),(942,'MENU_BASESTATION_EDIT',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:37:32',89730635001757696,NULL),(943,'MENU_BASESTATION_ADD',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:38:32',89730635001757696,NULL),(944,'MENU_BASESTATION_DETAIL',NULL,NULL,NULL,0,NULL,939,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:38:56',89730635001757696,NULL),(945,'MENU_PERSONNELINFO_MANAGEMENT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-08-07 07:41:41',89730635001757696,NULL),(946,'MENU_PERSONNELINFO_IMPORT',NULL,NULL,NULL,0,NULL,945,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:42:30',89730635001757696,NULL),(947,'MENU_QUALITYCONTROL_MANAGEMENT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2023-08-07 07:43:20',89730635001757696,NULL),(948,'MENU_QUALITYCONTROL_CREATE',NULL,NULL,NULL,0,NULL,947,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:44:16',89730635001757696,NULL),(949,'MENU_QUALITYCONTROL_DETAIL',NULL,NULL,NULL,0,NULL,947,_binary '\0',NULL,NULL,NULL,2,'2023-08-07 07:47:13',89730635001757696,NULL),(950,'MENU_HEILONGJIANGTIETA',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,403580659618807808,NULL,1,'2023-08-07 08:07:29',89730635001757696,NULL),(951,'ACTION_YAW_WARNING',NULL,NULL,NULL,1,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-08-28 05:57:06',188243415207510016,NULL),(952,'ACTION_MULTIMONITOR_MODEL_LAYER',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2023-09-12 01:19:30',1,NULL),(953,'MENU_GAS_BPERM',NULL,NULL,NULL,0,NULL,587,_binary '\0',NULL,NULL,NULL,3,'2023-09-12 01:19:31',1,NULL),(954,'MENU_AI_CROWD',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-09-12 01:19:32',1,NULL),(955,'MENU_AI_HIGHWAY',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2023-09-12 01:19:32',1,NULL),(956,'ACTION_AI_HIGHWAY_OBSTACLES',NULL,NULL,NULL,1,NULL,955,_binary '\0',NULL,NULL,NULL,4,'2023-09-12 01:19:32',1,NULL),(957,'ACTION_AI_HIGHWAY_PEDESTRIANS',NULL,NULL,NULL,1,NULL,955,_binary '\0',NULL,NULL,NULL,4,'2023-09-12 01:19:32',1,NULL),(958,'ACTION_AI_HIGHWAY_CONGESTION',NULL,NULL,NULL,1,NULL,955,_binary '\0',NULL,NULL,NULL,4,'2023-09-12 01:19:32',1,NULL),(959,'ACTION_process-delete',NULL,NULL,NULL,1,NULL,372,_binary '\0',NULL,NULL,NULL,3,'2023-09-27 10:02:57',1,NULL),(960,'MENU_COMMUNICATION_DATA',NULL,NULL,'通信数据对应的是大屏中的【通信监测】【xx场景】模块,只有内部的账号才能看见,给外面客户部署不能要',0,NULL,NULL,_binary '',NULL,257530550208692224,NULL,1,'2023-10-11 01:31:47',1,'2023-10-11 01:41:15'),(961,'MENU_THREED_SIMULATION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,439357001011167232,NULL,1,'2023-11-14 08:03:06',188243415207510016,NULL),(962,'ACTION_FLIGHTMONITOR_USERGUIDE',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2023-11-29 09:46:31',1,NULL),(963,'ACTION_GAS_PIC_SET',NULL,NULL,NULL,1,NULL,953,_binary '\0',NULL,NULL,NULL,4,'2023-11-29 09:46:32',1,NULL),(964,'ACTION_UAV_NETWORKLINK_BPERM',NULL,NULL,NULL,1,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2024-02-22 08:23:56',1,NULL),(965,'MENU_AI_PEO_VEH',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-02-23 01:57:25',1,NULL),(966,'MENU_COMMUNICATION_DECISION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-04-01 06:25:37',1,NULL),(967,'MENU_ARMY_PEOPLE_MONITOR',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2024-04-09 12:46:42',89730635001757696,'2024-07-18 09:42:52'),(968,'MENU_ARMY_PEOPLE_STORY',NULL,NULL,NULL,0,NULL,930,_binary '',NULL,389735663221211136,NULL,3,'2024-04-09 14:20:05',1,'2024-07-18 09:41:20'),(969,'MENU_ARMY_PEOPLE_PRECESION_ANALYSIS',NULL,NULL,NULL,0,NULL,923,_binary '',NULL,389735663221211136,NULL,3,'2024-04-09 14:20:05',1,'2024-07-18 09:41:55'),(970,'MENU_SECURITY_DETECTION',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51694103410245632,NULL,1,'2024-05-29 02:31:11',89730635001757696,NULL),(971,'MENU_AI_COMPASS',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-14 08:41:59',89730635001757696,NULL),(972,'MENU_ARMY_PEOPLE_CONFIG',NULL,NULL,NULL,0,NULL,922,_binary '',NULL,389735663221211136,NULL,2,'2024-06-17 02:17:01',89730635001757696,'2024-07-18 09:43:08'),(973,'MENU_ARMY_PEOPLE_REGION_1',NULL,NULL,NULL,0,NULL,972,_binary '',NULL,389735663221211136,NULL,3,'2024-06-17 02:19:12',89730635001757696,'2024-07-18 09:42:33'),(974,'MENU_ARMY_PEOPLE_DEVCIE',NULL,NULL,NULL,0,NULL,972,_binary '',NULL,389735663221211136,NULL,3,'2024-06-17 02:20:14',89730635001757696,'2024-07-18 09:43:02'),(975,'MENU_ARMY_PEOPLE_STORY_1',NULL,NULL,NULL,0,NULL,972,_binary '',NULL,389735663221211136,NULL,3,'2024-06-17 02:21:04',89730635001757696,'2024-07-18 09:43:05'),(976,'ACTION_ARMY_PEOPLE_REGION_ADD_EDIT_1',NULL,NULL,NULL,1,NULL,973,_binary '',NULL,389735663221211136,NULL,4,'2024-06-17 02:22:27',89730635001757696,'2024-07-18 09:42:20'),(977,'MENU_ARMY_PEOPLE_AIRSPACE_PLAN_APPROVAL_VIEW_1',NULL,NULL,NULL,0,NULL,973,_binary '',NULL,389735663221211136,NULL,4,'2024-06-17 02:23:17',89730635001757696,'2024-07-18 09:42:24'),(978,'ACTION_ARMY_PEOPLE_REGION_DELETE_1',NULL,NULL,NULL,1,NULL,973,_binary '',NULL,389735663221211136,NULL,4,'2024-06-17 02:23:49',89730635001757696,'2024-07-18 09:42:28'),(982,'MENU_AI_CAR_FOLLOW',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:35:59',1,NULL),(983,'MENU_AI_UAV',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:37:10',1,NULL),(984,'MENU_AI_INFRARED',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:37:32',1,NULL),(985,'MENU_AI_SEA_HUMAN',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:37:53',1,NULL),(986,'MENU_AI_SEA_BOAT',NULL,NULL,NULL,0,NULL,595,_binary '\0',NULL,NULL,NULL,3,'2024-06-21 08:38:11',1,NULL),(987,'MENU_STORAGE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,NULL,NULL,1,'2024-07-18 09:27:06',1,NULL),(988,'MENU_STORAGE_INDEX',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:06',1,NULL),(989,'MENU_STORAGE_VIDEO',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:06',1,NULL),(990,'MENU_STORAGE_IMG',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:07',1,NULL),(991,'MENU_STORAGE_MODEL',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:08',1,NULL),(992,'MENU_STORAGE_SETTING',NULL,NULL,NULL,0,NULL,987,_binary '\0',NULL,NULL,NULL,2,'2024-07-18 09:27:08',1,NULL),(993,'MENU_5G_A',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,389735663221211136,NULL,1,'2024-07-18 09:31:14',1,NULL),(994,'MENU_5G_A_FLIGHT_SERVICES',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:15',1,NULL),(995,'MENU_5G_A_PERMISSIONS',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:15',1,NULL),(996,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD',NULL,NULL,'',1,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(997,'MENU_5G_A_FLIGHT_STATION_COUNT',NULL,NULL,NULL,0,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(998,'ACTION_5G_A_DETECTION_TRACK',NULL,NULL,NULL,1,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(999,'ACTION_5G_A_DETECTION_TOOL_WEATHER',NULL,NULL,NULL,1,NULL,995,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:15',1,NULL),(1000,'MENU_5G_A_DETECTION',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:16',1,NULL),(1001,'MENU_5G_A_DETECTION_ANALYSE',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:16',1,NULL),(1002,'MENU_5G_A_DETECTION_ALARM',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:17',1,NULL),(1003,'MENU_5G_A_DETECTION_HOME',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:17',1,NULL),(1004,'MENU_5G_A_DETECTION_REPLAY',NULL,NULL,NULL,0,NULL,1000,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:18',1,NULL),(1005,'MENU_5G_A_SETTING',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:18',1,NULL),(1006,'MENU_5G_A_SETTING_REGION_PLAN',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:18',1,NULL),(1007,'MENU_5G_A_SETTING_DEVICE',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:19',1,NULL),(1008,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL',NULL,NULL,NULL,0,NULL,1007,_binary '\0',NULL,389735663221211136,NULL,4,'2024-07-18 09:31:19',1,NULL),(1009,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL',NULL,NULL,NULL,0,NULL,1007,_binary '\0',NULL,389735663221211136,NULL,4,'2024-07-18 09:31:20',1,NULL),(1010,'MENU_5G_A_SETTING_STORY',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-07-18 09:31:20',1,NULL),(1011,'MENU_5G_A_MONITOR',NULL,NULL,NULL,0,NULL,993,_binary '\0',NULL,389735663221211136,NULL,2,'2024-07-18 09:31:20',1,NULL),(1012,'ACTION_AIRLINE_TRANSLATION',NULL,NULL,NULL,1,NULL,125,_binary '\0',NULL,NULL,NULL,3,'2024-08-22 02:06:19',89730635001757696,NULL),(1013,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD',NULL,NULL,NULL,0,NULL,358,_binary '\0',NULL,NULL,NULL,2,'2024-08-22 02:13:09',188243415207510016,NULL),(1014,'MENU_TRAFFIC_AIRPORT_SCREEN',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2024-08-23 02:32:34',1,NULL),(1015,'MENU_TRAFFIC_HIGHSPEED_SCREEN',NULL,NULL,NULL,0,'',NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2024-08-23 02:32:34',1,NULL),(1016,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,51693429796634624,NULL,1,'2024-08-23 02:32:35',1,NULL),(1017,'MENU_5G_A_SETTING_PERCEPTTASK',NULL,NULL,NULL,0,NULL,1005,_binary '\0',NULL,389735663221211136,NULL,3,'2024-08-27 01:56:07',89730635001757696,NULL),(1018,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:57:12',89730635001757696,NULL),(1019,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:58:14',89730635001757696,NULL),(1020,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:58:34',89730635001757696,NULL),(1021,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE',NULL,NULL,NULL,0,NULL,1017,_binary '\0',NULL,389735663221211136,NULL,4,'2024-08-27 01:58:57',89730635001757696,NULL),(1022,'MENU_SECURITY_ALERTS',NULL,NULL,NULL,0,NULL,563,_binary '\0',NULL,NULL,NULL,2,'2024-09-10 01:46:27',1,NULL),(1023,'MENU_SECURITY_ALERTS_DETAIL',NULL,NULL,NULL,0,NULL,1022,_binary '\0',NULL,NULL,NULL,3,'2024-09-10 01:46:27',1,NULL),(1024,'MENU_COMMUNICATION_EVENTS_REPORT',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:12',1,NULL),(1025,'MENU_COMMUNICATION_DATA',NULL,NULL,'通信数据对应的是大屏中的【通信监测】【xx场景】模块,只有内部的账号才能看见,给外面客户部署不能要',0,'',NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:13',1,NULL),(1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:13',1,NULL),(1027,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE',NULL,NULL,NULL,0,'',1026,_binary '\0',NULL,257530550208692224,NULL,2,'2024-09-29 02:10:14',1,NULL),(1028,'MENU_COMMUNICATION_EMERGENCY_DETAIL',NULL,NULL,NULL,0,NULL,1027,_binary '\0',NULL,257530550208692224,NULL,3,'2024-09-29 02:10:14',1,NULL),(1029,'MENU_COMMUNICATION_EMERGENCY_ADD',NULL,NULL,NULL,0,NULL,1027,_binary '\0',NULL,257530550208692224,NULL,3,'2024-09-29 02:10:14',1,NULL),(1030,'MENU_COMMUNICATION_EMERGENCY_EDIT',NULL,NULL,NULL,0,NULL,1027,_binary '\0',NULL,257530550208692224,NULL,3,'2024-09-29 02:10:14',1,NULL),(1031,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC',NULL,NULL,NULL,0,NULL,1026,_binary '\0',NULL,257530550208692224,NULL,2,'2024-09-29 02:10:15',1,NULL),(1032,'MENU_COMMUNICATION_PROCESS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:16',1,NULL),(1033,'MENU_COMMUNICATION_EMERGENCY_DUTY',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:16',1,NULL),(1034,'MENU_COMMUNICATION_EMERGENCY_STATISTICS',NULL,NULL,NULL,0,NULL,NULL,_binary '\0',NULL,257530550208692224,NULL,1,'2024-09-29 02:10:16',1,NULL),(1035,'ACTION_TEMPERA_BPERM',NULL,NULL,NULL,1,NULL,588,_binary '\0',NULL,NULL,NULL,4,'2024-11-12 06:53:17',89730635001757696,NULL),(1036,'ACTION_SWITCHNETWORK_BPERM',NULL,NULL,NULL,1,NULL,584,_binary '\0',NULL,NULL,NULL,3,'2024-11-12 06:57:05',89730635001757696,NULL); /*!40000 ALTER TABLE `sys_resource` ENABLE KEYS */; UNLOCK TABLES; @@ -42,7 +42,7 @@ UNLOCK TABLES; LOCK TABLES `sys_resource_api` WRITE; /*!40000 ALTER TABLE `sys_resource_api` DISABLE KEYS */; -INSERT INTO `sys_resource_api` VALUES (8,'API_94606acf6f83c2ac28918281f85b22a0','创建一个机构','','cmii-uav-user','/api/uav/org/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:11',1,'2024-10-11 15:37:20'),(9,'API_caefde2c04ac0eda6a284d1edbb1152f','创建一个公司','','cmii-uav-user','/api/uav/org/createCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:11',1,'2024-10-11 15:37:11'),(10,'API_0dd8e9d343c3ad19ac127ac1956a7990','分页查询公司','','cmii-uav-user','/api/uav/org/pageCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-10-11 15:37:16'),(11,'API_c12b6c34d3573bd5537e9b2cd2b1617e','查询公司详细信息','','cmii-uav-user','/api/uav/org/getCompanyDetail','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-10-11 15:37:10'),(12,'API_8d221aca42139bdc4a70ae46c50e14be','查询所有公司','','cmii-uav-user','/api/uav/org/queryCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-10-11 15:37:15'),(13,'API_b19957e6c9ef266e975453a9f56f171a','删除一个公司','','cmii-uav-user','/api/uav/org/delCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-10-11 15:37:14'),(14,'API_952348d1fc4fc0fdfd58d2b87d952264','更新公司','','cmii-uav-user','/api/uav/org/updateCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-10-11 15:37:19'),(15,'API_9a61edcd78864d7bcc25913e5c208c23','查询公司所有的机构','','cmii-uav-user','/api/uav/org/queryOrg','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-10-11 15:37:19'),(16,'API_38c2422dda1213e31ccdc2f5879fe670','删除一个机构','','cmii-uav-user','/api/uav/org/delOrg','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-10-11 15:37:13'),(17,'API_575b68b670980029e5e067d4200ec727','更新一个机构','','cmii-uav-user','/api/uav/org/updatOrg','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-10-11 15:37:09'),(18,'API_d444a24f9fccc8576073243433916bf0','查询出所有的api','','cmii-uav-user','/api/uav/resource/api/queryAll','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-10-11 15:37:14'),(19,'API_b84b0f5eda8a0541bbb9bab629280d8d','增加api','','cmii-uav-user','/api/uav/resource/api/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-10-11 15:37:09'),(20,'API_3dd1062f863d72d28cbd6bdc31e272fa','更新api','','cmii-uav-user','/api/uav/resource/api/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-10-11 15:37:19'),(21,'API_5f500603a8f4a9b7c5ab637961035338','删除api','','cmii-uav-user','/api/uav/resource/api/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-10-11 15:37:08'),(22,'API_40a8afb36e4bf19fb6800cc07f0c5fcb','增加菜单','','cmii-uav-user','/api/uav/resource/menu/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-10-11 15:37:15'),(23,'API_c5247f54f028dc8bf62526cdc67f9f68','更新菜单','','cmii-uav-user','/api/uav/resource/menu/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:09'),(24,'API_eddc9be54517ea76417f8fbf05632e81','删除菜单','','cmii-uav-user','/api/uav/resource/menu/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:14'),(25,'API_a9d5998b2842d008bceefd9bdc989687','查询所有菜单','','cmii-uav-user','/api/uav/resource/menu/queryAll','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:20'),(26,'API_ab1152801e84b0bf7aab84807ac549dd','增加按钮','','cmii-uav-user','/api/uav/resource/action/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:12'),(27,'API_4ed629ddc7b9bec753d6bddae509ecdc','增加按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:13'),(28,'API_5b6f4c01e1bff1411ed5f15ca3a77b73','更新按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:12'),(29,'API_9643432bc3144a39764ef1e4b95a960c','更新按钮','','cmii-uav-user','/api/uav/resource/action/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:08'),(30,'API_3e884720cec333d70c19325e8edde54d','删除按钮','','cmii-uav-user','/api/uav/resource/action/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:11'),(31,'API_f1f84b1ad3430fd333764f0ab2ce5f8b','查询菜单下所有的按钮','','cmii-uav-user','/api/uav/resource/action/queryByMenuId','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:10'),(32,'API_696e439d468de4625840fce37d60a36e','查询按钮,菜单下面的所有api','','cmii-uav-user','/api/uav/resource/action/queryApiByActionId','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:13'),(33,'API_dfc472e5b9c3816de93be86120cc6baf','给按钮授权api接口','','cmii-uav-user','/api/uav/resource/action/authorityApi','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:19'),(34,'API_bcee59f2103818a5f37eeb7c35a6898e','获取平台(公司)的所有菜单以及按钮','','cmii-uav-user','/api/uav/resource/queryMenuAndAction','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:20'),(35,'API_37772fbb1a5f9246c6fa2dc533b55526','获取平台所有的资源列表(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceList','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-10-11 15:37:15'),(36,'API_03e1a0b6cbedccfd749d336239e1c653','获取平台所有的资源树(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTree','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:19'),(37,'API_6b3707c0d9075a6e1d5e446886eae8d0','新增角色','','cmii-uav-user','/api/uav/role/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:11'),(38,'API_187627f031d0a65bed30f74d7878b90a','修改角色','','cmii-uav-user','/api/uav/role/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:19'),(39,'API_a62023d9956bd0c0d5a5bce050a744ec','有效角色的列表','','cmii-uav-user','/api/uav/role/query','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:13'),(40,'API_fb0cc52e402afe1bec8994793a2ee376','删除角色','删除角色','cmii-uav-user','/api/uav/role/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:10'),(41,'API_1c85326fbb19ed42d341591ef931d823','禁用角色/锁定角色','','cmii-uav-user','/api/uav/role/disable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:15'),(42,'API_b2f652e930b07177f12b7fd87fb5ea40','启用角色/解锁角色','','cmii-uav-user','/api/uav/role/enable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:16'),(43,'API_83cc6276385c5454f8a555d9b0843c21','获取角色详细信息包括资源','','cmii-uav-user','/api/uav/role/getRoleWithResource','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:15'),(44,'API_c14ab57512e6e3351e3e0e0a9730b2e7','新增角色并授权','','cmii-uav-user','/api/uav/role/addAndAuthority','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:10'),(45,'API_9711fedd69da15347a54ba6cefa7b29b','修改角色并授权','','cmii-uav-user','/api/uav/role/updateAndAuthority','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:11'),(46,'API_e66b38c75630b4a737829f4a679b36a4','为用户赋予角色','为用户赋予角色','cmii-uav-user','/api/uav/role/saveUserRoles','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:13'),(47,'API_e9e81aa05a3a5fece29adee9de94ad7d','为角色增加用户','为角色增加用户','cmii-uav-user','/api/uav/role/saveRoleUsers','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:08'),(48,'API_01c42d1241684992ce0d0994e949f353','角色授权资源(菜单以及按钮)','角色授权资源(菜单以及按钮)','cmii-uav-user','/api/uav/role/authorityResource','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:20'),(49,'API_3e5c403e4b7f1c602ac3e28951955783','增加用户','','cmii-uav-user','/api/uav/user/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-10-11 15:37:08'),(50,'API_3740f38f36c26a50c0e0a3fd4c9e51f1','修改用户信息','','cmii-uav-user','/api/uav/user/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:19'),(51,'API_a869a436cd0be4fee43ca50af78d2e5c','禁用用户/锁定用户','','cmii-uav-user','/api/uav/user/disable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:12'),(52,'API_20ed92bcb1ab21bb4387511221772bee','启用用户/解锁用户','','cmii-uav-user','/api/uav/user/enable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:13'),(53,'API_13df7b0a05472e0a9a51488dfbf05876','用户列表','','cmii-uav-user','/api/uav/user/findPage','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:13'),(54,'API_f7cf343ee9bc0f36c04b885ae5994458','管理员重置密码','','cmii-uav-user','/api/uav/user/resetPassword','POST',_binary '\0',_binary '\0','2020-05-08 19:10:16',1,'2024-10-11 15:37:17'),(55,'API_bdf05b037740ee590e3b6864e5163ab1','获取用户角色','','cmii-uav-user','/api/uav/user/getUserRoles','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:20'),(56,'API_4a45eb5cf116d6304ccd6c4d7c617356','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/getMyDetail','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:16'),(57,'API_f8bdaff975e38f1088ea7130e2cd0fde','获取用户详细信息','','cmii-uav-user','/api/uav/user/getUserDetail','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:17'),(58,'API_d4e2a13d9077aa75aeb94bc7b20aae07','获取用户资源','','cmii-uav-user','/api/uav/user/getUserResources','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:19'),(59,'API_78f9684cf1948d9fa7ac822f808dda10','以树形结构获取资源树','','cmii-uav-user','/api/uav/user/getUserResourceTree','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:18'),(60,'API_707c71b10a1cc38fcc6fa499c4da6514','添加飞手','','cmii-uav-user','/api/uav/user/addFlyer','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:17'),(61,'API_56e5cefafdd168386d7f30b5b1219454','测试','','cmii-uav-user','/api/uav/uavTestPO/','POST,GET',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:12'),(62,'API_150ba1da1f4a174b132167b3b252d670','测试获取单个','','cmii-uav-user','/api/uav/uavTestPO/testGet','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:16'),(63,'API_622b954009a914f7c3f5b4dae6c5a722','测试异常','','cmii-uav-user','/api/uav/uavTestPO/testException','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:12'),(64,'API_9d8416f00194ce3c7cd9ac0366e70e2d','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPage','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:14'),(65,'API_9da6a0c63553bbd633a55d9ac60a4227','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPageByCustom','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-10-11 15:37:15'),(66,'API_1a735ffddfa640ed742d282018370fc4','测试添加','','cmii-uav-user','/api/uav/uavTestPO/testAdd','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-10-11 15:37:16'),(67,'API_40dff29929d118e208b634b4cf41ff6d','根据用户名获取账号信息','','cmii-uav-user','/account/getByUsername','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-10-11 15:37:14'),(68,'API_a8c6a4ffabfb0a9d79f36db5a147e723','根据手机号获取账号信息','','cmii-uav-user','/account/getByTelephone','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-10-11 15:37:14'),(69,'API_dfbef905b3129b45341a9690102968e9','检测用户是否拥有权限','','cmii-uav-user','/user/checkUri','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-10-11 15:37:10'),(70,'API_9a77fc28815a543625cc1da15f122326','根据用户id获取信息,未被删除用户','','cmii-uav-user','/user/getById','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-10-11 15:37:18'),(71,'API_98c7ec3ba0ce3553bb0c52272f29cee7','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2022-03-11 06:17:35'),(72,'API_7ac275e7b208b86b6bae996e6305f86f','swaggerResources','','cmii-uav-user','/swagger-resources','',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2022-03-11 06:17:35'),(73,'API_2c5059bcb5b737dfc1f69fc4897d587f','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2022-03-11 06:17:35'),(74,'API_9f707b4364462c082b59c5dd00240592','errorHtml','','cmii-uav-user','/error','',_binary '\0',_binary '\0','2020-04-19 07:10:17',1,'2024-10-11 15:37:17'),(99,'API_4ea6212bfc023bb48de804b2d1a55b81','生成邀请地址','','cmii-uav-user','/api/uav/user/createInviteUrl','POST',_binary '\0',_binary '\0','2020-05-15 08:03:14',1,'2024-10-11 15:37:13'),(100,'API_568f7d141e21dda80d1ff2bcdfd058b8','用户注册','','cmii-uav-user','/registry','POST',_binary '\0',_binary '\0','2020-05-15 08:03:15',1,'2024-10-11 15:37:14'),(102,'API_eaae5f9cc6fad74e1d9a525f33d26856','更新用户头像','','cmii-uav-user','/api/uav/user/profile/updateAvatar','POST',_binary '\0',_binary '\0','2020-05-23 19:50:52',1,'2024-10-11 15:37:20'),(103,'API_9c99b4ed48a4b631c0970484c13929a9','更新用户名称','','cmii-uav-user','/api/uav/user/profile/updateRealName',NULL,_binary '\0',_binary '\0','2020-05-29 06:50:52',1,'2020-05-29 11:50:54'),(104,'API_f90b75a4827a5f681dd9dde40c97f66d','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/profile/getMyDetail','POST',_binary '\0',_binary '\0','2020-05-23 19:50:52',1,'2024-10-11 15:37:17'),(105,'API_136b8ba1ae8483e65884e8380625a67e','发送修改邮箱验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendResetEmail','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2020-05-25 17:43:51'),(106,'API_fcc25be6a9f1c1dfd749708881413f42','验证修改邮箱验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkResetEmail','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2020-05-25 17:43:51'),(107,'API_a70d9ba7a909c0d00734632f09a2ded1','发送绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-10-11 15:37:11'),(108,'API_41b4ab1a493b21a94ca77fddff40af63','验证绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-10-11 15:37:08'),(109,'API_383e669ef441f9f9d20d7c07299cfb4a','发送解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-10-11 15:37:12'),(110,'API_92e42e7981b90482b33b9ddf7db4cd95','验证解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-10-11 15:37:15'),(111,'API_69b54b15bedcabdc884571bc8971b3c7','申请更新邮箱','','cmii-uav-user','/api/uav/user/profile/updateEmail','POST',_binary '\0',_binary '\0','2020-05-26 09:44:34',1,'2024-10-11 15:37:12'),(112,'API_1032f1f983c37cd32e5b7381c4cbca9d','重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephone','POST',_binary '\0',_binary '\0','2020-05-26 09:44:34',1,'2024-10-11 15:37:10'),(113,'API_deda391c18ef00ea6a63865be14310fc','通过身份证重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephoneWithIdentity','POST',_binary '\0',_binary '\0','2020-05-26 09:44:34',1,'2024-10-11 15:37:10'),(115,'API_2a3d43803567789ca45f6c0f0fc4e1aa','更新用户名称','','cmii-uav-user','/api/uav/user/profile/updateName','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:09'),(116,'API_feba8e8d58c5347eb929af17138838f9','添加用户账号','','cmii-uav-user','/api/uav/user/profile/addAccount','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:14'),(117,'API_28b67fe2833bef7e732dbd5d89829618','发送登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:20'),(118,'API_5dc51c889fa6be6bd5235d4059a4294f','检测登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:15'),(119,'API_e58796bbb5570d9441ebc7e81e8599ab','发送注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:18'),(120,'API_ba2f464c282b3a0553bd99165d06d783','检测注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:13'),(121,'API_98b17ab44f353e164355f455a423419b','发送找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:13'),(122,'API_0aeba2b421ca15f92cd5428c886d485b','检测找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-10-11 15:37:15'),(123,'API_4af205f553090073657fd3225909fca0','预览excel','','cmii-uav-user','/system/file/preViewExcel','POST',_binary '\0',_binary '\0','2020-06-02 03:54:05',1,'2024-10-11 15:37:10'),(124,'API_cd482e686ebdeb7f999493b5b5d8a462','下载用户批量导入模版','','cmii-uav-user','/system/file/userTemplate','GET',_binary '\0',_binary '\0','2020-06-04 06:33:56',1,'2024-10-11 15:37:13'),(125,'API_4600ad4f0e176d556393a65c04510e51','批量上传用户','','cmii-uav-user','/api/uav/user/userUpload','POST',_binary '\0',_binary '\0','2020-06-04 17:27:12',1,'2024-10-11 15:37:17'),(126,'API_2ee55d087127129a3a6d29dbf9b6469f','重置','','cmii-uav-user','/api/uav/user/profile/resetPwd','POST',_binary '\0',_binary '\0','2020-06-07 02:50:55',1,'2024-10-11 15:37:17'),(169,'API_56bc7049827cfeba0af9af2bb04c2f81','修改载荷生产厂家和设备类型','','cmii-uav-device','/api/uav/load/updateDevManufacturer',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(170,'API_0b82428385517d636fc9bcdb34040cbc','删除载荷生产厂家和设备类型','','cmii-uav-device','/api/uav/load/deleteDevManufacturer',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(171,'API_868fb317bf26069587bf72bd03ae4e91','载荷生产厂家和设备类型详情查询','','cmii-uav-device','/api/uav/load/queryDevManufacturerDetail',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(172,'API_da88cb85eb3563b3656c18b30366dbbd','根据设备类型获取生产厂家列表','','cmii-uav-device','/api/uav/load/querydevManufacturerListByMafId',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(173,'API_f429192ee4288e1dacf66e9d0f713051','查询设备类型列表','','cmii-uav-device','/api/uav/load/querydevTypes',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(174,'API_f51fc53186080cddef6dc118ca33b221','新增载荷生产厂家和设备类型','','cmii-uav-device','/api/uav/load/addDevManufacturer',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(175,'API_106a918609df946aca1a53655d32fb49','修改无人机','','cmii-uav-device','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:48'),(176,'API_6fcb86dbb2501707e5ddbbb76c7668e7','删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:46'),(177,'API_6fd9ffa6039d98a39b7ffe156d060d94','批量删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:49'),(178,'API_6465ffa36bd12bf5d249583ca80364ba','模糊查询无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(179,'API_35baa96ea7e128ba18521c93f66d7ec9','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfName','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(180,'API_44d5cb8bf252057df56597309c8ae02d','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavMode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(181,'API_7a31287ec4ca56716189ac715ffff95e','模糊查询无人机形态列表','','cmii-uav-device','/api/uav/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(182,'API_0dfc8854557634dfa5d03ad49d336793','模糊查询无人机尺度列表','','cmii-uav-device','/api/uav/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(183,'API_8a96f6bda4172a6945cb2924b6c6bf70','模糊查询可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStat','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:43'),(184,'API_87164cc21687f97d2041965ae9f1b66f','模糊查询生产厂家有的产品型号列表','','cmii-uav-device','/api/uav/plane/queryModeListByMnf','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(185,'API_79f66734cd6fa15fd50c4cea770b08d6','通过产品型号查询生产厂家和产品型号对象','','cmii-uav-device','/api/uav/plane/queryMnfModeByMode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(186,'API_f7e38acfe5b46367db42b53b495d95b4','按条件分页查询无人机信息','','cmii-uav-device','/api/uav/plane/queryUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(187,'API_c4aed632c3e6a6031a7ca0305caa11aa','按无人机编码查询无人机详情查询','','cmii-uav-device','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(188,'API_31151a2ae3f60864f0184a3e4b73a1f3','获取无人机照片','','cmii-uav-device','/api/uav/plane/queryUavPicByCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:54'),(189,'API_75faa10f56c898c1e76b50cf283a4a3d','查询指定公司/机构范围内的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:45'),(190,'API_b90518a6151aaf568edc63b43d601817','根据无人机编码查询该无人机是否存在','','cmii-uav-device','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:53'),(191,'API_dab95364a57d89e51d76193f66810c55','生成新无人机编码','','cmii-uav-device','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:54'),(192,'API_d06ee272c26f99d194aa9da2a4aede6d','设置无人机在线状态','','cmii-uav-device','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:48'),(193,'API_a0ebba8fe10fc7ff7068af1c74331a32','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-10-11 01:36:42'),(194,'API_9123f5d24a53ed45473aaf78dbff8b1d','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavDev',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(195,'API_d08edaffa3c49fbd4b21f7f3e343e0a0','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryDevByUav',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(196,'API_6ef033bb286b002ef0f4c243b5beb1b0','无人机解绑载荷','','cmii-uav-device','/api/uav/plane/unboundDevFromUav',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(197,'API_a0215c0676721e559700ba7257cc1266','无人机操作日志查询','','cmii-uav-device','/api/uav/plane/queryUavLogList',NULL,_binary '\0',_binary '\0','2020-06-24 16:25:20',1,'2020-06-24 21:31:13'),(198,'API_c491a74b63bf41be63230811eae2daa6','新增载荷','','cmii-uav-device','/api/uav/load/addUavDevice',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(199,'API_f2cfbd00e0b000771f41fce4bb6c56e0','修改载荷','','cmii-uav-device','/api/uav/load/updateUavDevice',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(200,'API_f8dba39581eb18d265010d8f2efc6d9d','删除载荷','','cmii-uav-device','/api/uav/load/deleteUavDevice',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(201,'API_ee3d08e629c84909f11400c4cb817608','批量删除载荷','','cmii-uav-device','/api/uav/load/deleteUavDeviceBatch',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(202,'API_a8ce2ea124712056992199a12a50a9b1','无人机绑定的载荷列表','','cmii-uav-device','/api/uav/load/queryUavDevicesByUavId',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(203,'API_67cb5e39759bbcc02989bddb67abed79','获取新载荷编码','','cmii-uav-device','/api/uav/load/queryUavDevCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(204,'API_618a8937c3bf426a934c944d560c04eb','获取载荷分页列表','','cmii-uav-device','/api/uav/load/queryUavDevList','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(205,'API_5edd6e98ab5da1ed7574800b0ed28087','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavDevList','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(206,'API_894dc58e65b272dceeaf08fdb4486a2b','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/load/checkDevBoundRelations','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(207,'API_cf6aa87a8e86d0240670beb3a268f6ee','模糊查询载荷编码列表','','cmii-uav-device','/api/uav/load/queryDevCodeList','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(208,'API_e9f2d641c20ecd673cee5293254c09da','载荷详情查询','','cmii-uav-device','/api/uav/load/queryUavDeviceDetail',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(209,'API_dce2075fbb65dad6506bc2240773d754','查询无人机类型详情','','cmii-uav-device','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(210,'API_d7c3a419346333e9a050a11c2201dabd','新增无人机类型','','cmii-uav-device','/api/uav/plane/addUavModel','POST',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2020-07-13 06:31:13'),(211,'API_8d32c4d3366dead1c1add0d82ed3dc3d','修改无人机类型','','cmii-uav-device','/api/uav/plane/updateUavModel','POST',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2020-07-13 06:31:13'),(212,'API_808683de543f3716b25400a704250d1e','删除无人机类型','','cmii-uav-device','/api/uav/plane/deleteUavModel','POST',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2020-07-13 06:31:13'),(213,'API_378d645bb2f6b03bbef75dba42a1c639','模糊搜索厂家对应的设备型号列表','','cmii-uav-device','/api/uav/load/queryDevModelListByMafId','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(214,'API_3c2b4ca91e53a585605a144ff2b8a928','删除载荷设备型号','','cmii-uav-device','/api/uav/load/deleteUavDevModel','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(215,'API_f5de88192341d2e0bc4d55411b2ecafa','新增载荷设备型号','','cmii-uav-device','/api/uav/load/addUavDevModel','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(216,'API_5ab916008111d8240228aafe49f91bdd','修改载荷设备型号','','cmii-uav-device','/api/uav/load/updateUavDevModel','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(217,'API_03edda2d2a799df3cf21484d905701e9','载荷设备型号详情查询','','cmii-uav-device','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(218,'API_7d444eaa2f15f8b184dd1855415e4446','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2022-04-25 02:49:37'),(219,'API_b8ff7a2544bb4e8c6e7b79f324083dab','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2022-04-25 02:49:37'),(220,'API_603ce91dec93cfb4063c1926d38cf572','swaggerResources','','cmii-uav-device','/swagger-resources','',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2022-04-25 02:49:37'),(221,'API_051cfba46414c56f1b4537687f89833d','errorHtml','','cmii-uav-device','/error','',_binary '\0',_binary '\0','2020-08-08 12:25:20',1,'2024-10-11 01:36:50'),(222,'API_94a3eb35188d0b70f984c9e079a47268','获取单个无人机目前的航迹','','cmii-uav-surveillance','/surveillance/queryUavPoints/{UASID}',NULL,_binary '\0',_binary '\0','2020-06-17 12:39:49',1,'2020-06-18 14:08:28'),(223,'API_83d729de6d968040f9c77d272a61bc1f','查询本公司飞机七日内飞行历史记录','','cmii-uav-surveillance','/surveillance/flyHistory','GET',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2024-09-23 20:58:58'),(224,'API_55bba35223746a01d3d5d05b2a46d3d6','securityConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2022-03-31 03:10:04'),(225,'API_37f09116159b86c2dd50d79287c517b5','uiConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2022-03-31 03:10:05'),(226,'API_87490b132b78566a21cf497d89b38198','swaggerResources','','cmii-uav-surveillance','/swagger-resources','',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2022-03-31 03:10:04'),(227,'API_f44699527a155e7a951e5254a9bb7b75','查询公司/机构所属的无人机编码列表','','cmii-uav-surveillance','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2023-03-29 09:05:05'),(228,'API_d744eb7808517966bff9e3b1e667019e','按无人机编码查询无人机详情查询','','cmii-uav-surveillance','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2020-06-24 17:08:28'),(229,'API_819d14f47a56a3e80d475f94bd2d471b','设置无人机在线状态','','cmii-uav-surveillance','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2023-03-29 09:05:05'),(230,'API_5c3e2e1810caa38551ef924cc8e72498','无人机绑定的载荷列表查询','','cmii-uav-surveillance','/api/uav/plane/queryDevByUav',NULL,_binary '\0',_binary '\0','2020-06-16 09:39:49',1,NULL),(231,'API_1f4fbefa225a2595fdb562694e8a6eb0','根据无人机编码查询该无人机是否存在','','cmii-uav-surveillance','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2023-03-29 09:05:05'),(232,'API_960f651fd3be99401654dc83dd053fb2','查询无人机类型详情','','cmii-uav-surveillance','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2020-06-24 17:08:28'),(233,'API_378057d4cc00ea62cae9806f7cac273c','errorHtml','','cmii-uav-surveillance','/error','',_binary '\0',_binary '\0','2020-06-30 16:39:49',1,'2024-09-23 20:58:59'),(234,'API_009b9f297e6d324bdb9868996eeab36f','新增载荷','','cmii-uav-device','/api/uav/load/addUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-10-11 01:36:43'),(235,'API_2734ea96b050f2deae5883c82d4ae2e5','修改载荷','','cmii-uav-device','/api/uav/load/updateUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-10-11 01:36:48'),(236,'API_e35c03761aa95413b9dadbf0ae476334','删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-10-11 01:36:51'),(237,'API_438e3f86a59e35e254ea26df38c6602a','批量删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoadBatch','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-10-11 01:36:46'),(238,'API_843b9797693a0536db662a14d01a0e51','载荷详情查询','','cmii-uav-device','/api/uav/load/queryUavLoadDetail','GET',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:03'),(239,'API_dba08ee989879f608bba49f094509933','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/querydevMnfList',NULL,_binary '\0',_binary '\0','2020-06-15 21:10:26',1,'2020-06-16 03:26:03'),(240,'API_1be70f68207732dfc5d150c1ab5e318c','模糊查询载荷设备类型列表','','cmii-uav-device','/api/uav/load/queryDevTypeList','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:03'),(241,'API_d937afa65e86eeb087905b8fdd9f7872','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:04'),(242,'API_0d52f355600136c09d156eda403909de','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:04'),(243,'API_e83782efad13b139f36f5d86c23dec92','无人机解绑载荷','','cmii-uav-device','/api/uav/plane/unboundLoadFromUav','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-10-11 01:36:53'),(244,'API_c141c202beb8477f05aea714392e11b4','无人机绑定的载荷列表查询','','cmii-uav-surveillance','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-06-24 17:08:28',1,'2020-06-24 11:30:08'),(245,'API_5fe33412cbe4aef4c0983bc6cc595a12','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryDevMnfList','POST',_binary '\0',_binary '\0','2020-07-15 02:10:14',1,'2020-07-14 18:30:46'),(246,'API_5238a0e4378c5ab60f223f4575b1ca49','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-surveillance','/surveillance/queryUavPoints','POST',_binary '\0',_binary '\0','2020-06-24 04:13:22',1,'2020-06-23 20:40:58'),(247,'API_f8575d0d0d6138ed277f0339a0d561ee','恢复一个公司','','cmii-uav-user','/api/uav/org/enableCompany','POST',_binary '\0',_binary '\0','2020-06-20 08:15:53',1,'2024-10-11 15:37:11'),(248,'API_f4cad236d06712a0c44987ebb502faf1','关停一个公司','','cmii-uav-user','/api/uav/org/disableCompany','POST',_binary '\0',_binary '\0','2020-06-20 08:15:53',1,'2024-10-11 15:37:15'),(249,'API_e52cbd9464f9e29fcc2fa4860aa672ca','测试添加','','cmii-uav-user','/api/uav/uavTestPO/testRpc','POST',_binary '\0',_binary '\0','2020-06-20 08:15:54',1,'2020-06-20 00:15:58'),(250,'API_452d66110157d297ffe6356f2fbb9107','根据邀请码,查询邀请信息','','cmii-uav-user','/registry/getInvitedInfo','POST',_binary '\0',_binary '\0','2020-06-20 08:15:54',1,'2024-10-11 15:37:09'),(251,'API_ce779d357be0d8577ce7af6ac166c639','根据用户id集合获取用户信息','','cmii-uav-user','/user/getByIds','POST',_binary '\0',_binary '\0','2020-06-20 08:15:54',1,'2024-10-11 15:37:10'),(252,'API_2f792ba68267c0e9802e2a3ff75ff56d','获取平台所有的资源树,并统计(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTreeStatistic','POST',_binary '\0',_binary '\0','2020-06-23 09:23:16',1,'2024-10-11 15:37:09'),(253,'API_952d06cbfdc5cd71b09f941194c76b92','角色分页查询','','cmii-uav-user','/api/uav/role/queryPage','POST',_binary '\0',_binary '\0','2020-06-23 09:23:16',1,'2024-10-11 15:37:15'),(254,'API_bc97a2e4a906e69ba0a38961e61dd1c2','获取角色资源树','','cmii-uav-user','/api/uav/role/getRoleResourceTree','POST',_binary '\0',_binary '\0','2020-06-23 09:23:16',1,'2024-10-11 15:37:10'),(255,'API_ba389f10315750ec60df2e7041aadb75','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/surveillance/querySinglePlaneTrack','POST',_binary '\0',_binary '\0','2020-06-24 22:40:52',1,'2020-06-25 11:13:43'),(256,'API_e16193a54a8c3605718087964b475b22','查询所有机场','','cmii-uav-airspace','/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-10-11 08:57:36'),(257,'API_51cfdab152fd2f16dd20ecace8ff2d23','删除空域容量','','cmii-uav-airspace','/zydAirspaceCapacity/deleteCapacityByAirsNo.do','DELETE',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(258,'API_1fec04562343c9dbe9baa50196a456fc','新增空域容量','','cmii-uav-airspace','/zydAirspaceCapacity/saveZydAirspaceCapacity.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(259,'API_4915b9309b715ec171376f4e61ab5ae7','修改空域容量','','cmii-uav-airspace','/zydAirspaceCapacity/updateZydAirspaceCapacity.do','PUT',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(260,'API_b26faf6149440b54eaf4f9ab1da96b84','按条件分页查询空域申请和时间段','','cmii-uav-airspace','/zydAirspace/queryByConditons.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-10-11 08:57:38'),(261,'API_895f4f13f1573208eb8e18cbb2673253','获取新建空域申请页面的下拉框数据','无需传参','cmii-uav-airspace','/zydAirspace/getDropDownBox.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(262,'API_52329ea052a3213ef59284b74b995e83','新增空域申请和时间段','','cmii-uav-airspace','/zydAirspace/saveAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-10-11 08:57:37'),(263,'API_fc665fb4031a71c16c6c30a8e3f5ac9e','飞行计划获取空域列表','传入空域申请json字符串,需要分页数据,查询条件为主键时为查询详情','cmii-uav-airspace','/zydAirspace/queryAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(264,'API_395e7fe8f2f8860dfc6d0d53d4451cec','编辑修改空域申请','传入空域申请json字符串,需要有主键','cmii-uav-airspace','/zydAirspace/editAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-10-11 08:57:37'),(265,'API_4bd275a28b0298f50a95fc3b00ac0b28','批量删除空域申请和时间段-n','传入空域申请主键,以数组方式传入','cmii-uav-airspace','/zydAirspace/deleteAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-10-11 08:57:37'),(266,'API_52d7c991d2962e1cb946c1b6ca2a989a','审核空域','传入空域编号、审核操作、审核人id','cmii-uav-airspace','/zydAirspace/auditAirspace.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(267,'API_6628f3f97efaec4c29b5f197ae3e03cf','查询空域详情','传入空域主键','cmii-uav-airspace','/zydAirspace/queryDetail.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-10-11 08:57:36'),(268,'API_ab002d2b6eaa803d8a22092d2d569c3f','获取空域申请类型的数量-n','无需传参','cmii-uav-airspace','/zydAirspace/getCountByStat.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(269,'API_045305960e66f93a66a18ddde0cb1750','查询空域容量列表','','cmii-uav-airspace','/zydAirspace/getAirspaceCapacity.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(270,'API_25e76177f5a0e13252ce31b02e85dfe5','查询空域容量详情','','cmii-uav-airspace','/zydAirspace/getAirspaceCapacityById.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(271,'API_45e4cf438d3b1c4f8e5710d0c52d37eb','为监视提供的空域接口','无需传参','cmii-uav-airspace','/zydAirspace/getAirspaceBySurveillance.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(272,'API_681049cd535eee150ecf3ba034c14589','查询未定义空域容量且为已通过的临时飞行区','','cmii-uav-airspace','/zydAirspace/getAirspaceCapacityByAdd.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(273,'API_a33b13d78be515f2030a8abe6fdeccb2','获取空域申请和空域限制所有数据-n','无需传参','cmii-uav-airspace','/zydAirspace/getAllAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(274,'API_e64eb41adecd6be488be482850f85988','获取空域申请和空域限制所有数据','无需传参','cmii-uav-airspace','/zydAirspace/getAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-10-11 08:57:38'),(275,'API_417d074d0c96a630a3b3ee601d4f6084','查询临时飞行区','无需传参','cmii-uav-airspace','/zydAirspace/queryErailAirspace.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(276,'API_3fe4fd9c710fa314b33323442031d249','空域历史统计查询','','cmii-uav-airspace','/zydAirspaceHistoricalData/getAirspaceHistoricalData.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(277,'API_e58ae1d8608f13b4eec42bf21d4e6237','根据空域编号查询空域历史','','cmii-uav-airspace','/zydAirspaceHistoricalData/getAirspaceHistoricalDataByAirsNo.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(278,'API_30ddb9445d4740298095d0cbf3aa49fa','获取空域实时数据','','cmii-uav-airspace','/zydAirspaceRealData/getAirspaceRealData.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(279,'API_e1cb1af69ce841d8f0eea9c78210c63d','根据公司id获取空域实时数据','','cmii-uav-airspace','/zydAirspaceRealData/getAirspaceRealDataByCompanyid.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(280,'API_a0bcf36f4c8f04b09eff28b54445737b','按空域类型查询空域限制','传入参数为空域类型 多个请用,相隔','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitByAreaTypeSur.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(281,'API_99a42a28165f388e086614adc0f23529','按空域类型查询空域限制','传入参数为空域类型','cmii-uav-airspace','/zydAreaLimit/queryLimitAreaByType.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(282,'API_b2fb5db5b0f7f6dcb8444e8145b5dffa','按id删除空域限制','传入参数为id值','cmii-uav-airspace','/zydAreaLimit/deleteZydAreaLimitById.do','DELETE',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(283,'API_6d8d8dd3b615f81d6774ed81916615a7','新增空域限制-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/zydAreaLimit/insertZydAreaLimit.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(284,'API_01b9da8fa89bf3bd9b06b29b9ef938d7','修改空域限制-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/zydAreaLimit/updateZydAreaLimit.do','PUT',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(285,'API_9983d216745fa0f33df53aab1785f7c7','按id查询空域限制','传入参数为id值','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitById.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(286,'API_7ae8c3349cf3e68db94ceff112d98c8b','为监视提供的接口,用于查询告警','无需传参数','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitBySurveillance.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(287,'API_dcc1b19439b953d1c53b4d4e347c2f11','按空域类型查询空域限制-n','传入参数为空域类型 多个请用,相隔','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitByAreaType.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(288,'API_9489ebf61622dfc85ecf0ec578449dfe','飞行任务类型字典表','','cmii-uav-airspace','/zydDicFlytask/getZydDicFlytask.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2021-09-22 20:09:11'),(289,'API_f8fd09b31ddbac06045bd342be87770c','uiConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2022-04-25 02:48:43'),(290,'API_443b50cd6f58599295241c6de6cb7e01','swaggerResources','','cmii-uav-airspace','/swagger-resources','',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2022-04-25 02:48:43'),(291,'API_4c57dc011da8906cdb1dcd15c54c080a','securityConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2022-04-25 02:48:43'),(292,'API_ea7a7243272fdfc2331b8342add4f863','error','','cmii-uav-airspace','/error','',_binary '\0',_binary '\0','2020-07-05 18:14:28',1,'2024-10-11 08:57:38'),(293,'API_8138e0c7ce00c4dd9aea4f7f624e5f98','查询所有无人机编码列表','','cmii-uav-device','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-02 19:03:43',1,'2024-10-11 01:36:44'),(294,'API_889e384e48d54fe17111942c773aca48','查询所有无人机编码列表','','cmii-uav-surveillance','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-06-25 08:06:48',1,'2020-06-25 22:18:11'),(295,'API_89dba7a6eb9a2cfacedfd80f9ac039c7','添加一个问题反馈','','cmii-uav-feedback','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:27:59'),(296,'API_425ee952c02aa238fed24797554ac6f2','导出查询结果','','cmii-uav-feedback','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(297,'API_e4a55343c032ef4fc49727f482e7eb67','查询反馈类型','','cmii-uav-feedback','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(298,'API_dc560856289d3a9211012dbabb79ef29','查询应用列表','','cmii-uav-feedback','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(299,'API_772d54d06ec5de08c748ab474f5ed449','查询问题反馈','','cmii-uav-feedback','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(300,'API_64552bbf0983e08276afbdd6c20fe8f1','securityConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:01'),(301,'API_92bc10538452e5059980a0a68ff57611','uiConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:01'),(302,'API_38e7b789c679b2e181a351ba0c48f3e4','swaggerResources','','cmii-uav-feedback','/swagger-resources','',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:01'),(303,'API_9e1361a03705c615f98b19b4e7e3b5bd','errorHtml','','cmii-uav-feedback','/error','',_binary '\0',_binary '\0','2020-06-24 09:31:01',1,'2020-06-24 01:31:01'),(304,'API_df40b16c8af79cc961c67057562e3ec6','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-07-01 06:13:38',1,'2024-10-11 08:57:37'),(305,'API_51551e9c8da1083fafaf04aa977de44f','模糊查询无人机编码和型号列表','','cmii-uav-device','/api/uav/plane/queryUavCodeMode',NULL,_binary '\0',_binary '\0','2020-06-28 07:04:11',1,NULL),(306,'API_f4c18ef93dddfe79981ccc1ccc4d7fe5','模糊查询无人机编码和型号列表','','cmii-uav-device','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-02 23:05:42',1,'2020-07-02 16:59:32'),(307,'API_c62b95dc88d0b6772dda252389e33ed6','检查空域是否重复-n','','cmii-uav-airspace','/zydAirspace/judgeAirspaceIntersect.do','POST',_binary '\0',_binary '\0','2020-06-30 02:58:54',1,'2020-06-29 19:04:16'),(308,'API_68a121b56fb6d1f3a2fec0b3b172b5ff','模糊查询无人机编码和型号列表','','cmii-uav-surveillance','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-06-29 06:55:15',1,'2020-07-01 07:01:25'),(405,'API_03199eef7972d4f754ebfed14a4d8ee7','删除飞行报告附件地址:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(406,'API_c94f5c7650a167b0836f08a3e339de7e','保存附件','','cmii-uav-waypoint','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(407,'API_87c753396b50cf21b07804a712e01ed4','获取飞行作业信息:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-06-30 09:34:35'),(408,'API_e45c895f2e3c1ce451277932071df036','停止作业','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(409,'API_63488ccf019a1c67a50c077f4e7c8951','获取所有的飞行作业信息','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(410,'API_22fb324767fdfdef4a2c96a707d66cfe','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(411,'API_22233893c6a77ac0cc161383336c7381','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(412,'API_d1aa0342ea4a1fc38d9a19a36018ad87','选择飞机','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(413,'API_48ff1233dd1e1811a25eceee27a29828','起飞','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(414,'API_83213c76225b7b4d6854d345cc62ce42','暂停作业','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(415,'API_52bc2f64116a946693a387adc75f2474','继续作业','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(416,'API_a8a0348bca1c4ccffb3959946b7c3563','返航','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(417,'API_1c047b8d17af63b7a35cdc44859481d7','降落','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(418,'API_a88ee7ca803e380026953c88057be0d5','确认着陆','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(419,'API_eae9b02683d2e40e50ee8a640424eac4','获取:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-06-30 09:34:35'),(420,'API_67f785173c25f7d9569a8b2f0c4a9ef3','获取所有的','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(421,'API_c649c685ce671565d57265a72720ae57','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(422,'API_198d95167c3219ebecceca94c1dcf96a','文件打包下载','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(423,'API_296173217583fdf0bdcae776dbd2b478','获取所有的','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(424,'API_8d59e9b0241bfcf0196258db59c52bdd','新增和保存(需要包括航点参数)','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(425,'API_972f33164a3bb77cf04b3217773b02d7','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(426,'API_615cc5d27b63a48ac3e8a99840c842d1','获取:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(427,'API_48d8d948f9d3dfcf51fc0fdc5a91528b','删除:根据id删除航线和航点','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(428,'API_c998f185393ba2a6cfbe5ca0902fb2cf','导入指令集','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/importCommand','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(429,'API_7b0c8872f619a5656e30e9a6d43bd0a2','获取:根据id','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(430,'API_030a5368cf9bb0fddd995a19668f1aea','删除:根据id并保存剩下点','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/deleteFlushPoint','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(431,'API_af55b831faa0400399e920499acc8225','获取所有的','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(432,'API_8c2fa307536617360def7877255174ff','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(433,'API_bc6dea3cd12ea84f3dbcaed6ebe3a54c','获取:根据搜索数据传入的对象','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/json','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(434,'API_b02c75beefa57fdcf8c9a7d2d33189da','根据id删除航点','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(435,'API_86e37cb419359c628624a328866fdad2','获取所有航点:根据航线id','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(436,'API_adb8cc3d03cf80c9322ccbe4a4df7c3f','根据航线id清空航点','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(437,'API_a9546080612462887b543d5835354159','swaggerResources','','cmii-uav-waypoint','/swagger-resources','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2022-04-25 02:50:20'),(438,'API_41642d48ec6460a8dc7ccd0c11c8ca90','uiConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2022-04-25 02:50:20'),(439,'API_67dd77768e42e1f32694694d106c12c7','securityConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2022-04-25 02:50:20'),(440,'API_c04d080dbe4af42982229ee56d673d90','载荷设备型号详情查询','','cmii-uav-waypoint','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(441,'API_99654785a53be32b169eefec49b73b53','无人机绑定的载荷列表','','cmii-uav-waypoint','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(442,'API_c805f2cb18b0728dc3e62c6fcf1b2e09','downloadByUrl','','cmii-uav-waypoint','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(443,'API_602b90c614e5098802fc76501493c536','upload','','cmii-uav-waypoint','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(444,'API_17a8ee1b67a3899d77335f8e68fc02c8','查询公司/机构所属的无人机编码列表','','cmii-uav-waypoint','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2023-05-04 09:35:55'),(445,'API_8d9f3877d317319dcd7d157b7fb4128b','设置无人机在线状态','','cmii-uav-waypoint','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2023-05-04 09:35:55'),(446,'API_5b233da335abf5911337f5ad833fe4d2','查询无人机类型详情','','cmii-uav-waypoint','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(447,'API_9ccf17d4e9ca5038102917bbc52160bd','根据无人机编码查询该无人机是否存在','','cmii-uav-waypoint','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2023-05-04 09:35:55'),(448,'API_a98060907e17612eaf178fc6e70946bc','查询所有无人机编码列表','','cmii-uav-waypoint','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(449,'API_216b336c5ca8d275a2d41d5b4d5e08ae','模糊查询无人机编码和型号列表','','cmii-uav-waypoint','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(450,'API_ed0a1707acc22bfbed3fa40054eb6fcf','无人机绑定的载荷列表查询','','cmii-uav-waypoint','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(451,'API_5e20a049d88bed87f87aa5792c0f43f5','按无人机编码查询无人机详情查询','','cmii-uav-waypoint','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(452,'API_6dba74458a91bd2993cbf6dc17881d1f','error','','cmii-uav-waypoint','/error','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2024-09-09 09:16:30'),(453,'API_fa2680a92192033899a2481e8fb3bb6e','根据token获取用户基本信息','','cmii-uav-user','/system/checkPassword','POST',_binary '\0',_binary '\0','2020-07-01 06:23:39',1,'2024-10-11 15:37:12'),(454,'API_369462ef1c44ffe0533a3ac24f92a675','删除飞行作业信息:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-01 06:32:24',1,NULL),(455,'API_9929aaba8279679784e36c84961bcc74','删除:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-01 06:32:24',1,NULL),(456,'API_92c73e3d40fab73a5aac050b6022394c','根据用户id获取用户详细信息','','cmii-uav-user','/user/getDetailById','POST',_binary '\0',_binary '\0','2020-07-02 02:47:43',1,'2024-10-11 15:37:09'),(457,'API_7b05767d9cf76eaa468bda44cadf1b49','删除飞行报告附件地址:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(458,'API_ee6bb3f642cae30a2aa852cd20ea9d85','保存附件','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(459,'API_5006d92bf004145da52981978815385d','获取飞行作业信息:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(460,'API_ccca8f6d0bc59f0335afdc27e7149187','删除飞行作业信息:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(461,'API_9d48881435ce7a755d77524da0cda1fa','停止作业','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(462,'API_ed6e9f6be729ddcaf41760e44d951235','获取所有的飞行作业信息','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(463,'API_5bf4186e59ffc30663efa061c0a47630','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(464,'API_79f83b747fbef0b7c9604eeb9276b37e','暂停作业','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(465,'API_4b65648a2f649d0366a895e778f80d26','降落','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(466,'API_5783719d0bc46cedc5c150c0f3e80e10','确认着陆','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(467,'API_b312fe147b9dea48a801f5a5b608505f','起飞','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(468,'API_17e0abb32e70c4ae52ab541276deaddd','返航','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(469,'API_2b6c410b748f8a12c48c64d63bd8894b','选择飞机','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(470,'API_14e1c489991410b742810fee3bf68f38','继续作业','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(471,'API_42b45cd4e3f3c18b16903803d8e702a1','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(472,'API_1c1721a7d2fcb6c7810052b134fccf93','获取:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(473,'API_8e709398009f598c6402d484b485ff0d','删除:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(474,'API_eebb1a8f312d378489c69a51b12b5b10','获取所有的','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(475,'API_9ee7bbd2ed8e09382bfe4a8bc2bad7d7','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(476,'API_64750ec137c20b76752080c0f2f19e29','文件打包下载','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(477,'API_ffbc7a1cad559836808941b356d25429','获取所有的','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(478,'API_6e06d94ed40a1f0d3213d97bdbbd4c84','新增和保存(需要包括航点参数)','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,'2020-07-07 07:35:53'),(479,'API_5d592e3807192e9f4a28d0e0899917dd','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(480,'API_3c330fc21987a359514a529ab6c72d78','删除:根据id删除航线和航点','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(481,'API_7ded17fffa01fa4089f259e66aa30979','获取:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(482,'API_718da25f9291c7056e3c15173c0a6f01','导入指令集','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/importCommand','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(483,'API_4ed72c82c3a44d20eddf0d01c564f630','获取:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(484,'API_3ebf0860798da6da9bd70b60427ed12c','删除:根据id并保存剩下点','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/deleteFlushPoint','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(485,'API_c04ec3d2006a47a8845c4648ead477fc','获取所有的','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(486,'API_f0aafc5e186d9513795454d4e5365e83','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(487,'API_1498fec782d0271c47fa667ad81f94e2','根据id删除航点','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(488,'API_aa5572c64c2940354a85588593e4eceb','获取:根据搜索数据传入的对象','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/json','POST',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(489,'API_95152d1e517ef888fc53149a9a89d077','获取所有航点:根据航线id','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(490,'API_a96f958b5463beb6424def7b94cb15b1','根据航线id清空航点','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(491,'API_11956da36b4a1197dc3c38bc3e749395','uiConfiguration','','cmii-uav-waypoint-dev','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(492,'API_8e17f291de7a4cfa6c57a773fd2da2cc','swaggerResources','','cmii-uav-waypoint-dev','/swagger-resources','',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(493,'API_0f89d05898b9ac137feb928d49ba6512','securityConfiguration','','cmii-uav-waypoint-dev','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(494,'API_2a44fa7b71b2d945970e8f3fe3ccab4a','无人机绑定的载荷列表','','cmii-uav-waypoint-dev','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(495,'API_92fa68477d5837f207b3af3752c3eb37','载荷设备型号详情查询','','cmii-uav-waypoint-dev','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(496,'API_388e61483ca0a881e336adf8ed6aeabd','upload','','cmii-uav-waypoint-dev','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(497,'API_0f95eef2b37eb81b7d22499f1ef0c111','downloadByUrl','','cmii-uav-waypoint-dev','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(498,'API_f78185399115fc498fec7699c462c74b','无人机绑定的载荷列表查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(499,'API_823c89e5b58dd52412fbeeaf5214e9c5','按无人机编码查询无人机详情查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(500,'API_efe78dda29c2037aa2750db2f3f45a3f','设置无人机在线状态','','cmii-uav-waypoint-dev','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(501,'API_d2532b838b1952c7c197e5c505d09293','查询所有无人机编码列表','','cmii-uav-waypoint-dev','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(502,'API_bd03c2bf3273581657892b69ca202b65','查询无人机类型详情','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(503,'API_bf705ab447776c502982d8888cd6c51d','根据无人机编码查询该无人机是否存在','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(504,'API_b45d08d586c93f6310ce1cc6cb507a80','查询公司/机构所属的无人机编码列表','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(505,'API_c11c24f57d2f2fdc95758a05b61ce93a','模糊查询无人机编码和型号列表','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(506,'API_a68408da04ab5173aad0a4500ee142b1','errorHtml','','cmii-uav-waypoint-dev','/error','',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,'2020-07-02 03:22:52'),(507,'API_6b6d6d9e3ab6685d17548baf4822a486','查询无人机是否可用','','cmii-uav-device','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-03 03:13:13',1,'2024-10-11 01:36:45'),(508,'API_462dc48c0c4286daadfa9d2ee087edac','设置无人机可用状态','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-03 05:48:19',1,NULL),(509,'API_ddb994a1c31625b31395ccecedab0b64','查询无人机是否可用','','cmii-uav-waypoint','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-03 06:55:01',1,'2023-05-04 09:35:55'),(510,'API_9c9693f0afde811d434735fa9aea64ed','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavLoadBound','POST',_binary '\0',_binary '\0','2020-07-03 07:39:30',1,'2024-10-11 01:36:48'),(511,'API_f5ebc5c8257ab1f457eca7f3826d7d3f','查詢无人机在线状态','','cmii-uav-device','/api/uav/plane/queryOnlineStat','GET',_binary '\0',_binary '\0','2020-07-06 02:28:36',1,NULL),(512,'API_4a03921d3a436f3b7b513cd1b239e7ee','查询无人机在线状态','','cmii-uav-device','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2020-07-06 02:31:16',1,'2024-10-11 01:36:44'),(513,'API_f3264318305479db70f96e13ece707a0','查询无人机是否可用','','cmii-uav-surveillance','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-07 02:30:43',1,'2023-03-29 09:05:05'),(514,'API_b2990c8ee37e7e401bd1b6c50fb56255','新增和保存航线(不含航点参数)','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-07 07:35:53',1,NULL),(515,'API_ca2b99acd004cc719b49c56bcff0c90a','新增和保存航线(不含航点参数)','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-07 08:48:54',1,NULL),(516,'API_712ba6b5354ac38399751baa652f06fe','根据rsrp和snr计算网络信号','','cmii-uav-surveillance','/surveillance/testNetWorkLevel','POST',_binary '\0',_binary '\0','2020-07-10 07:04:18',1,NULL),(517,'API_06e9072fb150f382aab71481201ca329','无人机绑定的载荷列表查询','','cmii-uav-waypoint','/api/uav/plane/queryDevByUav','POST',_binary '\0',_binary '\0','2020-07-14 09:34:10',1,NULL),(518,'API_0b1b2735fc0cf315004cfb8aed751df7','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-surveillance','/surveillance/queryUavPoints','GET',_binary '\0',_binary '\0','2020-07-15 02:25:45',1,'2024-09-23 20:58:59'),(519,'API_cbdaa899dcb64c399d7bc9c219061d2e','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/surveillance/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-07-15 02:25:45',1,'2024-09-23 20:59:01'),(520,'API_bc1d3f8b20f89adbf62b85412505c010','无人机绑定的载荷列表查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryDevByUav','POST',_binary '\0',_binary '\0','2020-07-15 07:39:23',1,NULL),(521,'API_276eab3a3808374fbfe8de8d02d70ce2','downloadTif','','cmii-uav-airspace','/zydAirport/download','GET',_binary '\0',_binary '\0','2020-07-22 07:08:40',1,NULL),(522,'API_ab61426016701c41d6d105e449c758ac','按条件分页查询设备动作匹配信息','','cmii-uav-device','/api/uav/model/match/queryUavDevActionMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(523,'API_535c97cf50f3eda571ddfb1efb218e79','模糊查询设备类别列表','','cmii-uav-device','/api/uav/model/match/queryUavDevType','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(524,'API_39f82b2e8110c36984e600118ad1eaa4','模糊查询设备型号列表','','cmii-uav-device','/api/uav/model/match/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(525,'API_64332037c0514f52ddf78f4c9a3ab076','新增设备动作匹配','','cmii-uav-device','/api/uav/model/match/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(526,'API_fdd2e5544873ecbaf2ce307a7c5f5f10','设备动作匹配详情查询','','cmii-uav-device','/api/uav/model/match/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(527,'API_808739a8cc7b231e494cd30aec295f49','修改设备动作匹配','','cmii-uav-device','/api/uav/model/match/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(528,'API_654bf387a6252569a2e51365400158d3','删除设备动作匹配','','cmii-uav-device','/api/uav/model/match/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(529,'API_7f9871fdeff9ca1ae4a1835f5953b9f5','按条件分页查询设备型号匹配信息','','cmii-uav-device','/api/uav/model/match/queryUavDevTypeMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(530,'API_33795e48af2d27704a7d2245e9afe201','新增设备型号匹配','','cmii-uav-device','/api/uav/model/match/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(531,'API_6afc01708c868ce643c7135e63efa123','设备型号匹配详情查询','','cmii-uav-device','/api/uav/model/match/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(532,'API_d3c0da333c08da8260d868d0d600b7ef','修改设备型号匹配','','cmii-uav-device','/api/uav/model/match/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(533,'API_f111cc314d60f5a749d1c3373213e3d2','删除设备型号匹配','','cmii-uav-device','/api/uav/model/match/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(534,'API_b4ca16991a9190c8ead8995ad9e9f186','按条件分页查询摄像头型号信息','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamModelPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(535,'API_da49fb454fce5b2834b2a53687a3a522','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamMnfName','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(536,'API_041d7626b7c2540c8400f9cb2e538da2','模糊查询型号列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(537,'API_9a8ef42fcbaa6d74a61acf3854866da8','新增摄像头载荷设备型号','','cmii-uav-device','/api/uav/model/load/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(538,'API_ebe8dfc49ac98b561aba215179a73852','摄像头载荷设备型号详情查询','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(539,'API_018b39e95d79ce47d6e7c103b103db11','修改摄像头载荷设备型号','','cmii-uav-device','/api/uav/model/load/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(540,'API_296c30cc73141403079abf0bfddef826','删除摄像头载荷设备型号','','cmii-uav-device','/api/uav/model/load/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(541,'API_3f60dabec398f384b88a9c4e352190a0','按条件分页查询喊话器型号信息','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkModelPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(542,'API_c60c9eadda9a7835eee14f1cc3aa3f25','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkMnfName','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(543,'API_76aafb94843e22f337f51abb0f9a7eea','模糊查询型号列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(544,'API_f4b196b1114bce746e99ee28fde8d515','新增喊话器载荷设备型号','','cmii-uav-device','/api/uav/model/load/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(545,'API_1bf47e388ea94d766fed4cbb0176ada4','喊话器载荷设备型号详情查询','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(546,'API_70f8e855119aacbde21df4a29d18e3ad','修改喊话器载荷设备型号','','cmii-uav-device','/api/uav/model/load/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(547,'API_1dea3dc8f288a21ab0041d736dbb15e4','删除喊话器载荷设备型号','','cmii-uav-device','/api/uav/model/load/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(548,'API_27e13c40b0b9080b1d3840915c309862','按条件分页查询无人机型号信息','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneModelPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(549,'API_c3f718a97fd1262bbdeb851eff9b0ac7','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneMnfName','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(550,'API_5d4853d4e32a4371a8787a64b9ed6db6','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(551,'API_1391e81438612de83157e4b78c5b696f','模糊查询无人机形态列表','','cmii-uav-device','/api/uav/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(552,'API_9e7794344e69ecea91c621c1296b3ecf','模糊查询无人机尺度列表','','cmii-uav-device','/api/uav/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(553,'API_bc9f0cf58ba25405445d8872014ff932','新增无人机类型信息','','cmii-uav-device','/api/uav/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(554,'API_a0a1e7f64038265e8712a57d6d1784f6','查询无人机类型详情','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(555,'API_15d1fb8abe44cd542d1327486aa58d95','修改无人机类型信息','','cmii-uav-device','/api/uav/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(556,'API_23881e8cdb13a0d03a8d368dfa367b9a','删除无人机类型信息','','cmii-uav-device','/api/uav/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(557,'API_5899c9049b635f4549f8979c6044dcf4','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevActionMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(558,'API_93fb6152cb3c938b50538beeb30d2d8c','模糊查询设备类别列表','','cmii-admin-data','/api/uav/model/match/queryUavDevType','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(559,'API_7218da2ce96942496fbacd9bd837c00e','模糊查询设备型号列表','','cmii-admin-data','/api/uav/model/match/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(560,'API_1967b614f9cf51102e550218537873c8','新增设备动作匹配','','cmii-admin-data','/api/uav/model/match/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(561,'API_51d3f67adccac7ef512df260539a3902','设备动作匹配详情查询','','cmii-admin-data','/api/uav/model/match/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(562,'API_b7d1c092053f837b75996c9db918b67a','修改设备动作匹配','','cmii-admin-data','/api/uav/model/match/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(563,'API_76f9d01d647615dda7a7158a42bdca08','删除设备动作匹配','','cmii-admin-data','/api/uav/model/match/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(564,'API_3f2a925129ec77ed72d1ef4387aa5f32','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevTypeMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(565,'API_1cbbe06cd6da71f1dfec4b7509c620da','新增设备型号匹配','','cmii-admin-data','/api/uav/model/match/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(566,'API_53161d80f92973b971ed259fdf3d2fc7','设备型号匹配详情查询','','cmii-admin-data','/api/uav/model/match/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(567,'API_dce52a7fb09f48385fe0cb32e9137adf','修改设备型号匹配','','cmii-admin-data','/api/uav/model/match/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(568,'API_65917752e367d55b3ab9a76284ff2785','删除设备型号匹配','','cmii-admin-data','/api/uav/model/match/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(569,'API_6bc8786242b7900ac77f6b4f98ca96af','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModelPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(570,'API_3db4b7d45b2d912bd24ab010ebdac54d','模糊查询生产厂家列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamMnfName','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(571,'API_e8b92a884917cd0f01dedd5d7e81adc1','模糊查询型号列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(572,'API_b203caf0255effc1c5aa72db5c918636','新增摄像头载荷设备型号','','cmii-admin-data','/api/uav/model/load/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(573,'API_d8293f15d5a7331d6a14552d6eda501a','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(574,'API_af0d502a1a1d1f95667ed3a6335ec1ac','修改摄像头载荷设备型号','','cmii-admin-data','/api/uav/model/load/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(575,'API_4eb7510d5465b0d5ab9416e6b63e9587','删除摄像头载荷设备型号','','cmii-admin-data','/api/uav/model/load/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(576,'API_ca99bf6c575bdde89076ddd73baeece7','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModelPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(577,'API_fbf8d455f2742aea782642ff87509361','模糊查询生产厂家列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkMnfName','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(578,'API_b7dce75bec39d0076cb80f8a003dd368','模糊查询型号列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(579,'API_f511b0f4cb2548b6e0e6e768064215ca','新增喊话器载荷设备型号','','cmii-admin-data','/api/uav/model/load/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(580,'API_69a5e753c6a4947c280fa435e5cc382d','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(581,'API_c4ce8403eb10f19049ea6e419c68f154','修改喊话器载荷设备型号','','cmii-admin-data','/api/uav/model/load/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(582,'API_f4da566fc2be7da6d82c5a70c400bd77','删除喊话器载荷设备型号','','cmii-admin-data','/api/uav/model/load/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(583,'API_a49efce53d6b05d74b65b58476f38be8','按条件分页查询无人机型号信息','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModelPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(584,'API_6ff473dd987a8c76ed8b2f4984296457','模糊查询生产厂家列表','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneMnfName','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(585,'API_c20039770b6aae7e8a1b7745f6327bcb','模糊查询无人机型号列表','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(586,'API_c67c734fd9d0de395ea13bef968719b7','模糊查询无人机形态列表','','cmii-admin-data','/api/uav/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(587,'API_63afe1ce184a8dd531d15b8b22d2c6f2','模糊查询无人机尺度列表','','cmii-admin-data','/api/uav/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(588,'API_74e1905baffd261b7bffb8d5f05735cd','新增无人机类型信息','','cmii-admin-data','/api/uav/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(589,'API_0ba560960014c0310836e8a0c254e729','查询无人机类型详情','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(590,'API_33fbd6b1818e72a3dfaaf1e998d2ec5b','修改无人机类型信息','','cmii-admin-data','/api/uav/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(591,'API_b8ce467f847d20750ff5a7c5c6500dbd','删除无人机类型信息','','cmii-admin-data','/api/uav/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(592,'API_3f2d5ac4692a6e334f1803d6e43b1b1f','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2022-04-25 02:50:11'),(593,'API_e91843e6c80f66232751894ca6daab2a','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2022-04-25 02:50:11'),(594,'API_73a8cc79afcfb72994c36e356120d1b6','swaggerResources','','cmii-admin-data','/swagger-resources','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2022-04-25 02:50:11'),(595,'API_722c394501c759be1a1615c1195dce7e','errorHtml','','cmii-admin-data','/error','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2024-09-09 09:15:07'),(596,'API_eb363709497bd1f067fd159e80929ffc','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:42',1,NULL),(597,'API_a7012c3053806521be260c0b4d9d15c8','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:42',1,NULL),(598,'API_d1ca7317c3bb33925d1902305959cf89','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:42',1,NULL),(599,'API_2c62ea9a254c0cc05afa234de6ed89d4','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:43',1,NULL),(600,'API_58aa8ba38cfdfcaf93815c094cbec20c','按条件分页查询无人机型号信息','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModelPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:43',1,NULL),(601,'API_604e3074af14cbb30c078126e109e9e3','发布拼图结果','','cmii-uav-airspace','/zydPicture/picStatus.do','GET',_binary '\0',_binary '\0','2020-07-27 09:02:09',1,'2020-07-28 05:55:25'),(602,'API_0c90f635daeb5104d2e03b3464457e85','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavDevList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(603,'API_9e14e7a1bafba4832369d961c5b08825','模糊查询载荷编码列表','','cmii-uav-device','/api/uav/load/queryDevCodeList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(604,'API_80ce85c003494389334805ba595d55c8','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryDevTypeList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(605,'API_ac0fb801f30af2ab6ea728b1c1011e42','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryDevMnfList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(606,'API_e9bb92c8d69cae8f377e084fa18e3241','模糊搜索设备型号列表','','cmii-uav-device','/api/uav/load/queryDevModelList','POST',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(607,'API_1c2e464bff9399f17f039d6b53831215','模糊查询包括子公司的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCode','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,'2024-10-11 01:36:52'),(608,'API_53b3b597f778587f08f78086299c4ceb','按条件分页查询包括子公司的无人列表','','cmii-uav-device','/api/uav/plane/queryUavPlanePage','POST',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,'2024-10-11 01:36:44'),(609,'API_a307b67340f5abaf329719766ee25fba','按无人机编码查询无人机详情查询','','cmii-uav-device','/api/uav/plane/queryUavPlaneDetail','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(610,'API_d3f5df26ecf060c6ac3e7f88391afd06','获取载荷分页列表','','cmii-uav-device','/api/uav/load/queryUavLoadPage','POST',_binary '\0',_binary '\0','2020-07-27 09:44:31',1,'2024-10-11 01:36:53'),(611,'API_b087fe64486964245b2744de9258e2b0','获取新载荷编码','','cmii-uav-device','/api/uav/load/queryUavLoadCode','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(612,'API_2754c22a1a1fd50c30be4bc58a5b1400','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavLoadList','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,'2024-10-11 01:36:43'),(613,'API_d4f1d70e72fb7529b06d5d099fea9d7b','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/load/checkLoadBoundRelations','POST',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(614,'API_bc16b644074166c2d1297760d7877e1e','模糊查询载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadCodeList','POST',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(615,'API_8a220c939afe760f0127208661419e44','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadTypeList','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(616,'API_6192eb0ebbceef9e553c52866f06cf27','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryLoadMnfList','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(617,'API_482d2def80cd0512d232aedca4ee64e9','模糊搜索设备型号列表','','cmii-uav-device','/api/uav/load/queryLoadModelList','POST',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(618,'API_a619c2f923c705295dcfea1114ea3066','发布拼图结果','','cmii-uav-datahandler','/zydPicture/upload.do','GET',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(619,'API_322b13c9cc7d1386f9ac4cc9a1508483','查询拼图状态','','cmii-uav-datahandler','/zydPicture/picStatus.do','GET',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,'2020-07-31 07:05:48'),(620,'API_7e7446f72cac0bd55c2511901258974c','securityConfiguration','','cmii-uav-datahandler','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(621,'API_9b8aa1082148f1019822ab2547d3edd8','uiConfiguration','','cmii-uav-datahandler','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(622,'API_f3a491558a67403231c033d5d2fcc3bb','swaggerResources','','cmii-uav-datahandler','/swagger-resources','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(623,'API_28b3499c95b13d5bc0a5f930d87758bc','errorHtml','','cmii-uav-datahandler','/error','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,'2020-07-29 06:25:18'),(624,'API_b68b780af07eb5a6f3f1ef29b5bbc3b3','删除飞行报告附件地址:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(625,'API_23fbb52d1a3086d932dc34400a42d7ed','保存附件','','cmii-uav-mission-dev','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(626,'API_a44941b7c68138d85ba19540888ae46b','获取飞行作业信息:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(627,'API_ab9f8f043bf10fa15591320a42c4ba71','删除飞行作业信息:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(628,'API_13f49e16410ca88d34d6d0dc8282039d','停止作业','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(629,'API_a7a74a7359ab91a37fd0128025a36d81','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(630,'API_032f6a472ad29eba139dd9ecc275b39c','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(631,'API_20c7e44e3465cb2e938a2a6fa9e2681f','选择飞机','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(632,'API_c3b349cfd7ca7a1b90da994a6fb811fd','起飞','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(633,'API_c5a8596c9abd2f46eb8928415cc47e43','暂停作业','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(634,'API_9b036697a082770753eed623d5cb600c','降落','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(635,'API_083df0f500ffb2b57a4b8a960868d3eb','确认着陆','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(636,'API_e8eb7ca9f583cc3b1196f7d8da3f0b6b','返航','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(637,'API_8c9722048a44a833bf9dc16bc9eed257','继续作业','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(638,'API_72b1c589129e55af65a30d38297b7dac','获取:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(639,'API_2b54ed8766a95dfcf6849e250fc6e6c1','删除:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(640,'API_5c82e201198154a672d13a514ae3a0b7','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(641,'API_67894e8a572af492c7b55ff6af3b524d','文件打包下载','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(642,'API_5a1063e7a1fc0298f4c3f81f4fab4e62','新增和保存(需要包括航点参数)','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(643,'API_7cc98ab2429f72588dfd029a0c73cb52','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(644,'API_7e31e79fc32bc58a16f91169305a7401','获取:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(645,'API_d8821a3df137446203c2c25bec85c888','新增和保存航线(不含航点参数)','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(646,'API_e68003ffb1b201d8c74757da895c92dd','删除:根据id删除航线和航点','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(647,'API_f9c89d02164cc3b9319c90a0a42460c1','获取:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(648,'API_46763542c352a5ae6680cdfecca57529','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(649,'API_1cacba8c6f1de0897ab47363b3d83b62','根据航线id清空航点','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(650,'API_1591fff4d18f05b77066a4096b7db7a4','获取所有航点:根据航线id','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(651,'API_6e21f0450ebef9af96cca2fe4c24e4d9','根据id删除航点','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(652,'API_ed7fbacaa97d25c113e49ea5de94a8ca','swaggerResources','','cmii-uav-mission-dev','/swagger-resources','',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(653,'API_1c7378d1a7777697c169499ff15167d2','uiConfiguration','','cmii-uav-mission-dev','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(654,'API_0d4755f8ada706eaf76af41bf7d7f473','securityConfiguration','','cmii-uav-mission-dev','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(655,'API_ff29669b3ccb8e9b4d3f43a0f167c0f5','无人机绑定的载荷列表','','cmii-uav-mission-dev','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(656,'API_cc880669c82e9b47ad9fb878bfe5bd1d','载荷设备型号详情查询','','cmii-uav-mission-dev','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(657,'API_e6e6b5f809433f60f0e1bc21d13f3c66','downloadByUrl','','cmii-uav-mission-dev','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(658,'API_f3bc26673cbe90dd73294abf81b33769','upload','','cmii-uav-mission-dev','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(659,'API_feab5b24fe03213dcf7d320c25c5395c','设置无人机可用状态','','cmii-uav-mission-dev','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(660,'API_2a3af7bd985f01a75bbc685bc20cd421','设置无人机在线状态','','cmii-uav-mission-dev','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(661,'API_306809c9f57903aaea195ab9cf80b9bd','无人机绑定的载荷列表查询','','cmii-uav-mission-dev','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(662,'API_5ad9bdb6ee05adca8aa61aaec2f6ba61','查询所有无人机编码列表','','cmii-uav-mission-dev','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(663,'API_5f617715c4820e55883e18409179e0fd','按无人机编码查询无人机详情查询','','cmii-uav-mission-dev','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(664,'API_5c4601cce6c8979556400c03e736dde2','根据无人机编码查询该无人机是否存在','','cmii-uav-mission-dev','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(665,'API_eb7239432ac109f18519dbac5e0a1bf6','模糊查询无人机编码和型号列表','','cmii-uav-mission-dev','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(666,'API_edf969666a889d3259e089fc4b768512','查询公司/机构所属的无人机编码列表','','cmii-uav-mission-dev','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(667,'API_0d18239ac43e5ada7e02f025bc3f3f91','查询无人机类型详情','','cmii-uav-mission-dev','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(668,'API_7e457275af7cbc1c5ccfaa2383dd649d','errorHtml','','cmii-uav-mission-dev','/error','',_binary '\0',_binary '\0','2020-07-30 08:12:12',1,'2020-07-30 08:12:12'),(669,'API_f296644f1e4b49618081a04992fcd41d','文件打包下载','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(670,'API_b442c7bd88f6d60098ba92755d037f42','获取:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(671,'API_0cbeab2252a7e2d50d694f3aa5b2af36','删除:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(672,'API_7ea59b7fbe948c19168ce7154734b25f','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(673,'API_d638ead72e19267864701ff2ecc4cd4b','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(674,'API_0713d1929aaa9a06f2982a4c8872e80d','选择飞机','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(675,'API_8887a218978591885a8b7a26fcd2ed02','起飞','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(676,'API_6165afd9cb227885ea8b2f2254a6f5f0','暂停作业','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(677,'API_6997b71b7e99e813027693c82c3c4e0d','继续作业','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(678,'API_b785705fec61b94235fe2620f744905c','返航','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(679,'API_62d9a85e557684563447a41558689e4d','降落','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(680,'API_d3d19ab457290e2bdf50305c38e754de','确认着陆','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(681,'API_62b4d39617de7ce79b029f09c7553aab','获取飞行作业信息:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(682,'API_b1b4433712bbbca796c7c900153d8580','删除飞行作业信息:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(683,'API_d9a837704cc4817c8b81bb803f57c9b3','停止作业','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(684,'API_e9c49bd6eafff28ce0bf5645787e2b39','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(685,'API_76adccee6515efaa0c0b4264ae889e9d','删除:根据id删除航线和航点','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(686,'API_a8613a36aab4b62771759ef2d7230fdf','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(687,'API_409b5246600b7ffe8f6953a5ed691d16','新增和保存航线(不含航点参数)','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(688,'API_1034fe8f9bc80778bc63ad8ca3c86925','获取:根据id','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(689,'API_aec34c4dd45bac5a2cd5c54dd5143a25','新增和保存(需要包括航点参数)','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(690,'API_969fd11f15b8c304d99d2ad2e2e34894','删除飞行报告附件地址:根据id','','cmii-uav-mission','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(691,'API_3b30129d17353c961e4291a6e9b3f37d','保存附件','','cmii-uav-mission','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(692,'API_0ea3e1179b325977e761237f453a8b17','根据id删除航点','','cmii-uav-mission','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(693,'API_05bac7c26065554354ff21415e4efbbd','获取所有航点:根据航线id','','cmii-uav-mission','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(694,'API_f7cd79aa093021f6bed3aca69813fff6','根据航线id清空航点','','cmii-uav-mission','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(695,'API_a212f5a4fbe7aa75bb4cdea80de5843c','获取:根据id','','cmii-uav-mission','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(696,'API_d54bc3f54e1661c8427ac6363804fa16','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(697,'API_19cfef19173f25417b0904d4be0d8015','securityConfiguration','','cmii-uav-mission','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2022-04-25 04:00:35'),(698,'API_2b8687f49ca365335c5838b9f75540c0','uiConfiguration','','cmii-uav-mission','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2022-04-25 04:00:35'),(699,'API_10400f2566e22f60d5db124fdd35132c','swaggerResources','','cmii-uav-mission','/swagger-resources','',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2022-04-25 04:00:35'),(700,'API_d800bde2157daf1a7004ff9ee2008023','downloadByUrl','','cmii-uav-mission','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(701,'API_7de03fd9592cd80a577f5a3b04be240a','upload','','cmii-uav-mission','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(702,'API_2c772d6da7b1ae3c1a781b55b2d2a0f3','载荷设备型号详情查询','','cmii-uav-mission','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(703,'API_be74c779b10aa8c29b238297ab8e1ffd','无人机绑定的载荷列表','','cmii-uav-mission','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(704,'API_41715de417bbbed33dc48b6eb5f8a37d','设置无人机在线状态','','cmii-uav-mission','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2023-07-18 04:08:27'),(705,'API_1eb2790593a57183b126a41ea7351127','查询公司/机构所属的无人机编码列表','','cmii-uav-mission','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2023-07-18 04:08:27'),(706,'API_cdbd9cce04ab08896fdb045ab3e6bcc1','查询所有无人机编码列表','','cmii-uav-mission','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(707,'API_56c6655597c676633cbdc96b584f5524','模糊查询无人机编码和型号列表','','cmii-uav-mission','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(708,'API_9ed43647035b607cb38120acfa408233','无人机绑定的载荷列表查询','','cmii-uav-mission','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,NULL),(709,'API_a623a99289607f227f42e042763c09f8','根据无人机编码查询该无人机是否存在','','cmii-uav-mission','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2023-07-18 04:08:27'),(710,'API_63fef88b73fd2975ad046da78506cdb1','查询无人机是否可用','','cmii-uav-mission','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2023-07-18 04:08:27'),(711,'API_e3b214b620d2c3aadca75a586af6a81d','查询无人机类型详情','','cmii-uav-mission','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(712,'API_14218b79282bc8ed2ea935e0a383a95a','按无人机编码查询无人机详情查询','','cmii-uav-mission','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(713,'API_71dc636ca372766dc0ef5d750e4ade91','errorHtml','','cmii-uav-mission','/error','',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2024-10-10 08:57:11'),(714,'API_1f0c64327ac9e6f437fea4f89b45d7d5','保存','','cmii-uav-waypoint','/api/uav/waypoint/airline/save','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(715,'API_dac59707cfe46fcd4da6bc3f140b4a20','复制','','cmii-uav-waypoint','/api/uav/waypoint/airline/copy_air_line','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(716,'API_3426a3c0d55683ae2423c3a1083d38a7','暂存','航线ID不存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/temp_store','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,'2020-08-04 09:19:32'),(717,'API_98cf057653544929096a894a684e7407','批量删除和删除','','cmii-uav-waypoint','/api/uav/waypoint/airline/delete_air_line','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(718,'API_5b72d08145bc75740f47c86b48df5ba7','获取详情','','cmii-uav-waypoint','/api/uav/waypoint/airline/query_air_line_detail','GET',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(719,'API_a9e96281fdd0d4a3d3ba51867f17cc52','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/airline/query_air_line_page_list','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(720,'API_2163be27db64d75dd697f21be9bf5e78','保存航点信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/save_air_point_list','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,'2020-07-31 06:10:22'),(721,'API_998e3f23e45e7189409108f467a1549a','获取航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/query_air_point_list','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,'2020-07-31 06:10:22'),(722,'API_d3fa5fe17dc3798e1212098d17f63601','批量删除和删除','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info','DELETE',_binary '\0',_binary '\0','2020-07-31 05:55:50',1,'2024-09-09 09:16:29'),(723,'API_f9271bd702c504a93f8e41afacc50d70','新增航线信息','在新增航点(airpoint_info_list)的时候就已经添加了基本的航线信息,所以此方法暂时不用','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info','POST',_binary '\0',_binary '\0','2020-07-31 05:55:51',1,'2020-08-03 01:32:02'),(724,'API_9a2649fafb8f84bc320bc41ba7358ff8','查询上传状态','','cmii-uav-datahandler','/zydPicture/uploadStatus.do','GET',_binary '\0',_binary '\0','2020-07-31 07:05:48',1,NULL),(725,'API_98df3309de0afd8e717d3078e53cfb5f','航线详情','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_detail/{id}','GET',_binary '\0',_binary '\0','2020-08-03 01:32:02',1,'2024-09-09 09:16:29'),(726,'API_d6eb88883fdc9dae618c7177adb0ffbc','无人机绑定的载荷列表查询','','cmii-uav-mission','/api/uav/plane/queryDevByUav','POST',_binary '\0',_binary '\0','2020-08-03 01:38:52',1,NULL),(727,'API_781dd070cddb2a004c934621bebadabc','修改航线信息(第一、二、三步)','只需传改步骤的数据;第一步参数:id(必填),lineName(必填),airZone(必填),airZoneId(必填),airZoneLat,airZoneLng,step(必填),remarks;第二步参数:id(必填),step(必填),uavModel(必填),uavModelId(必填),hangarModel,hangarModelId,loadModels;第三步参数:id(必填),step(必填)','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info','PUT',_binary '\0',_binary '\0','2020-08-03 05:38:57',1,'2021-06-01 09:28:46'),(728,'API_7f98ef6778b426a144a186da223fa8f4','暂存','航线ID存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/temp_store','PUT',_binary '\0',_binary '\0','2020-08-03 05:38:57',1,'2020-08-04 09:19:32'),(729,'API_c7048bd2ab2c365b75fee2127a271437','复制航线','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_clone','POST',_binary '\0',_binary '\0','2020-08-03 05:38:57',1,'2024-09-09 09:16:30'),(730,'API_dc0b21d3c6ec7d41164cb0e0d85c45b6','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list','GET',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,NULL),(731,'API_605c53d1d9a98047a9c726a89db78c38','获取航点列表信息','点击某一条航线返回对应的航点列表信息','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list','GET',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,'2024-09-09 09:16:29'),(732,'API_4ed9ca889da09822cd986a275addee67','修改航线标题/位置','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info','PUT',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,'2024-09-09 09:16:29'),(733,'API_c10b4b5fad0bbb5d2114b1d6b14b7675','修改航点信息','点击修改点位','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_list','POST',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,NULL),(734,'API_c4aa1cdf76ee74a17cd075d522ca63fb','创建航线和航点','打点完成提交到数据库,航线和航点同时保存','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_with_airpoints','POST',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,'2024-09-09 09:16:30'),(735,'API_d8b3556b4d67f2d75daefb6efabe22e3','更新航点信息','点击修改点位','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list','PUT',_binary '\0',_binary '\0','2020-08-05 06:48:15',1,'2024-09-09 09:16:30'),(736,'API_78e2383fdb5a642635a8ca5d00d7168e','新增航线信息(暂存)','航线ID不存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_temp_info','POST',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,'2020-08-06 09:10:26'),(737,'API_9834e33b2408b72c46f427255515bfc8','修改航线信息(暂存)','航线ID存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_temp_info','PUT',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,'2020-08-06 09:10:26'),(738,'API_7aa62de7923f9993545d3e046051a403','保存航点信息','航点ID存在时','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_list','PUT',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,NULL),(739,'API_e2436ba96ccb5b569e9c4efd4e5aee53','保存航点信息','航点ID不存在时','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_list','POST',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,'2020-08-05 07:34:01'),(740,'API_e34689f2a839b53e73bdbda29417ebdf','修改航点信息','航线ID存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list','PUT',_binary '\0',_binary '\0','2020-08-05 07:27:29',1,'2021-06-01 09:28:46'),(741,'API_bf1e1c419fcc72a4a883af68adb27b70','绘制航点接口(创建航点)','航线ID不存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list','POST',_binary '\0',_binary '\0','2020-08-05 07:27:29',1,'2021-06-01 09:28:46'),(742,'API_7b3c844a3990bd6e08028214fa18ad31','获取航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list','GET',_binary '\0',_binary '\0','2020-08-05 07:27:29',1,'2024-09-09 09:16:30'),(743,'API_aa3a01e2185589905394335605976d0a','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list','GET',_binary '\0',_binary '\0','2020-08-05 07:59:36',1,NULL),(744,'API_ed57b6ddcfdbdf623f387c887d0cca2d','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list/{pageSize}','GET',_binary '\0',_binary '\0','2020-08-06 08:37:48',1,NULL),(745,'API_5ea8dd004f64aac5bb62c6ac0b7f4db5','分页查询航线列表','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list','POST',_binary '\0',_binary '\0','2020-08-06 08:37:48',1,'2021-05-12 06:05:53'),(746,'API_35e04cdb3c8af696c02f1bf5f3a50c41','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list/{pageSize}','GET',_binary '\0',_binary '\0','2020-08-06 09:01:03',1,NULL),(747,'API_40b263c32050cf473f41de0d6ed3c9ef','分页条件筛选航线列表','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list_with_filters','POST',_binary '\0',_binary '\0','2020-08-07 06:21:43',1,'2024-09-09 09:16:30'),(748,'API_3b7c79a51c08db95bc7b8df371edb4a9','查询指定航线列表项','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list_item/{id}','GET',_binary '\0',_binary '\0','2020-08-07 09:35:12',1,'2021-05-12 06:05:53'),(749,'API_606c261214874cb5542b27fe72d58010','APP端航线分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list','POST',_binary '\0',_binary '\0','2020-08-07 09:35:12',1,'2024-09-09 09:16:30'),(750,'API_5d0ea7b1b59bb1814fcf1b882ab0b183','下拉菜单模糊查询','支持空域/创建人/飞行设备','cmii-uav-waypoint','/api/uav/waypoint/airline/down_list_fuzzy_menu_info','GET',_binary '\0',_binary '\0','2020-08-07 10:09:49',1,NULL),(751,'API_0c7e64a3d88deea2a62f5dcac1a09403','下拉菜单模糊查询','支持空域/创建人/飞行设备','cmii-uav-waypoint','/api/uav/waypoint/airline/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-08-07 10:23:17',1,'2024-09-09 09:16:30'),(752,'API_644f10c6ad66e5fb250f518225dda5da','获取用户可用所有空域','','cmii-uav-airspace','/zydAirspace/getAirspaceByUser.do','GET',_binary '\0',_binary '\0','2020-08-10 02:25:28',1,NULL),(753,'API_01cf9be91d4536f51fc882230a27eef1','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-10-11 01:36:53'),(754,'API_0cfa74fce5f680fc926301b0857cf378','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavMode','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-10-11 01:36:44'),(755,'API_0739754e32b2127016a920b0cb80a3d7','模糊查询包括子公司的机库列表','','cmii-uav-device','/api/uav/plane/queryHangar','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-10-11 01:36:44'),(756,'API_5a3a407174868a09aeae2a0bafa11cd6','根据产品型号查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,NULL),(757,'API_53132a6b2b39271d22722286e2924043','根据生产厂家查询产品型号列表','','cmii-uav-device','/api/uav/plane/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,NULL),(758,'API_19fdc8abdf22a8b3898a6846d096db75','模糊查询所属机库','','cmii-uav-device','/api/uav/plane/queryBelongHangar','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,NULL),(759,'API_299ba405af4b7dc97e0856e0d0d4a124','按无人机编码查询指定公司范围内的无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-10-11 01:36:52'),(760,'API_3bc7e822504b27281de4048ced9e7a91','按条件分页查询无人机信息','','cmii-uav-device','/api/uav/hangar/queryUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(761,'API_acd39e3a1198a7505c594678ca65aac8','获取无人机第一张照片','','cmii-uav-device','/api/uav/hangar/queryUavPicByCode','GET',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(762,'API_2a84cb4dad4a31dd3938f871c1da1eb1','生成新无人机编码','','cmii-uav-device','/api/uav/hangar/newUavCode','GET',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(763,'API_d3b4623d6de50136316338e6bd4885ce','新增无人机','','cmii-uav-device','/api/uav/hangar/addUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(764,'API_eb1ee4f15076193c2a982a515af3bdae','绑定无人机','','cmii-uav-device','/api/uav/hangar/bindUav','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,'2024-10-11 01:36:52'),(765,'API_71c66ca4108af813ad7ed2f59978a9cc','删除无人机','','cmii-uav-device','/api/uav/hangar/deleteUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(766,'API_de4fc6068a898a455911098f0d41c04c','修改无人机','','cmii-uav-device','/api/uav/hangar/updateUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(767,'API_d1a48771ee63cc754b1248c85ec39276','批量删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,'2024-10-11 01:36:47'),(768,'API_adb9aa725cbd21f42b6151ab54a8683f','按无人机编码查询无人机详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(769,'API_b278b709e5f7620928505ccd4df6d5bf','查询公司/机构所属的无人机编码列表','','cmii-uav-device','/api/uav/hangar/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(770,'API_7270af0fb5d2fcb6534ee62f6bc42ab1','新增机库','','cmii-uav-device','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2020-08-11 08:59:05',1,'2024-10-11 01:36:52'),(771,'API_1d3dde17bde2cda631d9e36fd71399e5','生成新机库编码','','cmii-uav-device','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2020-08-11 08:59:05',1,'2024-10-11 01:36:43'),(772,'API_88b554c90ec24df24a4ee90dd651f12d','修改机库','','cmii-uav-device','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2020-08-11 09:52:46',1,'2024-10-11 01:36:52'),(773,'API_848589d443b1e05b1deae5cec66bdf4b','按机库编码查询机库详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByHangarCode','POST',_binary '\0',_binary '\0','2020-08-12 03:03:28',1,NULL),(774,'API_1316cfd99d03f0378e9a24555bb811e7','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangar','POST',_binary '\0',_binary '\0','2020-08-12 03:03:28',1,NULL),(775,'API_77e3faf92b7a34862394232d003ef579','删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavHangar','POST',_binary '\0',_binary '\0','2020-08-12 03:03:28',1,'2024-10-11 01:36:45'),(776,'API_6e20e41c7a82ad074fa614440190d3ee','查询无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryDetailByModel','GET',_binary '\0',_binary '\0','2020-08-12 03:14:40',1,NULL),(777,'API_c37e85a2913e4b824564a34721e7960e','查询公司/机构所属的机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2020-08-12 08:44:51',1,'2024-10-11 01:36:49'),(778,'API_609cf7baddd46be1f9ef360af88c8b30','生成新视频编码','','cmii-uav-device','/api/uav/hangar/newHangarVideoCode','GET',_binary '\0',_binary '\0','2020-08-12 08:44:51',1,'2024-10-11 01:36:51'),(779,'API_5bdceb6f301895ac2055640b052a1f8e','模糊查询机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarCode','POST',_binary '\0',_binary '\0','2020-08-12 10:07:10',1,NULL),(780,'API_bcf275e55409fb916bba2fcb320077ce','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfName','POST',_binary '\0',_binary '\0','2020-08-12 10:07:10',1,NULL),(781,'API_9fd597f5bd1a8387ece7f7c03f3a7e70','模糊查询机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarMode','POST',_binary '\0',_binary '\0','2020-08-12 10:07:10',1,NULL),(782,'API_cbf0b91c20d81b2ee835f556463fa292','根据产品型号查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-13 03:29:17',1,NULL),(783,'API_0bd385e47244e1a65c97aff7accbe3fc','模糊查询机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarType','POST',_binary '\0',_binary '\0','2020-08-13 03:29:17',1,'2020-08-13 09:54:00'),(784,'API_1c99bd2265c4567080bb871ac4e94855','根据生产厂家查询产品型号列表','','cmii-uav-device','/api/uav/hangar/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-13 03:29:17',1,NULL),(785,'API_987944263146a10126587f851119f60c','获取可绑定无人机','','cmii-uav-device','/api/uav/hangar/getUav','POST',_binary '\0',_binary '\0','2020-08-13 07:49:26',1,NULL),(786,'API_8b67f52396c9b4998d9eca80309a6300','查询机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetail','GET',_binary '\0',_binary '\0','2020-08-13 07:49:26',1,'2024-10-11 01:36:50'),(787,'API_ab7e676c1d45bd807720064ce249147b','获取航点列表所有信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_baseinfo_list','GET',_binary '\0',_binary '\0','2020-08-13 07:56:27',1,'2024-09-09 09:16:30'),(788,'API_d50850d131ccdbe9c070cebb638b31ec','查询省份信息列表','','cmii-admin-data','/public/api/admin/area/province/list','GET,POST',_binary '\0',_binary '\0','2020-08-13 08:28:02',1,'2024-09-09 09:15:07'),(789,'API_89cf3952de0bd4ae4b102d3b0ec04730','查询区域下面子区域列表','','cmii-admin-data','/public/api/admin/area/subarea/list','GET,POST',_binary '\0',_binary '\0','2020-08-13 08:28:02',1,'2024-09-09 09:15:05'),(790,'API_5494210933a8193ffd84f6bb1f731ced','添加字典属性','添加字典属性','cmii-admin-data','/api/admin/dictionary/add','POST',_binary '\0',_binary '\0','2020-08-13 08:28:02',1,'2024-09-09 09:15:08'),(791,'API_52723d911feedd347c2c4dfea68a8c1d','字典属性上移动','字典属性上移动','cmii-admin-data','/api/admin/dictionary/moveUp','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:08'),(792,'API_3a03a398c5b5aca2112cc1ee26ea1ca7','字典属性下移动','字典属性下移动','cmii-admin-data','/api/admin/dictionary/moveDown','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:04'),(793,'API_99cd090ae437761a844e1366239bafc8','字典查询','字典查询','cmii-admin-data','/api/admin/dictionary/query','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:05'),(794,'API_cc5d51f761b86e43c71192ad16c8ed10','字典check','字典check','cmii-admin-data','/api/admin/dictionary/check','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:07'),(795,'API_5d077f1daf3a374171468eb52ba961f1','查询类别对应的字典code映射','查询类别对应的字典code映射','cmii-admin-data','/api/admin/dictionary/queryByTypeCode','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:06'),(796,'API_cbb5da8278aa4a91e9aea8d93a3967de','模糊查询本地语言对应的数据字典属性','模糊查询本地语言对应的数据字典属性','cmii-admin-data','/api/admin/dictionary/queryLocalByKeyWords','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:04'),(797,'API_0ccdea8c8d91095fcea830b9be8b6605','更新字典属性','更新字典属性','cmii-admin-data','/api/admin/dictionary/update','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:06'),(798,'API_279c3912b0662a0b7d24b188c8278c8b','删除字典属性','删除字典属性','cmii-admin-data','/api/admin/dictionary/delete','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:04'),(799,'API_7cf67447d82dbc2aae3f58416b95d6cf','禁用字典属性','禁用字典属性','cmii-admin-data','/api/admin/dictionary/disable','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:06'),(800,'API_7c1af759105a09feac5129c0a5749699','恢复可用字典属性','恢复可用字典属性','cmii-admin-data','/api/admin/dictionary/enable','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:07'),(801,'API_0b5c9de8f3a6f8a12e48665a0939216a','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/GetDictName','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(802,'API_d0a8b82a53afe76c478d1010dfe1ff01','添加字典类型','','cmii-admin-data','/api/admin/dictionaryType/add','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:08'),(803,'API_c5d7432a0e3bae534a3d6ea3665237e2','修改字典类型','','cmii-admin-data','/api/admin/dictionaryType/update','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:07'),(804,'API_f3a90193680fa0f62a2ebf52db9c4fb4','字典类型列表','','cmii-admin-data','/api/admin/dictionaryType/query','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:08'),(805,'API_f404be3fc6b1ecb26eaad3ab924efbb9','删除字典类型','','cmii-admin-data','/api/admin/dictionaryType/delete','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:05'),(806,'API_df28049d91b12b12cb0b160d7fb49f07','查询所有的语言','查询所有的语言','cmii-admin-data','/api/admin/language/queryAll','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-09-09 09:15:08'),(807,'API_8550075f78052e635bc09cdc6076bf4c','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/admin/model/match/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(808,'API_f0a64d95cf4c9c916bfc0571f489e58b','模糊查询设备类别列表','','cmii-admin-data','/api/admin/model/match/queryUavDevType','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(809,'API_32a0acef9b8bae507644c7ea6b6a7560','模糊查询设备型号列表','','cmii-admin-data','/api/admin/model/match/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(810,'API_16013589570db350f89c8b516bd781b3','设备动作列表','','cmii-admin-data','/api/admin/model/match/queryUavDevAction','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(811,'API_9dfaba44b00d8a52f4c54eb23eda6ec0','新增设备动作匹配','','cmii-admin-data','/api/admin/model/match/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(812,'API_ba1c3de0015a55fbebecc4c29ed9cb82','设备动作匹配详情查询','','cmii-admin-data','/api/admin/model/match/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(813,'API_480c197aeed752dadeab434c095ecb34','修改设备动作匹配','','cmii-admin-data','/api/admin/model/match/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(814,'API_7f2c832f8d2d7b0f0f2f25cdf7d0e5cd','删除设备动作匹配','','cmii-admin-data','/api/admin/model/match/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(815,'API_e1a97c593f01828480fe6633f4c4c42a','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/admin/model/match/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(816,'API_ea0beb1691a6cfd9b506f841fdff1147','设备型号匹配详情查询','','cmii-admin-data','/api/admin/model/match/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(817,'API_78dacf832ac0663df45cef7eacc46b7a','载荷型号列表','','cmii-admin-data','/api/admin/model/match/queryUavLoadModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(818,'API_cf4c2608d20fa4c8168e40606afdb28e','查询机库型号列表','','cmii-admin-data','/api/admin/model/match/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(819,'API_9b7701108b0688ddcff6d57bb9926251','新增设备型号匹配','','cmii-admin-data','/api/admin/model/match/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(820,'API_862e4f9cfa37e6c715a494e2195c1246','修改设备型号匹配','','cmii-admin-data','/api/admin/model/match/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(821,'API_7d40d47650144734c82b80460a27d218','删除设备型号匹配','','cmii-admin-data','/api/admin/model/match/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(822,'API_dccbf2a46c478eee49c61c16c772e472','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:04'),(823,'API_f7f835d6b5b5414a15e9367bfa686402','模糊查询机库生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:05'),(824,'API_90760f07c8b56ff5094c6b7f8a9a61a4','模糊查询机库型号列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:07'),(825,'API_a857b8606d5df8359d9fd8f319524902','根据型号查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(826,'API_ef00e5ef79faaeea98b7dc1377cbcd99','根据生产厂家查询型号列表','','cmii-admin-data','/api/admin/model/hangar/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(827,'API_762f968c368fbd2c9d98a1b9cacbc25b','查询机库类型列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarType','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:08'),(828,'API_bc038b9711ca6bab9e1b557b57a2ff07','查询机库保护等级表','','cmii-admin-data','/api/admin/model/hangar/queryUavProtLevel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:08'),(829,'API_9f361f9fb967f4e757da4452ca730a1d','通过类型ID查询机库类型详情','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:08'),(830,'API_6e1e3b576ed81cfbe301f4b19c131c3a','新增机库类型信息','','cmii-admin-data','/api/admin/model/hangar/addUavHangarModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:05'),(831,'API_2df7cfdd028644189fb39c1fbfb8e5fe','修改机库类型信息','','cmii-admin-data','/api/admin/model/hangar/updateUavHangarModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:08'),(832,'API_f9dab58050666d3f087b5bd13906b4db','删除机库类型信息','','cmii-admin-data','/api/admin/model/hangar/deleteUavHangarModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-09-09 09:15:07'),(833,'API_04aaff7dad84ce556316185231275594','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(834,'API_11c13a878f2f6cff3828a68ab6511b0b','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(835,'API_bec0759155bdfae1f18ade0f25619498','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(836,'API_1d0ed505879fd6326b5d0d819ddcc7dc','新增摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(837,'API_74f7067372e1ccbb5c75c43aca68dedf','修改摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(838,'API_535a3377d76d046b5db6541e814e136c','删除摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(839,'API_e977d642e93926f1341d627d736451c4','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(840,'API_228ab7305fc8536063ec19a7b1a28892','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(841,'API_87cd4d7026ae124e707dc311c006fa7e','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(842,'API_41d78892988fcd6f8591302f59edb266','新增喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(843,'API_0ec389c0370e0cd7b92e3b9193a330ba','修改喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(844,'API_0230cec1aaa20e351a7ea806d54211cd','删除喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(845,'API_03b7fa585f860fa5933f91be4a811e0b','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:05'),(846,'API_38240ce87df9230a33ce22481ae042bb','根据类型查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(847,'API_aae5c09d6465b1282e2259e132ded9e8','根据生产厂家查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(848,'API_cc7275a27199de74744502db1dd45d42','模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:06'),(849,'API_46126a9079c1e989640b27f24723f897','模糊查询无人机型号列表','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:07'),(850,'API_add4ec5281842a91f27e12737122676d','查询无人机形态列表','','cmii-admin-data','/api/admin/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:04'),(851,'API_88d1e620f01eae55406970adea9275d2','查询无人机尺度列表','','cmii-admin-data','/api/admin/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:08'),(852,'API_b0241abc0a3d6ce1ee149c7cab0e834a','查询无人机材料列表','','cmii-admin-data','/api/admin/model/plane/queryUavMat','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:06'),(853,'API_3e9f4b6e52461b3aa27a2ad8f9a8fde6','查询无人机接口列表','','cmii-admin-data','/api/admin/model/plane/queryUavInf','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:07'),(854,'API_76d5d4b2c2f147587b07cd432e8ca456','查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:04'),(855,'API_7c5b59bfff93797cba7ce89bdd1d0aac','新增无人机类型信息','','cmii-admin-data','/api/admin/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:06'),(856,'API_5ee8bb154057edbb9a533bb0de8f2616','修改无人机类型信息','','cmii-admin-data','/api/admin/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:04'),(857,'API_184313ace3c86c6b91ec302f3ff0524e','删除无人机类型信息','','cmii-admin-data','/api/admin/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-09-09 09:15:04'),(858,'API_3641d327d48b35cc86c847a31560db66','按条件查询无人机型号信息','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelDetail','POST',_binary '\0',_binary '\0','2020-08-13 09:06:24',1,NULL),(859,'API_089d3e2f3a245c5c424d6370223b5f98','模糊查询机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarMode','GET',_binary '\0',_binary '\0','2020-08-13 09:07:07',1,'2024-10-11 01:36:49'),(860,'API_3e10b571d99b6f7e98f0b4015d0d4d77','根据类型查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelByModel','GET',_binary '\0',_binary '\0','2020-08-13 09:57:30',1,NULL),(861,'API_1c5e1b743fa23e9ee79982e2c3722836','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/GetDictName','GET',_binary '\0',_binary '\0','2020-08-13 13:38:07',1,NULL),(862,'API_f3c7db7eed20640a751a78bc81341543','模糊查询机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarCode','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,'2024-10-11 01:36:52'),(863,'API_123a5d1073846eb9df7de02ea5362647','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,'2024-10-11 01:36:52'),(864,'API_f9c481bcefc5c514eff43a0ec263bfa9','模糊查询机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarType','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,NULL),(865,'API_47ec0d60eba6581f9085433036996e84','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangar','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,NULL),(866,'API_1f16142b30891e5a07fe19c92d819199','按机库编码查询机库详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,'2024-10-11 01:36:50'),(867,'API_8e5bc0bdc4f8c19fd48c636ef4e8d7bf','提供机库型号查询机库型号信息','','cmii-admin-data','/api/admin/model/hangar/queryDetailByHungarModel','POST',_binary '\0',_binary '\0','2020-08-14 03:28:25',1,NULL),(868,'API_02ebb757ca5fa1baa7d9491dadc41455','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/load/queryLoadSpkModelByModel','GET',_binary '\0',_binary '\0','2020-08-14 04:54:16',1,NULL),(869,'API_221340c1980b4ab2dcbac65d825bc27c','从无人机类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-14 04:54:16',1,'2024-09-09 09:15:04'),(870,'API_f7689c8c83de27f64a05668b62af6007','从类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelFromModel','GET',_binary '\0',_binary '\0','2020-08-14 04:54:16',1,NULL),(871,'API_b4bff552477e5c6b1af717cf54c1b2de','根据类型查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-14 05:01:35',1,'2024-09-09 09:15:08'),(872,'API_940540adebdc42dd3d15796c5d36f664','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_line_name','POST',_binary '\0',_binary '\0','2020-08-14 06:45:33',1,NULL),(873,'API_2cd0ecd24fbca8958ba943f238c7dbc8','解绑无人机','','cmii-uav-device','/api/uav/hangar/unbindUav','POST',_binary '\0',_binary '\0','2020-08-14 06:47:27',1,NULL),(874,'API_e24a63adfd5aa74f11397c1f08be557d','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在;true:存在,false不存在','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_line_name','GET',_binary '\0',_binary '\0','2020-08-14 06:55:42',1,'2020-08-14 07:00:46'),(875,'API_00e86bc45ada098ed656617ed9b4db3e','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/plane/checkLoadBoundRelations','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:44'),(876,'API_f4ef3d19d207ce810b185378ccea62ae','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:54'),(877,'API_4c6e476755cf391fcd3eea11b94fae64','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByLoadCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:50'),(878,'API_71a05e7ee9a717501af4d030b9012e2d','查询包括子公司的载荷详情','','cmii-uav-device','/api/uav/load/queryUavLoadDetail','POST',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:43'),(879,'API_fa94e8c4624b01ed2c276ab10dac7d3f','获取新载荷编码','','cmii-uav-device','/api/uav/load/newLoadCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:51'),(880,'API_2a6eaa070ef40bfe23947d9660ca996e','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:50'),(881,'API_31dc801d5ac42388d0925a531fab0d45','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:49'),(882,'API_0c134f0811252de9350517aa4947b116','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadType','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:42'),(883,'API_e595767d8cd18cc6f7c48e77346699b7','模糊查询载荷类型列表','','cmii-uav-device','/api/uav/load/queryLoadModel','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:46'),(884,'API_ec46fc3387def0b5374b28ec21e4fd40','查询无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-10-11 01:36:46'),(885,'API_725534203c359e0e21090287f0dcbdbe','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/oapi/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2020-08-17 02:47:14',1,'2024-09-23 20:58:58'),(886,'API_bc06ed24e07d95d8c9bbc61af19ca202','查询公司下7日内飞行记录','','cmii-uav-surveillance','/oapi/queryHistoryTotal','GET',_binary '\0',_binary '\0','2020-08-17 02:47:14',1,'2024-09-23 20:58:57'),(887,'API_5b22775bfa21384f92056fb4e06f3c5b','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/oapi/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-08-17 02:47:14',1,'2024-09-23 20:58:59'),(888,'API_aca610f9936522d086756cc34bdd273b','类型对应的数据字典名称对应的key','类型对应的数据字典名称对应的key','cmii-admin-data','/api/admin/dictionary/GetDictKey','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,NULL),(889,'API_2a38ba8b44f9227276e556d1b4fdcdea','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(890,'API_f0bb4d4149221532cbdfd93f6f70867c','模糊查询设备类别列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevType','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(891,'API_dd9a0a34900527d19fa9e51602bd8c66','模糊查询设备型号列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(892,'API_6de3e13765d806e95b54edba5c8ba7fa','设备动作列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevAction','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(893,'API_1027e0154b2cabcfcd03f2705aae31c9','新增设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(894,'API_45f69de95496f9503fe5da237bee773d','设备动作匹配详情查询','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(895,'API_6950169e9ca9384217f431e1c5459aa4','修改设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(896,'API_88494eb1755e09d138b8e16c5121cfb4','删除设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(897,'API_f3a3bbb16e9d784a4baa1e7f7a1cc432','根据类型查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionMatchByModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(898,'API_d3e06bfbed9a266753cbde23e4fff04a','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(899,'API_0bdef64520190b16672dbb06d7715e2a','设备型号匹配详情查询','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:04'),(900,'API_4ed187c7ced82ab26132997c81859a3e','载荷型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavLoadModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(901,'API_21aa3d9fac7d93666bca6833bf5568b9','查询机库型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(902,'API_8855ffd14b83ee49369fe8f758c2e9fa','模糊无人机型号匹配型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavPlaneMatchModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,NULL),(903,'API_46093c9fecf9308045914611b99a23bb','新增设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(904,'API_21ef9d5cf72e0d3d2b66f96ce3f89422','修改设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(905,'API_0b760cde3e65475e19f8a99ed388db38','删除设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(906,'API_d4e1de191bcaf2c506528a6a1ca24711','根据无人机查询设备类型匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByPlane','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,NULL),(907,'API_0fad73ed918548c3826f85283e31366c','根据机库查询无人机匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByHangar','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(908,'API_eb31be32d9c3a40adbb4f12b63e02300','从机库类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:07'),(909,'API_d3f1a51c788084a2a74ec83331dcca34','从机库类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/hangar/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:07'),(910,'API_7addf0dc3c91ea72e107cf07b21f5794','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(911,'API_bc60df3df11353c5e51941e33d6a8a79','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(912,'API_114055c06825f48f1103858a5b4e5243','模糊查询型号列表','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:04'),(913,'API_445b19de6f7aa6fdb994c62ac18b8f5a','新增摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(914,'API_cf6a3aa36a679cec602ea02152b324af','修改摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(915,'API_8b110561027e6075cbc784f5245c0344','删除摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(916,'API_78f934171b8fbc2900b04258a35d7a95','从摄像头类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/cam/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(917,'API_ad8d42ba2aee3e2d138b3950cee78fc8','从摄像头类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/cam/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(918,'API_ab0e57a46420e4534b5c7997aa0a0b1b','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/cam/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(919,'API_63d52b1a7520b2c088573d92931d3404','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(920,'API_ca5a964fe634a07d0bd320d964cb3ee5','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(921,'API_d30cca23905217ae8b0a17b4ee2c1018','模糊查询型号列表','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:04'),(922,'API_49b0224bc641ca32510894821e03636b','新增喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:04'),(923,'API_6585ce453fd0e6dff8e03a24bcc649c1','修改喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(924,'API_6558552d0cbcd975a333ec6d718e1ed9','删除喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:06'),(925,'API_3e2410bdbc010bebf06c9c183b04f0d3','从喊话器类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/spk/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:08'),(926,'API_25e8361bc244a0699cededd54ae0f8ed','从喊话器类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/spk/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:04'),(927,'API_03a697de6910c8d3d8ae2f4c962e51d0','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/spk/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:05'),(928,'API_d4198c9b8c990c36cf8d69bf82d25935','从无人机类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-09-09 09:15:07'),(929,'API_25c5a58d6ac51ebfd73efb2b63222e3c','摄像头载荷设备型号详情查询','','cmii-uav-waypoint','/api/admin/model/cam/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-08-18 02:02:05',1,NULL),(930,'API_4e19e0092828729be01bcfeda441a33f','无人机绑定的载荷列表查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-08-18 02:10:06',1,'2023-03-29 09:05:05'),(931,'API_668a10b15299a08a943a7eaacf0ea9fe','获取绑定无人机信息','','cmii-uav-device','/api/uav/hangar/getBoundUav','POST',_binary '\0',_binary '\0','2020-08-18 07:15:53',1,NULL),(932,'API_42812137eeb9fa9eac3dbccc1fff0fec','获取可绑定无人机','','cmii-uav-device','/api/uav/hangar/getUav','GET',_binary '\0',_binary '\0','2020-08-18 07:25:07',1,'2024-10-11 01:36:44'),(933,'API_ff5494e0727b58b829f6c84243f99f05','获取绑定无人机信息','','cmii-uav-device','/api/uav/hangar/getBoundUav','GET',_binary '\0',_binary '\0','2020-08-18 07:25:07',1,'2024-10-11 01:36:42'),(934,'API_44c5eee1c86cffe59ebae6946c01f7be','查询载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryModelDetailByModel','POST',_binary '\0',_binary '\0','2020-08-19 06:22:32',1,NULL),(935,'API_2b270bd6499910cae38f0fda79e608b9','查询载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-19 06:24:30',1,'2024-10-11 01:36:45'),(936,'API_0e34c8eca4382d7106b98f33f0e40550','提供机库型号查询机库型号信息','','cmii-admin-data','/api/admin/model/hangar/queryDetailByHungarModel','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:06'),(937,'API_d01e0d54b5b7202eafc7d1a2231876b8','查询视频分辨率列表','','cmii-admin-data','/api/admin/model/cam/queryVideoDisName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:08'),(938,'API_6732fadadc52936af9a6a9687cce7a1e','查询图标尺寸列表','','cmii-admin-data','/api/admin/model/cam/queryImgSizeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:07'),(939,'API_097cdf6975ebe29f15f2ddcc4681415a','查询视频ISO列表','','cmii-admin-data','/api/admin/model/cam/queryVideoISOName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:07'),(940,'API_7984c09b224b5e860f7fe8958a758dcb','查询工作模式列表','','cmii-admin-data','/api/admin/model/cam/queryWorkModeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:05'),(941,'API_dd46071112769417386194ce7c86e967','查询照片ISO列表','','cmii-admin-data','/api/admin/model/cam/queryImgISOName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:05'),(942,'API_7bec2a8dfa9aca7159523dbe9e18326f','查询拍照模式列表','','cmii-admin-data','/api/admin/model/cam/queryCamModeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:08'),(943,'API_bbe3f8c129c82cbe71ed35a41a282599','查询图像存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryImgFmtName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:05'),(944,'API_ea0004e0d1c3324340cddceec50c61f6','查询曝光模式列表','','cmii-admin-data','/api/admin/model/cam/queryExpModeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:04'),(945,'API_4899d9a41838c726a75f0a72a6122290','查询曝白平衡列表','','cmii-admin-data','/api/admin/model/cam/queryBalanName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:06'),(946,'API_a1d168be5031dc1dd0e4fbc2505be60b','查询快门速度列表','','cmii-admin-data','/api/admin/model/cam/queryCamShutName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:08'),(947,'API_6ada96027958ab3c87a1610d3d91397a','查询视频存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryVideoFmtName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-09-09 09:15:07'),(948,'API_670ee49175328b4484f621bcd5770198','无人机型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-08-23 10:41:18',1,'2024-09-09 09:15:08'),(949,'API_c3b99fb14456c127717f1870cf75a282','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-08-24 03:26:06',1,NULL),(950,'API_c7470b824c01b0fb67dbaea61b7bb7ad','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2020-08-24 03:26:06',1,NULL),(951,'API_1e207b399368ac25646beb4c51e3324e','查询公司下7日内飞行记录','','cmii-uav-surveillance','/queryHistoryTotal','GET',_binary '\0',_binary '\0','2020-08-24 03:26:06',1,NULL),(952,'API_dcb62f6a8317223fbb12c735dfde49ce','回调','','cmii-uav-waypoint-dev','/uav/uavInfo','POST',_binary '\0',_binary '\0','2020-08-24 07:33:48',1,'2020-08-25 02:12:28'),(953,'API_846cefbe72746c746abe4120afd61af0','订阅','','cmii-uav-waypoint-dev','/uav/subscribe','POST',_binary '\0',_binary '\0','2020-08-24 07:45:49',1,'2020-08-25 02:12:28'),(954,'API_5f89356023671b2c1cba9c13c7537893','无人机绑定的载荷列表查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-08-24 08:33:07',1,NULL),(955,'API_040852f945f29876940a70c5370b511f','查询公司下7日内飞行记录','','cmii-uav-surveillance','/oapi/uav/queryHistoryTotal','GET',_binary '\0',_binary '\0','2020-08-24 09:57:55',1,NULL),(956,'API_0b45ead59a2c4424f02ded292b8c2db4','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/oapi/uav/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2020-08-24 09:57:55',1,NULL),(957,'API_61f09b3a5565c3ae45008f3345a4f0de','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/oapi/uav/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-08-24 09:57:55',1,NULL),(958,'API_b1419634c225cef9555fdf5b0d011184','修改航点信息','点击修改点位','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list','POST',_binary '\0',_binary '\0','2020-08-25 06:18:22',1,NULL),(959,'API_6386b9fbf4e62a8d7fa9a024b1d39f82','解绑无人机','','cmii-uav-device','/api/uav/hangar/unBindUav','POST',_binary '\0',_binary '\0','2020-08-25 08:36:24',1,'2024-10-11 01:36:50'),(960,'API_b13c315af9e3ffdbeffa2a36f5626c20','设置机库在线状态','','cmii-uav-device','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-08-26 01:09:10',1,'2024-10-11 01:36:43'),(961,'API_e057d6bc1492dece552ba1d8b9f309eb','分页条件筛选作业列表','','cmii-uav-mission','/mission_info_list/mission_info_page_list_with_filters','POST',_binary '\0',_binary '\0','2020-08-26 02:47:10',1,NULL),(962,'API_4128c0c60bca87eb77e065858f56aa4f','作业详情查询','','cmii-uav-mission','/mission_info_list/mission_info/{id}','GET',_binary '\0',_binary '\0','2020-08-26 02:48:47',1,'2020-08-28 07:15:40'),(963,'API_1a32fe5cbd3b0f3d377e0c0932176815','下拉菜单模糊查询','支持作业名称/航线名称/执行人','cmii-uav-mission','/mission_info/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-08-26 02:53:26',1,NULL),(964,'API_586267fa2bacea566142b327a8db6773','下拉菜单模糊查询','支持作业名称 0/航线名称 1/飞行空域 2/执行人 3','cmii-uav-mission','/mission_info_list/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-08-26 03:03:05',1,'2020-09-01 02:11:58'),(965,'API_1f4428d6821f7d2bc77359b36d05d4b3','查询作业执行人的用户列表','','cmii-uav-mission','/mission_info/down_list_user_info','GET',_binary '\0',_binary '\0','2020-08-26 09:42:49',1,'2020-08-27 08:54:40'),(966,'API_e4a9c3011db740edc6646cb49292f77c','获取作业关联的封存航点详情列表','','cmii-uav-mission','/mission_info/airpoint_sealed_info_detail_list/{id}','GET',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(967,'API_99e0d5c68920f56f192c327b8b168810','创建作业','','cmii-uav-mission','/mission_info/mission_data','POST',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(968,'API_0ea60b08e616e7f117a94f8eb01505ee','更新作业','','cmii-uav-mission','/mission_info/mission_data','PUT',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(969,'API_72934064a40b9bc6031379716f4d634e','获取作业关联的封存航线详情','','cmii-uav-mission','/mission_info/airline_sealed_info_detail/{id}','GET',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(970,'API_c47c8080645f5ea74237a65f6b8cd3a6','模糊查询有效code映射','模糊查询有效code映射','cmii-admin-data','/api/admin/dictionary/queryValiableList','GET',_binary '\0',_binary '\0','2020-08-28 01:09:06',1,'2024-09-09 09:15:08'),(971,'API_23ef0f9fd358281ec9f82a7a9147e828','新建作业时模糊查询航线名称','发送所有航线给前端,前端做模糊查询','cmii-uav-waypoint','/api/uav/waypoint/mission/air_line_name','POST',_binary '\0',_binary '\0','2020-08-28 01:21:05',1,NULL),(972,'API_6983f4a0d9c4c9fda5d4f2fd4c2adf77','新建作业时查询封存航线信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airline_detail_info/{id}','GET',_binary '\0',_binary '\0','2020-08-28 02:44:36',1,'2024-09-09 09:16:30'),(973,'API_8b38986704c58131797068a570a2c45a','空域查询封存航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airpoint_detail_info_list/{id}','GET',_binary '\0',_binary '\0','2020-08-28 02:44:36',1,'2024-09-09 09:16:30'),(974,'API_281ece7316be3c5fe01bef8a55c515c6','获取航线名称全集','','cmii-uav-mission','/mission_info/airLineName','GET',_binary '\0',_binary '\0','2020-08-28 08:20:52',1,NULL),(975,'API_81edc180a8bc6677c39b0e5255f3b9e5','模糊查询空域名称列表','','cmii-uav-airspace','/zydAirspace/queryAreaName.do','GET',_binary '\0',_binary '\0','2020-08-31 03:05:41',1,'2024-10-11 08:57:37'),(976,'API_f8162fb82bbfb79a4b2c129aeadb703e','查询认证状态列表','','cmii-uav-airspace','/zydAirspace/queryAppr.do','GET',_binary '\0',_binary '\0','2020-08-31 03:05:41',1,NULL),(977,'API_e523610d0264ff173b1c8f2401204645','查询认证状态列表','','cmii-uav-airspace','/zydAirspace/downloadDoc.do','GET',_binary '\0',_binary '\0','2020-08-31 08:26:04',1,NULL),(978,'API_4e1ae2d6b8a9b781c333eeea3bf48dd9','批量导出模板','','cmii-uav-airspace','/zydAirspace/downloadDoc.do','POST',_binary '\0',_binary '\0','2020-08-31 08:33:08',1,'2024-10-11 08:57:38'),(979,'API_1aba38a41d34683a9a54babdca60c7b4','批量删除和删除','','cmii-uav-mission','/mission_info_list/mission_info','DELETE',_binary '\0',_binary '\0','2020-09-01 01:31:14',1,NULL),(980,'API_b52210a50f75307b41919c561962ddca','查询作业执行人的用户列表','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:13'),(981,'API_a225c1c35aecf8ac5adbc75b1f36a2df','创建作业','','cmii-uav-mission','/api/uav/mission/mission_info/mission_data','POST',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:13'),(982,'API_cbb8ad2843324aa5a28a9a72e7a386dd','更新作业','','cmii-uav-mission','/api/uav/mission/mission_info/mission_data','PUT',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:10'),(983,'API_60732ad87a7140c7fa9f1ae1e310c551','获取作业关联的封存航线详情','','cmii-uav-mission','/api/uav/mission/mission_info/airline_sealed_info_detail/{id}','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:02'),(984,'API_44bc0289526f72c425aecd27d4fda8f1','获取作业关联的封存航点详情列表','','cmii-uav-mission','/api/uav/mission/mission_info/airpoint_sealed_info_detail_list/{id}','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:01'),(985,'API_d6588f480cda839f7040e75cd4868949','获取航线名称全集','','cmii-uav-mission','/api/uav/mission/mission_info/airLineName','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:04'),(986,'API_ae425332d79c11cebf3b6dfdcc318036','分页条件筛选作业列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info_page_list_with_filters','POST',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:15'),(987,'API_94c18c7ce042fe795b695af4ad3a6ed4','下拉菜单模糊查询','支持作业名称 0/航线名称 1/飞行区域 2/执行人 3/创建人 4/无人机code 5','cmii-uav-mission','/api/uav/mission/mission_info_list/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:15'),(988,'API_49bd1c47f4f141694318567448148fa2','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:01'),(989,'API_8a4f6a8cb9e339ed069e5bc9b70da4cc','批量删除和删除','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info','DELETE',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-10-10 08:57:03'),(990,'API_33e8b2e467de1de478901df874259c6d','作业复制','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info_clone','POST',_binary '\0',_binary '\0','2020-09-02 01:46:27',1,'2021-03-29 01:33:58'),(991,'API_59b3752c8aaf6ecadc354f4abc0656e9','自动对焦','','cmii-uav-surveillance','/cameraGimbal/AutoFocus','POST',_binary '\0',_binary '\0','2020-09-02 02:32:41',1,NULL),(992,'API_da9aa27014f1d4ae0cf91f51ea3585a7','设置相机参数','','cmii-uav-surveillance','/cameraGimbal/setCameraParameter','POST',_binary '\0',_binary '\0','2020-09-02 02:32:41',1,NULL),(993,'API_75ff1fc1f584bf9005b24b375054d6f5','按空域类型查询空域限制-n','传入参数为空域类型 多个请用,相隔','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByAreaType.do','GET',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-09-09 09:15:05'),(994,'API_79aa85dad2686c8be8398fc686fe2d76','为监视提供的接口,用于查询告警','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitBySurveillance.do','GET',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-09-09 09:15:05'),(995,'API_73ee94cc1a1fe118747c0e4ffb98715e','查询高度和时间有重叠部分的空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-09-09 09:15:07'),(996,'API_7142cc769bff4f9fb3ea9b6172637be8','按id删除空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/deleteZydAreaLimitById.do','DELETE',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-09-09 09:15:06'),(997,'API_f995cda2241b426c6983e9d3fcf5893c','修改空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/updateZydAreaLimit.do','PUT',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-09-09 09:15:08'),(998,'API_82d09530b6c97ea16a33a5ede527adbf','按id查询空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitById.do','GET',_binary '\0',_binary '\0','2020-09-02 02:38:48',1,'2024-09-09 09:15:08'),(999,'API_a3fab050851c9041a920021ec3a2d362','新增空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/insertZydAreaLimit.do','POST',_binary '\0',_binary '\0','2020-09-02 02:38:48',1,'2024-09-09 09:15:06'),(1000,'API_ef09dbd19715c3dc4498a6829590c634','提交空域认证','','cmii-uav-airspace','/zydAirspace/uploadAudit.do','POST',_binary '\0',_binary '\0','2020-09-02 05:57:44',1,'2024-10-11 08:57:37'),(1001,'API_d07db158125291eca581a8ffba91ebbc','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}','',_binary '\0',_binary '\0','2020-09-02 06:46:34',1,NULL),(1002,'API_ac7ccab9883b6b7affb15f13befad34f','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info','GET',_binary '\0',_binary '\0','2020-09-02 06:56:08',1,NULL),(1003,'API_7ab44b0ec04a1814b13c727c2ca9fc91','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}/','GET',_binary '\0',_binary '\0','2020-09-02 06:57:11',1,NULL),(1004,'API_b3236d962e0982bef6ab9da493517f6c','主动触发更新(从高德地图)区域信息','','cmii-admin-data','/public/api/admin/area/refresh','GET,POST',_binary '\0',_binary '\0','2020-09-02 07:52:05',1,'2024-09-09 09:15:07'),(1005,'API_b38cf8a1e62f9b50245c0422c289cff9','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}','POST',_binary '\0',_binary '\0','2020-09-02 08:18:56',1,NULL),(1006,'API_f3854c9a9bc3997f399b433bd7842c1f','摄像参数设置','','cmii-uav-surveillance','/camera/video/setting','POST',_binary '\0',_binary '\0','2020-09-02 09:23:32',1,'2024-09-23 20:58:56'),(1007,'API_3f45ee3a503752f3638277585cc109be','相机参数设置','','cmii-uav-surveillance','/camera/camera/setting','POST',_binary '\0',_binary '\0','2020-09-02 09:23:32',1,'2024-09-23 20:58:58'),(1008,'API_c337c4ca3c0458da62526001898b7af3','云台参数设置','','cmii-uav-surveillance','/camera/gimbal/setting','POST',_binary '\0',_binary '\0','2020-09-02 09:23:32',1,'2024-09-23 20:58:57'),(1009,'API_a8f653f1e5fd6fe95c54523511ee5d47','根据无人机查询设备类型匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByUav','GET',_binary '\0',_binary '\0','2020-09-03 00:59:44',1,'2024-09-09 09:15:05'),(1010,'API_586c0c599b75290c598925596bc1014b','根据无人机查询设备类型匹配編碼列表','','cmii-admin-data','/api/admin/model/match/type/queryMatchListByUav','GET',_binary '\0',_binary '\0','2020-09-03 00:59:44',1,'2024-09-09 09:15:08'),(1011,'API_a6f13db5c1b993222e0289ebd55fa29b','查询有效的字典code映射','查询有效的字典code映射','cmii-admin-data','/api/admin/dictionary/queryValiableByTypeCode','GET',_binary '\0',_binary '\0','2020-09-03 04:01:14',1,'2024-09-09 09:15:05'),(1012,'API_6b3c5b5ea45962a0e37cb7a7440436fb','获取航线名称全集','','cmii-uav-mission','/api/uav/mission/mission_info/airLineName','POST',_binary '\0',_binary '\0','2020-09-03 08:43:03',1,NULL),(1013,'API_f3d6636ea76a96217c0a41b2411ea5eb','通过机库型号查询机库实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/hangar/queryHangarInfoList','GET',_binary '\0',_binary '\0','2020-09-03 09:52:23',1,'2024-10-11 01:36:48'),(1014,'API_431193ea36a2066e44dce4b510454506','镜头缩放','','cmii-uav-surveillance','/camera/camera/zoom','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-09-23 20:58:59'),(1015,'API_e59b17f7df6d42ea9e9372e6c37766e3','切换为照相/摄像模式','','cmii-uav-surveillance','/camera/camera/modeChange','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-09-23 20:58:58'),(1016,'API_6451a9189d90a88e0a398150dc3133f9','云台控制转向','','cmii-uav-surveillance','/camera/gimbal/control','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-09-23 20:58:58'),(1017,'API_1a894092b08bc772840127281ad0e441','自动对焦','','cmii-uav-surveillance','/camera/camera/autoFocus','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-09-23 20:58:58'),(1018,'API_0dcc849acdad2a4ea57402c2ab50652b','拍照或者摄像','','cmii-uav-surveillance','/camera/camera/cameraAction','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-09-23 20:58:56'),(1019,'API_1f1eef5b17517305eccbb21b23565860','查询云台旋转角度设定','','cmii-uav-surveillance','/camera/camera/queryGimbalSetting','GET',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-09-23 20:58:57'),(1020,'API_cb035007aa42d351c7f84144528adade','通过载荷型号查询载荷实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/load/queryLoadInfoList','GET',_binary '\0',_binary '\0','2020-09-04 02:09:44',1,'2024-10-11 01:36:51'),(1021,'API_ffe81557303b1ffb8a3a1a2493d5454e','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-device','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2020-09-04 02:09:44',1,'2024-10-11 01:36:53'),(1022,'API_1bea8ee445a2922a459b8cef22c022ff','修改审批状态','','cmii-uav-airspace','/zydAirspace/updateStat.do','POST',_binary '\0',_binary '\0','2020-09-07 08:29:52',1,'2024-10-11 08:57:36'),(1023,'API_d93cac635460573a39072d83a64ad8e6','根据无人机ID查询进行中的作业详情','','cmii-uav-mission','/api/uav/mission/surveillance/mission_info/{id}','GET',_binary '\0',_binary '\0','2020-09-08 01:35:08',1,'2024-10-10 08:57:13'),(1024,'API_46b2f550f8e902fb86d7064a42e8be42','查看轨迹回放之上报作业飞行数据接口','','cmii-uav-mission','/api/uav/mission/surveillance/airline_track_info/{id}','GET',_binary '\0',_binary '\0','2020-09-08 01:35:08',1,'2020-09-16 02:22:07'),(1025,'API_7999fb512373545428a904f2a93126c5','查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionByModel','GET',_binary '\0',_binary '\0','2020-09-08 02:02:05',1,'2024-09-09 09:15:07'),(1026,'API_1a760fde751208bdc26abcedbbca41fd','判断空域名称是否重复','','cmii-uav-airspace','/zydAirspace/judgeAirsNameRep.do','GET',_binary '\0',_binary '\0','2020-09-08 06:01:43',1,'2024-10-11 08:57:37'),(1027,'API_15619ea072c1ddacd82dfe1b0f75d02b','判断用户是否有权限执行作业','','cmii-uav-mission','/api/uav/mission/surveillance/MissionAuthority','GET',_binary '\0',_binary '\0','2020-09-08 07:39:23',1,'2020-09-08 07:43:21'),(1028,'API_4aaeb69d58a376553c7674e93dd81151','结束作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_ending','POST',_binary '\0',_binary '\0','2020-09-08 09:02:46',1,'2020-09-16 03:04:31'),(1029,'API_048a6e2737767979c293379256046cf4','降落','','cmii-uav-mission','/api/uav/mission/surveillance/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-09-08 09:02:46',1,'2024-10-10 08:57:04'),(1030,'API_08b791104d5cf534913d2c6a182ef330','模糊查询可用状态列表','','cmii-uav-device','/api/uav/hangar/queryHangarUseStat','GET',_binary '\0',_binary '\0','2020-09-09 06:50:25',1,'2024-10-11 01:36:47'),(1031,'API_cdd9560d32de928dad673d67accca023','模糊查询可用状态列表','','cmii-uav-device','/api/uav/load/queryLoadUseStat','GET',_binary '\0',_binary '\0','2020-09-09 06:50:25',1,'2024-10-11 01:36:49'),(1032,'API_e7e328cf8d731f9c02a8cab4c44ab8f6','开始作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_data','POST',_binary '\0',_binary '\0','2020-09-09 07:23:29',1,NULL),(1033,'API_d925816c859b55482ee818f05cc3b44a','查询空域类型','','cmii-admin-data','/api/admin/arealimit/queryAreaType','GET',_binary '\0',_binary '\0','2020-09-09 08:01:19',1,'2021-09-22 20:09:26'),(1034,'API_7c75613cb2c22f020ecead67e9689c8f','查询动作匹配类型详情','','cmii-uav-waypoint','/api/admin/model/match/action/queryActionByModel','GET',_binary '\0',_binary '\0','2020-09-09 09:05:08',1,NULL),(1035,'API_b677cb684036a17ab6c3ec7a308c876f','模糊查询包括子公司的所属无人机编码列表','','cmii-uav-device','/api/uav/load/queryUavCodeBound','GET',_binary '\0',_binary '\0','2020-09-10 03:18:18',1,'2024-10-11 01:36:51'),(1036,'API_9b75b1ab51bc0e8c6ca94f282913d2a6','无人机绑定的载荷列表查询','','cmii-uav-mission','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-09-10 03:19:55',1,'2023-07-18 04:08:27'),(1037,'API_6267772257b61cefe234f9a5f2a89a96','查询某个区域详细属性信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/detail','GET,POST',_binary '\0',_binary '\0','2020-09-10 05:13:25',1,'2024-09-09 09:15:04'),(1038,'API_4e4f7658029678734ffce0027252e8fc','查询区域详细属性信息','','cmii-uav-waypoint','/public/api/admin/area/detail','POST',_binary '\0',_binary '\0','2020-09-10 09:15:09',1,'2020-12-30 06:33:49'),(1039,'API_956154abe8979ccd6b222d73f2b2302b','模糊查询公司范围的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModelList','GET',_binary '\0',_binary '\0','2020-09-14 05:00:00',1,'2024-10-11 01:36:47'),(1040,'API_a0e003812786904c0d23d43c9b3f1ce4','判断用户是否有权限执行作业','','cmii-uav-mission','/api/uav/mission/surveillance/MissionAuthority','POST',_binary '\0',_binary '\0','2020-09-14 06:17:07',1,'2024-10-10 08:57:04'),(1041,'API_2309a5886c4870675d5c4c1f39d44911','根据无人机ID查询进行中的作业详情','','cmii-uav-mission','/api/uav/mission/surveillance/mission_info/{id}','POST',_binary '\0',_binary '\0','2020-09-14 06:17:07',1,NULL),(1042,'API_71ee48df473a112f4f1d1f4396c0cde7','根据无人机编码和作业状态筛选作业列表','','cmii-uav-mission','/api/uav/mission/surveillance/mission_list','GET',_binary '\0',_binary '\0','2020-09-14 06:48:16',1,NULL),(1043,'API_e4ca6faf34329bbfe40307b1d5bc9edf','根据无人机编码和作业模式筛选监视作业列表','','cmii-uav-mission','/api/uav/mission/surveillance/surv_mission_list','GET',_binary '\0',_binary '\0','2020-09-14 09:57:33',1,NULL),(1044,'API_a8104d8a07fd7fe85874cbc261ed2e9b','获取单个数据字典','根据指定的数据编码获取数据字典项','cmii-uav-surveillance','/dictionary/getDict','POST',_binary '\0',_binary '\0','2020-09-15 02:55:25',1,'2022-05-06 02:52:14'),(1045,'API_4e58a69fc3fae900ac480671bd0f7b8d','获取数据字典','获取云台参数设置所有数据字典','cmii-uav-surveillance','/dictionary/getDictList','GET',_binary '\0',_binary '\0','2020-09-15 02:55:25',1,NULL),(1046,'API_9cf77bb58c5a9447a714eb5c9310472d','查询数据字典明细','查询数据字典明细','cmii-admin-data','/api/admin/dictionary/queryDictDetail','GET',_binary '\0',_binary '\0','2020-09-15 08:10:37',1,'2024-09-09 09:15:07'),(1047,'API_6c10712206f93529a619f8080ef3426f','起飞','','cmii-uav-mission','/api/uav/mission/surveillance/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-09-16 04:59:50',1,'2024-10-10 08:57:14'),(1048,'API_2895fcd7ea84bb74ad1d52e020a0486f','根据无人机编码和作业模式筛选监视作业列表','','cmii-uav-mission','/api/uav/mission/surveillance/surv_mission_list','POST',_binary '\0',_binary '\0','2020-09-16 04:59:50',1,'2024-10-10 08:57:05'),(1049,'API_b64ea8de58590f93f0a18f322cbdca46','继续飞行','','cmii-uav-mission','/api/uav/mission/surveillance/resume/{id}','GET',_binary '\0',_binary '\0','2020-09-16 04:59:50',1,'2024-10-10 08:57:11'),(1050,'API_c9694ccb1c665a04fec72ee10fe68561','查询公司/机构所属的机库类型','','cmii-uav-device','/api/uav/hangar/queryHangarModelByCompanyId','GET',_binary '\0',_binary '\0','2020-09-16 05:04:31',1,'2024-10-11 01:36:45'),(1051,'API_1dffdd6514c4517fdc2339c931fdc1f9','查詢包括子公司的載荷類型','','cmii-uav-device','/api/uav/load/queryLoadModelByCompanyId','GET',_binary '\0',_binary '\0','2020-09-16 05:04:31',1,'2024-10-11 01:36:54'),(1052,'API_34a7fb8da64e22199f82369e7e594276','查询指定公司的无人机类型匹配的載荷和机库类型类别','','cmii-uav-device','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2020-09-16 05:04:31',1,'2024-10-11 01:36:45'),(1053,'API_9d6c0487a16c47d23c4b5262fbd7ded6','获取数据字典','获取云台参数设置所有数据字典','cmii-uav-surveillance','/dictionary/getDictList','POST',_binary '\0',_binary '\0','2020-09-16 06:02:22',1,'2024-09-23 20:58:59'),(1054,'API_b1e1771386dd5bd18e13b84aeb6e97a3','停止','','cmii-uav-mission','/api/uav/mission/surveillance/stop/{id}','GET',_binary '\0',_binary '\0','2020-09-16 07:11:46',1,'2024-10-10 08:57:14'),(1055,'API_13259ac30ce80925eec7b3236c7de5a2','暂停','','cmii-uav-mission','/api/uav/mission/surveillance/pause/{id}','GET',_binary '\0',_binary '\0','2020-09-16 07:11:46',1,'2024-10-10 08:57:07'),(1056,'API_0be849a1aa051ce187cc949923d93dd7','开始作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_starting','POST',_binary '\0',_binary '\0','2020-09-16 07:11:46',1,NULL),(1057,'API_e18f034e5edbed07ca014db0b46f6c0a','查询作业名称是否唯一','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_name_distinct','POST',_binary '\0',_binary '\0','2020-09-18 05:10:49',1,'2024-10-10 08:57:09'),(1058,'API_10ca3ce206a37e1c305570faf17b2bfe','查询作业名称列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_name_list','GET',_binary '\0',_binary '\0','2020-09-18 06:03:51',1,NULL),(1059,'API_7861965d3fd9e6484bd275c6b34457ed','showTrackDataList','','cmii-uav-surveillance','/surveillance/test1','GET',_binary '\0',_binary '\0','2020-09-18 07:00:00',1,NULL),(1060,'API_beb707e79c04cf7d89f785f509d79898','showTrackData','','cmii-uav-surveillance','/surveillance/test2','GET',_binary '\0',_binary '\0','2020-09-18 07:00:00',1,NULL),(1061,'API_68c9b304c6d10ad7d7b7f9bcd84a57fb','Websocket_Total_Surveillance_数据结结构','','cmii-uav-surveillance','/surveillance/TotalSurveillance','GET',_binary '\0',_binary '\0','2020-09-18 09:06:17',1,NULL),(1062,'API_dffe61df8924b7d431db0e9af8bd55dd','querySinglePlaneTrack模拟数据结构','','cmii-uav-surveillance','/surveillance/querySinglePlaneTrackSimulate','GET',_binary '\0',_binary '\0','2020-09-18 09:06:17',1,NULL),(1063,'API_333970b2675a439219d3fbb3234fd8c7','Websocket_Single_Surveillance_数据结结构','','cmii-uav-surveillance','/surveillance/SingleSurveillance','GET',_binary '\0',_binary '\0','2020-09-18 09:06:17',1,NULL),(1064,'API_cea1d1fa375a31b306e6d5add838cbe5','新建作业时模糊查询航线名称','发送所有航线给前端,前端做模糊查询','cmii-uav-waypoint','/api/uav/waypoint/mission/air_line_name_list','POST',_binary '\0',_binary '\0','2020-09-18 09:56:47',1,'2024-09-09 09:16:29'),(1065,'API_c60a4b717eba16f3e75f374cdddd2298','根据时间和航线id查可用空域','','cmii-uav-airspace','/zydAirspace/selectByConditons.do','POST',_binary '\0',_binary '\0','2020-09-18 10:20:04',1,'2024-10-11 08:57:36'),(1066,'API_6bfa40f0c09cc20371a8fa1ca2a42e9b','查询高度和时间有重叠部分的空域限制-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/api/airspace/zydAreaLimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-09-21 04:50:24',1,NULL),(1067,'API_08aadc2ddb2af424581a079b5a9f43df','查看轨迹回放之上报作业飞行数据接口','','cmii-uav-mission','/api/uav/mission/mission_info/airline_track_info/{id}','GET',_binary '\0',_binary '\0','2020-09-21 07:53:37',1,'2024-10-10 08:57:10'),(1068,'API_bb8f9d5366516b7bd1fd68b8871ba966','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/getDictName','GET',_binary '\0',_binary '\0','2020-09-21 10:01:11',1,'2024-09-09 09:15:06'),(1069,'API_4d0a53a39c735aa8ad90f5d3b268e245','类型对应的数据字典名称对应的key','类型对应的数据字典名称对应的key','cmii-admin-data','/api/admin/dictionary/getDictKey','GET',_binary '\0',_binary '\0','2020-09-21 10:01:11',1,'2024-09-09 09:15:06'),(1070,'API_24d80fbba26c87978550f0e74599c525','获取字典里面语言对应的某个值','获取字典里面语言对应的某个值','cmii-admin-data','/api/admin/dictionary/getValueByLang','GET',_binary '\0',_binary '\0','2020-09-21 10:01:11',1,'2024-09-09 09:15:04'),(1071,'API_fc61e32568d804e09aaa057b6c0e9942','查询5km范围内空域信息','','cmii-uav-airspace','/zydAirspace/selectByPoint.do','POST',_binary '\0',_binary '\0','2020-09-22 05:36:34',1,'2024-10-11 08:57:36'),(1072,'API_0fbfa49d7da8d3780a1c75740cce97c9','返航','带机库的返航命令,speed和height默认10,30','cmii-uav-mission','/api/uav/mission/surveillance/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-09-22 06:34:53',1,'2024-10-10 08:57:01'),(1073,'API_cd7aa1953138e81cb268ec8de9e868b9','提供给飞行监视查询当日计划飞行工作数量和正在飞行工作数量','','cmii-uav-mission','/api/uav/mission/surveillance/mission_flying_number','POST',_binary '\0',_binary '\0','2020-09-22 08:15:58',1,'2024-10-10 08:57:07'),(1074,'API_9a2e98241817ae6c0fe3ea4fc2261721','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryBy','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:08'),(1075,'API_32e11ca32ec273ec4a78bca3dd85f9e3','根据code获取资源的多语言版本','','cmii-uav-user','/api/uav/resource/queryResourceLanguage','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:13'),(1076,'API_db073aa081d2ffe613ebc3cf56876ab9','根据编码导出资源信息','','cmii-uav-user','/api/uav/resource/syncExportResource','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:12'),(1077,'API_144cb3ab17945c8b50b0c5b2fa20dae0','根据编码导入资源信息','','cmii-uav-user','/api/uav/resource/syncImportResource','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:09'),(1078,'API_951214eab30adc7578fdde049514ce4e','执行更新邮箱','','cmii-uav-user','/api/uav/user/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:13'),(1079,'API_257d9acdae4652fdef4795d11de4b411','找回密码','','cmii-uav-user','/api/uav/user/profile/findPwd','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:10'),(1080,'API_e9678de1af14b0753155ffab173a0613','用户邀请注册','','cmii-uav-user','/inviteRegistry','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:19'),(1081,'API_fbaaeb1dc35e086b1fe493193046f746','获取公司所有用户','','cmii-uav-user','/user/getByCId','GET',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:09'),(1082,'API_f5ec0b9a99300481ff676e3fd1ec326f','根据公司id,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId','GET',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-10-11 15:37:19'),(1083,'API_331b9a808ed0007b6c46cc6e5dec0e85','上传文件','','cmii-uav-airspace','/zydAirspace/putObject.do','POST',_binary '\0',_binary '\0','2020-09-23 06:24:03',1,NULL),(1084,'API_bed26233fb97b8d186bc1955883ad00f','设置Redis的数据字典','设置Redis的数据字典','cmii-admin-data','/api/admin/dictionary/setDictRedis','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-09-09 09:15:07'),(1085,'API_ae31ca2fc44fd14b3e8e494cb6faca5c','从Redis获取类别对应的字典明细','从Redis获取类别对应的字典明细','cmii-admin-data','/api/admin/dictionary/getDictRedisByType','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-09-09 09:15:08'),(1086,'API_2feb437ab841ebce098c4a071d84aadb','从Redis获取类别对应的有效的字典明细','从Redis获取类别对应的有效的字典明细','cmii-admin-data','/api/admin/dictionary/getValiableDictRedisByType','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-09-09 09:15:08'),(1087,'API_f0d603eba30e16a56b72d312dcee2b78','从Redis获取所有的编码对应的所有语言值','从Redis获取所有的编码对应的所有语言值','cmii-admin-data','/api/admin/dictionary/getAllValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-09-09 09:15:08'),(1088,'API_5c8b4d4a2969efea39ddfffa0cfe2e75','从Redis获取所有的语言对应的字典明细的K-V','从Redis获取所有的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-09-09 09:15:04'),(1089,'API_930f5e5c7fbe6e30b57944ff17b8831e','从Redis获取所有的编码对应的本地语言的值','从Redis获取所有的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-09-09 09:15:07'),(1090,'API_cb86e886050ae21f962df8b9bb6d8530','check在Redis里面明细是否有效','check在Redis里面明细是否有效','cmii-admin-data','/api/admin/dictionary/checkValiableInRedis','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-09-09 09:15:07'),(1091,'API_dea03766a92947842b88837ac9f93514','generalMissionSend','','cmii-uav-mission','/mqtt/MissionSend','POST',_binary '\0',_binary '\0','2020-09-24 09:25:47',1,NULL),(1092,'API_1e1b892be60f2ae98cd001413519f450','startMission','','cmii-uav-mission','/mqtt/startMission','POST',_binary '\0',_binary '\0','2020-09-24 09:25:47',1,NULL),(1093,'API_19616826cb61645b0a42907b6ac28322','endMission','','cmii-uav-mission','/mqtt/endMission','POST',_binary '\0',_binary '\0','2020-09-24 09:25:47',1,NULL),(1094,'API_812168f74d0ae4d4fb14726b76a9c4f2','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在;true:存在,false不存在','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_line_name_duplicate','GET',_binary '\0',_binary '\0','2020-09-25 06:24:49',1,'2024-09-09 09:16:29'),(1095,'API_e9295eb1669c0be3f3b82fd1c5531f3c','开始作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_starting/{id}','GET',_binary '\0',_binary '\0','2020-09-25 09:27:53',1,'2024-10-10 08:57:07'),(1096,'API_2c54812c0b28cb62f3ad1fb503fe5474','结束作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_ending/{id}','GET',_binary '\0',_binary '\0','2020-09-25 09:27:53',1,'2024-10-10 08:57:12'),(1097,'API_05e5cc906d4e5f2e58aea33e2a432e34','新建作业时查询封存航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airpoint_info_po_list/{id}','GET',_binary '\0',_binary '\0','2020-09-29 06:01:01',1,'2024-09-09 09:16:30'),(1098,'API_7d0e87bd698c59711eec761fa3c8a57a','根据流程ID查询空域详情-n','传入空域主键','cmii-uav-airspace','/zydAirspace/queryDetailByAudit.do','GET',_binary '\0',_binary '\0','2020-09-30 01:16:22',1,NULL),(1099,'API_afaa85332e700cfbede04b00d52074a8','查询本公司七日内作业完成历史记录','','cmii-uav-mission','/api/uav/mission/surveillance/flyHistory','GET',_binary '\0',_binary '\0','2020-09-30 02:05:50',1,'2024-10-10 08:57:07'),(1100,'API_cd990af8afd653c1f5342d6b22700c09','查询公司范围的设备在线状态','','cmii-uav-device','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2020-09-30 02:13:10',1,'2024-10-11 01:36:43'),(1101,'API_831630bcf0c07e37dd393b53d58900cc','国际化测试','','cmii-uav-surveillance','/surveillance/internationalTest','GET',_binary '\0',_binary '\0','2020-10-09 01:30:33',1,NULL),(1102,'API_36ee06627f1db4aecff47d210338e5d9','查询包括子公司的载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryLoadModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-10-11 01:36:47'),(1103,'API_c666353987c2e7f3d3fe966ba63acd2c','check在数据字典里面载荷类型编码和名称是否一致','check在数据字典里面载荷类型编码和名称是否一致','cmii-uav-device','/api/uav/load/checkLoadModelMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-10-11 01:36:48'),(1104,'API_ab7b50dd0de2b4aecab4c057a1339253','查询该公司的机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetailByModel','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-10-11 01:36:46'),(1105,'API_1f515aef9beec6efa8c04dac816e7d93','check在数据字典里面机库类型编码和名称是否一致','check在数据字典里面机库类型编码和名称是否一致','cmii-uav-device','/api/uav/hangar/checkHngModelMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-10-11 01:36:47'),(1106,'API_a7be376e5ee861d385187b9ae5748c39','无人机列表绑定的载荷列表详情查询','','cmii-uav-device','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-10-11 01:36:50'),(1107,'API_ae6e5100bf8e72ab99c0c574e8a8ad96','校验指定公司的无人机类型编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkUavModelMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-10-11 01:36:45'),(1108,'API_0c36d2f6044a28e11a500996c44393ba','查询指定公司的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-10-11 01:36:51'),(1109,'API_e9dff92e908dd9be6d674dac0a7a5f8a','kml文件导入接口','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/import_kml_file','POST',_binary '\0',_binary '\0','2020-10-28 10:06:15',1,'2021-06-01 09:28:46'),(1110,'API_ee582d88f16bf2a05f3f039238053b0b','kml文件导出接口','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/export_kml_file','GET',_binary '\0',_binary '\0','2020-10-28 10:06:15',1,'2021-06-01 09:28:46'),(1111,'API_4fea21fe984ff5fe15305ce790ae7dcb','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在;true:存在,false不存在','cmii-uav-waypoint','/api/uav/waypoint/app/airline_line_name_duplicate','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:30'),(1112,'API_dfcacd5d19a669672ff9d5016c428463','查询进度','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/schedule','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1113,'API_4f21500e3b030099e80d9914f8e0a8ca','查询地图','','cmii-uav-waypoint','/middlecourt/api/v1/view/maps','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:28'),(1114,'API_5e553cf59a44958448d8f1a8e9403549','查询天线','','cmii-uav-waypoint','/middlecourt/api/v1/view/antennas','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1115,'API_99677ca1fc1e2df645c6be0d3355d292','查询工参','','cmii-uav-waypoint','/middlecourt/api/v1/view/stations','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:30'),(1116,'API_e006385482aa4eaf9b8bd4bf7e4fbe57','查询传播模型','','cmii-uav-waypoint','/middlecourt/api/v1/view/transmodels','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1117,'API_2473b7c5ee6b48624674877ce86730b9','上传地图','','cmii-uav-waypoint','/middlecourt/api/v1/upload/map','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:28'),(1118,'API_3049d38f1964349d246bab31521d27dd','上传天线','','cmii-uav-waypoint','/middlecourt/api/v1/upload/antenna','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1119,'API_1c9a3ae62a96a15a5fa35037e15bd237','上传工参','','cmii-uav-waypoint','/middlecourt/api/v1/upload/station','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1120,'API_4d17b3a3d23428949cb0df4654e74797','上传传播模型','','cmii-uav-waypoint','/middlecourt/api/v1/upload/transmodel','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1121,'API_4a0042f3646812e462e52be6edf0eb01','二维覆盖仿真','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/2d','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1122,'API_9233e29dbe3898302905792de37090b2','下载仿真文件','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/download','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1123,'API_b62d286090d83037315faf488f111296','发布仿真结果','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/publishGis','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1124,'API_21d01c6fb59fdf33d1897d5a082378fc','查询用户的仿真结果','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/queryBySimId','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:28'),(1125,'API_03be8c3306f2abd97c8e23d113c01ba5','提供给外部平台上传航线航点信息','','cmii-uav-waypoint','/api/uav/waypoint/open_platform/airline_info_with_airpoints','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-09-09 09:16:29'),(1126,'API_1fb0a000cc6507b937c31b6886142cc3','更具公司id查询公司管理员','','cmii-uav-user','/user/getCompanyAdminByCId','GET',_binary '\0',_binary '\0','2020-11-11 03:00:34',1,'2024-10-11 15:37:09'),(1127,'API_1a018778504fa7a76012d85ea20ac016','校验指定公司设备类型的编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-10-11 01:36:48'),(1128,'API_e721a9dee48586a6f9e14acf4f6a0263','校验指定公司的设备类型是否匹配','','cmii-uav-device','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-10-11 01:36:45'),(1129,'API_ce5ec1b31cc777129860ddee19de9f62','校验指定公司的设备动作是否匹配','','cmii-uav-device','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-10-11 01:36:51'),(1130,'API_2339020a7c07baff4815ee31740f7176','查询公司/机构范围的无人机类型列表','','cmii-uav-device','/api/uav/plane/queryUavModelByCompanyId','GET',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-10-11 01:36:47'),(1131,'API_9a18721b0c11d492ee2ac765d434888e','查看流程模板详情','查看流程模板详情','cmii-uav-process','/process/config/get','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1132,'API_e37ad640561369415c8d63df72d05c38','新增流程模板实例','新增流程模板实例','cmii-uav-process','/process/config/add','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1133,'API_542c619f1d5f824e4f42b06dd28fdf98','修改流程模板信息','修改流程模板信息','cmii-uav-process','/process/config/update','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1134,'API_b282c4114f84b51c2969e4f4ebce1b9c','删除流程模板','删除流程模板','cmii-uav-process','/process/config/delete','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1135,'API_89afc8df9b924aaa9c5d141aed3466f0','查看流程模板列表','查看流程模板列表','cmii-uav-process','/process/config/list','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:54'),(1136,'API_6ebd19fa69f437d23e937843a2298104','查看用户对某个流程的权限【个人关联流程】','查看用户是否具有访问某个流程的权限【个人关联流程】','cmii-uav-process','/process/power/getPermission','GET,POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:59'),(1137,'API_1114d8041ccfb8339eb7935fc8ba9282','个人查看流程列表【个人关联流程】','个人查看流程列表【个人关联流程】','cmii-uav-process','/process/list/personalList','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1138,'API_623a97adf1787f657b4bfaee2f096e72','管理查看流程列表【租户下所有流程】','管理查看流程列表【租户下所有流程】','cmii-uav-process','/process/list/processList','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1139,'API_3b39bdb3a9a386ee0ae0e50602ade9b1','查看流程列表【流程自动初始化】','查看流程列表【流程自动初始化】','cmii-uav-process','/process/manage/list','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1140,'API_75ba8f1ce8192c75ee9f3226e6f25846','查看流程配置详细信息','查看流程配置详细信息','cmii-uav-process','/process/manage/get/detail','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1141,'API_b2b42ab1c418280a557fef46840e82fe','修改流程基础信息','修改流程基础信息','cmii-uav-process','/process/manage/update/baseInfo','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:56'),(1142,'API_ec991d995a5d80b1eb62b255d012c7d4','修改流程节点配置信息','修改流程节点配置信息','cmii-uav-process','/process/manage/update/node','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1143,'API_496eb853a337e034b54ff1e95a079d4a','查看流程节点配置信息','查看流程节点配置信息','cmii-uav-process','/process/manage/get/node','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1144,'API_bf6acf6806f9fbb0b11c38c61ec43780','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:56'),(1145,'API_e3fc55528e271f4dbb271d746a073737','模糊搜索用户列表接口[审批管理获取审批用户]','模糊搜索用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/search','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1146,'API_1703f5219dad8f4996685c38fdc268f0','审批流程任务接口【页面接口】','审批流程任务接口,用户对任务发起审批','cmii-uav-process','/process/audit/audit','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:54'),(1147,'API_d7009156f7913b2002131e2560c45832','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/detail','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1148,'API_0cf1476dfee47c99bc516adfdbf06f49','改派任务审批人接口【页面接口】','改派任务审批人接口,修改当前任务审批人','cmii-uav-process','/process/audit/modifyAssignee','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1149,'API_4de1bec4b470d64f0533261cf217d04a','修改流程实例节点审批人接口【页面接口】','修改节点审批人接口,修改流程后续审批人','cmii-uav-process','/process/audit/modifyNodeAssignee','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:56'),(1150,'API_e0f17baadc09281bc2a44d8c94887c8b','生成流程图接口','生成流程图接口','cmii-uav-process','/process/audit/processDiagram','GET',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:55'),(1151,'API_7530ee2404647eb8c11d70182c8a39ce','流程审核明细接口【页面接口】','流程审批明细接口,展示流程审批过程信息','cmii-uav-process','/process/audit/procInst/node/detail','GET',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:54'),(1152,'API_f7955f527ba9e2bcdda3bb9baa0a7d75','启动新流程【流程实例创建接口】','启动新流程,业务端后台程序发起流程创建【流程实例创建接口】','cmii-uav-process','/client/process/startProcess','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:57'),(1153,'API_70b3d400eb80a1b9690b4dd1decb56a2','获取某个流程类型定义信息【流程配置信息获取接口】','','cmii-uav-process','/client/process/client/process/procDef/get','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,NULL),(1154,'API_e06ce07e7c5675b08857625d167bd512','重新提交驳回流程【驳回流程修改后重新提交接口】','','cmii-uav-process','/client/process/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,NULL),(1155,'API_f1d1326af4d6bf0d9cca780ef7503c62','查询流程状态【业务系统查询流程状态接口】','','cmii-uav-process','/client/process/client/process/getProcessStatus','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,NULL),(1156,'API_46e8d02d8764d540469cc53b96d010e1','获取某个流程类型的详细信息','获取某个流程类型的详细信息','cmii-uav-process','/process/start/procDef/get','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:55'),(1157,'API_369c1f6c5f1d82ffe2022eae2c49421e','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2022-08-29 07:48:39'),(1158,'API_68668fe8c1c836b50875801ff65d1ca0','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2022-08-29 07:48:39'),(1159,'API_c58cc36656b780acc71fe379a6ed895c','swaggerResources','','cmii-uav-process','/swagger-resources','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2022-08-29 07:48:39'),(1160,'API_5afe9893f53f3bec6fff6fc1b30ca37b','error','','cmii-uav-process','/error','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:59'),(1161,'API_1ba9c89718e73cd3799ca00965f3942c','作业审批','','cmii-uav-mission','/api/uav/mission/mission_info/mission_approval','POST',_binary '\0',_binary '\0','2020-11-11 03:42:29',1,'2024-10-10 08:57:01'),(1162,'API_3fac1e405596412c2e906cd77256fc91','获取审批状态(审批系统状态更新后回调该接口)','','cmii-uav-mission','/api/uav/mission/mission_info/approval_state','POST',_binary '\0',_binary '\0','2020-11-11 03:42:29',1,'2024-10-10 08:57:10'),(1163,'API_fce712ce509feb0d543ce0918eb5757f','一键起飞查询作业列表接口','','cmii-uav-mission','/api/uav/mission/surveillance/queryOneButtonMissionList','GET',_binary '\0',_binary '\0','2020-11-11 03:42:29',1,'2024-10-10 08:57:02'),(1164,'API_831a3e33662ea4563d6924f37af37c84','查询SimId','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/querySimId','GET',_binary '\0',_binary '\0','2020-11-11 04:43:40',1,'2024-09-09 09:16:30'),(1165,'API_8e62b086e420fda5ad62f66b2be29b66','更新状态','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/updateStatus','PUT',_binary '\0',_binary '\0','2020-11-11 04:43:40',1,'2024-09-09 09:16:28'),(1166,'API_cd21a0064744a96ef11a1766255eb95e','统计公司/所属机构范围内的无人机数量','','cmii-uav-device','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2020-11-13 09:33:22',1,'2024-10-11 01:36:45'),(1167,'API_f4ff4a0253654d04df20e0fe9ad84b5d','根据无人机类型查询公司范围的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2020-11-13 09:33:23',1,'2024-10-11 01:36:46'),(1168,'API_db3a301b74e08e183f4e7dc6e18b30ab','查询空域以及空域限制数量','','cmii-uav-airspace','/zydAirspace/getAirspaceAndLimitNum.do','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2024-10-11 08:57:37'),(1169,'API_d9bb4dea458b1b86eb1b92d104602347','接口扫描','','cmii-uav-airspace','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2024-10-11 08:57:37'),(1170,'API_1a81598ff757acb38733400f73885a3b','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-airspace','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1171,'API_3f7ab22879f12c428914a7cb8e77d749','新增无人机','','cmii-uav-airspace','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1172,'API_425d874d3b2daa60267633323855812b','修改无人机','','cmii-uav-airspace','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1173,'API_c85f805f662b946370dc35c2d0d7ad81','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-airspace','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1174,'API_4e585954a282fd342c2685906d32db73','按无人机设备号查询无人机详情查询','','cmii-uav-airspace','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1175,'API_f75ea76dbe5590b2e29c31ebb6eb34a6','查询无人机是否可用','','cmii-uav-airspace','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1176,'API_cad9f3dc919a092e904fb87624b76497','查询设备在线状态','','cmii-uav-airspace','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1177,'API_2d5b67c0798f2da03268c719053ae57f','设置无人机在线状态','','cmii-uav-airspace','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1178,'API_7600057ebcc990764bd976d9f4d485f5','查询该公司有的无人机类型详细信息','','cmii-uav-airspace','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1179,'API_6fad829e37a03d312a7241e8b4e90cf9','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-airspace','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1180,'API_04e9a58158a47a98c55c9570bc29983d','查询公司/机构所属的无人机编码列表','','cmii-uav-airspace','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1181,'API_ac8436c7457471e30bac1ea1449b2f17','模糊查询可用状态列表','','cmii-uav-airspace','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1182,'API_ed4f2fe6eebde6163488bef59e3ec7c4','查询公司/机构所属的在线无人机列表','','cmii-uav-airspace','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1183,'API_e7e2f7876c57dc6e95f63072f1bd5b03','无人机绑定的载荷列表查询','','cmii-uav-airspace','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1184,'API_6c9f654619ced038950e62e7830810c8','统计公司/所属机构获取无人机数量','','cmii-uav-airspace','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1185,'API_3651178fee7a083a6ae61ea80699fde4','按无人机编码查询无人机详情查询','','cmii-uav-airspace','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1186,'API_9fe6c4116306d76faadf5bbb71e95efe','根据无人机编码查询该无人机是否存在','','cmii-uav-airspace','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1187,'API_e2c4e3bb23d0d892004fd7f0fc2e9f70','查询包括子公司的无人机尺度列表','','cmii-uav-device','/api/uav/plane/queryUavSizeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:43'),(1188,'API_9923170469d9fe3e5b24d8610be192ab','查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:52'),(1189,'API_0de4d92e1aa64c8c1800879290c3b3ac','模糊视频线路列表','','cmii-uav-device','/api/uav/plane/queryVideoLine','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:51'),(1190,'API_f4cdb7ba93755daf91e3494414279a5c','按无人机设备号查询指定公司范围内无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:53'),(1191,'API_e4c6dfa5b05761de0eb255769cf60dcc','根据设备类型和编码查询公司范围的可用状态信息','','cmii-uav-device','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:48'),(1192,'API_030e4547e850834c14fd61077634881a','查询指定公司/机构范围内的在线无人机列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:50'),(1193,'API_48aebb5ffd9166b9bc64f57909492a08','统计所有无人机数量','','cmii-uav-device','/api/uav/plane/queryAllUavCount','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:44'),(1194,'API_d307152526c45f79fd4e8d95caed9060','模糊查询包括子公司的生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:46'),(1195,'API_94d0907cd83bdda66ce2d15eaaf1875c','模糊查询包括子公司的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:43'),(1196,'API_502815d9c4439f38b83309b3c124a511','查询包括子公司的无人机形态列表','','cmii-uav-device','/api/uav/plane/queryUavShapeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:51'),(1197,'API_2736b2c4a2ac36f2a824c6f21c42f29f','模糊查询公司所属的可用状态列表','','cmii-uav-device','/api/uav/hangar/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:49'),(1198,'API_326a1a3ab9812751b8120495bfdc0342','模糊查询公司所属的机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarTypeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:48'),(1199,'API_e880f6790e3880dfdf832a77d34f994d','模糊查询公司所属的机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarModeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:43'),(1200,'API_c674128d738505b1b654dcc556aca6b3','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangarPage','POST',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:51'),(1201,'API_a59f14f77c781d6c32e045a162f33c96','模糊查询公司所属的生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:44'),(1202,'API_6a05eaa7341ed42348a119d0d5098cea','模糊查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/load/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:46'),(1203,'API_95f6f70e43ae56ae811aae121ce27a1b','模糊查询包括子公司的载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:54'),(1204,'API_106489797c47bd108d4818ba4fd67d4d','模糊查询包括子公司的载荷类型列表','','cmii-uav-device','/api/uav/load/queryModelNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-10-11 01:36:50'),(1205,'API_cfa14462d7844b50d869d454a6db494a','模糊查询包括子公司的载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadTypeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:32',1,'2024-10-11 01:36:53'),(1206,'API_4c67d80c9f6c7ed11355e3170571f851','接口扫描','','cmii-uav-device','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:30:32',1,'2024-10-11 01:36:42'),(1207,'API_4e61ca805de7e414e0a5cd51e894a63d','接口扫描','','cmii-uav-mission','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:36:53',1,'2024-10-10 08:57:01'),(1208,'API_9d875be85707d959500b8a317feb4cee','接口扫描','','cmii-uav-surveillance','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:40:19',1,'2024-09-23 20:58:59'),(1209,'API_5e5f8dd1422db17ae09b283c8a7f0792','查询上传状态','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/getUploadStatus/{key}','GET',_binary '\0',_binary '\0','2020-12-28 06:43:05',1,'2024-09-09 09:16:29'),(1210,'API_a3c29792379896e354fd697f7a3e4024','接口扫描','','cmii-uav-waypoint','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:43:05',1,'2024-09-09 09:16:30'),(1211,'API_15665441f1d1635587fd6f016058f3f6','分组获取平台应用列表','','cmii-uav-user','/api/uav/platform/queryPlatformsByGroup','GET',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:10'),(1212,'API_15665441f1d1635587fd6f016058f3f6','分组获取平台应用列表','','cmii-uav-user','/api/uav/platform/queryPlatformsByGroup','GET',_binary '\0',_binary '','2020-12-28 06:43:07',1,'2022-01-18 11:03:58'),(1213,'API_e4d855c1d7897b6b87fea71e8e06abc0','管理员获取全平台的所有树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:11'),(1214,'API_aea793965a6dccffb67f9c19b0e5c69c','获取某个角色的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForRole','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:08'),(1215,'API_48c8cb8f97e22a0f4b2ac1861f31c9dd','获取某个公司的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForCompany','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:21'),(1216,'API_39112b4382df2b946e30b59c784aa817','获取某个用户的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForUser','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:17'),(1217,'API_d83e61c4ac50aa7d9ec1091ed56ab8a3','获取某个用户的某个平台菜单树','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForUser','GET',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:19'),(1218,'API_afd411eb8654953e857666530e88321a','获取应用的类型列表','','cmii-uav-user','/api/uav/resource/getAppTypes','GET',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:18'),(1219,'API_ee6751fb2a2628f5c66cd8085cdbbcb2','管理员获取某一个平台的全部资源','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-10-11 15:37:20'),(1220,'API_33b24d37f02f7e07cd5ca451bf432b99','查询所有的用户','','cmii-uav-user','/user/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-10-11 15:37:13'),(1221,'API_aa858a3fc95f5d17248bff767175f1dc','查询用户和公司统计','','cmii-uav-user','/user/getStatistic','GET',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-10-11 15:37:11'),(1222,'API_e754afcf7b88439c5aacd7ba36e18d9b','接口扫描','','cmii-uav-user','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-10-11 15:37:21'),(1223,'API_b0554c7914636666aaf2d0672458a6cd','获取某个流程类型定义信息【流程配置信息获取接口】','获取某个流程类型定义信息,业务后台查询某个流程的定义信息','cmii-uav-process','/client/process/procDef/get','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-09-12 02:46:55'),(1224,'API_f58ad6540ac37ed06aa849814e36d2dd','重新提交驳回流程【驳回流程修改后重新提交接口】','业务端后台重新提交驳回流程【驳回流程修改后重新提交接口】','cmii-uav-process','/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-09-12 02:46:57'),(1225,'API_0c81f12bd0f555fe2eb9f25f0904ab15','查询流程状态【业务系统查询流程状态接口】','查询某个流程实例状态【业务系统查询流程状态接口】','cmii-uav-process','/client/process/getProcessStatus','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-09-12 02:46:56'),(1226,'API_169275344ae8193f7e3f3f39001776de','接口扫描','','cmii-uav-process','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:43:09',1,'2024-09-12 02:46:56'),(1227,'API_af68b2608a5a700a3b8504c97f0dacff','设备数据字典和匹配校验','','cmii-uav-waypoint','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1228,'API_9b803fd8bcccb3d6d7f42d9dc88cc6a0','新增无人机','','cmii-uav-waypoint','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1229,'API_4de0f5f038062db09cf7ae0b06d9d373','修改无人机','','cmii-uav-waypoint','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1230,'API_a417dcf0371454d834418a042487f682','通过无人机设备号查询无人机编码','','cmii-uav-waypoint','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1231,'API_736d5541d8cdbc3aeaa6e4ce4b5dc3d0','通过无人机编码查询无人机编码设备号','','cmii-uav-waypoint','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1232,'API_9eb7700827ac0160c98fa5c2a3e33434','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-waypoint','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1233,'API_762037d18dd68cd0d895faf640b3bcee','根据无人机编码获取公司信息','','cmii-uav-waypoint','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1234,'API_ec8265026e61114119bc6035b01bb97d','查询该公司有的无人机类型详细信息','','cmii-uav-waypoint','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1235,'API_4b34289fee6b9b03180041fdefca05e6','check设备动作是否匹配','','cmii-uav-waypoint','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1236,'API_8d7abfb09ac62de9e3d6ea50115036ee','按无人机编码查询无人机详情查询','','cmii-uav-waypoint','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1237,'API_78172a760edc58397f8e8f962f0eca3d','按无人机设备号查询无人机详情查询','','cmii-uav-waypoint','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1238,'API_25335ce26ac53477ece5786cacfb6a5e','查询设备在线状态','','cmii-uav-waypoint','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1239,'API_55a89b3a59f0efcaa108b83c8083a036','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-waypoint','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1240,'API_09a8f22372570a4175344e13ef3cae94','模糊查询可用状态列表','','cmii-uav-waypoint','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1241,'API_82e4da2d276a03137e59b0ab3f806364','查询公司/机构所属的在线无人机列表','','cmii-uav-waypoint','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1242,'API_3d35029c383ea19006be8c0c0e0fd126','无人机绑定的载荷列表查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1243,'API_524b37bab927c63618a3a9edece46aef','统计公司/所属机构获取无人机数量','','cmii-uav-waypoint','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1244,'API_4454259283b71738184688a5a1a61358','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-waypoint','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1245,'API_213cabb5de1eed25c9739d6482674269','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-waypoint','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1246,'API_ed5e314cabcf2499d757fe5f805c7c7e','生成新无人机编码','','cmii-uav-waypoint','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1247,'API_4af171b23c836f0fc1ec2abd72c1dc77','check设备类型是否匹配','','cmii-uav-waypoint','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1248,'API_586ad6cbe725e05d7f9c7e2fd04325cf','禁用三月未登录过的用户','','cmii-uav-user','/api/uav/user/disableInactiveUsers','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:12'),(1249,'API_8c4df51ed65d15b261daf2bca465eaaf','导出查询结果','','cmii-uav-user','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:17'),(1250,'API_370e298f167c80ef222770b53b25f05d','查询应用列表','','cmii-uav-user','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:12'),(1251,'API_3ea32b425fd30e8ed7d124fe062c72ef','查询问题反馈','','cmii-uav-user','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:21'),(1252,'API_1b93c3aae168c8efd6dad138874bded8','查询反馈类型','','cmii-uav-user','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:19'),(1253,'API_d6260990e96ba28ae65e0420311ada19','添加一个问题反馈','','cmii-uav-user','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-10-11 15:37:21'),(1254,'API_90486be4c33795d2c75c471f947c41b5','校验指定公司的设备数据是否匹配','','cmii-uav-device','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:09:43',1,'2024-10-11 01:36:50'),(1255,'API_40a64df7cb84eea605f73dde15d98668','通过无人机设备号查询无人机编码','','cmii-uav-device','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-10-11 01:36:47'),(1256,'API_7704177d2ecb71fb7bb4068333033d01','通过无人机编码查询无人机设备号','','cmii-uav-device','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-10-11 01:36:50'),(1257,'API_aaa3bdb2ba087941f88cc48a55f4f003','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-10-11 01:36:52'),(1258,'API_ab559f97c2b1ae1a8216fcf3c90f0fba','统计指定公司的(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-10-11 01:36:47'),(1259,'API_4b641b03323c7aba2e2afbab6ea01589','按机库设备号查询机库详情','','cmii-uav-device','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-10-11 01:36:44'),(1260,'API_e02756ce1d268f6ac8698ac81b2826db','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-10-11 01:36:47'),(1261,'API_90cd80a446b293444ba189243f4afa21','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-10-11 01:36:50'),(1262,'API_2c581c80620f2c6f54d128033e9eccc5','通过机库设备号查询机库编码','','cmii-uav-device','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-10-11 01:36:48'),(1263,'API_9df19cad9a1ba451241223ecdfa09ead','通过机库编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-10-11 01:36:52'),(1264,'API_424da75617ec54006483edc52b7e696f','机场急停','','cmii-uav-mission','/api/uav/mission/FoiaHangar/stop/{id}','GET',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-10-10 08:57:03'),(1265,'API_f701b72eaec561ea21e7a4e9efd92827','机场复位','','cmii-uav-mission','/api/uav/mission/FoiaHangar/reboot/{id}','GET',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-10-10 08:57:10'),(1266,'API_f9450a4ee19805d14b767d85afb60afc','机场准备','','cmii-uav-mission','/api/uav/mission/FoiaHangar/ready/{id}','GET',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-10-10 08:57:13'),(1267,'API_7d4824e14f3ddc56295b824df109c6d9','周期性在redis存储丢失进行中的信息','','cmii-uav-mission','/api/uav/mission/surveillance/setRedisMissionInfo','POST',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-10-10 08:57:13'),(1268,'API_fb22472680ef72ebfc603479c388a60d','查询设备在线状态','','cmii-uav-mission','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1269,'API_6f59dd31a5840ba63ebd58bb7e54a7c4','按无人机编码查询无人机详情查询','','cmii-uav-mission','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1270,'API_ebd31cef4d48bfb7e54766f6d784003b','按无人机设备号查询无人机详情查询','','cmii-uav-mission','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1271,'API_9aa1de342a48b50972a4b48bdf27e7c5','查询该公司有的无人机类型详细信息','','cmii-uav-mission','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1272,'API_0215a3010b9250e9b6b0357a45615fe4','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-mission','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1273,'API_da9f04677489e26538e71b9c8a7565f5','模糊查询可用状态列表','','cmii-uav-mission','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1274,'API_646327b7daeb3af90d930e0a6e2cdfeb','查询公司/机构所属的在线无人机列表','','cmii-uav-mission','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1275,'API_6ea96235a5640404c3df7adcb467bcc8','统计公司/所属机构获取无人机数量','','cmii-uav-mission','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1276,'API_1501ac6049853be6c03ec867874c091f','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-mission','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1277,'API_345f0c239781b0b59960856ec37ff89a','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-mission','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1278,'API_0f19127b48107cf6ffd3684fdf7eb328','新增无人机','','cmii-uav-mission','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1279,'API_f20245799f6c52050fd536a2283758cd','修改无人机','','cmii-uav-mission','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1280,'API_d5a1db024948add15ae29d43632620bc','通过无人机设备号查询无人机编码','','cmii-uav-mission','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1281,'API_a805972725b12db9c5e41df66a478fd0','通过无人机编码查询无人机编码设备号','','cmii-uav-mission','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1282,'API_fabbbd0819241f50e91c5bad3d2e4491','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-mission','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1283,'API_6dd2a49c737014f41732b54bbe92cc34','check设备类型是否匹配','','cmii-uav-mission','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1284,'API_09fd06322fa267a0027cb875cdf38f76','check设备动作是否匹配','','cmii-uav-mission','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1285,'API_3ce00fa7b83f072cd7058c9ee3aa121d','设备数据字典和匹配校验','','cmii-uav-mission','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1286,'API_f9a217f36007f249f5bd7d5a4bbf3172','根据无人机编码获取公司信息','','cmii-uav-mission','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1287,'API_bf85fa138749a6a03e683ffeba5b4482','生成新无人机编码','','cmii-uav-mission','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1288,'API_64bfcc7f1f967905a8dc832e882ca9b5','生成新无人机编码','','cmii-uav-airspace','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1289,'API_d4881ed31a8ab5f17a194fdd4a451b79','通过无人机设备号查询无人机编码','','cmii-uav-airspace','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1290,'API_48dda530a2caabb3678acf9d5e225295','通过无人机编码查询无人机编码设备号','','cmii-uav-airspace','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1291,'API_7b7d9ecc40f2168bd7a35039c959e9d8','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-airspace','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1292,'API_2a05f9e89288287b6bc06e0ad62b8fae','check设备类型是否匹配','','cmii-uav-airspace','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1293,'API_4edc7baa9427bdb404f600c277cb28d8','check设备动作是否匹配','','cmii-uav-airspace','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1294,'API_1317799c7c1ef863c1a07b658f936c17','设备数据字典和匹配校验','','cmii-uav-airspace','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1295,'API_c5fe3c392bfc5993926b4d159409e762','根据无人机编码获取公司信息','','cmii-uav-airspace','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1296,'API_14076be4a320bb420893f59ef4d3af65','查询飞行日志','','cmii-uav-surveillance','/surveillance/flyLog/{uuid}','GET',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-09-23 20:58:58'),(1297,'API_327f903486be8cb82cb8ed1a629f1715','查询飞行时长','','cmii-uav-surveillance','/surveillance/flyDuration/{duration}','GET',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-09-23 20:59:00'),(1298,'API_6cc34d23717ebfca7bdae9127c1f4864','开启喊话器','params:喊话内容','cmii-uav-surveillance','/camera/megaphone/start','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-09-23 20:59:00'),(1299,'API_659eed366c2a020e934d2bc3d58b9e39','关闭喊话器','params为空','cmii-uav-surveillance','/camera/megaphone/stop','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-09-23 20:58:58'),(1300,'API_263d5daa8c0179c23b401126bbcde203','设置喊话器音量','params:音量范围0~10','cmii-uav-surveillance','/camera/megaphone/setVolume','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-09-23 20:59:00'),(1301,'API_e9bb76474f17f4137d05f45a13f2900d','设置xt2模式','params:模式范围0,1,2','cmii-uav-surveillance','/camera/XT2ModeSetting','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-09-23 20:58:58'),(1302,'API_3bf817ec43bf227253f798fdcf13b646','记录飞行日志','','cmii-uav-surveillance','/oapi/saveFlyLog','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-09-23 20:58:57'),(1303,'API_0387c4fa49334cf7f95c3ade04cd7cd1','记录飞行日志','','cmii-uav-surveillance','/oapi/updateFlyLog','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-09-23 20:59:01'),(1304,'API_cc63faa4dd0156e84a03a22be22f8839','飞机下线时删除飞行日志','','cmii-uav-surveillance','/oapi/deleteFlyLog','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-09-23 20:59:00'),(1305,'API_d15f2e54997322cd88e3c4231243e924','统计在线时长','','cmii-uav-surveillance','/oapi/calDuration','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-09-23 20:58:59'),(1306,'API_c453b11c4d7e4642804c2a0b4ea562b8','按机库编码查询机库详情查询','','cmii-uav-surveillance','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1307,'API_8f59d45a85af7b03830b792499dd01f0','查询公司/机构所属的机库编码列表','','cmii-uav-surveillance','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1308,'API_231dd57be4bd6fbc5a481534adb503c8','获取无人机绑定的机库详细信息','','cmii-uav-surveillance','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1309,'API_bb431f3c52639fa813afa15a30190f49','获取机库绑定的无人机详细信息','','cmii-uav-surveillance','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1310,'API_db3d3eaedec875d615459259971de9ab','生成新机库编码','','cmii-uav-surveillance','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1311,'API_9eb5275a71b188ad5c0e1be712128d4b','新增机库','','cmii-uav-surveillance','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1312,'API_da01f6d3f5f6cdd03b607f450a22867c','按机库设备号查询机库详情','','cmii-uav-surveillance','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1313,'API_864e1d7f26938049fd7e643757f272a4','修改机库','','cmii-uav-surveillance','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1314,'API_7152166a71fee9fe89715d71dbc31816','通过机库设备号查询机库编码','','cmii-uav-surveillance','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1315,'API_4261753098c828c185a78a044dfdf79e','通过机库编码查询机库设备号','','cmii-uav-surveillance','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1316,'API_585adf61aed7f0bcb1f0582801ca7de8','设置机库在线状态','','cmii-uav-surveillance','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1317,'API_7cf888253d14b51f7ff8aa3aca50152c','查询航线当前已用配额数','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/current_quota','POST',_binary '\0',_binary '\0','2021-03-05 08:24:27',1,'2024-09-09 09:16:29'),(1318,'API_f95bc280c1ff1d44b76e70135cbb14ac','getUsedQuotaNumByType','','cmii-uav-waypoint','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:24:28',1,'2024-09-09 09:16:29'),(1319,'API_7cc7cee309ba9ebc98b9ec238321a09e','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-waypoint','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:24:28',1,'2023-05-04 09:35:56'),(1320,'API_651bfce6c712d49923d869f80becec21','模糊查询在线无人机编码和机库编码列表','','cmii-uav-waypoint','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:24:28',1,'2023-05-04 09:35:56'),(1321,'API_49247494c82c42d58ffb6d83b3923879','查询作业当前已用配额数','','cmii-uav-mission','/api/uav/mission/mission_info/current_quota','POST',_binary '\0',_binary '\0','2021-03-05 08:25:53',1,'2021-03-29 01:33:58'),(1322,'API_04969e8eceeb833d66f136cb94972a53','getUsedQuotaNumByType','','cmii-uav-mission','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:25:54',1,'2024-10-10 08:57:06'),(1323,'API_31b09004cd00c581ac19afc0c2ead83c','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-mission','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:25:54',1,'2023-07-18 04:08:27'),(1324,'API_9989722ce729a8e98e53f5af1353390c','模糊查询在线无人机编码和机库编码列表','','cmii-uav-mission','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:25:54',1,'2023-07-18 04:08:27'),(1325,'API_7cbd59ade75e3ef1c42860a1c2a27f4b','全局监视页面根据code快速查询设备','','cmii-uav-surveillance','/surveillance/queryDevice','GET',_binary '\0',_binary '\0','2021-03-05 08:45:21',1,'2024-09-23 20:58:59'),(1326,'API_99e470398be86a79a7fe7b2b1b327fbf','queryFlyData','','cmii-uav-surveillance','/oapi/queryFlyData/{companyId}','GET',_binary '\0',_binary '\0','2021-03-05 08:45:21',1,'2021-06-09 03:43:12'),(1327,'API_d7c76ce6ed5855ad6326eaacbb9d0cae','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-surveillance','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1328,'API_cde3eefba3b56ece695729043dd50437','新增无人机','','cmii-uav-surveillance','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1329,'API_fb2874ad70ddda8164d8df3a670c9e7f','修改无人机','','cmii-uav-surveillance','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1330,'API_8532d563a526295196e1ef1195424dd8','通过无人机设备号查询无人机编码','','cmii-uav-surveillance','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1331,'API_0e4dae63b4a73ab7fbc8f7ecb3b9c7f5','通过无人机编码查询无人机编码设备号','','cmii-uav-surveillance','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1332,'API_e493cd33fb2d3303e2ed93af707a129e','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-surveillance','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1333,'API_50406eac9259107ea0da2edd9f72794e','生成新无人机编码','','cmii-uav-surveillance','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1334,'API_32dcb1ef930bb7ff3cca083836840704','按无人机编码查询无人机详情查询','','cmii-uav-surveillance','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1335,'API_ec40bad526e16fe2c200962ff9f9bcf7','按无人机设备号查询无人机详情查询','','cmii-uav-surveillance','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1336,'API_24d2db606bb36666d5e2e0da5534e930','check设备类型是否匹配','','cmii-uav-surveillance','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1337,'API_1f006699dd852263ba0ee06b91366039','check设备动作是否匹配','','cmii-uav-surveillance','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1338,'API_630323f7ea6f78df8964863a1e058f0c','设备数据字典和匹配校验','','cmii-uav-surveillance','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1339,'API_da99815bbe84e14f48ce07a3ddccc355','根据无人机编码获取公司信息','','cmii-uav-surveillance','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1340,'API_18e5d65d1e5f31d0ce89cc14096c8595','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-surveillance','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1341,'API_451e512f13819504da0ba34c4c4af87d','模糊查询可用状态列表','','cmii-uav-surveillance','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1342,'API_fa3f95aebe3a45d652db8e08e27a6384','查询公司/机构所属的在线无人机列表','','cmii-uav-surveillance','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1343,'API_b011caf6a1038912a50ee57a04e66c5b','统计公司/所属机构获取无人机数量','','cmii-uav-surveillance','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1344,'API_9fca5f8abec2443cbc516fb8ec6021d2','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-surveillance','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1345,'API_f12d909cd165015a9ccc6d14ea932bf0','查询设备在线状态','','cmii-uav-surveillance','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1346,'API_795076893d771daab734dacb1505a16c','查询该公司有的无人机类型详细信息','','cmii-uav-surveillance','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1347,'API_beb561db588c977f4b493b21de97ea44','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-surveillance','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1348,'API_02061d97ce91b3bd383d4373f0a0f7fa','模糊查询在线无人机编码和机库编码列表','','cmii-uav-surveillance','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1349,'API_e044ae974ff897f852291a7ac5443b09','根据机库编码获取公司信息','','cmii-uav-surveillance','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:06'),(1350,'API_4e0df8f7b53399e937cd1d77e87ffc4f','模糊指定公司的在线无人机编码和机库编码列表','','cmii-uav-device','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:46:31',1,'2024-10-11 01:36:54'),(1351,'API_18fac9d5bf04444272c88e747b034bd7','根据机库编码获取公司信息','','cmii-uav-device','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-03-05 08:46:32',1,'2024-10-11 01:36:53'),(1352,'API_f392e8e611abd392c111b1733bf01c2e','getUsedQuotaNumByType','','cmii-uav-device','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:46:32',1,'2024-10-11 01:36:44'),(1353,'API_ee02cddf9432d4c8f699017d3cefb62a','getUsedQuotaNumByType','','cmii-uav-airspace','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:47:07',1,'2024-10-11 08:57:38'),(1354,'API_96892fe677c9c23515aced7e5c835cc5','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-airspace','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:47:08',1,'2023-03-29 08:30:26'),(1355,'API_f620072ca87ae28faae8ce8fc7033853','模糊查询在线无人机编码和机库编码列表','','cmii-uav-airspace','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:47:08',1,'2023-03-29 08:30:26'),(1356,'API_9459ff49b424848b1c7fb42856b779f7','下载','','cmii-uav-data-post-process','/v1/product/download/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1357,'API_cc23ed1c8fe2da56ee0375ecdf70e3b5','产品管理分页查询','','cmii-uav-data-post-process','/v1/product/product_info_page_list','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1358,'API_89ccd56b4bdc629b8990e6c6b9dcba53','获取map_report.json信息','','cmii-uav-data-post-process','/v1/product/map_report/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1359,'API_6c9975d530355f36329f8c2546b1f61a','获取拍摄点位置信息','','cmii-uav-data-post-process','/v1/product/pos/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1360,'API_545d5146891d3bd79ebb0b86c470a827','重建任务','','cmii-uav-data-post-process','/v1/task/rebuild/{id}','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1361,'API_ef818ed0cb9afbacded2bf428b65cc33','取消任务','','cmii-uav-data-post-process','/v1/task/cancel/{id}','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1362,'API_cfe1cf9e1e588f8846a32af5452f8164','任务管理分页查询','','cmii-uav-data-post-process','/v1/task/task_info_page_list','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1363,'API_c84fd52e9a5cbe5bf012f515194bb1cf','获取建模场景类型','','cmii-uav-data-post-process','/v1/task/getScenceType','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1364,'API_8d65fe03b05e8fea0a059b3d9d8eb850','根据任务id查询任务详情','','cmii-uav-data-post-process','/v1/task/task_info/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1365,'API_855069b95280ecd09143ca46e2958c38','编辑获取三张图片URL','','cmii-uav-data-post-process','/v1/task/getPicUrl/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1366,'API_59d4b802a27f0825292a987b39ffd59b','上传POS文件','','cmii-uav-data-post-process','/v1/task/uploadPos','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1367,'API_1ddfbdf96ef11183031d490487795d00','上传图片','','cmii-uav-data-post-process','/v1/task/uploadPic','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1368,'API_8931e96fa8450d8f0dadd3f20044f621','判断任务名称是否重复-n','','cmii-uav-data-post-process','/v1/task/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1369,'API_be409ef972769200493ae669b7641e05','更新任务','','cmii-uav-data-post-process','/v1/task/update','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1370,'API_31b52892648d5dfb5793f69cd1aee01a','删除/批量删除','','cmii-uav-data-post-process','/v1/task/delete','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1371,'API_db0b7babb357fdbbd53be35427d129f9','下载上传测试','','cmii-uav-data-post-process','/v1/task/test','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-04-20 09:19:37'),(1372,'API_246a9e5c8c40d50586fe274719b7063a','开始任务','','cmii-uav-data-post-process','/v1/task/start/{id}','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1373,'API_3ff4ecf7ac3f3a90a001b29caddc019b','新增任务','','cmii-uav-data-post-process','/v1/task/create','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1374,'API_169644a4224fd00f7c6ed9c8ad157365','点云数据上传','','cmii-uav-data-post-process','/3d/visual/uploadPointCloud','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1375,'API_88121e8c87e364e95d8fc992a9b5b6b8','文件进度查询','','cmii-uav-data-post-process','/3d/visual/progress','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1376,'API_d81370ec395231ea118691f802a3959f','三维可视化产品检索/列表','','cmii-uav-data-post-process','/3d/visual/retrieval','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1377,'API_d18e46e52b3039c43e43057c018ba401','三维可视化产品下载','','cmii-uav-data-post-process','/3d/visual/download','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1378,'API_c0b9092d6e017414e022019219a5c0df','单体模型上传新增','','cmii-uav-data-post-process','/3d/visual/modelUploadAdd','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1379,'API_e71ec279bbf71933762a2869a4c8aae0','文件合并','','cmii-uav-data-post-process','/3d/visual/merge','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1380,'API_00d64428ac4f1c56e406cc715f37f794','文件秒传查询','','cmii-uav-data-post-process','/3d/visual/fileValidate','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1381,'API_15859e0c21efcee3b93d16175037bf64','三维可视化产品编辑','','cmii-uav-data-post-process','/3d/visual/edit','PUT',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1382,'API_c4b0c1cb77e96f0367b62b8ed70ba43b','三维可视化产品数据管理列表','','cmii-uav-data-post-process','/3d/visual/pageInfo','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1383,'API_cf739754c7f4d8bec10cb1ba5e588045','三维可视化产品详情','','cmii-uav-data-post-process','/3d/visual/detail/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1384,'API_0679a1f2be7d6e2442aa7e74d9acab4a','判断产品名称是否重复','不存在true,存在false','cmii-uav-data-post-process','/3d/visual/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1385,'API_35b322ad7b37fd1ba2f98f7062ecbc18','三维可视化产品删除','','cmii-uav-data-post-process','/3d/visual/delete','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1386,'API_af48c2bf6f88f715b7230f3194310cc4','单体模型上传删除','','cmii-uav-data-post-process','/3d/visual/modelUploadDelete','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1387,'API_eccd1f8f2e92409eb9f7c17c0a0636bf','单体模型上传编辑数据回显','','cmii-uav-data-post-process','/3d/visual/modelUploadInfo/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1388,'API_caf83005e3996c45733c7ed85a18c310','单体模型上传修改','','cmii-uav-data-post-process','/3d/visual/modelUploadEdit','PUT',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1389,'API_9ef1db25fb494b05ed3ca3e663d47dfb','三维可视化产品新增','','cmii-uav-data-post-process','/3d/visual/save','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1390,'API_9e7b833bb630e85a08e88063bf364fb4','点云文件名更新','','cmii-uav-data-post-process','/3d/visual/rename','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1391,'API_0e5f0acd24f9678a5d9eb85e53172b7b','接口扫描','','cmii-uav-data-post-process','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2024-09-09 09:16:29'),(1392,'API_a0b543736472d30f7547431b9d9167fa','uiConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2022-06-08 03:06:20'),(1393,'API_7c69b2e9a17539f83179cd3667a81fae','swaggerResources','','cmii-uav-data-post-process','/swagger-resources','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2022-06-08 03:06:20'),(1394,'API_648fb7a293e4810e8ad1ff2412de91eb','securityConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2022-06-08 03:06:20'),(1395,'API_aa7ce5574fa478381148404b669b1bfa','删除数据对象','','cmii-uav-data-post-process','/api/minio/core/removeObject','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1396,'API_86a9b5871297856cfa8961ecbfcf683d','判断桶的对象是否存在','','cmii-uav-data-post-process','/api/minio/core/checkBucketObjectExist','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1397,'API_8a8b4d2ebeb57fd0e9b846c16403cae2','上传对象,基于文件','','cmii-uav-data-post-process','/api/minio/core/putObject/file','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1398,'API_0450437204ee337a7e79780bec7e3b9a','获取需要下载的对象的URL','','cmii-uav-data-post-process','/api/minio/core/getObjectUrl','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1399,'API_320aea144882e52790db501ac360e569','获取需要下载的对象的URL,有效期1天','','cmii-uav-data-post-process','/api/minio/core/getPresignedObjectUrl','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1400,'API_977467cc0cf6d304159436147c01f129','列出指定条件下的所有存储对象','','cmii-uav-data-post-process','/api/minio/core/listObjects','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1401,'API_3036f5b99ad32c01dbcf78bdc163b052','上传对象,基于输入流','','cmii-uav-data-post-process','/api/minio/core/putObject/stream','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1402,'API_ca28830caafb750d4540b97b3cc8775e','第一次上传项目','第一次上传项目,返回projId','cmii-uav-data-post-process','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1403,'API_f0c8f2e13ad248e06e71b585379a312d','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-data-post-process','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1404,'API_4557dd7f13c4d01b4e7105f3fae14edc','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-data-post-process','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1405,'API_b11d894aa4171d47cd426d7eb888abb7','删除项目的文件','删除项目的文件,支持批量','cmii-uav-data-post-process','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1406,'API_a6f7254e8668e761007186ba05975a0c','项目文件上传','上传项目文件 ','cmii-uav-data-post-process','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1407,'API_7654a8d0f2881056d9f2d8c9475aec7b','error','','cmii-uav-data-post-process','/error','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2024-09-09 09:16:30'),(1408,'API_4af5893392682f4c772cc6fd43822722','模糊查询当前公司下全量的用户列表','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info/vague','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-10-10 08:57:01'),(1409,'API_84f043be2e4013cce86b198726676544','查询作业执行人的用户列表(数据回填专用)','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info/fallBack','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-10-10 08:57:06'),(1410,'API_015807cd5fc04522602251b1f4d3bce3','模糊查询作业创建人的用户列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/down_list_create_user_info','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-10-10 08:57:02'),(1411,'API_64ce54248af887816ce6324ce45e2641','提供给中科院地理所作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/task_info','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-10-10 08:57:12'),(1412,'API_9e6f80667889e7658f6639404b0e6937','数据恢复','','cmii-uav-mission','/api/uav/mission/mission_info_list/recovery_track_data','POST',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-10-10 08:57:13'),(1413,'API_5552513e7cdd28fe17c7b8b8095424df','getProcessIsExist','','cmii-uav-mission','/client/process/getProcessIsExist','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-10-10 08:57:08'),(1414,'API_406ff88acf10405695de904d537ee1b8','getNjHistoryPoint','','cmii-uav-surveillance','/surveillance/getNjHistoryPoint','GET',_binary '\0',_binary '\0','2021-03-19 05:47:18',1,'2024-09-23 20:58:57'),(1415,'API_02c2b3cc0c789674700010e27c671121','hangarLoadControl','','cmii-uav-surveillance','/camera/hangarLoadControl','POST',_binary '\0',_binary '\0','2021-03-19 05:47:18',1,'2024-09-23 20:58:57'),(1416,'API_e1119e261ccaf0dcc95320cbaf0c9e03','查询空域详情-n(数据回填专用)','传入空域主键','cmii-uav-airspace','/zydAirspace/queryDetail.do/fallBack','GET',_binary '\0',_binary '\0','2021-03-19 05:49:40',1,'2024-10-11 08:57:37'),(1417,'API_869d9b04d73f4ccba32d7f45de4b53ee','getProcessIsExist','','cmii-uav-airspace','/client/process/getProcessIsExist','GET',_binary '\0',_binary '\0','2021-03-19 05:49:40',1,'2024-10-11 08:57:37'),(1418,'API_34920ec007c3ac277370bdb9532f2a2a','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list/vague','GET',_binary '\0',_binary '\0','2021-03-19 05:50:21',1,'2024-09-12 02:46:58'),(1419,'API_4c3c7e261f5d40feb0f4567886cd3737','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/getProcessIsExist','GET',_binary '\0',_binary '\0','2021-03-19 05:50:21',1,'2024-09-12 02:46:58'),(1420,'API_edb896c8f7a949895d9d28aa9a5950c6','查询公司详细信息(数据回填专用)','','cmii-uav-user','/api/uav/org/getCompanyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:17',1,'2024-10-11 15:37:11'),(1421,'API_c727602364100d70015a5ce2f3b30493','根据token获取用户基本信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getMyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-10-11 15:37:15'),(1422,'API_0755f3279b5bf809dcfb81600e4c7310','获取用户详细信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-10-11 15:37:10'),(1423,'API_1b7015d5a94be8c6f1fa73ce08a46c25','删除用户','','cmii-uav-user','/api/uav/user/delete','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-10-11 15:37:19'),(1424,'API_4de3b611f4460f38f9a8a8b2be70a663','是否还有配额','','cmii-uav-user','/quota/personal/hasQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-10-11 15:37:10'),(1425,'API_bf931bc2b9309816c6beaed0cfb4ebed','二三维建模根据code获取用户Token','二三维建模根据code获取用户Token','cmii-uav-data-post-process','/v1/permission/user/getTerraToken','GET',_binary '\0',_binary '\0','2021-03-19 05:53:16',1,'2024-09-09 09:16:29'),(1426,'API_4b7f2c204a20619304859f611f2481c1','三维可视化根据code获取用户Token','三维可视化权限获取token','cmii-uav-data-post-process','/v1/permission/user/getVisualToken','GET',_binary '\0',_binary '\0','2021-03-19 05:53:16',1,'2024-09-09 09:16:30'),(1427,'API_28c90b87b0a44241486efce657ac1027','保存复亚的位置信息2','','cmii-uav-mqtthandler','/foia/saveFoiaTrackInfo2','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-09-28 01:55:53'),(1428,'API_4d6c2d76433cb4a372d715d6e19f50cd','保存复亚的位置信息','','cmii-uav-mqtthandler','/foia/saveFoiaTrackInfo','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-09-28 01:55:53'),(1429,'API_0a80b501b02669c79a381de8aa9fe693','开始任务','','cmii-uav-mqtthandler','/mqtt/startMission','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1430,'API_c36031561f8bc94e54bc7a11053a1c96','结束任务','','cmii-uav-mqtthandler','/mqtt/endMission','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1431,'API_601a0aff69d14aa570e58d398f6fce09','轨迹恢复','','cmii-uav-mqtthandler','/mqtt/recoveryTrackData','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1432,'API_5b55481c3686a7cef015c60c344b7f48','发送任务指令','','cmii-uav-mqtthandler','/mqtt/MissionSend','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1433,'API_bb0472471e6e157406f9e42a42d0af46','摄像参数设置','设置相机摄像参数','cmii-uav-mqtthandler','/gimbal/video/setting','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:46'),(1434,'API_8f989250e64e61745daa1b6d4a93e743','云台参数设置','设置云台转动参数','cmii-uav-mqtthandler','/gimbal/gimbal/setting','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1435,'API_a663322ce87ea58cac4b4fbc7a059d0d','自动对焦','云台自动对焦','cmii-uav-mqtthandler','/gimbal/camera/autoFocus','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:46'),(1436,'API_0cf94e61e21a555077fe5090a5f9cd89','拍照/摄像','拍照或摄像','cmii-uav-mqtthandler','/gimbal/camera/cameraAction','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:46'),(1437,'API_11ba43c3ec79c262f9026f1c7093e6a1','镜头缩放','镜头缩放','cmii-uav-mqtthandler','/gimbal/camera/zoom','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:48'),(1438,'API_d23d700f4344d073c7a3a6de168d0aaa','切换为照相/摄像模式','','cmii-uav-mqtthandler','/gimbal/camera/modeChange','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1439,'API_1d5ed939a990b8285d9c812ef4795b8d','云台控制转向','','cmii-uav-mqtthandler','/gimbal/gimbal/control','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1440,'API_78493ed0da030621c1c9e751df34abd9','相机参数设置','设置相机拍照参数','cmii-uav-mqtthandler','/gimbal/camera/setting','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1441,'API_c914a0735dd37762f089d627a1766b12','批量上传飞行态势数据','同时上传多架次无人机飞行态势数据,每秒上传一次','cmii-uav-mqtthandler','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:48'),(1442,'API_ddee7deab9f1c0fc74b9f074268f58f0','上传飞行态势数据','上传单架次无人机飞行态势数据,每秒上传一次','cmii-uav-mqtthandler','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:46'),(1443,'API_e88fafb548f8395e747ec2947d1d3129','获取一次飞行的轨迹','根据orderId获取一次飞行的轨迹','cmii-uav-mqtthandler','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1444,'API_c29fbfd49b3f0a8eab190de53b659af7','获取一次作业的轨迹','根据missionId获取一次飞行的轨迹,每秒上传一次','cmii-uav-mqtthandler','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1445,'API_5f4abbc22b087a1c4fa06c686f969659','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-mqtthandler','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:46'),(1446,'API_3458281ed9381f2071effe1238298925','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-mqtthandler','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1447,'API_2d3cd80605727ef6bf82b6c219fb2d7a','发送航线到复亚机库','','cmii-uav-mqtthandler','/mqtt/hangar/sendRoute2Box','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1448,'API_86974c85cb82e7ac573d2efb01c2120b','发送控制命令到复亚机库','','cmii-uav-mqtthandler','/mqtt/hangar/sendCommand','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,NULL),(1449,'API_767ced6b5f9135c88be24d811efb32e4','commandTest','','cmii-uav-mqtthandler','/mqtt/hangar/testDeviceInfoGet','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-05-23 07:50:19'),(1450,'API_834128407372429d40202086ec5c8083','commandTest','','cmii-uav-mqtthandler','/mqtt/hangar/testCommand','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1451,'API_4954a24d516fb8514fba92dcbf82d64c','控制是否打印机库日志接口','','cmii-uav-mqtthandler','/mqtt/hangar/redisLogSwitch','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1452,'API_e18a887c2e4dbe06f1e4339bbd38a55e','修改biz redis配置','','cmii-uav-mqtthandler','/mqtt/hangar/modifyBizConfig','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-09-28 01:55:54'),(1453,'API_1cdbc47391cfd8bdace0e60587ae3a73','send','','cmii-uav-mqtthandler','/send/msg','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1454,'API_ad572945f7cf45abe208d2b3892f4fdc','订阅','','cmii-uav-mqtthandler','/uav/subscribe','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1455,'API_11b75cc41a77e81d06f41cbb2b121898','回调','','cmii-uav-mqtthandler','/uav/uavInfo','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1456,'API_71760adbff33a72daa3978da8f8beaf8','更新uavCode和天途SN码','','cmii-uav-mqtthandler','/uav/updateUavSn','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:46'),(1457,'API_9db0cee11827994129a2530e702fb94e','检查水泵开关状态','','cmii-uav-mqtthandler','/uav/checkPumpStatus','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1458,'API_4ddd7470e2c43abacb4556a0cb2452a5','打开或关闭水泵开关','','cmii-uav-mqtthandler','/uav/sprayCommand','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:46'),(1459,'API_1fea100d31c9ead49f4d989b3410b440','喷洒控制','','cmii-uav-mqtthandler','/uav/sprayControl','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:48'),(1460,'API_3013f9aeaf4f26196ff55e6d097e5086','查询天途云台视频播放地址','','cmii-uav-mqtthandler','/uav/rtmp/{uavCode}','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:45'),(1461,'API_923ca55de23e8d0a931a1f522cd8f56a','接口扫描','','cmii-uav-mqtthandler','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-09-25 08:48:47'),(1462,'API_1121b4afccbc7f7c8d358300b7b8d55d','swaggerResources','','cmii-uav-mqtthandler','/swagger-resources','',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-04-25 02:51:09'),(1463,'API_02ec4eebffaef82565d6636e8959e639','uiConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-04-25 02:51:09'),(1464,'API_e037dc9553caf6662d5153052328fa21','securityConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-04-25 02:51:09'),(1465,'API_3c26d41e43d1dd1d3163c6c8e943083c','通过无人机设备号查询无人机编码','','cmii-uav-mqtthandler','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1466,'API_9e4352cd84990d1be6d70980262a94b0','根据无人机编码查询该无人机是否存在','','cmii-uav-mqtthandler','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1467,'API_6add593c6857052058d95b83ae672682','查询无人机是否可用','','cmii-uav-mqtthandler','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1468,'API_24a2953b91cf2401ee86a28b0701bd8e','设置无人机在线状态','','cmii-uav-mqtthandler','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:22'),(1469,'API_41c28cef6648150124d425030699a61c','按无人机设备号查询无人机详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:22'),(1470,'API_34dbca1ed5678a2abbddbf7833afe197','生成新无人机编码','','cmii-uav-mqtthandler','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1471,'API_047dce2adddc92520dbc7581507cbb04','查询设备在线状态','','cmii-uav-mqtthandler','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1472,'API_17559bc5e3daefa77ac7bed8ffda18d7','按无人机编码查询无人机详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1473,'API_8e227fa3f5be60623574dcc82031d3d6','通过无人机编码查询无人机编码设备号','','cmii-uav-mqtthandler','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1474,'API_8ac5653df237bc79164c8439a38761fb','根据无人机编码获取公司信息','','cmii-uav-mqtthandler','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1475,'API_1e0b7a938a525f09ba8b3d751a77f8cd','查询该公司有的无人机类型详细信息','','cmii-uav-mqtthandler','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1476,'API_d6841d6ed87cd0a4cfce6685991075b4','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-mqtthandler','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1477,'API_032b3df43de6a61032c348486f376d6f','查询公司/机构所属的无人机编码列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1478,'API_0c5774ed458b4ed1efe3126d9d4eedad','模糊查询可用状态列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1479,'API_f437bd82b5da4c89e0b40529fdf75d4b','查询公司/机构所属的在线无人机列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1480,'API_aa5cc9e9be11f7209307162fbfc403b2','无人机绑定的载荷列表查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1481,'API_124e83abc445a75b6ee78436af019904','统计公司/所属机构获取无人机数量','','cmii-uav-mqtthandler','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1482,'API_70fc36f54dc805f2cfcbb749deaf0d2d','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-mqtthandler','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1483,'API_9f28e782a1d197fec0190d58c085b907','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-mqtthandler','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1484,'API_1dcba599a8ae797c27839c254b0f315b','新增无人机','','cmii-uav-mqtthandler','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1485,'API_4ef517005e61cbc21d301ae2438b737a','修改无人机','','cmii-uav-mqtthandler','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:21'),(1486,'API_52984f82355fc31ac1008e7a1138a4fa','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-mqtthandler','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:21'),(1487,'API_8dcc9ee6e14badc0cb2da3cebc49d0f9','check设备类型是否匹配','','cmii-uav-mqtthandler','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1488,'API_e63c260280d3c227f497daf7e1155801','check设备动作是否匹配','','cmii-uav-mqtthandler','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1489,'API_e4b92231f9c44db1137de242d01bc478','设备数据字典和匹配校验','','cmii-uav-mqtthandler','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1490,'API_f22bf0aea52ab0490e1f27b4c600e663','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-mqtthandler','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1491,'API_e82afc6d0bf9f514bf8dbaaf9e49d3c8','模糊查询在线无人机编码和机库编码列表','','cmii-uav-mqtthandler','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:21'),(1492,'API_799331f9fd344e72ae5d11c85602e5d4','设置机库在线状态','','cmii-uav-mqtthandler','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1493,'API_f456a7f2814bc70f0a6cb895b05d9a4f','按机库设备号查询机库详情','','cmii-uav-mqtthandler','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1494,'API_1bd4ef68116a0faf4824bb2dca07a8aa','修改机库','','cmii-uav-mqtthandler','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1495,'API_540e4fa57f457dc5c01fa54d35063d36','生成新机库编码','','cmii-uav-mqtthandler','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1496,'API_71c74cd05545e26bed7a69d371da8285','新增机库','','cmii-uav-mqtthandler','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1497,'API_df3eac427baaa24c1f85a06d0cbe724c','获取机库绑定的无人机详细信息','','cmii-uav-mqtthandler','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1498,'API_d4826662c06d3b06c1727ce0f8603876','获取无人机绑定的机库详细信息','','cmii-uav-mqtthandler','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1499,'API_1d1b366fe216a5754ca601416b379ea1','查询公司/机构所属的机库编码列表','','cmii-uav-mqtthandler','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1500,'API_409c4d6ad3f8d3fb99056b989a196bb5','根据机库编码获取公司信息','','cmii-uav-mqtthandler','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1501,'API_dad74d331bfe718f060ff57e1302ad32','通过机库设备号查询机库编码','','cmii-uav-mqtthandler','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1502,'API_bb1b9f9d4b56159e994f1cd70deb7d1f','通过机库编码查询机库设备号','','cmii-uav-mqtthandler','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1503,'API_8e2462113aabce64c6deacf66a7ab606','按机库编码查询机库详情查询','','cmii-uav-mqtthandler','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1504,'API_f758a6cc232d6dbcb2979ecc800119f4','error','','cmii-uav-mqtthandler','/error','',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2024-09-25 08:48:48'),(1505,'API_9f10b1349eb7299406c94a7eae1fc212','按类型导入字典明细','','cmii-admin-data','/api/admin/dictionary/dictImport','POST',_binary '\0',_binary '\0','2021-03-19 06:45:45',1,'2024-09-09 09:15:07'),(1506,'API_41e1f6d85f2724a89061a30a00b199d9','按类型导出字典明细','','cmii-admin-data','/api/admin/dictionary/dictExport','GET',_binary '\0',_binary '\0','2021-03-19 06:45:45',1,'2024-09-09 09:15:08'),(1507,'API_8273362a82640f68d9061f967d5ea3cb','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/cam/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:45',1,'2024-09-09 09:15:06'),(1508,'API_66476ec9921485b64010dd50885985e5','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/spk/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:07'),(1509,'API_7487d41441eaff5b202a6cc54e48b362','从Redis获取有效的编码对应的所有语言的值','从Redis获取有效的编码对应的所有语言的值','cmii-admin-data','/api/admin/dictionary/getAllLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:06'),(1510,'API_558bd45f421ad0fc6bd325ad037809e5','从Redis获取有效的本地语言值对应的key','类型对应的本地语言值对应的key','cmii-admin-data','/api/admin/dictionary/getLangKeyFromRedisByValue','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:08'),(1511,'API_c34e31bdefebec7afca0c28a4ce25655','从Redis模糊查询有效数据字典列表','从Redis模糊查询有效数据字典列表','cmii-admin-data','/api/admin/dictionary/getDictListFromRedis','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:08'),(1512,'API_31b549a1139985fc1c0dbc21eb6b24a6','check在Redis里面编码和名称是否一致','check在Redis里面编码和名称是否一致','cmii-admin-data','/api/admin/dictionary/checkMapingInRedis','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:07'),(1513,'API_e4151a02daecf76311cc8baaebe27ede','为区块链提供接口,查询空域限制数量','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitCount.do','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:07'),(1514,'API_e158024b9d2170b4cc3c16e7c18c2a26','获取机场区域以及禁飞区','','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:07'),(1515,'API_e2c418b0d87cdb39a51448d12818b727','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/plane/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:05'),(1516,'API_7d5d4aa167650e78febf5e176e2ff7c0','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/hangar/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-09-09 09:15:05'),(1517,'API_a0dbde8cd3176b28b139ea6c067e614b','接口扫描','','cmii-admin-data','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-03-19 06:45:47',1,'2024-09-09 09:15:08'),(1518,'API_3a687682ca5ff7370cd41352d39b3b76','获取图片链接','','cmii-uav-mission','/oss/getPicture','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:03'),(1519,'API_569d105dc0c725a4be7855f4e70c9fa5','下载图片','','cmii-uav-mission','/oss/download','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:04'),(1520,'API_433113c8082be824d89a47fa44ea44e8','批量上传文件','','cmii-uav-mission','/oss/upload','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:06'),(1521,'API_00943517371b0c6b1794b84c3aecaf06','更新定时作业母版','','cmii-uav-mission','/api/uav/mission/mission_info/timed_mission_plan_data','PUT',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:09'),(1522,'API_32be9d8ac8e444d09d27de8bce51a886','获取定时作业航线信息全集','','cmii-uav-mission','/api/uav/mission/mission_info/airLineInfoTimedList','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:08'),(1523,'API_23c36759ab431790c6e360ce89c8ef7f','创建定时作业母版','','cmii-uav-mission','/api/uav/mission/mission_info/timed_mission_plan_data','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:11'),(1524,'API_871c01f480b77b493496589cddbdae78','getFoiaPicInfos','','cmii-uav-mission','/api/uav/mission/mission_info/getFoiaPicInfos','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:00'),(1525,'API_1f7abd99859f1a889ca483e485c733ee','创建定时作业','','cmii-uav-mission','/api/uav/mission/mission_info/period_timer/{id}','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:10'),(1526,'API_ae8f648b7fae3c35c59362d6477c9776','停止定时作业','','cmii-uav-mission','/api/uav/mission/mission_info/period_timer_stop/{id}','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:02'),(1527,'API_6f08767c2fb77abf891146ebea4b1845','测试发送短信','','cmii-uav-mission','/api/uav/mission/mission_info/sms/{id}','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:06'),(1528,'API_74b33420d1fe470d9f86c9bd08f9c1e4','分页条件筛选定时作业列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/timed_mission_info_list_with_filters','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2021-04-23 02:42:44'),(1529,'API_9923650f832119aef322b6f5f2d7f532','saveFlyHistory','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/saveFlyHistory','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:15'),(1530,'API_a781d84214f33db7e7c993f0fdd6fb2d','更新定时作业计划启用状态','','cmii-uav-mission','/api/uav/mission/mission_info_list/timed_mission_plan_enable_switch','PUT',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-10-10 08:57:09'),(1531,'API_ef25091c986ef461a5d2e19d3cd0f93d','定时作业下拉菜单模糊查询','支持作业名称 0','cmii-uav-mission','/api/uav/mission/mission_info_list/timed_mission_down_list_fuzzy_info','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2021-04-23 02:42:44'),(1532,'API_c6a6fa074f440bf0ea404138f9dc1fad','saveFoiaPicInfo','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/saveFoiaPicInfo','POST',_binary '\0',_binary '\0','2021-03-31 09:48:44',1,'2024-10-10 08:57:01'),(1533,'API_bdbe6821b04215aa98e67786f5044122','按条件分页查询自动上报的设备型号信息','','cmii-uav-device','/queryUavDevPage','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1534,'API_deb9b004835cedab2f4491a6251e6983','分配设备给指定公司','','cmii-uav-device','/allocateUavDev','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1535,'API_157bd273a43281461c2787b2c213ddde','批量分配设备给指定公司','','cmii-uav-device','/allocateUavDevBatch','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1536,'API_3f25f73b51ac9d74a7d1acddf999babe','删除设备信息','','cmii-uav-device','/deleteUavDev','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1537,'API_d6e06c7e5a997c490d62d20af9d441e7','批量删除设备信息','','cmii-uav-device','/deleteUavDevBatch','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1538,'API_2c721f3298566d003acc082abe9fb2a5','新建定时作业时模糊查询航线名称','发送所有定时作业航线给前端,前端做模糊查询','cmii-uav-waypoint','/api/uav/waypoint/mission/api/uav/waypoint/mission/air_line_info_list_timed','GET',_binary '\0',_binary '\0','2021-03-31 09:53:03',1,'2024-09-09 09:16:30'),(1539,'API_208845de413e01576bb862ca7f7978dd','获取/释放无人机控制权限','','cmii-uav-surveillance','/virtualStick/changeControlMode','POST',_binary '\0',_binary '\0','2021-03-31 09:53:42',1,'2024-09-23 20:58:56'),(1540,'API_1ca55485d1fcdb2c57201ba951ccdb03','起飞','','cmii-uav-surveillance','/virtualStick/flyUp','POST',_binary '\0',_binary '\0','2021-03-31 09:53:42',1,'2024-09-23 20:58:58'),(1541,'API_7a704f1fbf413b09c1202b0af851efb1','虚拟遥感','','cmii-uav-surveillance','/api/uav/VirtualStick/virtualStick','POST',_binary '\0',_binary '\0','2021-03-31 09:53:44',1,'2023-01-18 04:50:24'),(1542,'API_6f9c47d47b51b55436da65fefca5ef98','获取/释放无人机控制权限','','cmii-uav-surveillance','/api/uav/VirtualStick/changeControlMode','POST',_binary '\0',_binary '\0','2021-03-31 09:53:44',1,'2023-01-18 04:50:24'),(1543,'API_fcd0dd427263d992c4d749c90c1de9d9','升起','','cmii-uav-surveillance','/api/uav/VirtualStick/flyUp','POST',_binary '\0',_binary '\0','2021-03-31 09:53:44',1,'2023-01-18 04:50:24'),(1544,'API_cb806b5622e15dfbe269203c9ef12f5a','通过流程实例ID删除流程实例【测试使用】','通过流程实例ID删除流程实例【测试使用】','cmii-uav-process','/client/process/deleteProcess','POST',_binary '\0',_binary '\0','2021-03-31 09:54:17',1,'2024-09-12 02:46:56'),(1545,'API_ea2e692b4331c50131d21f8ecaba6f12','无人机列表绑定的载荷列表详情查询','','cmii-uav-mission','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-19 09:12:43',1,'2023-07-18 04:08:27'),(1546,'API_cafe2b9e70f2bce5aedaaa30943af4ee','修改快速航点信息','航线ID存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list_fast','PUT',_binary '\0',_binary '\0','2021-04-20 06:24:16',1,'2024-09-09 09:16:30'),(1547,'API_3996fc090afb68eb04ed808cfe780391','绘制快速航点接口(创建航点)','航线ID不存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list_fast','POST',_binary '\0',_binary '\0','2021-04-20 06:24:16',1,'2024-09-09 09:16:29'),(1548,'API_45d9277cf079417c618da9f45d545a11','无人机列表绑定的载荷列表详情查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 06:24:17',1,'2023-05-04 09:35:56'),(1549,'API_acebee45653d893e76a60a1d75cd0a3c','queryCompany','','cmii-uav-user','/clients/org/queryCompany','GET',_binary '\0',_binary '\0','2021-04-20 09:18:18',1,'2024-10-11 15:37:20'),(1550,'API_65816ac1a814c3251864b2a34e8c0886','根据id查询公司信息','','cmii-uav-user','/clients/org/getById','GET',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-10-11 15:37:20'),(1551,'API_272b4d0242a68b45577015e3eebead94','根据用户id获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryById','POST',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-10-11 15:37:09'),(1552,'API_b94a08818c65730154aa7f594172708f','根据姓名和电话号码 模糊查询公司用户','','cmii-uav-user','/user/queryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-10-11 15:37:20'),(1553,'API_04983dfe29b27883bf6a799d0fed60e8','查询某个应用中的全部用户','','cmii-uav-user','/user/queryByPlatformCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-10-11 15:37:15'),(1554,'API_f39b0513e65e7867e3bf63660694369d','查询组织配额信息','','cmii-uav-user','/client/quota/getQuotaInfoByType','POST',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-10-11 15:37:17'),(1555,'API_f889240e74c75cb3f13ce1144103d411','根据平台应用id,删除资源','','cmii-uav-user','/resource/deleteByPlatformId','POST',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-10-11 15:37:14'),(1556,'API_d6925d7290ed8ce694423daa048ca1db','查询用户某个平台的菜单','','cmii-uav-user','/resource/queryPlatformResourceTreeForUser','POST',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-10-11 15:37:15'),(1557,'API_568f82c0cf471afce1d89200350d9879','查询区|县对应的区域信息','','cmii-admin-data','/public/api/admin/area/district/detail','GET,POST',_binary '\0',_binary '\0','2021-04-20 09:18:35',1,'2024-09-09 09:15:07'),(1558,'API_0678a9924a89ed8dcd060abedc841390','强制删除空域(测试调用)','传入空域申请主键,以数组方式传入','cmii-uav-airspace','/zydAirspace/forceDeleteAirspace.do','POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-10-11 08:57:37'),(1559,'API_50277d28d03ac1dbe8cc1b7225dada55','无人机列表绑定的载荷列表详情查询','','cmii-uav-airspace','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2023-03-29 08:30:26'),(1560,'API_55bf600f383be27938a4428907c0e6f5','查詢公司范围内在线无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:46'),(1561,'API_fcbfa36a859f563459e4070a5d5734a8','查詢用户关注无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:45'),(1562,'API_e1ec0ca36f9bcc44b55415c5f0043145','模糊查詢待关注的无人机列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-10-11 01:36:52'),(1563,'API_2b8c110cfd855d55f49cfe401e3ab5af','添加用户关注的无人机','','cmii-uav-device','/api/uav/plane/addAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:54'),(1564,'API_820e1c6b166145e0ecf7669bddf62dc0','取消用户关注的无人机','','cmii-uav-device','/api/uav/plane/cancelAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:53'),(1565,'API_44d84d7abd329c04504d8bed451d84f3','查詢公司范围内在线机库视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:53'),(1566,'API_8d7d22a58611547e13e523708a94ebec','查詢用户关注机库机视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:44'),(1567,'API_e6e54cd2384bcac8277698847d832911','模糊查詢待关注的机库列表','','cmii-uav-device','/api/uav/hangar/queryUavHangarInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:54'),(1568,'API_f3b616b38914d9d7253166928c0e63f6','添加用户关注的机库','','cmii-uav-device','/api/uav/hangar/addAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:48'),(1569,'API_55a336058652952f4e79a969053d8673','取消用户关注的机库','','cmii-uav-device','/api/uav/hangar/cancelAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-10-11 01:36:45'),(1570,'API_4070abaa8f7d2bc1c2e397869193e031','通过公司名称或者管理员名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:46'),(1571,'API_1499a2ebdf5c01b2627e57e15b472b07','通过公司名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyListByName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2022-03-08 06:47:14'),(1572,'API_2d7d72bd1cc847e50266ed214e1ea617','分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:42'),(1573,'API_2b08ca467289bca513d1e9084cd26eda','批量分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:48'),(1574,'API_74ee723d3e114b0eb4ada9edd7bf35ae','删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:46'),(1575,'API_a5f3677ccd73b6c21a7b44b2301c5fd7','批量删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:54'),(1576,'API_4bcd4faf8c1cf35844576b637c92fed0','获取设备详情','','cmii-uav-device','/api/uav/devAllocate/getDevDetail','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:49'),(1577,'API_310c46f834d022a74e0e9c3d5c0b1327','按条件分页查询自动上报的设备型号信息','','cmii-uav-device','/api/uav/devAllocate/queryUavDevPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-10-11 01:36:53'),(1578,'API_38a98e7c49bb6f4e80451fe7dacb8ab1','queryDetailByUavCode','','cmii-uav-surveillance','/surveillance/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:52',1,'2024-09-23 20:59:00'),(1579,'API_ca897c6aa83202383429457f6e2e8ddc','无人机列表绑定的载荷列表详情查询','','cmii-uav-surveillance','/surveillance/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:52',1,'2024-09-23 20:58:56'),(1580,'API_f72ea08c5c29ab1732502bc54da43677','无人机列表绑定的载荷列表详情查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:53',1,'2023-03-29 09:05:05'),(1581,'API_c290bd117b25703e004d04d6974deeb6','系统航线导入到kml','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/systemLineImport','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2024-09-09 09:16:29'),(1582,'API_5183ffe062eb68ccf4c7b3f70bfafe9c','文件导入kml航线','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/kmlFileImport','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2024-09-09 09:16:28'),(1583,'API_1b0b7a2d9e7c02fb34381b9f6b4ba62a','分页查询kml航线列表','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_info_page_list_kml','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2024-09-09 09:16:29'),(1584,'API_2ad3538cb213c09ef7dc3b6de05f7621','分页条件筛选kml航线列表','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_info_page_list_with_filters_kml','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2021-05-12 06:05:53'),(1585,'API_602af16052d34831d24a6248a44434cd','获取作业视频','','cmii-uav-mission','/api/uav/mission/mission_info/vedio/{id}','GET',_binary '\0',_binary '\0','2021-05-12 06:05:55',1,'2022-04-01 02:19:20'),(1586,'API_0001c1f101300ee94ccd942b694b8850','分页查询定时子作业列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/submission_info_list_page','POST',_binary '\0',_binary '\0','2021-05-12 06:05:56',1,'2024-10-10 08:57:15'),(1587,'API_63ca33cd3935f1d5a2ab5f335e1e1f1d','第一次上传项目','第一次上传项目,返回projId','cmii-uav-mission','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1588,'API_c2483a37ebd2e48e4ae2bc6e4922315b','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-mission','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1589,'API_ff63c498ec90915691d5b70aefcf2afb','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-mission','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1590,'API_5ee97bed0b785f25005d90547d2b94fa','删除项目的文件','删除项目的文件,支持批量','cmii-uav-mission','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1591,'API_2553d3384baa3e84634c581cb5be7d53','项目文件上传','上传项目文件 ','cmii-uav-mission','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1592,'API_5a02b551720c04670f3b129cee25c013','从Redis模糊查询数据字典列表','从Redis模糊查询数据字典列表','cmii-admin-data','/api/admin/dictionary/getSimpleDictListFromRedis','GET',_binary '\0',_binary '\0','2021-05-12 06:06:15',1,'2024-09-09 09:15:05'),(1593,'API_34a4cf00417ad9a7ad31735b47c78b7b','无人机绑定的摄像头信息查询','','cmii-uav-airspace','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:16',1,'2023-03-29 08:30:26'),(1594,'API_5d27fd894e51ccda163cd54365522dce','文件进度查询','','cmii-uav-data-post-process','/3d/visual/show/{path}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:18',1,'2021-07-06 05:44:30'),(1595,'API_2a430ee51c505de318a1880a0d441485','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:24',1,'2024-10-11 01:36:49'),(1596,'API_9e3c2f84e445d7068889b23223c0cba6','无人机绑定的摄像头信息查询','','cmii-uav-mission','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:35',1,'2023-07-18 04:08:27'),(1597,'API_427792643216895a2773067714aa7719','文件导出kml航线','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/kmlFileExport','GET',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-09-09 09:16:29'),(1598,'API_44496908fb5ee7c0a64ff07d0b5c60eb','获取导入人下拉数据','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_info_users','POST',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-09-09 09:16:29'),(1599,'API_3cd7960529b1fddff6e063d2d2021fec','获取航线名称下拉数据','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_names','POST',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-09-09 09:16:28'),(1600,'API_e959072efdad161eeb2adf36ea20ac32','获取弹框列表数据','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_frame_list','POST',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-09-09 09:16:30'),(1601,'API_f06030ece03367ef27bf0ccda43ed737','updateHistoryData','','cmii-uav-waypoint','/api/uav/waypoint/airline/updateHistoryData/{key}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-09-09 09:16:30'),(1602,'API_167b335d4cf241548f090a893aa6d0a6','无人机绑定的摄像头信息查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:39',1,'2023-05-04 09:35:56'),(1603,'API_ec98c0f303c8e6977b1986eb10b2d172','强制降落','','cmii-uav-surveillance','/virtualStick/forceLand','POST',_binary '\0',_binary '\0','2021-05-26 01:51:40',1,'2024-09-23 20:58:57'),(1604,'API_fd395a00e4252729db04de8af2c45491','强制降落','','cmii-uav-surveillance','/api/uav/VirtualStick/forceLand','POST',_binary '\0',_binary '\0','2021-05-26 01:51:40',1,'2023-01-18 04:50:24'),(1605,'API_317949c7d98aa92e86acd050ffeacdde','无人机绑定的摄像头信息查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:41',1,'2023-03-29 09:05:05'),(1606,'API_19d8d6fc3205ac1b33a4b11e960579d1','下载','','cmii-uav-user','/api/uav/uavTestPO/download','GET',_binary '\0',_binary '\0','2021-05-26 01:51:42',1,'2024-10-11 15:37:19'),(1607,'API_0fd8148ac05f2e3a9a399c84280d224a','测his','','cmii-uav-user','/api/uav/uavTestPO/test/{id}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:42',1,'2024-10-11 15:37:19'),(1608,'API_516969165da68e72960fd079970247fb','批量上传作业产生的图片文件','','cmii-uav-mission','/oss/batchUploadFile','POST',_binary '\0',_binary '\0','2021-06-01 09:17:40',1,'2024-10-10 08:57:09'),(1609,'API_90de18869ba6b4249937dc886e7f97ed','上传作业产生的图片文件','','cmii-uav-mission','/oss/uploadFile','POST',_binary '\0',_binary '\0','2021-06-01 09:17:40',1,'2024-10-10 08:57:11'),(1610,'API_b99e8fb53bca58fa8ff57ceb3e14fb13','ping','','cmii-uav-device','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:17:54',1,'2024-10-11 01:36:45'),(1611,'API_49e1eb08d9cbad20d0dcfe5ba7d0d0fa','health','','cmii-uav-device','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:17:54',1,'2024-10-11 01:36:48'),(1612,'API_060692698cbf6ca8d4c71eb5ff7b6a94','二三维建模二期根据code获取用户Token','二三维建模二期根据code获取用户Token','cmii-uav-data-post-process','/v1/permission/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2021-06-01 09:17:57',1,'2024-09-09 09:16:30'),(1613,'API_ade165fe9425224d48c0c4812dfb4726','存储上传文件的属性信息','','cmii-uav-hyperspectral-provider','/Processing/callalgorithm','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1614,'API_bdea06370b3cfbd97539426a66b4b5ca','更新算法信息','','cmii-uav-hyperspectral-provider','/tAlgorithm/update','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1615,'API_729a9d0678d8b9d72a38dd25270e15f7','新增算法信息','','cmii-uav-hyperspectral-provider','/tAlgorithm/insert','PUT',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1616,'API_5830d6a11e7aedb30e693cafd55483c9','查询算法信息列表','','cmii-uav-hyperspectral-provider','/tAlgorithm/listByPage','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1617,'API_c514b5a79777ccd1ce00700db822bb4d','删除单条数据','','cmii-uav-hyperspectral-provider','/tAlgorithm/deleteById','GET',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1618,'API_b2618a67f945ff427faac99483cce65e','根据id查询算法信息','','cmii-uav-hyperspectral-provider','/tAlgorithm/selectById','GET',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1619,'API_6e7f7ccc868f99b7954a0382f8e59407','fileUpload','','cmii-uav-hyperspectral-provider','/tAlgorithm/upload','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1620,'API_e1ef8922aed82178c426e12b0b609add','增加api','','cmii-uav-hyperspectral-provider','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1621,'API_a741f31b3ac488354f6b8145170e7666','uiConfiguration','','cmii-uav-hyperspectral-provider','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1622,'API_cf618bd1924d6043632e2dfe03e31865','securityConfiguration','','cmii-uav-hyperspectral-provider','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1623,'API_c62d7aa9d78e0b535fa3f11ff716305a','swaggerResources','','cmii-uav-hyperspectral-provider','/swagger-resources','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1624,'API_bc62d60a30f40ca182c3b570c1718976','errorHtml','','cmii-uav-hyperspectral-provider','/error','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1625,'API_fedfd43545c3937a3dfea724e43018d1','health','','cmii-uav-data-post-process','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:46:41',1,'2024-09-09 09:16:29'),(1626,'API_bfe9f6ab8a6287310deeda74efffccc0','ping','','cmii-uav-data-post-process','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:46:41',1,'2024-09-09 09:16:28'),(1627,'API_64b634b57febc0081be9ec51f20cb582','规划带状航线','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/getStrapLine','POST',_binary '\0',_binary '\0','2021-06-01 09:47:22',1,'2024-09-09 09:16:29'),(1628,'API_0a4c22b991cefd76353ae1e889418198','从kml文件解析航点','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/kmlFileToPoints','POST',_binary '\0',_binary '\0','2021-06-01 09:47:22',1,'2024-09-09 09:16:28'),(1629,'API_9abd2acc31a54f40d93641f2b260bc35','ping','','cmii-uav-waypoint','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-02 05:52:30',1,'2024-09-09 09:16:29'),(1630,'API_4eb3c3db046448bd42fb85ee8176ccef','health','','cmii-uav-waypoint','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-02 05:52:30',1,'2024-09-09 09:16:29'),(1631,'API_7df26817582dc0ea893ea56915edb8bf','ping','','cmii-uav-mission','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-02 05:52:44',1,'2024-10-10 08:57:15'),(1632,'API_2c3f14344b0c866417d1fdf69e015412','health','','cmii-uav-mission','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-02 05:52:44',1,'2024-10-10 08:57:07'),(1633,'API_ccb853f58fbf416685be2a8c73f5aaf9','health','','cmii-admin-data','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-09-09 09:15:08'),(1634,'API_544d535cbc76e0b0128e76922d3afd9f','ping','','cmii-admin-data','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-09-09 09:15:06'),(1635,'API_f1edcb6fffbcf95c049248c247ca07cf','ping','','cmii-uav-airspace','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-10-11 08:57:37'),(1636,'API_886112acb7b455948c5311888bc56232','health','','cmii-uav-airspace','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-10-11 08:57:37'),(1637,'API_b1fac4d7334e841fde4cfd0bac163789','health','','cmii-uav-surveillance','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:50',1,'2024-09-23 20:59:00'),(1638,'API_afa974116f45df69a3aaf4540dd83fcd','ping','','cmii-uav-surveillance','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:50',1,'2024-09-23 20:58:56'),(1639,'API_bb6f9709c5d46299110e10895eb80622','health','','cmii-uav-process','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:53',1,'2024-09-12 02:46:55'),(1640,'API_9428c59c4623f75b69d774d388e5a51f','ping','','cmii-uav-process','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:53',1,'2024-09-12 02:46:55'),(1641,'API_22f6229ad751e013f292f27b09a9ec49','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-waypoint','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:47:55',1,'2023-05-04 09:35:56'),(1642,'API_2cfa72f62088d3b989f02ebcb3d2a21d','根据设备号获取公司信息','','cmii-uav-waypoint','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:47:55',1,'2023-05-04 09:35:56'),(1643,'API_c81ead2e32b95e4d61115282c164324f','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-airspace','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:17',1,'2023-03-29 08:30:26'),(1644,'API_747bcd0f104482859dd6ba2abed1858a','根据设备号获取公司信息','','cmii-uav-airspace','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:17',1,'2023-03-29 08:30:26'),(1645,'API_49161f40c3b80954b51c002e0f21e978','根据设备号获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:26',1,'2024-10-11 01:36:45'),(1646,'API_9aa7ec1c77b2f1e32778d663f5c3898e','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-device','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:29',1,'2024-10-11 01:36:52'),(1647,'API_c743d50d480b556f976bcfb6f7ba785f','飞行模式切换','','cmii-uav-surveillance','/surveillance/switchMissionMode','POST',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-09-23 20:58:57'),(1648,'API_88f0855761a26744d4c65baa35784e7c','本公司全局无人机统计','','cmii-uav-surveillance','/oapi/queryFlyData','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-09-23 20:58:58'),(1649,'API_fe3ad80ec95ed1008f1a59c82f3e6ea0','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/oapi/oApi/querySinglePlaneTrackWithCId','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-09-23 20:58:56'),(1650,'API_833fb55194c67fc9927fbb72450d61af','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/oapi/oApi/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-09-23 20:58:58'),(1651,'API_28d64a484b53a9c12caa73c9f8a121fa','查询无人机的拉流信息','','cmii-uav-surveillance','/oapi/oApi/queryUavPullStreams','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-09-23 20:58:59'),(1652,'API_60dce0e61d10ac5d4cb4f436d1949981','载荷详情查询','','cmii-uav-surveillance','/api/uav/load/queryUavLoadDetail','POST',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1653,'API_4b58f89e1d0949e241ed48ce5d92b904','查询载荷类型详细信息','','cmii-uav-surveillance','/api/uav/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1654,'API_15e3edc723fb4b035a60d84443629b60','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-surveillance','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1655,'API_2400c0f9cfb350a088e88dbba88acceb','根据设备号获取公司信息','','cmii-uav-surveillance','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1656,'API_289464e10fe2a7ce4a6b8d0bc171cb37','视频回放','视频回放','cmii-uav-cloud-live','/public/his/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:35'),(1657,'API_54a5348ac671626c43c764324d188f45','回放视频封面','回放视频封面','cmii-uav-cloud-live','/public/his/playback/cover','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:37'),(1658,'API_9d28fbc7c7784e8ec68d13bb1e2b5342','获取时间戳(yyyyMMddHHmmss)','获取时间戳','cmii-uav-cloud-live','/client/live/playback/timestamp','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:35'),(1659,'API_afb234620493d3bacd41c8856967fa2a','获取视频流地址信息','通过设备号获取视频流地址信息','cmii-uav-cloud-live','/client/live/create','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:36'),(1660,'API_be4e01864c39805f1642134d888b02c4','启动AI流任务','启动AI流任务','cmii-uav-cloud-live','/client/live/ai/start','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-05-07 08:33:48'),(1661,'API_f5c35f28acc1868831a3bcc2e7b16389','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/client/live/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:32'),(1662,'API_f786e0a615e81b944c0ba70449453da6','获取回放信息(包括封面)','获取回放信息(包括封面)','cmii-uav-cloud-live','/client/live/playback/m3u8Info','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:31'),(1663,'API_8ff849043d0e3a1dde9612ba3b707605','获取回放视频token','获取回放视频token','cmii-uav-cloud-live','/client/live/playback/token','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:38'),(1664,'API_5cd7b62f7857e1c41eb2389a64843169','查询视频流通道ID','查询设备对应的视频流通道ID','cmii-uav-cloud-live','/client/live/getStreamId','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:31'),(1665,'API_cebe3ea38fd5de661fb7169955872bf5','查询具体视频流地址','查询设备对应的某种视频流地址','cmii-uav-cloud-live','/client/live/get','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:33'),(1666,'API_64d5ee764973e82287d15d96289f0974','health','','cmii-uav-cloud-live','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:33'),(1667,'API_11d6b101a37aee3d2968d5befdba397b','ping','','cmii-uav-cloud-live','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:37'),(1668,'API_a9934d326aaa2d148734d9ef6bd86b72','接口扫描','','cmii-uav-cloud-live','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:32'),(1669,'API_b7e2958940688b9536c45ef455cbb00f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:46'),(1670,'API_9cc1caf8776d669aae36e19adc19f4ec','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:46'),(1671,'API_a7a93d6bfc9b6112cb5dd2d20d51bb92','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:46'),(1672,'API_7b5c8e9b95934d385fc84a301156e020','第一次上传项目','第一次上传项目,返回projId','cmii-uav-cloud-live','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1673,'API_690036470ac7133066e45b60b5353ecd','项目文件上传','上传项目文件 ','cmii-uav-cloud-live','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1674,'API_0397f90389582c696a60ba0c32f34110','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-cloud-live','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1675,'API_398c21859fb437ac1e6edb2892a59fef','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-cloud-live','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1676,'API_10a9d10e5455fb2ff0d8434e0d5a4c6f','删除项目的文件','删除项目的文件,支持批量','cmii-uav-cloud-live','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1677,'API_150e23b0c5fbf84f07cac8933516682c','errorHtml','','cmii-uav-cloud-live','/error','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-10-12 09:42:36'),(1678,'API_47ea24d630b6e382b15f5214beff92e4','一键起飞','','cmii-uav-mission','/api/uav/mission/FoiaHangar/oneClickFly/{id}','GET',_binary '\0',_binary '\0','2021-06-16 06:58:18',1,'2024-10-10 08:57:01'),(1679,'API_0c79a2cd29a8b9d74e7b359bf4fd5bc5','手动切回自动','','cmii-uav-mission','/api/uav/mission/surveillance/switch2Auto/{id}','GET',_binary '\0',_binary '\0','2021-06-16 06:58:18',1,'2024-10-10 08:57:15'),(1680,'API_52c0ba8fc33cd7bd6c1031a78a2447d5','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-mission','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-16 06:58:19',1,'2023-07-18 04:08:27'),(1681,'API_bdc337bb0c447ee8f7b0bf1308fba4bc','根据设备号获取公司信息','','cmii-uav-mission','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-16 06:58:19',1,'2023-07-18 04:08:27'),(1682,'API_72bbbfa0333ef09cf54519ac993ed537','开启AI处理功能','','cmii-uav-mission','/api/uav/mission/surveillance/openAIProcess/{id}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:06',1,'2022-03-08 06:58:14'),(1683,'API_4a5496e5898f01a80c1455c0a54d3bff','开始AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/switchAIDetection/{id}/{type}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:06',1,'2021-10-21 08:48:40'),(1684,'API_faa9916a05df4633f066de636646e3c4','AI单目标跟踪处理','','cmii-uav-mission','/api/uav/mission/surveillance/trackSingleTarget/{id}/{trackId}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-10-10 08:57:09'),(1685,'API_c5023c24aef88ceccf45edfbd79ae305','设置AI检测临界值','','cmii-uav-mission','/api/uav/mission/surveillance/setAIThreshold','POST',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-10-10 08:57:07'),(1686,'API_c5c9578dbe4b4898f7b21a3315c2c6e1','下载AI辅助信息','','cmii-uav-mission','/api/uav/mission/surveillance/downloadAIDetectionInfo/{id}/{type}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-10-10 08:57:04'),(1687,'API_651c5a4ec4dbb1b1a0ade123506fe933','获取AI辅助信息','','cmii-uav-mission','/api/uav/mission/surveillance/retrieveAIDetectionInfo/{id}/{type}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-10-10 08:57:12'),(1688,'API_b127e8d74c7d88572818a6767e1f4a9a','获取某个kpi最新取值','获取某个kpi最新取值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:37'),(1689,'API_ee187d2d5b861acf87c99c0f03bc0aeb','采集所有配置kpi值','集所有配置kpi值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpis','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:36'),(1690,'API_a74e30325f9fc3ada840c47319f571e8','测试采集并推送所有KPI值【测试】','测试采集并推送所有KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/allKpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:36'),(1691,'API_695c96c4e4b60e41e4b170d18a8207a4','推送某个KPI值【测试】','推送某个KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:37'),(1692,'API_ba49cb37fe53a50feed5ee2e2721fe4e','解析配置文件并测试kpi取值【测试】','解析配置文件并测试kpi取值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/parse/file','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:36'),(1693,'API_f4b801b6f4f6eabff1eade6ffe536c47','更新指标配置信息【管理员用】','更新指标配置信息【管理员用】','cmii-uav-kpi-monitor','/kpi/monitor/config/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:36'),(1694,'API_9de68788e8519966581f78f8b3da56c6','获取每个用户访问时长','获取每个用户访问时长','cmii-uav-kpi-monitor','/user/accessAnalysis/userAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:36'),(1695,'API_3545158a96ea145fcd03285b42c18f42','获取每个公司用户访问行为','获取每个公司用户访问行为','cmii-uav-kpi-monitor','/user/accessAnalysis/companyAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:36'),(1696,'API_a31391fcf55f7c3dc7a9586f344415af','下载单用户访问情况','下载单用户访问情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/accessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:37'),(1697,'API_b7bc47b7b77ffe63ba428eb36d280afd','下载公司用户使用情况','下载公司用户使用情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/companyAccessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:37'),(1698,'API_9f9cdb82fba2247dbc894ad15411e0c2','health','','cmii-uav-kpi-monitor','/cmii/health','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:37'),(1699,'API_a1c7ba561fb4fa48452235a4cbf206b3','ping','','cmii-uav-kpi-monitor','/cmii/ping','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:36'),(1700,'API_a02eee36bdea730c9b24dfa944cc6bc5','接口扫描','','cmii-uav-kpi-monitor','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:37'),(1701,'API_e9c7f41a1163a4d02cb3da23ab6cc254','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-07-29 15:58:27'),(1702,'API_a57b76ba92218fdf8c0711a3975bf6a4','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-07-29 15:58:27'),(1703,'API_76d19d64565237e2591fc5b5ecc488fb','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-07-29 15:58:27'),(1704,'API_86a09a2be1661d38daa754f5ce91e913','error','','cmii-uav-kpi-monitor','/error','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-10-11 01:37:37'),(1705,'API_c20b0cd89ceadf8784004fe98442c51f','上传录音文件','','cmii-uav-surveillance','/megaphone/saveRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-09-23 20:58:58'),(1706,'API_ae88a6381c08033e9a3379a792680179','播放即时录音文件','','cmii-uav-surveillance','/megaphone/playRealTimeRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-09-23 20:58:56'),(1707,'API_22b5dfb27d4621b301efe0fab87b49a8','查询该用户下面的录音文件','分页查询','cmii-uav-surveillance','/megaphone/queryRecords','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-09-23 20:58:57'),(1708,'API_e089fce252bc6b02e5cc75feb560fc17','播放指定id的录音到无人机','','cmii-uav-surveillance','/megaphone/playRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-09-23 20:59:00'),(1709,'API_1a0c4ad592033594b0555bab6e383be7','修改录音的名称','','cmii-uav-surveillance','/megaphone/modifyRecordName','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-09-23 20:59:00'),(1710,'API_04b5f81c44cc13643701f715668ddbc8','根据id删除一条录音','','cmii-uav-surveillance','/megaphone/deleteRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-09-23 20:59:01'),(1711,'API_0bde320beda34ebb9f3cb37220ea4019','第一次上传项目','第一次上传项目,返回projId','cmii-uav-surveillance','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:04'),(1712,'API_bfc89dc462e8847f30225294fa19a320','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-surveillance','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:04'),(1713,'API_710ff21a32a740bdb7073d08d1370582','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-surveillance','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:04'),(1714,'API_c9cac8e117a1dfcafdf69dc15ca2ed5a','删除项目的文件','删除项目的文件,支持批量','cmii-uav-surveillance','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:05'),(1715,'API_3d45cf237b4aa0652635e6579c95c366','项目文件上传','上传项目文件 ','cmii-uav-surveillance','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:05'),(1716,'API_8de4801e5e53f51580b6ead79e00fca6','重新保存失败视频文件','重新保持失败视频文件','cmii-uav-cloud-live','/video/reSaveFailedFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-10-12 09:42:36'),(1717,'API_7e49e7ff34f254a4df5d1d70101a7c30','获取视频分片文件列表','获取视频分片文件列表','cmii-uav-cloud-live','/video/file/partList','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-10-12 09:42:32'),(1718,'API_56cc6cc9afb762bdcf5326e7c41d0dc0','重置视频同步时间','重置视频同步时间','cmii-uav-cloud-live','/video/resetSyncTime','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-10-12 09:42:39'),(1719,'API_a1029d20b60b6b56f72d27c121cfff58','同步视频文件','同步视频文件','cmii-uav-cloud-live','/video/syncPartFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-10-12 09:42:37'),(1720,'API_05684b732792a350983cc6ebb2066ac5','获取类别最新应急指标列表(分类,job:作业信息;bss:基站&卫星信息;summary:概况)','获取某个kpi最新取值','cmii-uav-kpi-monitor','/personal/emergency/sos/category','GET',_binary '\0',_binary '\0','2021-07-22 09:55:49',1,'2024-10-11 01:37:36'),(1721,'API_44daf24fb4cf68ed9db2f3d631de795c','轨迹视频回放接口','轨迹视频回放接口','cmii-uav-cloud-live','/client/live/playback/detailToken','POST',_binary '\0',_binary '\0','2021-07-30 09:38:53',1,'2024-10-12 09:42:32'),(1722,'API_c8c57f5149397359449ecaa90208fdca','添加测试数据','','cmii-uav-mission','/oss/testPicInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:39:25',1,'2024-10-10 08:57:14'),(1723,'API_d0eeaaecb2e2e35488ac8cb47774bb97','变更数据','','cmii-uav-mission','/oss/transHistory','GET',_binary '\0',_binary '\0','2021-07-30 09:39:25',1,'2021-10-21 08:48:41'),(1724,'API_240a6fd5a5c51319e65a002e01e98361','批量下载文件','','cmii-uav-mission','/api/uav/mission/mission_info/downloadZip','POST',_binary '\0',_binary '\0','2021-07-30 09:39:25',1,'2024-10-10 08:57:15'),(1725,'API_b0bd16e742685cfe47c5d24240995f72','获取分段作业视频和轨迹信息','','cmii-uav-mission','/api/uav/mission/mission_info/Segmented_video/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:39:26',1,'2024-10-10 08:57:05'),(1726,'API_6b397b07b45ec6992ec1b17e902f750d','云台控制转向','','cmii-uav-surveillance','/camera/gimbal/autocontrol','POST',_binary '\0',_binary '\0','2021-07-30 09:39:27',1,'2024-09-23 20:58:57'),(1727,'API_12e43cc1b21e1f3af7530ff86eb93d7c','机库设置home点','','cmii-uav-surveillance','/hangarSurveillance/setHangarHomePoint','POST',_binary '\0',_binary '\0','2021-07-30 09:39:29',1,'2024-09-23 20:59:00'),(1728,'API_ead63b18083667ef313b13c64f092b3e','机库设置紧急降落点','','cmii-uav-surveillance','/hangarSurveillance/setHangarEmergencyLandingPoint','POST',_binary '\0',_binary '\0','2021-07-30 09:39:29',1,'2024-09-23 20:58:59'),(1729,'API_f7337c038e800ae90fd49dfc7b080ed0','deprecated 结束机库流程','','cmii-uav-surveillance','/hangarSurveillance/endHangarProcedure','POST',_binary '\0',_binary '\0','2021-07-30 09:39:29',1,'2024-09-23 20:58:57'),(1730,'API_17ddf88e8b299d09a99624aea0f6a198','启用/禁用电子围栏','','cmii-uav-airspace','/efence_airspace/efence_enable_switch','PUT',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:37'),(1731,'API_ba7c62d9dd1effc0e7397ffc169f77ea','电子围栏详情','','cmii-uav-airspace','/efence_airspace/efence_info_detail/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:37'),(1732,'API_e1d774919d7e11a82fa58bcd64edbd47','模糊搜索电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info_map_with_filter','POST',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:37'),(1733,'API_e7153ec900de721157cbabf84b4b996c','查询可用电子围栏列表','','cmii-uav-airspace','/efence_airspace/enabled_efence_info_list','GET',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:36'),(1734,'API_5a84715c3f0c62a01985d477694a7c24','查询所有可用空域告警触发配置信息map','','cmii-uav-airspace','/efence_airspace/all_enabled_airspace_trigger_info_map','GET',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:36'),(1735,'API_fe6ae3ee3aa25889baf43ce1701d5a2b','校验电子围栏名称是否唯一','','cmii-uav-airspace','/efence_airspace/efence_name_distinct','POST',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:37'),(1736,'API_04f157b4dee9dfe6e83fdf1ec17b4bd1','编辑电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info','PUT',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:37'),(1737,'API_33f4f05bae4633525ea45cf26eb28c43','删除电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info/{id}','DELETE',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:37'),(1738,'API_9cf9d6d86f5dae441273ee1e3561fbbc','创建电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info','POST',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-10-11 08:57:37'),(1739,'API_607f5d4328ad8185009002e624007294','获取图片验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/getImageCode','GET',_binary '\0',_binary '\0','2021-07-30 09:39:33',1,'2024-10-11 15:37:12'),(1740,'API_9c6414c9e81e247588815a6f52b3224f','地区模糊查询下拉框','','cmii-uav-data-post-process','/dataset/areaFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1741,'API_dbec834a14b770506d9c0f20ceed199b','判断名称是否重复','不存在true,存在false','cmii-uav-data-post-process','/dataset/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1742,'API_9a4098e2bc8c00b8a675ccc810a591f9','素材仓库选取','','cmii-uav-data-post-process','/dataset/getPicByMaterialWarehouse','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2022-06-08 03:06:19'),(1743,'API_bbb590d7ba449d9bc88b5ec7fa162260','根据项目id素材仓库选取','','cmii-uav-data-post-process','/dataset/getMWPicByProjId','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2022-06-08 03:06:19'),(1744,'API_58f2a7ef11a7a9385f149593613e9b9f','根据文件Id获取图片和缩略图地址','','cmii-uav-data-post-process','/dataset/getFilesPath','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1745,'API_6c550b7cca47a83ea5fc79c4b3d3b3a5','详情','','cmii-uav-data-post-process','/dataset/datasetInfo/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1746,'API_184f5213bc57bb34f6ff417a5ee4fd23','数据管理分页查询','','cmii-uav-data-post-process','/dataset/datasetInfoPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1747,'API_1fc866490cf2058a6ea70769d55be4bc','编辑','','cmii-uav-data-post-process','/dataset/edit','PUT',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1748,'API_3fb67d4dd7e867328bbbe70bc6039528','本地图片上传','','cmii-uav-data-post-process','/dataset/uploadPic','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1749,'API_7e15901ca91153d59508577b87e4f852','创建人模糊查询下拉框','','cmii-uav-data-post-process','/dataset/creatorFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1750,'API_bdfeaecac79dfae46e290fc652352e87','删除/批量删除','','cmii-uav-data-post-process','/dataset/delete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1751,'API_fc1120ad9ad6ae844811a02d163318fb','复制数据集','','cmii-uav-data-post-process','/dataset/copy','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:28'),(1752,'API_6e3833bca341ad49de101dcd6556a02d','新建数据集','','cmii-uav-data-post-process','/dataset/create','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1753,'API_c0cf2850fdc498efda63d9f0ad4fb090','地区模糊查询下拉框','','cmii-uav-data-post-process','/result/areaFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:28'),(1754,'API_e9d3142952a88b16e9653de55cbaf648','判断任务名称是否重复-n','','cmii-uav-data-post-process','/result/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1755,'API_d0136a0bee8b1aaf7eb522ff7ac89f7c','取消发布','','cmii-uav-data-post-process','/result/cancelPublish/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1756,'API_fbc486526773c99e60eaf6b70e63ebee','成果详情','','cmii-uav-data-post-process','/result/resultManagement/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1757,'API_32e5eaf508aac4919c426409101ad0c8','成果编辑','','cmii-uav-data-post-process','/result/resultManagement','PUT',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1758,'API_77754b05e3a41c37bad2ad1efd548762','根据成果id获取下载url','','cmii-uav-data-post-process','/result/download','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1759,'API_33804ce1a2c0d5976c1d96e5a348a26f','本地数据上传','','cmii-uav-data-post-process','/result/upload','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1760,'API_c535e530e48c01940c3d5ab5527ceb71','创建人模糊查询下拉框','','cmii-uav-data-post-process','/result/creatorFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1761,'API_7ddd8bd2cffcaa4198d111b0a08b5485','文件合并','','cmii-uav-data-post-process','/result/merge','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1762,'API_92252549ddf21526b2b313c299ccc58c','单体模型上传','','cmii-uav-data-post-process','/result/modelUpload','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1763,'API_468a1d83503ddac32a86c5247b4ce5b8','单体模型上传删除','','cmii-uav-data-post-process','/result/modelUploadDelete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1764,'API_b41a4dd92679d83009f276a046e80b9d','单体模型上传编辑数据回显','','cmii-uav-data-post-process','/result/modelUploadInfo/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1765,'API_cb4787fd806d147efe47454ae9d80cea','根据类型获取数据字典','','cmii-uav-data-post-process','/result/getDictByType','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1766,'API_a023d99e849ce0bb190f9a214974386d','获取map_report.json信息','','cmii-uav-data-post-process','/result/getMapReport/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1767,'API_c5fa46516eb21b9ec814273924e09c17','成果展示-可视化','','cmii-uav-data-post-process','/result/visualInfoPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1768,'API_c48d0b82f603d92cc734208f7b821ad1','成果管理分页查询','','cmii-uav-data-post-process','/result/resultInfoPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1769,'API_32da99d08fd6691e1d1c53a75dfd15fb','删除/批量删除','','cmii-uav-data-post-process','/result/delete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1770,'API_632579233dd7aedac83e042aa4abe070','新增任务','','cmii-uav-data-post-process','/result/create','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1771,'API_77f8005e0a8648b9bba9ffe58aa38010','发布','','cmii-uav-data-post-process','/result/publish/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1772,'API_a238a003d2068c87bdeba741a3565a4c','地区模糊查询下拉框','','cmii-uav-data-post-process','/product/areaFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1773,'API_2cc699730937df5cd881745591845200','判断任务名称是否重复','不存在false,存在true','cmii-uav-data-post-process','/product/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1774,'API_598e080c5b8a6eefaf9cd194c467467f','取消任务','','cmii-uav-data-post-process','/product/cancel/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1775,'API_e18da2e5fc28cd1d285618fc182317e9','重建任务','','cmii-uav-data-post-process','/product/rebuild/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1776,'API_bd25c54517bdf5c661d22f97a27f778d','创建人模糊查询下拉框','','cmii-uav-data-post-process','/product/creatorFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1777,'API_378df373c489616dd73cf922d2902a96','分页查询影像数据集','','cmii-uav-data-post-process','/product/datasetInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1778,'API_0b7b27b37e1670f05c03b8d71ecb6dff','根据任务类型查询影像数据集','','cmii-uav-data-post-process','/product/downListDatasetInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1779,'API_35d8ad1df0dae208bc43bbaa10816908','详情查询','','cmii-uav-data-post-process','/product/taskInfo/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1780,'API_50ae048a00b6ef92526ff8975c306881','报告下载','','cmii-uav-data-post-process','/product/report/download','GET',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1781,'API_26431ae7d777fee048d79a670b4d6a7b','下载','','cmii-uav-data-post-process','/product/download','GET',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1782,'API_f604e4d649d08751502b66ba89103e45','生产管理分页查询','','cmii-uav-data-post-process','/product/productManagementPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1783,'API_052f3f6d525dcbfe58db07cb3e7d2b5c','編輯任务','','cmii-uav-data-post-process','/product/update','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1784,'API_5d336af7c5a8c37d25c08c3340a1a5ae','删除/批量删除','','cmii-uav-data-post-process','/product/delete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1785,'API_c13eb63174648dea44b3b225f404406b','开始任务','','cmii-uav-data-post-process','/product/start/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:29'),(1786,'API_08df23c26807ae85f337db6e99508938','新增任务','','cmii-uav-data-post-process','/product/create','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1787,'API_03cd30425f552e7e5ae322bfd03e269c','应急数据修改接口','应急数据修改接口','cmii-uav-kpi-monitor','/personal/emergency/sos_data/update','GET',_binary '\0',_binary '\0','2021-07-30 09:56:42',1,'2024-10-11 01:37:37'),(1788,'API_858feecbcc679d7e7f65039c0089cdff','获取每个公司无人机实例信息','获取每个公司无人机实例信息','cmii-uav-kpi-monitor','/user/accessAnalysis/planeInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:56:42',1,'2024-10-11 01:37:36'),(1789,'API_d1568db90a52026907f43d635e6ef310','env','','cmii-uav-kpi-monitor','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:40',1,'2024-10-11 01:37:36'),(1790,'API_48ff70f4a482b1b50fa05d5324c9a81c','删除图片','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/pic_info','DELETE',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:22'),(1791,'API_f584f8bc6ba4f8dd317ca3ccf224c322','查询巡检照片路径列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_list/{routeId}/{towerId}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:15'),(1792,'API_652dbc45270752e52ea6cd10381ddd1f','获取巡检照片压缩包路径','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_package','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:20'),(1793,'API_fa947af77c21a242691cc256cff984f0','获取巡检照片详情信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_detail/{routeId}/{towerId}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:23'),(1794,'API_a04096eb58320035b11b584da9db84fd','移动图片','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/moving_picture_list','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:11'),(1795,'API_9f69e25266318ded0a06282e9757cc04','上传单张图片','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/pic_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:12'),(1796,'API_943a942e7f02a54eedfb226d4daace8a','更新缺陷列表信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_defect_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:14'),(1797,'API_9213f2245d525b1e1dd29f2615988f75','巡检照片信息保存','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/flight_picture_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:15'),(1798,'API_f221e821ea95376765364c188ecd17a4','删除线路','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info','DELETE',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:22'),(1799,'API_41570b0728d32e243d74d23ac08ebbd9','全量杆塔线路列表信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info_list','GET',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-10-15 02:14:12'),(1800,'API_3215ca24caa0150a078b8f5aa9ae50f4','分页查询杆塔线路列表信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/page_route_info_list','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:11'),(1801,'API_1e5e47f45092f13e4a769e1cb20b7bf3','创建线路','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:12'),(1802,'API_346da9d89299be9fc89489258df3542e','查询杆塔名称是否冲突,false:冲突、true:不冲突','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_name_distinct','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:12'),(1803,'API_92219fa6b9ab0076dd319bb286423c75','查询线路绑定的杆塔信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_list_in_route/{id}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:23'),(1804,'API_b8304a664af6b4c8a40ced49f7269380','创建杆塔','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:14'),(1805,'API_9b71f9fc4256df74f2e42d32403c1d3f','修改杆塔','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_info','PUT',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:13'),(1806,'API_5ee05c152af8e1fe51adec0b528f9218','删除杆塔','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_info','DELETE',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:18'),(1807,'API_e2d29cab0e28d00fe8db354e50f444f3','杆塔详细信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_detail_info/{id}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:08'),(1808,'API_3ba6a54f550034935fd33a07e84a6c07','导入杆塔列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_data_list/{routeId}','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:20'),(1809,'API_5284db2993d52046d51ca648cdef16d3','下载杆塔导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_data_list_template','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-10-15 02:14:09'),(1810,'API_4b3eea96794184eb9c9b644fba2a4af7','导出杆塔列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_data_list/{routeId}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:09'),(1811,'API_279a08c4c6944e65bb1257a17cea387a','改动杆塔顺序','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_sort','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:15'),(1812,'API_0061485909627b5766e7681d376f691b','修改线路','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info','PUT',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:15'),(1813,'API_d0d09eab176ff96232908a9bd86b0e97','查询线路名称是否冲突,false:冲突、true:不冲突','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_name_distinct','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:10'),(1814,'API_db2751e81a910b88bc7738bc6522dda0','获取全量航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/airline_info/{routeId}','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:21'),(1815,'API_82a1a1bd676c258139fa2fa445deafc4','线路关联航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/airline_list','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:14'),(1816,'API_81c0c802aaceb1720544ce8bdd18757e','线路获取关联航线详细信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/airline_list_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:23'),(1817,'API_ad0676e5f14a03943694b02fe5a90327','删除线路关联的航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/unbind_airline_list','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:12'),(1818,'API_a0b2c6704136f611bbb09278624ba574','ping','','cmii-uav-industrial-portfolio','/cmii/ping','GET',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-10-15 02:14:12'),(1819,'API_932251a24ec77eebb57c8c7d35dc02aa','health','','cmii-uav-industrial-portfolio','/cmii/health','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2024-10-15 02:14:18'),(1820,'API_9ea3941fd5b216974aa2ba9cd19bcd07','env','','cmii-uav-industrial-portfolio','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2024-10-15 02:14:14'),(1821,'API_e848b01c128a1e32bcd5d487aaa2a9fb','接口扫描','','cmii-uav-industrial-portfolio','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2024-10-15 02:14:11'),(1822,'API_270185567bffff78c8ae3168eeafc4db','securityConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-03-15 07:29:57'),(1823,'API_c7a989ee54e1b01623e485572e37588d','swaggerResources','','cmii-uav-industrial-portfolio','/swagger-resources','',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-03-15 07:29:57'),(1824,'API_14b5d882bf109eeb82e3534878dd5374','uiConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-03-15 07:29:57'),(1825,'API_450e2e4a22287888781876db2a15ecf4','第一次上传项目','第一次上传项目,返回projId','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:11'),(1826,'API_0797b71a8065b81d7638858bbc4b4123','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:11'),(1827,'API_dfca8d8f9573ebe1ae05015d1f85b468','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:11'),(1828,'API_6f5e68f272858c879969e688fde11abe','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:12'),(1829,'API_04976e01c4b2ba87fd1a855c3d55c336','删除项目的文件','删除项目的文件,支持批量','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2022-11-02 09:13:12'),(1830,'API_1f140d98ff149d0154981a081ade8464','项目文件上传','上传项目文件 ','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2022-11-02 09:13:12'),(1831,'API_689053505118876c5ba27bec7a413e45','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2022-11-02 09:13:12'),(1832,'API_242b0002427d61925fa0c6e0cf5d32a3','errorHtml','','cmii-uav-industrial-portfolio','/error','',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2024-10-15 02:14:18'),(1833,'API_340fe139abee2fde75289994adff7ec1','env','','cmii-uav-cloud-live','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2024-10-12 09:42:34'),(1834,'API_0bb20ef1840be51455dbad528597652b','下载指定时长mp4文件','下载制定时长mp4文件','cmii-uav-cloud-live','/video/download/mp4file','GET',_binary '\0',_binary '\0','2021-11-05 10:08:48',1,'2024-10-12 09:42:35'),(1835,'API_9a239d269204b50e4d66d2cce1dea7e0','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','/public/his/playback/ts/{fileName}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:48',1,'2024-10-12 09:42:37'),(1836,'API_24ffe32cac865b59c4824b21954438ac','开始一个新的workflow','开始一个新的workflow','cmii-uav-cloud-live','/orchestrate/init','POST',_binary '\0',_binary '\0','2021-11-05 10:08:49',1,'2022-03-08 07:20:03'),(1837,'API_1b3f2d7c00669e0d02e448b75e3e6bfe','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:50',1,'2023-03-29 10:20:11'),(1838,'API_648ec3173582226c50adabdef7640f36','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:50',1,'2023-03-29 10:20:11'),(1839,'API_9f9a9a7f40169ee8bf9c0a21e330c763','env','','cmii-uav-data-post-process','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2024-09-09 09:16:29'),(1840,'API_1b9f5a274f3c4a7d03959696bf843e71','成果-列表查询-二三维模型列表查询','','cmii-uav-data-post-process','/uav/threeD/visualInfoList','GET',_binary '\0',_binary '\0','2021-11-05 10:08:58',1,'2024-09-09 09:16:30'),(1841,'API_d2b24f0717a48a9a2efe602a4e31b18f','航线航点详情查询','','cmii-uav-data-post-process','/uav/threeD/airPointInfoList/{id}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:58',1,'2024-09-09 09:16:30'),(1842,'API_be558ff12ebb443b017629fb4297b53a','成果-列表查询','','cmii-uav-data-post-process','/clients/result/visualInfoList','POST',_binary '\0',_binary '\0','2021-11-05 10:08:58',1,'2024-09-09 09:16:29'),(1843,'API_5334d119dfd5d0f598b2786e0720fe16','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-data-post-process','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:59',1,'2023-03-29 08:38:08'),(1844,'API_ccfdb35b51df441df95868bb7b5de14a','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-data-post-process','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:59',1,'2023-03-29 08:38:08'),(1845,'API_deff3745dfbb0fbff07bba51cf8ccece','从Redis获取有效的编码对应的本地语言的值','从Redis获取有效的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getValLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-11-05 10:09:01',1,'2024-09-09 09:15:06'),(1846,'API_a62e0e5af0aa671e90aa30bee955bb38','从Redis获取有效的语言对应的字典明细的K-V','从Redis获取有效的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2021-11-05 10:09:02',1,'2024-09-09 09:15:08'),(1847,'API_719e33488c94c692a8a6194044a9226a','查询指定限制空域','','cmii-admin-data','/api/admin/arealimit/querySpecifiedZydAreaLimit','POST',_binary '\0',_binary '\0','2021-11-05 10:09:04',1,'2024-09-09 09:15:05'),(1848,'API_d60359bb5ed6fe0e2e7b0ff830a92c4e','env','','cmii-admin-data','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:12',1,'2024-09-09 09:15:04'),(1849,'API_15bd50e9ea74e908cd6e9d785ea91a53','env','','cmii-uav-process','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:13',1,'2024-09-12 02:46:56'),(1850,'API_17e92ba3f3254c5de0a373d75bedfbb9','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-11 05:48:25'),(1851,'API_526b934847d50eb05602fd611b9e5dcc','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-11 05:48:25'),(1852,'API_d826dc52a480d92cce72a9b9477221c6','通过告警对象查询指定公司的在线告警事件列表','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-11 05:48:25'),(1853,'API_e6e68e310194d4af876a4ad5f8362cb0','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-11 05:48:27'),(1854,'API_e8a1ae1477cca15626192ae0c8edc535','查询告警配置对应的事件信息','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByAlrmId','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-11 05:48:26'),(1855,'API_1e77ab6a913b79833e87b67f02f57aab','告警触发器','','cmii-uav-alarm','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:25'),(1856,'API_79b01188af4e7022c61720c36d77a31d','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byId','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:25'),(1857,'API_3b185cd3d02b8d675047b4d85e977c92','通过关联作业处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:27'),(1858,'API_ee029c84f67993e91d0455d40e9a36c0','通过事件标识处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmByIdentity','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:27'),(1859,'API_8821ef843ad5e6ab28249bca8b816996','通过告警对象处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:26'),(1860,'API_b8fd251faf2dc9c5e93a71d69a643444','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/onLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:25'),(1861,'API_a2475abfb5028b323c9b422abb307769','查询历史在告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/offLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:25'),(1862,'API_780123db4080c80b7dfa636d0799878b','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:27'),(1863,'API_894992c55afc4f4cd771e603af0142c3','查询包括子公司的指定告警配置的详情','','cmii-uav-alarm','/api/uav/alarm/query/configurationById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:26'),(1864,'API_1d9708f43fe32a30e441a63e750063c9','查询指定公司的监控对象告警触发条件','','cmii-uav-alarm','/api/uav/alarm/queryAlarmTriggerByObj','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:25'),(1865,'API_b4647e28e3da8db818e570a626b27ca7','新增告警配置','','cmii-uav-alarm','/api/uav/alarm/add/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-11 05:48:25'),(1866,'API_e8aefd2952a4b43dcb8064e8b703d879','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:26'),(1867,'API_5836f54818af59d88aff1ee225d3ee3a','查询包括子公司的告警名称','','cmii-uav-alarm','/api/uav/alarm/queryAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:24'),(1868,'API_94ab8f3eeb3b5ccd94f6b7d9fe575b9f','查询包括子公司的监控对象','','cmii-uav-alarm','/api/uav/alarm/queryAlarmObject','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:25'),(1869,'API_ddd29fd3c17dbc04e47ad11a617656e8','查询包括子公司的监控指标','','cmii-uav-alarm','/api/uav/alarm/queryAlarmIndex','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:26'),(1870,'API_8a110d05ceda064d14bc186c840ffd26','分页查询包括子公司的告警配置','','cmii-uav-alarm','/api/uav/alarm/query/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:25'),(1871,'API_e19ec127d1af0072905a7f7080bcf5e6','数据字典下拉列表查询','','cmii-uav-alarm','/api/uav/alarm/getDictValue','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:26'),(1872,'API_1e54a11defb3f33db2e73db82c28d95f','查询当前公司所属用户列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userInfo','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:26'),(1873,'API_338ce979c6c54127e5c0c8f8658665fb','根据用户名称或者手机号查询当前公司所属用户id列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userIds','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:27'),(1874,'API_6b46feb15dfd928bd5dae31533e09ebc','启用禁用操作','','cmii-uav-alarm','/api/uav/alarm/update/available','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:25'),(1875,'API_34e3288ab4eda30bb0fd075d007d625d','校验告警名称','','cmii-uav-alarm','/api/uav/alarm/checkAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-11 05:48:25'),(1876,'API_77adff0510203563ce13a51a32e15130','删除操作','','cmii-uav-alarm','/api/uav/alarm/delete/configure','POST',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 05:48:25'),(1877,'API_065f442334b312950a67b874f2a123e5','批量删除操作','','cmii-uav-alarm','/api/uav/alarm/deleteBatch','POST',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 05:48:27'),(1878,'API_bbd18c44e5cb04c6c87ed506b4ededeb','接口扫描','','cmii-uav-alarm','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 05:48:25'),(1879,'API_e6bc5e82583f7c2795398a90caaab35e','health','','cmii-uav-alarm','/cmii/health','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 05:48:27'),(1880,'API_5e7e12e67d378030dd3edcb30ab70ff8','ping','','cmii-uav-alarm','/cmii/ping','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 05:48:27'),(1881,'API_df5241d77cce8bc64906586cad2227f2','env','','cmii-uav-alarm','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 05:48:26'),(1882,'API_ba16ebc000ef650d05bc45e632378065','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2022-04-25 02:49:08'),(1883,'API_30b7c6431967cc689a963de5862cf0c1','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2022-04-25 02:49:08'),(1884,'API_c8a54dba9e0394eaa8fa54f5712d33d3','swaggerResources','','cmii-uav-alarm','/swagger-resources','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2022-04-25 02:49:08'),(1885,'API_bbc39447c2bf5f77ceceba22c9f39878','error','','cmii-uav-alarm','/error','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-11 05:48:27'),(1886,'API_e5e2bd05493243387a3f6eab5e605be4','env','','cmii-uav-surveillance','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-09 08:58:42',1,'2024-09-23 20:59:00'),(1887,'API_61774562fd947b7d9a583991a01c1aa0','获取用户云台控制键盘快捷键设置','','cmii-uav-surveillance','/virtualStick/get_keyboard_binding_setting','GET',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:58:59'),(1888,'API_6ca3ffd15bd19c61aac9c8ee5f76b75f','视频快拼,前端存放一个redis值,暂时','','cmii-uav-surveillance','/virtualStick/set_stitch_data','GET',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:58:59'),(1889,'API_ec32453606d2ff26fa7d64a05b2ee1b3','视频快拼,前端获取一个redis值,暂时','','cmii-uav-surveillance','/virtualStick/get_stitch_data','GET',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:58:57'),(1890,'API_af7ac805c24f6ea2786f732a8b999bd3','设置用户云台控制键盘快捷键','','cmii-uav-surveillance','/virtualStick/set_keyboard_binding_setting','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:59:00'),(1891,'API_20350da37f40d6259218b9f5e14f10db','云台自动扫描','返回操作失败的无人机di','cmii-uav-surveillance','/multi_plane_controller/gimbal/auto_scan','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:58:57'),(1892,'API_9f3dea3224177fab40e4a4361cace426','自动对焦','','cmii-uav-surveillance','/multi_plane_controller/camera/autoFocus','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:58:56'),(1893,'API_beaf31611d1652dfdf7e9c5aa9a6068f','拍照或者摄像','','cmii-uav-surveillance','/multi_plane_controller/camera/cameraAction','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:58:58'),(1894,'API_93ad40012188f3c026c37accd8967a56','镜头缩放','返回失败的无人机id','cmii-uav-surveillance','/multi_plane_controller/camera/zoom','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-09-23 20:58:58'),(1895,'API_e5c7df3e46ad41e6df17a32e006daddd','切换为照相/摄像模式','','cmii-uav-surveillance','/multi_plane_controller/camera/modeChange','POST',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-09-23 20:58:58'),(1896,'API_e4e2026e9321db7e79d1900679f3eb1d','云台控制转向','返回操作失败的无人机di','cmii-uav-surveillance','/multi_plane_controller/gimbal/control','POST',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-09-23 20:58:58'),(1897,'API_4578ebc9a8b8920b8079eceba18d4a0e','测试新接口','','cmii-uav-surveillance','/surveillance/testDevice','GET',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-09-23 20:58:57'),(1898,'API_2c14787739eefc528ee77344042c1d56','起飞','','cmii-uav-surveillance','/surveillance/takeOff/{id}','GET',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-09-23 20:58:57'),(1899,'API_08f2636b4b315f2eba8220fc131e9891','获取火情信息接口,全量查询','','cmii-uav-surveillance','/surveillance/getFireInfoList','GET',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-09-23 20:58:59'),(1900,'API_2a7e9dbd04ec9f21713622abcb4a9ae9','新增告警事件','','cmii-uav-surveillance','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1901,'API_a83853d9ed07d9d2a64bc03052006594','查询告警事件详情','','cmii-uav-surveillance','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1902,'API_face32d26c557a55ec401c92ec8e8d87','告警触发器','','cmii-uav-surveillance','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1903,'API_504846b8bbe52998b5ce474c7c341049','通过告警对象查询告警事件列表','','cmii-uav-surveillance','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1904,'API_7ef096e1b46b0f58726a294fba60026f','告警指标统计信息','','cmii-uav-surveillance','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1905,'API_00d4e713d6ecbccaf9a78fa7d9199d32','通过关联作业处理告警事件','','cmii-uav-surveillance','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1906,'API_ee103a83439af52024cbc275953858f8','通过告警对象处理告警事件','','cmii-uav-surveillance','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1907,'API_7cb3ed0b1309af6a3641bf108e2bed2e','查询告警数量统计信息','','cmii-uav-surveillance','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1908,'API_6a87c72fe0b31f63fbe96d0938824b8f','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-surveillance','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:05'),(1909,'API_e9fbe36d133fded014d4d21dd4f267a7','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-surveillance','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1910,'API_09da3f3fde44235337ab399464bca40d','查询公司/机构所属的载荷编码列表','','cmii-uav-surveillance','/api/uav/load/queryLoadByCompanyId','GET',_binary '\0',_binary '\0','2021-11-09 08:58:54',1,'2023-03-29 09:05:05'),(1911,'API_24e056f03f5fd2570962541216c45bc2','获取视频推拉流地址','','cmii-uav-device','/api/uav/load/getVideoAddress','POST',_binary '\0',_binary '\0','2021-11-15 08:59:49',1,'2024-10-11 01:36:50'),(1912,'API_fbbd4ef17066a99a51693c642748652a','env','','cmii-uav-device','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-15 08:59:53',1,'2024-10-11 01:36:52'),(1913,'API_9d45fca0880b60e20782f363ba02a6db','行业应用平台根据code获取用户Token','行业应用平台根据code获取用户Token','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/common/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:17'),(1914,'API_bf099ab312fb1a3cb7bd2502d0e16314','保存目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/keep_duration_config','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:17'),(1915,'API_5374302dbbbacbdf96457cc1a87277b5','查询目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/query_keep_duration_config','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:21'),(1916,'API_e528c28b6cd9b51730641e8949266360','导入基站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/bts_data_list','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:21'),(1917,'API_2e031a9d0d7377c19e107ddeba40d5c7','下载基站导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/bts_data_list_template','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:10'),(1918,'API_64163106902fdc9f3971eeed44c5ae96','查询基站数据列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/bts_data_list','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:16'),(1919,'API_1f46488e1975c05594899261446e300c','回放探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/queryDetectionHistoryByTime','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:09'),(1920,'API_b618bcf974519c31694a50445f13fa24','查询探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/queryDetectionHistory','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:13'),(1921,'API_9a41ac7c362fd9ee68b0ed453ffbbf26','WS数据接口展示','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/testWs','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:17'),(1922,'API_a53b744897746057b82a808ce1b1dbbb','增加测试数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/addtestData','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:20'),(1923,'API_7126407a3b96e535cd4f1455c63c4506','查询低空探测配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/detection_config','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-10-15 02:14:21'),(1924,'API_1809633b3d5fd1191eaadc045a73685a','保存参照点配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/ref_point_config','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:16'),(1925,'API_56306f496c6cfaa523d74c9fc758d177','全量查询页面标记','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/web_flag/query_total','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:21'),(1926,'API_87503f226f7c26007be3f7ccb18253e1','添加或者编辑页面标记,带id编辑,不带新建','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/web_flag/add_or_edit','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:20'),(1927,'API_7991c181a1b12b86044e5cd0f5762328','删除页面标记','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/web_flag/delete','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:13'),(1928,'API_63dd030352081e0429a3e18112c95ef5','获取无人机实时位置,只有经纬度','','cmii-uav-industrial-portfolio','/v1/permission/share/get_uav_point','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:19'),(1929,'API_e6eb16309c175de40d1522d5d11902a9','checkShareCode','','cmii-uav-industrial-portfolio','/v1/permission/share/check_share_code','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:14'),(1930,'API_872e9048ed5e102b3dc1b1538b31fc6c','根据作业id获取视频分享连接和提取码','','cmii-uav-industrial-portfolio','/v1/permission/share/get_share_code_by_mission_id','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:14'),(1931,'API_20e518430eac7aecbd1236f3ebdbb094','公安平台根据code获取用户Token','二三维建模二期根据code获取用户Token','cmii-uav-industrial-portfolio','/v1/permission/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:16'),(1932,'API_0e999dc9362e357b16d8dd89d81cf999','警情信息上传接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:20'),(1933,'API_5f0740f50491d391e78b1f74b06570c7','警情结束接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/caseinfo/casefinished','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:11'),(1934,'API_2139aafd11779bb2c2ab3de3ef0ab23a','全量查询警情接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/query_total_police_cases','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:17'),(1935,'API_e31178a3005ad848426d8e22c0e25fa5','结束警情出警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/complete_police_case','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:13'),(1936,'API_1c7cfc468248bd444483b24c83e67be3','出警接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/police_case_dispatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:11'),(1937,'API_b033206e8be89004f94fe1c783843546','通过missionId 查询出警的警情以及用户点','返回的列表最多只有一个数据','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/query_mission_cases','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:23'),(1938,'API_052d530b44d63ba300ac8d19108b2698','删除警情 ','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/del_police_case','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:13'),(1939,'API_1b0888298c525635974ce49b805a9295','修改警情所属公司','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/modify_police_case_belong','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-10-15 02:14:15'),(1940,'API_fbe580115b262d02468f0722b91fac05','无人机列表绑定的载荷列表详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1941,'API_c3d96e199e79fc2e0e6efe77ec0ad758','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1942,'API_4a45657b639f4098ac4aebdad85458bb','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1943,'API_7f5826fcb9a79d240e5325b733ed1bdf','新增无人机','','cmii-uav-industrial-portfolio','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1944,'API_dcbe30376436d7c9dfbceec1f59f1b9f','修改无人机','','cmii-uav-industrial-portfolio','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1945,'API_a07d48bd3646df2a23109270c98167c3','通过无人机设备号查询无人机编码','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1946,'API_a8d36c1eaa5fa60c9c817f5587cc4e14','通过无人机编码查询无人机编码设备号','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1947,'API_b9f022a0765c23ab039e9360ac32d09a','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1948,'API_7c9dc51b2d40fe163a3b05e005e23cb0','check设备类型是否匹配','','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1949,'API_7c53c4a829e77710c6a9cacfdd801c41','check设备动作是否匹配','','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1950,'API_644c7355dfbf51a510bbd5e5cf641c94','设备数据字典和匹配校验','','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1951,'API_5ca7e9d5ac1edbd0ae698cd8c4e79175','根据无人机编码获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1952,'API_3f89c2175244877baebb07048af4477a','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1953,'API_371627ad81634fcc7c8cd5e38f09562f','菜单资源同步','','cmii-uav-user','/api/uav/resource/sync','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-10-11 15:37:16'),(1954,'API_76aef9ab70c47b1d659f7addc0850ff4','模糊查询在线无人机编码和机库编码列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1955,'API_29eac790d6d85b29d41958067eac7346','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1956,'API_7650cc6e5cff558f8200a9b741c63907','根据设备号获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1957,'API_f41d91bc0602299853c54cff68170847','无人机绑定的摄像头信息查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1958,'API_6572e03ee0dbeb044f16bb13634860fc','生成新无人机编码','','cmii-uav-industrial-portfolio','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1959,'API_046c5a79680f6ff1f65868ca6a150d9b','按无人机编码查询无人机详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1960,'API_7a25a381dd0dcaf9d8ac29d2162587b4','按无人机设备号查询无人机详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1961,'API_f46db5ec307f99570c71f28b65fa40d5','根据无人机编码查询该无人机是否存在','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1962,'API_7718cad8a6eaed7e3c5f8a313cd4a4d4','查询无人机是否可用','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1963,'API_e80ce85b917600b6275d8360a0c8d18d','查询设备在线状态','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1964,'API_d37755e2b5bed970e4eabdaedff004fd','设置无人机在线状态','','cmii-uav-industrial-portfolio','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1965,'API_4887ff3bc2ed62dd84b6b847ebdee1a7','查询无人机总飞行时长','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1966,'API_c589e0f7060e1eb0f32d89200a242bf1','查询该公司有的无人机类型详细信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1967,'API_cfbc0f6ac3a512f21354fc263300086f','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-industrial-portfolio','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1968,'API_64a492a1b001278931e0634102d5d7a8','模糊查询可用状态列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1969,'API_577ea2865d3aecb0c5fe7b6845331cc3','查询公司/机构所属的在线无人机列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1970,'API_ce24ea7b75dbbfe6e267afdcd9bc4cbb','无人机绑定的载荷列表查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1971,'API_2c88be6be58cb0a02482693d04247259','统计公司/所属机构获取无人机数量','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1972,'API_4c7d4392059244c4e0cdb4f9306e3386','无人机绑定的摄像头推流信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1973,'API_d21bd2bd0c4a8f6692259e8fe9a8cb97','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1974,'API_1f5ace1281b80bab94fe0b6f99cd2cf7','查询公司/机构所属的无人机编码列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1975,'API_1f14a61350bd9787496d64e9df5f5639','增加菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-10-11 15:37:19'),(1976,'API_e8644287d106974dd3abd2b2e63e129b','更新菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-10-11 15:37:20'),(1977,'API_e6a250e09db8632e259ab40ba620e1a0','新增机库','','cmii-uav-industrial-portfolio','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1978,'API_d6990a91149a1dfa3797e0924bce0bb9','按机库编码查询机库详情查询','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1979,'API_84b18e7dd2b2c9bfa647e529cfc1b961','修改机库','','cmii-uav-industrial-portfolio','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1980,'API_21722bcfd32b3a52ec158cc756ef2281','按机库设备号查询机库详情','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1981,'API_a21c3a2e047e8b6049d1eac65ffa4e3d','设置机库在线状态','','cmii-uav-industrial-portfolio','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1982,'API_e6410cd8083ec77c856dbeac9282364e','公司支持的多语言','','cmii-uav-user','/api/uav/user/profile/querySupportedLanguages','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-10-11 15:37:17'),(1983,'API_3c44116cbfc46a40b50e22a81f759da1','生成新机库编码','','cmii-uav-industrial-portfolio','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1984,'API_c26e03fffe6f1019b5fb5773b56dc181','获取无人机绑定的机库详细信息','','cmii-uav-industrial-portfolio','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1985,'API_f0d000973cdf6871d35706eb33d6225e','获取机库绑定的无人机详细信息','','cmii-uav-industrial-portfolio','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1986,'API_9f23f5aa662c9c56b1dca751d0d73c02','通过机库设备号查询机库编码','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1987,'API_c5e0a8bba9e3133024a9050227b90766','通过机库编码查询机库设备号','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1988,'API_13430c953f9fae22336fe9df69a16995','根据机库编码获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1989,'API_1a1c6f7a9bcd291190663c7cbc090495','查询公司/机构所属的机库编码列表','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1990,'API_c7362388408bfca8e7cc15ca5592d0d5','搜索日志','','cmii-uav-logger','/bizLog/searchLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:48'),(1991,'API_76300389360c13a81bdbdfd9ecb79f93','搜索对象关联日志','','cmii-uav-logger','/bizLog/searchOpIdentityLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:47'),(1992,'API_db065b5d3b83b61eaefa2a4b50836f78','模糊搜索用户列表接口','模糊搜索用户列表接口','cmii-uav-logger','/personal/search/userList','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:47'),(1993,'API_796a09c0bc084f600504c3bcd4abf532','模糊搜索设备列表接口','模糊搜索设备列表接口','cmii-uav-logger','/personal/search/deviceList','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:47'),(1994,'API_d0c6d1f5bf828187a559fbab169bdcb4','设备类别列表接口','设备类别列表接口接口','cmii-uav-logger','/personal/config/category/list','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:47'),(1995,'API_2fc811bd78563bfd029726034e5b277a','搜索业务日志【通用检索接口】','','cmii-uav-logger','/logger/searchBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:48'),(1996,'API_9592623ab1b1e0bf43fa57eeaf7a978e','根据编码集合查询出接口信息','','cmii-uav-user','/api/uav/resource/api/queryByCodes','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:14'),(1997,'API_22efa37fc10586896a1e2c931e33a65e','写一条业务日志【日志埋点使用】','','cmii-uav-logger','/logger/saveBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:48'),(1998,'API_a7e9511e581d19131d2c36db53502b78','接口扫描','','cmii-uav-logger','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:48'),(1999,'API_bc273903671185a43d1dad89c944b981','health','','cmii-uav-logger','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:48'),(2000,'API_72f1ed0d5cf4e0b1979085f43465fde6','ping','','cmii-uav-logger','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:48'),(2001,'API_b16f39ced33dbbd4773db4915e4f2386','env','','cmii-uav-logger','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:48'),(2002,'API_8656bcac6b04d4b5f95c971afef1fe09','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2022-03-11 06:17:33'),(2003,'API_e2804c450c1aa20fcab278f7590f4351','swaggerResources','','cmii-uav-logger','/swagger-resources','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2022-03-11 06:17:33'),(2004,'API_7dbad5674586f150ad7ecb021f2b88a9','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2022-03-11 06:17:33'),(2005,'API_fd1762c99da1c9cf1cc14970e7a2817a','error','','cmii-uav-logger','/error','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-15 02:44:47'),(2006,'API_ef1392e9af777173a7d22a9a2dd896fc','用户修改密码(验证旧密码)','','cmii-uav-user','/api/uav/user/modifyPwd','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:13'),(2007,'API_3d2e58aa2ed872cc0efb748d14cd2e5d','验证账号密码','','cmii-uav-user','/api/uav/user/checkAccountPwd','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:19'),(2008,'API_55940e0a645db648b082a2bdc29b956b','获取配置项目历史记录','','cmii-uav-user','/api/admin/system/quota/getQuotaHistory','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:09'),(2009,'API_d831b068209afa75fae95362539c5248','获取组织配额使用信息(不包含子组织配额)','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfo','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:16'),(2010,'API_138d1f792e8c7ef2953118f03055b18e','查询组织历史记录时配额信息展示','','cmii-uav-user','/api/admin/system/quota/getQuotaInfoByCompany','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:09'),(2011,'API_91792e840f0d594a77e2579be356f4d8','获取组织配额信息','','cmii-uav-user','/api/admin/system/quota/getCompanyQuota','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:18'),(2012,'API_bde567dcccb5a9ace49be8f1c7d3d37f','查询所有组织信息','','cmii-uav-user','/api/admin/system/quota/getAllCompany','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:11'),(2013,'API_f096c70213c5df875be07f0c8386e247','修改配额配置(配置或批量配置)','','cmii-uav-user','/api/admin/system/quota/updCompanyQuota','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-10-11 15:37:08'),(2014,'API_9139c0e2f4ff19be2ee015f851dea540','更新检查密码过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:10'),(2015,'API_6beea8e80ff08ac650cf234507edd315','更新检查密码即将过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdWillExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:09'),(2016,'API_412903050f7d31bec581858540eec30a','向用户发送短信','','cmii-uav-user','/user/pwd/notice/startSendSms','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:13'),(2017,'API_3dc66cc39026e1523fab47ab17028019','根据用户id获取用户详细信息','','cmii-uav-user','/user/getUpdateById','POST',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:17'),(2018,'API_da4d4460e5d246a7e2e5bcc23912ceb9','向用户发送Email','','cmii-uav-user','/user/pwd/notice/startSendEmail','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:11'),(2019,'API_ffc94b12cc6152ed1ebd0dadf788eba4','health','','cmii-uav-user','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:08'),(2020,'API_100a284ed1d1ae4ab3b90991239af961','ping','','cmii-uav-user','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:12'),(2021,'API_41a5a4ad4c33ecaa64d42329d150bb2e','env','','cmii-uav-user','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-10-11 15:37:18'),(2022,'API_6cf23bdae74602c793a65ca87b97b4c8','查询支持的算子列表(可选)','查询支持的算子列表','cmii-uav-cloud-live','/config/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2022-03-08 07:20:02'),(2023,'API_57b11d3699ec917da49f417693309a23','查询算子配置标准(可选)','查询算子配置标准','cmii-uav-cloud-live','/config/task/info','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:35'),(2024,'API_aa851340e8516d5394f1a733f1a3fa21','算子上报任务状态接口(可选)','算子上报任务状态接口','cmii-uav-cloud-live','/config/report/status','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2022-03-08 07:20:02'),(2025,'API_7bdd1e253db690eae958770109d4df8b','插件需要运行任务列表','插件需要运行任务列表','cmii-uav-cloud-live','/task/run/list','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:38'),(2026,'API_f9ecea55f0f0ddaa5b5d798451b6c3dd','启动算子任务','启动算子任务','cmii-uav-cloud-live','/task/start','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:37'),(2027,'API_2c7807e4baef26561f779a78aa9b38c4','停止算子任务','停止算子任务','cmii-uav-cloud-live','/task/stop','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:35'),(2028,'API_fae85f9df895d5904e0e9f2bb3a6ca59','查询微服务下运行的任务列表','查询微服务运行的任务列表','cmii-uav-cloud-live','/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:38'),(2029,'API_b61133abe3f5660483655646b25afdd6','查询容量','查询容量','cmii-uav-cloud-live','/task/summary','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2022-03-08 07:20:02'),(2030,'API_72621d9d7f3fd3d8da551e852539d260','查询算子任务状态','查询算子任务状态','cmii-uav-cloud-live','/task/status/get','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:35'),(2031,'API_bfe511b393227902e718f34fc9f913ec','查询视频流状态','查询视频流','cmii-uav-cloud-live','/video/stream','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:38'),(2032,'API_a53504f49cf4641453c2137943dd1539','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','/video/stream/{streamId}','DELETE',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:33'),(2033,'API_1df86d39f377967622f7cbdbb5b9c4d5','获取视频流状态信息','获取视频流状态信息','cmii-uav-cloud-live','/video/stream/getStreamStatus','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:39'),(2034,'API_38b1c5cd2a964df55a41fd64d0aa2301','创建工作流任务','创建工作流任务','cmii-uav-cloud-live','/workflow/task','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:32'),(2035,'API_664a461473515cd35686976d146ef20e','查询工作流状态','查询工作流状态','cmii-uav-cloud-live','/workflow/status','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:36'),(2036,'API_eb30f6388b9304ed0f36191557e3d5ce','查询视频信息','查询视频信息','cmii-uav-cloud-live','/client/video/queryVideoInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:33'),(2037,'API_9e0d5bc96a5945702af710adf71bddba','合并完成通知','合成完成通知','cmii-uav-cloud-live','/client/video/mergeComplete','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:33'),(2038,'API_deeadfe980021944cf2eb95105eca865','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/client/video/applyMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:31'),(2039,'API_3aa94cb231afe3b4dc74cc434ac5b960','通知视频插件合并视频【调试接口】','通知视频插件合并视频【调试接口】','cmii-uav-cloud-live','/client/video/noticeMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:39'),(2040,'API_bb719bbe92cdfec83c452f2b0940ee61','通知任务执行【调试接口】','通知任务执行【调试接口】','cmii-uav-cloud-live','/client/video/startTask','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:32'),(2041,'API_77ce20cbcf31364a347a9ee9ad913eef','查询已启动的算子服务','查询已启动的算子服务','cmii-uav-cloud-live','/aibrain/task/list','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:31'),(2042,'API_3bf7a24c21a7a87e06bcdd0a481c257b','查询受支持的算子','查询受支持的算子','cmii-uav-cloud-live','/aibrain/module','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:33'),(2043,'API_a5354dd8a32cec260b29ef9064103626','检查过期任务','检查过期任务','cmii-uav-cloud-live','/aibrain/task/checkExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:34'),(2044,'API_aefa630cfc259cc50feacfb468747142','创建AI Token','创建AI Token','cmii-uav-cloud-live','/aibrain/createAiToken','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:35'),(2045,'API_f76287aae226e3f42feda5d6347b3393','启动算子服务','启动算子服务','cmii-uav-cloud-live','/aibrain/task','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:32'),(2046,'API_e7cd9c3a32b93dccd073b593ab94a948','停止算子服务','停止算子服务','cmii-uav-cloud-live','/aibrain/task','DELETE',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-10-12 09:42:31'),(2047,'API_4c293733864102529b24ce2e8aca7c5d','查询视频分片文件列表','查询视频分片文件列表','cmii-uav-cloud-live','/client/live/queryPartFiles','POST',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-10-12 09:42:37'),(2048,'API_4ce3713dcd9407e532b36fc2222e86c7','申请视频流','申请视频流','cmii-uav-cloud-live','/client/live/stream/createStream','POST',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-10-12 09:42:31'),(2049,'API_95cc9e770062fe4aa202821d013ff0d2','查询视频流信息','查询视频流信息','cmii-uav-cloud-live','/client/live/stream/getStreamInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-10-12 09:42:33'),(2050,'API_d08c958d9a9b0f498e57ed074618bb69','查询视频流地址','查询视频流地址','cmii-uav-cloud-live','/client/live/stream/getStreamUrl','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-10-12 09:42:38'),(2051,'API_44886cade0b7fa437e5d7955306ff6f9','创建临时视频流','创建临时视频流','cmii-uav-cloud-live','/client/live/stream/createTempStream','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-10-12 09:42:34'),(2052,'API_ddf5b7086132de055d3ef2c1be7d51ba','删除视频流','删除视频流','cmii-uav-cloud-live','/client/live/stream/deleteStream','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-10-12 09:42:31'),(2053,'API_9b7392d77b4fc497ddcc5bd67e6d4c2a','getStreamUrls','','cmii-uav-cloud-live','/streams/urls','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-10-12 09:42:33'),(2054,'API_6ccbcf7e7a2a5cf33f8c5733a0fee930','查询所有状态列表','','cmii-uav-airspace','/zydAirspace/queryAllStat.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:07',1,'2024-10-11 08:57:37'),(2055,'API_d51f76e282f86ed9822b61339cb4372b','查询数据字典信息','','cmii-uav-airspace','/zydAirspace/getZydDicInfo.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:07',1,'2024-10-11 08:57:37'),(2056,'API_3ab5cf3875b930eaf0560be5836b0cc2','手动提交终审','','cmii-uav-airspace','/zydAirspace/manualAudit.do','POST',_binary '\0',_binary '\0','2022-01-18 11:04:07',1,'2024-10-11 08:57:37'),(2057,'API_8dfe23889d8fbd89e87499f24fc9abbc','查询终审流程','0:无终审 1:自动终审 2:手动终审','cmii-uav-airspace','/zydAirspace/getProcedure.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-10-11 08:57:37'),(2058,'API_55fd67bbd0ae55491ce2fa177bad4d3c','下载审批文件','','cmii-uav-airspace','/zydAirspace/getAppliFile.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-10-11 08:57:37'),(2059,'API_67f906e44cbd13682907323811772e85','test','','cmii-uav-airspace','/zydAirspace/test.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2022-08-29 01:35:08'),(2060,'API_971b286ef3ef68d082b683925384449f','查询指定空域告警触发配置信息列表','','cmii-uav-airspace','/efence_airspace/specified_airspace_trigger_info_list','POST',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-10-11 08:57:36'),(2061,'API_fbf92f911baf8d1753947a812a570b64','测试alarm xxl job','','cmii-uav-airspace','/efence_airspace/testAlarm','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-10-11 08:57:36'),(2062,'API_363b42edc3414c559880ce1012fdc984','env','','cmii-uav-airspace','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-10-11 08:57:38'),(2063,'API_b52e188f9fd64b399a15d9d0bfb14ca1','查询无人机总飞行时长','','cmii-uav-airspace','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2023-03-29 08:30:25'),(2064,'API_d54efb4eca43af43ba6e920ff3c7cc79','无人机绑定的摄像头推流信息','','cmii-uav-airspace','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2023-03-29 08:30:26'),(2065,'API_40e278cb7c6a0ae7cde4405ecfb351fa','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-airspace','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2023-03-29 08:30:26'),(2066,'API_c1c0f28b57d142d37d59a5c9a4fc3d02','testUpdatePicWhole','','cmii-uav-mission','/oss/testUpdatePicWhole','GET',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:13'),(2067,'API_13117e81912b2dc8f8905e89e06aaafc','sendEndMissionTest','','cmii-uav-mission','/oss/send_end_mission_mq_test','GET',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:07'),(2068,'API_1638d070ae812b7265701b2e243078ee','外网接口 获取分享的作业信息','','cmii-uav-mission','/report_and_video/report_share/check','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:04'),(2069,'API_551ef231e5b24a402f64512982ff64de','外网接口 获取分享报告关联的作业照片地址','','cmii-uav-mission','/report_and_video/report_share/pic_list','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:03'),(2070,'API_c5a126633544e4d674c2dbc5f957069a','ai识别告警短信发送接口','','cmii-uav-mission','/report_and_video/send_ai_event_sms','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:05'),(2071,'API_aaf366c56c797d45991144feee239494','校验提取码,返回 无人机视频流地址、视频截图地址','','cmii-uav-mission','/report_and_video/video_share/check','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:04'),(2072,'API_880e8b3712afec0d53280b5f3aff7936','获取无人机实时位置,只有经纬度','','cmii-uav-mission','/report_and_video/video_share/get_uav_point','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:01'),(2073,'API_20b39fea52680287923bc94ab52c306e','手动发送作业报告给用户','','cmii-uav-mission','/report_and_video/report_send/{missionId}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-10-10 08:57:05'),(2074,'API_3fc63a11e866d6b59e862b4bd06a7665','开始AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/switchAIDetection','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:07'),(2075,'API_41269627e2aa921b7b6da83e3031c8b4','根据无人机id列表查询进行中的作业id','','cmii-uav-mission','/api/uav/mission/surveillance/query_running_missions_by_uasIds','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:11'),(2076,'API_c97f0c91f98880f6f7cdee1380c74a7c','停止AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/stop_ai_detection/{id}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2022-04-01 02:34:13'),(2077,'API_6179036c7a862b67660ff6392a189e88','车牌信息上报','','cmii-uav-mission','/api/uav/mission/surveillance/ai_detection_info_report','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:05'),(2078,'API_c1a89c22a463df38c940687dc8573f25','提交更新作业审批','','cmii-uav-mission','/api/uav/mission/mission_info/mission_approval','PUT',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:14'),(2079,'API_d634e93c15d4fa0e4b5b5386ac688691','提交更新定时作业审批','','cmii-uav-mission','/api/uav/mission/mission_info/timed_mission_approval','PUT',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:15'),(2080,'API_750703a32158976e07a2b2eb2f9153b8','指定起始点和终点,航线为一条直线,快速创建作业,并且开始作业','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_mission_and_start','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:15'),(2081,'API_e4c9057a8f3a454b478d6cad96dcfc7d','火警出警,创建作业并开始,更新火警信息','','cmii-uav-mission','/api/uav/mission/mission_info/createFastMissionAndStartThenFly','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:10'),(2082,'API_b9d94704f22cfe54f51c2bccba8f334d','结束火情出警','','cmii-uav-mission','/api/uav/mission/mission_info/complete_fire_case','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:08'),(2083,'API_5fbc20d69d6eebbb741a23f02ebe7595','上海火警信息上传接口','','cmii-uav-mission','/api/uav/mission/mission_info/caseinfo/newcase','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:02'),(2084,'API_d8e9f9c00b94ff1ef4776e3de1455031','fireCaseFinished','','cmii-uav-mission','/api/uav/mission/mission_info/caseinfo/casefinished','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:12'),(2085,'API_de4c84ce6569cadeedd369798d065b02','获取AI相关类型的全量图片列表','','cmii-uav-mission','/api/uav/mission/mission_info/ai_picture_list','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:15'),(2086,'API_676ebc422cf5ff71c86a04408cc51af0','根据执行人名称模糊查询执行人ID列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/executor_id_list_with_fuzzy_executor_name','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:14'),(2087,'API_1c631f20ee69d0d0ddd0ada8095a36cb','根据作业名称模糊查询作业ID列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_id_list_with_fuzzy_mission_name','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:14'),(2088,'API_ce03c539c3654249e440995fcebf3a78','queryMissionState','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_state/{id}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:03'),(2089,'API_78c99233f7b9ff746fc61cb8b5393ee1','根据作业名称查询作业模式','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_model/{name}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:06'),(2090,'API_3c5a5315a5e33a381f832f8b4ba5534c','获取整合的作业报告','','cmii-uav-mission','/api/uav/mission/mission_info_list/integrateMissionReport/{id}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:10'),(2091,'API_f7afb74c9e0208561d56b60772e28022','env','','cmii-uav-mission','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-10-10 08:57:12'),(2092,'API_616ccdb602c32b2efc69b42a43365502','查询无人机总飞行时长','','cmii-uav-mission','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:27'),(2093,'API_9e78eeed394af9166159b86370e6cae6','无人机绑定的摄像头推流信息','','cmii-uav-mission','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:27'),(2094,'API_ef2281d702bf4c40618f3a6cc4c8dc35','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-mission','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:27'),(2095,'API_a6fab03e9341b2ed6dbdbb7466c3a657','新增告警事件','','cmii-uav-mission','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2096,'API_3d2c383e5b132bb8823a99448a5416b3','查询告警事件详情','','cmii-uav-mission','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2097,'API_490a01689921a4b9d14ab38c9d00d778','告警触发器','','cmii-uav-mission','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2098,'API_99ab757d89f1b425d960d9231cb9afea','通过关联作业处理告警事件','','cmii-uav-mission','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2099,'API_ef1ff15096513626001c35d05a54a52b','通过告警对象处理告警事件','','cmii-uav-mission','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2100,'API_3dd4831d23c52c08cf03b5acf7eca3c3','查询告警数量统计信息','','cmii-uav-mission','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2101,'API_4713a1d46e491f116a88cf63b4e09759','告警指标统计信息','','cmii-uav-mission','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2102,'API_eb8820b96fe409eaed37e9cc6a85c730','通过告警对象查询告警事件列表','','cmii-uav-mission','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2103,'API_f2897eecb88652bb9cfe9a6735d7f650','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-mission','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-05-18 09:36:08'),(2104,'API_c14b4cec357e5579129020b39c607b1e','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-mission','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-05-18 09:36:08'),(2105,'API_75762540aa74ed7f4c6671794d4fee35','报告预览','','cmii-uav-data-post-process','/product/report/getRep','GET',_binary '\0',_binary '\0','2022-01-18 11:56:50',1,'2024-09-09 09:16:29'),(2106,'API_1b467078b0ea290db660782bc2f25a0c','素材仓库图片选取分页查询','','cmii-uav-data-post-process','/dataset/materialWarehousePicPageList','POST',_binary '\0',_binary '\0','2022-01-18 11:56:50',1,'2024-09-09 09:16:28'),(2107,'API_ef5eeef72755191b37ff061c656c621f','检查图片是否有删除','','cmii-uav-data-post-process','/dataset/checkMwPicIsDelete','POST',_binary '\0',_binary '\0','2022-01-18 11:56:50',1,'2024-09-09 09:16:30'),(2108,'API_e44ea7d6859dbec3f741701331359dec','寄件人列表信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/list','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:17'),(2109,'API_7d167fcdbe3c0ecc261623dbe8cc88a6','添加寄件人','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:15'),(2110,'API_9e7d9335bdb464d96e4e8606ac9a689d','批量删除寄件人','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:18'),(2111,'API_69f4c4f395f33ec463d19dcb012f23ae','修改寄件人','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:18'),(2112,'API_5440b6cd4103b7012934facce6985f36','根据code查看寄件人详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo/{code}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:17'),(2113,'API_99805dd746602947d412186c2925d903','无人机默认执飞设置','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/drone/default','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:21'),(2114,'API_3e1faf53fa87a321b0cb8936dd80db80','无人机列表查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/drone/list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:09'),(2115,'API_d5d5dab654fc37a950a53954075db47d','查询前序航班信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/frontFlight','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:19'),(2116,'API_b8859ed32f8549a24c72cf06d59b8f5a','获取当前航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/getAirLine','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:17'),(2117,'API_667180b8b9ca2313221589218cf41aaf','monitorWsPull','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/ws/pull','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:16'),(2118,'API_1c65abde2c0b3a310f2e60801cb697e9','monitorWsClose','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/ws/close','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:19'),(2119,'API_c50af127d774a44fe8004d24e0bc6fff','ws数据展示接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/ws/show','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:10'),(2120,'API_3346d1f02f2acfbc14ca21943cc99753','订单详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/order/details/{code}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:16'),(2121,'API_c064a25df4fedeeada0580e9ddbe8d8d','分页查询订单列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/order/list','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:19'),(2122,'API_5c3a70267883a9895564e4f9a9dda13c','航线起点和航线终点各自到起点和终点智能柜的距离','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/distance','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:11'),(2123,'API_a22118960d03d334b16780e5a804bbf5','全量航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/all','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-10-15 02:14:18'),(2124,'API_020d5d99bc0401f9635557e3ecc50b8c','导入航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/airLineInfo','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:14'),(2125,'API_ddf5cb81c4652d0b190fcf782d8981a8','删除','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/airLineInfo','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:10'),(2126,'API_ad432cb5a16532a416c04541e7d46b78','航线详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/airLineInfo/{id}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:22'),(2127,'API_35e2944b00644d34ba727bcc3040f58f','分页查询航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/list','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:15'),(2128,'API_6ef75ac68b36f8dd0582bb8a7c0424c8','行业应用平台根据code获取用户Token','行业应用平台根据code获取用户Token','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:20'),(2129,'API_ec0281835d67a75cbcb8a2c3b94b371b','智能柜列表查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/cabinet/list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:17'),(2130,'API_5627bc32a033d19f763ae1d18c99dbe3','更新应急兴趣区域状态','状态:0:影藏,1:显示','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info_status','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:14'),(2131,'API_25853e773c36211eb9d51c8aee17d32d','获取应急兴趣区域信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info/{id}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:11'),(2132,'API_857b9833c7404a7189c6bb31bbace89a','删除应急兴趣区域信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info/{id}','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:10'),(2133,'API_e48b41699ed1401314331cc6cd420cc0','获取应急兴趣区域信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info_list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:14'),(2134,'API_0fbebb6464bd6d55e23e7dc8e6d09db6','添加应急兴趣区域信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:12'),(2135,'API_13f2e565fab9b1278031a8a615863a45','更新应急兴趣区域信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:08'),(2136,'API_c41090d93ad3583693752f52d14c2774','行业应用平台应急管理根据code获取用户Token','行业应用屏山应急管理根据code获取用户Token','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/emergency_token','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:12'),(2137,'API_03980af90e9baec81dcead048cbff9ff','添加应急调度资源信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:13'),(2138,'API_d0d19a5642a758316453304e756557b6','更新应急调度资源信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:14'),(2139,'API_0b86f50bd809af547fbce8b2491d9f75','获取应急调度资源信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info/{id}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:17'),(2140,'API_f5aec35afdcd32f0f452e61feab3c6e5','删除应急调度资源信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info/{id}','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:11'),(2141,'API_d067563fd624765ba3b322b100e6a3df','获取应急调度资源信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info_list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:09'),(2142,'API_392a8437e9d9ce014e0c2a1bfa5ad398','查询资源名称是否唯一','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_name_distinct','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-10-15 02:14:21'),(2143,'API_f461607704830edda20e194487a8afa4','获取游客的无人机设备列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-02-28 02:36:02',1,'2022-11-02 09:13:11'),(2144,'API_7719ef77f51614d28950eab5ec478b36','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-02-28 02:36:02',1,'2022-11-02 09:13:11'),(2145,'API_6e4cdd066aa27a5f22732d7f3e607dec','设置无人机上线','','cmii-uav-industrial-portfolio','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-02-28 02:36:02',1,'2022-11-02 09:13:11'),(2146,'API_ec35e84853c188e3e7fc65fb7d805943','查询载荷类型','','cmii-uav-device','/api/uav/load/queryUavLoadType','GET',_binary '\0',_binary '\0','2022-03-08 06:47:04',1,'2024-10-11 01:36:53'),(2147,'API_f3a796075590fc75cdec6c8ef419602d','查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadByCompanyId','GET',_binary '\0',_binary '\0','2022-03-08 06:47:05',1,'2024-10-11 01:36:44'),(2148,'API_e241a61f309072d11f33960bdb86dab7','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:05',1,'2024-10-11 01:36:52'),(2149,'API_72cb1b5411f248269171c268534ce636','test','','cmii-uav-waypoint','/middlecourt/api/v1/test','POST',_binary '\0',_binary '\0','2022-03-08 06:47:08',1,'2024-09-09 09:16:29'),(2150,'API_e75b0f8cabf2ea935e6beea0169e8790','查询工参','','cmii-uav-waypoint','/middlecourt/api/v1/station/queryByStationId/{stationId}','GET',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2024-09-09 09:16:30'),(2151,'API_75993a401388597c227b71da76f91b83','查询航线列表信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airline_info_list','POST',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2024-09-09 09:16:30'),(2152,'API_33dafc6602e03161e71b1ceea545471f','env','','cmii-uav-waypoint','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2024-09-09 09:16:29'),(2153,'API_1d119069d73b2923c28db3481ef4a3b6','查询无人机总飞行时长','','cmii-uav-waypoint','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2023-05-04 09:35:55'),(2154,'API_e72dbea5e13344bdc0356c4cf706f864','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2023-05-04 09:35:56'),(2155,'API_88742f14ea3f859f23695c7b4e309fb6','health','','cmii-uav-material-warehouse','/cmii/health','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-10-11 08:57:36'),(2156,'API_7650e7c314a5b6d5b89c2b0b4f00d5a4','ping','','cmii-uav-material-warehouse','/cmii/ping','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-10-11 08:57:34'),(2157,'API_5a69ea9e7a73cedcfeb075f7c8a25044','env','','cmii-uav-material-warehouse','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-10-11 08:57:34'),(2158,'API_89037909604fc144fc99e9402c30282f','文件上传进度获取','','cmii-uav-material-warehouse','/mwProjItemTmpPO/api/v1/warehouse/get/progress','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2159,'API_9ffbdc9ed88ada61836fb12ebbe49391','任务监控模糊查询文件标题与所有人','','cmii-uav-material-warehouse','/mwProjItemTmpPO/api/v1/warehouse/getfiletitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2160,'API_0bd8546665e765a9aed4436018dbfa68','任务监控视图查询任务详情列表','','cmii-uav-material-warehouse','/mwProjItemTmpPO/api/v1/warehouse/job/project','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2161,'API_82da9a6654b96f6862c5b099ac5dfb8d','查询项目来源','查询项目来源','cmii-uav-material-warehouse','/mwScrPO/api/v1/warehouse/project/origins','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2162,'API_2babab9fa2904f2ae1bf07361d4b2142','ZipDownloadById','根据文件的id,选择素材仓库中的各种文件并打包下载','cmii-uav-material-warehouse','/api/v1/warehouse/project/getZipFiles','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-10-11 08:57:36'),(2163,'API_448892d400c4834d9c9d26fb27e7911b','提交任务列表','','cmii-uav-material-warehouse','/api/v1/warehouse/project/taskList','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2164,'API_ef3447ade0be463864448d1e1becf29d','文件分片上传','','cmii-uav-material-warehouse','/api/v1/warehouse/project/upload','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2165,'API_e361f1956b68d9bb71a633be28dc454f','文件合并','','cmii-uav-material-warehouse','/api/v1/warehouse/project/merge','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2166,'API_2d8558d263aa5e24103814435d0f6c26','前端默认上传测试','','cmii-uav-material-warehouse','/api/v1/warehouse/project/default/putObjectTest','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2167,'API_dadd8f2c9a3cea9c5b732b2c8388b8b5','通过URL下载文件测试','','cmii-uav-material-warehouse','/api/v1/warehouse/project/getObjectByUrlTest','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2168,'API_d8cfd20f01d79796b0444f636011a747','通过URL下载文件','','cmii-uav-material-warehouse','/api/v1/warehouse/project/getObjectByUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2169,'API_7107dae045fcf12b334af14a7bce6cb8','通过URL批量下载文件','','cmii-uav-material-warehouse','/api/v1/warehouse/project/getObjectBatchByUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2170,'API_aeeb371f249998f26777d390bf305a6c','无认证暴露文件,临时接口','','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFile/{fileId}/{token}','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-10-11 08:57:36'),(2171,'API_e34093cbf113861c1c153bb519544166','通过文件id下载文件','通过文件id下载文件,type:0(原图),1(缩略图),2(临时文件)','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileByToken/{fileId}/{type}/{neverMore}/{kael}/{spectre}','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-06-26 09:47:49'),(2172,'API_e02b254f1eabd50ff7fdef1a2b13b06f','自定义下载文件','自定义下载文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFile','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2173,'API_b5d36e69d070269717d085496bd68685','通过对象路径下载文件,利用token','通过对象路径下载文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileByToken','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2174,'API_09137aee1b566c4457b0270c357c918f','下载三维模型文件,利用token','下载三维模型文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadModelFile/**','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2175,'API_03d2232e5cf78f25e9b84a3034db484c','前端默认上传','','cmii-uav-material-warehouse','/api/v1/warehouse/project/default/putObject','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2176,'API_136c40c26495e38a08044676e027d712','模糊搜索标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/labels','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:17'),(2177,'API_27e9e4a0b5a915b8b36789b1c6cc7c22','每个用户搜索标签展示','默认没有搜索不会展示标签','cmii-uav-material-warehouse','/api/v1/warehouse/project/showLabels','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:17'),(2178,'API_aa19b8243eccc1d811f96150efbaf20c','修改项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/labels','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:17'),(2179,'API_6404906837f054dce7ce0289a2983c05','zip包下载(返回URL)','选择素材仓库中的各种文件,返回url地址','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getZipFilesUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2180,'API_573b1cf7fa66bd93b6c08d0e970e65e0','zip包下载(返回流)【内部接口】','选择素材仓库中的各种文件打包下载','cmii-uav-material-warehouse','/api/v1/warehouse/internal/downloadZipFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2181,'API_47953a37b7544ac36d4d16519e7af580','项目图片zip包下载','将素材仓库中的图片集打包下载','cmii-uav-material-warehouse','/api/v1/warehouse/internal/downloadZipPics','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2182,'API_cf368262d63d1cf32182a6c1853acc38','模糊搜索标题title或者所有人姓名','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/searchProjs','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2183,'API_a9a313c8fbe7b753447df7c88fb957b7','获取项目文件存储路径信息【内部接口】','根据projObjId查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getFilePath','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2184,'API_837855a974a132a8e5baece88cb6a6cb','获取项目文件存储路径信息【内部接口】','根据文件名查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getFilePathByName','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2185,'API_e3202a406776e050631c8e9b8ec97d45','获取项目文件【内部接口】','根据projectId查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/queryFiles','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2186,'API_00a1c2449636ed33815ed9b3e81b256e','获取项目基础信息和文件列表【内部接口】','根据projectId查询项目基础信息和文件列表','cmii-uav-material-warehouse','/api/v1/warehouse/internal/queryProjFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2187,'API_068a6c08f26dca8c7d9ca6384494dc22','文件上传【内部接口】','上传文件,返回文件ID','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadFile','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2188,'API_c4fd8899e4dbc5611656d492692af74a','文件批量上传【内部接口】','批量上传文件,返回文件ID','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2189,'API_675542a7aa38508a650ed4d89eaa7584','获取上传前缀【内部接口】','获取项目文件上传前缀','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getUploadPrefix','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2190,'API_36fb0f223ac2436796bd386dd0c6ae53','上传结束通知【内部接口】','上传结束通知','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadEndNotice','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2191,'API_5e70d83a4e70a34810c23c83bb86b915','文件检索通知【内部接口】','文件检索通知','cmii-uav-material-warehouse','/api/v1/warehouse/internal/fileSearchNotice','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2192,'API_1c66c2dc81b9d69247eb03f50f332292','项目删除【内部接口】','项目删除','cmii-uav-material-warehouse','/api/v1/warehouse/internal/delProject','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2193,'API_ef39409e2b1113e2effce75cfa19034c','文件删除【内部接口】','项目文件删除','cmii-uav-material-warehouse','/api/v1/warehouse/internal/delItem','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2194,'API_6f47379ce6e578d3c0dfecfb0c7158dd','根据文件ID进行文件删除【内部接口】','项目文件删除,通过文件id','cmii-uav-material-warehouse','/api/v1/warehouse/internal/delItemById','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:34'),(2195,'API_5e962c9956553ce878dac303b3926e8e','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2196,'API_f01c475192e2ae498f14659b527e8630','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getProjByLabel','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2197,'API_6d0961a0aea46618be17fcf5309e24c4','获取无认证文件链接,临时接口','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getUnauthorizedUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:36'),(2198,'API_46a799433a94cd36fe9402cd4fe20bc8','删除项目的文件','删除项目的文件,支持批量','cmii-uav-material-warehouse','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2199,'API_f52f288b853f69db8dc6239a93f2e405','获取项目图片信息','根据projectId查询项目图片信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/pictures','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2200,'API_70eb1f3e4da1432a3b672ed4be2ea732','获取项目文件信息','根据projectId查询项目文件信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/files','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2201,'API_423612c2ce1ed69b52c81faeae49307e','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2202,'API_dacfd905db88ce0a66263ac6e4f9c222','多个文件下载','根据projectId和文件ID集合下载项目文件,目前杆塔业务使用','cmii-uav-material-warehouse','/api/v1/warehouse/project/files/download','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2203,'API_84c3f12c8ce5887afbcb071e904cea2c','图集下载','根据projectId下载项目所有图片文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/pictureFiles/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2204,'API_49fbbd03cd388c17768c6d4c3af6841e','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2205,'API_8990f35ecac50359ee706fe4c096dbd4','获取项目图片统计信息','根据projectId统计项目图片信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/pictureSize','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2206,'API_c685042445fcc228338236fe771dea96','删除项目所有图片','根据projectId逻辑删除项目所有图片','cmii-uav-material-warehouse','/api/v1/warehouse/project/del/picture','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2207,'API_e909d222de1212680fd24caa18f54c2b','删除项目图集信息','根据projectId删除项目图集信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/deletePictures','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2208,'API_5ce40d17b09869f986febde2f91dd7b4','获取项目音频信息','根据projectId查询项目音频信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/sounds','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2209,'API_30f87a9ebdebd9d6ff9322d35360a6a6','获取项目视频信息','根据projectId查询项目视频信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/videos','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2210,'API_f80f24f4cf81da89554d5b7e544569fa','分页获取项目视频信息','根据projectId分页查询项目视频信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/pageVideos','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2211,'API_03787324c6bdad4f8b563f925349a6a6','用户详情','根据userId获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/userDetail','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2212,'API_d8aaa67be06d1c6939dd91d559a1875e','根据token获取用户详细信息','根据Token获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/user/getMyDetail','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2213,'API_09c10c8b7aff0919f49e15b4281bcfdd','判断用户','根据userId判断用户','cmii-uav-material-warehouse','/api/v1/warehouse/project/checkUser','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2214,'API_63faf5749395d0ae8abd9a25973fb826','根据code获取用户Token','根据code获取用户Token','cmii-uav-material-warehouse','/api/v1/warehouse/project/user/getToken','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2215,'API_0b1bb8199a1c69d5bc835a742315a774','获取用户信息','获取用户信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/userList','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2216,'API_6b801d24f05cadbb4bb592dd6cd37808','模糊搜索标题title或者所有人姓名','','cmii-uav-material-warehouse','/api/v1/warehouse/project/gettitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-10-11 08:57:35'),(2217,'API_e59dc5197c8ddb30859fd3cfce5abd09','获取项目基本信息','根据projectId查询项目基本信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/missionInfo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2218,'API_6e3d5412f3001022406a35d5bcd3b076','修改项目标题信息','根据projectId修改项目标题信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/title','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2219,'API_59c680107f8ea81c458dc5d03e810ac3','修改项目描述信息','根据projectId修改项目描述信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/description','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2220,'API_cd8378b7e6d5121448c90da4fc127de5','修改项目备注信息','根据projectId修改项目备注信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/comments','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2221,'API_bf275c1d113b39391043979841622aaf','修改项目基本信息','根据projectId修改项目基本信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/updateProject','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2222,'API_fd7a8cee57e4ee96a0440d483f3e1de2','查询所有项目','查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/project/getprojs','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2223,'API_f90e50e74015ac4e59a268da4e690715','删除项目','逻辑删除','cmii-uav-material-warehouse','/api/v1/warehouse/project/delpros','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2224,'API_fbeade2137d4fc191d1d3323cb858702','创建项目','创建项目','cmii-uav-material-warehouse','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2024-10-11 08:57:34'),(2225,'API_0fe269ac8b09036d584f3f71eca8803b','查询项目名是否唯一','true为唯一可用,false为不唯一不可用','cmii-uav-material-warehouse','/api/v1/warehouse/project/query/projTitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2226,'API_8901db5a6d21411de1152cbeacce3f93','素材管理模糊搜索标题title或者所有人姓名','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/getManagerTitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2227,'API_39e6603a36326dbe274106cc023f1a8b','查看我的项目列表(文件类型分组)','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/getMyProjs','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2228,'API_287c7a1bbb9b83ec8360116ac7732c8b','素材管理界面文件下载','根据projectId集合以及文件ID集合打包下载项目文件','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2229,'API_56059020a7c2b86500fff2145ab38f4c','素材管理分享项目','根据projectId集合分享给新的用户','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/share','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2230,'API_5fb1ec5203cb8c976f1bd5dc1e8c3941','删除项目','项目逻辑删除','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/deleteProj','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2231,'API_c40bd9fa3a3aeddf48186da9df5b211c','来自分享的项目','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/queryShare','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2232,'API_457610e2ad2141030e1293e8a5b6ad8e','更改项目所有者','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/changeOwner','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2233,'API_af7f877332e2cac703f9dc5b3329c0e9','删除项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/delete/labels','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2234,'API_f275e108a39f441175821b5aa45cf5c3','创建项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/create/labels','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2235,'API_7afda1dccbe77df8774cca90df541eb8','接口扫描','','cmii-uav-material-warehouse','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2024-10-11 08:57:34'),(2236,'API_a4f739237a5e24b6548c7c981a4d6604','securityConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-11 06:17:41'),(2237,'API_8b86aae50951070824741f835e9bc696','swaggerResources','','cmii-uav-material-warehouse','/swagger-resources','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-11 06:17:41'),(2238,'API_c4520b4a89be9400b83210b44c906047','uiConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-11 06:17:41'),(2239,'API_7a42acf545d38e5fa61375f76c7b5423','error','','cmii-uav-material-warehouse','/error','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2024-10-11 08:57:36'),(2240,'API_c091f0d515551576885c0d95fdeff98a','设置虚拟摇杆参数','','cmii-uav-surveillance','/virtualStick/virtualStickParam','POST',_binary '\0',_binary '\0','2022-03-08 06:47:17',1,'2024-09-23 20:58:58'),(2241,'API_d18f909934751a019e385a3c475fc119','无人机绑定的摄像头推流信息','','cmii-uav-surveillance','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-08 06:47:18',1,'2023-03-29 09:05:05'),(2242,'API_8b1217a9f4182201bd62a73fee7f31b5','设置无人机上线','','cmii-uav-surveillance','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-08 06:47:18',1,'2023-03-29 09:05:05'),(2243,'API_26fd7dd1db84e01b3461fb03bd395ef6','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:19',1,'2023-03-29 09:05:05'),(2244,'API_11b4912a89d7c79fb3185563dcc0ed5b','查询无人机总飞行时长','','cmii-uav-surveillance','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-08 06:47:19',1,'2023-03-29 09:05:05'),(2245,'API_51932f83909c3867dc73aa55e1c8a9f9','testFlyHistory','','cmii-uav-mqtthandler','/testFlyHistory','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:46'),(2246,'API_206c55ea49d2a8824dc6ac80bd3717b8','上海火警信息上传接口','','cmii-uav-mqtthandler','/exterior_data/caseinfo/newcase','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:47'),(2247,'API_7461a99c25a89dd624a21886ab751b58','fireCaseFinished','','cmii-uav-mqtthandler','/exterior_data/caseinfo/casefinished','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:47'),(2248,'API_c034211a7dca726f3623c24202e4dbf3','喊话器及显示模式','','cmii-uav-mqtthandler','/gimbal/gimbal/megaphoneAndDisplayMode','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:46'),(2249,'API_8cc54c5d3cacd6dfba13b6b9731babb2','起飞时发送航线到无人机','','cmii-uav-mqtthandler','/mqtt/send_line_and_take_off','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:45'),(2250,'API_e2ef40dc53c49b4cd29cf7ae8b60786f','testWaypoint2','','cmii-uav-mqtthandler','/test_waypoint_2','GET',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2022-03-15 07:28:12'),(2251,'API_c830fb45b303e8b4b5eba63f4e46a423','发送控制命令到复亚机库,版本3和4都是这个接口','','cmii-uav-mqtthandler','/mqtt/hangar/sendCommandVer4','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:48'),(2252,'API_d293d280bf56ee918b906e79fb6212fb','setRedisKey','','cmii-uav-mqtthandler','/mqtt/hangar/modifyRedis','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2022-09-28 01:55:54'),(2253,'API_26bdf7dcf7672180c3f83b1b94480c35','testDeviceInfoGetV4','','cmii-uav-mqtthandler','/mqtt/hangar/testDeviceInfoGetV4','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:47'),(2254,'API_b4d0582d0912da3d832e432c81e60f1d','获取/释放无人机控制权限','','cmii-uav-mqtthandler','/api/uav/VirtualStick/changeControlMode','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-09-25 08:48:47'),(2255,'API_e2e331ecb2775da30c28edb221b58575','起飞','','cmii-uav-mqtthandler','/api/uav/VirtualStick/flyUp','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-09-25 08:48:48'),(2256,'API_2df63fa70afd85918e54a83e4c369090','虚拟遥感','','cmii-uav-mqtthandler','/api/uav/VirtualStick/virtualStick','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-09-25 08:48:47'),(2257,'API_daeffb8aa73e0f0c0318e4bff605d261','强制降落','','cmii-uav-mqtthandler','/api/uav/VirtualStick/forceLand','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-09-25 08:48:47'),(2258,'API_61e0d8a50b218f13435057b07cd61d19','health','','cmii-uav-mqtthandler','/cmii/health','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-09-25 08:48:47'),(2259,'API_73c053d8aa0da09361126d73dba4c6b2','ping','','cmii-uav-mqtthandler','/cmii/ping','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-09-25 08:48:45'),(2260,'API_f5a9db81e1b376e53b045ed2e5059069','env','','cmii-uav-mqtthandler','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-09-25 08:48:45'),(2261,'API_2b13b5fd2e96615cc43932525b23a6c0','根据设备号获取公司信息','','cmii-uav-mqtthandler','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2262,'API_d92ab8445892c3155419ecefcb2982a1','查询无人机总飞行时长','','cmii-uav-mqtthandler','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2263,'API_d841ca5521b08588ef99d354d2a10a53','无人机绑定的摄像头信息查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:21'),(2264,'API_5ad0f6f309b56df650f476bd25890c57','无人机列表绑定的载荷列表详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2265,'API_9131054766c4b5efa9cde40e3bdf1f97','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2266,'API_caa0cb2f279f6f4f95e44c372b92ec99','无人机绑定的摄像头推流信息','','cmii-uav-mqtthandler','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2267,'API_1c8dac64f9817ccca1f4f7c65bb22a33','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2268,'API_bbc45550d378ab047e05f04f48fb70e9','通过告警对象处理告警事件','','cmii-uav-mqtthandler','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2269,'API_87877a9912e6b677755ad10c15eac2dd','新增告警事件','','cmii-uav-mqtthandler','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2270,'API_c411f6618274b55c54c688a0842cbcec','查询告警事件详情','','cmii-uav-mqtthandler','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2271,'API_84543f69a48bf10f09c20ab1adc42ba0','告警触发器','','cmii-uav-mqtthandler','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2272,'API_8d4af1773ae8d8891bccdcdd36b27952','通过关联作业处理告警事件','','cmii-uav-mqtthandler','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2273,'API_a8c8a1a0e56d21aa9fc36924cc7c6f66','查询告警数量统计信息','','cmii-uav-mqtthandler','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2274,'API_424ccb38975915e6a5b0c8655da721c3','告警指标统计信息','','cmii-uav-mqtthandler','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2275,'API_066c14bac507ff6e3846fcc800d76f3d','通过告警对象查询告警事件列表','','cmii-uav-mqtthandler','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2276,'API_3b87b350b693887af09016e27cbdb1e3','验证区域信息是否正确[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/checkArea','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-09-09 09:15:07'),(2277,'API_d4f2e185163e0755673448c0ee376ea6','按条件分页查询载荷型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelPage','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:06'),(2278,'API_71b99303d880eb9226fbca6dc38cdcd7','从载荷类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/load/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:05'),(2279,'API_c422092cc68cc976c1ffe774ef338788','从载荷类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/load/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:04'),(2280,'API_5c729fae887038eb3b4814dcb549c305','根据类型查询载荷类型详情','','cmii-admin-data','/api/admin/model/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:08'),(2281,'API_4a071fe963d52832096c7867ca6409d6','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/load/checkNotFrozen','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:05'),(2282,'API_e9d4c1b8190381c4f9ad256471c4a981','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:07'),(2283,'API_e4a11a7c3bf95fbfe1a8d22a16f328e0','载荷载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:04'),(2284,'API_59d2893cc2ab37fba1b6cbde2d2f1bdc','新增载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:07'),(2285,'API_cb684243191e595a7401409f0db91594','修改载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:06'),(2286,'API_254694c31ab18704e4f225c7aeebab06','删除载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-09-09 09:15:04'),(2287,'API_90706ff810c24e4966aed2e0b8863be6','通过告警对象列表批量处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:11',1,'2022-03-11 06:17:19'),(2288,'API_f0c1ce7c546a0e0d48037eb8081c0ed5','upload','','cmii-uav-alarm','/api/uav/common/event/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-11 05:48:27'),(2289,'API_389ebdff8f8c553a5306d9c71122b7f2','excel导入指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/importExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-11 05:48:25'),(2290,'API_b9cd4732193d41fb9b1aebc8db6eda5b','excel导入所以sheet','','cmii-uav-alarm','/api/uav/common/event/importAllExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-11 05:48:25'),(2291,'API_13ff192cb0e53b481a648a39708a6adc','导出到指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/exportExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-11 05:48:27'),(2292,'API_cb979d42027053024033ae28a8638c56','获取当前无人机的视频分享链接, 视频绑定无人机id,作业id随便传','','cmii-uav-mission','/report_and_video/get_video_share_by_missionId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:13',1,'2024-10-10 08:57:13'),(2293,'API_e2a3793d897e737f54aa47072a37b8c4','获取AI视频流地址','','cmii-uav-mission','/api/uav/mission/surveillance/AIPullAddr/{id}/{type}','GET',_binary '\0',_binary '\0','2022-03-11 03:07:14',1,'2024-10-10 08:57:01'),(2294,'API_17478984fcf4d4d10c1c9d5a1cc75aff','app开始一个手动作业,成功返回id,如果有作业就返回失败','','cmii-uav-mission','/api/uav/mission/surveillance/app_start_manual_mission','POST',_binary '\0',_binary '\0','2022-03-11 03:07:14',1,'2024-10-10 08:57:06'),(2295,'API_c39167f384d063de3f450f129cb9c6a3','app 查询当前无人机是否有作业,返回name,id,权限','','cmii-uav-mission','/api/uav/mission/surveillance/app_query_mission_right','POST',_binary '\0',_binary '\0','2022-03-11 03:07:14',1,'2024-10-10 08:57:00'),(2296,'API_479eeb9a62555408fabb7175098bff54','获取游客的无人机设备列表','','cmii-uav-mission','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2297,'API_096cba61a53f04304f70e4923a313a83','按无人机编码查询无人机是否是真机','','cmii-uav-mission','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2298,'API_65dffa654e1e06c5ee771863ea741e61','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-mission','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2299,'API_5440f0781b4d4c66ee15bf501e67a610','载荷绑定的无人机编码查询','','cmii-uav-mission','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:28'),(2300,'API_63a78590a139271297f570c3fc2a2bde','设置无人机上线','','cmii-uav-mission','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2301,'API_b7db75f5a7d2b9a7e9b7a3b29d89d73f','findTrackByMissionId','','cmii-uav-mission','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2302,'API_15d321485962ec306fe9b77604387eb0','uploadDefaultFlight','','cmii-uav-mission','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2303,'API_5372a12b37e647554f7b0b316ea7a99d','uploadDefaultFlight','','cmii-uav-mission','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2304,'API_df7ec5e35364c805517767d2e55df04b','findTrackByOrderId','','cmii-uav-mission','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2305,'API_8bc6ceb99efb15818ca6b2f805155893','uploadFlight','','cmii-uav-mission','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2306,'API_05d3780de84687ce4d6a14b7d40430e3','uploadFlight','','cmii-uav-mission','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2307,'API_a26dc33bf051b14a454f49fa7f3fedaf','给飞行监视提供航线飞行的航线信息','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/waypoints','GET',_binary '\0',_binary '\0','2022-03-11 03:07:20',1,'2024-09-09 09:16:30'),(2308,'API_4cfa4078c9c18dd0eea1765a09d3bb86','分页条件筛选医疗物流航线列表','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list_for_medical_logistics','POST',_binary '\0',_binary '\0','2022-03-11 03:07:20',1,'2024-09-09 09:16:28'),(2309,'API_b3721af25862a6334ea1b04efeeba2cc','载荷绑定的无人机编码查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:21',1,'2023-05-04 09:35:55'),(2310,'API_f07a18d2a347d57f5696da21f489ca14','无人机绑定的摄像头推流信息','','cmii-uav-waypoint','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:21',1,'2023-05-04 09:35:56'),(2311,'API_6ce8d8310c0fb15639ef97c2d05b9120','设置无人机上线','','cmii-uav-waypoint','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:56'),(2312,'API_73f12d9f351b1a400b1ca13c090db5da','获取游客的无人机设备列表','','cmii-uav-waypoint','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:56'),(2313,'API_076e36966a05e6c02065fed1a6e9bb67','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-waypoint','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:55'),(2314,'API_89fcb7e696e423ff278ede491de2c295','按无人机编码查询无人机是否是真机','','cmii-uav-waypoint','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:56'),(2315,'API_67e1fcd3754a9a7fe40da4e3ad678bab','载荷绑定的无人机编码查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:26',1,'2022-11-02 09:13:11'),(2316,'API_c71018b7f387827e955fc38fb8505574','按无人机编码查询无人机是否是真机','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:26',1,'2022-11-02 09:13:11'),(2317,'API_1d956273d8b1058569766a81c37db142','uploadDefaultFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2318,'API_4282e298101f8ee7112dbb49501a48e4','uploadDefaultFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2319,'API_f320c8f821ed02551e3d1a01c2fe2680','uploadFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2320,'API_0921bd6813729306003e0952310143ad','uploadFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2321,'API_4dabab2f7919b6d5fbd24d5e2e407a69','findTrackByOrderId','','cmii-uav-industrial-portfolio','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2322,'API_cb233bb093cea7b2dcc3a2c86cdf7514','findTrackByMissionId','','cmii-uav-industrial-portfolio','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2323,'API_b0e6af44f389fbb5d5bc6f0b10c54646','是否存储配额告警','','cmii-uav-user','/personal/quota/hasWarn','POST',_binary '\0',_binary '\0','2022-03-11 03:07:29',1,'2024-10-11 15:37:14'),(2324,'API_68c3e0f14d1c550c78f80c6ca1db9f56','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryUav','POST',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2024-10-11 01:36:54'),(2325,'API_6702c13bc2c962e6a1d294f5b4dd96a1','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2022-09-29 06:35:44'),(2326,'API_6407aa74d4efa63e3035e136c6b46103','获取游客的无人机设备列表','','cmii-uav-device','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2024-10-11 01:36:47'),(2327,'API_1b82fd20fc26e41f5631420a8d472dbd','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2024-10-11 01:36:53'),(2328,'API_37ed874b03a209ba9a2e3ba730f524bd','查询无人机总飞行时长','','cmii-uav-device','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-10-11 01:36:49'),(2329,'API_621b76dbfc0820c65c659ac94b91d6bb','设置无人机上线','','cmii-uav-device','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-10-11 01:36:42'),(2330,'API_ab3e284739e564c16d2c808d62484669','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/plane/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-10-11 01:36:49'),(2331,'API_ec24af9abdf24b7570567ee12819e635','无人机绑定的摄像头推流信息','','cmii-uav-device','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-10-11 01:36:46'),(2332,'API_0bbb96c440960337f67ff1c7797a7117','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-10-11 01:36:44'),(2333,'API_b45434946f5350bd8184415958a3fedc','更新无人机绑定载荷类型','','cmii-uav-device','/api/uav/plane/updateLoadTypeByUavCode','POST',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-10-11 01:36:49'),(2334,'API_fa3a657597b9619499202054581160aa','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/load/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-10-11 01:36:43'),(2335,'API_5c3eb73c8182fd8e34cc894951232f6b','基础版根据code获取用户Token','基础版根据code获取用户Token','cmii-uav-device','/api/uav/permission/user/getUavFreeTokenByCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:33',1,'2024-10-11 01:36:46'),(2336,'API_dd49c05d52607d775525836a8b3b15bf','模糊查詢游客列表','','cmii-uav-device','/api/uav/devAllocate/queryVisitorList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:33',1,'2024-10-11 01:36:47'),(2337,'API_d03e108b238192592ee649a23a974313','模糊查询公司所属的设备号列表','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:33',1,'2024-10-11 01:36:53'),(2338,'API_420aecbfd5220c92db2fd13843c80829','幻飞APP上传环保数据接口','','cmii-uav-mqtthandler','/equipment/productRealtimeData.do','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2339,'API_4d62f8d0001693fe493aeb22ea9248c8','天途喷水控制','','cmii-uav-mqtthandler','/payload/spray/sprayCommand','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2340,'API_88490bd67fafd4dab1bddae53e0d7331','云台显示模式修改','','cmii-uav-mqtthandler','/payload/camera/display_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2341,'API_2b7b21a5be43e1435e0f3629dd2e8e95','喊话器音量设置','','cmii-uav-mqtthandler','/payload/megaphone/configure_volume','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:48'),(2342,'API_347c9cf1b6e515cb3b1290fdc368cd03','megaphoneStartPlay','','cmii-uav-mqtthandler','/payload/megaphone/play','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:48'),(2343,'API_915449453b6496c0646bdaf33b1ad65c','megaphoneStopPlay','','cmii-uav-mqtthandler','/payload/megaphone/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:45'),(2344,'API_8654fb265de0a4b254178a0cb3516ea7','镜头缩放','','cmii-uav-mqtthandler','/payload/camera/zoom','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:47'),(2345,'API_9f2457ee74bcca98d2341ebd198d6eef','摄像机拍照','','cmii-uav-mqtthandler','/payload/camera/take_picture','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:44'),(2346,'API_79cc246d1fcd8bdd1742f7140f986b9a','摄像机开始录像','','cmii-uav-mqtthandler','/payload/camera/start_record','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2347,'API_aa36cfdcc6c4f74665fab5048cbed672','摄像机停止录像','','cmii-uav-mqtthandler','/payload/camera/stop_record','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:47'),(2348,'API_28b52eb8efc81c5a482e620001355593','摄像头自动对焦','','cmii-uav-mqtthandler','/payload/camera/auto_focus','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2349,'API_fd16944c0fe9840c7c14b9074b6b6263','相机模式切换','','cmii-uav-mqtthandler','/payload/camera/mode_change','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:45'),(2350,'API_ecef3b82e863478cee4afa2d1b27f67f','云台控制','','cmii-uav-mqtthandler','/payload/gimbal/control','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:45'),(2351,'API_f0031f483de68deef62d060e2e07c699','航线飞行','','cmii-uav-mqtthandler','/uav_fly_command/waypoint','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2022-09-28 01:55:53'),(2352,'API_488015e1d886ac727bc65c833f9e7993','航线飞行 新','','cmii-uav-mqtthandler','/uav_fly_command/waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:45'),(2353,'API_59738eceaa33e13fce603df22aa70204','暂停','','cmii-uav-mqtthandler','/uav_fly_command/pause','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:47'),(2354,'API_d43b7c9a5fe3ae76764aea0dcbad5519','继续','','cmii-uav-mqtthandler','/uav_fly_command/continue','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2355,'API_b93e72bc4344e710eb9c53b512420f91','停止','','cmii-uav-mqtthandler','/uav_fly_command/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:45'),(2356,'API_ad370db9b1858133e32f80282d1472be','返航任务指令','','cmii-uav-mqtthandler','/uav_fly_command/go_home','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2357,'API_774ed5cca4d40ca7a00a1eaac13da589','降落','','cmii-uav-mqtthandler','/uav_fly_command/landing','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:45'),(2358,'API_1167753c003e57c31440f53e16173b82','强制降落','','cmii-uav-mqtthandler','/uav_fly_command/force_landing','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:48'),(2359,'API_d0c38507826c0374dbb3091b293622bf','升起','','cmii-uav-mqtthandler','/uav_fly_command/fly_up','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:45'),(2360,'API_299fef7e7300274c232f6aa286a4948b','获取摇杆控制权','','cmii-uav-mqtthandler','/uav_fly_command/get_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:47'),(2361,'API_46aba38a456ff4b843ffe9d2899151dd','释放摇杆控制权','','cmii-uav-mqtthandler','/uav_fly_command/release_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-09-25 08:48:46'),(2362,'API_81f1e31a0ddbc9da3e3923592105b050','无人机下线测试接口','','cmii-uav-mqtthandler','/uav_fly_command/offline_test','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2023-05-04 09:36:20'),(2363,'API_1fe9e22534340f4d928a45534c4f7a9f','获取游客的无人机设备列表','','cmii-uav-mqtthandler','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:22'),(2364,'API_c23209273529b0356186c7d07fe3ebf2','按无人机编码查询无人机是否是真机','','cmii-uav-mqtthandler','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:22'),(2365,'API_f5b7a4bc3c24fe26becd4921e7bd912e','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-mqtthandler','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:21'),(2366,'API_f21ac242e5d0aeb7e3af7e7a54f5b358','载荷绑定的无人机编码查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:21'),(2367,'API_98f71336da749dc8e70bb9b7c10616d2','设置无人机上线','','cmii-uav-mqtthandler','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:21'),(2368,'API_9c9198875a79eb8daaba15d187c48cce','设置无人机上线','','cmii-uav-airspace','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:26'),(2369,'API_166871d623e61f7fa730a7adf32f4f34','获取游客的无人机设备列表','','cmii-uav-airspace','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:26'),(2370,'API_d4a175c60b633ba7da0f1762ea21fb64','按无人机编码查询无人机是否是真机','','cmii-uav-airspace','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:26'),(2371,'API_a9ecc956a441a42f58f980eced2ce0cb','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-airspace','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:25'),(2372,'API_c653269f53bed060cf984d392356e346','载荷绑定的无人机编码查询','','cmii-uav-airspace','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:25'),(2373,'API_7f5facf301bf71d881b9d13d01c6fb73','查询项目来源','查询项目来源','cmii-uav-material-warehouse','/api/v1/warehouse/scr/origins','GET',_binary '\0',_binary '\0','2022-03-11 03:07:47',1,'2024-10-11 08:57:36'),(2374,'API_8b0a7770a3111ca7b2cf376724926750','增加项目来源','增加项目来源','cmii-uav-material-warehouse','/api/v1/warehouse/scr/add','GET',_binary '\0',_binary '\0','2022-03-11 03:07:47',1,'2024-10-11 08:57:36'),(2375,'API_298c508c26f9c1841f35450714de7311','删除项目来源','删除项目来源','cmii-uav-material-warehouse','/api/v1/warehouse/scr/delete','GET',_binary '\0',_binary '\0','2022-03-11 03:07:47',1,'2024-10-11 08:57:34'),(2376,'API_87d052311f2c9f92431398586e392932','任务监控视图查询任务详情列表','','cmii-uav-material-warehouse','/api/v1/warehouse/progress/listItemProgress','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2377,'API_496d6dc53c2a4c67492303d59b3061a1','任务监控模糊查询文件标题与所有人','','cmii-uav-material-warehouse','/api/v1/warehouse/progress/getfiletitle','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2378,'API_628b441ac664847d0ad011d092691c99','文件上传进度获取','','cmii-uav-material-warehouse','/api/v1/warehouse/progress/getItemProgress','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:34'),(2379,'API_88f7ce90b3e7e356a9842fae5e544f70','模糊搜索标签名','','cmii-uav-material-warehouse','/api/v1/warehouse/label/listLabelName','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2380,'API_555043e21c329ccf362d556442907977','创建项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/label/add','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2381,'API_ad55341e05fcfc2d2e333f767aed9d94','编辑项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/label/edit','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2382,'API_a2706c34b8193f27f2a46106ab8e1afb','删除项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/label/delete','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:34'),(2383,'API_6632b356010631c5ad9b9bf5ac06b7f0','用户搜索标签展示','默认没有搜索不会展示标签','cmii-uav-material-warehouse','/api/v1/warehouse/label/showLabels','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:34'),(2384,'API_37b523e2780e2022dd7ac6e77dc48ebf','文件上传额度校验【内部接口】','上传文件,返回文件ID','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadFileCheck','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2385,'API_fd59951281f9f2771e48ce1e3fde3507','getUsedQuotaNumByType','','cmii-uav-material-warehouse','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2386,'API_dc10cca3492678971903d1164788f9f1','多个文件下载','根据projectId和文件ID集合下载项目文件,杆塔业务使用','cmii-uav-material-warehouse','/api/v1/warehouse/item/files/download','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2387,'API_59cbaf983169df78bca6424f07fc3c29','获取项目文件信息列表','获取项目文件信息列表','cmii-uav-material-warehouse','/api/v1/warehouse/item/queryFiles','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:34'),(2388,'API_d760f2c2175ccfebcd385a416a9a78bc','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-material-warehouse','/api/v1/warehouse/item/public/file/download','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2389,'API_07119308ac64386fa36c2d8134b99a5b','图集下载','根据projectId下载项目所有图片文件','cmii-uav-material-warehouse','/api/v1/warehouse/item/public/pictureFiles/download','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:36'),(2390,'API_5675c8379d092ea939ef6172df46c737','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-material-warehouse','/api/v1/warehouse/item/public/filesAll/download','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2391,'API_c959d63acff7d7b69116e9dd884eb792','获取项目图片统计信息','根据projectId统计项目图片信息','cmii-uav-material-warehouse','/api/v1/warehouse/item/pictureSize','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:34'),(2392,'API_d11a24c3a081d9b8fe5bed80bd912618','用户详情','根据userId获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/user/userDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:36'),(2393,'API_3e717845c131424cb0d48539d4638361','根据token获取用户详细信息','根据Token获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/user/getMyDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:36'),(2394,'API_c0cbbfc7c26ea34aac1a063366c47d2e','根据code获取用户Token','根据code获取用户Token','cmii-uav-material-warehouse','/api/v1/warehouse/user/getToken','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2395,'API_4c687d4873f7c33b4adf62e460367900','获取项目基本信息','根据projectId查询项目基本信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/getProjectDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:37'),(2396,'API_91c77ad9a9f7a39e0e2ed501b53514a1','查询所有项目','查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/project/listProject','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:35'),(2397,'API_753522fef5e4921205850547b342ad53','创建项目标签,待考虑删除','','cmii-uav-material-warehouse','/api/v1/warehouse/projLabel/add','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:36'),(2398,'API_cb0bcf15bb03fa03495a3b4991f44454','删除项目标签,待考虑删除','','cmii-uav-material-warehouse','/api/v1/warehouse/projLabel/delete','DELETE',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-11 08:57:34'),(2399,'API_4e26137db92324caad958954feb17d65','停止流程','停止流程','cmii-uav-cloud-live','/workflow/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-12 09:42:35'),(2400,'API_9cc4b7cdd1f1653b79b73c7b31080c26','保持流程心跳','保持流程心跳','cmii-uav-cloud-live','/workflow/keepAlive','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-10-12 09:42:37'),(2401,'API_6416958a39d25fee2b1f75951e86a9ea','完结超时流程','完结超时流程','cmii-uav-cloud-live','/workflow/cleanExpireFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:34'),(2402,'API_72ee70869742bb1f700fa9e59f61a48e','查询插件输入输出流信息','查询插件输入输出流信息','cmii-uav-cloud-live','/workflow/queryStreamInfo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:31'),(2403,'API_6afe7df38923488b2b390d9093cfd30b','更新流程','更新流程','cmii-uav-cloud-live','/workflow/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:34'),(2404,'API_26133f68affa7c39f380555c6de8fcb2','通过启动参数停止流程','通过多参数停止流程','cmii-uav-cloud-live','/workflow/stopFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:37'),(2405,'API_17d4e0fbfc4d4f45eed4a9644711e08c','释放作业关联视频分片','释放作业关联视频分片','cmii-uav-cloud-live','/client/live/stream/releaseVideo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:38'),(2406,'API_3e601d5862ffe674019e072d71533b17','执行删除视频任务','执行删除视频任务','cmii-uav-cloud-live','/client/live/stream/executeDeleteVideoTask','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:34'),(2407,'API_38b45d1b9390779f52cef09b5c3ad313','更新算子任务','更新算子任务','cmii-uav-cloud-live','/task/update','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:38'),(2408,'API_8edd6ae82ca26b01230a32aecfa1b6c4','服务实例注册(必选)','服务实例注册','cmii-uav-cloud-live','/config/service/registerInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:33'),(2409,'API_83a60e43cda23ce35d88b317a92b27ab','服务实例注销(可选,3分钟无新注册心跳自动注销)','服务实例注销','cmii-uav-cloud-live','/config/service/deregisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:35'),(2410,'API_e028a848bd2749a1fe46565255ffa9b1','查看注册服务实例信息','查看注册服务实例信息','cmii-uav-cloud-live','/config/service/getRegisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:38'),(2411,'API_b94a39e945b2d15a5a94ff0e4b2ba5d1','是否还有存储配额(true.有, false. 无','','cmii-uav-cloud-live','/personal/quota/canSave','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:34'),(2412,'API_962e612d2f3b78893a9d1f02f674eb3c','添加流程','添加流程','cmii-uav-cloud-live','/workflow/config/addFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:31'),(2413,'API_3648534a1cf81e18d7b142149b7841fc','更新流程','更新流程','cmii-uav-cloud-live','/workflow/config/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-10-12 09:42:36'),(2414,'API_85c7a757a263542774515c3b3fe4602e','锁定流程','锁定流程','cmii-uav-cloud-live','/workflow/config/lockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2024-10-12 09:42:33'),(2415,'API_14d45933e60b70fad979158b8876d1ec','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unLockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2022-08-29 01:35:34'),(2416,'API_d0177bec91de61c3940949dcefe74080','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/reMoveFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2022-08-29 01:35:34'),(2417,'API_16c3eec5c21c4d0e3c48b60063a032d4','查询流程定义列表','查询流程定义列表','cmii-uav-cloud-live','/workflow/config/queryFlowList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2024-10-12 09:42:37'),(2418,'API_3691fbe7f7e8d3094727c3fc74a1575c','重新加载流程','重新加载流程','cmii-uav-cloud-live','/workflow/config/reloadFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2024-10-12 09:42:32'),(2419,'API_bcee08871e4d09ecb0fd642af3a647d5','起飞','请使用 uav_command/fly_up','cmii-uav-surveillance','/surveillance_app/flyUp','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2022-10-12 06:22:43'),(2420,'API_4547709301e22dd16653cb2bfef1c5c2','强制降落','请使用 uav_command/force_landing','cmii-uav-surveillance','/surveillance_app/forceLand','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2022-10-12 06:22:43'),(2421,'API_b64aa6433dad43f55512ec62318bcc9a','获取无人机关联的载荷的视频流地址','','cmii-uav-surveillance','/surveillance_app/get_uav_video_url_list','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2024-09-23 20:58:57'),(2422,'API_bb49852bac818143e984e03074313d0a','获取/释放无人机虚拟摇杆控制权限','请使用get_stick_control / release_stick_control','cmii-uav-surveillance','/surveillance_app/change_virtual_stick_control_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2022-10-12 06:22:43'),(2423,'API_dafc10724ced42773ef8f403918a06bf','给app提供的数据内容','','cmii-uav-surveillance','/dictionary/trackDataView_Content','GET',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2022-05-06 02:52:14'),(2424,'API_ae18da670d1151815421e1ac56efa78c','给app提供的无人机历史轨迹数据内容','','cmii-uav-surveillance','/dictionary/track_Content','GET',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2022-05-06 02:52:14'),(2425,'API_885382ca5844667a532e2b5cb862f988','增加大气监测测试数据','','cmii-uav-surveillance','/surveillance/addEnvTestData','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:59'),(2426,'API_443c68ba214da9a849afbbd37a3cc40a','开启模拟机','','cmii-uav-surveillance','/surveillance/simulator/start','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:58'),(2427,'API_61966521dbfa0f94b520dfdf7d212c34','关闭模拟机','','cmii-uav-surveillance','/surveillance/simulator/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:58'),(2428,'API_af1ac00056c0ec5f6976a27e853ffcb2','获取模拟机的最新位置信息','','cmii-uav-surveillance','/surveillance/simulator/get_location','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:59'),(2429,'API_49e2085580e8c537ac1f3378e04687f2','无人机航线飞行,提供航线id','','cmii-uav-surveillance','/surveillance/uav_command/waypoint_fly_with_lineId','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:59:01'),(2430,'API_899c337fe6cebd61e87ee0b09528e02b','无人机航线飞行,直接使用航线数据,复亚机库不适用','','cmii-uav-surveillance','/surveillance/uav_command/waypoint_fly_with_Waypoints','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:58'),(2431,'API_53effa942c695976d7390a99b60e9be7','暂停','','cmii-uav-surveillance','/surveillance/uav_command/pause','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:59'),(2432,'API_4408b380c741de9ca146386344a6c49e','继续','','cmii-uav-surveillance','/surveillance/uav_command/continue','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:57'),(2433,'API_b8b20ebeb691ddceac7ab31f4791858e','停止','','cmii-uav-surveillance','/surveillance/uav_command/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:59'),(2434,'API_c7cf8eebf5453170f50b2ba30c29b871','降落','','cmii-uav-surveillance','/surveillance/uav_command/landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:58'),(2435,'API_9f0a3baa028c4c7d825cd1194f43b3cd','强制降落','','cmii-uav-surveillance','/surveillance/uav_command/force_landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:59:00'),(2436,'API_fe9abb217850cd35ba518f3f5d35ab3e','升起','','cmii-uav-surveillance','/surveillance/uav_command/fly_up','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:56'),(2437,'API_07150800502f2405a3eaa9f9d9785424','返航','','cmii-uav-surveillance','/surveillance/uav_command/go_home','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:57'),(2438,'API_c4962efa1df1597386caa85abc472fd3','获取虚拟摇杆权限','','cmii-uav-surveillance','/surveillance/uav_command/get_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-09-23 20:58:58'),(2439,'API_90a5ec69c16b8d24b6c2cd6caf0028fa','释放摇杆控制权','','cmii-uav-surveillance','/surveillance/uav_command/release_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:58'),(2440,'API_472f3d8cb1d24475b4c53ae791c7ef06','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-surveillance','/surveillance/basic/queryUavPoints','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:59:01'),(2441,'API_d507c916799dd8793764ccc1a23577e0','基础版 起飞','','cmii-uav-surveillance','/surveillance/basic/take_off','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:57'),(2442,'API_f0742ab3bd6fdfca73d28f8e4c385d3a','基础版 查找设备','','cmii-uav-surveillance','/surveillance/basic/queryDeviceBasic','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:56'),(2443,'API_a9ae3c17a944493037ea65c73fd9b0f5','noticeUavOffline','','cmii-uav-surveillance','/surveillance/basic/notice_uav_offline','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-03-28 02:10:37'),(2444,'API_d298e45865b3bb57fe67f4bf07683ad4','查询uav 当前关联的航线,没有就返回空','','cmii-uav-surveillance','/surveillance/basic/get_uav_line','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:58'),(2445,'API_71d75d11474ddf745eb72b57693c1793','停止航行','','cmii-uav-surveillance','/surveillance/basic/stop_waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:58'),(2446,'API_a73e01e368501ae66a62f8fd8f8ce995','开始航行','','cmii-uav-surveillance','/surveillance/basic/start_waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:56'),(2447,'API_2bebccdddfadd12ae65863afd4d6d09b','云台显示模式修改','','cmii-uav-surveillance','/surveillance/payload/camera/display_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:59'),(2448,'API_5c26311ad924a8a72a0f7d8112df4fa7','喊话器音量设置','','cmii-uav-surveillance','/surveillance/payload/megaphone/configure_volume','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:59'),(2449,'API_d859d875f17b4ed41e735b682b913f6f','喊话器播放录音文件','','cmii-uav-surveillance','/surveillance/payload/megaphone/play_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:59:00'),(2450,'API_4479eaf72c2305914a2e399d90bbb89b','喊话器播放实时文件','','cmii-uav-surveillance','/surveillance/payload/megaphone/play_realtime','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:58'),(2451,'API_194239803c72c9a5ea14cf9923e780e2','喊话器播放文字内容','','cmii-uav-surveillance','/surveillance/payload/megaphone/play_text','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:59'),(2452,'API_0e1b9d2a627667b80b12df5271e76aab','喊话器停止喊话','','cmii-uav-surveillance','/surveillance/payload/megaphone/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:58'),(2453,'API_bf245daffc5834ffea64e7f74c430923','摄像机拍照','','cmii-uav-surveillance','/surveillance/payload/camera/take_picture','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:56'),(2454,'API_4d91532fc3e323d94881fe06a3c07c92','摄像机开始录像','','cmii-uav-surveillance','/surveillance/payload/camera/start_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:59'),(2455,'API_f0d945da3b7ef5e706526090bd4bd457','摄像机停止录像','','cmii-uav-surveillance','/surveillance/payload/camera/stop_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:56'),(2456,'API_908c220ff648b20e611ead6e94513623','天途喷水控制','','cmii-uav-surveillance','/surveillance/payload/spray/sprayCommand','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:59:00'),(2457,'API_ab91c9b512a4881d6219043a2fd976e9','相机 拍照 摄像 模式切换','','cmii-uav-surveillance','/surveillance/payload/camera/mode_change','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:59:00'),(2458,'API_0dde8d5f15f40684d35e2b65de802a54','云台控制','','cmii-uav-surveillance','/surveillance/payload/gimbal/control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:59'),(2459,'API_222be6616e034c6d0466dec1758eebfc','摄像头自动对焦','','cmii-uav-surveillance','/surveillance/payload/camera/auto_focus','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:58:58'),(2460,'API_e2c19cc40f8e8de1821e53866dba58ef','镜头缩放','','cmii-uav-surveillance','/surveillance/payload/camera/zoom','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-09-23 20:59:00'),(2461,'API_2665eb91efb67028d52a34a96710fb14','uploadFlight','','cmii-uav-surveillance','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2462,'API_31be97347352cdb80a3ac136c6188a1e','uploadFlight','','cmii-uav-surveillance','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2463,'API_ffe05783d4dd37a157b8708688ab481a','uploadDefaultFlight','','cmii-uav-surveillance','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2464,'API_570ab7e721bbc58022b58ac3f2151980','uploadDefaultFlight','','cmii-uav-surveillance','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2465,'API_a3d27cd841e3007e453c875579e96a56','findTrackByOrderId','','cmii-uav-surveillance','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2466,'API_28a6e0562c58c1b27589f1381dfd379f','findTrackByMissionId','','cmii-uav-surveillance','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2467,'API_614fcaaabfecd69546b563a394688800','返航','','cmii-uav-surveillance','/api/uav/VirtualStick/return_home','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2468,'API_8485471c57ae24775874be6625ecc9c0','sendPause','','cmii-uav-surveillance','/uav_fly_command/pause','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2469,'API_fc5e29e329b49af508f5ab5a3d6815da','sendContinue','','cmii-uav-surveillance','/uav_fly_command/continue','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2470,'API_35b2cc9115dce36bcc9cb73df7f1e317','getStickControl','','cmii-uav-surveillance','/uav_fly_command/get_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2471,'API_8274bee20034a8dd6f77462e06cfb830','releaseStickControl','','cmii-uav-surveillance','/uav_fly_command/release_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2472,'API_e5d8b0af8267becb8482410fb17ca378','sendStop','','cmii-uav-surveillance','/uav_fly_command/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2473,'API_606e42663a7bcf7891550b7d0a95c9dc','sendLanding','','cmii-uav-surveillance','/uav_fly_command/landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2474,'API_ad13dd56b3c80fc7643dd2907299922e','sendForceLanding','','cmii-uav-surveillance','/uav_fly_command/force_landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2475,'API_ea62e59621a2ee0c069fb419cab9414f','sendFlyUp','','cmii-uav-surveillance','/uav_fly_command/fly_up','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2476,'API_01c97f88970dc6b83bca47a95ce6b924','sendGoHome','','cmii-uav-surveillance','/uav_fly_command/go_home','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2477,'API_8c866fe63853e81e0a6203d400e802ae','waypointFly','','cmii-uav-surveillance','/uav_fly_command/waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2478,'API_ad1540f3b2a53aa5b593d0e1b8232a91','给飞行监视提供航线飞行的航线信息','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/waypoints','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-03-29 09:05:04'),(2479,'API_62109ac3c5daf091b58c48bd57dc91bf','configureDisplayMode','','cmii-uav-surveillance','/payload/camera/display_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2480,'API_93a4abb94fb3115d2b577f3c01e99ac0','configureMegaphoneVolume','','cmii-uav-surveillance','/payload/megaphone/configure_volume','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2481,'API_5ccae1a58718aa90e5284dcf34e769d3','megaphoneStopPlay','','cmii-uav-surveillance','/payload/megaphone/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2482,'API_7c30414d58758876ed8aa8bccdb91a16','megaphoneStartPlay','','cmii-uav-surveillance','/payload/megaphone/play','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2483,'API_b712211caf2762ac60bf1b1fff82ce54','cameraTakePicture','','cmii-uav-surveillance','/payload/camera/take_picture','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2484,'API_da546cee004e96f950734d0ac9c21cab','cameraStartRecord','','cmii-uav-surveillance','/payload/camera/start_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2485,'API_bec475b02b5728a57c493a16b85b8a64','cameraStopRecord','','cmii-uav-surveillance','/payload/camera/stop_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2486,'API_083c080b101f3711488db3b1359f15b4','sprayCommand','','cmii-uav-surveillance','/payload/spray/sprayCommand','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2487,'API_0fb5ad73a3e3f3cc0b14afbcf2e048aa','cameraModeChange','','cmii-uav-surveillance','/payload/camera/mode_change','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2488,'API_81514e96ef03d919a84033202589e9d1','gimbalControl','','cmii-uav-surveillance','/payload/gimbal/control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2489,'API_b408699b51b43b341d8673fa15f0fab2','cameraAutoFocus','','cmii-uav-surveillance','/payload/camera/auto_focus','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2490,'API_93f3a9f4b3c16468f746e9d3f599bcff','cameraZoom','','cmii-uav-surveillance','/payload/camera/zoom','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2491,'API_81c4b023130f2ba573eca31920a23393','获取游客的无人机设备列表','','cmii-uav-surveillance','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2492,'API_c9e15b34c1162daf6277074edfb9c6b6','按无人机编码查询无人机是否是真机','','cmii-uav-surveillance','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2493,'API_f08b73c0fdd7b59599494a964e82612a','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-surveillance','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2494,'API_1e6ab833e962c2ff64fbf6e000a3310c','载荷绑定的无人机编码查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2495,'API_a3e9bbaa35d07d89747c7744316f9971','查询包括子公司的真实无人机和模拟机列表','','cmii-uav-device','/api/uav/plane/queryUavRealByCompanyId','GET',_binary '\0',_binary '\0','2022-03-14 01:44:53',1,'2024-10-11 01:36:42'),(2496,'API_cd517d91bed3c4b36218eab52cc53e7c','按无人机编码查询无人机是否是真机','','cmii-uav-device','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-14 01:44:54',1,'2024-10-11 01:36:47'),(2497,'API_c452e0b6b1d8aa5d63610aad4f58bb4f','通过告警对象列表删除已经处理的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/deleteAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-15 01:20:48',1,'2024-10-11 05:48:27'),(2498,'API_ad14b1d5e25ee25eba013275cdaf7a04','查询不包含指定id的所有航线','','cmii-uav-waypoint','/api/uav/waypoint/evnProtection/airline_all_list/except_ids','POST',_binary '\0',_binary '\0','2022-03-15 05:42:40',1,'2024-09-09 09:16:28'),(2499,'API_9a2f52f178db9c7adbfdc8feb6785dd4','获取最近十分钟的环保监测数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/monitor/env_history_data/{uasId}','GET',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-10-15 02:14:15'),(2500,'API_bec84324dc59a33995c9203bbf3565df','查询在线设备资产数量','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/device/device_num','GET',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2022-04-25 02:51:27'),(2501,'API_49dd2fc850d5a8c796e49cceea21dc30','查询待添加航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/list_to_add','POST',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-10-15 02:14:11'),(2502,'API_12ee5dd7ce3c81ac003c5a170a240997','查询已添加的航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/list_added','GET',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-10-15 02:14:18'),(2503,'API_28ee1893d7ef56712c6c7b0560779d3f','删除航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/{id}','DELETE',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-10-15 02:14:10'),(2504,'API_c198b43340bcf3a70ae2c8ce0d981a04','批量添加航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/batch','POST',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-10-15 02:14:08'),(2505,'API_b76e20107ed5f8bd56f6411514bec89d','查询作业信息列表for环保大屏','','cmii-uav-mission','/api/uav/mission/mission_info_list/list_for_env_protection','GET',_binary '\0',_binary '\0','2022-03-15 07:36:10',1,'2024-10-10 08:57:01'),(2506,'API_6e11dbc21cafdab7a8bff6e039121a0c','nacosRootTest','','cmii-uav-mission','/report_and_video/test','GET',_binary '\0',_binary '\0','2022-03-15 07:36:10',1,'2022-05-07 08:31:53'),(2507,'API_7a8b9f5e2324877ba5cff838fde20bc0','创建智慧环保快速作业','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/fast_mission_for_env_protection','POST',_binary '\0',_binary '\0','2022-03-15 07:36:11',1,'2024-10-10 08:57:02'),(2508,'API_e7623a4f1ced64d30265844f88b9e593','visitorUavCheck','','cmii-uav-surveillance','/surveillance/basic/uas_auth_check','POST',_binary '\0',_binary '\0','2022-03-16 03:14:09',1,'2024-09-23 20:58:58'),(2509,'API_f3ecf4af648d67c9a354e6cb0674a885','校验Token获取模型分享数据','校验Token获取模型分享数据','cmii-uav-data-post-process','/v1/permission/share/queryShareDataByToken','GET',_binary '\0',_binary '\0','2022-03-25 03:44:24',1,'2024-09-09 09:16:28'),(2510,'API_e39052b1b57b2e43593eb02ba1b0da86','获取模型分享token','','cmii-uav-data-post-process','/uav/share/modelShareToken','GET',_binary '\0',_binary '\0','2022-03-25 03:44:24',1,'2024-09-09 09:16:29'),(2511,'API_3cafdc89dfa0baf145cea6ff08dab7d1','test','','cmii-uav-data-post-process','/product/test','GET',_binary '\0',_binary '\0','2022-03-25 03:44:24',1,'2024-09-09 09:16:30'),(2512,'API_74dfcb65435278c2fcd33b8ef83c3969','getDocumentation','','cmii-uav-data-post-process','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:29'),(2513,'API_6b9c5a403a7d181a8f7c65f88a299f29','uiConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:30'),(2514,'API_4ee0726de24e6d9868e19fc9c62b826a','securityConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:29'),(2515,'API_ae1249fdd6106383b33bcdecff87f998','swaggerResources','','cmii-uav-data-post-process','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:30'),(2516,'API_feca6aa2874b523a9459c2424155dd98','getDocumentation','','cmii-uav-data-post-process','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:28'),(2517,'API_557dfd58eece9c1041ea24e5ec60b2be','getBucket1','','cmii-uav-material-warehouse','/api/v1/warehouse/scr/getBucket1','GET',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-10-11 08:57:34'),(2518,'API_e14ab995f12bae09b6d94263ed78d8db','模型分享文件下载','','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadModelFile/bypass/**','GET',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-10-11 08:57:34'),(2519,'API_ea879d36f382278b4373abb7cb0cb9e6','获取来源域信息','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/listScr','GET',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-10-11 08:57:35'),(2520,'API_767d17d3e8141b754e28d55e38c0e687','获取绕行认证token','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getBypassToken','POST',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-10-11 08:57:35'),(2521,'API_2e7ae6af196ae27fd208151f2f5c6b0d','getDocumentation','','cmii-uav-material-warehouse','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-10-11 08:57:35'),(2522,'API_541acf73414970602d251465ab00d767','swaggerResources','','cmii-uav-material-warehouse','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-10-11 08:57:36'),(2523,'API_da037cebf7a6ad08b1e22b5bc5feb570','uiConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-10-11 08:57:34'),(2524,'API_803a045c332c6f51d2bbcb5c3e672a73','securityConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-10-11 08:57:36'),(2525,'API_9c715588bae1d7427bee6af10f6044ce','getDocumentation','','cmii-uav-material-warehouse','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-10-11 08:57:35'),(2526,'API_6119ee0b87e868a20c9e08899357e6d7','getQuotaInfoUseByType','','cmii-uav-user','/client/quota/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2022-04-25 02:50:17'),(2527,'API_284e320c6a841710d98e01292da09c18','getDocumentation','','cmii-uav-user','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2024-10-11 15:37:14'),(2528,'API_728b8c57db4c6c0b705d5530ac9a9511','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2024-10-11 15:37:15'),(2529,'API_05f507cccc8b8e92bd008fc09d4c71ce','swaggerResources','','cmii-uav-user','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2024-10-11 15:37:11'),(2530,'API_6dbae71c90d3b3330ff3cbdcd488fdff','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:42',1,'2024-10-11 15:37:12'),(2531,'API_4557b0cbb4b7d06a2eab089c66cc0c7e','getDocumentation','','cmii-uav-user','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:42',1,'2024-10-11 15:37:17'),(2532,'API_9dba39306b6890d8a5a45653099bbdb3','分页查询不包含指定id的航线','','cmii-uav-waypoint','/api/uav/waypoint/evnProtection/airline_info_list/except_ids','POST',_binary '\0',_binary '\0','2022-03-30 03:18:43',1,'2024-09-09 09:16:29'),(2533,'API_409093c7159def23cec4d0055fd04d04','getDocumentation','','cmii-uav-logger','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-10-15 02:44:47'),(2534,'API_b18a9fe72e9a7d19d9e5a57da928c016','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-10-15 02:44:48'),(2535,'API_97dce13d5d2d27ead51a858ba3739145','swaggerResources','','cmii-uav-logger','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-10-15 02:44:47'),(2536,'API_3a3e4f9b7f08645f3974540b65c204c9','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-10-15 02:44:48'),(2537,'API_75ab987af8c4c64c61b7a38949275afb','getDocumentation','','cmii-uav-logger','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-10-15 02:44:48'),(2538,'API_0360662d26eafb263cfe3d147a3223a0','下载FMV无人机态势信息','','cmii-uav-mission','/api/uav/mission/mission_info/download_fmv_track_data/{id}','GET',_binary '\0',_binary '\0','2022-03-30 03:18:51',1,'2024-10-10 08:57:00'),(2539,'API_6328e98eb2b734c53955050da4a184f1','获取fmv格式的无人机轨迹数据','','cmii-uav-mission','/api/uav/mission/mission_info/fmv_uav_track','GET',_binary '\0',_binary '\0','2022-03-30 03:18:51',1,'2024-10-10 08:57:09'),(2540,'API_300c9b7221bc896a9aea430c21c95291','getDocumentation','','cmii-uav-industrial-portfolio','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-10-15 02:14:21'),(2541,'API_3add314b34c28e3a7827a9a5032613b9','uiConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-10-15 02:14:20'),(2542,'API_d8c48e4ff0f1fe40f8b48e948a10d63e','securityConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-10-15 02:14:17'),(2543,'API_01c641e1b4e6d9c30c319220fefd75f6','swaggerResources','','cmii-uav-industrial-portfolio','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-10-15 02:14:19'),(2544,'API_49d5ad513fad592408029bf44178bdfd','getDocumentation','','cmii-uav-industrial-portfolio','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-10-15 02:14:11'),(2545,'API_5d01133a91598b434cf3ffce3baf9550','获取回放AI视频token','获取回放AI视频token接口','cmii-uav-cloud-live','/client/live/playbackAi/token','POST',_binary '\0',_binary '\0','2022-03-30 03:18:56',1,'2024-10-12 09:42:38'),(2546,'API_7cfc25f15a47c4567c5d1bbae53690f3','获取回放AI视频token列表','获取回放AI视频token列表接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens','POST',_binary '\0',_binary '\0','2022-03-30 03:18:56',1,'2024-10-12 09:42:36'),(2547,'API_a15968b980c85a0ff2c44091096ae066','getDocumentation','','cmii-uav-cloud-live','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:37'),(2548,'API_f78d3ef6fc559f0a6dfcfe7b80751af4','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:38'),(2549,'API_686c9a27044cbeb2e932628006b22022','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:36'),(2550,'API_871a9156aa421a1b37b481fdf8fb936f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:37'),(2551,'API_e0a09b08d3699ce5a5c4d6d8e487c541','getDocumentation','','cmii-uav-cloud-live','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-10-12 09:42:33'),(2552,'API_3f648559133e61dd09837a0aa5b7bb3a','获取MP4作业视频','','cmii-uav-mission','/api/uav/mission/mission_info/vedio_mp4/{id}','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-10-10 08:57:13'),(2553,'API_c6d2d4e24b57855eb8f054ad6d809d46','获取m3u8作业视频','','cmii-uav-mission','/api/uav/mission/mission_info/vedio_m3u8/{id}','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-10-10 08:57:08'),(2554,'API_4ee60ddea40d13fa570f7d811a4383e6','处理老作业合成视频','','cmii-uav-mission','/api/uav/mission/mission_info/history_vedio','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-10-10 08:57:03'),(2555,'API_35ba6f391708c59b0cb8ef08ff2ddb92','处理单个历史作业合成视频','','cmii-uav-mission','/api/uav/mission/mission_info/history_vedio/{id}','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-10-10 08:57:14'),(2556,'API_ada4340c15f0563ab83e660cae0dc7c7','getDocumentation','','cmii-uav-surveillance','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-09-23 20:58:57'),(2557,'API_118f97a041a0085ff14e57a730170d0a','uiConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-09-23 20:59:00'),(2558,'API_2fd6b2ec21f2a7acb0836eaac69f0778','swaggerResources','','cmii-uav-surveillance','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-09-23 20:59:00'),(2559,'API_d6293f405604065292a57f8192e55840','securityConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-09-23 20:59:00'),(2560,'API_fd8ba8f9bbd6df918ab9897bd6cbfb66','getDocumentation','','cmii-uav-surveillance','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-09-23 20:59:00'),(2561,'API_01fb4e7a0b145af32f7ce420efc64924','停止AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/stop_ai_detection','GET',_binary '\0',_binary '\0','2022-04-07 03:47:38',1,'2024-10-10 08:57:04'),(2562,'API_5c7432080fbf74f65180b30fc6afaaf6','获取作业AI视频','','cmii-uav-mission','/api/uav/mission/mission_info/ai_vedio/{id}','GET',_binary '\0',_binary '\0','2022-04-07 03:47:38',1,'2024-10-10 08:57:11'),(2563,'API_39b9ccc5f762bd8d06b4fef7b13fc8f3','给飞行监视提供航线飞行的航线信息,只需要航线id','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/waypoints_with_id','GET',_binary '\0',_binary '\0','2022-04-13 06:33:39',1,'2023-03-29 09:05:04'),(2564,'API_b37d58bf331f4f76dc7b19c2f0c8401a','修改角色并授权资源组','','cmii-uav-user','/api/uav/role/updateAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:02',1,'2024-10-11 15:37:11'),(2565,'API_1840f89179ef93cd9a6550c61c0a2b32','查询某公司有效角色的列表','','cmii-uav-user','/api/uav/role/queryOneCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:18'),(2566,'API_5574ca8695086e09a34dc22ddec566a8','新增角色并授权资源组','','cmii-uav-user','/api/uav/role/addAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:13'),(2567,'API_093f51549470c1f5d78593100e7ff71b','查询组织已用配额','','cmii-uav-user','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:09'),(2568,'API_e7d98c8b1405680df0a72fd712e57290','查询权限组树型结构','','cmii-uav-user','/api/uav/group/trees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:10'),(2569,'API_01fd6de539cb9f9aa5668922a0ace4ff','查询权限组详细列表','','cmii-uav-user','/api/uav/group/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:20'),(2570,'API_88de3838653107ec360b2c7b17e3c12c','查询权限组资源树型结构','','cmii-uav-user','/api/uav/group/resourceTrees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:18'),(2571,'API_53146fed117f8c89cc11e8a012c97b69','查找出未选择的权限组','','cmii-uav-user','/api/uav/group/dependsUnChecked','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:16'),(2572,'API_a7a4ccbfd3aff2d60b958ce3355e4bf7','管理员获取全平台的所有权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForAdmin','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:14'),(2573,'API_32475e5852084a6f2a18e9277bf161cd','获取某个角色的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForRole','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:20'),(2574,'API_74db49217ba70f4dd0bd402d840bb72c','给资源组赋予菜单按钮','','cmii-uav-user','/api/uav/group/authorityResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:15'),(2575,'API_949caf693b72457471529fc1a359c6aa','获取自己所在公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForMyCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:12'),(2576,'API_7eed6e744998919c9c8231c58069ee2f','获取某个公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:10'),(2577,'API_107f9069a3f501b65fdfcd791c0062dc','获取某个用户的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForUser','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:17'),(2578,'API_9ab9fe4b26b4c290781e3796906f7af0','查询自己公司的子孙公司,普通管理员仅自己公司','','cmii-uav-user','/api/uav/org/company_scopes','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:11'),(2579,'API_433629c1f4512e6f7cfd5e45efc0d848','查询公司的子孙公司(不包括自己公司)','','cmii-uav-user','/api/uav/org/descendants','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:08'),(2580,'API_fa8e6a48b33398f42e01ba89b8434a0e','查询公司所在的族谱,所在树的全部节点','','cmii-uav-user','/api/uav/org/genealogy','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-10-11 15:37:18'),(2581,'API_96c010936d0212bc2e6a96ae0df4c9c1','查询公司性质列表','','cmii-uav-user','/api/uav/org/companyNatures','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-10-11 15:37:18'),(2582,'API_706b176b853fc3850409aed6aca58d40','分页查询公司的子公司','','cmii-uav-user','/api/uav/org/pageChildrenCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-10-11 15:37:10'),(2583,'API_94ab3b50003fb911a0ac2c2bcf2f7d9f','分页查询公司树型结构','','cmii-uav-user','/api/uav/org/pageCompanyTree','POST',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-10-11 15:37:19'),(2584,'API_d590165e9ffcba5c3ab549087a8517a5','查询公司的子孙公司(包括自己公司)','','cmii-uav-user','/api/uav/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-10-11 15:37:13'),(2585,'API_a3c45d6497bb720021eac3c3d3626524','getDocumentation','','cmii-uav-mqtthandler','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-09-25 08:48:46'),(2586,'API_f89a7df6e26465006c2c6a0cba555553','uiConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-09-25 08:48:46'),(2587,'API_2277c14a0d6d52bf21d0486f8fc69028','securityConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-09-25 08:48:47'),(2588,'API_6d1dce5ed5db158800f38d4d7f191f1d','swaggerResources','','cmii-uav-mqtthandler','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-09-25 08:48:46'),(2589,'API_61e908b2d5b3c4c66b0de5407e792a5e','getDocumentation','','cmii-uav-mqtthandler','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-09-25 08:48:46'),(2590,'API_1e7067f999bef83d2f1006ae1ae356a0','查询按钮,菜单所属的资源组集合','','cmii-uav-user','/api/uav/resource/queryResouceGroups','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-10-11 15:37:11'),(2591,'API_09572688f3ed468db68e104ac7e6ac99','根据资源id,获取所有的父资源','','cmii-uav-user','/api/uav/resource/queryParentsById','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:16'),(2592,'API_46cdaf99ebad4e635a0b5b61fb509c50','根据编码导出资源信息XML','','cmii-uav-user','/api/uav/resource/syncExportResourceXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:15'),(2593,'API_8a2fcdbeba25a9f8e605f78da7b668fa','根据编码导入资源信息XML','','cmii-uav-user','/api/uav/resource/syncImportResourceXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:08'),(2594,'API_eababd8d641858ec0dc94a96b119fc2e','菜单资源同步XML','','cmii-uav-user','/api/uav/resource/syncResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:17'),(2595,'API_cb8e545bd520a55501bd9058d4a90dac','查询无人机在线状态','','cmii-uav-mqtthandler','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2023-05-04 09:36:22'),(2596,'API_aafaa3624ccfca4434946824ffa8c688','获取公司gis信息','','cmii-uav-user','/api/uav/user/profile/companyGisInfo','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:20'),(2597,'API_52c1eb609c16345d337004d08500ee34','测试List对象','','cmii-uav-user','/api/uav/uavTestPO/listObject','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:12'),(2598,'API_9e55f6b9c8d021b29c831f91df9688fa','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/listInt','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:16'),(2599,'API_0138862efbd1381847bc149173fadfb1','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/int','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:12'),(2600,'API_7c46c892a835c386f5491d57086e1b78','testPath','','cmii-uav-user','/api/uav/uavTestPO/testPath','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-10-11 15:37:18'),(2601,'API_e7a568f15bc9f756091c84492f47d320','查询某公司的用户列表','','cmii-uav-user','/api/uav/user/findOneCompanyPage','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:12'),(2602,'API_40a85440b0431a8aaf4ce0266653f075','新建&更新组织最大可用配额查询接口','','cmii-uav-user','/api/admin/system/quota/getMaxQuotaInfo','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:09'),(2603,'API_1adca4c2f75642b528e15166f4d0525a','数据权限升级','','cmii-uav-user','/api/uav/group-sync/dbMygration','PUT',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:16'),(2604,'API_d25daf1a7f47e18058fddb9cfd58fd95','导出权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncExportGroupsAndGroupResourceMappingXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:17'),(2605,'API_dc1325fbbf764825474bdab8eb1f82ba','导ru权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncImportGroupsAndGroupResourceMappingXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:16'),(2606,'API_60b09fb94ce3496ff90a4857ef89785b','同步资源组与资源的映射关系','','cmii-uav-user','/api/uav/group-sync/syncGroupsAndGroupResourceMapping','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:08'),(2607,'API_342d642b2fa1a417bb82509b6ae66a30','导出资源组模板','','cmii-uav-user','/api/uav/group-sync/syncExportGroupTemplatesXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:19'),(2608,'API_5525d2fef1a7dfd03ce6ae26df0aa195','导入资源组模板','','cmii-uav-user','/api/uav/group-sync/syncImportGroupTemplatesXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:14'),(2609,'API_bf0b1ee8a98d585edee95dafee344142','多环境之间同步资源组模板','','cmii-uav-user','/api/uav/group-sync/syncGroupTemplates','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:16'),(2610,'API_5ea94a0889354836cbd1cc9f3b672ad6','更新rootId为空的公司','','cmii-uav-user','/api/uav/group-sync/correctCompanyRootId','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-10-11 15:37:12'),(2611,'API_581fdd0ea099d6547069e61de1c5a5cf','添加演示模板','','cmii-uav-user','/api/uav/group-template/add','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:18'),(2612,'API_4ba19a8bb7bd5f99724b7e66a55b2495','查询权限组所有详细列表','','cmii-uav-user','/api/uav/group-template/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:17'),(2613,'API_80ea13663650435d1a73ce828652d6bd','查询组织已使用配额信息','','cmii-uav-user','/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:17'),(2614,'API_3e2af60d636ca1ed913ec55de3ca8bd3','getDocumentation','','cmii-uav-airspace','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 08:57:37'),(2615,'API_751a4ab3731513f08a9c38e532d6d42d','uiConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 08:57:37'),(2616,'API_827bb9e60c72d56401c772a130934563','用户数概况(总用户数&在线用户数)','','cmii-uav-user','/api/open/user/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:15'),(2617,'API_0b3542957558e4d6fff337c8bb2e21e3','swaggerResources','','cmii-uav-airspace','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 08:57:36'),(2618,'API_d13748306aa816b972952b75d3580e18','securityConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 08:57:37'),(2619,'API_173dd3971a5b2e4215e515cd970416ef','getDocumentation','','cmii-uav-airspace','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 08:57:37'),(2620,'API_de4d740768d7847768e4bb45baa338c4','根据公司范围查询公司的用户列表','','cmii-uav-user','/user/queryByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:12'),(2621,'API_76874d731f956a8bc21b90b4c151995d','根据公司范围,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:19'),(2622,'API_92a248782383d5a4151df2f079f62979','根据公司范围,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId/namePhoneScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:13'),(2623,'API_4153d0d6ef5046411dedba0a0434135c','获取公司集合','','cmii-uav-user','/clients/org/queryByIds','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:16'),(2624,'API_2fff43c8902b7f5982987580fc098270','获取公司的子孙公司包括自己','','cmii-uav-user','/clients/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-10-11 15:37:09'),(2625,'API_67a6671f780b4f9fe066acd721fb72b2','查询无人机在线状态','','cmii-uav-airspace','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2023-03-29 08:30:26'),(2626,'API_6007c3fc3b590525460f495b02c2bd6f','给飞行监视提供航线飞行的航线信息,只需要航线id','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/waypoints_with_id','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-09-09 09:16:28'),(2627,'API_4f3edd9a9b52293c8274039d18a15002','重载业务参数','','cmii-uav-alarm','/api/uav/alarm/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 05:48:26'),(2628,'API_7c1f11ca6aa894a3225f9a8d4145c557','getDocumentation','','cmii-uav-alarm','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 05:48:27'),(2629,'API_e0be1e447ee76257d0a1e151fc603fd5','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 05:48:26'),(2630,'API_9111eef1a24129edea603beca94e3e02','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-11 05:48:25'),(2631,'API_57166349726e8361c53f41e89d093ff3','swaggerResources','','cmii-uav-alarm','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 05:48:25'),(2632,'API_71c9b1d72ea78199e17cc83a875f9aa6','getDocumentation','','cmii-uav-alarm','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-11 05:48:24'),(2633,'API_ed54eecf59da12c360a0c7769a36dd26','获取GPS坐标地址信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeo','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:15:06'),(2634,'API_454baf69c5c624ae03301d7ae71c70fd','getDocumentation','','cmii-uav-waypoint','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:16:28'),(2635,'API_33e58190fc162fd27a7572628ec49968','uiConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:16:28'),(2636,'API_e82f3a73c5028a734c5f50ff913b430a','swaggerResources','','cmii-uav-waypoint','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:16:30'),(2637,'API_ca41b76164029c56cb6f211e22a500f9','securityConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:16:30'),(2638,'API_167f5c9c4606f942ab8074d8820d2f46','getDocumentation','','cmii-uav-waypoint','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:16:30'),(2639,'API_c9409405699c91590c7dabf9e63db87d','文件导入字典明细','','cmii-admin-data','/api/admin/dictionary/fileImport','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:15:06'),(2640,'API_f19dff044b68e536ce8df43f8dac84dd','文件导出字典明细','','cmii-admin-data','/api/admin/dictionary/fileExport','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-09-09 09:15:07'),(2641,'API_d94d9aec0da4b19fd50a4b315e9d39a7','查询无人机在线状态','','cmii-uav-waypoint','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2023-05-04 09:35:56'),(2642,'API_c3afa707108b58d9cb6b68ae5c7ed283','根据无人机类型查询设备类型匹配列表','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchListByUav','GET',_binary '\0',_binary '\0','2022-04-27 02:45:11',1,'2024-09-09 09:15:08'),(2643,'API_4cb882103bc6f97c2fe3c31dfb8eb6c8','getDocumentation','','cmii-admin-data','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-09-09 09:15:08'),(2644,'API_47a8e3e0d37ca77be1ac9934fe039256','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-09-09 09:15:08'),(2645,'API_f6bb5dd6d167aecdf23c473da3dfd63d','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-09-09 09:15:08'),(2646,'API_e0c615762e25ee05a6397222aefe8457','swaggerResources','','cmii-admin-data','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-09-09 09:15:08'),(2647,'API_6b0dd054428ea6530ce4a388e6d0fb3e','getDocumentation','','cmii-admin-data','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-09-09 09:15:08'),(2648,'API_121607fdc9863543f51650000f0fc92b','按年/月/日查询所有平台飞行总时长','','cmii-uav-surveillance','/surveillance/AllflyDuration/{duration}','GET',_binary '\0',_binary '\0','2022-04-27 02:45:19',1,'2024-09-23 20:58:57'),(2649,'API_0d389a1a09e2228b88ae758c3f959de4','查询无人机在线状态','','cmii-uav-surveillance','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:22',1,'2023-03-29 09:05:05'),(2650,'API_68753bdacc315e6581975c33647880e7','查詢包括子公司的设备列表','','cmii-uav-device','/api/uav/dev/queryDeviceList','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:53'),(2651,'API_2aaaede1b5563b0a4fa5c87d5059c072','新增设备','','cmii-uav-device','/api/uav/dev/addDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:44'),(2652,'API_f333962bf1352ae3f443309395496c10','修改设备','','cmii-uav-device','/api/uav/dev/updateDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:45'),(2653,'API_5164cba6d601963304a354d348afc6ec','删除设备','','cmii-uav-device','/api/uav/dev/deleteDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:46'),(2654,'API_8652cf7850b6724027c40bd1f128b3c1','批量删除设备','','cmii-uav-device','/api/uav/dev/deleteDevBatch','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:45'),(2655,'API_841b6fca6859d319a9b08c93ec1f5e43','无人机实例总数接口','','cmii-uav-device','/api/open/plane/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:43'),(2656,'API_07a9053b3d7e250fc90ebc87ec5fceab','无人机实例总数接口','','cmii-uav-device','/api/open/planeArea','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:42'),(2657,'API_8c2b4339a58ddd7961bfcef40afd52cf','修改仓库','','cmii-uav-device','/api/uav/house/updateHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:44'),(2658,'API_0d92af5e0d766243ee4b1e58cdc684d5','删除仓库','','cmii-uav-device','/api/uav/house/deleteHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:49'),(2659,'API_fb599dc78672805305ea6002de13ce45','仓库关联设备信息','','cmii-uav-device','/api/uav/house/queryHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:45'),(2660,'API_458baa7426dc09bc3a1327579edded9a','仓库可关联设备信息','','cmii-uav-device','/api/uav/house/queryValHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:49'),(2661,'API_6a5a45853293d08ba87ac3827cbcf66a','查詢包括子公司的仓库列表','','cmii-uav-device','/api/uav/house/queryHouseList','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:49'),(2662,'API_9c0f321db584d3d813a281f25cfe2df3','新增仓库','','cmii-uav-device','/api/uav/house/addHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:47'),(2663,'API_7bb2b50110c6fb4815372f2bdcba0134','统计子公司范围内的设备(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCount','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-10-11 01:36:47'),(2664,'API_a086ecddc9771b681e4061815fbb8e63','重载业务参数','','cmii-uav-device','/api/uav/plane/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:45:24',1,'2024-10-11 01:36:51'),(2665,'API_2ca0106de89e47edf77400b05936d135','取消设备绑定','','cmii-uav-device','/api/uav/dev/unBoundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:25',1,'2024-10-11 01:36:51'),(2666,'API_479f78171081bed9faca2e8ca745fe6b','绑定设备列表查询','','cmii-uav-device','/api/uav/dev/queryBoundBydevCode','GET',_binary '\0',_binary '\0','2022-04-27 02:45:25',1,'2024-10-11 01:36:47'),(2667,'API_ef7895bb33af75327d8df6695c0e64da','添加设备绑定','','cmii-uav-device','/api/uav/dev/boundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:25',1,'2024-10-11 01:36:46'),(2668,'API_f78c01a72c762ad505c90da48cd93402','getDocumentation','','cmii-uav-device','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-10-11 01:36:43'),(2669,'API_5977f2474e6ec130e76828bfd7286930','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-10-11 01:36:43'),(2670,'API_54fd717c1af7b96a999fff84fe3276d7','swaggerResources','','cmii-uav-device','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-10-11 01:36:50'),(2671,'API_5fbdf0b1cdd87a9fd62f3e44742b385e','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-10-11 01:36:51'),(2672,'API_a3a532a479e924acb0242a6b717c61cd','getDocumentation','','cmii-uav-device','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-10-11 01:36:42'),(2673,'API_29e9f7f14d98a6348ced289a13b9c182','提供已有航线,无人机 创建快速作业','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/mission/create_fast_with_line_and_uav','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:14'),(2674,'API_4c11c0b09166bb135f965bd21401b339','查询已添加的航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/list_added/{uavCode}','GET',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:17'),(2675,'API_b0342f0ee6d6785176b33a30fe21f780','批量添加航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/batch','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:13'),(2676,'API_9bbbd3836c2e12d14b573352b02368b9','删除航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/{id}','DELETE',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:19'),(2677,'API_561c9948b63d0fceac6908c59f88267e','查询待添加航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/list_to_add','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:17'),(2678,'API_533512a3d10f3396f61082dd90bd77dd','获取测温点位列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/temperatureMeasuring_point_info/list','GET',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:18'),(2679,'API_47b9e7c120f7e26e195eedcd82b993f8','根据测温点位id分页获取巡检记录列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/temperatureMeasuring_point_info/patrol_record_page_list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:09'),(2680,'API_68688674fb96be9c90813c065b1268c1','消息处理测试接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/common/Message','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-10-15 02:14:10'),(2681,'API_cc60e6c600244455e919d7f113666d12','查询无人机在线状态','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:28',1,'2022-11-02 09:13:11'),(2682,'API_89dbfc45753c11945f0a5ee1e53a855b','模拟发布复亚图片信息列表','','cmii-uav-mission','/oss/mock_foia_pic_info_list_publish','POST',_binary '\0',_binary '\0','2022-04-27 02:45:31',1,'2024-10-10 08:57:05'),(2683,'API_bc3e35b7a90335f8ee4528c941f99b7c','发送单机监视视频分享短信到选定的手机号','missionId 非必须','cmii-uav-mission','/report_and_video/send_video_share_sms','POST',_binary '\0',_binary '\0','2022-04-27 02:45:31',1,'2024-10-10 08:57:09'),(2684,'API_9f09fa590fba8ee2870de267ac4b1631','提供已有航线,无人机 创建快速作业','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_with_line_and_uav','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-10-10 08:57:03'),(2685,'API_5138febf031d37b94e6529aff77f807c','查询指定预计开始时间范围的作业-时间区间为左闭右开','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info_list_with_estimated_start_time_range','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-10-10 08:57:12'),(2686,'API_30ed633b13d45560fca4ecd303d5d606','基于终端维度的作业执行概况信息--开放接口','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/uav_mission_info','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-10-10 08:57:08'),(2687,'API_a9eef19654b65701370bf2b77dfa23ba','查询前12个月已完成作业数量--开放接口','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/mission_num_per_month','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-10-10 08:57:16'),(2688,'API_9ec21123e64357c0a5524b119f6573e8','查询今日和全量已完成/进行中作业数量--开放接口','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/mission_num_static','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-10-10 08:57:11'),(2689,'API_4d0b953a47f81652a9c1e32046c5147a','getDocumentation','','cmii-uav-mission','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-10-10 08:57:10'),(2690,'API_b9d52a009f6eb5f49817561eb5149173','uiConfiguration','','cmii-uav-mission','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-10-10 08:57:09'),(2691,'API_b8f5387dce4499aed5adea8fa1e48f75','securityConfiguration','','cmii-uav-mission','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-10-10 08:57:05'),(2692,'API_c4c97f2c2a367ac3cf399d527c7da1c6','swaggerResources','','cmii-uav-mission','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-10-10 08:57:02'),(2693,'API_3597a39e2e8bfed274be9c239f7e7fb1','getDocumentation','','cmii-uav-mission','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-10-10 08:57:07'),(2694,'API_da3e37ce4e9e1b1dc81c9c41e9c7f973','查询无人机在线状态','','cmii-uav-mission','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2023-07-18 04:08:27'),(2695,'API_3c48518686f7e3bc1485eb1aff1e2ff9','获取回放视频token1','获取回放视频token1接口','cmii-uav-cloud-live','/client/live/playback/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-10-12 09:42:38'),(2696,'API_d25e1e1c0fa3f13e191c801e18d8941d','获取回放AI视频token1','获取回放AI视频token1接口','cmii-uav-cloud-live','/client/live/playbackAi/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-10-12 09:42:35'),(2697,'API_732ef4f6817583a25459c7fb874f5b5a','获取视频流存储信息','','cmii-uav-cloud-live','/video/storage/getStorageInfo','GET',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-10-12 09:42:34'),(2698,'API_b5203cfafccff79ddd6ef3658a490aa8','获取回放AI视频token列表1','获取回放AI视频token列表1接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens1','POST',_binary '\0',_binary '\0','2022-05-07 08:33:42',1,'2024-10-12 09:42:32'),(2699,'API_69b4b0408d379208deea19d59ed98e85','根据日期范围筛选公司下面的飞行时长','','cmii-uav-surveillance','/surveillance/query_duration_by_time','GET',_binary '\0',_binary '\0','2022-05-25 08:34:13',1,'2024-09-23 20:59:01'),(2700,'API_258fd28d703f12613f3d56a2a7183f24','开启模拟机库','','cmii-uav-surveillance','/surveillance/simulator/start_hangar','POST',_binary '\0',_binary '\0','2022-05-25 08:34:14',1,'2024-09-23 20:58:58'),(2701,'API_37513463f05836c8602a1e1c528fe5b5','机库自动起飞','','cmii-uav-surveillance','/surveillance/simulator/auto_fly','POST',_binary '\0',_binary '\0','2022-05-25 08:34:14',1,'2024-09-23 20:58:59'),(2702,'API_937cb2e0a224e7222ac4f4b6caa5e4ef','湘潭演示','开始作业, 开启模拟机,自动飞行,返航,上传图片,结束作业','cmii-uav-surveillance','/xg_scenario','POST',_binary '\0',_binary '\0','2022-05-25 08:34:14',1,'2024-09-23 20:59:00'),(2703,'API_0303c6966093dc0f77b56442375d3f5e','publishCommand','','cmii-uav-surveillance','/mqtt/hangar/command','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2704,'API_9af718e4419c544dcd67de73d14a9016','configureRTKSetting','','cmii-uav-surveillance','/mqtt/hangar/configure_RTK','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2705,'API_3486edec41e52068b198470deeaade5c','sendWayLineAndSetDefault','','cmii-uav-surveillance','/mqtt/hangar/send_line_and_set_default','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2706,'API_73a3d517f242d06d2e775b3c48908e96','publishSimulatorHangarTelemetry','','cmii-uav-surveillance','/mqtt/hangar/publish_simulator_data','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2707,'API_50418acd60e21bb7ef1038742dcc9f3a','查询公司范围下的在线无人机,返回map','','cmii-uav-surveillance','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:16',1,'2023-03-29 09:05:05'),(2708,'API_926a3783ab9c0e5fb0cc820e50d2f71c','查询公司范围下的在线无人机,返回map','','cmii-uav-airspace','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:24',1,'2023-03-29 08:30:25'),(2709,'API_62f98911a42248cb190b4b166d58e354','查询公司/机构范围的无人机名称列表','','cmii-uav-device','/api/uav/plane/queryUavNameByCompanyId','GET',_binary '\0',_binary '\0','2022-05-25 08:34:25',1,'2024-10-11 01:36:54'),(2710,'API_cb3d59b848074a115a1e0c7cc26a5eac','查询公司范围下的在线无人机,返回map','','cmii-uav-device','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:25',1,'2024-10-11 01:36:44'),(2711,'API_5650997fb36ac4227d6dab55afac6050','查询不同时间段所有的无人机行时长','','cmii-uav-device','/api/uav/plane/queryAllFlyTotal','GET',_binary '\0',_binary '\0','2022-05-25 08:34:25',1,'2024-10-11 01:36:42'),(2712,'API_142e6a2f1b1c5821b138d6c39e1cff7b','模糊查询包括子公司的仓库列表','','cmii-uav-device','/api/uav/plane/queryHouse','GET',_binary '\0',_binary '\0','2022-05-25 08:34:26',1,'2024-10-11 01:36:53'),(2713,'API_a3c041486461b027297b1529b2d3da10','发送模拟机库遥测信息','','cmii-uav-mqtthandler','/mqtt/hangar/publish_simulator_data','POST',_binary '\0',_binary '\0','2022-05-25 08:34:29',1,'2024-09-25 08:48:47'),(2714,'API_1a87dfde0834ab278e25857240043f23','查询公司范围下的在线无人机,返回map','','cmii-uav-mqtthandler','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:30',1,'2023-05-04 09:36:21'),(2715,'API_37943f7a412c3091007dad54a69b79fa','获取作业报告的分享码','','cmii-uav-mission','/report_and_video/get_report_share/{missionId}','GET',_binary '\0',_binary '\0','2022-05-25 08:34:33',1,'2024-10-10 08:57:08'),(2716,'API_8260ba9b61450155ff907812128f8e67','视频数据回放-获取轨迹数据日期分布','视频数据回放-获取轨迹数据日期分布','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getDataDistribution','GET',_binary '\0',_binary '\0','2022-05-25 08:34:34',1,'2024-10-10 08:57:05'),(2717,'API_da50d60e377e25f455a2b66a3560816a','模拟演示作业用 提供已有航线,无人机,机库(非必须) 创建快速作业并开始','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_hangar_M','POST',_binary '\0',_binary '\0','2022-05-25 08:34:34',1,'2024-10-10 08:57:02'),(2718,'API_d1826a3fe494d4abc6b596ac798a332b','获取环保作业报告数据','','cmii-uav-mission','/api/uav/mission/mission_info/env_protection_info/{id}','GET',_binary '\0',_binary '\0','2022-05-25 08:34:34',1,'2024-10-10 08:57:03'),(2719,'API_100953d66811971e871a9745020c33e1','视频数据回放-获取飞行轨迹列表','视频数据回放-获取飞行轨迹列表','cmii-uav-mission','/api/uav/mission/mission_info/queryFlyTrackList','POST',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-10-10 08:57:09'),(2720,'API_e13b0c8ab34ff7356f808d2b5e9f57f0','视频数据回放-获取轨迹详情和视频详情信息','视频数据回放-获取轨迹详情和视频详情信息','cmii-uav-mission','/api/uav/mission/mission_info/flyTrackDetail2Video/{flyOrderId}','GET',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-10-10 08:57:01'),(2721,'API_4cc853c4ae0ec9ec244fa8373e0c3eee','视频数据回放-获取视频关联轨迹列表详情信息','视频数据回放-获取视频关联轨迹列表详情信息','cmii-uav-mission','/api/uav/mission/mission_info/queryUavTrackDetailList','GET',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-10-10 08:57:11'),(2722,'API_6637f567e591b17336a2f3bfbc5f0ef4','视频数据回放-获取轨迹设备列表','视频数据回放-获取轨迹设备列表','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getDeviceList','GET',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-10-10 08:57:11'),(2723,'API_b31dba41363b05cd306bc625a219c3d1','飞行监视启动的模拟机完成飞行','type: 演示种类','cmii-uav-mission','/api/uav/mission/scenario/complete','POST',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-10-10 08:57:15'),(2724,'API_c8a007b2970ec84c5715ba549e5d5b11','test','','cmii-uav-mission','/api/uav/mission/scenario/test','POST',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2022-07-27 08:32:59'),(2725,'API_f934435864ab7d3b18baf3053e7b6e3a','查询公司范围下的在线无人机,返回map','','cmii-uav-mission','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:36',1,'2023-07-18 04:08:27'),(2726,'API_06a93b693a9ca44debfd049bacf7f023','设置作业状态&添加历史巡检作业ID','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/mission_status','POST',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-10-15 02:14:22'),(2727,'API_43b4c04e1fbe2b6cca7c0296b800f7a9','设置作业状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/mission/mission_status','POST',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-10-15 02:14:14'),(2728,'API_1cc474da611339638de4fa2b811b78c8','当前所有航线异常点位信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/temperatureMeasuring_point_info/abnormal_data','POST',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-10-15 02:14:10'),(2729,'API_64415b4d0e44e202dda0581a0ebbd77b','获取GPS坐标地址列表信息,地址数不能超过200个[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeos','POST',_binary '\0',_binary '\0','2022-05-25 08:34:46',1,'2024-09-09 09:15:05'),(2730,'API_a1ef2aa9d6c09ba78cbd8bfa1442dec4','上报设备位置','上报设备位置','cmii-uav-cloud-live','/client/live/stream/reportPosition','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:32'),(2731,'API_4a29f59c53ba76b36ba5785cac04774d','上报视频流事件','上报视频流事件','cmii-uav-cloud-live','/client/live/stream/reportVideoEvent','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:31'),(2732,'API_8fac5b9b410c904a26af1fae7b53263a','视频数据回放-获取视频片段列表','视频数据回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/videoList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:33'),(2733,'API_1fa6f8a0787d98b0718a18520a5835c3','视频数据回放-播放M3U8文件','视频数据回放-播放M3U8文件','cmii-uav-cloud-live','/public/his/videoPlay/playM3u8','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:31'),(2734,'API_96d29c6f9142d88a2c5d0673bad041f4','视频数据回放-获取Token','视频数据回放-获取Token','cmii-uav-cloud-live','/video/playback/createToken','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:37'),(2735,'API_4a4413b74f7ea53fa4a81a79abbf5cce','视频数据回放-获取设备编号列表','视频数据回放-获取设备编号列表','cmii-uav-cloud-live','/video/playback/getDeviceList','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:32'),(2736,'API_cb47492784522c21d3ca7e46dd3749ab','视频数据回放-生成回放片段','视频数据回放-生成回放片段','cmii-uav-cloud-live','/video/playback/generateList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:31'),(2737,'API_9230ba3e7a8a8507a4a6e378159067a6','视频数据回放-生成回放片段2','视频数据回放-生成回放片段2','cmii-uav-cloud-live','/video/playback/generateList2','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:39'),(2738,'API_f2daace874086ea979701b88fb223f39','视频数据回放-获取视频数据日期分布','视频数据回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/getDataDistribution','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-10-12 09:42:38'),(2739,'API_cddd52bf039445da3e93dacbee8730d2','查询兴趣点类型列表','查询兴趣点类型列表','cmii-uav-gis-server','/poi/listType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2740,'API_519ce6839a5627a4e6684b8afa49283f','新增兴趣点类型','新增兴趣点类型','cmii-uav-gis-server','/poi/addType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2741,'API_78e909523e148485bcf009419b83336c','编辑兴趣点类型','编辑兴趣点类型','cmii-uav-gis-server','/poi/editType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2742,'API_99f10f9db5b2d0e32e13aa6fa8264c16','删除兴趣点类型','删除兴趣点类型','cmii-uav-gis-server','/poi/deleteType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:15'),(2743,'API_4e7774a1bbe37e82dc280607195e0f85','查询兴趣点类型详情','查询兴趣点类型详情','cmii-uav-gis-server','/poi/getType','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:15'),(2744,'API_2642d80fb9a584a5217a3cf1442f1d6a','查询默认icon列表','查询默认icon列表','cmii-uav-gis-server','/poi/listIcons','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:15'),(2745,'API_61b08ae4a35dc790bd8bc207192ba2d8','分类聚合','','cmii-uav-gis-server','/zydPOI/aggregation','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2746,'API_16df9b64e7c2515ae4456f56f578d35f','获取兴趣点列表','获取兴趣点列表','cmii-uav-gis-server','/zydPOI/getData','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2747,'API_7955f726c1a54806b9ee1dd98e25e876','判断兴趣点名称是否重复','','cmii-uav-gis-server','/zydPOI/judgeName','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2748,'API_3b279f6149886ec0f7264363d568190e','新增兴趣点','新增兴趣点','cmii-uav-gis-server','/zydPOI/addPoint','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:15'),(2749,'API_892a48feb7054a94e4b470dfee32b92a','编辑兴趣点','编辑兴趣点','cmii-uav-gis-server','/zydPOI/editPoint','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2750,'API_e88fc17c0a29d123425d694e612975ce','删除兴趣点','删除兴趣点','cmii-uav-gis-server','/zydPOI/deletePoint','DELETE',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2751,'API_5f85cc33c12ea88c8b4165e0f44a8e9b','导入excel','导入excel','cmii-uav-gis-server','/zydPOI/import','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2752,'API_7392a4ebd8263156be1bb1abb96c6cba','根据type下载POI模板文件','','cmii-uav-gis-server','/zydPOI/download','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:15'),(2753,'API_1b729c4d1c53d59fae7da2cf34fbc4b3','接口扫描','','cmii-uav-gis-server','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2754,'API_e05e68b3715f3afebdb39c014aadfa72','ping','','cmii-uav-gis-server','/cmii/ping','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2755,'API_b2ef9094756f45a1201924f737ddd547','health','','cmii-uav-gis-server','/cmii/health','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2756,'API_66eb882e5788c171902f66f9b44dee04','env','','cmii-uav-gis-server','/cmii/env','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2757,'API_d5a547e77a3853208f0b5e3b7dd92ca5','getDocumentation','','cmii-uav-gis-server','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2758,'API_fe7dcd8ebf3e6c929954413ca22a5a9d','uiConfiguration','','cmii-uav-gis-server','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:14'),(2759,'API_2b965ae2a94864d8065d9b8e74fe4a93','securityConfiguration','','cmii-uav-gis-server','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2760,'API_6b839e6eea96fac568c62a4482d440f4','swaggerResources','','cmii-uav-gis-server','/swagger-resources','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2761,'API_495ca55302ba9a0d874d581567e049df','getDocumentation','','cmii-uav-gis-server','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:15'),(2762,'API_057c1cf0947e0a6117a05e90bc11da2b','error','','cmii-uav-gis-server','/error','',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-09-09 09:17:16'),(2763,'API_6ccf466fa0d07e8fa045a7fe8ec86dbc','用户登出','','cmii-suav-supervision','/supervisor/logout','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:55'),(2764,'API_5ad1bce0f2915d307c3d9083ddc2d9c1','验证校验码','','cmii-suav-supervision','/supervisor/checkToken','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:57'),(2765,'API_a71bb5c893d5b05dffac9cf1ef847e5e','更具图片id获取图片code','','cmii-suav-supervision','/supervisor/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:59'),(2766,'API_87ebd94fdf0ab87347b1f58a82fd38d3','获取图片验证码(图片)','','cmii-suav-supervision','/supervisor/getImageCode','GET,POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:57'),(2767,'API_fbe61a5b5b5cc94212caa6cd4bcddc5d','监管用户登录','监管用户登录','cmii-suav-supervision','/supervisor/login','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2768,'API_1b0e9fd6096c56a71b64f135757bf348','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/enable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:58'),(2769,'API_bcfa1ca4a7e003ebd519892d7f58c6f4','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/disable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:57'),(2770,'API_c5bd4ac70995607e5051f066e1257257','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/resetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:57'),(2771,'API_17e849aa95a21501891e9f89668c1f24','监管用户列表','','cmii-suav-supervision','/supervisor/findPage','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:58'),(2772,'API_9c94fef7fd453ad19df4ec86d59544e2','增加监管用户','','cmii-suav-supervision','/supervisor/add','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2773,'API_fc4e5577228b3e5a70c8e435bfab67c2','修改监管用户信息','','cmii-suav-supervision','/supervisor/update','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2774,'API_a863d8197f08a3873927c0a1552087c9','删除监管用户','','cmii-suav-supervision','/supervisor/delete','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2775,'API_b951953b73e61e8ea318ed057d559b79','根据code获取用户Token','根据code获取用户Token','cmii-suav-supervision','/permission/getToken','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:59'),(2776,'API_66e1874d7b98d239fd09465fbf50797a','更新用户名称','','cmii-suav-supervision','/supervisor/profile/updateName','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2777,'API_b27a1b04d95f936fec102d05dca1a2f2','根据token获取用户基本信息','','cmii-suav-supervision','/supervisor/profile/getMyDetail','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:58'),(2778,'API_6849451376c268b42de7e00e58ceb084','ping','','cmii-suav-supervision','/cmii/ping','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2779,'API_64d5e0077c373488dc566eb1a4647f45','health','','cmii-suav-supervision','/cmii/health','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:59'),(2780,'API_6d47e40ec829a32e76a08bb2b12045ac','env','','cmii-suav-supervision','/cmii/env','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2781,'API_333e3e3f61a2fce410046633a2a80dd5','游客用户注册','','cmii-suav-supervision','/registry','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2782,'API_3fe8fcc7e5c8474b127a8a4a822a9b84','用户登出','','cmii-suav-supervision','/logout','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2783,'API_5dbb319621d7ced2d3b459eb46cbc3ed','验证校验码','','cmii-suav-supervision','/checkToken','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:17:00'),(2784,'API_512e3aba0d2f55c1e8a63de62a452fa9','更具图片id获取图片code','','cmii-suav-supervision','/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:58'),(2785,'API_3ee085d0ad4227df73cf0620336dae24','获取图片验证码(图片)','','cmii-suav-supervision','/getImageCode','GET,POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:56'),(2786,'API_bf39f7edfcf6d195c5a83ee13ee58c07','手机验证码登录','','cmii-suav-supervision','/code/login','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-09-09 09:16:58'),(2787,'API_139f9b6382a146553f718049ec275f8c','游客用户登录','游客用户登录','cmii-suav-supervision','/login','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2788,'API_f069d5680083a52e909c5186e0d997ab','更新用户名称','','cmii-suav-supervision','/profile/updateName','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2789,'API_25342285caaef784bef54becf99be880','根据token获取用户基本信息','','cmii-suav-supervision','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2790,'API_44c208ecd306e996277917090d6db40f','更新用户头像','','cmii-suav-supervision','/profile/updateAvatar','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2791,'API_6d0eab90bbd8ec2ae2a722e21a1c1d7e','申请更新邮箱','','cmii-suav-supervision','/profile/updateEmail','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2792,'API_a226e36beb0a2947695d07f37c61c6bc','执行更新邮箱','','cmii-suav-supervision','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2793,'API_f90a896ed4127a489772cf6fe81e1958','重新绑定手机','','cmii-suav-supervision','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2794,'API_0ca946fcc0b80154891022033d088f12','添加用户账号','','cmii-suav-supervision','/profile/addAccount','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2795,'API_9a817fa14bb7e5f51a69d1655a9b3308','重置密码,验证旧密码','','cmii-suav-supervision','/profile/resetPwd','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2796,'API_2ad4fc1c609019c3f4c28198392a3f5a','找回密码','','cmii-suav-supervision','/profile/findPwd','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2797,'API_db24b1e3aa5b1707a8c5b4aa797c8615','认证申请','','cmii-suav-supervision','/profile/authApplying','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2798,'API_e43e252fe18e33bae70774a90fd3b847','检测注册验证码','','cmii-suav-supervision','/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2799,'API_f75ef00424f78b4273c9fb5d943f41f9','发送找回密码验证码','','cmii-suav-supervision','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2800,'API_4a889c8d9229c7d41cd5fbef1733738e','检测找回密码验证码','','cmii-suav-supervision','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2801,'API_1ea89600aae8fc4c25dcc375b80fc077','发送绑定手机号验证码','','cmii-suav-supervision','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2802,'API_aa985e09c31e4e428a70f3f5420077d5','验证绑定手机号验证码','','cmii-suav-supervision','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2803,'API_0db3446721b5fb89a5bd54571ed34051','发送解绑手机号验证码','','cmii-suav-supervision','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2804,'API_beaa6d055f59d68b459662ae0889b796','验证解绑手机号验证码','','cmii-suav-supervision','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2805,'API_f957d1588853fcbef978cf6713ff7308','发送登陆验证码','','cmii-suav-supervision','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2806,'API_f5c44436b52dc958ab0b0a3dd30ef84f','检测登陆验证码','','cmii-suav-supervision','/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2807,'API_e3debdef97e3a91be8c7b589276bfdb4','发送注册验证码','','cmii-suav-supervision','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2808,'API_63b893bb1922aeb76d517e954352ff21','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/user/enable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2809,'API_57a113ba3e0f837aab672c191d8fa44f','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/user/disable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:55'),(2810,'API_a602624584a3a214310c2e10577c6bbd','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/user/resetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2811,'API_396488c3c94c7beb85a7404412f1f5ca','获取用户详细信息','','cmii-suav-supervision','/supervisor/user/getUserDetail','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2812,'API_e91ba6f811542c75bc149692fbec571e','获取用户详细信息(数据回填专用)','','cmii-suav-supervision','/supervisor/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2813,'API_99f1d094722c119b90f28dc4b0aacda7','游客认证申请同意','','cmii-suav-supervision','/supervisor/user/authAccess','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2814,'API_e6f48213fb4b279fb7569b90c915b7b8','游客用户列表','','cmii-suav-supervision','/supervisor/user/findPage','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2815,'API_b0ed9007d197f1d0fdaf482a71841ee4','删除监管用户','','cmii-suav-supervision','/supervisor/user/delete','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:55'),(2816,'API_218034a999216813471b2f75584af9b6','查询所有机场','','cmii-suav-supervision','/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2817,'API_e2ce37ab81f0b149ea08d3857cf96713','按条件分页查询空域申请和时间段','','cmii-suav-supervision','/zydAirspace/queryByConditons.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2818,'API_133c9d96c71c4a1e0eac936cd8aa4b81','模糊查询空域名称列表','','cmii-suav-supervision','/zydAirspace/queryAreaName.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2819,'API_ab43e21c1dded0e5f0fbd055f7b3954a','查询所有配置列表','','cmii-suav-supervision','/zydAirspace/queryAllConfig.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2820,'API_f2e4e3172ea9d65bd8592cd016849989','查询所有状态列表','','cmii-suav-supervision','/zydAirspace/queryAllStat.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2821,'API_a1a8667eaf5a7363a25739c2caf5e53c','新增空域申请和时间段','','cmii-suav-supervision','/zydAirspace/saveAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2822,'API_bb50ad65d3c9f5dc6ca39919ce93203f','判断空域名称是否重复','','cmii-suav-supervision','/zydAirspace/judgeAirsNameRep.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2823,'API_6b7567ceb891a1055219639aa8ffd3b6','编辑修改空域申请','传入空域申请json字符串,需要有主键','cmii-suav-supervision','/zydAirspace/editAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2824,'API_4766ec583c0588243cf6ac1588ce797e','批量删除空域申请和时间段-n','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/deleteAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:55'),(2825,'API_2c822f473adee2133c554741b48ec5f9','强制删除空域(测试调用)','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/forceDeleteAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2826,'API_74c65819bdf9be30aad8c6e6c2fb63cf','查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:56'),(2827,'API_bdc4ff25321301b0b87e8c947513a76e','查询空域详情-n(数据回填专用)','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do/fallBack','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2828,'API_5389cfe64dae96de95d9cd42ff999a6b','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2023-05-04 09:35:23'),(2829,'API_4ea09400a61b86b6e825f14ba6d69e30','批量导出模板','','cmii-suav-supervision','/zydAirspace/downloadDoc.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:17:00'),(2830,'API_db80e967db9509f1bc912036aa8c5d05','手动提交终审','','cmii-suav-supervision','/zydAirspace/manualAudit.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2831,'API_975441f44b90576602168cc69691ac80','下载审批文件','','cmii-suav-supervision','/zydAirspace/getAppliFile.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2832,'API_d672d3cf96c75e51736b5abc9dca42ee','获取机场区域以及禁飞区','','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2833,'API_de485d999f4874d868daa311c9210903','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2834,'API_9bce110b79fea5952fde30aca4d130d4','查询省份信息列表','','cmii-suav-supervision','/zydAirspace/province/list','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2835,'API_fb6075fa37a5e0469ddba87ac99d8184','查询区域下面子区域列表','','cmii-suav-supervision','/zydAirspace/subarea/list','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:57'),(2836,'API_578626ba41dc19e11d09258c5407f896','接口扫描','','cmii-suav-supervision','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2837,'API_ba635969d5856156769365246476f27d','getDocumentation','','cmii-suav-supervision','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2838,'API_ff478bb1e86c8a09f21bad13ddc70023','uiConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:58'),(2839,'API_cac0bbcc3d6c5d50f5b09ecf085f24b0','securityConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:17:00'),(2840,'API_94293bba2bec3138ef69bb641255faa4','swaggerResources','','cmii-suav-supervision','/swagger-resources','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-09-09 09:16:59'),(2841,'API_6c32a4d692529a8bd36ce4323f5c2b8f','getDocumentation','','cmii-suav-supervision','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-05-26 01:33:55',1,'2024-09-09 09:16:59'),(2842,'API_588d350c3d64e2ec50bbad8ecf910937','error','','cmii-suav-supervision','/error','',_binary '\0',_binary '\0','2022-05-26 01:33:55',1,'2024-09-09 09:16:59'),(2843,'API_7265580d49b1dada846dbd70c200910a','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-mission','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-05-31 04:00:44',1,'2023-07-18 04:08:27'),(2844,'API_f80c802fef4e5f571069e5c95206e99c','根据无人机code列表查询无人机名称详情','','cmii-uav-device','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-08 03:06:22',1,'2024-10-11 01:36:52'),(2845,'API_467888d231fd342e1091a6bec97d4344','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-device','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:22',1,'2024-10-11 01:36:54'),(2846,'API_0fc7d7501f4f12b0c6fb98aa9887076c','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-mqtthandler','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:29',1,'2023-05-04 09:36:21'),(2847,'API_399251fd305aaff7576b45c5f91004e1','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-airspace','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:31',1,'2023-03-29 08:30:25'),(2848,'API_5b9b29de98fbe910f44a04fc69b0e3ad','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-surveillance','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:41',1,'2023-03-29 09:05:05'),(2849,'API_538a5f3c59889aa1c96a2776b001b4b5','视频数据回放-获取设备编号名称列表','视频数据回放-获取设备编号名称列表','cmii-uav-cloud-live','/video/playback/getDeviceInfoList','GET',_binary '\0',_binary '\0','2022-06-08 03:06:49',1,'2024-10-12 09:42:32'),(2850,'API_e665b4708505f122ccf5a4d2bdcc5dc3','视频数据回放-获取轨迹设备编号名称列表','视频数据回放-获取轨迹设备编号名称列表','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getDeviceInfoList','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:08'),(2851,'API_25b9b6d1ef05af13eb38a9c4bc090e0c','视频数据回放-获取无人机位置[Feign接口]','视频数据回放-获取无人机位置[Feign接口]','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getPlanePosition','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:09'),(2852,'API_0c9f244c5855d43b8cadb27c4faa3c64','查询时间范围内作业和任务数量','时间戳秒级','cmii-uav-mission','/api/uav/mission/mission_info_list/count_mission_task_with_companies','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:02'),(2853,'API_e0335b50fb70b0ce418962c90d87a387','按月或者按年查询一个公司的作业数量','','cmii-uav-mission','/api/uav/mission/mission_info_list/query_mission_count_by_month','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:15'),(2854,'API_4cb56ccb651dfa58c53908fc641684ce','根据任务类型查询作业数量','','cmii-uav-mission','/api/uav/mission/mission_info_list/queryMissionCountByTaskType','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:13'),(2855,'API_b1e0511633ea1a26b639ba4f9d6e373f','分页查询标签照片, 作业内 时间排序, missionId 必须带','','cmii-uav-mission','/picture/query_label_pics_order','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:09'),(2856,'API_2117f673834e4af5349d456b3749addb','为照片添加标签信息','','cmii-uav-mission','/picture/attach_labels','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:14'),(2857,'API_618e3986aba1cb5a882f0aef89dbe0a0','通过id删除照片','','cmii-uav-mission','/picture/del_pics_by_id','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:10'),(2858,'API_2b0af62cb60ab3a7c97bdc99b469e626','前端上传单机监视截图','','cmii-uav-mission','/picture/upload_screenshot','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:10'),(2859,'API_38d51ee3d747bfe74d5442454155adaf','指定公司范围,获取问题标记的统计信息','','cmii-uav-mission','/picture/get_statistic_of_labels','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:11'),(2860,'API_10dbdb9b76ccec46dbf89a91dfc49abf','分页查询标签照片, 根据作业id 和 标签,都没有的话就是全量, 不分页的话 page size 和num 传0','','cmii-uav-mission','/picture/query_label_pics','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-10-10 08:57:14'),(2861,'API_c8dec68bcb010e5ed3985f4f9a7e7cf2','根据无人机code列表查询无人机名称详情','','cmii-uav-mission','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-08 03:27:37',1,'2023-07-18 04:08:27'),(2862,'API_e57e273f386c9972cab7ab6c390dbd60','判断区域名称是否重复','','cmii-suav-supervision','/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:55'),(2863,'API_9a0c18a8a8d3777c9ef3567fdd0110ea','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/areaPlan/edit','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:59'),(2864,'API_0d53a330385a97cfca14ac906661615d','查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/detail','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:57'),(2865,'API_d814d729fb7585caa3f3a1b98b80fb64','删除区域','传入区域申请主键','cmii-suav-supervision','/areaPlan/delete','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:56'),(2866,'API_f274be45b391f6ffd8d5d2f7e025f7b3','新增区域','','cmii-suav-supervision','/areaPlan/save','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:56'),(2867,'API_c87b29587893d91169b9585dd577028d','判断飞行计划名称是否重复','','cmii-suav-supervision','/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:59'),(2868,'API_c3b928b0401d9d8ecfb6b59d7a0e3977','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/flightPlan/edit','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:58'),(2869,'API_20cf9154c913bad4361a04698f2b4bab','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/flightPlan/detail','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:56'),(2870,'API_da04c9d67235436d8577c5cb5cc8ed4c','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/delete','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:16:58'),(2871,'API_6c37efaea2e802359a0b46cf054d2247','申报飞行计划','','cmii-suav-supervision','/flightPlan/save','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-09-09 09:17:00'),(2872,'API_a7564eea3f085d0f3580037297f7cb23','视频数据回放-获取无人机坐标','视频数据回放-获取无人机坐标','cmii-uav-cloud-live','/video/playback/getPlanePosition','GET',_binary '\0',_binary '\0','2022-06-09 07:19:49',1,'2024-10-12 09:42:36'),(2873,'API_af222ac23f8ce4c94137d994714ec5d6','视频数据回放-更新视频坐标','视频数据回放-更新视频坐标','cmii-uav-cloud-live','/video/playback/updateVideoAddress','GET',_binary '\0',_binary '\0','2022-06-09 07:19:49',1,'2024-10-12 09:42:34'),(2874,'API_adbcf1b0d5b5f2a19ac838943ef82153','纵横 吊舱控制功能开关;开启后由SDK控制;关闭后由GCS控制','','cmii-uav-mqtthandler','/payload/jouav/pod_switch','POST',_binary '\0',_binary '\0','2022-06-22 06:37:46',1,'2024-09-25 08:48:44'),(2875,'API_371f2b89562c9ea39aab95ab544b5a42','根据无人机code列表查询无人机名称详情','','cmii-uav-mqtthandler','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-22 06:37:48',1,'2023-05-04 09:36:21'),(2876,'API_d52925b89dc3c885d911e2d40071ea58','纵横 吊舱控制功能开关','','cmii-uav-mqtthandler','/jouav_cmd/pod_switch','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2877,'API_34774feb37b295b26e4c951b1dfd3474','纵横球机控制动作指令','','cmii-uav-mqtthandler','/jouav_cmd/gimbal_cmd','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2878,'API_67c9c8f82b2f0292126562577ce8268b','纵横发送航线地址、推流地址到设备','','cmii-uav-mqtthandler','/jouav_cmd/plan_push','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2879,'API_28b75f2da605c788a11179ba981f9bea','起飞、降落指令','','cmii-uav-mqtthandler','/jouav_cmd/take_off_or_landing','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2880,'API_f282df87ef3a3d9ec6a9500aeb4f2551','控制跟踪航点指令','','cmii-uav-mqtthandler','/jouav_cmd/track_to','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2881,'API_cc43a57031866396dbc337f85e46201d','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-09-09 09:16:56'),(2882,'API_c76c3c428e4ed32f01a04a6ce85cab49','分页查询','','cmii-suav-supervision','/areaPlan/query','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-09-09 09:17:00'),(2883,'API_78e86c7b545ada097bfcbb860800e8ff','提交申请','','cmii-suav-supervision','/flightPlan/submit','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-09-09 09:16:59'),(2884,'API_f789a7f9391b844d4bf06c97b3ca20f2','审批飞行计划','','cmii-suav-supervision','/flightPlan/audit','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-09-09 09:16:55'),(2885,'API_dca2ed8e853203fff9d5e3268c4e8ba1','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-09-09 09:16:59'),(2886,'API_34a2f05d6ecd91656e9f5cda769612a0','分页查询','','cmii-suav-supervision','/flightPlan/query','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-09-09 09:16:58'),(2887,'API_d59355c024b0646f902bd1be70f823dd','ping','','cmii-uav-brain','/cmii/ping','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2888,'API_f4650bc93cc283af15117fc064485c4d','health','','cmii-uav-brain','/cmii/health','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2889,'API_19aa7d34e670cb6d9c2c1fe6fbf53f26','env','','cmii-uav-brain','/cmii/env','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2890,'API_cba70abc525d5d4ea9fa350300d0cc59','图像处理(file)【返回base64编码图片】','图像处理(file)【返回base64编码图片】','cmii-uav-brain','/brain/tech/process/file','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2891,'API_2a5a6c58e776ac8e89f458f5454e649e','图像处理(file)【返回图片流】','图像处理(file)【返回图片流】','cmii-uav-brain','/brain/tech/process/file/stream','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2892,'API_6cbb1add91cecf312fcbcf8682fcf169','图像处理(url),返回图片流【用于测试AI算法】','图像处理(url),返回图片流【用于测试AI算法】','cmii-uav-brain','/brain/tech/process/url','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2893,'API_5d2c1a463b2d59e9a2fb2f8762d4a808','生成识别图片对应的url地址【测试算法时使用】','生成识别图片对应的url地址【测试算法时使用】','cmii-uav-brain','/brain/tech/process/getUrl','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2894,'API_a8489cd6b0eab5cfc65aaa66debd422c','查询技术数据详情','查询技术数据详情','cmii-uav-brain','/brain/scene/type/get','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2895,'API_cb2623e1259c0d088baef25fc136e5cf','查询AI场景数据列表','查询AI场景数据列表','cmii-uav-brain','/brain/scene/type/list','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2896,'API_718c8b177378b7cbb96cf0adf7377d8d','根据Token获取用户','根据Token获取用户详情信息','cmii-uav-brain','/brain/user/getMyDetail','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2897,'API_14a5077ac39231bad93558a05cab015a','根据Token获取用户菜单树','根据Token获取用户菜单树','cmii-uav-brain','/brain/user/getMyResourceTree','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2898,'API_4f0781f565b3c5b41f8af48746f3bf63','根据code获取用户Token','根据code获取用户Token','cmii-uav-brain','/brain/user/permission/getToken','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:24'),(2899,'API_80ace50de3bd9cab498410d556a6e01a','接口扫描','','cmii-uav-brain','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2900,'API_77b9545993ac20cecf908a185f5e2d50','getDocumentation','','cmii-uav-brain','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2901,'API_a872db78152e64288e5685303bda05cb','uiConfiguration','','cmii-uav-brain','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2902,'API_fe37d11b51f4d6a288b768010084f0e9','securityConfiguration','','cmii-uav-brain','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2903,'API_71abf30639a070795f374920607f0635','swaggerResources','','cmii-uav-brain','/swagger-resources','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2904,'API_cb67d0c55c954fffed1f95b134d953b2','getDocumentation','','cmii-uav-brain','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2905,'API_2464bb68d78cf4ebfeb14a9784a965a9','errorHtml','','cmii-uav-brain','/error','',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-09-09 09:14:25'),(2906,'API_fb3e1a53007da7e060023fde9843945e','获取短信发送情况','','cmii-uav-emergency','/sms/getCount','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2907,'API_f642e8ff24d8b66885ab14b7bcfa9206','发送短信','传入主键','cmii-uav-emergency','/sms/send','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2908,'API_59a8585c6564c0207251355541ca5eac','编辑成员','传入区域json字符串,需要有主键','cmii-uav-emergency','/sms/edit','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2909,'API_2473e89631631a40dcb8427e18619d91','获取分享码','','cmii-uav-emergency','/sms/getShareCode','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2910,'API_b21b6625cd48d58050b6322b1a99f9b0','批量删除','传入主键','cmii-uav-emergency','/sms/delete','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:04'),(2911,'API_7da3e9c06b41d1e46ef37ed77b4af086','新增成员','','cmii-uav-emergency','/sms/save','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:03'),(2912,'API_ee2b0d43d597bd9530a4dcd996f40294','分页查询','','cmii-uav-emergency','/sms/query','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2913,'API_2f1249fd39eb628729135297a1105832','接口扫描','','cmii-uav-emergency','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:03'),(2914,'API_4255f2b64c15e15839d28fa952e82c88','ping','','cmii-uav-emergency','/cmii/ping','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2915,'API_89d99ebc8d12f2acf7e5b76635712d3b','health','','cmii-uav-emergency','/cmii/health','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:03'),(2916,'API_3a8c7fad5aa6950d1016ebf74e962443','env','','cmii-uav-emergency','/cmii/env','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2917,'API_2856254fff02d83e27297e433e8885ae','getDocumentation','','cmii-uav-emergency','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:04'),(2918,'API_0651f53f94292a5c61d363b244d8b683','uiConfiguration','','cmii-uav-emergency','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:04'),(2919,'API_61ac231f6fd2c289609ee80921691355','swaggerResources','','cmii-uav-emergency','/swagger-resources','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2920,'API_28b74bf2a621bd6ccf469522508b4aa7','securityConfiguration','','cmii-uav-emergency','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:04'),(2921,'API_857423cceae5e4b5c4eace2780f06881','getDocumentation','','cmii-uav-emergency','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2922,'API_cf50d9b2a3513d9385aca11b0b206567','error','','cmii-uav-emergency','/error','',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-10 09:08:05'),(2923,'API_86f5a19f6ebf7fd256a33236f13c103b','删除巡检航线,参数巡检航线id,不是航线id','','cmii-uav-mission','/patrol_line/del_patrol','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-10-10 08:57:06'),(2924,'API_fae9e7aa2d27bff1bdc4e73464bfc8e5','添加系统航线到巡检航线,参数 系统航线id','','cmii-uav-mission','/patrol_line/add_patrol','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-10-10 08:57:12'),(2925,'API_e29f444306b6eae93df71b36b9381f69','查询系统航线,剔除已经导入的','','cmii-uav-mission','/patrol_line/query_air_line','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-10-10 08:57:03'),(2926,'API_b058274a1ff37d47a2274fab93153ef7','查询每一条巡检航线,关联的作业信息','','cmii-uav-mission','/patrol_line/query_every_patrol_detail','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-10-10 08:57:02'),(2927,'API_80d0bc0352696bb982c22b52fa3689a5','查询大屏作业数量统计,进行中,已完成,今日完成','','cmii-uav-mission','/patrol_line/query_mission_num_stats','GET',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-10-10 08:57:08'),(2928,'API_f76cb6c2d41fd22283f87d3ab7ec19e7','派遣无人机出警, 与公安一样用法','','cmii-uav-surveillance','/surveillance/alert/dispatch_uav','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-09-23 20:58:58'),(2929,'API_0d34d72bfd40335a67152bf7daf4596f','分页查询公司范围的告警信息, 时间近的在前面','','cmii-uav-surveillance','/surveillance/alert/query_alert_events','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-09-23 20:59:01'),(2930,'API_bc7711abea8bf1ed21696eb4d64d449c','上传外部警情','','cmii-uav-surveillance','/surveillance/alert/upload_alert','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-09-23 20:58:59'),(2931,'API_46fa94c3ca6b00a4f67935a08e260611','大屏查询告警统计','','cmii-uav-surveillance','/surveillance/alert/query_alert_stats','GET',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-09-23 20:58:58'),(2932,'API_7336f4225e04742341a56e4c729dc65c','处理警情','','cmii-uav-surveillance','/surveillance/alert/handle_alert_event','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-09-23 20:58:59'),(2933,'API_1e0a66a4227d192f2f83ae53b08d75ff','发送警情短信','','cmii-uav-surveillance','/surveillance/alert/send_alert_notice','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-09-23 20:58:57'),(2934,'API_e1c2f48fb99b28594dc74c8a5fe0bb78','删除告警','','cmii-uav-surveillance','/surveillance/alert/delete_alert','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-09-23 20:58:57'),(2935,'API_81c1e08421ec5908880a0d858f65a383','飞手-新增飞手信息','飞手-新增飞手信息','cmii-uav-user','/flyer/addFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:10'),(2936,'API_85eb4f45e9968afe2a983c95ebcd8858','飞手-编辑飞手信息','飞手-编辑飞手信息','cmii-uav-user','/flyer/updateFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:12'),(2937,'API_bdccda43feeb0bd3450fa97882968d44','飞手-分页查询飞手信息','飞手-分页查询飞手信息','cmii-uav-user','/flyer/queryPageFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:09'),(2938,'API_910d5ed8cccbe03c2627d001dd126e6b','飞手-注销飞手信息','飞手-注销飞手信息','cmii-uav-user','/flyer/cancellationFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:08'),(2939,'API_e9ad7513848fe2abf3898c8893766e01','飞手数据字典-查询合格证等级','飞手数据字典-查询合格证等级','cmii-uav-user','/flyer/queryCertificateLevel','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:20'),(2940,'API_ff107246c0528de2d6e8ca2611de5659','飞手数据字典-查询飞手违规类型','飞手数据字典-查询飞手违规类型','cmii-uav-user','/flyer/queryViolationType','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:16'),(2941,'API_f6d98f98ddf021b4e68e5ee6cf485f29','飞手数据字典-查询飞手违规处罚','飞手数据字典-查询飞手违规处罚','cmii-uav-user','/flyer/queryViolationPenalty','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:08'),(2942,'API_1090f162960dd6510daacf0fa4cd82b7','飞手-手动验证飞手信息','飞手-手动验证飞手信息','cmii-uav-user','/flyer/checkFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:15'),(2943,'API_6dec08acb3a67d9891f580acced31157','飞手-根据id查询飞手信息','飞手-根据id查询飞手信息','cmii-uav-user','/flyer/getFlyerById','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:14'),(2944,'API_0026ba25d9100c225ea798b6406e92e3','飞手-根据id查询飞手信息用于编辑','飞手-根据id查询飞手信息用于编辑','cmii-uav-user','/flyer/getFlyerForEdit','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:21'),(2945,'API_d7e9c45b91a5dbfed4e918e6d9351af3','飞手违规-录入飞手的违规记录','飞手违规-录入飞手的违规记录','cmii-uav-user','/flyer/addIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:16'),(2946,'API_bf9d49687be6013694a2003c833c940b','飞手违规-编辑飞手的违规记录','飞手违规-编辑飞手的违规记录','cmii-uav-user','/flyer/updateFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:09'),(2947,'API_2f3ee3aa76f7fd716d136764c9f24951','飞手违规-分页查询飞手的违规信息','飞手违规-分页查询飞手的违规信息','cmii-uav-user','/flyer/queryPageIllegal','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:20'),(2948,'API_49d7922291aa900378bb7a8dc75a2a11','飞手违规-根据id查询飞手违规信息','飞手违规-根据id查询飞手违规信息','cmii-uav-user','/flyer/queryFlyerIllegalById','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:13'),(2949,'API_f3b016b098a0ff37dca34b05ee67aef3','飞手违规-手动处理飞手违规信息','飞手违规-手动处理飞手违规信息','cmii-uav-user','/flyer/dealFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-10-11 15:37:12'),(2950,'API_43a6d9d4648b716b6e4952b20eb2a04b','测试锁与事物','','cmii-uav-user','/api/uav/uavTestPO/testLockAndTrans','POST',_binary '\0',_binary '\0','2022-07-25 07:59:56',1,'2024-10-11 15:37:12'),(2951,'API_3148113e1fd6e767775edbc659344963','数据权限升级3.2.6','','cmii-uav-user','/api/uav/group-sync/dbMygration3_2_6','PUT',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-10-11 15:37:08'),(2952,'API_f6a5aeaac5b06b81000a77d71f23a474','查询权限组应用范围的详细列表','','cmii-uav-user','/api/uav/group-template/listScopeTemplates','POST',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-10-11 15:37:11'),(2953,'API_62f0c326f1123b42b06be36add8eed87','删除默认模板模板','','cmii-uav-user','/api/uav/group-template/deleteDefault','POST',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-10-11 15:37:16'),(2954,'API_5dfe79389effe7386b69be9f0b878478','删除模板','','cmii-uav-user','/api/uav/group-template/delete','POST',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-10-11 15:37:15'),(2955,'API_5d12314b254928c27af51bef8cd0b0bf','查询基础设施总量','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/query_all_tower_num','POST',_binary '\0',_binary '\0','2022-07-25 08:00:04',1,'2024-10-15 02:14:14'),(2956,'API_aafbe01fd349f681d798e4be28ee8f78','查询三维航线自动规划结果','','cmii-uav-mqtthandler','/mqtt/auto_3d_route_plan_result','POST',_binary '\0',_binary '\0','2022-07-25 08:00:07',1,'2024-09-25 08:48:45'),(2957,'API_d65e84b87a84c68daaadb46b927164e3','请求三维航线自动规划','','cmii-uav-mqtthandler','/mqtt/auto_3d_route_plan','POST',_binary '\0',_binary '\0','2022-07-25 08:00:07',1,'2024-09-25 08:48:45'),(2958,'API_c399f7b721882e6f9f363f7d69b51edb','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-waypoint','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-07-25 08:00:12',1,'2023-05-04 09:35:55'),(2959,'API_b4f88f53484abe29899574e6f835f847','查询公司范围下的在线无人机,返回map','','cmii-uav-waypoint','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-07-25 08:00:12',1,'2023-05-04 09:35:55'),(2960,'API_c1702248141b368e30b55ccf0ba994d9','根据无人机code列表查询无人机名称详情','','cmii-uav-waypoint','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-07-25 08:00:12',1,'2023-05-04 09:35:56'),(2961,'API_357b0bc1d239e8e7e1a3761b0ddb247a','获取下载码','获取下载码','cmii-uav-material-warehouse','/api/v1/warehouse/item/getDownloadCode','POST',_binary '\0',_binary '\0','2022-07-25 08:00:15',1,'2024-10-11 08:57:35'),(2962,'API_955bc8ebf9581ffacfec2b6d20184ce6','多文件下载','多文件下载,浏览器下载进度显示','cmii-uav-material-warehouse','/api/v1/warehouse/item/files/downloadByCode','GET',_binary '\0',_binary '\0','2022-07-25 08:00:15',1,'2024-10-11 08:57:35'),(2963,'API_d66e93c31b5e312f5b1f73a961fc9ec1','已完成作业,按照天统计','','cmii-uav-mission','/api/uav/mission/mission_info_list/query_mission_count_group_by_day','POST',_binary '\0',_binary '\0','2022-07-25 08:00:19',1,'2024-10-10 08:57:07'),(2964,'API_4aedb56ed7d80fb1f0128d071cb0d143','更新或新建方案','','cmii-uav-surveillance','/surveillance/demonstrate/update_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:59'),(2965,'API_87857fc7cf7c4fba2b56e850db04ebc0','激活演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/active_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:59:00'),(2966,'API_cbe39b0d7ef8a7fdce895d5b81e51968','批量激活演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/active_list','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:56'),(2967,'API_ccbf0e1dbd576d949fec40cdde7728a1','批量删除方案','','cmii-uav-surveillance','/surveillance/demonstrate/delete_list','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:59'),(2968,'API_c2a365474a79c718b712a9275f84ecda','删除演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/delete_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:57'),(2969,'API_10633a1ddd29cf9b17bd917b8605c04b','用户演示方案单一查询,航线不存在的话,名称返回空','','cmii-uav-surveillance','/surveillance/demonstrate/query_one_plan/{id}','GET',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:58'),(2970,'API_e31b0b8993f09b13321772e7de7a61d1','用户演示方案列表查询,航线不存在的话,名称返回空','','cmii-uav-surveillance','/surveillance/demonstrate/query_list_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:59'),(2971,'API_e9b62ffdc6bb54597bb059f8d0d8d55c','新建预设方案,后台使用','{\n \n \"companyId\": 2,\n \"hangarId\":\"HGR00014813\",\n \"uasId\": \"UAS00011457\",\n \"lineId\": 1584829320528187393,\n \"planType\": 2,\n \"loopTimes\": 1,\n \"presetCode\": \"XG\",\n \"presetName\": \"测温模拟\",\n \"uavVideoId\": 1\n}','cmii-uav-surveillance','/surveillance/demonstrate/create_preset_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:59:00'),(2972,'API_60e6958c74bf5f0071048416f7a497ca','预设方案新建演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/create_from_preset','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:59:01'),(2973,'API_ead42bdec92053a1a607716515095cd0','演示视频插入','','cmii-uav-surveillance','/surveillance/demonstrate/insert_video','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:57'),(2974,'API_58399737a04314b8391db33c51307559','选择视频列表','','cmii-uav-surveillance','/surveillance/demonstrate/get_video_list','GET',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:59:00'),(2975,'API_76e537350fd5572223420a82f6cdda85','startPlanById','','cmii-uav-surveillance','/surveillance/demonstrate/start_plan_by_id','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-09-23 20:58:59'),(2976,'API_edd0ddac62797aac314de6b4910b2439','给飞行监视提供航线飞行的航线id到航线名称的map','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/get_id_map_name','POST',_binary '\0',_binary '\0','2022-08-04 09:45:39',1,'2023-03-29 09:05:04'),(2977,'API_3944b886d31711968ecff43dc7eb4b86','根据无人机code列表查询无人机名称详情','','cmii-uav-surveillance','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-08-04 09:45:40',1,'2023-03-29 09:05:05'),(2978,'API_a76d872e27d1fb78706b1ca34ca49e0b','给飞行监视提供航线飞行的航线id到航线名称的map','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_id_map_name','POST',_binary '\0',_binary '\0','2022-08-04 09:45:45',1,'2024-09-09 09:16:29'),(2979,'API_f67fe93ff0be5659f0252b9d3b6143e8','根据token获取用户完整信息','','cmii-uav-user','/api/uav/user/profile/completeInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:13',1,'2024-10-11 15:37:10'),(2980,'API_59a73dfca0fffd4fe3d3a4fae3a81a41','根据token获取公司完整信息','','cmii-uav-user','/api/uav/user/profile/completeCompanyInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:13',1,'2024-10-11 15:37:18'),(2981,'API_f01b253ea480ec8ef0a03037de81b258','主平台的无人机详情查询接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/common/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2024-10-15 02:14:18'),(2982,'API_029a4abfa929bd2549cf764569c67531','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-industrial-portfolio','/surveillance/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2983,'API_b274005c6af7634b53699e63fd08b8bb','查询单个飞机目前最新航迹数据','','cmii-uav-industrial-portfolio','/surveillance/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2984,'API_ac3501733d1251084f6a17c93488169b','查询公司下7日内飞行记录','','cmii-uav-industrial-portfolio','/surveillance/queryHistoryTotal','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2985,'API_76ce7e6d8222a8689d9d9160225cc822','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-industrial-portfolio','/surveillance/queryUavPoints','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2986,'API_bed98237ebffa48faec258f2dce76189','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2987,'API_e4e62556ee42411ea978009cd4d6728f','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2988,'API_0c6ab1718cb73c1da9425a48be11a10e','模糊查询包括子公司的无人机型号列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2989,'API_cef3b076592ece6f8f9106808348c9a4','查询公司范围下的在线无人机,返回map','','cmii-uav-industrial-portfolio','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2990,'API_26112b8d999dca5fb240f3b0fe79efae','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2991,'API_220a82fb1ca3fbd73bf47d2fb1ed11a8','根据无人机编码批量获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2992,'API_c1c77dff96033eed3a158df4afd81f1f','根据无人机code列表查询无人机名称详情','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2993,'API_cd450f3b6c3bd21fee51d6e6a6c79ff6','获取项目文件存储路径信息【内部接口】','根据projObjId查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getFilePathV2','POST',_binary '\0',_binary '\0','2022-08-29 07:48:42',1,'2024-10-11 08:57:35'),(2994,'API_73af129ee1e6ed88be893161a74d82a9','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:46',1,'2024-10-11 01:36:47'),(2995,'API_30b2f1bcb26caed129daa7d90ad3e1f7','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:48:46',1,'2024-10-11 01:36:54'),(2996,'API_19ad0f424e8a0438e9601bc48ae29c37','获取插件配置列表','获取插件配置列表','cmii-uav-cloud-live','/plugin/config/list','GET',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-10-12 09:42:38'),(2997,'API_26f3af4bc58af3cc074a66f40178f27a','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unlockFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-10-12 09:42:38'),(2998,'API_a3428ce9d39cc8869562f7e35a64751c','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/removeFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-10-12 09:42:35'),(2999,'API_61d24cd62573c5ab961430663885f8be','模糊查询流程定义','模糊查询流程定义','cmii-uav-cloud-live','/workflow/config/fuzzySearchFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-10-12 09:42:35'),(3000,'API_fea3d3fd980a01a918dc11d5929793b3','查询流程定义详情','查询流程定义详情','cmii-uav-cloud-live','/workflow/config/getFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-10-12 09:42:38'),(3001,'API_62dea4b7dfe4a98e7e694e5eb202901f','校验是否存在','校验是否存在','cmii-uav-cloud-live','/workflow/config/checkIfExist','POST',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-10-12 09:42:35'),(3002,'API_4fa6c28d58725e69b445a85b697bfb6a','根据code获取用户Token','根据code获取用户Token','cmii-uav-cloud-live','/user/getToken','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:31'),(3003,'API_f7028ddc90bfea28a88864ef7323f4ef','删除视频分片','删除视频分片','cmii-uav-cloud-live','/video/part/delete','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:32'),(3004,'API_d49ce826c20e30b16e6d088667263c91','查询视频分片列表','查询视频分片列表','cmii-uav-cloud-live','/video/part/list','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:32'),(3005,'API_2335ee71c9d71a9303da6ce6d10a1b28','模糊查询视频分片','模糊查询视频分片','cmii-uav-cloud-live','/video/part/fuzzySearch','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:36'),(3006,'API_78bc33e450c01a13ead3a9c468aa1680','流程任务管理-停止任务','流程任务管理-停止任务','cmii-uav-cloud-live','/video/process/task/manage/stopTask','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:35'),(3007,'API_52875ec7bda206cb84a7156a04c5e722','流程任务管理-流程实例列表','流程任务管理-流程实例列表','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:32'),(3008,'API_95003de040144226d1ef4b9147ca19b0','流程任务管理-流程实例详情','流程任务管理-流程实例详情','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:39'),(3009,'API_ea93128efe8d3e791f52e973041eccbe','流程任务管理-插件任务详情','流程任务管理-插件任务详情','cmii-uav-cloud-live','/video/process/task/manage/getPluginTaskDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:39'),(3010,'API_8573a8935dce7f3a3057e9384878171d','流程任务管理-批量删除任务','流程任务管理-批量删除任务','cmii-uav-cloud-live','/video/process/task/manage/deleteProcList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:38'),(3011,'API_02dc6ee1eecd13a66bdbaec47a2badd0','流程任务管理-重启任务','流程任务管理-重启任务','cmii-uav-cloud-live','/video/process/task/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:34'),(3012,'API_bf6926013144f012735e0be3414cd02a','流程任务管理-插件任务重新启动','流程任务管理-插件任务重新启动','cmii-uav-cloud-live','/video/process/pluginTask/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:35'),(3013,'API_04f140baa805dc6049da1f9f04ae1135','流程任务管理-插件任务停止','流程任务管理-插件任务停止','cmii-uav-cloud-live','/video/process/pluginTask/manage/stop','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:38'),(3014,'API_33604007245ea6cb14132a321ebe459a','流程任务管理-获取流程启动参数样例','流程任务管理-获取流程启动参数样例','cmii-uav-cloud-live','/video/process/task/manage/getWorkFlowParam','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:33'),(3015,'API_577f25983223517c7194672524ae7acb','流程任务管理-实例ID下拉列表','流程任务管理-实例ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getInstanceIds','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:33'),(3016,'API_f8dcca1d25448eb817c485f82df8de75','流程任务管理-关联流程ID下拉列表','流程任务管理-关联流程ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getChainIds','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:33'),(3017,'API_364708d86dc832dcdfc00084859e6ae4','流程任务管理-关联设备ID下拉列表','流程任务管理-关联设备ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getDevices','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:32'),(3018,'API_7318e7634544cf7d9f84c55cdf5f4b26','流程任务管理-创建工作流任务','流程任务管理-创建工作流任务','cmii-uav-cloud-live','/video/process/task/manage/startWorkflow','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:31'),(3019,'API_d0cda40fdae23a056c3d311897a3000c','视频回放-获取视频数据日期分布','视频回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/manage/getDataDistribution','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:38'),(3020,'API_61c50d8ae3119b2ec8afd1df6ac3176f','视频回放-获取设备用途列表','视频回放-获取设备用途列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceCategoryList','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:36'),(3021,'API_155bc2bc2165563313f00c1ee11823b1','视频回放-播放M3U8文件','视频回放-播放M3U8文件','cmii-uav-cloud-live','/public/video/playback/manage/playM3u8','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:32'),(3022,'API_70b1e201caeb8a00969a8ba09f987c67','视频回放-通过分享码获取回放Token','视频回放-通过分享码获取回放Token','cmii-uav-cloud-live','/public/video/playback/manage/createToken','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:34'),(3023,'API_4bef90d6e3b82b7530842847039b9e00','视频回放-获取视频设备名称列表','视频回放-获取视频设备名称列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceList','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:37'),(3024,'API_0ee85dc3be7876299bfe6590c172eae2','视频回放-获取视频片段列表','视频回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/manage/videoList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:31'),(3025,'API_dd808e40342182fecdcdef172fe18129','视频回放-视频下载','视频回放-视频下载','cmii-uav-cloud-live','/video/playback/manage/download','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:38'),(3026,'API_50065eb835309bf5700e90751a6e8926','视频回放-获取分享码&提取码','视频回放-获取分享码&提取码','cmii-uav-cloud-live','/video/playback/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:30'),(3027,'API_353c4c8462864ce53cc49200b431d42f','删除设备','删除设备','cmii-uav-cloud-live','/device/manage/delete','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:37'),(3028,'API_b68ef2fb20dc815309394b31cc4ab8ec','设备ID列表','设备Id列表','cmii-uav-cloud-live','/device/manage/getDeviceCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:38'),(3029,'API_3f4e598f3a16bce2dfb7232a349ffb29','设备名称列表','设备名称列表','cmii-uav-cloud-live','/device/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:34'),(3030,'API_58fd2384f6e1dc187c559b3468c0f84d','设备分类列表','设备分类列表','cmii-uav-cloud-live','/device/manage/getDeviceCategorys','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:34'),(3031,'API_1a70b9f6e7b28467f52012eb73a879d0','设备列表','设备列表','cmii-uav-cloud-live','/device/manage/list','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:34'),(3032,'API_056744ad78b99b838ea7681cbe7bfc12','设备管理-获取分享码&提取码','设备管理-获取分享码&提取码','cmii-uav-cloud-live','/device/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:36'),(3033,'API_29894462ea9fbe104104c74868677dfd','设备新建','设备新建','cmii-uav-cloud-live','/device/manage/create','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:35'),(3034,'API_b68f84751591de0772e63e54428e1bd8','设备编辑','设备编辑','cmii-uav-cloud-live','/device/manage/edit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:37'),(3035,'API_1d50bbd5d1d01cec51b37cd60469f543','设备详情','设备详情','cmii-uav-cloud-live','/device/manage/detail','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:31'),(3036,'API_0765de93ae28fec1a6779fa040da8b88','批量删除设备','批量删除设备','cmii-uav-cloud-live','/device/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:37'),(3037,'API_5b52fce29f871d36fc05a8b6afb042b8','设备管理-分享码获取直播地址','设备管理-获取直播地址','cmii-uav-cloud-live','/public/device/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-10-12 09:42:31'),(3038,'API_a5719d1123283d1e242f1c563d557ad5','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-mission','/surveillance/queryUavPoints','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3039,'API_d2a24e0cbd110e86a33afc74244aa585','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-mission','/surveillance/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3040,'API_ccf2aac45e5cd3468cfd2dd3d12c5faa','查询单个飞机目前最新航迹数据','','cmii-uav-mission','/surveillance/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3041,'API_0c47bcc04803f6ef0f79e4096887000e','查询公司下7日内飞行记录','','cmii-uav-mission','/surveillance/queryHistoryTotal','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3042,'API_dc06c781036908a01203b2f82c2072cb','根据无人机编码批量获取公司信息','','cmii-uav-mission','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3043,'API_edcba3f145d190f294ad654fd2ef954b','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-mission','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3044,'API_c1a2687c9efa5194cea2cacf09e117d1','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-mission','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3045,'API_40c27c1e3c1b68bbbb9de245e527b011','模糊查询包括子公司的无人机型号列表','','cmii-uav-mission','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3046,'API_2ce28001c4d9a5238e5ab11944866b24','无人机航线飞行,提供航线id','','cmii-uav-mission','/surveillance/uav_command/waypoint_fly_with_lineId','POST',_binary '\0',_binary '\0','2022-08-29 07:48:58',1,'2023-06-14 09:59:35'),(3047,'API_705cb25d7c67c44404b669f6721a52c1','无人机航线飞行,直接使用航线数据','','cmii-uav-mission','/surveillance/uav_command/waypoint_fly_with_Waypoints','POST',_binary '\0',_binary '\0','2022-08-29 07:48:58',1,'2023-06-14 09:59:35'),(3048,'API_ea0f320f2901ba1ebabde0585c4272e1','测试Path','','cmii-uav-user','/api/uav/open/test/path/{id}/{name}','GET',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:13'),(3049,'API_7e60af46b731c179e5188f9c0188680d','测试POSTNONE','','cmii-uav-user','/api/uav/open/test/post-none','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:18'),(3050,'API_5cc56cc9afa7bf9e2ec54352f382ada4','测试FORMDATA','','cmii-uav-user','/api/uav/open/test/post-formdata','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:11'),(3051,'API_964ba6c9abf68c6ace77e84cbbfd14f9','测试urlencoded','','cmii-uav-user','/api/uav/open/test/post-urlencoded','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:15'),(3052,'API_5c7f2d3d72c39db6a34cb156ded9b918','测试POST RAW','','cmii-uav-user','/api/uav/open/test/post-raw','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:16'),(3053,'API_f67edf288f69ba95fdc77651546c81ff','测试文件','','cmii-uav-user','/api/uav/open/test/file','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:09'),(3054,'API_f1634b099f9554ea1c89718d80d48ce7','测试文件集合','','cmii-uav-user','/api/uav/open/test/files','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:19'),(3055,'API_830e06b0ffab162b8098cf8fa123db8c','测试Get','','cmii-uav-user','/api/uav/open/test/get','GET',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-10-11 15:37:11'),(3056,'API_3d6c07168fd0f82833abc7a14956160a','视频回放-播放MP4文件','视频回放-播放MP4文件','cmii-uav-cloud-live','/public/video/playback/manage/playMp4','GET',_binary '\0',_binary '\0','2022-09-06 01:06:34',1,'2024-10-12 09:42:39'),(3057,'API_66d3086097c78c3b1182bce907a257a8','fetchHtml','','cmii-uav-surveillance','/dictionary/fetch_html_from_url','GET',_binary '\0',_binary '\0','2022-09-06 07:36:30',1,'2022-09-07 08:06:56'),(3058,'API_e988e6d2e3318ccc140dd9c29bc43325','下载联系人模板文件','','cmii-uav-emergency','/sms/download','GET',_binary '\0',_binary '\0','2022-09-07 07:41:18',1,'2024-10-10 09:08:03'),(3059,'API_5188c20f05cc6db8a4f7ecc111f9b133','导入excel','导入excel','cmii-uav-emergency','/sms/import','POST',_binary '\0',_binary '\0','2022-09-07 07:41:18',1,'2024-10-10 09:08:05'),(3060,'API_dcba6310aa8344b089dc27b3c1bd2125','新版APP端航线分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list_new','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-09-09 09:16:29'),(3061,'API_481c60c888f5446f220d74324edbfd85','新版APP端航线按用户ID分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list_by_uid_new','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-09-09 09:16:29'),(3062,'API_ac73dad2f506c5e73d434a31b2447bbf','新版获取航点列表信息','点击某一条航线返回对应的航点列表信息','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list_new','GET',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-09-09 09:16:30'),(3063,'API_24ed791e091da896b2a64617258deaa3','新版更新航线和航点信息','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_with_airpoints_new','PUT',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-09-09 09:16:30'),(3064,'API_66e16c35d10ee768c75351d437b6ce4e','新版创建航线和航点信息','打点完成提交到数据库,航线和航点同时保存','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_with_airpoints_new','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-09-09 09:16:29'),(3065,'API_1f25833aa9b7920a6efa2372ae41f1c1','批量删除和删除','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info','DELETE',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-09-09 09:16:30'),(3066,'API_d880d01ac6966287f42329f096fc8359','复制航线','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_clone','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-09-09 09:16:28'),(3067,'API_d82f64965d04ab2fc2aa695cb4c4dc7d','导出联系人','','cmii-uav-emergency','/sms/export','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:04'),(3068,'API_ffac41a268ab1b861423722332a7266c','按无人机获取短信发送情况','','cmii-uav-emergency','/sms/getSmsHistory','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:05'),(3069,'API_03030549a50578cebbebd087bf34175d','按无人机获取短信发送统计','','cmii-uav-emergency','/sms/getSmsTotal','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:04'),(3070,'API_68aab1e1795587801a8255e353a810ca','查询所有联系人','','cmii-uav-emergency','/sms/queryAll','GET',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:04'),(3071,'API_d67efef5a061a0e4f7a70ad64652d866','新增群组','','cmii-uav-emergency','/smsGroup/add','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:04'),(3072,'API_65562093af4fbfed0031d24e8614bc60','批量删除','传入主键','cmii-uav-emergency','/smsGroup/delete','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:06'),(3073,'API_d39f864e919dff0c0e2c1d071d34b3ad','获取所有群组','','cmii-uav-emergency','/smsGroup/query','GET',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:05'),(3074,'API_ed97e94c37eafdfca025c8f41886e730','绑定群组','','cmii-uav-emergency','/smsGroup/bound','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:04'),(3075,'API_74e01cd532eb1af9f41dba6ec794774e','编辑成员','传入区域json字符串,需要有主键','cmii-uav-emergency','/smsGroup/edit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-10 09:08:05'),(3076,'API_a81eadbcceb1e1c753cdef23bf82bdcc','提交申请','','cmii-suav-supervision','/app/flightPlan/submit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:55'),(3077,'API_e91ca6c38d721b7e6f74a656e86c0cec','判断飞行计划名称是否重复','','cmii-suav-supervision','/app/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:56'),(3078,'API_11a73dc8b76daededb65c2e4f8948893','查询所有机场','','cmii-suav-supervision','/app/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:56'),(3079,'API_787edcb3bd52a47c6bf392d4013cb725','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:57'),(3080,'API_4b187a6cba53f7a007a811c06a14819f','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/app/flightPlan/edit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:59'),(3081,'API_1a7237617f1bf56ce287d8a06bbe4993','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/app/flightPlan/detail','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:58'),(3082,'API_6649121fea2dda521df4237f14bf0cad','规划带状航线','','cmii-suav-supervision','/app/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:58'),(3083,'API_de5f42db49b0d865b0aeb5f8874fce45','获取ip经纬度','','cmii-suav-supervision','/app/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:56'),(3084,'API_595d7d29899f86b0230d63e573fff06a','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:59'),(3085,'API_5721a50d39dc51ee5d1038ba7368176a','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/app/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:56'),(3086,'API_565375536d3767e9c6dfef29fd18441b','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/app/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:59'),(3087,'API_f44fdebc9ce405f9b507205523fa800c','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/app/zydAirspace/getAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2023-05-04 09:35:22'),(3088,'API_beaa94e36a60af0d81e1efa0144f9a70','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/app/flightPlan/delete','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:57'),(3089,'API_d644e1c9a80fe1ac5a6697902794e32b','申报飞行计划','','cmii-suav-supervision','/app/flightPlan/save','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:57'),(3090,'API_85df2c8534344ed605af130a15e7acd8','分页查询','','cmii-suav-supervision','/app/flightPlan/query','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:58'),(3091,'API_554fd3826aeb0680465248b3fef7f018','规划带状航线','','cmii-suav-supervision','/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:57'),(3092,'API_80c3f20e24dfcfe8ca7c100a3af819b1','获取ip经纬度','','cmii-suav-supervision','/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:59'),(3093,'API_38165104c0377341bbf83dda38d05c42','根据公司id获取飞行计划','','cmii-suav-supervision','/flightPlan/getByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-09-09 09:16:56'),(3094,'API_a3b807460228cc9c19b4a1fa28f29c3a','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2024-09-09 09:16:56'),(3095,'API_4acf2172bd1378c87fd28cf796811d06','根据无人机编码批量获取公司信息','','cmii-suav-supervision','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3096,'API_2943ae86f728d3fb0a21a977ad92893d','查询公司/机构所属的在线无人机列表','','cmii-suav-supervision','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3097,'API_cdfef52098f7a76e8a6b745217a0dd2c','查询公司范围下的在线无人机,返回map','','cmii-suav-supervision','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3098,'API_15168df5a37da133d2032ec495f60029','无人机绑定的载荷列表查询','','cmii-suav-supervision','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3099,'API_acbf264ae685dc000f259078e186d9ee','统计公司/所属机构获取无人机数量','','cmii-suav-supervision','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3100,'API_a93a2d6777744a88ebb25f8ac2c884ea','根据无人机类型查询公司有的无人机类型详细信息','','cmii-suav-supervision','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3101,'API_c55fc10d869ab09bfd1a4c175b3f7553','新增无人机','','cmii-suav-supervision','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3102,'API_fabcc5be3c3d78330868243bf89b760e','修改无人机','','cmii-suav-supervision','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3103,'API_8bee24a7aacf285f3810c9d5f3ff14be','通过无人机设备号查询无人机编码','','cmii-suav-supervision','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3104,'API_f74610bb7038d511a3fc4f6fc2a359f1','通过无人机编码查询无人机编码设备号','','cmii-suav-supervision','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3105,'API_122828ac3b089cc373ac8609496d972c','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-suav-supervision','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3106,'API_a1a7b1c213dc0095f4152522e321b22e','载荷绑定的无人机编码查询','','cmii-suav-supervision','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3107,'API_f259f9a38e27bb8d3881c75dcccaa9fa','check设备类型是否匹配','','cmii-suav-supervision','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3108,'API_4bfbd596ce8d6d2ad57fdb04152c6d6b','check设备动作是否匹配','','cmii-suav-supervision','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3109,'API_6a240e9afd8f1654fc34b6da004f6a8c','设备数据字典和匹配校验','','cmii-suav-supervision','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3110,'API_6781afc541edca9d88720130ed406151','根据无人机编码获取公司信息','','cmii-suav-supervision','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3111,'API_473952e62b6ad18c5dcf7afda46f4d5f','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-suav-supervision','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3112,'API_7679922787637789080feaf2a8763429','根据无人机code列表查询无人机名称详情','','cmii-suav-supervision','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3113,'API_2abd024c80fd72ccaf0384ec2791dbc6','生成新无人机编码','','cmii-suav-supervision','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3114,'API_0625cc1b8233918e24a5d7872dbb195d','查询无人机是否可用','','cmii-suav-supervision','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3115,'API_a1d9b8aa36c90b0b760c66b85fd49a1c','查询设备在线状态','','cmii-suav-supervision','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3116,'API_eafa98b96fb927ac25dde6e3e443db48','设置无人机在线状态','','cmii-suav-supervision','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3117,'API_94f86ba6ffdf3170cfa0404d2f949f8a','查询无人机总飞行时长','','cmii-suav-supervision','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3118,'API_2e5c88f06b234d5949350ef5e58c9611','查询该公司有的无人机类型详细信息','','cmii-suav-supervision','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3119,'API_a050bec90e57c58c84e605b65d6681f8','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-suav-supervision','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3120,'API_00ecf3055251b4a95b8e3d164b3f7a5c','查询公司/机构所属的无人机编码列表','','cmii-suav-supervision','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3121,'API_10b9d8b0e0259b9b6a978d16cc6bbb0f','模糊查询可用状态列表','','cmii-suav-supervision','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3122,'API_f020c4e1593d208b6865701167c0ed1a','根据设备类型和编码查询编码对应的可用状态信息','','cmii-suav-supervision','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3123,'API_a98fd3fe9a9179cd200d92040d2d1af3','按无人机编码查询无人机详情查询','','cmii-suav-supervision','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3124,'API_a2a12a3207158129e74acc5ec5f54bf0','按无人机编码查询无人机详情查询不用公司id','','cmii-suav-supervision','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3125,'API_30149f9fc317d554729748e1f408fd4e','按无人机设备号查询无人机详情查询','','cmii-suav-supervision','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3126,'API_45fa4b4e52ced31b703357778292eb4a','根据无人机编码查询该无人机是否存在','','cmii-suav-supervision','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3127,'API_b58aae9a77c9af3da4623539a1acbf01','根据无人机编码列表查询对应无人机名称集合','','cmii-suav-supervision','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3128,'API_3b0804cc075a3563b476efb529e8a885','模糊查询在线无人机编码和机库编码列表','','cmii-suav-supervision','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3129,'API_cb1e18a5ec6857dd43fddc5b25e69a0f','无人机列表绑定的载荷列表详情查询','','cmii-suav-supervision','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3130,'API_ca3f0da125af208e8e5a4b8f72f60e59','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-suav-supervision','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3131,'API_46768a96fe3cae5f39c2b7129884a28a','根据设备号获取公司信息','','cmii-suav-supervision','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3132,'API_cce93619ff4c797e37b6db38adf266fa','无人机绑定的摄像头信息查询','','cmii-suav-supervision','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3133,'API_8a34ef12f9a4c6f1f3e6477e226c1a2b','无人机绑定的摄像头推流信息','','cmii-suav-supervision','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3134,'API_f5c057836071a96031d6615c539f888d','无人机列表绑定载荷载荷视频详情查询','','cmii-suav-supervision','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3135,'API_8ee4c98c29092a4904836fff22a6a42a','设置无人机上线','','cmii-suav-supervision','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3136,'API_aa89d1fe1048818d2e7ed8fb4e2cc0f5','获取游客的无人机设备列表','','cmii-suav-supervision','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3137,'API_a95964738bc27d742f6daee758bea94a','按无人机编码查询无人机是否是真机','','cmii-suav-supervision','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3138,'API_2ebfe1a257233013264d1c68a92e10c7','查询无人机在线状态','','cmii-suav-supervision','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3139,'API_db526db3c60b73c6725fada5565fd8e0','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-suav-supervision','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3140,'API_7d13979d23a0e701b5a6392f19f9e40c','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-suav-supervision','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3141,'API_c4245c042a947a79419c520534dc76ac','模糊查询包括子公司的无人机型号列表','','cmii-suav-supervision','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3142,'API_ff03f13970f20c0e51449949e927e4d5','新增监管c端用户','','cmii-uav-user','/suav/user/addSuavUser','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:12'),(3143,'API_a0b65682063c35efd520b44995097ed8','修改监管c端用户状态','','cmii-uav-user','/suav/user/updateStatus','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:20'),(3144,'API_d09b9be867388010f4c94a0127646390','申请认证','','cmii-uav-user','/suav/user/applyCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:21'),(3145,'API_c90bd0cbee2ae40d2715645334a50099','同意认证申请','','cmii-uav-user','/suav/user/accessCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:14'),(3146,'API_767865024b31f2cc03953ddc45cb9986','c端用户列表查询','','cmii-uav-user','/suav/user/query','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:11'),(3147,'API_5e588f2d947d9cb90f1cdb7244895d33','给C端用户重置密码','','cmii-uav-user','/suav/user/updateUserPassword','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:16'),(3148,'API_bd5c59c02d7670b42f87a39c5f58ba4d','生成公司的临时编码','','cmii-uav-user','/suav/user/companyTempCode','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:16'),(3149,'API_443053f0d52c871c8809c1210ffbc30c','数据字典,获取认证状态','','cmii-uav-user','/suav/user/certificationStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:10'),(3150,'API_415be5b2e4186edf2a5ba6421a8967d9','数据字典,获取用户状态','','cmii-uav-user','/suav/user/userStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:19'),(3151,'API_f0e478dab04650e2e027f8c8f30035b9','获取c端用户详细信息(用户id与公司编码)','','cmii-uav-user','/suav/user/getUserDetail','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:17'),(3152,'API_ff389cb2e6843421dc7f59b66a8388e8','获取c端用户详细信息','','cmii-uav-user','/suav/user/getUserInfo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-10-11 15:37:17'),(3153,'API_69fa4c56baaa3a151d8a3daf2a3cb598','根据公司id查询公司下面的子公司','','cmii-uav-user','/clients/org/children','GET',_binary '\0',_binary '\0','2022-09-20 06:56:56',1,'2024-10-11 15:37:18'),(3154,'API_b7e269c10d3ab76b12a3038fc9e22522','根据公司id查询公司的第一级公司','','cmii-uav-user','/clients/org/getRoot','GET',_binary '\0',_binary '\0','2022-09-20 06:56:57',1,'2024-10-11 15:37:09'),(3155,'API_393129d75226ae65ec07e5a15b387e30','根据用户名获取账号信息','','cmii-uav-user','/clients/suav/user/getUserDetail','GET',_binary '\0',_binary '\0','2022-09-20 06:56:57',1,'2024-10-11 15:37:17'),(3156,'API_5e2219afa205079c20f73ff616f5387d','演示视频上传','','cmii-uav-surveillance','/surveillance/demonstrate/upload_video','POST',_binary '\0',_binary '\0','2022-09-20 06:57:00',1,'2024-09-23 20:59:00'),(3157,'API_3b81b17d2582a9b8efa8a76f68c05030','获取演示视频上传信息','','cmii-uav-surveillance','/surveillance/demonstrate/get_video_upload_information','GET',_binary '\0',_binary '\0','2022-09-20 06:57:00',1,'2024-09-23 20:58:58'),(3158,'API_24309755083d7d92f51e5af34438a679','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-surveillance','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-09-20 06:57:08',1,'2023-03-29 09:05:05'),(3159,'API_9633cd7f63709ef2d7eb6d0eaa504277','模糊查询包括子公司的无人机型号列表','','cmii-uav-surveillance','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:57:08',1,'2023-03-29 09:05:05'),(3160,'API_aa68587468f95fe82764bb2c226c65c3','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-surveillance','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:08',1,'2023-03-29 09:05:05'),(3161,'API_7e299e619935dfd731575cced8b56ef5','根据无人机编码批量获取公司信息','','cmii-uav-surveillance','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:09',1,'2023-03-29 09:05:05'),(3162,'API_ba95daa3c52411b9096d22762ce4a16a','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:20',1,'2024-09-09 09:15:04'),(3163,'API_d842a15fca6ec652fce80b67e839520b','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:57:20',1,'2024-09-09 09:15:07'),(3164,'API_6f49cba78d3c4c873caff17cda442ea4','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:22',1,'2024-09-09 09:15:04'),(3165,'API_a0fc4192b4bce535e26df2633ea71d6a','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:57:22',1,'2024-09-09 09:15:06'),(3166,'API_7e6ae7bfc7c316e0d433aee96ffff5cf','飞行记录分页查询列表','','cmii-uav-mqtthandler','/fly_log/fly_log_page_list_with_filters','POST',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-09-25 08:48:47'),(3167,'API_41cc9a594f177b3528aba0873185bd11','飞行记录详情','','cmii-uav-mqtthandler','/fly_log/fly_history','GET',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-09-25 08:48:46'),(3168,'API_db4927532c5d7ada16bb535af75ead29','导出通信名单','','cmii-uav-mqtthandler','/fly_log/fly_sms_names','GET',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-09-25 08:48:47'),(3169,'API_039d465187dacce4a9796ed95dc941f3','批量删除飞行记录','','cmii-uav-mqtthandler','/fly_log/fly_history','DELETE',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-09-25 08:48:46'),(3170,'API_76c32eeba777e78da75efac5c2d833fc','下载飞行记录MP4视频','','cmii-uav-mqtthandler','/fly_log/fly_log_mp4','GET',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-09-25 08:48:47'),(3171,'API_2045f78fe1943db815e9203754930002','模糊查询包括子公司的无人机型号列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:21'),(3172,'API_75b78386575ade400c25dc308db99156','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:21'),(3173,'API_56f48f84534c319b8dc6071d8d0a1b3b','根据无人机编码批量获取公司信息','','cmii-uav-mqtthandler','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:22'),(3174,'API_d40d0548dd249eba986adc7640d703c4','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-mqtthandler','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:22'),(3175,'API_0c896719736a178e9edf4670291c333e','新建任务-单位下拉列表','新建任务-单位下拉列表(自身及子公司)','cmii-uav-process','/process/task/manage/queryChildWithOwnUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3176,'API_badf434ff9d68bed3167b2281e985f9f','新建任务-任务名称是否已存在','新建任务-任务名称是否已存在','cmii-uav-process','/process/task/manage/isExistTaskName','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3177,'API_62e21c821e3740f2918b086b71cc2d57','任务管理-派发单位下拉列表','任务管理-派发单位下拉列表','cmii-uav-process','/process/task/manage/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3178,'API_ba6c8739137a398a525cb5c0ce178924','接收单位下拉列表','接收单位下拉列表','cmii-uav-process','/process/task/manage/queryAcceptUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3179,'API_e183c185836be177513c41d6246c471d','任务名称下拉列表','任务名称下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderNameList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3180,'API_cf33d53097f1c8df6caf8c970b6e5cf8','任务列表','任务列表','cmii-uav-process','/process/task/manage/queryTaskOrderList','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3181,'API_5e6ebf3a52b9c513518de86b3c5e3d31','查询工单状态下拉列表','查询工单状态下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderStatusList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3182,'API_c8a558c4664e0aa2c44aa4c35555355f','任务详情','任务详情','cmii-uav-process','/process/task/manage/queryTaskOrderDetail','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3183,'API_853387ffa0d8144515d87609a27066ea','流程进度','流程进度','cmii-uav-process','/process/task/manage/queryProgress','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3184,'API_0f10dcdb82f9057af49482767f33d284','备注列表','备注列表','cmii-uav-process','/process/task/manage/queryRemarkList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3185,'API_9b4c8009e239130dc492da82723dc1c3','活动日志列表','活动日志列表','cmii-uav-process','/process/task/manage/queryActivityLog','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3186,'API_5502a36a40c778b245ae28c6fda8e208','获取分享码','获取分享码','cmii-uav-process','/process/task/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3187,'API_c1d8b8f5139a674e8d5bce56b3ea9bf6','新建任务','新建任务','cmii-uav-process','/process/task/manage/createTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3188,'API_ab7a976cd1a7d4d60097caea1b4d22d4','新建任务-任务类型下拉列表','新建任务-任务类型下拉列表','cmii-uav-process','/process/task/manage/queryTaskTypes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3189,'API_b00e0773a4350108b4aff52efa5dc2cd','查询任务类型列表','查询任务类型列表','cmii-uav-process','/process/task/common/queryTaskTypeList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3190,'API_1655e22e5646825c5fbd6e9c4f0a8d6e','通过分享码获取工单信息','通过分享码获取工单信息','cmii-uav-process','/public/process/task/manage/getTaskInfoByShareCode','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3191,'API_6305f358e44e33a38c3dec5fc6856c0b','查询某个任务类型关联任务列表(未完结任务)','查询某个任务类型关联任务列表','cmii-uav-process','/process/task/common/queryTaskList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:54'),(3192,'API_50c5db92bdedc354bdbd39b4b4f347a2','下级单位列表','下级单位列表(任务转派)','cmii-uav-process','/process/task/common/queryChildUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3193,'API_86160a1efa6f90824c0e01f7447d8649','任务类型列表','任务类型列表','cmii-uav-process','/process/task/config/queryTaskTypeList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3194,'API_b534eac3ef1568a0825fae7799621e66','接口单位列表','接口单位列表(company-scope)','cmii-uav-process','/process/task/config/queryUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3195,'API_558988e49b55fce10211c60d44cebc32','接口人列表','分页查询接口人列表','cmii-uav-process','/process/task/config/queryContactPersonList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3196,'API_22efdcedf5b1c33ae42e24c4b3c8574f','新建接口人','新建接口人','cmii-uav-process','/process/task/config/createContactPerson','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3197,'API_c68009430dc1db2573d96872c0602437','可选接口人列表','可选接口人列表','cmii-uav-process','/process/task/config/queryOpContactPersonList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3198,'API_d4bb356f3b244688eeb50b3590d42feb','修改接口人','修改接口人','cmii-uav-process','/process/task/config/modifyContactPerson','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3199,'API_675b982c8fa99f1d578dfbbfa1ffd8a5','任务信息列表','任务信息列表','cmii-uav-process','/process/task/config/queryTaskInfoList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3200,'API_eefe61309016362694f2043f29bf5f7c','启停任务类型','启停任务类型','cmii-uav-process','/process/task/config/updateTaskStatus','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3201,'API_2d79c7a7000e43219ef3d42df281edd2','新增任务类型','新增任务类型','cmii-uav-process','/process/task/config/addTaskInfo','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3202,'API_960696a7d3e59da77231e92e121b868b','我的待办-派发单位下拉列表','我的待办-派发单位下拉列表','cmii-uav-process','/process/task/mytask/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3203,'API_e72e93182f82f69b3d90abd268138157','任务列表','任务列表','cmii-uav-process','/process/task/mytask/queryTaskOrderList','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3204,'API_2c13bc5552897be9ee785e9c59eafb4a','待办任务-任务名称下拉列表','待办任务-任务名称下拉列表','cmii-uav-process','/process/task/mytask/queryMyTaskOrderNameList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3205,'API_d96009d0d398cf79b03530f0bfe2cebc','模糊搜索用户列表','模糊搜索用户列表(详情-查询关联作业列表-用户列表)','cmii-uav-process','/process/task/mytask/fuzzySearchUsers','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3206,'API_f227179e3d0427c0851d0b1263f915f3','备注','备注(备注任务工单)','cmii-uav-process','/process/task/mytask/remarkTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3207,'API_549d96a51fd03d65c5403a7119c4b462','任务操作','任务操作','cmii-uav-process','/process/task/mytask/operateTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3208,'API_c803dba959c31a6a1dcd5b0db3815f55','任务转派','任务转派','cmii-uav-process','/process/task/mytask/assignTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3209,'API_7b8131ac7fc3599b06be6bc2d6b1de5c','撤回','撤回','cmii-uav-process','/process/task/mytask/revokeTasOrder','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3210,'API_a9080f5832e65d0d77c22391c8dc4781','关联作业','关联作业','cmii-uav-process','/process/task/mytask/createRelateMission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3211,'API_159bc7fdcddcf6e4797d6e2f3858788b','取消关联作业','取消关联作业','cmii-uav-process','/process/task/mytask/deleteRelateMission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:54'),(3212,'API_6ac0ce1d6d36e7d4974f2245170da367','详情-查询关联作业列表','详情-查询关联作业列表(用于选择作业)','cmii-uav-process','/process/task/mytask/queryRelateMissions','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3213,'API_27481bc15fdac3ed8bd4aaf9b0367270','查询任务类型集合','查询任务类型集合','cmii-uav-process','/client/taskdispatch/queryTaskTypeMap','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:57'),(3214,'API_10f490ebe891b22cee598c79f627cbfa','查询任务名集合','查询任务名集合','cmii-uav-process','/client/taskdispatch/queryTaskNameMap','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3215,'API_9309bfc518f9f0efe6bd31aebf038617','部署工单模型','部署工单模型型','cmii-uav-process','/client/taskdispatch/deployeeTaskorder','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:59'),(3216,'API_bbce007ee3dd32937395e37735db180d','queryTaskStatus','','cmii-uav-process','/client/taskdispatch/queryTaskStatus','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:54'),(3217,'API_9b0a86c18bd339d27a2b89ab98815f3e','查询任务类型列表','查询任务类型列表','cmii-uav-process','/client/taskdispatch/queryTaskTypes','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:58'),(3218,'API_5f619b28121b671745531c411f10d367','查询某个任务类型关联任务列表','查询某个任务类型关联任务列表','cmii-uav-process','/client/taskdispatch/queryTaskList','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:55'),(3219,'API_7b149af39d0c6d9a095694909dcde07e','创建作业与任务关联关系','创建作业与任务关联关系','cmii-uav-process','/client/taskdispatch/createRelateMission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:57'),(3220,'API_5d425c1dcb7e4c5e5f21f611a678bf72','getDocumentation','','cmii-uav-process','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3221,'API_48730966a2b25b53f7bb703b48b202a2','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:55'),(3222,'API_c18ab41099e26fb9ac52c44df14136c0','swaggerResources','','cmii-uav-process','/swagger-resources','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3223,'API_00faed59b54dd5d393df5697b073d2a1','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3224,'API_90addc53fb012539245f320c350821cf','getDocumentation','','cmii-uav-process','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:55'),(3225,'API_624966db1edb3998c42b0a5c44e20555','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:42',1,'2024-10-11 01:36:54'),(3226,'API_003e320115e918bea20bde157253cb28','接口测试-御航输电线路图片检测','','cmii-uav-mission','/api/uav/mission/mission_info/yuhang/transmission_test','POST',_binary '\0',_binary '\0','2022-09-20 06:57:50',1,'2024-10-10 08:57:04'),(3227,'API_80e0ee2957c1be6a30bb5dca4d757b04','御航输电线路图片检测','','cmii-uav-mission','/api/uav/mission/mission_info/yuhang/transmission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:50',1,'2024-10-10 08:57:15'),(3228,'API_307356e0c0c4d98826b84c3545ec2733','更新现场情况描述信息','河南环保新增功能','cmii-uav-mission','/api/uav/mission/mission_info/env_site_conditions','POST',_binary '\0',_binary '\0','2022-09-20 06:57:50',1,'2024-10-10 08:57:11'),(3229,'API_59e7c66c1a47492dec6127321db575ca','御航-获取图片AI识别结果','','cmii-uav-mission','/picture/get_picture_ai_detect_info','GET',_binary '\0',_binary '\0','2022-09-20 06:57:51',1,'2024-10-10 08:57:05'),(3230,'API_069b7b8264ee32ab2f2c11f03ff1f979','从紧急降落点再次返航回到机库','','cmii-uav-surveillance','/hangarSurveillance/emergency_point_return','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-09-23 20:58:57'),(3231,'API_8ef253f6e299c243e1501fb30c06883a','结束机库流程','','cmii-uav-surveillance','/hangarSurveillance/end_process','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-09-23 20:58:59'),(3232,'API_aa68e063908305d0cc4ec17bfcb97a75','机库准备 发送航线+自动起飞','','cmii-uav-surveillance','/hangarSurveillance/prepare_auto','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-09-23 20:58:58'),(3233,'API_0569f75c285dd90d4deb28f0e826191a','机库准备 发送航线+手动起飞','','cmii-uav-surveillance','/hangarSurveillance/prepare_manual','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-09-23 20:58:59'),(3234,'API_9dd92ab68f2f29ec6ddccf19e8c103d3','在手动模式下,发送飞行到指定一个点位的命令','','cmii-uav-surveillance','/hangarSurveillance/offer_point_fly','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-09-23 20:59:01'),(3235,'API_dd1eeec6a38545a5d320421499725e47','设置机库RTK host 和 端口','','cmii-uav-surveillance','/hangarSurveillance/RTK_setting','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-09-23 20:58:58'),(3236,'API_03e838c9e174bfcceda31e3ea9779b28','校验指定公司是否有无人机','','cmii-uav-device','/api/uav/plane/checkUavExit','GET',_binary '\0',_binary '\0','2022-10-12 08:18:10',1,'2024-10-11 01:36:42'),(3237,'API_acf5017faf804920b87979e00de84171','根据无人机编码和名称模糊查询无人机列表','','cmii-uav-device','/api/uav/plane/queryUavList','GET',_binary '\0',_binary '\0','2022-10-12 08:18:13',1,'2024-10-11 01:36:52'),(3238,'API_2dc30254053a86e7e8a7444b6d51fd4a','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-10-12 08:18:18',1,'2024-10-11 01:36:48'),(3239,'API_0f60b9ea81c4c20a2645e7a3a03c3f8b','上传文件信息','','cmii-uav-material-warehouse','/tus/files/','POST',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-10-11 08:57:34'),(3240,'API_650156bde3086a0978b09b2625fbd5a9','文件使用确认,HeaderContextHolder需有platform(EPlatformType),根据platform不同还需要companyId,userId','','cmii-uav-material-warehouse','/tus/fileUseConfirm','POST',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-10-11 08:57:35'),(3241,'API_93e8e3290d04c5fd64d997d695bb1f42','文件推流','','cmii-uav-material-warehouse','/tus/files/{uuid}','PATCH',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-10-11 08:57:36'),(3242,'API_24f4d58e2a67c0ef4613012f33c36bb2','获取服务器信息','','cmii-uav-material-warehouse','/tus/files/','OPTIONS',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-10-11 08:57:35'),(3243,'API_d641bbfebdc18c0d400765dd8bda9c95','head请求查询文件','','cmii-uav-material-warehouse','/tus/files/{uuid}','HEAD',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-10-11 08:57:35'),(3244,'API_e10d2170c937de51f7c70381e8961746','minio未成功通知文件恢复','minio未成功通知文件恢复','cmii-uav-material-warehouse','/api/v1/warehouse/item/resume','POST',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-10-11 08:57:35'),(3245,'API_45f848ce652357b7ca95200f9f4e591e','下发航线到机库,并且设置为默认航线','','cmii-uav-mqtthandler','/mqtt/hangar/send_line_and_set_default','POST',_binary '\0',_binary '\0','2022-10-12 08:18:40',1,'2024-09-25 08:48:45'),(3246,'API_fa2f4f82a310a4c44220bfa6dc5b888a','发送控制命令到复亚机库,解耦后新接口','','cmii-uav-mqtthandler','/mqtt/hangar/command','POST',_binary '\0',_binary '\0','2022-10-12 08:18:40',1,'2024-09-25 08:48:48'),(3247,'API_8b60f36fb11a1502e9ecfdb6eef00426','设置RTK 使用的 host 和 端口','','cmii-uav-mqtthandler','/mqtt/hangar/configure_RTK','POST',_binary '\0',_binary '\0','2022-10-12 08:18:40',1,'2024-09-25 08:48:45'),(3248,'API_99125a4b3087272dbb9f2100805774cc','删除作业里面的媒体文件,可以作业详情使用(带作业id),也可以存储管理使用(不带id)','','cmii-uav-mission','/api/uav/mission/mission_info/getFoiaPicInfos','DELETE',_binary '\0',_binary '\0','2022-10-12 08:18:55',1,'2024-10-10 08:57:09'),(3249,'API_28c81e9577a5f1d24392aa7e1db9a26b','前端截屏车牌图片传到AIPic表','','cmii-uav-mission','/report_and_video/ai_picture_upload','POST',_binary '\0',_binary '\0','2022-10-12 08:18:56',1,'2024-10-10 08:57:12'),(3250,'API_4391d2cb43363a98254497e6eac20870','文件使用','','cmii-uav-mission','/oss/useFile','POST',_binary '\0',_binary '\0','2022-10-12 08:18:56',1,'2024-10-10 08:57:03'),(3251,'API_e59ebfad16bcaff422ec9a8a61d29821','download','','cmii-uav-device','/api/uav/plane/download','GET',_binary '\0',_binary '\0','2022-10-12 09:44:30',1,'2022-11-09 07:20:48'),(3252,'API_6deb1974a304cbd0b6467f899bbded96','删除视频合成任务','删除视频合成任务','cmii-uav-cloud-live','/video/merge/delete','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-10-12 09:42:34'),(3253,'API_4ccf219211d38ebd68e9c6e368087db1','查询视频合成任务列表','查询视频合成任务列表','cmii-uav-cloud-live','/video/merge/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-10-12 09:42:35'),(3254,'API_f02265768ee60978134eb6c0fdd4c591','模糊查询视频合成任务','模糊查询视频合成任务','cmii-uav-cloud-live','/video/merge/fuzzySearch','GET',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-10-12 09:42:34'),(3255,'API_d1df2700051f54772ade26acea82227f','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/video/merge/applyMerge','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-10-12 09:42:36'),(3256,'API_3e0895207c7be89015bcefde78eb9a57','视频合成任务-获取m3u8回放Token','视频合成任务-获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/video/merge/getPlaybackM3u8Token','GET',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-10-12 09:42:37'),(3257,'API_43e420d3de8c15d1d0617823b0f9a59e','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/video/part/getM3U8','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-10-12 09:42:34'),(3258,'API_36d9b4a4c15f6443b5dd71dbb4ffe523','结束直播','结束直播','cmii-uav-cloud-live','/broadcast/manage/stop','GET',_binary '\0',_binary '\0','2022-10-25 08:29:53',1,'2024-10-12 09:42:32'),(3259,'API_9693ba0fd7e96c9569226e16649b4ad1','新建直播','新建直播','cmii-uav-cloud-live','/broadcast/manage/create','POST',_binary '\0',_binary '\0','2022-10-25 08:29:53',1,'2024-10-12 09:42:32'),(3260,'API_d044fdf2df50285e3213d06fa76d0264','新建直播-直播名称是否存在','新建直播-直播名称是否存在','cmii-uav-cloud-live','/broadcast/manage/isExistActivityName','GET',_binary '\0',_binary '\0','2022-10-25 08:29:53',1,'2024-10-12 09:42:32'),(3261,'API_f7fda7e00fd5eddd7e5957f71098cdb1','直播列表','直播列表','cmii-uav-cloud-live','/broadcast/manage/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:31'),(3262,'API_addbaad28b1c82af748d923725cea518','直播管理-获取直播分享码&提取码','直播管理-获取直播分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:36'),(3263,'API_06551f7a0896b0e26721db1c5b930ab3','直播管理-分享回放(MP4文件)','直播管理-分享回放(MP4文件)','cmii-uav-cloud-live','/public/broadcast/manage/playMp4','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:37'),(3264,'API_49da91b3d7b83dd3fd38463f5440fdd9','进入直播','进入直播(获取直播地址)','cmii-uav-cloud-live','/broadcast/manage/getBroadcastPlay','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:34'),(3265,'API_076b223b478afbc1891bd276ccc64f99','直播名称列表','直播名称列表','cmii-uav-cloud-live','/broadcast/manage/getActivityNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:32'),(3266,'API_12175cae1b75bda31a1fc2b2bd812714','直播列表-直播设备下拉列表','直播列表-直播设备下拉列表','cmii-uav-cloud-live','/broadcast/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:36'),(3267,'API_3db55c96df43c268cba13f78a16f9205','批量删除直播','批量删除直播','cmii-uav-cloud-live','/broadcast/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:32'),(3268,'API_7128d138344e76efe5cee8d4ad8c2f3c','直播管理-分享码获取直播地址','直播管理-获取直播地址','cmii-uav-cloud-live','/public/broadcast/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:31'),(3269,'API_b3f1bbc5d260a69bc4c684110aafdeed','直播管理-获取回放分享码&提取码','直播管理-获取回放分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getPlaybackShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:33'),(3270,'API_7306ef570af18081e81ed62c8561aff3','通过分享码获取m3u8回放Token','通过分享码获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/public/broadcast/manage/getSharePlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:34'),(3271,'API_2f6e07d9525594c82888280793c4edf9','新建直播-选择视频流设备列表','新建直播-选择视频流设备列表','cmii-uav-cloud-live','/broadcast/manage/create/getDeviceList','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:37'),(3272,'API_d77aa62e4ba0c8f547adfe98b1ee194c','获取m3u8回放Token','获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/broadcast/manage/getPlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-10-12 09:42:31'),(3273,'API_c3022e8b2407f10ff611e6a41c949d9d','根据飞行记录生成作业信息','','cmii-uav-mission','/api/uav/mission/mission_info/import_flight_record','POST',_binary '\0',_binary '\0','2022-10-25 08:30:14',1,'2024-10-10 08:57:11'),(3274,'API_074259ff53741533f18f1c72d8dc262e','获取飞行记录关联无人机名称&无人机型号列表','','cmii-uav-mqtthandler','/fly_log/uav_name_model','GET',_binary '\0',_binary '\0','2022-10-25 08:30:22',1,'2024-09-25 08:48:47'),(3275,'API_9d9f475c9ad87fc840fc2b393ab4f14f','机库急停','','cmii-uav-surveillance','/hangarSurveillance/emergency_stop','POST',_binary '\0',_binary '\0','2022-10-25 08:30:27',1,'2024-09-23 20:58:57'),(3276,'API_ea75a5282e9f7d60384c90a16da5da52','机库复位','','cmii-uav-surveillance','/hangarSurveillance/reset','POST',_binary '\0',_binary '\0','2022-10-25 08:30:27',1,'2024-09-23 20:58:59'),(3277,'API_d172e963f5250bb4033ac94dd0c46a69','callBackStatus','','cmii-uav-emergency','/notice/sms/reportStatus','POST',_binary '\0',_binary '\0','2022-11-09 08:44:00',1,'2024-10-10 09:08:06'),(3278,'API_591b90318ab3a88d5acc3c48e08fbff2','createRSA','','cmii-uav-emergency','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-09 08:44:00',1,'2024-10-10 09:08:04'),(3279,'API_ffa4f37a1c2ea6c09d5fcf140ed9c56a','检查该用户是否可以申请获取权限','','cmii-uav-surveillance','/surveillance/authority_transfer/check_applicable','POST',_binary '\0',_binary '\0','2022-11-09 08:44:08',1,'2024-09-23 20:59:00'),(3280,'API_90eb05a09347789295ce404d11101a91','检查该用户是否可以申请归还权限','','cmii-uav-surveillance','/surveillance/authority_transfer/check_applicable_return','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:58:57'),(3281,'API_21f184867c523d021db6ac690bffeb1b','提交权限变更申请,包括获取和归还','','cmii-uav-surveillance','/surveillance/authority_transfer/apply_transfer','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:58:56'),(3282,'API_e88bfefd65d1a7d088adfde2b5821c51','执行人主动移交/收回控制权限','','cmii-uav-surveillance','/surveillance/authority_transfer/spontaneous_transfer','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:58:59'),(3283,'API_2bf7247c366d8d3cabdffdeb565f451a','同意移交控制权申请+申请id','','cmii-uav-surveillance','/surveillance/authority_transfer/approve_transfer','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:59:00'),(3284,'API_e457ad24ec3b2b31aebd04b2cd579b89','同意移交控制权,外部访问','','cmii-uav-surveillance','/surveillance/authority_transfer/approve_transfer_by_token','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:59:01'),(3285,'API_2c48d2d9e41d2f3f55b4141a20f6910c','获取申请信息,外部接口','','cmii-uav-surveillance','/surveillance/authority_transfer/check_by_token','GET',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:58:59'),(3286,'API_0db41c8ad461e132d0d1eed92c4a24df','获取申请信息,通过申请id','','cmii-uav-surveillance','/surveillance/authority_transfer/check_by_id','GET',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:59:00'),(3287,'API_fe400b2e950b1afbb287571f5a6f2ebf','批量查询无人的控制人id','','cmii-uav-surveillance','/surveillance/authority_transfer/query_uas_controller','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:58:59'),(3288,'API_539e61ec862b4e22a0feb59c275041ee','clearTransferApplication','','cmii-uav-surveillance','/surveillance/authority_transfer/delete_all_uas_transfer','DELETE',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-09-23 20:59:00'),(3289,'API_85d5d73589c8964c95b05594bc6610b7','查询无人机关联的人员统计信息','','cmii-uav-surveillance','/surveillance/screen/communication/query_individual_statistics','POST',_binary '\0',_binary '\0','2022-11-09 08:44:10',1,'2024-09-23 20:59:00'),(3290,'API_ea55ef7150550a4e05a51307a5ea4f3e','手动插入人员统计数据','','cmii-uav-surveillance','/surveillance/screen/communication/insert_individual_statistics','POST',_binary '\0',_binary '\0','2022-11-09 08:44:10',1,'2024-09-23 20:58:59'),(3291,'API_0cb8a3873ab09e2ac420f0792855a5e2','download','','cmii-uav-device','/api/uav/plane/download','POST',_binary '\0',_binary '\0','2022-11-09 08:44:19',1,'2024-10-11 01:36:49'),(3292,'API_ce4c361afa82c394716734aaa1ddbd4a','查询自己以及祖先公司以及公司的用户','','cmii-uav-user','/api/uav/org/ancestorsAndOwn','POST',_binary '\0',_binary '\0','2022-11-09 08:58:54',1,'2024-10-11 15:37:19'),(3293,'API_f11240b92cee5d159e4f5eabe1e8a796','上级和下级公司的用户','','cmii-uav-user','/api/uav/user/getSuperiorAndSubordinatetUser','GET',_binary '\0',_binary '\0','2022-11-09 08:58:55',1,'2024-10-11 15:37:16'),(3294,'API_22bd7ab297fcbef4e8289342d128eed0','createRSA','','cmii-uav-user','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-09 08:58:58',1,'2024-10-11 15:37:14'),(3295,'API_a6898c161b0e2ea04598bd6dc11321f4','createRSA','','cmii-uav-cloud-live','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-15 09:20:07',1,'2024-10-12 09:42:37'),(3296,'API_89132c2113940b8c5335fe08bcd6974a','createRSA','','cmii-uav-mqtthandler','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-16 05:46:59',1,'2024-09-25 08:48:47'),(3297,'API_f06fd0759c52f4cbd7a833d069fdd2fa','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-mqtthandler','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2022-11-16 05:46:59',1,'2023-05-04 09:36:22'),(3298,'API_96b807bbf1b0b9ac0780f8647f9308d3','transferFioaPicToGeneralPic','','cmii-uav-mission','/oss/foia_pic_to_general_pic','POST',_binary '\0',_binary '\0','2022-11-23 11:27:52',1,'2024-10-10 08:57:10'),(3299,'API_d39bd5eda9627a3374cb9f3edd4f824a','获取无人机状态(文旅专用)','获取无人机状态(文旅专用)','cmii-uav-mqtthandler','/oapi/uav/getStatus','GET',_binary '\0',_binary '\0','2022-12-05 03:38:45',1,'2024-09-25 08:48:46'),(3300,'API_7a8ce5526acc31c206639ae5245bfa0d','设置无人机状态,文旅','设置无人机状态,文旅','cmii-uav-mqtthandler','/oapi/uav/setUavStatus','POST',_binary '\0',_binary '\0','2022-12-05 03:38:46',1,'2024-09-25 08:48:45'),(3301,'API_c96f0a2792b96d6040c0acad7bcf4746','强制删除作业--测试自动化测试使用','','cmii-uav-mission','/api/uav/mission/mission_info_list/force_delete','DELETE',_binary '\0',_binary '\0','2022-12-08 09:21:56',1,'2024-10-10 08:57:02'),(3302,'API_9e97b67deb6516f3018a3ca7db9d2494','将作业置顶','河南环保新增功能:若将某条作业点亮标记,则该条点亮的作业会在大屏中置顶显示','cmii-uav-mission','/api/uav/mission/mission_info/light_up_mission','POST',_binary '\0',_binary '\0','2022-12-08 09:21:59',1,'2024-10-10 08:57:08'),(3303,'API_f0f3caf42adfb3541e7562dfe33623a3','无人机绑定的摄像头信息查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:22:09',1,'2023-05-04 09:36:21'),(3304,'API_bd1bab05f21fe3c727fcaa9aa699120a','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:22:12',1,'2024-10-11 01:36:46'),(3305,'API_f1812a3f94863bf1c4fa5d646a2c251e','下载航线','','cmii-uav-surveillance','/uav_fly_command/load_line','POST',_binary '\0',_binary '\0','2022-12-08 09:22:33',1,'2023-01-18 04:50:23'),(3306,'API_8d2d1527d90d048f06026cc30f0b9744','waypointFlyIdV3','','cmii-uav-surveillance','/uav_fly_command/waypoint_fly_id','POST',_binary '\0',_binary '\0','2022-12-08 09:22:33',1,'2023-01-18 04:50:24'),(3307,'API_63c29781cb102bf657cf7ee5a06fdfe3','飞手-查询飞手列表','飞手-查询飞手列表','cmii-uav-user','/clients/flyer/queryFlyers','POST',_binary '\0',_binary '\0','2022-12-08 09:51:38',1,'2024-10-11 15:37:11'),(3308,'API_5689b6324559cf13bd1b8b3a9a854743','createRSA','','cmii-uav-surveillance','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-12-08 09:53:56',1,'2024-09-23 20:58:58'),(3309,'API_d88c06208ee5605d5df7bfa161b0f1b3','通过航线id 和无人机型号生成 kmz 文件下载地址, 每次调用新生成文件','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/get_line_kmz_url','POST',_binary '\0',_binary '\0','2022-12-08 09:53:59',1,'2023-03-29 09:05:04'),(3310,'API_489caf6fa70884ca641c909faaa66e22','通过航线id 和无人机型号生成 kmz 素材仓库id, 每次调用新生成文件','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/get_line_kmz_object_id','POST',_binary '\0',_binary '\0','2022-12-08 09:53:59',1,'2023-03-29 09:05:04'),(3311,'API_a3443eaf438bd97e9067210b5ad27e8c','无人机绑定的摄像头信息查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:54:00',1,'2023-03-29 09:05:05'),(3312,'API_4f56b688c0b29c778fe1b2194963b82f','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-surveillance','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2022-12-08 09:54:00',1,'2023-03-29 09:05:05'),(3313,'API_c369a480eca1568a1a64edeabc8203a9','从Redis获取类别对应的加密字典明细','从Redis获取类别对应的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-09-09 09:15:05'),(3314,'API_e79c6c19893996625cb977f371b7727c','从Redis获取类别对应的有效的加密字典明细','从Redis获取类别对应的有效的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeValiableDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-09-09 09:15:05'),(3315,'API_b8c0b1ce047e9f177879294e1176f46d','从Redis获取所有的语言对应的加密字典明细的K-V','从Redis获取所有的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-09-09 09:15:08'),(3316,'API_3f6a19076e18fa7acce0d74cec04af81','从Redis获取有效的语言对应的加密字典明细的K-V','从Redis获取有效的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-09-09 09:15:07'),(3317,'API_21c78db35d528159ea148190f80e91fc','从Redis获取所有的编码对应的本地语言的加密值','从Redis获取所有的编码对应的本地语言的加密值','cmii-admin-data','/api/admin/dictionary/getEnCodeLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-09-09 09:15:06'),(3318,'API_7af6be80b3bcb05b36fa95631144343a','查询天气综合接口','','cmii-admin-data','/api/admin/atmosphere/weather/{coordinate}/{level}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-09-09 09:15:04'),(3319,'API_656295455a26635f330d23b130ddb013','获取彩云天气雷达图','','cmii-admin-data','/api/admin/atmosphere/radar','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-09-09 09:15:08'),(3320,'API_cf65071f9d16a72591016a32567bbd2e','获取彩云天气历史累计图','','cmii-admin-data','/api/admin/atmosphere/historicalImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-09-09 09:15:05'),(3321,'API_e5246134c4a313c2abdc72ab662f3cf7','获取彩云天气卫星图像数据','','cmii-admin-data','/api/admin/atmosphere/satelliteImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-09-09 09:15:06'),(3322,'API_bd6a14bc94eaf8a55a8ecbdcacc9c5b0','获取彩云天气小时级数据图层','','cmii-admin-data','/api/admin/atmosphere/originImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-09-09 09:15:05'),(3323,'API_3376edd154d5e642eaaa1a31c7ddb76c','获取彩云天气预测累计图','','cmii-admin-data','/api/admin/atmosphere/forecastImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-09-09 09:15:08'),(3324,'API_20a4aa74a7bbd084fb5cf120a8dcc60c','导出报告接口','','cmii-admin-data','/api/admin/atmosphere/export/{coordinate}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-09-09 09:15:08'),(3325,'API_dea45900d60b73c855a3db6810628775','设置机库额外信息','','cmii-uav-device','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 03:48:39',1,'2024-10-11 01:36:53'),(3326,'API_7b75ef1f15defbd5087dfccab3edb8c2','下载航线','','cmii-uav-mqtthandler','/uav_fly_command/load_line','POST',_binary '\0',_binary '\0','2022-12-09 04:51:14',1,'2024-09-25 08:48:45'),(3327,'API_76bf8df1f00bc15b76f237f74883350b','航线飞行 新3','','cmii-uav-mqtthandler','/uav_fly_command/waypoint_fly_id','POST',_binary '\0',_binary '\0','2022-12-09 04:51:14',1,'2024-09-25 08:48:44'),(3328,'API_4a1564e869e2be687e83abcc593d3e41','设置机库额外信息','','cmii-uav-mqtthandler','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 04:51:15',1,'2023-05-04 09:36:22'),(3329,'API_33ed0f20a6da88e934cd6756f5226022','获取无人机的航线飞行版本确定是否展示加载航线按钮,1,2不加载,3加载','','cmii-uav-surveillance','/surveillance/uav_command/get_waypoint_version','GET',_binary '\0',_binary '\0','2022-12-09 07:01:16',1,'2024-09-23 20:59:00'),(3330,'API_30feae63d5df9c2e185bb973f7abd0ab','无人机加载航线','','cmii-uav-surveillance','/surveillance/uav_command/load_line','POST',_binary '\0',_binary '\0','2022-12-09 07:01:16',1,'2024-09-23 20:59:00'),(3331,'API_edd1062387258d859b0ff2e0f07324ab','设置机库额外信息','','cmii-uav-surveillance','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 07:01:19',1,'2023-03-29 09:05:06'),(3332,'API_d17ed1a36bfef817128ef5e3be2f2683','通过航线生成kmz, 返回素材仓库object url','','cmii-uav-waypoint','/api/uav/waypoint/kmz/generateKMZFile','PUT',_binary '\0',_binary '\0','2022-12-09 07:01:39',1,'2023-01-17 07:20:31'),(3333,'API_1d318288b479513bc15d2142ecb7c5b9','通过航线id 和无人机型号生成 kmz 文件下载地址, 每次调用新生成文件','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_line_kmz_url','POST',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2024-09-09 09:16:29'),(3334,'API_6f2a08e24900aea7ce9ef5e71fc64994','通过航线id 和无人机型号生成 kmz 素材仓库id, 每次调用新生成文件','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_line_kmz_object_id','POST',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2024-09-09 09:16:29'),(3335,'API_0a98aea43fa08bef5fe929edd57795e5','createRSA','','cmii-uav-waypoint','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2024-09-09 09:16:30'),(3336,'API_932f0d3b36903e18d3f5e99f90bc723e','无人机绑定的摄像头信息查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3337,'API_a2a2b4946f163a4c372d26ddd60f9f13','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-waypoint','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3338,'API_d4b723e5c3e49404d24238173cc64672','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-waypoint','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3339,'API_32118a9fa4d5678ab7462fd40d6558ae','模糊查询包括子公司的无人机型号列表','','cmii-uav-waypoint','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3340,'API_04775dbe72dbd35c4b17f4aa65d88220','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-waypoint','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3341,'API_80d7d783295e1d28dc149b50b5a14753','根据无人机编码批量获取公司信息','','cmii-uav-waypoint','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-12-09 07:01:41',1,'2023-05-04 09:35:56'),(3342,'API_1d407fdf42a15342204587254bbec655','设置地图配置','','cmii-uav-user','/api/uav/org/mergeMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:45',1,'2024-10-11 15:37:18'),(3343,'API_47979857f71ab7739fbbb3d1d10c59b8','删除地图配置','','cmii-uav-user','/api/uav/org/delMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:45',1,'2024-10-11 15:37:17'),(3344,'API_fb4aefe0ad2483a442075ebded82acca','获取指定组织的地图配置','','cmii-uav-user','/api/uav/org/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:45',1,'2024-10-11 15:37:13'),(3345,'API_10eba035deca93be164f1ad3f808311b','获取自己组织的地图配置','','cmii-uav-user','/api/uav/user/profile/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:46',1,'2024-10-11 15:37:09'),(3346,'API_7d5cf2f804b905941b817979062096c0','景区文件列表获取,临时接口','景区文件列表获取,临时接口','cmii-uav-material-warehouse','/api/v1/warehouse/project/liveStream/list','GET',_binary '\0',_binary '\0','2023-01-18 06:18:38',1,'2024-10-11 08:57:35'),(3347,'API_930a09f77cec27cf6dd4f590079e5f49','景区文件获取,临时接口','景区文件获取,临时接口','cmii-uav-material-warehouse','/api/v1/warehouse/project/liveStream/download','GET',_binary '\0',_binary '\0','2023-01-18 06:18:38',1,'2024-10-11 08:57:34'),(3348,'API_9f5234d806cce0f1d76e28f154963f2c','通过航线生成kmz, 返回素材仓库object url','','cmii-uav-waypoint','/api/uav/waypoint/kmz/generateKMZFile','POST',_binary '\0',_binary '\0','2023-02-08 08:04:07',1,'2024-09-09 09:16:28'),(3349,'API_529464201b2f298924bbd8e0d9b9382d','删除/批量删除','','cmii-uav-gis-server','/vr/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3350,'API_58ecbf45effdb2be0f56ccd0d807588f','新增','','cmii-uav-gis-server','/vr/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3351,'API_3917f653a3a79462617b3f9aff992667','编辑','','cmii-uav-gis-server','/vr/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3352,'API_79699dc19ccd0efb777db8d9071480d9','判断数据是否被删除','','cmii-uav-gis-server','/vr/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3353,'API_d41589c153074854218116e58a989d25','列表分页查询','','cmii-uav-gis-server','/vr/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3354,'API_75a3f44f890e8bbe0ec10a4cd9dd1e85','获取详情','','cmii-uav-gis-server','/vr/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3355,'API_13f012fbcdcc63e44a4cb201c476eaa5','删除/批量删除','','cmii-uav-gis-server','/image/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3356,'API_b2b74d4055666016cb6fb1f06c996940','新增','','cmii-uav-gis-server','/image/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3357,'API_4416bf19b6e89274d3247915169cfbb5','编辑','','cmii-uav-gis-server','/image/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3358,'API_026d1f8457f7facab1ce45a1850c375a','判断数据是否被删除','','cmii-uav-gis-server','/image/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3359,'API_b8cb781a722439d546a10930e7644bfa','列表分页查询','','cmii-uav-gis-server','/image/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3360,'API_3b723c52cb4b91bf41389e9455d1c4c0','获取详情','','cmii-uav-gis-server','/image/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3361,'API_900ae6fc853e01bbce531bdaf2d702b8','删除/批量删除','','cmii-uav-gis-server','/threeD/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3362,'API_b06b78ba078d88b3fa975ce28ffec0af','新增三维视图','','cmii-uav-gis-server','/threeD/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3363,'API_e457ca7b4de0d105679038e605290f84','编辑三维视图','','cmii-uav-gis-server','/threeD/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3364,'API_ee4deb3c0d2f37768255929a6ca6ac11','判断数据是否被删除','','cmii-uav-gis-server','/threeD/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3365,'API_a291de8ef4751472f3cd30b303646f85','后台处理进度','','cmii-uav-gis-server','/threeD/publishProgress','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3366,'API_0d9e2a9fe5bad16a2ab66de9d32385e9','zip文件上传(测试用已废弃)','测试使用(测试用已废弃)','cmii-uav-gis-server','/threeD/localUploadTest','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3367,'API_309182e928412715a9d5fed2d7f90c4f','三维视图列表分页查询','','cmii-uav-gis-server','/threeD/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3368,'API_4efcc85cc5016229744188228df4c804','获取三维视图详情','','cmii-uav-gis-server','/threeD/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3369,'API_3e42c93fb9bb90097ed0682ef0875b52','获取上传人下拉数据','','cmii-uav-gis-server','/threeD/getCreateByFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3370,'API_408d99f0cd676956f627002b1e263ca1','获取名称模糊查询','','cmii-uav-gis-server','/threeD/getFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3371,'API_a80edfcfd0a69d4043f96bb03c71f5df','获取对比数据','','cmii-uav-gis-server','/threeD/getCompareData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3372,'API_a9c1dcefd3730ce7bd952efa91f9bf74','分片上传','','cmii-uav-gis-server','/threeD/multipartUpload','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3373,'API_b55bf52c5f27cccbb3ef345851496dbd','文件合并','','cmii-uav-gis-server','/threeD/multipartMerge','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3374,'API_12b7eda8efc787626a757b5732e82953','删除/批量删除','','cmii-uav-gis-server','/grid/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3375,'API_bad271df6a2fa2628a684484fc88e3f5','新增二维视图','','cmii-uav-gis-server','/grid/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3376,'API_d2ba6ccafc7d1f8b9d8f19944de0d7b8','编辑二维视图','','cmii-uav-gis-server','/grid/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3377,'API_5191b4fae3951e2d43409c8d3a487f3a','判断数据是否被删除','','cmii-uav-gis-server','/grid/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3378,'API_528e2cfd66ab3ed9906ac7e2c3bb4e17','后台处理进度','','cmii-uav-gis-server','/grid/publishProgress','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:15'),(3379,'API_b2567cb080dc0803f1ebb2a2498682ef','zip文件上传(测试用已废弃)','测试使用(测试用已废弃)','cmii-uav-gis-server','/grid/localUploadTest','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-07-10 01:51:00'),(3380,'API_03c187214a1625910a94e40c969bd7da','获取视图名称下拉数据','','cmii-uav-gis-server','/grid/getNameFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3381,'API_f610a0dea535f8ff2f84fa58bdc3d65c','二维视图列表分页查询','','cmii-uav-gis-server','/grid/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3382,'API_11a41313b6dca9d7dd83388f42a8a2c8','获取二维视图详情','','cmii-uav-gis-server','/grid/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3383,'API_446c3984e90d49167aca7acb14365f31','获取上传人下拉数据','','cmii-uav-gis-server','/grid/getCreatorByFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3384,'API_fc5a11718159a1271b246d45a4c9282f','获取对比数据','','cmii-uav-gis-server','/grid/getCompareData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3385,'API_90a17c489826d517a26a7864a4045005','分片上传','','cmii-uav-gis-server','/grid/multipartUpload','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:14'),(3386,'API_4d83e5ce6626fa6c00fecdd8802b972c','文件合并','','cmii-uav-gis-server','/grid/multipartMerge','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-09-09 09:17:16'),(3387,'API_0042ff7fba92103bc243de86021c80d0','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-gis-server','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3388,'API_5bd7373965e6598c36aaea1c17c37922','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-gis-server','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3389,'API_b067c7ded20220c352f8eb29c14f22d8','删除项目的文件','删除项目的文件,支持批量','cmii-uav-gis-server','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3390,'API_330141b707ed8a38a13fa2acd325366c','项目文件上传','上传项目文件 ','cmii-uav-gis-server','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3391,'API_3a35285fa9cfebc11564be878c0ca050','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-gis-server','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3392,'API_04bacb38b2e572545b4850d7310990e7','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-gis-server','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3393,'API_29f571b0046313d53ed3246ddd8bb783','第一次上传项目','第一次上传项目,返回projId','cmii-uav-gis-server','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3394,'API_6931208a2fe7afa9233f2095dc0ebcfa','统计基于任务类型的飞行时间比例','','cmii-uav-mission','/api/uav/mission/mission_info_list/queryFlyTimeByTaskType','GET',_binary '\0',_binary '\0','2023-02-08 08:04:19',1,'2024-10-10 08:57:15'),(3395,'API_2ddec9b0a6c6ddb7972bb3a4b7cb19b5','测his','','cmii-uav-user','','GET',_binary '\0',_binary '\0','2023-02-08 08:04:29',1,'2023-08-07 06:29:39'),(3396,'API_595b33682c3f519aaf3572b88817b432','飞手-查询飞手','飞手-查询飞手','cmii-uav-user','/clients/flyer/getRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:29',1,'2024-10-11 15:37:19'),(3397,'API_e495283cfa185294b0ac99f8c3afbfa5','飞手-查询历史飞手列表','飞手-查询历史飞手列表','cmii-uav-user','/clients/flyer/queryHistoryRpcsByIds','POST',_binary '\0',_binary '\0','2023-02-08 08:04:31',1,'2024-10-11 15:37:11'),(3398,'API_b1e7b0038cbcbdde48ab92395a49fc77','飞手-查询历史飞手信息','飞手-查询历史飞手信息','cmii-uav-user','/clients/flyer/getHistoryRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:32',1,'2024-10-11 15:37:18'),(3399,'API_ea461e10014bb0021824cd9983557961','查询组织自身实际分配给自己配额','','cmii-uav-user','/client/quota/getQuotaConfigByType','POST',_binary '\0',_binary '\0','2023-02-08 08:04:32',1,'2024-10-11 15:37:18'),(3400,'API_16f8fa42e4aaf03d75116f4c3e60a035','createRSA','','cmii-uav-device','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-02-08 08:04:38',1,'2024-10-11 01:36:42'),(3401,'API_a44b0821a730074823868b207b2da9b6','test','','cmii-uav-data-post-process','/product/test1','GET',_binary '\0',_binary '\0','2023-02-08 08:35:43',1,'2024-09-09 09:16:30'),(3402,'API_c64fa9a54063c392bc7ae9abfdecf20f','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryFlyTotalByCmpScope','GET',_binary '\0',_binary '\0','2023-02-09 05:51:42',1,'2024-10-11 01:36:54'),(3403,'API_e948d384436ebdf4111fcaed655e4adf','获取公司范围内的飞手列表','','cmii-uav-device','/api/uav/plane/queryFlyerList','GET',_binary '\0',_binary '\0','2023-02-09 05:51:42',1,'2024-10-11 01:36:52'),(3404,'API_e2603349404147c76839e77869c5b8ba','计算距离','计算距离','cmii-uav-mqtthandler','/oapi/uav/flight/getDistance','GET',_binary '\0',_binary '\0','2023-03-29 09:04:36',1,'2024-09-25 08:48:45'),(3405,'API_0e6c72f26d8a0d28df1d48e272ab237f','按时间查询统计数据项,公司分割','','cmii-uav-surveillance','/surveillance/flight_records/query_items_by_company','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-09-23 20:58:57'),(3406,'API_a0567756b018117b093d2a896c0b7e10','按时间查询统计数据项,按天统计','填充空日期,升序','cmii-uav-surveillance','/surveillance/flight_records/query_items_by_day','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-09-23 20:58:58'),(3407,'API_044cd372fdbf8162edee2d746c53be85','插入一条飞行记录数据','','cmii-uav-surveillance','/surveillance/flight_records/insertRecord','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-09-23 20:58:58'),(3408,'API_561e8055292a2126ba9a260285608492','插入一条飞行记录数据','','cmii-uav-surveillance','/surveillance/flight_records/insert_record','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-09-23 20:59:01'),(3409,'API_7698ef1abc78026da764aef4c42e95f7','按时间查询公司范围统计数据','','cmii-uav-surveillance','/surveillance/flight_records/query_statistics','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-09-23 20:58:58'),(3410,'API_25ebf2c681fb2a6036442fde4b2024d4','按时间查询公司范围所有数据项','','cmii-uav-surveillance','/surveillance/flight_records/query_item_details','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-09-23 20:58:57'),(3411,'API_b45ae6e6540f1c26f30f6821db701f94','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','','DELETE',_binary '\0',_binary '\0','2023-03-29 10:23:00',1,'2023-06-14 09:37:52'),(3412,'API_917d79d5fe966b35d589931c2624c15b','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','','GET',_binary '\0',_binary '\0','2023-03-29 10:23:01',1,'2023-06-14 09:37:52'),(3413,'API_76fe81b0201574b22b605d2496c59164','获取详情','','cmii-uav-gis-server','','GET',_binary '\0',_binary '\0','2023-04-03 07:16:03',1,'2023-05-19 03:16:37'),(3414,'API_8dacfd37cbb9dcaa3cab8afa6222bd57','createRSA','','cmii-uav-gis-server','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-04-03 07:16:04',1,'2024-09-09 09:17:16'),(3415,'API_6382c442feffdb99d380fc509b8d8cdf','机库绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/hangar/queryBoundVideoByHgrDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:19',1,'2024-10-11 01:36:51'),(3416,'API_74382abbc96293ea3031fda83c1dabfc','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:22',1,'2024-10-11 01:36:46'),(3417,'API_188e69fc95d194a9cc990f43c8503833','查询天途云台视频播放地址','','cmii-uav-mqtthandler','','GET',_binary '\0',_binary '\0','2023-04-09 06:04:51',1,'2023-05-10 03:52:00'),(3418,'API_1e82ef565c64a0cd4cd017a4fbda0f22','查询上传状态','','cmii-uav-waypoint','','GET',_binary '\0',_binary '\0','2023-04-09 06:06:57',1,'2023-05-18 09:34:52'),(3419,'API_ff1d22c70d82e240ab2765180befc1fa','测试wpml内容','','cmii-uav-waypoint','/api/uav/waypoint/kmz/get_wmpl','GET',_binary '\0',_binary '\0','2023-04-09 06:06:58',1,'2024-09-09 09:16:29'),(3420,'API_df1d5509b94fefcdd50b9313c14eae21','飞行器关机','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/drone_shutdown','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-09-23 20:58:57'),(3421,'API_909ff854a0621302bd86ca644d898d1a','推杆开关 0:闭合, 1:展开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/putter_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-09-23 20:58:57'),(3422,'API_79362caeed9e7a8fe0e051b715c0ca81','机场重启','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/dock_reboot','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-09-23 20:59:01'),(3423,'API_1b90b0f404bc5e5c3026df35020d342f','机场电池保存策略切换 1:电池计划存储策略,2:电池应急存储策略','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/battery_store_mode','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-09-23 20:58:57'),(3424,'API_73577911ce880e8779ec8d1d1c50f2da','机场声光报警开关 0 关 1 开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/alarm_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-09-23 20:59:00'),(3425,'API_3f23444842f5c763ff7d60791c287afb','按年/月/日查询所有平台飞行总时长','','cmii-uav-surveillance','','GET',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2023-05-18 09:50:21'),(3426,'API_638ace2fba2f7f34ef694a8a35b31f79','舱盖开关 0:关, 1:开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/lid_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-09-23 20:58:59'),(3427,'API_de81160b18361339ef97154721091428','远程调试功能开关 0:关, 1开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/remote_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-09-23 20:58:58'),(3428,'API_4dd40372c48fd7253f5f41283634dd51','电池保养状态切换 0:关,1:开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/battery_maintenance','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-09-23 20:59:01'),(3429,'API_b1be31bab27f7cdbca770efc363eff61','增强图传开关 0: 仅使用sdr,1:4G增强模式','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/sdr_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-09-23 20:59:00'),(3430,'API_41216a33cbb1316f0de592a30b755d30','机场数据格式化','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/dock_format','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-09-23 20:58:58'),(3431,'API_af66ae63e93eac699cae3015f5ede1c4','飞机数据格式化','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/drone_format','POST',_binary '\0',_binary '\0','2023-04-09 06:13:05',1,'2024-09-23 20:58:57'),(3432,'API_d0ff4d0c3510b7306c3f0639f3c39f17','充电开关 0:关,1:开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/charge_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:05',1,'2024-09-23 20:58:58'),(3433,'API_d4dc66272c8ec89e83dbab6ef31b207e','机场重启后飞行器开机','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/drone_open','POST',_binary '\0',_binary '\0','2023-04-09 06:13:05',1,'2024-09-23 20:59:00'),(3434,'API_d0692d0e88427623e4d590a5204d287a','publishCancelJob','','cmii-uav-integration','','DELETE',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2023-05-18 09:35:13'),(3435,'API_a9990662ecbbeabaea5dc0957a8f4764','getWaylinesPagination','','cmii-uav-integration','','GET',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2023-05-18 09:35:13'),(3436,'API_5611d1b133b7c864742820d9fa85f1aa','停止直播','','cmii-uav-integration','/dji_cloud/stream_control/stop_push','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-09-30 07:59:18'),(3437,'API_8f29b375a445c537e7cbb501f72116a5','uploadMediaHighestPriority','','cmii-uav-integration','','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2023-05-18 09:35:13'),(3438,'API_5c313ef7893c7f7fbe107708a755eb2e','health','','cmii-uav-integration','/cmii/health','GET',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-09-30 07:59:18'),(3439,'API_43053d581f65bf9402b9a5ecfc75c1d2','一键返航','','cmii-uav-integration','/dji_cloud/remote_control/return_home','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-09-30 07:59:17'),(3440,'API_4122fb481fd60b22f2915dd18234346e','起飞、降落指令','','cmii-uav-integration','/jouav_cmd/take_off_or_landing','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-09-30 07:59:18'),(3441,'API_7627eaf462aaec5a8b1c330988612dc9','远程调试功能开关 0:关, 1开','','cmii-uav-integration','/dji_cloud/remote_control/remote_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-09-30 07:59:16'),(3442,'API_76a1baab2aad47d7f92b38721111fdc2','纵横发送航线地址、推流地址到设备','','cmii-uav-integration','/jouav_cmd/plan_push','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3443,'API_bc560b0bfc97eb254268adcc41b61d22','updateElement','','cmii-uav-integration','','PUT',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-18 09:35:12'),(3444,'API_54740222614ea4ce3062d058a85e5358','createRSA','','cmii-uav-integration','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3445,'API_02f826ab0873e98ccbcd8cfc598382df','getRedis','','cmii-uav-integration','/dji_cloud/wayline/redis_get_test','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:05'),(3446,'API_a077ab68f3fa4e76249617ad9d4f5077','将航线文件推送给大疆机场','','cmii-uav-integration','/dji_cloud/wayline/push_line','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:18'),(3447,'API_044117e1e2fdce1b26984064934e1878','设置直播镜头模式','','cmii-uav-integration','/dji_cloud/stream_control/mode_change','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3448,'API_71b108ad301f9a3da8b61851ca8a13af','securityConfiguration','','cmii-uav-integration','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3449,'API_85beac3d46aab765d8cc9f0e19bd277c','接口扫描','','cmii-uav-integration','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3450,'API_3dab1ef7eac8eb9a2335ace7890f5f7f','补光灯开关 0:关, 1开','','cmii-uav-integration','/dji_cloud/remote_control/supplement_light','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3451,'API_38fb975123580c9f07f08000b5aa776b','飞机数据格式化','','cmii-uav-integration','/dji_cloud/remote_control/drone_format','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3452,'API_5b6b3c2524df9bccc894f733daea4367','充电开关 0:关,1:开','','cmii-uav-integration','/dji_cloud/remote_control/charge_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3453,'API_fae5cb4f81cc77cdb9e15bf0f3225950','舱盖开关 0:关, 1:开','','cmii-uav-integration','/dji_cloud/remote_control/lid_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3454,'API_2923a0ad680149769a749d0fc72026de','飞行器关机','','cmii-uav-integration','/dji_cloud/remote_control/drone_shutdown','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:18'),(3455,'API_a53afed6ecc42379e5b1154efbf65960','VTK视频解码','','cmii-uav-integration','/jouav_cmd/startVtk','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3456,'API_e5b03b88a8fc2c459b9caaf0dacb5398','取消最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/undo_wayline','PUT',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:05'),(3457,'API_afe9e4e0677975ab128f20d17fa91a19','执行最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/execute_wayline','PUT',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:04'),(3458,'API_968163d325c8b9c7b323b2c528ab4b54','设置直播清晰度','','cmii-uav-integration','/dji_cloud/stream_control/set_quality','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3459,'API_0994a6c96c4a0952af6945b746f6a002','getDocumentation','','cmii-uav-integration','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3460,'API_8d99ca7d6da23c6679adbce69b03af4b','纵横 吊舱控制功能开关','','cmii-uav-integration','/jouav_cmd/pod_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3461,'API_86c20625d95a6deb2cd3d76a188db8bc','机场数据格式化','','cmii-uav-integration','/dji_cloud/remote_control/dock_format','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3462,'API_54e46d0b7e94308bc28cc829f64ec157','ping','','cmii-uav-integration','/cmii/ping','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:18'),(3463,'API_489251d392951a1628bf4f3930a3a319','机场重启','','cmii-uav-integration','/dji_cloud/remote_control/dock_reboot','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3464,'API_2b80fd01d56f64d6083b7c6d3ffdc6c6','手动添加设备上线后需要的订阅主题','','cmii-uav-integration','/dji_cloud/remote_control/add_topics','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:04'),(3465,'API_165c75a355520f62537cb16c79242b49','增强图传开关 0: 仅使用sdr,1:4G增强模式','','cmii-uav-integration','/dji_cloud/remote_control/sdr_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3466,'API_ec9aead59477bdaacf9263bd42aae8fc','开始直播','','cmii-uav-integration','/dji_cloud/stream_control/start_push','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3467,'API_b2fe5f9deb705aa9ac276016caccfda5','env','','cmii-uav-integration','/cmii/env','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3468,'API_14613f7fe5aa827eff7aabed9a9ea589','setRedis','','cmii-uav-integration','/dji_cloud/wayline/redis_set_test','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:04'),(3469,'API_cecc6af8c42e4b693a44995752ef4bef','电池保养状态切换 0:关,1:开','','cmii-uav-integration','/dji_cloud/remote_control/battery_maintenance','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:18'),(3470,'API_7b33236ecd11a1c602b3aae8002dc5ca','机场声光报警开关','','cmii-uav-integration','/dji_cloud/remote_control/alarm_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:18'),(3471,'API_269c942b426428a7a18667bebfa73a04','swaggerResources','','cmii-uav-integration','/swagger-resources','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3472,'API_7f629b4eaced20896a2ce62e2326e047','uiConfiguration','','cmii-uav-integration','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3473,'API_56e87746c453a13a2e72378a39f5b059','纵横球机控制动作指令','','cmii-uav-integration','/jouav_cmd/gimbal_cmd','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3474,'API_e388ccfea132cece796cca6887dc724e','推杆开关 0:闭合, 1:展开','','cmii-uav-integration','/dji_cloud/remote_control/putter_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3475,'API_141d6e9346971b7b72c458a43abc0fe9','error','','cmii-uav-integration','/error','',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:18'),(3476,'API_858b99f54c916fb6b61e325b647c6921','getDocumentation','','cmii-uav-integration','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3477,'API_c377d3c816797df2d2cf409032ac7cb6','控制跟踪航点指令','','cmii-uav-integration','/jouav_cmd/track_to','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3478,'API_c2a855df8222a01c665cddd60e4849a6','机场电池保存策略切换 1:电池计划存储策略,2:电池应急存储策略','','cmii-uav-integration','/dji_cloud/remote_control/battery_store_mode','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3479,'API_77f4b0264bde1754beeb24ffb340a9f0','飞行器开机','','cmii-uav-integration','/dji_cloud/remote_control/drone_open','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:17'),(3480,'API_b473709ef002f563873eb86ff0a66af3','直播能力更新','','cmii-uav-integration','/dji_cloud/stream_control/update_capacity','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-09-30 07:59:16'),(3481,'API_ef18e28046f8823ce9871074c311d87c','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/plane/checkUavExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:29',1,'2024-10-11 01:36:51'),(3482,'API_3759ecb4da461b7ed9a15788a63b802e','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/hangar/checkHgrExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:29',1,'2024-10-11 01:36:51'),(3483,'API_92d16f0d344b72a93164f3a1567937c8','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-mqtthandler','/oapi/uav/flight/uploadDefaultForDock','POST',_binary '\0',_binary '\0','2023-04-12 10:34:07',1,'2024-09-25 08:48:47'),(3484,'API_782102f1e0603897b16656955de7b140','获得镜头列表','','cmii-uav-integration','/dji_cloud/stream_control/get_cam_list','POST',_binary '\0',_binary '\0','2023-04-12 12:33:25',1,'2024-09-30 07:59:18'),(3485,'API_2ada31cfde3d32c09c7e85aaf2e01e35','修改机库的无人机载荷推流模式,会同时修改载荷的模式,广角or变焦','','cmii-uav-integration','/dji_cloud/stream_control/live_stream_change','POST',_binary '\0',_binary '\0','2023-04-12 12:33:26',1,'2024-09-30 07:59:17'),(3486,'API_182ee7baff979a8cb4e801ee17150214','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryCamVideoByUavCode','GET',_binary '\0',_binary '\0','2023-04-13 01:10:28',1,'2024-10-11 01:36:49'),(3487,'API_975860e014c1f8469949d110d928bdc2','大疆机库 同时有哈勃连接时,切换为哈勃控制','','cmii-uav-surveillance','/surveillance/uav_command/switch_to_5g','POST',_binary '\0',_binary '\0','2023-04-19 06:04:21',1,'2024-09-23 20:58:59'),(3488,'API_10bc12773538fe202ce082b70dcddc6b','大疆机库 同时有哈勃连接时,切换为哈勃控制','','cmii-uav-mqtthandler','/uav_fly_command/switch_to_5G','POST',_binary '\0',_binary '\0','2023-04-19 06:04:45',1,'2024-09-25 08:48:47'),(3489,'API_898cdc9b8953a19179070601d11a4ef6','获取当前无人机人群计数告警','','cmii-uav-mission','/api/uav/mission/surveillance/getAIPeopleAlarm/{uasId}','GET',_binary '\0',_binary '\0','2023-04-24 07:42:41',1,'2024-10-10 08:57:14'),(3490,'API_ff937f96a72eecf0d54dd5390d9f8c0a','获取当前无人机火情告警','','cmii-uav-mission','/api/uav/mission/surveillance/getAIFireAlarm/{uasId}','GET',_binary '\0',_binary '\0','2023-04-24 07:42:42',1,'2024-10-10 08:57:14'),(3491,'API_ebccbcfc4dac0291ffd9f0ccd961bb25','获取当前无人机综合告警','','cmii-uav-mission','/api/uav/mission/surveillance/getAITotalAlarm','GET',_binary '\0',_binary '\0','2023-04-24 07:42:42',1,'2024-10-10 08:57:09'),(3492,'API_bc3a82ef832c0ee97ce4aae37f1ed445','获取江苏文旅获取人流量向图','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMap','GET',_binary '\0',_binary '\0','2023-04-24 08:14:24',1,'2024-09-23 20:58:57'),(3493,'API_db606d1776d5b7317901233f700f6050','获取客流数据','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getPeopleTotal','GET',_binary '\0',_binary '\0','2023-04-24 08:14:25',1,'2024-09-23 20:58:59'),(3494,'API_c08789b2c3cf169b1b8a2a6391aa014e','获取视频HLS回放url','获取视频HLS回放url','cmii-uav-cloud-live','/personal/his/playback/hls/getPlayUrl','POST',_binary '\0',_binary '\0','2023-04-26 08:53:38',1,'2024-10-12 09:42:36'),(3495,'API_4cd087acea12e9df6dadc85a13d81647','上报已存储的视频分片','上报已存储的视频分片','cmii-uav-cloud-live','/client/live/stream/reportPartFile','POST',_binary '\0',_binary '\0','2023-04-26 08:53:38',1,'2024-10-12 09:42:36'),(3496,'API_2ace9d2a26489c0b6c0461b6716d1df0','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/client/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-10-12 09:42:35'),(3497,'API_6099fa9109dc842a151d9090663330c2','视频HLS回放','视频HLS回放','cmii-uav-cloud-live','/public/his/playback/hls.m3u8','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-10-12 09:42:34'),(3498,'API_2679f7b8474fc8ef2d2ea59f71b2d6aa','获取HLS直播回放地址','获取HLS直播回放地址','cmii-uav-cloud-live','/client/live/stream/getHlsPlayInfo','POST',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-10-12 09:42:38'),(3499,'API_bb73da26afcc140de238a1bad0f939b3','createRSA','','cmii-uav-airspace','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2024-10-11 08:57:37'),(3500,'API_eb1dcca4405d4fe3cee268fd731e35b1','电子围栏详情','','cmii-uav-airspace','','GET',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2023-11-29 09:23:20'),(3501,'API_e9950248886164a0660833a57afc22cd','删除电子围栏','','cmii-uav-airspace','','DELETE',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2023-11-29 09:23:20'),(3502,'API_96d6885d86f7c133fd20b2f87d02aa0f','按条件查询空域申请和时间段','','cmii-uav-airspace','/zydAirspace/queryAll.do','POST',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2024-10-11 08:57:38'),(3503,'API_0c30bb16f603e55c1535ac9bb6e2191d','查询范围内危险电子围栏信息','','cmii-uav-airspace','/efence_airspace/selectByPoint.do','POST',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2024-10-11 08:57:37'),(3504,'API_81598aae5c2172682604ff6dc4787f2f','开始指点飞行,带作业','给定起点和终点,是否开始作业,是否使用kmz,是否存储航线','cmii-uav-surveillance','/surveillance/uav_command/start_point_fly','POST',_binary '\0',_binary '\0','2023-05-04 01:25:07',1,'2024-09-23 20:58:57'),(3505,'API_f270e43ffd8a12de0606df17b8985511','根据无人机id查询无人机起飞位置','','cmii-uav-surveillance','/surveillance/queryUavTakeOffPos','GET',_binary '\0',_binary '\0','2023-05-04 01:25:07',1,'2024-09-23 20:58:57'),(3506,'API_7b1a4e7d0628bb819ebd556c840b0a80','提供已有航线,无人机机库 创建快速作业','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_with_line','POST',_binary '\0',_binary '\0','2023-05-04 01:30:02',1,'2024-10-10 08:57:03'),(3507,'API_c8a8f035667a5370d7aee5ef0aaed372','指定两点进行航线插值,或者规划避障航线,并且存储数据库','默认飞完悬停','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_line_between','POST',_binary '\0',_binary '\0','2023-05-04 01:31:44',1,'2024-09-09 09:16:29'),(3508,'API_2f576b4aa4334399d4a68ef04f3b7d0d','查询走廊信息','','cmii-uav-grid-datasource','/corridor/corridorQuery','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3509,'API_ec475feef48ac52bb568bad1b59dceeb','检查url是否已经使用','','cmii-uav-grid-datasource','/terrain/checkRepeatUrl','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3510,'API_5b8f1dc3f3ecadbc8cc614e907ac76a3','env','','cmii-uav-grid-datasource','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3511,'API_a233f3b210c54d7fe244188c06a7c4a4','ping','','cmii-uav-grid-datasource','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3512,'API_3dd7916d2570ad77f5f0a4a36a81e43f','保存执行计划','','cmii-uav-grid-datasource','/dataImport/saveCron','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3513,'API_8f8558323e61097a2b8c8d52aae45a22','已接入服务列表','','cmii-uav-grid-datasource','/dataImport/serviceList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3514,'API_5050c3adce00b0029e7b454a77f2f927','飞行计划相交集合','','cmii-uav-grid-datasource','/fightPlan/fightPlanIntersect','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3515,'API_863e3233dd2fb0dfead2b5ae873204d1','立即同步','','cmii-uav-grid-datasource','/dataImport/sync','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3516,'API_37e909b2fefde1d03603324339350050','新增地形数据','','cmii-uav-grid-datasource','/terrain/addTerrain','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3517,'API_e1e529b85d096ca15c079328efd9aad4','查询默认地形数据','','cmii-uav-grid-datasource','/terrain/queryDefaultTerrain','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3518,'API_72bc4178dda49853316a0e3a7bdd8ce8','打码航线','','cmii-uav-grid-datasource','/coding/codingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3519,'API_894b58fcd4bf77172cf7aea9ee666e09','获取网格编码','','cmii-uav-grid-datasource','/grid/manager/getGrid','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3520,'API_ce37696c8ec4641de8ea62167d8dc1b3','根据网格码查询标注信息','','cmii-uav-grid-datasource','/mark/queryMarkList','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3521,'API_bec34ea6ec4eeffc887efdc8146339ed','存储指定网格码的外包矩形','','cmii-uav-grid-datasource','/custom/saveGrid3dScope','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3522,'API_64bc026764f6c25b42c69a8606a07a94','getDocumentation','','cmii-uav-grid-datasource','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3523,'API_c9ddccbad8fa8784cdaf1991b097fe33','设置默认地形','','cmii-uav-grid-datasource','','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2023-07-18 04:08:06'),(3524,'API_29afb846adb55f238910d05afbe2e761','createRSA','','cmii-uav-grid-datasource','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3525,'API_d279ca67575d122ef0f61ff81cbe7a8d','多边形打码','','cmii-uav-grid-datasource','/corridor/polygonCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3526,'API_b1608c283d9b041b452a7a559e608496','批量获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeights','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3527,'API_b049cf657a5c0a8e9096e440ca661d02','securityConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3528,'API_4aaa777469e72d7417e378e630b5bd8f','生成走廊网格码','','cmii-uav-grid-datasource','/corridor/corridorCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3529,'API_59448bffb78439636d0b4d3f16ca48f2','航线在线打码','','cmii-uav-grid-datasource','/custom/onlineCodingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3530,'API_56b94ed05c688dfa4f3bd071967f7fca','打码可飞行区域','','cmii-uav-grid-datasource','/coding/codingFlyableAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3531,'API_91bd981c8e68b461bf325839da3f0413','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeightToRpc','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3532,'API_37e8361e9f18210f188b9312f0edb357','打码单个空域','','cmii-uav-grid-datasource','/custom/gridCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3533,'API_8a1741a83cb91167bd83059338e69dfa','条件查询地形数据','','cmii-uav-grid-datasource','/terrain/queryTerrainByCondition','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3534,'API_e6311bd8b4857f003d5ae41ddc1b9fa8','保存已通过飞行计划','','cmii-uav-grid-datasource','/fightPlan/savePassFightPlan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3535,'API_3c1ff288ca2fbf810ccd69e351235542','swaggerResources','','cmii-uav-grid-datasource','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3536,'API_ecbc7c4dce2a7addfbb0169537a09e06','health','','cmii-uav-grid-datasource','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3537,'API_4fbd74c072343df88b232fbe31a59b04','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeight','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3538,'API_025c2238b894f0a0f96b1cd192067bbe','error','','cmii-uav-grid-datasource','/error','',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3539,'API_a3ad8f8222c9436057a777a55faf8a7c','获取地形数据列表','','cmii-uav-grid-datasource','/terrain/getTerrainList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3540,'API_130f26dd451d2a049d5d834b0b0a17de','删除标注信息','','cmii-uav-grid-datasource','/mark/deleteMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3541,'API_c7a327fe84d6d10b54e0de34b9e1ea19','接口扫描','','cmii-uav-grid-datasource','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3542,'API_2447fe8d41a35c4fee51f7b369d7fd12','保存/更新标注信息','','cmii-uav-grid-datasource','/mark/saveOrUpdateMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3543,'API_d811537b42ba578dbc6be1586739193d','getDocumentation','','cmii-uav-grid-datasource','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3544,'API_aaacdcec734a7703cdcf345d3ed75d5c','飞行冲突判断','','cmii-uav-grid-datasource','/fightConflict/fightConflict','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3545,'API_ad3946fa86a26f16ffa9052e13bc40bf','走廊删除','','cmii-uav-grid-datasource','/corridor/deleteCorridor','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3546,'API_b0210debfbccada2fc2ddcb13cf64b84','uiConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3547,'API_33b1d75edb6c55c345002a8a44808880','根据ID删除地形数据','','cmii-uav-grid-datasource','','DELETE',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2023-07-18 04:08:06'),(3548,'API_a935d01ed0b7168651291ee04b37894d','打码禁飞区','','cmii-uav-grid-datasource','/coding/codingNoFlyAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3549,'API_0d8be20aa87412864193933ec619e5d7','获取多个无人机最新坐标数据','','cmii-uav-surveillance','/feign/surveillance/queryUavsPoint','POST',_binary '\0',_binary '\0','2023-05-04 09:34:49',1,'2024-09-23 20:58:57'),(3550,'API_84fd2cafee052645fe713aaa3c585fa1','获取多个无人机的飞行轨迹数据','','cmii-uav-surveillance','/feign/surveillance/queryUavPoints','POST',_binary '\0',_binary '\0','2023-05-04 09:34:51',1,'2024-09-23 20:59:00'),(3551,'API_c34c215c95a573cb33d1b4d21c155e6d','ping','','cmii-uav-grid-manage','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:52'),(3552,'API_ad17693570299ac8cef693cd80f419c7','新增空域','','cmii-uav-grid-manage','/airspace/addCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:51'),(3553,'API_bd7418a9441af4ee7150a4047998f7b3','计算仿地航线坐标','','cmii-uav-grid-manage','/airline/calculateFdAirline','POST',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:51'),(3554,'API_c672008dc196b70852bbce47f1c3cbdf','查询自定义空域列表','','cmii-uav-grid-manage','/airspace/queryCustomAirspaceList','POST',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:53'),(3555,'API_9b3d288bb4aa5c5d4da560c005f2dc0a','getDocumentation','','cmii-uav-grid-manage','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:52'),(3556,'API_45e30303038520fe1eb4badaf06c04d6','获取偏航的航线','','cmii-uav-grid-manage','/offset/airline','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3557,'API_951a77152c4bed4d67f30630ff9f8863','env','','cmii-uav-grid-manage','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3558,'API_fbacfdafe70afcefb8cfc6591240f74e','uiConfiguration','','cmii-uav-grid-manage','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:51'),(3559,'API_bcc47f962fb4f992a0050f2607b44b81','自动寻路','','cmii-uav-grid-manage','/airline/autoPlanning','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3560,'API_40021442e04807354c9bef2f5ccd9a34','删除自定义空域','','cmii-uav-grid-manage','/airspace/deleteCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3561,'API_2c2f24cdf20eed14718d3ed174d92048','getDocumentation','','cmii-uav-grid-manage','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3562,'API_244387f64b7e6633df38426fd8b89ced','根据空域名称查询','','cmii-uav-grid-manage','/airspace/queryCustomAirspaceByName','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3563,'API_672b81d3a034dae247b16eb64a9a614e','test','','cmii-uav-grid-manage','/airline/test','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3564,'API_255542cbd1e9d2419904a88c96dfd1e8','swaggerResources','','cmii-uav-grid-manage','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3565,'API_b90f352faba436f6c3b0d012cc768991','航线在线打码','','cmii-uav-grid-manage','/airline/onlineCodingAirline','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3566,'API_2ae92431093f99a5f695fb70d4d25d5b','createRSA','','cmii-uav-grid-manage','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3567,'API_8047ac65c663c75f5838b994c74ea59b','error','','cmii-uav-grid-manage','/error','',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3568,'API_85714065bdbc7de178f29057cd2f73ca','health','','cmii-uav-grid-manage','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3569,'API_500ab519bf1af15a3dca09c1127eaa57','根据网格码查询航线信息','','cmii-uav-grid-manage','/airline/queryAirlineInfo','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3570,'API_cab4befaae83f7c1bdbd29fd048da089','securityConfiguration','','cmii-uav-grid-manage','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3571,'API_4cf3a51325047b95a8234bf95d9ce491','查询单个自定义空域','','cmii-uav-grid-manage','/airspace/queryCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3572,'API_7adf7e814f1484feb5f4d0b1bf0aa01e','接口扫描','','cmii-uav-grid-manage','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3573,'API_6c2b05607e066544b78a71461c752f6d','更新自定义空域','','cmii-uav-grid-manage','/airspace/updateCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3574,'API_67278d5256cca375b549dbd0064fe370','检测航线冲突','','cmii-uav-grid-manage','/airline/checkAirlineConflicts','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3575,'API_7b03a864c76767ba4f50b602a2712007','航线航点详情查询','','cmii-uav-data-post-process','','GET',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2023-05-10 05:55:49'),(3576,'API_206ed7e280eeeafb35c4af0497cfb748','取消任务','','cmii-uav-data-post-process','','POST',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2023-05-10 05:55:49'),(3577,'API_7f59745ba7746334fc4e42054b2ca602','查询建模类型配置','0:本地 1:本地+云化','cmii-uav-data-post-process','/product/getProductType','GET',_binary '\0',_binary '\0','2023-05-04 09:35:04',1,'2024-09-09 09:16:29'),(3578,'API_b359d2495bdc5aa07e9685fc8072693e','createRSA','','cmii-uav-data-post-process','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:35:04',1,'2024-09-09 09:16:29'),(3579,'API_4b4860beecfeaecd9f377855e82bdeda','更新已勾选的数据','','cmii-uav-data-post-process','/uav/threeD/editVisualChoose','PUT',_binary '\0',_binary '\0','2023-05-04 09:35:05',1,'2024-09-09 09:16:30'),(3580,'API_d52162a5cd1e62dfa714b1bccb31408a','createRSA','','cmii-admin-data','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:35:07',1,'2024-09-09 09:15:05'),(3581,'API_7fd046a59194d2af54f3fcdd4bf15887','查询天气综合接口','','cmii-admin-data','','GET',_binary '\0',_binary '\0','2023-05-04 09:35:08',1,'2023-09-10 12:23:34'),(3582,'API_4787f525e4b9b3e880a13fa6c815b231','编辑任务定义','编辑任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/modifyTask','POST',_binary '\0',_binary '\0','2023-05-04 09:35:11',1,'2024-09-12 02:46:58'),(3583,'API_4d3a4baeb1ac5ae600435063a101ef59','转换为系统任务','转换为系统任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2SysTask','GET',_binary '\0',_binary '\0','2023-05-04 09:35:11',1,'2024-09-12 02:46:57'),(3584,'API_6e4f3e159310433aa6f76aa0d407844e','任务配置列表','任务配置列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskDefList','POST',_binary '\0',_binary '\0','2023-05-04 09:35:12',1,'2024-09-12 02:46:55'),(3585,'API_6ec142d4ef3bb75c68be9a88b5474977','任务名称列表','任务名称列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskNames','GET',_binary '\0',_binary '\0','2023-05-04 09:35:12',1,'2024-09-12 02:46:56'),(3586,'API_94bdafc4561a0552cf36d934525dd6ea','queryTaskTypesMap','','cmii-uav-process','/client/taskdispatch/queryTaskTypesMap','POST',_binary '\0',_binary '\0','2023-05-04 09:35:12',1,'2024-09-12 02:46:58'),(3587,'API_324cbc3392d368a7ca5105ea91eba7b8','转换为自定义任务','转换为自定义任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2CustomTask','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:54'),(3588,'API_30bf98218376680d09033fb90c863194','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/batchDeleteTaskDef','POST',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:55'),(3589,'API_ec9fb300367fadba871b6a400f41531d','任务ID列表','任务ID列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskTypes','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:58'),(3590,'API_69aab0216c9b217b1d957ed16ce35500','删除任务定义','删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/deleteTaskDef','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:58'),(3591,'API_efea46ab4702f2c09a4b662bb4e4ccc3','createRSA','','cmii-uav-process','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:59'),(3592,'API_63a129347e547aa26eaa88996cab12f1','查看详情','查看详情','cmii-uav-process','/process/bizengine/manage/taskdef/geTaskDetail','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:59'),(3593,'API_0614844af2518673e07aeaee51772b5e','新建任务定义','新建任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/createTask','POST',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:54'),(3594,'API_e4e6d4125de70b6463d08fbf9d71c47f','查询指定编号的无人机视频流','','cmii-uav-device','/api/uav/stream/querySpecUavStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:16',1,'2024-10-11 01:36:53'),(3595,'API_be6e682bd0a2cdcf659f1d317e142227','查询无人机基础信息','','cmii-uav-device','/api/uav/stream/queryPlaneInfo','GET',_binary '\0',_binary '\0','2023-05-04 09:35:16',1,'2024-10-11 01:36:42'),(3596,'API_e4ea6bcadcc2e15b59c9bf580bec561c','查询公司下的在线无人机列表','','cmii-uav-device','/api/uav/stream/queryOnlineList','GET',_binary '\0',_binary '\0','2023-05-04 09:35:19',1,'2024-10-11 01:36:47'),(3597,'API_788c7ac27d69d34507ec569755221c6a','查询公司下的在线无人机','','cmii-uav-device','/api/uav/stream/queryStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:19',1,'2024-10-11 01:36:48'),(3598,'API_ae536f7a1e38eb6657fca01b3a47d766','导入杆塔列表数据','','cmii-uav-industrial-portfolio','','POST',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2023-07-06 10:54:17'),(3599,'API_fee84b04dda28a0764fe822ec3206128','公安场景-定时上报在线飞手位置','公安场景-定时上报在线飞手位置','cmii-uav-industrial-portfolio','/personal/api/uav/industrial/police/common/reportFlyPos','POST',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2024-10-15 02:14:11'),(3600,'API_5c4146c460bddb10dec7702cc9aa1996','监控大屏-出警','监控大屏-出警','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/treatTheCases','POST',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2024-10-15 02:14:12'),(3601,'API_51fa4b9a39998b616e2b7718991312ab','通过无人机id查询作业正在执行的航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/supervision/get_flying_waypoints','GET',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2024-10-15 02:14:09'),(3602,'API_e5a3811d8a65c04521f1b95dd0b7aa00','查询已添加的航线列表','','cmii-uav-industrial-portfolio','','GET',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2023-07-06 10:54:18'),(3603,'API_ec492e323ee5e1af971cb411a4e7b2e9','监控大屏-删除侦察点','监控大屏-删除侦察点','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/removeZhenchaPoint','GET',_binary '\0',_binary '\0','2023-05-04 09:35:27',1,'2024-10-15 02:14:09'),(3604,'API_6a6b31e94a9a3b2668bc404afd100d9a','删除航线','','cmii-uav-industrial-portfolio','','DELETE',_binary '\0',_binary '\0','2023-05-04 09:35:27',1,'2023-07-06 10:54:18'),(3605,'API_720d0217280e6b4772763eef16aa308d','通过无人机id查询作业正在执行的封存航线','','cmii-uav-mission','/api/uav/mission/surveillance/get_flying_waypoints','GET',_binary '\0',_binary '\0','2023-05-04 09:35:37',1,'2024-10-10 08:57:16'),(3606,'API_fb98f1b11a4224b2a9f3d126ea6cdc46','监控大屏-报警统计','监控大屏-报警统计','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/alarmStat','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:15'),(3607,'API_0ae9eaeb92b8a4496d77382cbe45b245','监控大屏-侦察统计','监控大屏-侦察统计','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/reconnoitreStat','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:09'),(3608,'API_430737f3cced1b78a0a2c206ee1e34c1','监控大屏-侦察点-删除侦察线路','监控大屏-侦察点-删除侦察线路','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/removeZCLine','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:16'),(3609,'API_8a45804a477c72d032614901853235f5','监控大屏-侦察点列表','监控大屏-侦察点列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/zhenchaPointList','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:15'),(3610,'API_f326d01cd17a07d1634fc3d48e7cda68','公安场景-定时上报侦察员位置','公安场景-定时上报侦察员位置','cmii-uav-industrial-portfolio','/api/uav/industrial/police/common/reportZCYPos','POST',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:18'),(3611,'API_2ed470e683730f14ce5e3f247e3b63ce','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/supervision/single_plane_track','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:14'),(3612,'API_c1f5944b8f408afd7ac36af3b6fb3691','监控大屏-人员信息(侦察员&飞手)列表','监控大屏-人员信息列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/personList','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:09'),(3613,'API_3bb14335a0d00471b06cd9203cb53fcf','监控大屏-分享-短信分享(页面暂未调用)','监控大屏-分享','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/shareSms','POST',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-10-15 02:14:14'),(3614,'API_f544c03500e441e9a882c92277f4a625','侦察员辅助工具-在线无人机列表','侦察员辅助工具-在线无人机列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/scoutTools/onlinePlanes','GET',_binary '\0',_binary '\0','2023-05-04 09:37:00',1,'2024-10-15 02:14:09'),(3615,'API_ce4d06f9113bb2f5540c01657a068638','监控大屏-分享-获取播放地址','监控大屏-分享-获取播放地址','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/share/getPlayStream','GET',_binary '\0',_binary '\0','2023-05-04 09:37:00',1,'2024-10-15 02:14:09'),(3616,'API_29c6189ee71e7807a5ccc90da6b02eef','侦察员辅助工具-侦察点列表','侦察员辅助工具-侦察点列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/scoutTools/ZCPointList','GET',_binary '\0',_binary '\0','2023-05-04 09:37:00',1,'2024-10-15 02:14:13'),(3617,'API_ade52e07d7846112765b4012d3c52523','监控大屏-修改侦察点','监控大屏-修改侦察点','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/updateZhenchaPoint','POST',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-10-15 02:14:18'),(3618,'API_ada07938ec782b595cfb6e395999cb26','监控大屏-实时视频-在线无人机列表','监控大屏-实时视频','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/onlinePlanes','GET',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-10-15 02:14:13'),(3619,'API_069d5865ac0ca5910a32158f258edf91','监控大屏-短信分享警情','监控大屏-短信分享警情','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/shareCaseSms','POST',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-10-15 02:14:22'),(3620,'API_4345b094bea60c4a615029837f45a6a7','监控大屏-报警信息','监控大屏-报警信息','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/alarmList','GET',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-10-15 02:14:14'),(3621,'API_5c32bd4f52e0a6db5e3c5c9bbde759dc','公安场景-获取无人机视频流','公安场景-获取无人机视频流','cmii-uav-industrial-portfolio','/api/uav/industrial/police/common/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-10-15 02:14:13'),(3622,'API_d06fef7a3a239b7b3cf7436c336aa80f','监控大屏-获取警情短信预览','监控大屏-获取警情短信预览','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/queryCaseSms','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-10-15 02:14:14'),(3623,'API_8d8c74a13d995479c25b7b9bc3ea31b9','侦察员辅助工具-侦察员列表(包含活动轨迹)','侦察员辅助工具-侦察点列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/scoutTools/scoutList','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-10-15 02:14:11'),(3624,'API_8983fd8979a1a0f8eb017f4404a6a263','监控大屏-添加侦察点','监控大屏-添加侦察点','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/addZhenchaPoint','POST',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-10-15 02:14:10'),(3625,'API_9e85114f913c09ce8a1958f51c8be7ed','查询单个飞机目前最新航迹数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/supervision/uav_realtime_location','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-10-15 02:14:12'),(3626,'API_327d8645deb6a1eba78d8574512ed998','监控大屏-分享-获取分享码&提取码','监控大屏-分享','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/shareCode','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-10-15 02:14:10'),(3627,'API_bf3691dec1177ae5497793d3d9a68a4f','监控大屏-人员轨迹信息(包含活动轨迹)','监控大屏-人员轨迹信息(包含活动轨迹)','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/personTrackList','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-10-15 02:14:11'),(3628,'API_b78418a40df8d4b9e1ce0f7b62172585','createRSA','','cmii-uav-industrial-portfolio','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:39:49',1,'2024-10-15 02:14:21'),(3629,'API_2e462a722df3811ff11cd27c9b15642c','监控大屏-侦察点-添加侦察线路','监控大屏-侦察点-添加侦察线路','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/addZCLine','POST',_binary '\0',_binary '\0','2023-05-04 09:39:49',1,'2024-10-15 02:14:21'),(3630,'API_c9d38aa3f77178450e2356ef4b7be7cb','强制删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/deleteForce','POST',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-09-09 09:16:59'),(3631,'API_cbd150b1864fef46b3039bbb14346e76','createRSA','','cmii-suav-supervision','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-09-09 09:16:57'),(3632,'API_a80a322ee402abfd497995de9b521d36','批量查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/details','GET',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-09-09 09:16:59'),(3633,'API_be4ef9c9fa5972aece54fdf47c7cd68d','获取所有计划名称','','cmii-suav-supervision','/flightPlan/getFlightPlanNames','GET',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-09-09 09:16:59'),(3634,'API_e2f5d58ca78ac8b129bbe9d8225eb54b','查询飞行计划详情(回填)','传入区域主键','cmii-suav-supervision','/flightPlan/detail/backfill','GET',_binary '\0',_binary '\0','2023-05-05 01:30:12',1,'2024-09-09 09:16:58'),(3635,'API_3bfae6b5ec9ee6f9f969279d7daef5ca','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/app/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2023-05-05 01:30:12',1,'2024-09-09 09:16:59'),(3636,'API_aa175197db34b859cf7b21e0e82590d7','批量获取查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetails.do','GET',_binary '\0',_binary '\0','2023-05-05 01:30:12',1,'2024-09-09 09:16:57'),(3637,'API_613eecfd9253532520098b2f8550b2df','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2023-05-05 01:30:13',1,'2024-09-09 09:16:56'),(3638,'API_3dd46bfdf1e8344320572e7547cc7c41','getDocumentation','','cmii-uav-grid-engine','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:52'),(3639,'API_f4fa7b0f11a8fe90c579e2aafa3dad2b','securityConfiguration','','cmii-uav-grid-engine','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:54'),(3640,'API_86ec146d28b4d5a8c0460be204002196','根据多边形获取四进制网格码','','cmii-uav-grid-engine','/common/getGeoNum4ListByGeometry','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:52'),(3641,'API_6f713e872ad99b6cb75767ea6e8d6b06','error','','cmii-uav-grid-engine','/error','',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3642,'API_7142568fed6df94b99e61440ef823e3d','getDocumentation','','cmii-uav-grid-engine','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3643,'API_6196437e370a6547184015ff547640cc','health','','cmii-uav-grid-engine','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3644,'API_9f55218fa69a8e3fac2cdef0bcbc6773','获取网格瓦片绘制坐标','','cmii-uav-grid-engine','','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2023-10-27 06:15:45'),(3645,'API_89e59246a2682dd65d61ce49ac47ed10','获取网格码','','cmii-uav-grid-engine','/common/getGrid','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3646,'API_66ae0da27522ab4602f5591318a3ed56','ping','','cmii-uav-grid-engine','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3647,'API_0b4d1c65bc1af0a7935360286959a479','根据范围获取地图绘制网格线','','cmii-uav-grid-engine','/layer/drawGridOnMap','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3648,'API_2866970ff6ecfd60dc96c1dfa2b5c520','接口扫描','','cmii-uav-grid-engine','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3649,'API_e5229ff58dc69f896c07a56d5dfc5bd5','uiConfiguration','','cmii-uav-grid-engine','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3650,'API_2cb126f44bfd77fda4ad09eecc89def0','env','','cmii-uav-grid-engine','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3651,'API_cf8f57f3c08e0fc50685235448f40312','createRSA','','cmii-uav-grid-engine','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3652,'API_61cb19e0d9d9a4b3385d6592c3067000','proxy','','cmii-uav-grid-engine','','',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2023-10-27 06:15:45'),(3653,'API_8940c2b552bcf1dc2420f7e8a0bc6185','根据多边形获取网格码和中心点','','cmii-uav-grid-engine','/common/getGeoNumAndCenterByGeometry','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3654,'API_956469f6b0bd193e5a89d66a6c87d881','获取网格引擎的web端地址','','cmii-uav-grid-engine','/proxy/iWhereMapperWebUrl','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:52'),(3655,'API_3142acfe04e4c2530afe7c8af43e8a81','swaggerResources','','cmii-uav-grid-engine','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3656,'API_4e2bca71f4efaa8d03ea22ca55109bb8','网格条件查询','','cmii-uav-grid-engine','/thematic/getThematicByGeoNum','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3657,'API_e3649b9f1f9ec778f06100a6493f1b6c','停止直播','','cmii-uav-surveillance','/surveillance/dji_cloud/stream_control/stop_push','POST',_binary '\0',_binary '\0','2023-05-08 05:48:01',1,'2024-09-23 20:58:59'),(3658,'API_da04010a186332bffbdc099f05ffa784','开始直播','','cmii-uav-surveillance','/surveillance/dji_cloud/stream_control/start_push','POST',_binary '\0',_binary '\0','2023-05-08 05:48:02',1,'2024-09-23 20:59:01'),(3659,'API_1a0fc2b7d3fb9a8c702019ecc6482ca0','按设备号查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNoWithoutCompanyId','GET',_binary '\0',_binary '\0','2023-05-12 01:14:55',1,'2024-10-11 01:36:44'),(3660,'API_0f959d8a065bba9b54784b8c848a586c','根据载荷编码查对应的设备号','','cmii-uav-device','/api/uav/load/queryDeviceNoByCode','POST',_binary '\0',_binary '\0','2023-05-17 01:20:52',1,'2024-10-11 01:36:43'),(3661,'API_48978d5ef090d81630fb3605f57903b7','解密服务','','cmii-uav-user','/public/cipher/decrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:54',1,'2024-10-11 15:37:09'),(3662,'API_dcd9bfc9f9145fd7fa2f86f84b0fe4dd','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryInterfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 09:49:56',1,'2024-10-11 15:37:16'),(3663,'API_c5421137b351c6ead103badcff054086','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryTopN','GET',_binary '\0',_binary '\0','2023-05-18 09:49:57',1,'2024-10-11 15:37:13'),(3664,'API_fd18a7dcada967185912d83f28c9d074','加密服务','','cmii-uav-user','/public/cipher/encrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:57',1,'2024-10-11 15:37:11'),(3665,'API_b4b7083a6db8e45193495a859dc1b01a','创建公司密钥配置','','cmii-admin-data','/personal/cipher/interfaceAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-09-09 09:15:08'),(3666,'API_d6f08ecdcb3267c96d5f438151bc7c9b','公司密钥配置编辑','','cmii-admin-data','/api/admin/cipher/config/edit','POST',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-09-09 09:15:04'),(3667,'API_0f3ebffc0b074339cf0bcbd6f1df19bf','查询返回编码','','cmii-admin-data','/api/admin/cipher/params/returnCode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-09-09 09:15:08'),(3668,'API_74f1e5f507799e1e3205749b034cde0e','创建公司密钥配置','','cmii-admin-data','/api/admin/cipher/config/add','POST',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-09-09 09:15:04'),(3669,'API_2741dec94ddea0833a4316fd252e0276','查询可以加密的接口列表','','cmii-admin-data','/api/admin/cipher/params/interfaces','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-09-09 09:15:06'),(3670,'API_b5e9ffbb47525729bc78c01fdf228567','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/mgfHashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-09-09 09:15:05'),(3671,'API_2417860ccff3359fe9dba9edfaac5f42','密钥配置详情','','cmii-admin-data','/rpc/cipher/encryptDetail','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:15:05'),(3672,'API_9b1451f70e44b613594e017f2628a13a','根据接口编码集合查询接口信息','','cmii-admin-data','/api/admin/cipher/params/interfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:15:07'),(3673,'API_bd0024ecbe647e014a449bc9d5f729c7','查询加密的参数以及参数值列表','','cmii-admin-data','/api/admin/cipher/params/cipherTypeParams','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:15:07'),(3674,'API_4f43715ed81ec4c9a0acee6c1bb84781','查询工作模式列表','','cmii-admin-data','/api/admin/cipher/params/workMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:15:04'),(3675,'API_694d36068c38eb981742a7ae6ba5d0f4','对称加密的类型','','cmii-admin-data','/api/admin/cipher/params/symmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:15:07'),(3676,'API_d64b38a2d894d23426dbbfb9128d0c07','未全部配置过的组织列表','','cmii-admin-data','/api/admin/cipher/unRelatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:15:04'),(3677,'API_d52a332a6946771c1f169d5066187469','密钥配置详情','','cmii-admin-data','/api/admin/cipher/configDetail','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-09-09 09:15:08'),(3678,'API_84f91b64d5bfd02bb04aa626edf1d6dd','查询填充模式列表','','cmii-admin-data','/api/admin/cipher/params/paddingMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:15:08'),(3679,'API_644f2dab52b418e265238fa68e275c48','查询密钥长度','','cmii-admin-data','/api/admin/cipher/params/keyLength','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:15:05'),(3680,'API_c9de66fbe7350603d416b0a83ed42dc6','已经配置过的组织列表','','cmii-admin-data','/api/admin/cipher/relatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:15:08'),(3681,'API_4eb7e9b4d6471bbd1d931e39a14f0f8b','密钥配置历史版本','','cmii-admin-data','/api/admin/cipher/history','POST',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:15:07'),(3682,'API_b7035bcdcc081a0ce8c2444d57f99b45','非对称加密类型','','cmii-admin-data','/api/admin/cipher/params/asymmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-09-09 09:15:05'),(3683,'API_8529eee665f795dfecf3af378fba2cd1','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/hashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:15:05'),(3684,'API_cb24eaf17427b8969c7410c32143a00c','查询RSA密钥格式','','cmii-admin-data','/api/admin/cipher/params/keyFormat','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:15:07'),(3685,'API_d540393b2029950246fcff435da75cd7','公司密钥配置删除','','cmii-admin-data','/api/admin/cipher/config/delete','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:15:07'),(3686,'API_1c97a7512a978a1d4698c682f4941eca','密钥配置列表','','cmii-admin-data','/api/admin/cipher/configs','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-09-09 09:15:06'),(3687,'API_b782d34cbca783d78126be9adc4c7ee3','增加AOI','增加AOI','cmii-uav-gis-server','/aoi/add','POST',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2023-05-19 03:16:36'),(3688,'API_82aef62751b4764781a3669dc02eec26','POI数据初始化','','cmii-uav-gis-server','/zydPOI/initialize','GET',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2024-09-09 09:17:14'),(3689,'API_40cceca2ce54f4ec00dccf9457a200fd','获取兴趣点详情','获取兴趣点详情','cmii-uav-gis-server','/zydPOI/getDetail','GET',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2024-09-09 09:17:15'),(3690,'API_8344938ba1ade9968e021f4f8c479cab','查询兴趣点类型树','查询兴趣点类型树','cmii-uav-gis-server','/poi/TreeType','POST',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2024-09-09 09:17:15'),(3691,'API_39b603bb4d739297db1ea40fc038f1de','获取AOI列表','获取AOI列表','cmii-uav-gis-server','/aoi/get','POST',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2023-05-19 03:16:36'),(3692,'API_57b9587729ee6d38fcc09f635a01ea46','查询作业执行人的用户反转列表','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info_reverse','GET',_binary '\0',_binary '\0','2023-05-18 10:49:00',1,'2024-10-10 08:57:08'),(3693,'API_03300a3d15131066c317b55cc1b9dc09','指定起始点和终点,航线为一条直线,快速创建作业,并且开始作业jt','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_mission_and_start_jt','POST',_binary '\0',_binary '\0','2023-05-18 10:49:01',1,'2024-10-10 08:57:06'),(3694,'API_c5e17ecd92105409cf8e9fbd8074e533','提供已有航线,无人机 创建快速作业jt','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_with_line_and_uav_jt','POST',_binary '\0',_binary '\0','2023-05-18 10:49:01',1,'2024-10-10 08:57:10'),(3695,'API_049424d8e4fbbef65eca7fb23a9d7536','通过作业taskType查询照片','','cmii-uav-mission','/picture/queryAllPicsByMissionTaskType','GET',_binary '\0',_binary '\0','2023-05-18 10:49:02',1,'2024-10-10 08:57:12'),(3696,'API_97578d48c0cdc784ef636bee8b733bad','head请求查询文件','','cmii-uav-material-warehouse','','HEAD',_binary '\0',_binary '\0','2023-05-18 10:53:11',1,'2023-05-22 08:27:33'),(3697,'API_f6da22cb8ffdc7d070859cb86448319b','模型分享文件下载','','cmii-uav-material-warehouse','','GET',_binary '\0',_binary '\0','2023-05-18 10:53:11',1,'2023-05-22 08:27:34'),(3698,'API_12659c3a166fd35f41e7a8546823e771','文件推流','','cmii-uav-material-warehouse','','PATCH',_binary '\0',_binary '\0','2023-05-18 10:53:11',1,'2023-05-22 08:27:33'),(3699,'API_63e907766560ce12179088465e790bb1','createRSA','','cmii-uav-material-warehouse','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-18 10:53:12',1,'2024-10-11 08:57:36'),(3700,'API_c2f4ea34ada991983fbc0a047e545582','获取检测参数','','cmii-uav-industrial-portfolio','/conflictWarning/getDetection','POST',_binary '\0',_binary '\0','2023-05-19 01:16:22',1,'2024-10-15 02:14:13'),(3701,'API_1127fb5f388b1dbba9d96d50fbb1f45f','设置检测参数','','cmii-uav-industrial-portfolio','/conflictWarning/editDetection','POST',_binary '\0',_binary '\0','2023-05-19 01:16:22',1,'2024-10-15 02:14:16'),(3702,'API_77461ee4d475d49ca8856d4170c632e1','获取检测参数操作日志','','cmii-uav-industrial-portfolio','/conflictWarning/getEditLog','GET',_binary '\0',_binary '\0','2023-05-19 03:13:34',1,'2024-10-15 02:14:09'),(3703,'API_5e5128d4c251e4133bdffd36e41c8a87','从redis重新载入探测基站信息industrial:radar:detect:baseLocation; Map key 是int','{\n \"radarZ\":10,\n \"radarY\":0,\n \"radarX\":0,\n \"radarLat84\":\"30.7341445\",\n \"radarLon84\":\"120.4930214\",\n \"radarHeight\":10\n}','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/reloadDetectedStationLocationFromRedis','GET',_binary '\0',_binary '\0','2023-05-19 03:13:34',1,'2024-10-15 02:14:14'),(3704,'API_c95bbfa6e348103124f0e8da9c9234e1','冲突预警返回对象(便于前端从文档查看,预开发),实际对象由websocket返回','','cmii-uav-industrial-portfolio','/conflictWarning/test','GET',_binary '\0',_binary '\0','2023-05-19 03:13:35',1,'2024-10-15 02:14:19'),(3705,'API_b9e0e052b103a3257f3e6d4677df5692','批量判断是否有冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersect','POST',_binary '\0',_binary '\0','2023-05-19 03:24:27',1,'2024-06-18 01:09:56'),(3706,'API_658f1523eac1c738cb8686d03e440b7e','unmarkFavorite','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/favorites','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3707,'API_6b48aff3f12c9e69ccf75fe9428154f2','publishCancelJob','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/jobs','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3708,'API_c59186fbfe24d43705b54242781c0a81','fastUpload','','cmii-uav-integration','/media/api/v1/workspaces/{workspace_id}/fast-upload','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3709,'API_f481be4548daee69b2de1d7f540d3f2c','uploadMediaHighestPriority','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/jobs/{job_id}/media-highest','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3710,'API_e823b052cc33cb2aa0c48a48771a2f9a','updateElement','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/elements/{element_id}','PUT',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,'2023-06-28 01:22:25'),(3711,'API_255078736bbd40556a9a4f82db14b5ae','uploadCallBack','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/upload-callback','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3712,'API_3cb80bcdb9259fbf4e8ab8a303fb864d','getAllElements','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/element-groups','GET',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,'2023-06-28 01:22:25'),(3713,'API_5c80141dd7b2421be0796b76de8279c1','uploadCallback','','cmii-uav-integration','/media/api/v1/workspaces/{workspace_id}/files/tiny-fingerprints','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3714,'API_640a12fa98c75057ffb4162d1a4c61b5','createJob','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/flight-tasks','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3715,'API_92dd4f1675fbdd6c8bfb1029ca5657f7','markFavorite','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/favorites','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3716,'API_0ce7a43b0c3a60254f27cb60c7d96fd7','checkDuplicateNames','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/duplicate-names','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3717,'API_8bc4e724c73d75bd939442c07bfa9e24','deleteElement','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/elements/{element_id}','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3718,'API_011d123c29e5aefd4bd1d4748de3223f','getWaylinesPagination','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3719,'API_9c3d63b406ab85a02709a5e4f582b42c','uploadCallback','','cmii-uav-integration','/media/api/v1/workspaces/{workspace_id}/upload-callback','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3720,'API_7f51a0d40e2b1dfb56e7f19e15931b06','继续航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_recovery','PUT',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3721,'API_5897d538acf93706d5d17a7747a3cfb5','deleteAllElementByGroupId','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/element-groups/{group_id}/elements','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3722,'API_69145b2e9cac9c1a293a359c0ea52992','getFilesList','','cmii-uav-integration','/media/api/v1/files/{workspace_id}/files','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3723,'API_6baa8f3aca910e50c96fa380b6c6bb36','暂停航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_pause','PUT',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3724,'API_b8c36fe9b2be1181c3d527f288966765','getJobs','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/jobs','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3725,'API_c38081b81c2d3f24ddc3d3be599e1cc3','saveElement','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/element-groups/{group_id}/elements','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3726,'API_43d3a8ad150b37b6034831fe58cf7851','getFileUrl','','cmii-uav-integration','/media/api/v1/files/{workspace_id}/file/{file_id}/url','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3727,'API_710c6967a14c5b1aede93fb834e47811','importKmzFile','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/file/upload','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3728,'API_8818742256e4e2fefe1695da64a3c68a','deleteWayline','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/{wayline_id}','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3729,'API_2e46ce83646c222c3d19af27ac0c86cf','getSTSCredentials','','cmii-uav-integration','/storage/api/v1/workspaces/{workspace_id}/sts','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3730,'API_90dea4b217b8e13e22abaaf42646bd6b','getFileUrl','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/{wayline_id}/url','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3731,'API_bcf6642aa86d52571f01b583785ed493','自动暂停','由其他程序触发的无人机暂停','cmii-uav-surveillance','/surveillance/uav_command/fly_auto_pause','POST',_binary '\0',_binary '\0','2023-05-19 06:01:59',1,'2024-09-23 20:58:59'),(3732,'API_39f10186538eca8bf44539e1cbdc037a','恢复航线','没有航线的话会报错','cmii-uav-surveillance','/surveillance/uav_command/recover_fly','POST',_binary '\0',_binary '\0','2023-05-19 06:01:59',1,'2024-09-23 20:58:59'),(3733,'API_67e7489e7b2c8787811a918245592b74','hubTurnOnlineTest','','cmii-uav-surveillance','/surveillance/uav_command/hubTurnOnlineTest','POST',_binary '\0',_binary '\0','2023-05-19 06:02:00',1,'2024-07-18 09:23:50'),(3734,'API_4390cf491ac0dbf4ce2c675c8ccab9bb','stopTemporarily','','cmii-uav-surveillance','/surveillance/uav_command/stopTemporarily_Test','POST',_binary '\0',_binary '\0','2023-05-19 06:02:00',1,'2023-11-16 02:46:52'),(3735,'API_5964b15fa9858be8bd2d0c39a8b4034b','通过missionid查询对应出警详情','','cmii-uav-surveillance','/surveillance/queryFireCaseByMissionId','GET',_binary '\0',_binary '\0','2023-05-19 06:02:01',1,'2024-09-23 20:58:59'),(3736,'API_db86c13d870cf2893e8d4f5c4d88cc3c','从大数据公司获取江苏文旅获取人流量向图','','cmii-uav-surveillance','/surveillance/wenlv/{timeStamp}','GET',_binary '\0',_binary '\0','2023-05-19 06:02:02',1,'2024-09-23 20:59:01'),(3737,'API_377a6ad2af134c5509d903ef49cd370a','给定航线生成kmz 返回文件id','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_kmz_id_by_pointsData','POST',_binary '\0',_binary '\0','2023-05-19 06:02:24',1,'2024-09-09 09:16:30'),(3738,'API_9af09cb0b05436d31116614ec5082063','通过视频编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByVideoCode','GET',_binary '\0',_binary '\0','2023-05-19 08:28:34',1,'2024-10-11 01:36:54'),(3739,'API_83501b10768effef0eab0ec0fe8eec4c','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-19 08:28:34',1,'2023-05-19 08:28:38'),(3740,'API_52ba51a36114edf84bf755f56664163f','aop sn test','','cmii-uav-integration','/dji_cloud/wayline/aop_sn_test','POST',_binary '\0',_binary '\0','2023-05-22 02:54:44',1,'2024-09-30 07:59:17'),(3741,'API_a7ac76690996556f88313b0be9d41428','执行最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/execute_wayline','POST',_binary '\0',_binary '\0','2023-05-22 02:54:44',1,'2024-09-30 07:59:17'),(3742,'API_7bbedd757ce822b0dec9ad25951789b7','继续航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_recovery','POST',_binary '\0',_binary '\0','2023-05-22 02:54:45',1,'2024-09-30 07:59:17'),(3743,'API_9c8578a79fc2e076dc3cdb94439fc3fc','暂停航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_pause','POST',_binary '\0',_binary '\0','2023-05-22 02:54:45',1,'2024-09-30 07:59:16'),(3744,'API_7d805e470b91fb0096f0a52f444d976a','取消最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/undo_wayline','POST',_binary '\0',_binary '\0','2023-05-22 02:54:45',1,'2024-09-30 07:59:18'),(3745,'API_7aeff08ab35ce893c4625b166660f6fe','按无人机设备号查询无人机详情查询无需公司隔离','','cmii-uav-device','/api/uav/plane/queryDetailByUavSn','GET',_binary '\0',_binary '\0','2023-05-23 10:05:43',1,'2024-10-11 01:36:53'),(3746,'API_4ab35aed02383cead8315ecf74959f84','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-23 10:05:43',1,'2024-10-11 01:36:47'),(3747,'API_40b7feeb871b38ee80243ea6b9b87a1f','删除数据','','cmii-uav-grid-datasource','/fightPlan/deleteData','GET',_binary '\0',_binary '\0','2023-05-24 01:57:19',1,'2024-06-18 01:09:56'),(3748,'API_525c8cdfcd0e5428eab20ce710e9ab59','更新状态','','cmii-uav-grid-datasource','/fightPlan/updateStatus','GET',_binary '\0',_binary '\0','2023-05-24 01:57:19',1,'2024-06-18 01:09:56'),(3749,'API_ba0ff43e1d6883aca926c6003e97e4b8','接收utmiss传输的数据','接收utmiss传输的数据','cmii-uav-industrial-portfolio','/public/api/utmiss/import','POST',_binary '\0',_binary '\0','2023-05-31 09:02:14',1,'2024-10-15 02:14:12'),(3750,'API_09372cb87e3e58fc712f1c9af492c212','允许导入数据','允许导入数据','cmii-uav-industrial-portfolio','/api/utmiss/allow/import','GET',_binary '\0',_binary '\0','2023-06-01 09:37:17',1,'2024-10-15 02:14:17'),(3751,'API_ec1b474e2bf7c844d72779003905e5df','禁止导入数据','禁止导入数据','cmii-uav-industrial-portfolio','/api/utmiss/forbid/import','GET',_binary '\0',_binary '\0','2023-06-01 09:37:17',1,'2024-10-15 02:14:11'),(3752,'API_db1ddbd9a043b05718ac459fe9d9348c','插入告警图片','','cmii-uav-mission','/api/uav/mission/surveillance/setAlarmPic','POST',_binary '\0',_binary '\0','2023-06-14 09:37:23',1,'2024-10-10 08:57:04'),(3753,'API_23013111b0eb52f8adfb5699bc4561f7','视频数据回放-批量删除视频片段','视频数据回放-批量删除视频片段','cmii-uav-cloud-live','/video/playback/batchDeleteSegment','POST',_binary '\0',_binary '\0','2023-06-14 09:37:48',1,'2024-10-12 09:42:32'),(3754,'API_360e70eb0864b1f60addcf622a7ab6b3','添加自定义警情点','','cmii-uav-mission','/api/uav/mission/mission_info/add_fire_case_point','POST',_binary '\0',_binary '\0','2023-06-14 09:37:58',1,'2024-10-10 08:57:14'),(3755,'API_12217b6550ba6d26e9382f4714b9fa6b','数据同步增加','','cmii-uav-gis-server','/gisSync/dataSyncAdd','POST',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:14'),(3756,'API_39b655796fdb369c152b300a1100b675','地理数据列表查询','','cmii-uav-gis-server','/gis/gisInfoList','POST',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:16'),(3757,'API_90af5a771fba4abf7e2a0be80f86eeb8','发布','','cmii-uav-gis-server','/zydPOI/publish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:16'),(3758,'API_095a5726917711cf2f7503c948b89c35','获取创建人列表','获取创建人列表','cmii-uav-gis-server','/poi/getUsers','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:16'),(3759,'API_96a1dcaddabdcaef7f1019839637c894','添加到图层','','cmii-uav-gis-server','/grid/publish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:17'),(3760,'API_1a031ef22644de53a17417113f1e6e47','更新已勾选的数据','','cmii-uav-gis-server','/gis/chooseEdit','PUT',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:16'),(3761,'API_8136d9a224ce027cc4b2254be62580b5','添加到图层','','cmii-uav-gis-server','/threeD/publish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:14'),(3762,'API_13006ab2f9a65c17b02b39e3ab2f130e','获取创建人列表','获取创建人列表','cmii-uav-gis-server','/zydPOI/getUsers','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:16'),(3763,'API_a2922cad20ce7a4396c2760e2ad86183','数据同步删除','','cmii-uav-gis-server','/gisSync/dataSyncDel','POST',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-09-09 09:17:15'),(3764,'API_4b491d353a8f24f6e796ae7dedf3ad75','取消发布','','cmii-uav-gis-server','/zydPOI/cancelPublish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:16'),(3765,'API_6594efdd82626347d07e5ae6e1f20ce4','取消添加到图层','','cmii-uav-gis-server','/threeD/cancelPublish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:15'),(3766,'API_795767d0ba728de9abaa72bba0390674','获取该用户下所有的已勾选的数据','','cmii-uav-gis-server','/gis/chooseInfoList/{resource}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:16'),(3767,'API_b912ea319e9c27730a083b7e75ac2d28','获取所有已发布兴趣点','','cmii-uav-gis-server','/zydPOI/getPublished','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:16'),(3768,'API_e747cfdcacb7d9cdeda4f257f7683db4','单体模型编辑','','cmii-uav-gis-server','/threeD/modelEdit','POST',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:15'),(3769,'API_e5fcaf877d43b441aabfecd0df11e0fe','获取兴趣点类型列表','获取兴趣点类型列表','cmii-uav-gis-server','/zydPOI/getTypes','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:15'),(3770,'API_82e4127b923d15f44b79b4a9c25c4918','取消添加到图层','','cmii-uav-gis-server','/grid/cancelPublish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:15'),(3771,'API_1edf55a8354f45fdf122a4208825e021','获取兴趣点名称列表','获取兴趣点名称列表','cmii-uav-gis-server','/zydPOI/getPoiNames','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:14'),(3772,'API_e57a7eb913a0f61305134da707cf6ff1','单体模型新增','','cmii-uav-gis-server','/threeD/modelCreate','POST',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-09-09 09:17:16'),(3773,'API_5d2c84b141233da14bd0834e25c792b5','获取该用户下所有的已勾选的数据','','cmii-uav-data-post-process','/uav/threeD/visualChooseInfoList/{resource}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:20',1,'2024-09-09 09:16:29'),(3774,'API_5d1ab7bac94e2ebe0639dfc6d2750463','手动触发数据同步到数据资源','','cmii-uav-data-post-process','/result/gisDataSync','GET',_binary '\0',_binary '\0','2023-06-14 09:38:20',1,'2024-09-09 09:16:28'),(3775,'API_16eb6d9fda49c60a76fab1754a31ba25','获取设备视频流地址信息','获取设备视频流地址信息(包括播放地址和推流地址)','cmii-uav-cloud-live','/client/live/open/queryDeviceStreamInfo','POST',_binary '\0',_binary '\0','2023-06-14 09:38:41',1,'2024-10-12 09:42:36'),(3776,'API_6325d24763533b2cb36ffb1342f7c4b4','配置设备视频流来源地址','配置设备视频流来源地址,并默认启动拉流服务','cmii-uav-cloud-live','/client/live/open/configDevicePullStream','POST',_binary '\0',_binary '\0','2023-06-14 09:38:42',1,'2024-10-12 09:42:35'),(3777,'API_2f53a483eabc8d6dd865a1a94cf4ddc9','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','cmii-uav-cloud-live','/client/live/open/startDevicePullStream','GET',_binary '\0',_binary '\0','2023-06-14 09:38:42',1,'2024-10-12 09:42:35'),(3778,'API_ebb54f07d70b2814f4ae4c6b5ee3bd41','查询无人机指点飞行的切换点和指点航线','有机库id要带机库id','cmii-uav-surveillance','/surveillance/uav_command/query_fly_to_info','POST',_binary '\0',_binary '\0','2023-06-15 03:20:20',1,'2024-09-23 20:59:01'),(3779,'API_8f436efd42a44d4a9f3ee17a25c5fa76','开始指点飞行,飞行过程中的指点飞行','不会新建作业','cmii-uav-surveillance','/surveillance/uav_command/uav_fly_to','POST',_binary '\0',_binary '\0','2023-06-15 03:20:22',1,'2024-09-23 20:59:01'),(3780,'API_8d88fe3ab3384a76d9654a500dff6764','从大数据公司获取江苏文旅获取热力图','','cmii-uav-surveillance','/surveillance/wenlv_hotMap/{timeStamp}','GET',_binary '\0',_binary '\0','2023-06-16 02:07:11',1,'2024-09-23 20:59:00'),(3781,'API_a31df8377ea384e1cdf35d64f4c0dfd0','获取江苏文旅获取 热力图 for 前端','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMapNew','GET',_binary '\0',_binary '\0','2023-06-16 02:07:12',1,'2024-09-23 20:58:58'),(3782,'API_dcd1538e9e9461480f7331d39d6cf95b','测试短信推送','','cmii-uav-mission','/api/uav/mission/surveillance/testAlarm','POST',_binary '\0',_binary '\0','2023-06-20 09:04:12',1,'2024-10-10 08:57:06'),(3783,'API_a11aa3eef265569995fa1c683d1796d4','toGeneralTest','','cmii-uav-mission','/oss/to_general_test','POST',_binary '\0',_binary '\0','2023-06-29 06:34:58',1,'2024-10-10 06:29:21'),(3784,'API_4af46dc042bee7fa977943fb2ebd33bc','回放探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryDetectionHistoryByTime','GET',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-10-15 02:14:22'),(3785,'API_b867dd8a23a4c3c4bf47affe60de7400','分页查询告警服务','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/pageAlarm','POST',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-10-15 02:14:14'),(3786,'API_7ae244507b468b4649d570d54bdadfb0','mockDatas','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/mockDatas','POST',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-04-08 06:59:51'),(3787,'API_99e6f866d5a08c5b0043fb4005aef2de','测试分布式','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/redisson','GET',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-10-15 02:14:15'),(3788,'API_9bf742f7ccf4ae863304756b69b13b2d','查询基站数据列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/bts_data_list','GET',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-10-15 02:14:10'),(3789,'API_470313a0a7e1e379446920fb6b3cc3b9','获取内存中的空域','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/areaPlanFromMemory','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:20'),(3790,'API_0760296718e64d53b86b1c107640fdd9','开启基站告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/alarm_open','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:11'),(3791,'API_50ded1fe3f7b2de559ecad0e7cc25c1a','正在告警的列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/alarmingList','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:16'),(3792,'API_0bb12b21a94736c2bcbcb8cc07dd8249','WS数据接口展示','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/testWs','GET',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:17'),(3793,'API_ce34364bae46af299d5ec09db297bd5d','保存目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/keep_duration_config','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:17'),(3794,'API_4ba4958665c9aa9b9c3563ece64f4af4','查询目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/query_keep_duration_config','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:18'),(3795,'API_e2077819c1b47daeda9ecfaa082e18fa','保存参照点配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/ref_point_config','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:18'),(3796,'API_2963086be76ca7cd7b117fa9794760d4','结束告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/alarm','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:10'),(3797,'API_0cfff2c543e4e7b310be645d0d362b12','导入基站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/bts_data_list','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:14'),(3798,'API_488b0bd96054462a7b96d8a0601123ac','下载基站导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/bts_data_list_template','GET',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-10-15 02:14:19'),(3799,'API_86212fae431bcdf5f038cb53814f46b3','告警回放','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/alarmPlayback','POST',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-10-15 02:14:20'),(3800,'API_bea55e4aed277d03916d0a111b554456','查询探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryDetectionHistory','GET',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-10-15 02:14:18'),(3801,'API_5a8fd2f0ddc3599ad93ff2d1b7d364a4','查询低空探测配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/config','GET',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-10-15 02:14:19'),(3802,'API_d01466eee826ba848ee5a38e274fdc19','增加测试数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/addtestData','POST',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-10-15 02:14:13'),(3803,'API_bf62ff13258f47f503b991e43340b492','关闭基站告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/alarm_close','POST',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-10-15 02:14:12'),(3804,'API_8463d03ffec886bcaeda1ab7cc7e525a','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/civilMilitary/areaPlan/edit','POST',_binary '\0',_binary '\0','2023-06-30 06:04:09',1,'2024-09-09 09:16:58'),(3805,'API_b25d89aff393d393619441dd519f5ec1','查询现在某个公司有效的区域-包括飞行计划成功的','查询现在某个公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentCompanyValid','POST',_binary '\0',_binary '\0','2023-06-30 06:04:09',1,'2024-09-09 09:16:59'),(3806,'API_2aef5ebc84cc0564f0eab120ff450e7e','新增区域','','cmii-suav-supervision','/civilMilitary/areaPlan/save','POST',_binary '\0',_binary '\0','2023-06-30 06:04:09',1,'2024-09-09 09:16:58'),(3807,'API_0a830e8aed93b95dcc1eb608aff4171b','分页查询','','cmii-suav-supervision','/civilMilitary/areaPlan/query','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:57'),(3808,'API_8ff7cdd07e40b39948e521bb5d3d5b28','批量查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/details','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:59'),(3809,'API_259da35f5a4f644aa1ba9fa8743bd4fd','查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/detail','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:59'),(3810,'API_883ab85260a738f27f8bf1eb20612498','删除区域','传入区域申请主键','cmii-suav-supervision','/civilMilitary/areaPlan/delete','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:56'),(3811,'API_084f04040c61093a6c24768847650baf','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/civilMilitary/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:57'),(3812,'API_a30127d11255958512f2f86cbad23bb0','根据code获取用户军民融合token','根据code获取用户军民融合token','cmii-suav-supervision','/permission/getCivilMilitaryToken','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:55'),(3813,'API_24cfad60cff276799452cc532ad48585','判断区域名称是否重复','','cmii-suav-supervision','/civilMilitary/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:55'),(3814,'API_fd0f0cf45d0bae343e99f46009c9a463','根据区域id查询区域列表','根据区域id查询区域列表','cmii-suav-supervision','/civilMilitary/areaPlan/queryByHistoryIds','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:56'),(3815,'API_2e2433cfb06e1f643fc90534a7351bef','统计飞行计划','','cmii-suav-supervision','/flightPlan/count','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:57'),(3816,'API_f4daceebc64feceb452db713e5f05ca2','查询现在所有公司有效的区域-包括飞行计划成功的','查询现在所有公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentValid','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-09-09 09:16:59'),(3817,'API_48c612ae619fc003567d89bc8d8c9795','flyToPoint','','cmii-uav-integration','/dji_cloud/remote_control/fly_to_point','POST',_binary '\0',_binary '\0','2023-07-05 08:45:15',1,'2024-09-30 07:59:18'),(3818,'API_5f8c9286761ac2959ea0a91254f548fd','获取无人机返航高度和速度信息','','cmii-uav-surveillance','/surveillance/get_uav_return_info','GET',_binary '\0',_binary '\0','2023-07-06 01:43:48',1,'2024-09-23 20:59:00'),(3819,'API_4c2a1cda11a6fcc28bfa488ee204b1f6','设置无人机返航高度和速度信息','','cmii-uav-surveillance','/surveillance/put_uav_return_info','POST',_binary '\0',_binary '\0','2023-07-06 01:43:49',1,'2024-09-23 20:58:57'),(3820,'API_f57b3d7e7efdf2e3faa6869dc49b52cd','获取空域申请和空域限制所有数据','需传参','cmii-uav-airspace','/zydAirspace/getAllByCondition.do','POST',_binary '\0',_binary '\0','2023-07-06 10:53:14',1,'2024-10-11 08:57:37'),(3821,'API_75a92385064a14c92617dcbb7b0d3dfb','根据用户id集合获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryByIds','POST',_binary '\0',_binary '\0','2023-07-06 10:53:23',1,'2024-10-11 15:37:08'),(3822,'API_43e5a827e0728c4014402a2e1e89ae0d','testUavBound','','cmii-uav-surveillance','/uavboundtest','GET',_binary '\0',_binary '\0','2023-07-06 10:54:10',1,'2023-10-09 03:33:42'),(3823,'API_5726dc686edbcca954c79a044674d7ae','testUavName','','cmii-uav-surveillance','/uavnametest','GET',_binary '\0',_binary '\0','2023-07-06 10:54:11',1,'2023-10-09 03:33:42'),(3824,'API_da39b0086c93277f985f32d6a2f37b9b','重跑(重跑流程实例中的任务)','重跑(重跑流程实例中的任务)','cmii-uav-process','/process/bizengine/manage/flowinst/reRunTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:44',1,'2024-09-12 02:46:57'),(3825,'API_a7a60c72d8d6084bbe91152a3b456139','批量删除任务实例','批量删任务程实例','cmii-uav-process','/process/bizengine/manage/taskInst/batchDeleteTaskInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:58'),(3826,'API_5f79d730928c488904fbd3fbb907d8fa','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/taskdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:59'),(3827,'API_59c2e318823d1cd11b630c3935fed60f','工作流实例ID列表','工作流实例ID列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryProcInstIds','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:58'),(3828,'API_07aee7fc15102bcbd91d5fbe329c44eb','转换为系统流程','转换为系统流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2SysProcess','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3829,'API_64439cca335e9e460770b8a05dd7ca64','流程ID&名称列表','流程ID&名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypeInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3830,'API_f311697d40d6259884b4bca181888973','页面调试启动新流程','页面调试启动新流程','cmii-uav-process','/process/bizengine/manage/flowinst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:55'),(3831,'API_00e6210b02681a766e9d52b3b4030107','查询用户剩余年假天数','查询用户剩余年假天数','cmii-uav-process','/process/bizengine/testTask/leave/queryAvailableDay','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3832,'API_66e293664ad8ca26a8a87bc640a175bd','批量删除流程实例','批量删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/batchDeleteProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:54'),(3833,'API_4d03daa6fa787ec9e294503d00abb7e4','删除流程定义','删除流程定义','cmii-uav-process','/process/bizengine/manage/flowdef/deleteProcessDef','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3834,'API_3a877970f526e0030b3010e086d4f267','查询调用组织信息(选择公司)','查询调用组织信息(选择公司)','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartTenantInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3835,'API_1acf2555d6ebfc1e9e85735c3e723a63','选择用户信息','选择用户信息','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartUserInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:58'),(3836,'API_fc41db81d059e506876bbc207dff8dc1','查看流程定义详情','查看流程定义详情','cmii-uav-process','/process/bizengine/manage/flowdef/geFlowDefDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3837,'API_7a72800e4a72398506e07780bbc11d2b','微服务名列表','微服务名列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryServiceNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:59'),(3838,'API_76f8502def5fb81ba61d84ea5ca3d1ca','编辑工作流定义','编辑工作流定义','cmii-uav-process','/process/bizengine/manage/flowdef/modifyFlowDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:54'),(3839,'API_b9537d878adaaca679fc4ac238750692','流程ID列表','流程ID列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3840,'API_2cd52ff401214bba6a8bcb3c0ee37e71','转换为自定义流程','转换为自定义流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2CustomFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:55'),(3841,'API_2fec2f93fde350a2d1262ab45e9060cd','启动新流程(Feign接口)','启动新流程(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3842,'API_4c1fe164e334b4f74359a66329dca6d0','查询任务运行状态列表','查询任务运行状态列表','cmii-uav-process','/process/bizengine/manage/taskInst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3843,'API_bd48906e98f8465f993763426f36c79c','查看任务运行日志详情','查看任务运行日志详情','cmii-uav-process','/process/bizengine/manage/taskInst/getTaskLogDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3844,'API_85231ad75fadd028dc3bd7bfb4341711','工作流配置列表','工作流配置列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryFlowDefList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:59'),(3845,'API_1277cd8e52f72e5a36744d05d33903bf','系统审批请假信息','系统审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/sysApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3846,'API_6bd7bc3ccf337d76a3f5d7519a5c8797','查看工作流实例详情','查看工作流实例详情','cmii-uav-process','/process/bizengine/manage/flowinst/getFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3847,'API_4fdcf1f07680752edcbca7c4029669b9','新建工作流基础信息','新建工作流基础信息','cmii-uav-process','/process/bizengine/manage/flowdef/createFlow','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3848,'API_4ad2f392cff40a2cfe270918610ad891','查询流程实例运行状态列表','查询流程实例运行状态列表','cmii-uav-process','/process/bizengine/manage/flowinst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3849,'API_b17cfa9e77b14474c016864348f42f8d','停止(停止流程及任务,传递任务记录id)','停止(停止流程及任务,传递任务记录id)','cmii-uav-process','/process/bizengine/manage/flowinst/stopFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3850,'API_558d40251bfea3942739f3eaa844947f','流程名称列表','流程名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3851,'API_d4f43279aa43f3fbed1af1c41981a2b8','获取资源锁','获取资源锁','cmii-uav-process','/process/bizengine/tools/lock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3852,'API_94739fe015051a70b1d8206027c62574','修改工作流任务状态','修改工作流任务状态','cmii-uav-process','/process/bizengine/manage/periodflowinst/updatePeriodInstStatus','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3853,'API_12469c1465e7f5a432fe945abff7fa90','批量删除周期任务实例','批量删除周期任务实例','cmii-uav-process','/process/bizengine/manage/periodflowinst/batchDeletePeriodProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3854,'API_9559cc99e0361bce3a3151a398003521','流程图展示','流程图展示','cmii-uav-process','/process/bizengine/manage/flowinst/getflowchartInfo','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3855,'API_f72569f8e318eddf19bf06a2312862a0','经理审批请假信息','经理审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/managerApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3856,'API_4c015162fbae6652dcf6591bec42b08f','删除任务实例','删除任务实例','cmii-uav-process','/process/bizengine/manage/taskInst/deleteTaskInst','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:59'),(3857,'API_779f024ff303fa04f91b3bf87bd09c52','发送告警短信','发送告警短信','cmii-uav-process','/process/bizengine/tools/sendWarnSms','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:59'),(3858,'API_b67caf989c8a32e44b8ccb65f1f5878d','释放资源锁','释放资源锁','cmii-uav-process','/process/bizengine/tools/unLock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3859,'API_999cad19905bb05d78aff49f33cf5602','任务运行记录列表','任务运行记录列表','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3860,'API_c3db4807ee66876f7ec2ece9207d1500','查看周期工作流任务详情','看周期工作流任务详情','cmii-uav-process','/process/bizengine/manage/periodflowinst/gePeriodFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3861,'API_3b6db47197b1889d76320c549c7c4a5f','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/flowdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3862,'API_4bd306322678108e17076c6f48fa5ee3','周期工作流任务-执行记录','周期工作流任务-执行记录','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowHisList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3863,'API_9ca9fe3f5e324443156cbcfdb1936ac8','工作流实例列表','工作流实例列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3864,'API_62b89922617c45d15aa148b25e447ea3','周期工作流任务列表','周期工作流任务列表','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:59'),(3865,'API_f4f6b5e0af2bae6f6e929d2ebe26e246','搜索任务实例ID','搜索任务实例ID','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskIds','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3866,'API_20cb5b6e7d41633b1bc95f83fb54b737','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/flowdef/batchDeleteProcessDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3867,'API_9e5206d846fbbb230ed08eafcdfe6eee','填写请假信息','填写请假信息','cmii-uav-process','/process/bizengine/testTask/leave/fillLeaveInfo','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3868,'API_afed7c0365d6055c6c9c6de659b0b164','删除流程实例','删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/deleteProcInst','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3869,'API_fb535e6a5f8446b3c70233964ca3a714','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 06:03:40',1,'2023-07-21 06:06:56'),(3870,'API_70451de6f2d237212ae05cf3d3af09ad','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 07:01:10',1,'2024-10-11 01:36:47'),(3871,'API_b1bfb00c626afd3d254ae03e3fe80b10','删除自定义警情点','','cmii-uav-mission','/api/uav/mission/mission_info/del_fire_case','DELETE',_binary '\0',_binary '\0','2023-07-28 07:27:10',1,'2024-10-10 08:57:03'),(3872,'API_9638f02053e9b0e1c580ffc5944f9ba1','createRSA','','cmii-uav-mission','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-07-28 07:27:10',1,'2024-10-10 08:57:14'),(3873,'API_c74077f23db45b670d2c57bd1b160bba','获取所有站址名称','','cmii-uav-tower','/station/queryAll','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3874,'API_2930d5b363671b708f2572459d4caa1b','securityConfiguration','','cmii-uav-tower','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3875,'API_706c1f8f43c24efa2f935c23fd33c520','接口扫描','','cmii-uav-tower','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3876,'API_415d7a5a95b463833f9aec4196dab4a5','删除质检记录','','cmii-uav-tower','/app/task/delete/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3877,'API_73c9c8d846ba0d1f4c9a4b7ed0e48e84','新增任务','','cmii-uav-tower','/task/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3878,'API_0198fd9efdd703c970944757226e0bcd','修改整改记录','','cmii-uav-tower','/app/task/edit/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3879,'API_395c8121e66868a4ec9a7558768e9736','任务详情','','cmii-uav-tower','/app/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3880,'API_343451246b698c816953c1df3bf7e182','获取所有基站','','cmii-uav-tower','/station/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3881,'API_c266bcc6a1030a108bb299c972cc721c','整改指派','','cmii-uav-tower','/app/task/assign','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3882,'API_420b55e9a01e7d8e7e0be190d86c4c73','createRSA','','cmii-uav-tower','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3883,'API_45e1bf1255999164b78f8c6e285e5a9c','getDocumentation','','cmii-uav-tower','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3884,'API_f9f15d2d759370d78bd1b4b27d7e2f9c','获取我的所有任务','','cmii-uav-tower','/app/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3885,'API_d95d29380c0dd15ef2695dc49d68ec69','获取所有质检人员','','cmii-uav-tower','/task/queryMan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3886,'API_7bb8b4622c154ce1a35e506f6e4a4a33','uiConfiguration','','cmii-uav-tower','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3887,'API_1eed62e68c5aa0238a654069983e5d70','修改质检记录','','cmii-uav-tower','/app/task/edit/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3888,'API_e62f5d103a8aa2493d10eb9678cdec32','ping','','cmii-uav-tower','/cmii/ping','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3889,'API_3cac512eccbfe61733175de852a1cd4a','获取我的整改记录','','cmii-uav-tower','/app/task/query/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3890,'API_08d1e7bfd25e6dc163bb596e409ae7bd','质检任务详情','','cmii-uav-tower','/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3891,'API_135fce405752689bb0a0fcf89de5d156','提交整改记录','','cmii-uav-tower','/app/task/add/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3892,'API_fc99ac31dca1e0d7e2e868dc354b672d','新增基站','','cmii-uav-tower','/station/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3893,'API_63ac34f2d4d986397c0d5fc3f62c59fb','获取所有任务','','cmii-uav-tower','/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3894,'API_ebc11a24893b5b3d7551034b50c2f84e','编辑基站','','cmii-uav-tower','/station/edit','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3895,'API_59a84d2067daee031063a030ba5d318e','评论','','cmii-uav-tower','/task/comment','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3896,'API_19b669a507e8eb1ab723751ad90b9bcd','整改任务详情','','cmii-uav-tower','/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3897,'API_7e7d285262ddfd6de5e175f8241754b9','批量删除','传入主键','cmii-uav-tower','/station/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3898,'API_1252e593ebfc52448b59cd89eb6f7439','导出模板','','cmii-uav-tower','/station/exportTemp','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3899,'API_317ee8f3a83a3405c3f55d54d87048bc','error','','cmii-uav-tower','/error','',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3900,'API_d9ce908e367a68f422997efe7be52024','批量删除','传入主键','cmii-uav-tower','/task/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3901,'API_78ab9d475443f5c3fa79d36bb8bb0f19','获取我的质检记录','','cmii-uav-tower','/app/task/query/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3902,'API_5871d2a5cebf299366cbec6ca838c79d','整改任务详情','','cmii-uav-tower','/app/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3903,'API_09afc31f49ba2a1420353d6f4d0aa39d','env','','cmii-uav-tower','/cmii/env','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3904,'API_1dca133eca446b1ba61966d7592dc86d','getDocumentation','','cmii-uav-tower','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3905,'API_e07a98dd6644cde4e9410c14e2de4b6f','任务详情','','cmii-uav-tower','/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3906,'API_9036e925e1c9af5ac40828d0bbc09a23','质检任务详情','','cmii-uav-tower','/app/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3907,'API_4a29f52f1d17a77aff3f7afa930190ba','health','','cmii-uav-tower','/cmii/health','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3908,'API_ddd9b90e3b5204e2d233187b91575d0f','删除整改记录','','cmii-uav-tower','/app/task/delete/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3909,'API_60f55901bffbc7870b7f33e66e8fe63a','获取站址编码','','cmii-uav-tower','/station/queryCode','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3910,'API_0f4c6d80f7a4846faef0085ce842ca2b','批量导出','','cmii-uav-tower','/station/export','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:56'),(3911,'API_51db34eff4456809f897fabcd13cb19c','是否接受整改','','cmii-uav-tower','/app/task/accept','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3912,'API_691f10062842de100da49fcde8cf18b8','swaggerResources','','cmii-uav-tower','/swagger-resources','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3913,'API_a397420224a67da28a8364430f9e72b5','提交质检记录','','cmii-uav-tower','/app/task/add/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:55'),(3914,'API_74093124089103f5d2669ed5dade38a4','导入','','cmii-uav-tower','/station/import','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-10-15 02:33:54'),(3915,'API_816eeb506e5b54fb43ea92a1046ebf14','导出模板','','cmii-uav-user','/tower/user/export','POST',_binary '\0',_binary '\0','2023-08-07 06:29:26',1,'2024-10-11 15:37:13'),(3916,'API_7d4711985b4ebadc120b8285f95dc130','用户列表查询','','cmii-uav-user','/tower/user/query','POST',_binary '\0',_binary '\0','2023-08-07 06:29:26',1,'2024-10-11 15:37:11'),(3917,'API_b65eed5c0995ef8f97fb84f9cbe2038c','根据平台用户id获取用户详情','','cmii-uav-user','/tower/user/detail','GET',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-10-11 15:37:16'),(3918,'API_94b2412b4d79336a22bc8933b3bea069','编辑用户','','cmii-uav-user','/tower/user/edit','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-10-11 15:37:15'),(3919,'API_b64dcce937a6286e2a94d12a52d8ba72','删除用户','','cmii-uav-user','/tower/user/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-10-11 15:37:10'),(3920,'API_c8367a0b0568ba4317e062c11c4b40da','导入用户','','cmii-uav-user','/tower/user/import','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-10-11 15:37:20'),(3921,'API_9f1674c7927db03d091990f80d059736','铁塔用户注册','','cmii-uav-user','/tower/registry','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-10-11 15:37:12'),(3922,'API_36840014be767bd1a9e9d2e6c45584a2','修改用户状态','','cmii-uav-user','/tower/user/updateStatus','POST',_binary '\0',_binary '\0','2023-08-07 06:29:29',1,'2024-10-11 15:37:10'),(3923,'API_106d243cfb467c75e3a400be4b1496a1','获取所有用户','','cmii-uav-user','/tower/user/queryAll','GET',_binary '\0',_binary '\0','2023-08-07 06:29:30',1,'2024-10-11 15:37:11'),(3924,'API_eccff7373efd6a8f423c330bbd65efa2','新增分组','','cmii-uav-user','/tower/group/add','POST',_binary '\0',_binary '\0','2023-08-07 06:29:30',1,'2024-10-11 15:37:15'),(3925,'API_3760590b0cb1cad45077644dda1a59fc','删除分组','','cmii-uav-user','/tower/group/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-10-11 15:37:13'),(3926,'API_c5e5023cd30f56ae42da979d135ca534','分组列表查询','','cmii-uav-user','/tower/group/query','GET',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-10-11 15:37:15'),(3927,'API_354afb0747e5554da8869f8d9dd7f876','公安场景-下线(scout:侦察员,flying:飞手)','公安场景-下线(scout:侦察员,flying:飞手','cmii-uav-industrial-portfolio','/personal/api/uav/industrial/police/common/offLine','POST',_binary '\0',_binary '\0','2023-08-19 08:05:20',1,'2024-10-15 02:14:21'),(3928,'API_f223464a7cc50cd0acf9f5f76dc71302','查詢文旅景区仓库列表','','cmii-uav-device','/api/uav/house/queryHouseListForWenlv','GET',_binary '\0',_binary '\0','2023-08-25 01:33:53',1,'2024-10-11 01:36:53'),(3929,'API_52a6391550538261f4538c55f116bb70','按id打码航线','','cmii-uav-grid-datasource','/coding/codingAirlineById','POST',_binary '\0',_binary '\0','2023-08-25 06:21:22',1,'2023-09-10 12:23:03'),(3930,'API_b7cfc8326098848ff43e813305e0a39d','根据ID删除地形数据','','cmii-uav-grid-datasource','/terrain/deleteTerrainById/{id}','DELETE',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:57'),(3931,'API_f62ca4ccc54ee41be6f35f0bca7571c3','按id查询航线网格','','cmii-uav-grid-datasource','/coding/getAirlineById','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:23:04'),(3932,'API_9e0177ac1b4c966a45aa5daccf81ff2d','设置默认地形','','cmii-uav-grid-datasource','/terrain/setDefaultTerrain/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:57'),(3933,'API_7345f93556954bf9dae3c96c76cc89fa','获取网格编码','','cmii-uav-grid-datasource','/grid/point/getGrid','POST',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:23:04'),(3934,'API_05928b9dccdc789fc96078721d011a19','检查是否有重名','','cmii-uav-grid-datasource','/terrain/checkRepeatName/{name}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:56'),(3935,'API_74a3007ac1c1748d1d11816386f4ca0b','获取指定区域的外包矩形','','cmii-uav-grid-datasource','/custom/getGrid3dScope/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:56'),(3936,'API_cf8d003af775149c1a429a04d5d28a97','获取偏航的航线','','cmii-uav-grid-manage','/offset/single/airline','POST',_binary '\0',_binary '\0','2023-08-25 06:22:04',1,'2023-09-10 12:24:21'),(3937,'API_fb50f26d76871e866da1571f4a4cf807','停止视频拉流任务','停止视频拉流任务','cmii-uav-cloud-live','/client/live/open/stopDevicePullStream','GET',_binary '\0',_binary '\0','2023-08-28 03:20:15',1,'2024-10-12 09:42:36'),(3938,'API_ace76fd3a2b3ab5cab9841655d0d8fd2','testDecrypt','','cmii-uav-user','/api/uav/uavTestPO/testDecrypt','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-10-11 15:37:15'),(3939,'API_040650b60480a3574863bce890ebb3a1','创建单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/createCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-10-11 15:37:10'),(3940,'API_e3b4643ec4d08fc9f978b12cc91111cd','按姓名手机号查询所有的用户','','cmii-uav-user','/user/queryAllByNameTel','GET',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-10-11 15:37:16'),(3941,'API_27bf6b865e75a1b2d4b29d29f0b2e6fc','编辑单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/updateCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-10-11 15:37:15'),(3942,'API_e1867ffdcc7c8f44f2694255779d56de','查询单个配置的详细信息','','cmii-uav-user','/api/uav/subject-config/getDetailById','GET',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-10-11 15:37:13'),(3943,'API_f3c37d1558da75187bc79fe68b18c05a','已经配置过的组织列表','','cmii-uav-user','/api/uav/subject-config/relatedCompanies','GET',_binary '\0',_binary '\0','2023-08-29 07:13:13',1,'2024-10-11 15:37:20'),(3944,'API_5eb1a0adf4292ebc517515bf91e31284','查询单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/companyStatisticConfig','GET',_binary '\0',_binary '\0','2023-08-29 07:13:14',1,'2024-10-11 15:37:16'),(3945,'API_ae46dd18ebf36e49f7ecea09822a8dcb','分页查询公司统计配置','','cmii-uav-user','/api/uav/subject-config/pageCompanyStatisticConfigs','POST',_binary '\0',_binary '\0','2023-08-29 07:13:15',1,'2024-10-11 15:37:08'),(3946,'API_6a43ea97257b9969f55c0e9fa8a2abce','grabPayloadAuthority','','cmii-uav-integration','/dji_cloud/payload_control/grab_payload_authority','POST',_binary '\0',_binary '\0','2023-09-01 09:16:22',1,'2024-09-30 07:59:16'),(3947,'API_08785b2f80ea8949ce2229ff3bd4cc99','grabFlightAuthority','','cmii-uav-integration','/dji_cloud/payload_control/grab_flight_authority','POST',_binary '\0',_binary '\0','2023-09-01 09:16:23',1,'2024-09-30 07:59:18'),(3948,'API_2c18fd5993cb8057f81553be943bc957','镜头缩放','','cmii-uav-integration','/dji_cloud/payload_control/camera_zoom','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-09-30 07:59:17'),(3949,'API_9713e067b5237daa70c732220e09aaa2','屏幕指点 云台移动,比例按照的是广角下(api文档)','','cmii-uav-integration','/dji_cloud/payload_control/camera_aim','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-09-30 07:59:17'),(3950,'API_1606fc86f8186a6a1878189d5163119c','云台控制 and 复位','','cmii-uav-integration','/dji_cloud/payload_control/gimbal_control','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-09-30 07:59:17'),(3951,'API_4818e5c52ff64fbc461092a4d7f67524','摄像机开始录像','','cmii-uav-integration','/dji_cloud/payload_control/camera_start_record','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-09-30 07:59:17'),(3952,'API_68e220dc182ad3cfa34b38adc9afa720','摄像机拍照','','cmii-uav-integration','/dji_cloud/payload_control/camera_take_picture','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-09-30 07:59:18'),(3953,'API_f98cb8228544a6e615224e940d5f6b55','摄像机停止录像','','cmii-uav-integration','/dji_cloud/payload_control/camera_stop_record','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-09-30 07:59:16'),(3954,'API_95f98c3045030386b85d54ce050d33e7','cameraModeChange','','cmii-uav-integration','/dji_cloud/payload_control/camera_mode_change','POST',_binary '\0',_binary '\0','2023-09-06 04:26:36',1,'2024-09-30 07:59:17'),(3955,'API_6ce8573fb4b28eb0db2a4ac33a4815d9','查询指定公司/机构范围内的在线无人机数量和列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineCntByCompanyId','GET',_binary '\0',_binary '\0','2023-09-06 07:03:43',1,'2024-10-11 01:36:48'),(3956,'API_dd0216086cf703199c36ea53be84ddaf','屏幕指点','','cmii-uav-surveillance','/surveillance/payload/camera_aim','POST',_binary '\0',_binary '\0','2023-09-07 04:23:22',1,'2024-09-23 20:58:58'),(3957,'API_9d8b653ae4257a2d845f4cd19ffd46d4','获取偏航的航线','','cmii-uav-surveillance','/offset/single/airline','POST',_binary '\0',_binary '\0','2023-09-11 01:51:44',1,'2023-10-09 03:33:43'),(3958,'API_faa2093a958bad79d8a7da0642daca90','手动发送作业报告给用户V2','','cmii-uav-mission','/report_and_video/report_send/v2','POST',_binary '\0',_binary '\0','2023-09-12 01:56:41',1,'2024-10-10 08:57:14'),(3959,'API_1b3399822ad4370596c4db58562390df','测试自动结束作业','','cmii-uav-mission','/api/uav/mission/mission_info/testAutoEndMission','GET',_binary '\0',_binary '\0','2023-09-12 01:56:42',1,'2024-10-10 08:57:01'),(3960,'API_fc65c58d8d211e278dc85c0aa08143ae','手动触发数据GPS更新','','cmii-uav-gis-server','/vr/gisDataSync','GET',_binary '\0',_binary '\0','2023-09-26 01:40:35',1,'2024-09-09 09:17:15'),(3961,'API_25198adbdc49442350c5cae851b6f8b2','获取所有有GPS数据的列表','','cmii-uav-gis-server','/vr/queryAllList','POST',_binary '\0',_binary '\0','2023-09-26 01:40:35',1,'2024-09-09 09:17:16'),(3962,'API_ce8ba2874c6bfa0d3e75e9d81e9bdaf5','VR文件上传','','cmii-uav-gis-server','/vr/vrUpload','POST',_binary '\0',_binary '\0','2023-09-26 01:40:35',1,'2024-09-09 09:17:16'),(3963,'API_f3149a45616f048daf259220b2cc29c0','查询流程实例详情(Feign接口)','查询流程实例详情','cmii-uav-process','/client/bizengine/flowInst/queryProcInstDetail','POST',_binary '\0',_binary '\0','2023-09-27 09:51:48',1,'2024-09-12 02:46:58'),(3964,'API_ed51e178573028bcb61c3f9d42763492','我的待办任务(Feign接口)','我的待办任务','cmii-uav-process','/client/bizengine/flowInst/queryMyTaskList','POST',_binary '\0',_binary '\0','2023-09-27 09:51:48',1,'2024-09-12 02:46:55'),(3965,'API_521dfebb8a734ab5248d51f946b1386f','我的历史流程(Feign接口)','我的历史流程','cmii-uav-process','/client/bizengine/flowInst/queryMyHisProcList','POST',_binary '\0',_binary '\0','2023-09-27 09:51:49',1,'2024-09-12 02:46:57'),(3966,'API_e0dd7047b75740fcb40bbe460ac1746c','接收业务流程回调消息(Feign接口)','接收业务流程回调消息(Feign接口)','cmii-uav-process','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2023-09-27 09:51:50',1,'2024-09-12 02:46:56'),(3967,'API_2e501c12cfa660df3c1a5bffdd1ff0bc','处理待办任务','处理待办任务','cmii-uav-process','/client/bizengine/flowInst/dealWaitTask','POST',_binary '\0',_binary '\0','2023-09-27 09:51:50',1,'2024-09-12 02:46:59'),(3968,'API_581a8eae103a3d1ecc48196608116547','设置某个待办任务的办理人(Feign接口)','设置某个待办任务的办理人((Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:51:50',1,'2024-09-12 02:46:58'),(3969,'API_6021071058d3134568d3b65c7d7aa7bd','设置某个节点待办人(Feign接口)','设置某个节点待办人(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskNodeAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:51:51',1,'2024-09-12 02:46:55'),(3970,'API_5c4021d67d077255b5534713e8ae025a','查询当前任务的可执行动作(Feign接口)','查询当前任务的可执行动作(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/queryTaskPageActions','POST',_binary '\0',_binary '\0','2023-09-27 09:51:52',1,'2024-09-12 02:46:55'),(3971,'API_bb3a0ecf6bc4fe7ca71841458b9a1103','通过航线数据获取wpml的xml文件内容','','cmii-uav-waypoint','/api/uav/waypoint/kmz/get_wmpl_content','POST',_binary '\0',_binary '\0','2023-09-27 09:51:53',1,'2024-09-09 09:16:29'),(3972,'API_fa504e0c9b0d867928ba2a3e28c6e7ec','测试获取wmpl','m30-> wrjxh063, m30载荷 xh024','cmii-uav-waypoint','/api/uav/waypoint/kmz/get_wmpl_test','POST',_binary '\0',_binary '\0','2023-09-27 09:51:54',1,'2024-09-09 09:16:28'),(3973,'API_5832e462aaeac0f34ea58153a7c55720','callback','','cmii-uav-mission','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2023-09-27 09:51:55',1,'2024-10-10 08:57:00'),(3974,'API_9ea3008ea5e818de6531379e51849920','作业结束流程-步骤2:提交视频合成任务','提交视频合成任务','cmii-uav-mission','/api/uav/mission/bizproc/mergeVideo','POST',_binary '\0',_binary '\0','2023-09-27 09:51:56',1,'2024-10-10 08:57:06'),(3975,'API_662f7f0260e6d31efe5ddd41b96b943d','作业结束流程-步骤1:停止作业相关AI任务及保存AI数据','停止作业相关AI任务及保存AI数据','cmii-uav-mission','/api/uav/mission/bizproc/stopMissionAI2SaveData','POST',_binary '\0',_binary '\0','2023-09-27 09:51:57',1,'2024-10-10 08:57:13'),(3976,'API_5d08500fb47d2bf95ff0a7f16d3eaa9b','作业结束流程-步骤3-2:湘潭定制需求 将作业报告发送到指定地址 ',' 湘潭定制需求 将作业报告发送到指定地址 ','cmii-uav-mission','/api/uav/mission/bizproc/sendMissionReportToCustomizedAddress','POST',_binary '\0',_binary '\0','2023-09-27 09:51:57',1,'2024-10-10 08:57:12'),(3977,'API_4fbb11de04284c01945ad804abbed67d','作业结束流程-步骤3-1:发送作业报告给用户','发送作业报告给用户','cmii-uav-mission','/api/uav/mission/bizproc/sendMissionReport','POST',_binary '\0',_binary '\0','2023-09-27 09:51:58',1,'2024-10-10 08:57:03'),(3978,'API_621a751b43ecb816c48554694161f62d','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlaneTest','POST',_binary '\0',_binary '\0','2023-09-27 09:52:05',1,'2024-10-11 01:36:50'),(3979,'API_431d8c15dd3897fafcaa9d0d427f59e7','根据编码更新对应的设备号','','cmii-uav-device','/api/uav/plane/UpdateSnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:06',1,'2024-10-11 01:36:50'),(3980,'API_2511e978dacef70cca9ccdfbbfcfa1e9','根据编码列表查询对应的设备号','','cmii-uav-device','/api/uav/plane/querySnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:07',1,'2024-10-11 01:36:48'),(3981,'API_d9e8775ed3f730d505d5c328a40c4ba9','接口扫描','','cmii-uav-notice','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3982,'API_48241d454d248bf54c9266859e146b9f','查询短信发送状态【短信接口】','查询短信发送状态【短信接口】','cmii-uav-notice','/notice/sms/querySmsSendStatus','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3983,'API_43fb0ce190a6972aecb863eb4d249abb','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUserInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3984,'API_defe8dd2542f2caf6c5e6f4a8f3d240e','新增消息模板','新增消息模板','cmii-uav-notice','/msgtpl/add','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3985,'API_3067cae2057121922fb5f2b67c811968','securityConfiguration','','cmii-uav-notice','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3986,'API_7943ac6919bf8b7f18bf4c832eae1649','createRSA','','cmii-uav-notice','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3987,'API_247945e0a93fa017daba83ace1ece570','发送短信接口【内部程序接口】','发送短信接口','cmii-uav-notice','/sms/sendSms','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3988,'API_923a86fc1f5ce5c386f896cef5a34a99','发送站内信接口【内部程序接口】','发送站内信接口','cmii-uav-notice','/webmsg/sendWebMsg','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3989,'API_2a43ca1cc995b795cfdd2e7cba89608c','接口签名工具【内部程序接口】','接口签名工具','cmii-uav-notice','/open/sms/getSign','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3990,'API_a9bd72a2e167bc2d8af8cb9a0966059e','上架通知','上架通知','cmii-uav-notice','/bulletin/admin/online','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3991,'API_0f715385bd1f51237af25d9d2f9bd3d5','查看消息模板列表','查看消息模板列表','cmii-uav-notice','/msgtpl/list','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3992,'API_cac7a84c29e01473084c0e9d11009e0c','getDocumentation','','cmii-uav-notice','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3993,'API_973fce5234ef7aa00de1bb29d7351545','多机Http主动推送【内部接口】','多机Http主动推送【内部接口】','cmii-uav-notice','/personal/userwebmsg/httpSend','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3994,'API_946ccc2d8fafc74ed3317ca6ca03f7c8','env','','cmii-uav-notice','/cmii/env','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3995,'API_7627b374809b8ed666c748b840d882b3','查询短信模板内容','查询短信模板内容','cmii-uav-notice','/notice/sms/queryTplContent','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3996,'API_4a0bef68c91e2ff62a2b36ec9480261d','发送邮件【内部程序接口】','发送邮,支持附件','cmii-uav-notice','/email/sendAttachEmail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(3997,'API_bf9c83d74209483dac5770204991d19c','新建通知','新建通知','cmii-uav-notice','/bulletin/admin/createBulletin','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3998,'API_f691022d21fc192f65f91f48432dc74d','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUseInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(3999,'API_cc861af1002bea88a0270e3ccb53b2cc','修改消息模板','修改消息模板','cmii-uav-notice','/msgtpl/update','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4000,'API_06c3bb33f9318bbff134b2eb6f69b9ab','发送短信接口2【内部程序接口】','发送短信接口,提供公司ID','cmii-uav-notice','/sms/send','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4001,'API_21db4e1c2727093499291c13cbb09e86','ping','','cmii-uav-notice','/cmii/ping','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4002,'API_d88293c84e0408e944447f15af0802fa','查看消息模板详情','查看消息模板详情','cmii-uav-notice','/msgtpl/get','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4003,'API_d218c65f6f3c93d7181de2ff5ab00fb9','查看邮箱网关详情','查看邮箱网关详情','cmii-uav-notice','/mail/provider/get','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4004,'API_c166dca9ed3acb6eeac9f2b1f4ea2bfa','getDocumentation','','cmii-uav-notice','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4005,'API_b3cdb884b2c0854754eca7a34e5c2061','health','','cmii-uav-notice','/cmii/health','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4006,'API_fc4c820a89a440dd275d502d45864159','通知详情','通知详情','cmii-uav-notice','/bulletin/admin/getBulletin','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4007,'API_d33da0df7d2281092f6735455254cdbb','查询看登录页公告信息','查询看登录页公告信息','cmii-uav-notice','/public/bulletin/queryLoginBulletins','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4008,'API_44ceb32076998c560afa6c58006e7398','编辑通知','编辑通知','cmii-uav-notice','/bulletin/admin/editBulletin','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4009,'API_6e5bd5ed66e139b9464550648a7480bf','删除消息模板','删除消息模板','cmii-uav-notice','/msgtpl/delete','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4010,'API_e6fddf458f19859d797d65972f36fc53','查询日志列表','查询日志列表','cmii-uav-notice','/msglog/list','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4011,'API_72f9819b95e5482bf342349d824b1c96','swaggerResources','','cmii-uav-notice','/swagger-resources','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:43'),(4012,'API_cc988446e9676c38d481736e556de32e','用户修改消息设置','用户修改消息设置','cmii-uav-notice','/personal/userStatus/update','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4013,'API_d4f074a123280040e3da73e2ede6e7ee','查看邮箱网关列表','查看邮箱网关列表','cmii-uav-notice','/mail/provider/list','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:43'),(4014,'API_42d7da4f397a31d8bd8622b58c38df3e','用户查看个人消息设置信息','用户查看个人消息设置信息','cmii-uav-notice','/personal/userStatus/get','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4015,'API_def9844866db8ce6faef02b9ed874205','删除邮箱网关','删除邮箱网关','cmii-uav-notice','/mail/provider/delete','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4016,'API_0f9f75e5abbea5488509dfd74140ab95','发送邮件【内部程序接口】','发送邮,不支持附件','cmii-uav-notice','/email/sendEmail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4017,'API_6a4727c1496387561e4778626710e7bd','修改邮箱网关','修改邮箱网关','cmii-uav-notice','/mail/provider/update','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:41'),(4018,'API_8f0b20d3c2c0d8ad9c4afff0c644b4ec','更新站内信为已读','更新站内信为已读','cmii-uav-notice','/personal/userwebmsg/updateRead','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-10-11 08:15:42'),(4019,'API_68da79aee6254de6ba77db6ad1688251','发送短信开放接口【开放接口】','发送短信开放接口【开放接口】','cmii-uav-notice','/public/open/sms/send','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:41'),(4020,'API_7cf3a40b0f02ffb5df6c587f00721111','查看用户站内信详情','查看用户站内信详情','cmii-uav-notice','/personal/userwebmsg/get','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:42'),(4021,'API_817d1565ed94920ad8d29cbe0ddf9d72','error','','cmii-uav-notice','/error','',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:42'),(4022,'API_b5bff21546371e7426f95bfb4e1b1a23','下架通知','下架通知','cmii-uav-notice','/bulletin/admin/offline','GET',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:41'),(4023,'API_76ccd83e540977796274ccdc37a36772','接收状态报告【短信接口】','接收状态报告','cmii-uav-notice','/public/sms/accept/statusReport','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:42'),(4024,'API_505f74032fcab8963aa2b02e25395acf','新增邮箱网关','新增邮箱网关','cmii-uav-notice','/mail/provider/add','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:42'),(4025,'API_97ce015c363342714b4f248a0bdc85b6','查询用户站内信列表','查询用户站内信列表','cmii-uav-notice','/personal/userwebmsg/list','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:42'),(4026,'API_6e238fa282808b748a0cc9dec5b3cb49','发送邮件,推荐使用该接口【内部程序接口】','发送邮件,可根据用户设置策略发送,支持附件','cmii-uav-notice','/email/sendUserEmail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:42'),(4027,'API_e7d64a1e371ebe9e834b153b0f1b6c0b','查询未读站内信总数','查询未读站内信总数','cmii-uav-notice','/personal/userwebmsg/getTotal','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:41'),(4028,'API_6e21d3a801467be33a7327c5c30e64eb','uiConfiguration','','cmii-uav-notice','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:41'),(4029,'API_c3430ae24d03166f2c26ba36660de815','通知列表','通知列表','cmii-uav-notice','/bulletin/admin/queryBulletinPage','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-10-11 08:15:42'),(4030,'API_361729bb14d7a6d36a0bc97d62c16495','查询公司/机构范围的机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHgrNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:10',1,'2024-10-11 01:36:48'),(4031,'API_94c1fd325b05f2ae3aa81023a6b74833','查询公司/机构范围的载荷名称列表','','cmii-uav-device','/api/uav/load/queryLoadNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:10',1,'2024-10-11 01:36:42'),(4032,'API_8597a6c5fabb7e6ffd0e82be7444b34b','模糊查询绑定无人机列表','','cmii-uav-device','/api/uav/hangar/queryBoundUavByCompany','GET',_binary '\0',_binary '\0','2023-09-27 09:52:10',1,'2024-10-11 01:36:42'),(4033,'API_aa7338d3a944fa1fd3dad7b09316facc','获取组织额度情况(组织管理-详情-额度情况)','','cmii-uav-user','/api/admin/system/quota/getCompanyQuotaInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:12',1,'2024-10-11 15:37:12'),(4034,'API_46648b88a004b4435bf256797b953520','redis-GetAndExpire','','cmii-uav-user','/api/uav/uavTestPO/testGetAndExpire','POST',_binary '\0',_binary '\0','2023-09-27 09:52:14',1,'2024-10-11 15:37:17'),(4035,'API_ed6bef12ae7ea154859268ea4dfa2f7a','获取组织及子孙组织列表','','cmii-uav-user','/api/admin/system/quota/getChildrenCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:15',1,'2024-10-11 15:37:17'),(4036,'API_d2b6aad1c28214428af54d51ae64194a','获取某个用户的指定平台菜单树组','','cmii-uav-user','/api/uav/resource/queryPlatformsGroupResourceTreeForUser','POST',_binary '\0',_binary '\0','2023-09-27 09:52:18',1,'2024-10-11 15:37:08'),(4037,'API_047b7b5f5b6b912c98018b8e5945fb34','获取某个配额在各子组织使用情况','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfoInCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:18',1,'2024-10-11 15:37:14'),(4038,'API_4168459cc2bead90bd4157e2db916f17','机库或者无人机 通过kmz文件url下发航线','','cmii-uav-surveillance','/surveillance/uav_command/load_line_by_file','POST',_binary '\0',_binary '\0','2023-09-27 09:52:33',1,'2024-09-23 20:58:58'),(4039,'API_26ff55f09c7532c9a3f06f18f7a9cb05','更新版本','','cmii-app-release','/version/version_info','PUT',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4040,'API_495f5880e2eccc89d560948c48a09b46','获取版本查询条件列表','','cmii-app-release','/version/version_info_condition_list/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4041,'API_7bf68c2e30734848818c4ecbd41d18e6','新建环境识别码','','cmii-app-release','/env_code/env_code_info','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4042,'API_a52fe2b6f08d41f4dc4dc48a04be1ae9','新建版本','','cmii-app-release','/version/version_info','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4043,'API_727057a04db0406dfb28604429a744c1','securityConfiguration','','cmii-app-release','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4044,'API_e7c4e910df1dd0ea458f3bc9f31ef3bc','更新环境识别码','','cmii-app-release','/env_code/env_code_info','PUT',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4045,'API_3cb691e8e7aedd2a72b6aee74a75ca5c','接口扫描','','cmii-app-release','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4046,'API_a36b89b6c1320e56439a7a20b8ca0676','health','','cmii-app-release','/cmii/health','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4047,'API_fd7106ed46c5e4f7be35cfe58732c8d3','getDocumentation','','cmii-app-release','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4048,'API_d85837149d345af473da714f8ab5affb','查询版本详情','','cmii-app-release','/version/version_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4049,'API_44129cebbcf2841b4bf039dd8ba50cec','分页条件查询环境识别码列表','','cmii-app-release','/env_code/env_code_info_list','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4050,'API_b32dbb106fb41ec57490f916950087fa','获取环境识别码查询条件列表','','cmii-app-release','/env_code/env_code_info_condition_list','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4051,'API_a1a48a54927e4313d2c5b63dbcd002d6','env','','cmii-app-release','/cmii/env','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4052,'API_a83afb5f3f628abd1af5e46b304dde82','删除版本','','cmii-app-release','/version/version_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4053,'API_09a62589d10c79e4a74bb29ca428d3a6','swaggerResources','','cmii-app-release','/swagger-resources','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4054,'API_7f80559bf59c45500e2003734a02206d','createRSA','','cmii-app-release','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4055,'API_86b64c2b3a303565113224d96de8c4ee','getDocumentation','','cmii-app-release','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4056,'API_496c140d931270006608fc4ec7cb46e6','查询发布信息','','cmii-app-release','/version/info','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4057,'API_06c0fe70654170e5e9ff13c1c3ee8c34','error','','cmii-app-release','/error','',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4058,'API_966aaa19d5a4dc4df3e70ec3c82f68c4','更新发布标识','','cmii-app-release','/version/version_pub_info','PUT',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4059,'API_cd0b0037f3e746615ce1309d23a8ec55','查询环境识别码详情','','cmii-app-release','/env_code/env_code_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4060,'API_99fb8418b53bc350edf763255a3bd510','uiConfiguration','','cmii-app-release','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4061,'API_f8f4ae88fa75afd56267cde6b7dca76a','删除环境识别码','','cmii-app-release','/env_code/env_code_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4062,'API_a1588f4475007d3b2740918f2828bc63','分页条件查询版本列表','','cmii-app-release','/version/version_info_list','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4063,'API_f1b7d301ae0f8d425c6adde56969a1bd','查询发布状态的版本详情','','cmii-app-release','/version/pub_version_info_detail/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:10',1,'2024-01-30 06:27:12'),(4064,'API_2dec51f8971e3df957ad7aa41c584242','ping','','cmii-app-release','/cmii/ping','GET',_binary '\0',_binary '\0','2023-10-07 02:11:10',1,'2024-01-30 06:27:12'),(4065,'API_e13dabb538d0a54dce6a8ad6efbf8bfa','通信保障-关闭通信作业','通信保障-关闭通信作业','cmii-uav-industrial-portfolio','/client/industrial/emergency/stopJob','POST',_binary '\0',_binary '\0','2023-10-11 01:31:43',1,'2024-10-15 02:14:18'),(4066,'API_1f34c212c52b13674b6f69e7f16b1890','通信保障-分享-获取通信情况','通信保障-分享-获取通信情况','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getCommInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:43',1,'2024-10-15 02:14:08'),(4067,'API_25bed11abbf7e45975cbe8884dd63743','通信保障-分享-获取无人机设备情况及覆盖范围','通信保障-分享-获取无人机设备情况及覆盖范围','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getPlaneInfoCoverage','GET',_binary '\0',_binary '\0','2023-10-11 01:31:43',1,'2024-10-15 02:14:09'),(4068,'API_1fb54990d5b57bec18ce98df7e7ea6f2','通信保障-获取无人机设备情况及覆盖范围','通信保障-获取无人机设备情况及覆盖范围','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getPlaneInfoCoverage','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-10-15 02:14:20'),(4069,'API_652e1a55ae4a0c941c9108d060d0e687','通信保障-获取无人机视频流','通信保障-获取无人机视频流','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-10-15 02:14:15'),(4070,'API_aace2a8eb07b017bc6463e98c4b49d39','通信保障-在线无人机列表','通信保障-在线无人机列表','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/onlinePlanes','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-10-15 02:14:13'),(4071,'API_ed70781b159fee262a47b7a04c7a6aee','通信保障-分享-获取页面分享码&提取码','监通信保障-分享-获取页面分享码&提取码','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/shareCode','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-10-15 02:14:11'),(4072,'API_e7f1d27b3a45d767d0918df2f8c9a9e1','通信保障-开启通信作业请求','通信保障-开启通信作业请求','cmii-uav-industrial-portfolio','/client/industrial/emergency/startJob','POST',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-10-15 02:14:13'),(4073,'API_8848ab9bdf94efc0280726eb498eda22','通信保障-获取通信情况','通信保障-获取通信情况','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getCommInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-10-15 02:14:11'),(4074,'API_2c6ec5b9d82ee093028557c00ca83d26','通信保障-获取无人机轨迹','通信保障-获取无人机轨迹','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getPlaneTrack','GET',_binary '\0',_binary '\0','2023-10-11 01:31:45',1,'2024-10-15 02:14:18'),(4075,'API_1c1305d024614bb511bd2a97779550e5','通信保障-分享-在线无人机列表','通信保障-分享-在线无人机列表','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/onlinePlanes','GET',_binary '\0',_binary '\0','2023-10-11 01:31:45',1,'2024-10-15 02:14:19'),(4076,'API_f3caecbf948e5590908c43c5380d3710','通信保障-分享-获取无人机轨迹','通信保障-分享-获取无人机轨迹','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getPlaneTrack','GET',_binary '\0',_binary '\0','2023-10-11 01:31:45',1,'2024-10-15 02:14:12'),(4077,'API_af2174c0a7ac81e7f040152cf4f80016','通信保障-分享-获取无人机视频流','通信保障-分享-获取无人机视频流','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:46',1,'2024-10-15 02:14:10'),(4078,'API_415b4cf64ca90d148ac2731206ead54f','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/video/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-10-17 09:42:26',1,'2024-10-12 09:42:37'),(4079,'API_91f82ae6c89317f8df56df0728a42ebf','指标考核-查询冲突列表','','cmii-uav-grid-datasource','/fightPlan/getIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:09:57'),(4080,'API_e77fa4f440478b56fe5bc665f45f65c7','指标考核-飞行计划冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:09:57'),(4081,'API_42415b3aceb7f511a89d507fbeabbaad','指标考核-飞行计划数据批量申报','','cmii-suav-supervision','/flightPlan/saveBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:43',1,'2023-11-02 03:30:20'),(4082,'API_0474d50943fc00bdd34f3fe58a9f78a4','createRSA','','cmii-uav-alarm','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-07 07:43:49',1,'2024-10-11 05:48:26'),(4083,'API_80d73ec6aad120c8c75530ad9ef7e2a0','视频数据回放-获取视频MP4列表','视频数据回放-获取视频MP4列表','cmii-uav-cloud-live','/video/playback/videoMP4List','POST',_binary '\0',_binary '\0','2023-11-09 09:33:13',1,'2024-10-12 09:42:33'),(4084,'API_a4e1342ccb993859aea9214541f58d37','合成任务删除','合成任务删除','cmii-uav-cloud-live','/client/video/delete','POST',_binary '\0',_binary '\0','2023-11-09 10:14:40',1,'2024-10-12 09:42:38'),(4085,'API_48e65c591649782745af6b15116d7f6f','securityConfiguration','','cmii-uav-threedsimulation','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4086,'API_0d8e242c36b5bc84f39cac1fee7a7dc7','获取当前场景','获取当前场景','cmii-uav-threedsimulation','/scene/get','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4087,'API_b3f4f44ec4d22214cd56d257ed2331d5','获取任务列表','获取任务列表','cmii-uav-threedsimulation','/task/list','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4088,'API_04931a27d62153a54bf9fc1a23d35ffa','任务文件使用确认','任务文件使用确认','cmii-uav-threedsimulation','/taskFile/useConfirm','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4089,'API_41eb8005fdef1c4ec23aab1a2f1cd85e','getDocumentation','','cmii-uav-threedsimulation','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4090,'API_548650b50752e62c793e3234b1b97029','切换场景,offshore、city','切换场景','cmii-uav-threedsimulation','/scene/switch','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4091,'API_6d7f6c29560e1a4d8400705da0c42152','接口扫描','','cmii-uav-threedsimulation','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4092,'API_85bc56aab0e4bc7a8bedb255812af7ab','health','','cmii-uav-threedsimulation','/cmii/health','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4093,'API_375173eb54995c91a0e9a31dfe60d27e','飞行图片回传','飞行图片回传','cmii-uav-threedsimulation','/taskFile/pictureReturn','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4094,'API_437451cba9ac1de85c6e580cf67beb33','uiConfiguration','','cmii-uav-threedsimulation','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4095,'API_fb0057118d5b9f3e6cf319fa877e5f6d','获取任务M3U8视频','获取任务M3U8视频','cmii-uav-threedsimulation','/taskFile/getM3U8Video','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4096,'API_d3d833d265dbcffeda9c9794d5a2aea1','删除任务','删除任务','cmii-uav-threedsimulation','/task/delete','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4097,'API_bc6034dfdf9247338067b05bf1866067','ping','','cmii-uav-threedsimulation','/cmii/ping','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4098,'API_c80ca8334706c20a5dd0a27949d77d9e','获取任务文件列表','获取任务文件列表','cmii-uav-threedsimulation','/taskFile/list','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4099,'API_456f5c569c539fcb290d052018fc34db','获取任务详情','获取任务详情','cmii-uav-threedsimulation','/task/get','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4100,'API_32edd5093a4a8842766f9f2013a6ab5e','getDocumentation','','cmii-uav-threedsimulation','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4101,'API_b0b1e1dc1f430506f8fe7b1fe9ada999','删除任务文件','删除任务文件','cmii-uav-threedsimulation','/taskFile/delete','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4102,'API_b734faaf116713842b98d5c6e7c9d9d2','error','','cmii-uav-threedsimulation','/error','',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4103,'API_4083dd5ed7e060e52480b21a4a68e000','下载任务文件','下载任务文件','cmii-uav-threedsimulation','/taskFile/download','POST',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4104,'API_d8d5bbe25daf8b477f87a2e512eefb88','飞行图片上传回调','飞行图片上传回调','cmii-uav-threedsimulation','/taskFile/uploadCallBack','POST',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4105,'API_987c53c8621cc61385f28252a2130d1e','env','','cmii-uav-threedsimulation','/cmii/env','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4106,'API_1714be4ff8dcb05ade416f09e6a9dcae','获取任务MP4视频','获取任务MP4视频','cmii-uav-threedsimulation','/taskFile/getMP4Video','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4107,'API_0babb3a598d1890ce0411ef33d37bcfe','swaggerResources','','cmii-uav-threedsimulation','/swagger-resources','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4108,'API_cd58ef3662e95ff662946925163d1293','获取上传临时凭证','获取上传临时凭证','cmii-uav-threedsimulation','/taskFile/getCredentials','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4109,'API_49377501456c840fcf0ca0757896c864','createRSA','','cmii-uav-threedsimulation','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4110,'API_d6684750fcb631ea568e7e4b22ccc3b0','导入模板','','cmii-uav-tower','/task/exportTemp','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-10-15 02:33:55'),(4111,'API_fb9c7cd82c909434806243fcfd609b4d','获取任务导出的进度','','cmii-uav-tower','/task/getExportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-10-15 02:33:55'),(4112,'API_249ad875c3e09a7c9ab4f935adeab03d','获取导入的进度','','cmii-uav-tower','/station/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-10-15 02:33:55'),(4113,'API_ed4881f58193ac7d83f01d82f6682257','批量导出','','cmii-uav-tower','/task/export','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-10-15 02:33:55'),(4114,'API_2fac1d880847842e0e9c7aa052f023ae','导入','','cmii-uav-tower','/task/import','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-10-15 02:33:56'),(4115,'API_9cf943b411919316e05cd6c414339147','获取导入的进度','','cmii-uav-tower','/task/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-10-15 02:33:55'),(4116,'API_59db257ef928880cfc4e85b43feb70e1','更新状态','','cmii-uav-tower','/task/updateStatus','GET',_binary '\0',_binary '\0','2023-11-20 09:13:32',1,'2024-10-15 02:33:56'),(4117,'API_9e06b8f444a2b43fc9bbbd816db81d36','删除基站','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_delete','POST',_binary '\0',_binary '\0','2023-11-27 02:30:56',1,'2024-10-15 02:14:20'),(4118,'API_316c32e174ea35d3468ed983be716f79','获取单个基站详细信息以及统计信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_with_statistic','GET',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-10-15 02:14:20'),(4119,'API_3a14192c40e1d203be8f2ed41d7945a2','摄像头初始化','摄像头初始化','cmii-uav-industrial-portfolio','/photoelectric/camera/initial','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-10-15 02:14:12'),(4120,'API_bb15aac1e99c116b827098400d6b9023','多站分页列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_page','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-10-15 02:14:13'),(4121,'API_b79e9bf4552866205481f6956c7fbcbc','手动添加告警','手动添加告警','cmii-uav-industrial-portfolio','/photoelectric/alarm/addDetail','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-10-15 02:14:21'),(4122,'API_35d1cf7849dd54c4fb4082a184d3db91','查询告警列表','查询告警列表','cmii-uav-industrial-portfolio','/photoelectric/alarm/list','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-10-15 02:14:18'),(4123,'API_21c6c1e51e19d01f1d91f720ccefdb02','摄像头变焦','摄像头变焦','cmii-uav-industrial-portfolio','/photoelectric/camera/getParameters','GET',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-10-15 02:14:17'),(4124,'API_f4dfeab41f25a2bbe46b1f5182bacb04','查询告警详情','查询告警详情','cmii-uav-industrial-portfolio','/photoelectric/alarm/get','GET',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-10-15 02:14:15'),(4125,'API_eea2b0a06f414b69d37668a0fef8af86','查询历史的基站列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryBtsRecords','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:13'),(4126,'API_7d3009151bd244069d80f89662644ddc','导出多站基站数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_export','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:12'),(4127,'API_9611ddb735d096fd1cdc14394c68198d','下载多站导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_list_template','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:17'),(4128,'API_b4af8cce24a6bd6531a749a99035908d','获取光电摄像头列表','获取光电摄像头列表','cmii-uav-industrial-portfolio','/photoelectric/camera/list','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:18'),(4129,'API_7f327e96c4a276ab75187734d06d1428','增加光电摄像头','增加光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/add','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:17'),(4130,'API_b5f118a2023a2f9cb72b1635b52a1cfb','手动添加告警','手动添加告警','cmii-uav-industrial-portfolio','/photoelectric/alarm/addBrief','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:16'),(4131,'API_477caaa8401b7750ce95f33f62934a44','回放探测的历史轨迹,包括历史基站数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryDetectionReplayByTime','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:18'),(4132,'API_94bc9258601e1062b29a7d5e985d79e2','多站全部列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_list','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-10-15 02:14:19'),(4133,'API_a2374909b686072e2c7d2aeea5398243','获取正在告警的摄像头','获取正在告警的摄像头','cmii-uav-industrial-portfolio','/photoelectric/alarm/getAlarmCamera','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-10-15 02:14:20'),(4134,'API_aaad7d11a47b5dacd9d373a3aa110dce','查询告警全量列表','查询告警全量列表','cmii-uav-industrial-portfolio','/photoelectric/alarm/listIDAll','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-10-15 02:14:22'),(4135,'API_033246125c0da628c3699f13ea08f2d5','导入多站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_list','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-10-15 02:14:22'),(4136,'API_1261ce22958ec5e07bbf945a661aae63','删除告警','删除告警','cmii-uav-industrial-portfolio','/photoelectric/alarm/delete','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-10-15 02:14:11'),(4137,'API_638be037afa898bf09ebb46e3e729d7c','删除光电摄像头','删除光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/delete','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-10-15 02:14:19'),(4138,'API_c897d65a137a466f07440c79b5d6e0d8','更新光电摄像头','更新光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/update','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-10-15 02:14:20'),(4139,'API_cfb47be939348a89cb8a99f9ea25431e','模拟多站探测数据','','cmii-uav-mqtthandler','/mockMultiRadar','POST',_binary '\0',_binary '\0','2023-11-29 02:32:51',1,'2024-09-25 08:48:46'),(4140,'API_3431ef103d83f37d14e3e7056c1c91b6','通过文件路径下载文件','通过文件路径下载文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileBySign','GET',_binary '\0',_binary '\0','2023-11-29 09:23:12',1,'2024-10-11 08:57:36'),(4141,'API_4bb442278f884ecc85ed77efcb8d525d','视频数据回放-删除视频片段','视频数据回放-批量视频视频片段','cmii-uav-cloud-live','/video/playback/deleteOneSegment','POST',_binary '\0',_binary '\0','2023-11-29 09:23:19',1,'2024-10-12 09:42:37'),(4142,'API_acd9f882109ce9e68d511b3b114354b9','插入一条单机监视日志','','cmii-uav-surveillance','/surveillance/flight_records/insertOprationHistory','POST',_binary '\0',_binary '\0','2023-11-29 09:23:27',1,'2024-09-23 20:58:57'),(4143,'API_fc06d7a2bc4186782b809a0dbdc1de1c','query一条单机监视日志','','cmii-uav-surveillance','/surveillance/flight_records/queryOprationHistory','POST',_binary '\0',_binary '\0','2023-11-29 09:23:29',1,'2024-09-23 20:59:00'),(4144,'API_10edae9c3351ad4713645ab24857451a','中断飞行','由云端实现临时打断无人机的当前航线(需要云端下发),并缓存剩余航线','cmii-uav-surveillance','/surveillance/uav_command/stopTemporarily','POST',_binary '\0',_binary '\0','2023-11-29 09:23:29',1,'2024-09-23 20:59:01'),(4145,'API_2518fdbb4cb6e22b626f06230fa49a96','获取单机监视键盘使用模式','','cmii-uav-surveillance','/surveillance/payload/camera/getKeyboard','GET',_binary '\0',_binary '\0','2023-11-29 09:23:30',1,'2024-09-23 20:58:56'),(4146,'API_c4a46d43604996cf28f189901497719e','设置单机监视键盘使用模式','','cmii-uav-surveillance','/surveillance/payload/camera/setKeyboard','POST',_binary '\0',_binary '\0','2023-11-29 09:23:31',1,'2024-09-23 20:58:59'),(4147,'API_ec3289be78166822fb60464157c618fe','色盘参数设置','','cmii-uav-integration','/dji_cloud/property_set/thermal_plate_set','POST',_binary '\0',_binary '\0','2023-11-29 09:23:35',1,'2024-09-30 07:59:18'),(4148,'API_031fbbe70914aa1022835dd80c228017','获取网格瓦片绘制坐标','','cmii-uav-grid-engine','/layer/grid/{x}/{y}/{z}','GET',_binary '\0',_binary '\0','2023-11-29 09:28:53',1,'2024-05-27 11:50:53'),(4149,'API_3db2358bf5ed2ff2c0e5751eccfcd339','proxy','','cmii-uav-grid-engine','/proxy/**','',_binary '\0',_binary '\0','2023-11-29 09:28:53',1,'2024-05-27 11:50:53'),(4150,'API_c2fecca5a1fcc6f7dcb42ff3a484b4d5','重载业务参数','','cmii-uav-device','/api/uav/plane/initSecParameter','POST',_binary '\0',_binary '\0','2023-12-11 06:27:13',1,'2024-10-11 01:36:52'),(4151,'API_39a968804d4dc4bb243589caaf540fe1','无人机的视频流地址列表信息查询','','cmii-uav-device','/api/uav/plane/querySteamAddrByUavCode','GET',_binary '\0',_binary '\0','2023-12-11 06:27:14',1,'2024-10-11 01:36:44'),(4152,'API_0aab2f541a99763e199f3c8b09ad9f10','查詢查询所有在线(不区分公司)无人机列表','','cmii-uav-device','/api/uav/plane/queryAllOnlineUavList','GET',_binary '\0',_binary '\0','2023-12-11 06:27:15',1,'2024-10-11 01:36:45'),(4153,'API_60bb537898c26548c549780e2781a8f7','获取空域申请和空域限制所有数据(仅包含政府监管空域)','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimitLocal.do','POST',_binary '\0',_binary '\0','2023-12-27 06:02:36',1,'2024-09-09 09:16:58'),(4154,'API_57f0dc0337892b2a14cfb4c78589a9c6','压力模拟多站探测数据','','cmii-uav-mqtthandler','/stressMockMultiRadar','POST',_binary '\0',_binary '\0','2023-12-27 07:18:00',1,'2024-09-25 08:48:48'),(4155,'API_74388e51043290a1c51fa04fa0559d50','获取景区人流量告警单个','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMapAlarmNew','GET',_binary '\0',_binary '\0','2024-01-12 08:32:37',1,'2024-09-23 20:58:59'),(4156,'API_e51341772790d0ade682520efaf2bc4e','获取景区人流量告警总数','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMapAlarmNewTotal','GET',_binary '\0',_binary '\0','2024-01-12 08:32:38',1,'2024-09-23 20:58:56'),(4157,'API_b2a909df47e0d13b808f7882a7f19deb','获取景区测试告警数据','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/testGetAlarm','GET',_binary '\0',_binary '\0','2024-01-12 08:32:38',1,'2024-09-23 20:59:00'),(4158,'API_3ff282c01577c8d58693039f73316e20','测试更新基站位置','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/testUpdateBts','POST',_binary '\0',_binary '\0','2024-01-16 09:44:18',1,'2024-10-15 02:14:16'),(4159,'API_cb15b4432e2140aeb1b751cd38b6f3bf','返航','','cmii-uav-surveillance','/surveillance/uav_command/go_home_all_force','POST',_binary '\0',_binary '\0','2024-01-18 02:12:18',1,'2024-09-23 20:58:58'),(4160,'API_677f82b18c2c358a1c3c6f165553da82','删除当前ID的告警','','cmii-uav-mission','/api/uav/mission/surveillance/deleteAlarmByAlarmId','GET',_binary '\0',_binary '\0','2024-02-10 12:37:54',1,'2024-10-10 08:57:10'),(4161,'API_dc4f1ffd2565af16084e0a4ba6cbdb0b','createRSA','','cmii-uav-logger','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-02-21 09:19:19',1,'2024-10-15 02:44:48'),(4162,'API_12ee30f7ec76fa4f5269c8e2e777d661','在线接收utmiss传输的数据','接收utmiss传输的数据','cmii-uav-device','/api/uav/utmiss/import','POST',_binary '\0',_binary '\0','2024-02-21 09:19:44',1,'2024-10-11 01:36:49'),(4163,'API_8a016e6c502c1e52c4b54736f93ae363','允许导入数据','允许导入数据','cmii-uav-device','/api/uav/utmiss/allow/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:45',1,'2024-10-11 01:36:43'),(4164,'API_743eb529f9e8d7a9ec38c1dea6629d61','从MongoDB获取数据','','cmii-uav-device','/api/uav/utmiss/getUtmissFromMongoDB','GET',_binary '\0',_binary '\0','2024-02-21 09:19:45',1,'2024-10-11 01:36:45'),(4165,'API_36079bab24b9cd7e4db8aedd82709c96','查询公司/机构范围的机库列表','','cmii-uav-device','/api/uav/hangar/queryHgrByCompanyId','GET',_binary '\0',_binary '\0','2024-02-21 09:19:50',1,'2024-10-11 01:36:52'),(4166,'API_cc9f79e12f624ba4985ae4af1f17cefd','上传文件到Redis','','cmii-uav-device','/api/uav/utmiss/utmissUploadToRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:51',1,'2024-10-11 01:36:54'),(4167,'API_ec3ca622720071176a3e8aa77a199427','统计UTMISS的数据','统计UTMISS的数据','cmii-uav-device','/api/uav/utmiss/utmissCnt','POST',_binary '\0',_binary '\0','2024-02-21 09:19:51',1,'2024-10-11 01:36:43'),(4168,'API_8974ee82aaa4130ebae0977bcbf1fe31','上传文件到MongoDB','','cmii-uav-device','/api/uav/utmiss/utmissUploadToMongoDB','POST',_binary '\0',_binary '\0','2024-02-21 09:19:52',1,'2024-10-11 01:36:48'),(4169,'API_17e82f04f875610d5a7764e010f6199b','从Redis获取UTMISS历史数据','','cmii-uav-device','/api/uav/utmiss/getUtmissHistoryFromRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:53',1,'2024-10-11 01:36:49'),(4170,'API_c90a732d36204decf638594a3ff66357','禁止导入数据','禁止导入数据','cmii-uav-device','/api/uav/utmiss/forbid/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:53',1,'2024-10-11 01:36:51'),(4171,'API_552c8a8b8f50db609320606d1d233a18','屏幕画框移动','先测试哈勃,之后测试大疆机库','cmii-uav-surveillance','/surveillance/payload/camera_area_aim','POST',_binary '\0',_binary '\0','2024-02-21 09:20:01',1,'2024-09-23 20:59:01'),(4172,'API_f6c70a8734f570edbc56fe74d6fd463b','更新配额模板','','cmii-uav-user','/quota/template/update','POST',_binary '\0',_binary '\0','2024-02-21 09:20:21',1,'2024-10-11 15:37:16'),(4173,'API_3f9dfa4350247574a5b752fa1f27970c','根据id查询模板详情','','cmii-uav-user','/quota/template/detail','GET',_binary '\0',_binary '\0','2024-02-21 09:20:21',1,'2024-10-11 15:37:14'),(4174,'API_d9873a8533f737c920b7458f519cdd57','游客列表','','cmii-uav-user','/api/uav/user/visitors','POST',_binary '\0',_binary '\0','2024-02-21 09:20:23',1,'2024-10-11 15:37:16'),(4175,'API_6eeb1de83411bedf7a18052c6d4f5fa7','查询配额列表','','cmii-uav-user','/quota/template/listQuotaTypes','GET',_binary '\0',_binary '\0','2024-02-21 09:20:24',1,'2024-10-11 15:37:11'),(4176,'API_daceb80a6f633f9c9f65653a1e9e1ca4','OMS完结待办任务','OMS完结待办任务','cmii-uav-process','/process/bizengine/manage/flowinst/completeTask','POST',_binary '\0',_binary '\0','2024-02-21 09:20:26',1,'2024-09-12 02:46:58'),(4177,'API_8b0ab794f29f25277c9d0cb4bb8994ea','创建统一化电子围栏','','cmii-uav-airspace','/efence_airspace/unified_efence_info','POST',_binary '\0',_binary '\0','2024-02-21 09:52:38',1,'2024-10-11 08:57:36'),(4178,'API_262ee573ba20d66f23470c0096f372df','callback','','cmii-uav-airspace','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2024-02-21 09:52:38',1,'2024-10-11 08:57:36'),(4179,'API_ff22e7f8b802bf033e6b07286b32db4d','编辑统一化电子围栏','','cmii-uav-airspace','/efence_airspace/unified_efence_info','PUT',_binary '\0',_binary '\0','2024-02-21 09:52:38',1,'2024-10-11 08:57:36'),(4180,'API_8bd696a38af23e8d025fb9ce09131a28','创建配额模板','','cmii-uav-user','/quota/template/create','POST',_binary '\0',_binary '\0','2024-02-22 08:15:49',1,'2024-10-11 15:37:13'),(4181,'API_7132224081bad97b07d8e8db28962d13','分页查询','','cmii-uav-user','/quota/template/queryPage','POST',_binary '\0',_binary '\0','2024-02-22 08:15:49',1,'2024-10-11 15:37:10'),(4182,'API_ed9a9fd2df6424847b28e246a2f15b0f','列表查询','','cmii-uav-user','/quota/template/list','GET',_binary '\0',_binary '\0','2024-02-22 08:15:49',1,'2024-10-11 15:37:17'),(4183,'API_e9d307a6f3e6529e1fa10ad9275ca92b','xxljobtext','','cmii-uav-device','/api/uav/utmiss/renewIndex','POST',_binary '\0',_binary '\0','2024-02-22 09:46:10',1,NULL),(4184,'API_c8abde6fece6a8c4ee8eca71bec97cae','删除Redis文件','','cmii-uav-device','/api/uav/utmiss/DeleteSimulateupload','GET',_binary '\0',_binary '\0','2024-02-22 09:46:10',1,NULL),(4185,'API_fdde4be652fe385e3cf53930ce45ee05','swaggerResources','','cmii-uav-multilink','/swagger-resources','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4186,'API_275a34306d68976a509617ad946c0b8c','DEBUG_v上报单个探针链路性能数据','','cmii-uav-multilink','/multiLinkRedundancy/reportPerfData','POST',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4187,'API_c3b6a0543e8173027ad815342ed3062c','debug_更新在线无人机列表','','cmii-uav-multilink','/multiLinkRedundancy/updateOnlinePlaneInfo','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4188,'API_a4b1b52be0192413a5d563c4ac0d858b','health','','cmii-uav-multilink','/cmii/health','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:46'),(4189,'API_2346c82899ca1c77ee2d451da8493fd8','DEBUG_获取Device与Uav对应关系','','cmii-uav-multilink','/multiLinkRedundancy/getDevCode2UavCodeMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4190,'API_4ac796b8d8287500eeff5416372e04e8','DEBUG_获取视频流收发字节数','','cmii-uav-multilink','/multiLinkRedundancy/getVideoBytesMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4191,'API_8f1422986698b6f5f05c0970e83de95d','securityConfiguration','','cmii-uav-multilink','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4192,'API_3fe6ea9c4d1019c6b15edda2261b8f41','DEBUG_获取下发的链路切换参数','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchParamMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4193,'API_9cfe0a58bb6c72ea61b56bb44529de2d','获取单个无人机多链路切换参数','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchPara','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4194,'API_422b571eab8682b2e88092379e6cbdd4','DEBUG_BAK_获取链路切换结果','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchResultMapForDebugBak','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4195,'API_0203087d431bd5c16558ab7206a9a61e','createRSA','','cmii-uav-multilink','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4196,'API_5befc9fe387476d28fd3d2ec4345a015','DEBUG_查询设备管理在线无人机','','cmii-uav-multilink','/multiLinkRedundancy/getAllOnlinePlans','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4197,'API_9d1524c49ced86f57e48e61f752ab5ac','DEBUG_V查询探针延时、丢包率_String','','cmii-uav-multilink','/multiLinkRedundancy/getGaojiPingResult','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4198,'API_d063bf0dd9b947fc33273eae6203646d','DEBUG_获取UAV_ID的MAP信息','','cmii-uav-multilink','/multiLinkRedundancy/getUavCodesForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4199,'API_f63e4c29b9bdfd47597b09e0bfb52a51','设置单个无人机多链路切换参数','','cmii-uav-multilink','/multiLinkRedundancy/setPara','POST',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4200,'API_6503e68bba63984a33d3b41976254788','DEBUG_V查询探针延时、丢包率_obj','','cmii-uav-multilink','/multiLinkRedundancy/getGaojiPingResultObj','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4201,'API_47a75f8fdd3bb7cbcca83fc3835cdeeb','DEBUG_获取MQTT的状态信息','','cmii-uav-multilink','/multiLinkRedundancy/getMqttStatusForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4202,'API_b7209ca42dcf0155df25aea20c7752fe','env','','cmii-uav-multilink','/cmii/env','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4203,'API_7bb4092e1343ac1b9aade3fc7a573196','ping','','cmii-uav-multilink','/cmii/ping','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4204,'API_ae65b7c7e028b5155e354f958b84c271','DEBUG_停止切换视频流任务','','cmii-uav-multilink','/multiLinkRedundancy/stopSwitchStream','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4205,'API_e2f69893c6d9e31ec4f318abcde10f20','获取单个无人机多链路性能数据','','cmii-uav-multilink','/multiLinkRedundancy/queryPerfData','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4206,'API_8b5239e31943ab5997aad23f87d7446e','uiConfiguration','','cmii-uav-multilink','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4207,'API_dd327640f60afd77830de7a05800f941','error','','cmii-uav-multilink','/error','',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4208,'API_a3467c75bb1c397e51ccc3e33328b537','DEBUG_切换视频流','','cmii-uav-multilink','/multiLinkRedundancy/switchStream','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4209,'API_4f631d8130b41a8a9fd02e36fdd946b4','getDocumentation','','cmii-uav-multilink','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4210,'API_e015d1c792026b31e2d19ea9c5edb0c5','查询某个载荷的视频流信息','','cmii-uav-multilink','/multiLinkRedundancy/getDevVideoRate','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4211,'API_07e0779f24f91040ddb2c727dcc54a26','DEBUG_获取IP链路性能数据','','cmii-uav-multilink','/multiLinkRedundancy/getUavIpLinkPerfDataMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4212,'API_5badd236de4a5cb1ac94f8634989cd5d','接口扫描','','cmii-uav-multilink','/api/scanner/scan','POST',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4213,'API_d1dd3743e62ff8e68231415167cf1452','getDocumentation','','cmii-uav-multilink','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:48'),(4214,'API_40005088b2d270bda0fbab43813b7817','DEBUG_获取链路切换结果','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchResult2MapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4215,'API_30af0ed997c9bc4e933af0009cbd63b8','DEBUG_获取VIDEO的状态信息','','cmii-uav-multilink','/multiLinkRedundancy/getVideoStatusForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4216,'API_ad1d4c7863301736ebff9d28ba83b13c','归档','','cmii-uav-tower','/task/filing','POST',_binary '\0',_binary '\0','2024-03-01 06:42:24',1,'2024-10-15 02:33:54'),(4217,'API_4201dbf9fd5ea2f4c04b85627682b6f2','无须整改','','cmii-uav-tower','/app/task/noAssign','POST',_binary '\0',_binary '\0','2024-03-01 06:42:25',1,'2024-10-15 02:33:56'),(4218,'API_1888cac04e9e89c6297eaa69a3204876','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/AlarmIndexCount','GET',_binary '\0',_binary '\0','2024-03-05 09:09:49',1,'2024-03-05 09:09:58'),(4219,'API_798e59c47ab640aecd8006590c45e046','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/push/mqtt','POST',_binary '\0',_binary '\0','2024-03-06 02:52:23',1,'2024-03-08 07:41:01'),(4220,'API_bdde5977a7c4b5fe8ccce84bfef22921','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/map','POST',_binary '\0',_binary '\0','2024-03-06 03:18:50',1,'2024-03-08 07:41:05'),(4221,'API_eb21e9560b103aa9c217ccf66b712322','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/move','GET',_binary '\0',_binary '\0','2024-03-06 06:03:47',1,NULL),(4222,'API_f4cfaafddace7da84401416b54e9bd33','吊舱打开或收起','一般固定翼的云台控制功能,目前仅适配了纵横','cmii-uav-surveillance','/surveillance/payload/pod_switch','POST',_binary '\0',_binary '\0','2024-03-07 09:08:23',1,'2024-09-23 20:58:59'),(4223,'API_f3987d2246de803f936e2b9251e6cbcd','拍照一张','','cmii-uav-integration','/jouav/payload_cmd/take_picture','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-09-30 07:59:17'),(4224,'API_877fc06c2fc3425f2af6fd02b82e4ba5','开始/停止录像, 点击一次开始录像,再点击停止录像','','cmii-uav-integration','/jouav/payload_cmd/record_switch','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-09-30 07:59:16'),(4225,'API_129b307229dd4f6e286b5099163a54c7','自动对焦','','cmii-uav-integration','/jouav/payload_cmd/auto_focus','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-09-30 07:59:18'),(4226,'API_c0110596a15650a307a73a4d828e2f88','吊舱控制','','cmii-uav-integration','/jouav/payload_cmd/gimbal_control','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-09-30 07:59:18'),(4227,'API_4b6b558282c05ee128c20d1e77ebd661','更改吊舱显示模式','','cmii-uav-integration','/jouav/payload_cmd/mode_change','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-09-30 07:59:18'),(4228,'API_f326512a52b0e684d18bcc8bd538a2f7','吊舱收起或打开','','cmii-uav-integration','/jouav/payload_cmd/pod_switch','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-09-30 07:59:17'),(4229,'API_2733852365eedfb8d468d83953c05fd3','焦距缩放','','cmii-uav-integration','/jouav/payload_cmd/camera_zoom','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-09-30 07:59:17'),(4230,'API_124678d9545673b7411e35eb52c67b00','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/taget','GET',_binary '\0',_binary '\0','2024-03-08 07:26:27',1,'2024-03-08 07:41:01'),(4231,'API_ec6b0e75e9b26a06646df1ab187f4c0d','初始化MongoDB','','cmii-uav-device','/api/uav/utmiss/initCollection','POST',_binary '\0',_binary '\0','2024-03-21 06:33:12',1,'2024-10-11 01:36:51'),(4232,'API_c4d0f27938182a20c3a2adfd99552a62','应急通信模拟-获取全量作业数据','应急通信模拟-获取全量作业数据','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getJobAllData','GET',_binary '\0',_binary '\0','2024-03-21 09:48:11',1,'2024-10-15 02:14:12'),(4233,'API_d966e5336c84a28f264b8f64baa821e7','应急通信模拟-提交目的地点','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/updateTargetLocation','POST',_binary '\0',_binary '\0','2024-03-21 09:48:11',1,'2024-10-15 02:14:15'),(4234,'API_088f01aefea800932a7ccc25fa68686f','应急通信模拟-获取作业详情','应急通信模拟-获取作业详情','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getJobDetailInfo','GET',_binary '\0',_binary '\0','2024-03-21 09:48:11',1,'2024-10-15 02:14:09'),(4235,'API_9b88a69515771bc9902459868823c7f4','应急通信模拟-结束作业','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/stopJob','POST',_binary '\0',_binary '\0','2024-03-21 09:48:14',1,'2024-10-15 02:14:09'),(4236,'API_75a5f56b03301e523ca879f633ff0f14','应急通信模拟-获取无人机初始化数据','应急通信模拟-获取无人机初始化数据','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getPlaneCurrentLocation','GET',_binary '\0',_binary '\0','2024-03-21 09:48:15',1,'2024-10-15 02:14:20'),(4237,'API_bb3304cb3dd52fe78bccccf30215e8dc','应急通信模拟-获取无人机、基站、天线数据','应急通信模拟-获取无人机、基站、天线数据','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getPlaneAndStationInfo','GET',_binary '\0',_binary '\0','2024-03-21 09:48:17',1,'2024-10-15 02:14:13'),(4238,'API_bc0b516347d8831407289af33a01b28f','应急通信模拟-开始作业','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/startJob','POST',_binary '\0',_binary '\0','2024-03-21 09:48:17',1,'2024-10-15 02:14:21'),(4239,'API_881e000008149cae97016efd5d7c20a0','应急通信模拟-更新无人机、基站、天线数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/updatePlaneAndStation','POST',_binary '\0',_binary '\0','2024-03-21 09:48:18',1,'2024-10-15 02:14:17'),(4240,'API_7cd0251624bad2a0a546974f2ca0b4d4','工具-导出无人机RTK数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/exportRTKData','GET',_binary '\0',_binary '\0','2024-03-22 09:05:23',1,'2024-10-15 02:14:20'),(4241,'API_8b9b2b6eb2d43e520989fd535ca01388','工具-导出通感数据,一个文件一个文件导出','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/exportRadarData','GET',_binary '\0',_binary '\0','2024-03-22 09:05:24',1,'2024-10-15 02:14:17'),(4242,'API_11738cfc6e93f97974424048f1508c72','工具-修正统计基站编码的数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/correctStatistic','POST',_binary '\0',_binary '\0','2024-03-22 09:05:24',1,'2024-10-15 02:14:20'),(4243,'API_37adf5725c948d4ab30b10f56c7a7cf1','工具-修复基站朝向,将基站的(朝向角+水平扇形的一半)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/correctTtsToward','POST',_binary '\0',_binary '\0','2024-03-22 09:05:25',1,'2024-10-15 02:14:09'),(4244,'API_bdeceb08900528bc38a76c57fe30ad5d','多站的探测累计统计','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/statistic','GET',_binary '\0',_binary '\0','2024-03-22 09:05:26',1,'2024-10-15 02:14:16'),(4245,'API_15471986c9e235aefe9d92490e090b29','工具-修复基站下倾角与垂直扇形角度','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fillDefaultValue','POST',_binary '\0',_binary '\0','2024-03-22 09:05:26',1,'2024-10-15 02:14:12'),(4246,'API_0ba28ffc32968db74d461c4b23b2f1a0','工具-取消修复基站朝向,将基站的(朝向角-水平扇形的一半)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/unCorrectTtsToward','POST',_binary '\0',_binary '\0','2024-03-22 09:05:26',1,'2024-10-15 02:14:16'),(4247,'API_966387eb5260e0701d8ff1e3de9b0899','DEBUG_V查询HUB探针网口速率','','cmii-uav-multilink','/multiLinkRedundancy/getHub5GObj','GET',_binary '\0',_binary '\0','2024-03-26 08:28:29',1,'2024-09-09 09:07:47'),(4248,'API_b39050547effdfb51a240cf7ba701dff','DEBUG_V查询PC或APP探针网口速率','','cmii-uav-multilink','/multiLinkRedundancy/getAgentInfoObj','GET',_binary '\0',_binary '\0','2024-03-26 08:28:29',1,'2024-09-09 09:07:47'),(4249,'API_5124b12d0498e52ae242d63d97f54177','DEBUG_V查询高级ping结果map','','cmii-uav-multilink','/multiLinkRedundancy/getGaojiPingResultMap','GET',_binary '\0',_binary '\0','2024-03-26 08:28:29',1,'2024-09-09 09:07:47'),(4250,'API_e0ee5410f391fa3f1338b1eadda9f7a7','DEBUG_设置无人机上线','','cmii-uav-multilink','/multiLinkRedundancy/debugSetOnlinePlane','POST',_binary '\0',_binary '\0','2024-03-26 08:28:30',1,'2024-09-09 09:07:47'),(4251,'API_002efb5279972803f12a46adafbdacbf','刷新数据字典参数','','cmii-admin-data','/api/admin/model/plane/initParameter','POST',_binary '\0',_binary '\0','2024-03-29 12:05:27',1,'2024-09-09 09:15:07'),(4252,'API_3d5c11cc49cd8b34576282884e10c6ea','查询Redis有效数据','','cmii-uav-device','/api/uav/plane/getValDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:41',1,'2024-10-11 01:36:50'),(4253,'API_09780129288cd9e0bc64f806b9694a3f','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavListByHngList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:41',1,'2024-10-11 01:36:50'),(4254,'API_16f0a4bfbc2241eb670dd0a35540243f','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngListByUavList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:43',1,'2024-10-11 01:36:43'),(4255,'API_2ff17773c003f845c871fdad610e03d8','查询Redis数据','','cmii-uav-device','/api/uav/plane/getDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:45',1,'2024-10-11 01:36:43'),(4256,'API_be8ebf40864311643c7483db2656cb2c','根据开始结束时间,查询通感的列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/detect_data','GET',_binary '\0',_binary '\0','2024-04-07 12:34:28',1,'2024-10-15 02:14:22'),(4257,'API_e1c393771637ca10d03f19e339a78d57','根据雷达id,识别飞行器id,与飞行orderid进行精度计算','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/accuracy_calculate','POST',_binary '\0',_binary '\0','2024-04-07 12:34:29',1,'2024-10-15 02:14:16'),(4258,'API_776087189d7547a0a124cd55bf58cff3','根据飞行记录编号获取无人机RTK的数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/rtk_data/{orderId}','GET',_binary '\0',_binary '\0','2024-04-07 12:34:30',1,'2024-10-15 02:14:16'),(4259,'API_08de4c999590b343826bbb61c8bcfaa7','给飞机发送航线起飞,包含一条用于展示的航线id','','cmii-uav-surveillance','/surveillance/uav_command/take_off_with_two_line','POST',_binary '\0',_binary '\0','2024-04-09 13:54:12',1,'2024-09-23 20:58:57'),(4260,'API_08228ea178bfebf3365e176887cf8c70','降落for场景模拟','','cmii-uav-surveillance','/surveillance/uav_command/landingForSimulator','POST',_binary '\0',_binary '\0','2024-04-09 13:54:14',1,'2024-09-23 20:58:59'),(4261,'API_4b7c57eab5434dfc0e1d6e108618ff66','返航for模拟场景','','cmii-uav-surveillance','/surveillance/uav_command/go_homeforSimulator','POST',_binary '\0',_binary '\0','2024-04-09 13:54:14',1,'2024-09-23 20:58:57'),(4262,'API_28916f5fc274799c502f01a77ee9aa15','查询公司范围下的在线设备信息,供飞行监视使用','','cmii-uav-device','/api/device/surveillance/query_online_device_info','GET',_binary '\0',_binary '\0','2024-04-09 13:55:53',1,'2024-10-11 01:36:51'),(4263,'API_b64b3d79d799159c4df8323f15c0cb00','查询公司/机构范围的复亚的在线且支持备降的机库列表','','cmii-uav-device','/api/uav/hangar/OnlineAndAltLandFoiaHgrList','GET',_binary '\0',_binary '\0','2024-04-09 13:55:54',1,'2024-10-11 01:36:42'),(4264,'API_3230ab02db9d2111c46da05150930455','创建故事','','cmii-uav-mission','/api/uav/mission/story_info/data','POST',_binary '\0',_binary '\0','2024-04-09 13:58:42',1,'2024-10-10 08:57:05'),(4265,'API_2e1e79cbd50615a40c02c872794f4100','按条件分页查询故事列表','','cmii-uav-mission','/api/uav/mission/story_info_list/page_list_with_filters','POST',_binary '\0',_binary '\0','2024-04-09 13:58:42',1,'2024-10-10 08:57:04'),(4266,'API_9726a59357131b9fe6fa810b6a444038','更新故事','','cmii-uav-mission','/api/uav/mission/story_info/data','PUT',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-10-10 08:57:15'),(4267,'API_92a05d29ebe9b1cadf6759ad5a2ea3eb','删除故事','','cmii-uav-mission','/api/uav/mission/story_info/data','DELETE',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-10-10 08:57:02'),(4268,'API_7eb245d2667247dde473584cbac33453','停止故事','','cmii-uav-mission','/api/uav/mission/story_info/stopping/{id}','GET',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-10-10 08:57:13'),(4269,'API_869e67c2f8dbd3c2eed622bea15899ae','开始故事','','cmii-uav-mission','/api/uav/mission/story_info/starting/{id}','GET',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-10-10 08:57:02'),(4270,'API_365437ad1e535fbd972e343708089b78','查询故事详情','','cmii-uav-mission','/api/uav/mission/story_info/data/{id}','GET',_binary '\0',_binary '\0','2024-04-09 13:58:45',1,'2024-10-10 08:57:08'),(4271,'API_8aef770ed28605488822773e37086420','引导光电设备','引导光电设备','cmii-uav-industrial-portfolio','/photoelectric/camera/guideCamera','POST',_binary '\0',_binary '\0','2024-04-09 14:01:11',1,'2024-10-15 02:14:09'),(4272,'API_fc10739d5affcff2b5af275d7fbb4d06','停止引导光电设备','停止引导光电设备','cmii-uav-industrial-portfolio','/photoelectric/camera/stopGuideCamera','POST',_binary '\0',_binary '\0','2024-04-09 14:01:13',1,'2024-10-15 02:14:15'),(4273,'API_109a10252b0da3c7e90c35639e422cce','大疆机场查询该token是否有虚拟摇杆权限','','cmii-uav-surveillance','/surveillance/querySessionVS','GET',_binary '\0',_binary '\0','2024-04-10 08:58:02',1,'2024-09-23 20:59:01'),(4274,'API_8026c7c050a65b7e32073ee1008ec602','喊话器控制','','cmii-uav-integration','/dji_cloud/speaker_control/speaker','POST',_binary '\0',_binary '\0','2024-04-17 01:00:00',1,'2024-04-25 09:02:27'),(4275,'API_06d53f31bed1b31fc7335249f26abaa6','查询当前session是否含有无人机的虚拟摇杆权限','','cmii-uav-surveillance','/surveillance/uav_command/get_cloud_api_vs','GET',_binary '\0',_binary '\0','2024-04-17 01:00:28',1,'2024-09-23 20:58:57'),(4276,'API_698ecb71baa6cc4abda38a62740fdd40','机库无人机退出指令飞行','','cmii-uav-integration','/dji_cloud/wayline/stop_VS','POST',_binary '\0',_binary '\0','2024-04-17 01:54:35',1,'2024-09-30 07:59:17'),(4277,'API_4658aa1e69c311f999d3f92b77bdbcd1','机库无人机进入指令飞行','','cmii-uav-integration','/dji_cloud/wayline/start_VS','POST',_binary '\0',_binary '\0','2024-04-17 01:54:35',1,'2024-09-30 07:59:17'),(4278,'API_dc2fce2a64974d6e98372f67854904a3','机库备降设置','','cmii-uav-surveillance','/hangarSurveillance/altLandingHangar','POST',_binary '\0',_binary '\0','2024-04-17 09:24:27',1,'2024-09-23 20:59:00'),(4279,'API_ee7828d438cfec6d4996edaba7060a2e','开放-获取基站的实时数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fetchRadarDetectionRealtimeData','GET',_binary '\0',_binary '\0','2024-04-18 14:27:50',1,'2024-10-15 02:14:15'),(4280,'API_2899748ea4496aa2aca68d6bf4656070','开放-获取基站的历史数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fetchRadarDetectionHistoryData','POST',_binary '\0',_binary '\0','2024-04-18 14:27:53',1,'2024-10-15 02:14:12'),(4281,'API_69af176eb55fc0a08e615e60fa73ec52','getImageCode','','cmii-uav-user','/api/uav/solution/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-10-11 15:37:17'),(4282,'API_7e3474dee092054823eae022bb37e29e','delete','','cmii-uav-user','/api/uav/dynamic/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-10-11 15:37:18'),(4283,'API_1e24f1367b80430ff750232e0eeaa54d','编辑名单','','cmii-uav-user','/api/uav/dynamic/editPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-10-11 15:37:12'),(4284,'API_ec6a5a95ea95fdb5b3233863bc1fdb0f','编辑一个动态','','cmii-uav-user','/api/uav/dynamic/edit','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-10-11 15:37:18'),(4285,'API_13466d8529da471067a0232d9d89981a','查询解决方案类型','','cmii-uav-user','/api/uav/solution/querySolutionType','POST',_binary '\0',_binary '\0','2024-04-28 04:03:56',1,'2024-10-11 15:37:09'),(4286,'API_acd6d406e0edbc0cc9c465733b69df1c','getImageCode','','cmii-uav-user','/api/uav/feedback/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-10-11 15:37:20'),(4287,'API_4ff7fa2d154f49e153cfccf5e8f13c7c','获取用户分组名单','','cmii-uav-user','/api/uav/dynamic/queryAll','GET',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-10-11 15:37:19'),(4288,'API_9320e1d2f70024f78547bf0b192c617f','sendRegisUavTelephoneVerifyCode','','cmii-uav-user','/api/uav/solution/sendRegisUavTelephone','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:14'),(4289,'API_f91c522e105782518efce2e01e15f2e3','删除','','cmii-uav-user','/api/uav/feedback/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:13'),(4290,'API_95eb3ded1a73e88c62d288a838c93c76','添加一个问题反馈','','cmii-uav-user','/api/uav/solution/addFeed','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:14'),(4291,'API_0c87c68fc66fe21230208c1ad9c245b7','删除','','cmii-uav-user','/api/uav/solution/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:17'),(4292,'API_9e8ed6f7c0e93abe33fab436e802b237','deletePeople','','cmii-uav-user','/api/uav/dynamic/deletePeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:14'),(4293,'API_a3e9ad3e2aa0f019fe433894e77cde79','添加一个动态','','cmii-uav-user','/api/uav/dynamic/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:17'),(4294,'API_a63978af4c0d155fdda5b50f9452e571','添加一个解决方案申请','','cmii-uav-user','/api/uav/solution/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-10-11 15:37:14'),(4295,'API_3d91293b3df38da86d1a8e52dbb49faa','查询所有动态','','cmii-uav-user','/api/uav/dynamic/queryAllDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:14'),(4296,'API_c2885c313cdbfc1912b18932b7225c66','查询解决方案','','cmii-uav-user','/api/uav/solution/querySolutions','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:19'),(4297,'API_78cae55bde1a1a2af55c6aecc16f73a3','查询名单','','cmii-uav-user','/api/uav/dynamic/queryPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-10-11 15:37:16'),(4298,'API_e6a0e7a0b59b2c5bb33cf7879849b1e8','查看信息','','cmii-uav-user','/api/uav/feedback/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-10-11 15:37:14'),(4299,'API_710dbf2924a9dec5a4c0dd445a823383','查询动态','','cmii-uav-user','/api/uav/dynamic/queryDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-10-11 15:37:18'),(4300,'API_d5a8dc07e5ad3b681f3b9e85e50b062c','导出查询结果','','cmii-uav-user','/api/uav/solution/export','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-10-11 15:37:20'),(4301,'API_2484faa0c56d9c5a0ba75d12f5cf4438','checkExist','','cmii-uav-user','/api/uav/dynamic/checkExist','GET',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-10-11 15:37:19'),(4302,'API_b409c11776d8f135f796fc601af292de','查看详情','','cmii-uav-user','/api/uav/dynamic/detail','GET',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-10-11 15:37:12'),(4303,'API_6567297316be22439a299a6dba48e364','查看信息','','cmii-uav-user','/api/uav/solution/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:02',1,'2024-10-11 15:37:20'),(4304,'API_a7e9a20384c42f94be0bb9f91276d24a','模拟接受设备数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/mockReceiveData','POST',_binary '\0',_binary '\0','2024-04-28 14:41:32',1,'2024-10-15 02:14:17'),(4305,'API_1802f8c701c19aa7250ed2d45b7beccd','工具-导出公司范围所有基站的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/exportDetectionReplayByTime','GET',_binary '\0',_binary '\0','2024-04-28 14:41:32',1,'2024-10-15 02:14:14'),(4306,'API_8025c7b8f010186b55212243c9c31f70','查询低空探测配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/heSendStatus','GET',_binary '\0',_binary '\0','2024-04-28 14:41:34',1,'2024-04-28 14:42:48'),(4307,'API_7dace8c0777423361e75527ded438105','模拟接受设备状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/mockReceiveStatus','POST',_binary '\0',_binary '\0','2024-04-28 14:41:35',1,'2024-10-15 02:14:20'),(4308,'API_75ead36c82ed23f061137694e7175ebb','测试-发送TCP基站状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/testSendTcpStatus','POST',_binary '\0',_binary '\0','2024-04-28 14:41:35',1,'2024-10-15 02:14:18'),(4309,'API_3e9290fc191dd0d8fd6716b1eebba608','开始云台扫描','','cmii-uav-surveillance','/surveillance/payload/camera_scan','POST',_binary '\0',_binary '\0','2024-04-29 04:18:24',1,'2024-09-23 20:59:01'),(4310,'API_2036c7ce356e124714544b7bfd4f8dc7','停止云台扫描','','cmii-uav-surveillance','/surveillance/payload/camera_scan_stop','POST',_binary '\0',_binary '\0','2024-04-29 04:18:26',1,'2024-09-23 20:58:58'),(4311,'API_b8fd2bea256e80851258e921d6ffb632','更新设备状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/updateDeviceStatus','GET',_binary '\0',_binary '\0','2024-04-29 09:37:30',1,'2024-10-15 02:14:13'),(4312,'API_b1d4ffc314c70d115ea6279e4683d2e6','喊话器控制','','cmii-uav-integration','/dji_cloud/payload_control/speaker','POST',_binary '\0',_binary '\0','2024-04-29 11:21:00',1,'2024-09-30 07:59:17'),(4313,'API_e0d792fed418b97a1c5bba6e1d835760','关闭干扰控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/interfere/close','POST',_binary '\0',_binary '\0','2024-05-10 11:55:42',1,'2024-05-15 14:02:44'),(4314,'API_b8429c7ca75048d2788d51c0ebf1bad5','目标丢失上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/lostTarget','POST',_binary '\0',_binary '\0','2024-05-10 11:55:42',1,'2024-10-15 02:14:22'),(4315,'API_ef58c59a808b6942164cf83cea89c23f','目标发现上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/discoveryTarget','POST',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-10-15 02:14:20'),(4316,'API_2492f3074262c2e2dc25f49fd9eb4f45','查询探测目标列表信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/detectionObjectInfoList','GET',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-06-19 02:47:47'),(4317,'API_9c39b3fa817577d5d131e0355fb18068','启停雷达探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/radar/switch','POST',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-10-15 02:14:18'),(4318,'API_6862bd406a0993f0a043b2e8f15beb6c','查询所有设备联动关系','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/allDeviceRelations','GET',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-05-13 01:39:41'),(4319,'API_d07dabb16bc7cf3b8ba81bbb4f21e16d','航迹目标上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/targetTrack','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-10-15 02:14:13'),(4320,'API_dc247624eeea5959f0dbf83af5e09fa7','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-10-15 02:14:10'),(4321,'API_9b45a0596196dc64d52d2e072100e5d0','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/jam/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-10-15 02:14:13'),(4322,'API_65b4a53e100d08b2c8b8cea078354dd7','开启干扰控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/interfere/open','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-05-15 14:02:45'),(4323,'API_65788cc51046fb9410f4483811659029','雷达设备状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/deviceState','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-10-15 02:14:12'),(4324,'API_66f5ba444e37decb61fdb65b4e704df2','查询所有设备列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/allDeviceList','GET',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-05-13 01:39:42'),(4325,'API_ae8899fb07d43cd275a49c7560133a9f','启停无线电探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/radio/switch','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-10-15 02:14:19'),(4326,'API_9c8fc7a12a3b63752d06409bc734d7f8','DEBUG_设置控制面_数据面每秒每客户端最大收包数量','','cmii-uav-industrial-portfolio','/senseAf/setMaxPacketsPerSecondPerClient','GET',_binary '\0',_binary '\0','2024-05-11 04:27:36',1,'2024-10-15 02:14:17'),(4327,'API_8c010e90ba12ffeee667225374de0195','DEBUG_获取所有的SF信息','','cmii-uav-industrial-portfolio','/senseAf/dbgGetAllSfInfo','GET',_binary '\0',_binary '\0','2024-05-11 04:27:36',1,'2024-10-15 02:14:20'),(4328,'API_75db171e1c409644825ac8e5ca156168','DEBUG_查询控制面_数据面每秒每客户端最大收包数量','','cmii-uav-industrial-portfolio','/senseAf/getMaxPacketsPerSecondPerClient','GET',_binary '\0',_binary '\0','2024-05-11 04:27:37',1,'2024-10-15 02:14:22'),(4329,'API_d3939e983d782220db086d24a1a71dfb','通感数据测试','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/senseDataTest','POST',_binary '\0',_binary '\0','2024-05-11 04:27:37',1,'2024-10-15 02:14:16'),(4330,'API_080bd8162c9edd9e373ffc7f9166f89e','发送保活消息','','cmii-uav-industrial-portfolio','/senseAf/SendKeepAliveMsg','POST',_binary '\0',_binary '\0','2024-05-11 04:27:38',1,'2024-10-15 02:14:17'),(4331,'API_5891a3d338f9677125e19649f2649540','感知能力同步请求','','cmii-uav-industrial-portfolio','/senseAf/SenseCapabilitySynReq','POST',_binary '\0',_binary '\0','2024-05-11 04:27:38',1,'2024-10-15 02:14:09'),(4332,'API_ef3e9f40d96465e67358aaef46176554','查询之前启动过的SF感知任务','','cmii-uav-industrial-portfolio','/senseAf/queryStartedSenseTask','GET',_binary '\0',_binary '\0','2024-05-11 04:27:38',1,'2024-10-15 02:14:11'),(4333,'API_ed2cfcc01cccd7237f1eae1406a8e793','停止SF的感知任务','','cmii-uav-industrial-portfolio','/senseAf/stopSenseTask','POST',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-10-15 02:14:21'),(4334,'API_eb21e4c8487fd7f000090fd073f97e64','DEBUG_获取所有的TCP连接信息','','cmii-uav-industrial-portfolio','/senseAf/dbgGetAllTCPInfo','GET',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-10-15 02:14:11'),(4335,'API_cc111c6412fc6d35492eb05973a1bc98','获取SF的感知能力数据','','cmii-uav-industrial-portfolio','/senseAf/querySfCapability','GET',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-10-15 02:14:11'),(4336,'API_c15140dd7567de20bf253f75315e581b','启动SF的感知任务','','cmii-uav-industrial-portfolio','/senseAf/startSenseTask','POST',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-10-15 02:14:14'),(4337,'API_74eb33fc1f93f282a1ae697f46dbd71a','上报干扰设备指令下发的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/jam/cmd/response','POST',_binary '\0',_binary '\0','2024-05-13 10:31:24',1,'2024-10-15 02:14:11'),(4338,'API_3c183e1d7e54255a7cf2560954ad69bd','查询指定设备的联动关系','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/deviceRelations','POST',_binary '\0',_binary '\0','2024-05-13 10:31:25',1,'2024-10-15 02:14:14'),(4339,'API_67fe4763298c8da3b3e468d8fd57d960','按类型查询所有设备列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/deviceList','POST',_binary '\0',_binary '\0','2024-05-13 10:31:27',1,'2024-10-15 02:14:10'),(4340,'API_f25943302be9b0f4e093806dbcd802a8','上报雷达设备指令下发的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/cmd/response','POST',_binary '\0',_binary '\0','2024-05-13 10:31:27',1,'2024-10-15 02:14:11'),(4341,'API_62f8b0076b22cd19f2cd8bb0122ef577','上报无线电设备指令下发的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/cmd/response','POST',_binary '\0',_binary '\0','2024-05-13 10:31:28',1,'2024-10-15 02:14:11'),(4342,'API_77f289eb3bbc1763d820a9a5756d488d','基站感知数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/senseData5GA','POST',_binary '\0',_binary '\0','2024-05-13 15:20:09',1,'2024-10-15 02:14:09'),(4343,'API_4a3450e748d23688569cea87fc96b3cb','addCustomizedCase','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/添加自定义警情点','POST',_binary '\0',_binary '\0','2024-05-14 05:47:54',1,'2024-05-14 05:49:23'),(4344,'API_278c5b31cd8a6ead2e36ef8ec14bd984','添加自定义警情点','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/addCustomizedCase','POST',_binary '\0',_binary '\0','2024-05-14 05:55:21',1,'2024-10-15 02:14:23'),(4345,'API_f83cd3854985f8e46bef7c14d59f41b9','开启/关闭干扰控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/interfere/switch','POST',_binary '\0',_binary '\0','2024-05-16 10:13:57',1,'2024-10-15 02:14:22'),(4346,'API_a413830ae83e708fdfd40dd4283eb6e4','DEBUG_踢掉某个SF','','cmii-uav-industrial-portfolio','/senseAf/dbgKickOffSf','GET',_binary '\0',_binary '\0','2024-05-20 09:22:30',1,'2024-10-15 02:14:18'),(4347,'API_9ab25681789d727ed2bdb55525ee27f9','DEBUG_踢掉某个TCP连接','','cmii-uav-industrial-portfolio','/senseAf/dbgKickOffTcpConn','GET',_binary '\0',_binary '\0','2024-05-20 09:22:30',1,'2024-10-15 02:14:17'),(4348,'API_9efa6d3d0926596d33943d44d99ba0a9','DEBUG_查询TCP收包的速率','','cmii-uav-industrial-portfolio','/senseAf/getTcpTrafficRate','GET',_binary '\0',_binary '\0','2024-05-20 09:22:30',1,'2024-10-15 02:14:17'),(4349,'API_ab5f493fd8416aec859a88a92874c8c8','切换值守模式','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/guardMode','POST',_binary '\0',_binary '\0','2024-05-20 09:22:31',1,'2024-10-15 02:14:10'),(4350,'API_a54681c55a6ae3f4fd1eda504d0bc895','开放-获取基站列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fetchRadars','POST',_binary '\0',_binary '\0','2024-05-21 12:41:17',1,'2024-10-15 02:14:20'),(4351,'API_cd5e1f58dfd3e872a44f7306a882b049','DEBUG_查询UDP收包的速率','','cmii-uav-industrial-portfolio','/senseAf/getUdpTrafficRate','GET',_binary '\0',_binary '\0','2024-05-21 12:41:22',1,'2024-10-15 02:14:22'),(4352,'API_bef05d4b5467bb2ab2c827ddfc8a4c68','查询值守模式:0-人工值守,1-无人值守','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/guardMode','GET',_binary '\0',_binary '\0','2024-06-03 09:32:14',1,'2024-10-15 02:14:18'),(4353,'API_94f51e24e55942e31f12edc8f0c4393a','查询用户设备配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/userDevConfig','GET',_binary '\0',_binary '\0','2024-06-03 09:32:14',1,'2024-10-15 02:14:16'),(4354,'API_1510a74205d65e2d8599de7ce3e12d75','checkTimeForAlarm','','cmii-uav-mission','/api/uav/mission/surveillance/checkTimeForAlarm','GET',_binary '\0',_binary '\0','2024-06-05 08:54:38',1,'2024-10-10 08:57:08'),(4355,'API_12088a2d36cb7991f6ba7a741f5d86d4','模拟多站探测数据-excel','','cmii-uav-mqtthandler','/mockRadarDatasFromExcel','POST',_binary '\0',_binary '\0','2024-06-10 07:17:53',1,'2024-09-25 08:48:47'),(4356,'API_a2f7bbb90b7946816124e2127d058b3c','雷达转台设备状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/turntable','POST',_binary '\0',_binary '\0','2024-06-11 10:29:39',1,'2024-10-15 02:14:21'),(4357,'API_ee9cec74447b20c49838f7251cbf8c16','获取周界入侵范围接口','','cmii-uav-mission','/api/uav/mission/surveillance/getDetectionRegion','GET',_binary '\0',_binary '\0','2024-06-14 07:14:05',1,'2024-10-10 08:57:06'),(4358,'API_c82870fdb46cda9f7f5e444421099714','屏幕指点 云台移动,比例按照的是广角下(api文档)','','cmii-uav-integration','/dji_cloud/payload_control/camera_aim_zoom','POST',_binary '\0',_binary '\0','2024-06-18 04:58:01',1,'2024-09-30 07:59:16'),(4359,'API_66f2324cdc37bc8fc9baa85ad6cc6973','getUsedQuotaNumByType','','cmii-uav-industrial-portfolio','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2024-06-19 02:46:26',1,'2024-10-15 02:14:18'),(4360,'API_5d3b08e0f2e048f7a8ba783fd90aeb4a','发送探测目标信息(用于测试)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/detectionObjectInfo','POST',_binary '\0',_binary '\0','2024-06-19 02:46:26',1,'2024-08-22 09:36:05'),(4361,'API_fbd4090268690adcfeec312786c139e5','存储占用统计修复','存储占用统计修复','cmii-uav-material-warehouse','/aggregate/storage/usageStatisticsRepair','POST',_binary '\0',_binary '\0','2024-06-26 09:56:34',1,'2024-10-11 08:57:37'),(4362,'API_c93d3ab50a03e3d016b814d18815dfbd','公司存储占用统计','公司存储占用统计','cmii-uav-material-warehouse','/aggregate/storage/usageStatistics','GET',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-10-11 08:57:36'),(4363,'API_1941938d21304a700f3eb1a715919823','文件使用确认V2.HeaderContextHolder需有companyId,userId,platform(EPlatformType);List最大5000','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/fileUseConfirmV2','POST',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-10-11 08:57:36'),(4364,'API_e0fbfcf72634db20501b71de3f97a5fa','删除类型','删除类型','cmii-uav-material-warehouse','/baseUploadType/delete','POST',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-10-11 08:57:36'),(4365,'API_2b13ab87305bf7a16b5c66f491a652da','存储空间管理批量删除【内部接口】,通过文件id','存储空间管理批量删除【内部接口】,通过文件id','cmii-uav-material-warehouse','/api/v1/warehouse/internal/storage/batchDelete','POST',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-10-11 08:57:34'),(4366,'API_7c9231b820d866575e34414c6a5440af','列举类型','列举类型','cmii-uav-material-warehouse','/baseUploadType/list','GET',_binary '\0',_binary '\0','2024-06-26 09:56:36',1,'2024-10-11 08:57:36'),(4367,'API_2375efceaa759af847d486e1b401fac7','存储占用统计初始化','存储占用统计初始化','cmii-uav-material-warehouse','/aggregate/storage/usageStatisticsInitialize','POST',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-10-11 08:57:34'),(4368,'API_6dfcd7737bce88ba755ed87a6e14c30a','通过文件id下载文件','通过文件id下载文件,type:0(原图),1(缩略图),2(临时文件)','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileByToken/{fileId}/{type}/{neverMore}/{kael}/{spectre},/api/v1/warehouse/project/downloadFileByToken/{fileId}/{type}/{downloadType}/{neverMore}/{kael}/{spectre}','GET',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-10-11 08:57:34'),(4369,'API_46635607504c0b93efca9a49ec77dd68','存储占用统计删除','存储占用统计删除','cmii-uav-material-warehouse','/aggregate/storage/deleteById','POST',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-10-11 08:57:35'),(4370,'API_70e6eb275d8a04b63b33c194669d8a2a','创建类型','创建类型','cmii-uav-material-warehouse','/baseUploadType/add','POST',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-10-11 08:57:35'),(4371,'API_9c09edae596e40daa853b299f7104072','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-07-01 07:08:35',1,'2024-10-15 02:14:10'),(4372,'API_5eb844b22f4b91c19b1710cfb3dc94e1','目标追踪','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/photoelectricity/trackTarget','POST',_binary '\0',_binary '\0','2024-07-01 07:08:37',1,'2024-10-15 02:14:20'),(4373,'API_2e8e5bb280ba8b72cca910a3e707170b','停止目标追踪','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/photoelectricity/trackTermination','POST',_binary '\0',_binary '\0','2024-07-01 07:08:37',1,'2024-10-15 02:14:20'),(4374,'API_08094a34e68b1eef32fcd8255e029bc2','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-10-15 02:14:11'),(4375,'API_c6bc408c0e942cff796692109de33a83','上报诱骗设备启动指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/open/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-10-15 02:14:17'),(4376,'API_df572029de188fc38e5b5a876cb3058c','上报诱骗设备模式切换指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/mode/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-10-15 02:14:17'),(4377,'API_4208364a669594084e745f5b3ce87692','上报光电设备目标追踪指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/cmd/trackTarget/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-10-15 02:14:11'),(4378,'API_a0530723d769822793de3252a15be190','上报光电设备目标追踪停止指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/cmd/trackTermination/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:40',1,'2024-10-15 02:14:16'),(4379,'API_c4b12379e5ec702d4cc047f967ba4eb6','开启/关闭诱骗控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/induce/switch','POST',_binary '\0',_binary '\0','2024-07-01 07:08:40',1,'2024-10-15 02:14:15'),(4380,'API_a63a591899bdf9b002defe4ee7ad287d','上报诱骗设备关闭指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/close/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:43',1,'2024-10-15 02:14:09'),(4381,'API_7886820239dc42822e1231b4d77b151e','通过查询所有作业回传里面的媒体信息','','cmii-uav-mission','/picture/query_media_objects','POST',_binary '\0',_binary '\0','2024-07-01 07:15:47',1,'2024-10-10 08:57:12'),(4382,'API_27d2bd25d24652134d4be69787f10632','停止跟踪','','cmii-uav-mqtthandler','/uav_fly_command/stop_follow','POST',_binary '\0',_binary '\0','2024-07-04 09:04:24',1,'2024-09-25 08:48:47'),(4383,'API_b3b85cbcdb2a416435284864b822923f','开始跟踪','','cmii-uav-mqtthandler','/uav_fly_command/start_follow','POST',_binary '\0',_binary '\0','2024-07-04 09:04:25',1,'2024-09-25 08:48:46'),(4384,'API_120986a97251de232062743fbd2b9953','跟新跟踪','','cmii-uav-mqtthandler','/uav_fly_command/update_follow','POST',_binary '\0',_binary '\0','2024-07-04 09:04:25',1,'2024-09-25 08:48:46'),(4385,'API_7c3b9e7fa6e6fc3d9259ea9b01a15831','停止跟踪','','cmii-uav-surveillance','/surveillance/uav_command/stopFollow','POST',_binary '\0',_binary '\0','2024-07-04 09:27:51',1,'2024-09-23 20:59:00'),(4386,'API_387df2d183b47e6832fd676e9ef0ab13','开始跟踪','','cmii-uav-surveillance','/surveillance/uav_command/startFollow','POST',_binary '\0',_binary '\0','2024-07-04 09:27:52',1,'2024-09-23 20:59:00'),(4387,'API_c939c6015fd8c0437a828e1db0f5e7a8','更新跟踪','','cmii-uav-surveillance','/surveillance/uav_command/updateFollow','POST',_binary '\0',_binary '\0','2024-07-04 09:27:54',1,'2024-09-23 20:58:57'),(4388,'API_0ec400e8a7d35aa8ef0f4aafb6613e8a','导入光电摄像头','导入光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/importCameras','POST',_binary '\0',_binary '\0','2024-07-08 07:34:02',1,'2024-10-15 02:14:15'),(4389,'API_d907a5e34ec45f206cf744faad53d827','下载光电摄像头导入模板','下载光电摄像头导入模板','cmii-uav-industrial-portfolio','/photoelectric/camera/downloadCameraTemplate','GET',_binary '\0',_binary '\0','2024-07-08 07:34:02',1,'2024-10-15 02:14:12'),(4390,'API_5e4e1b7451169c59c0e74ced9825ac5b','分页查询光电摄像头','分页查询光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/queryPage','POST',_binary '\0',_binary '\0','2024-07-08 07:34:03',1,'2024-10-15 02:14:19'),(4391,'API_8829f78cbb19cfc094117e59632922b5','查询光电摄像头详情','查询光电摄像头详情','cmii-uav-industrial-portfolio','/photoelectric/camera/queryDetail','POST',_binary '\0',_binary '\0','2024-07-08 07:34:06',1,'2024-10-15 02:14:09'),(4392,'API_4601785c5dedc833ecd2e2396f7a6042','导出光电摄像头','导出光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/exportCameras','POST',_binary '\0',_binary '\0','2024-07-08 07:34:06',1,'2024-10-15 02:14:10'),(4393,'API_62366cfa0a5a5938351dd885247e08be','批量删除光电摄像头','删除光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/deleteCameras','POST',_binary '\0',_binary '\0','2024-07-08 07:34:07',1,'2024-10-15 02:14:14'),(4394,'API_86002a50bb6e7e3119993392f83c8685','校验兴趣点类型是否重复','校验兴趣点类型是否重复','cmii-uav-gis-server','/poi/checkTypeExist','GET',_binary '\0',_binary '\0','2024-07-10 01:50:59',1,'2024-09-09 09:17:15'),(4395,'API_eb9ba157a5e057e01fa9a55e715068e1','上报干扰设备模式指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/jam/mode/response','POST',_binary '\0',_binary '\0','2024-07-12 07:37:59',1,'2024-10-15 02:14:21'),(4396,'API_9c36819beb2b811da6fcbbbd52b9e30d','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/cam/queryCamCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:42',1,'2024-10-11 01:36:54'),(4397,'API_9417f3f0f1f8561c3cace109b462dd5d','是否存储批量修改','','cmii-uav-device','/api/uav/load/cam/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:43',1,'2024-10-11 01:36:42'),(4398,'API_628a811f079baa456196dbab75ea5e4d','模糊查询本公司机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHngCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:43',1,'2024-10-11 01:36:49'),(4399,'API_1faf25df1faabd41f19f26738670a3cf','模糊查询包括子公司的载荷名称列表','','cmii-uav-device','/api/uav/load/cam/queryCamName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:45',1,'2024-10-11 01:36:42'),(4400,'API_d99d1f966d6d75d2be4be65d7f13b88d','分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryHngPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:47',1,'2024-10-11 01:36:50'),(4401,'API_1f263ce73f00b6292804c0cda06ff4d9','是否存储批量修改','','cmii-uav-device','/api/uav/hangar/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:47',1,'2024-10-11 01:36:50'),(4402,'API_e8114a3b7c4b3a6d0dd766ea46c220a5','分页查询摄像头载荷信息','','cmii-uav-device','/api/uav/load/cam/queryCamPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:49',1,'2024-10-11 01:36:47'),(4403,'API_ef77b8da8ee48a98679033e3d78702a6','模糊查询本公司机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHngName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:51',1,'2024-10-11 01:36:46'),(4404,'API_20d6915b2a18307a2b6aa36899b050d2','存储空间管理-视频-删除/批量删除','','cmii-uav-gis-server','/gis/videoDelete','DELETE',_binary '\0',_binary '\0','2024-07-18 09:22:45',1,'2024-09-09 09:17:15'),(4405,'API_ab9f869bce31d9d46e04873bf6f4e6ed','存储空间管理-视频-列表查詢','','cmii-uav-gis-server','/gis/gisVideoStorageList','POST',_binary '\0',_binary '\0','2024-07-18 09:22:46',1,'2024-09-09 09:17:17'),(4406,'API_079ea2745628d50155622fffb6f2fc8c','存储空间管理-模型-删除/批量删除','','cmii-uav-gis-server','/gis/delete','DELETE',_binary '\0',_binary '\0','2024-07-18 09:22:46',1,'2024-09-09 09:17:15'),(4407,'API_a234549533461cfdc32aba27689b8fcd','存储空间管理-图片-删除/批量删除','','cmii-uav-gis-server','/gis/imageDelete','DELETE',_binary '\0',_binary '\0','2024-07-18 09:22:47',1,'2024-09-09 09:17:14'),(4408,'API_74de085500217ab973056b46a7d18cbe','存储空间管理-模型-列表查询','','cmii-uav-gis-server','/gis/gisStorageList','POST',_binary '\0',_binary '\0','2024-07-18 09:22:47',1,'2024-09-09 09:17:15'),(4409,'API_cb837b477245917ea04da5b1afa61138','存储空间管理-图片-列表查询','','cmii-uav-gis-server','/gis/gisImageStorageList','POST',_binary '\0',_binary '\0','2024-07-18 09:22:48',1,'2024-09-09 09:17:16'),(4410,'API_db57bd25938d601de682233d9cbcfe2e','告警回放-包含摄像头告警数据','','cmii-uav-industrial-portfolio','/photoelectric/alarm/queryAlarmByTime','POST',_binary '\0',_binary '\0','2024-07-18 09:22:49',1,'2024-10-15 02:14:22'),(4411,'API_beac7757a64a5dca77cfc02155970471','获取引导的摄像头','获取引导的摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/guidingCamera','GET',_binary '\0',_binary '\0','2024-07-18 09:22:50',1,'2024-10-15 02:14:19'),(4412,'API_d271e8ac37526681f779c06cd78db725','删除告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/delete','POST',_binary '\0',_binary '\0','2024-07-18 09:22:52',1,'2024-10-15 02:14:14'),(4413,'API_86276f7e39b46e5c8fd005642945673b','获取个人配置的设置参数','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/get_configs','POST',_binary '\0',_binary '\0','2024-07-18 09:22:53',1,'2024-10-15 02:14:22'),(4414,'API_d9ff093b83f1e7a86075b96c2b879a89','保存目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/save_configs','POST',_binary '\0',_binary '\0','2024-07-18 09:22:54',1,'2024-10-15 02:14:15'),(4415,'API_e095e1d597b057617dd6862c7b47e959','删除基站','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_delete_batch','POST',_binary '\0',_binary '\0','2024-07-18 09:22:54',1,'2024-10-15 02:14:15'),(4416,'API_c38cfbddc92b9fb9615b5282794e9bcc','视频文件数据来源-获取载荷名称列表','视频文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-10-12 09:42:31'),(4417,'API_98c1122b10415f0dec6189333760f547','ts文件数据来源-获取记录列表','ts文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoSegmentList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-10-12 09:42:31'),(4418,'API_44cb968928087b3f967a70520ff59363','ts文件数据来源-回放视频封面','ts文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getTsSegmentCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:23',1,'2024-10-12 09:42:34'),(4419,'API_907518793367054d69d3150a4ac8f826','视频文件数据来源-回放视频封面','视频文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getMergeVideoFileCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-10-12 09:42:31'),(4420,'API_ec28da84b512c2cbbc3e2cdbaed2e0a4','ts文件数据来源-播放M3U8文件','ts文件数据来源-播放M3U8文件','cmii-uav-cloud-live','/video/storage/manage/playM3u8','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-10-12 09:42:33'),(4421,'API_feef712791bf923d14c608e01932550e','视频文件数据来源-获取视频文件记录列表','视频文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-10-12 09:42:33'),(4422,'API_68464c2e0f1c8eacca6720c4bbe4a726','删除单个合成视频文件','删除单个合成视频文件','cmii-uav-cloud-live','/client/video/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:33'),(4423,'API_4addc921e4951c0df245aab31f587d73','删除合成视频文件','删除合成视频文件','cmii-uav-cloud-live','/client/video/deleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:34'),(4424,'API_331b402b2e51817b8d98d84bbae519cb','ts文件数据来源-删除视频片段','ts文件数据来源-删除视频片段','cmii-uav-cloud-live','/video/storage/manage/deleteOneSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:36'),(4425,'API_92c8cd586c9d981a0e0623d340f18d2f','更新设备视频保存状态','更新设备视频保存状态','cmii-uav-cloud-live','/client/live/stream/updateDeviceVideoStatus','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:34'),(4426,'API_018859c01d82db3a53dce1c26960d158','视频文件登记','视频文件登记','cmii-uav-cloud-live','/client/video/registerVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-10-12 09:42:32'),(4427,'API_0bf71a6bb6a12e61a6c15155f94027bb','ts文件数据来源-获取载荷ID列表','ts文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:36'),(4428,'API_94f0aedf71430a12b6854a3844f20288','视频文件数据来源-触发1条老数据修复(调试)','视频文件数据来源-触发1条老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairOneVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:33'),(4429,'API_bfe6e994058029cb7f91a84d9654e8a9','视频文件数据来源-删除视频文件','视频文件数据来源-删除视频文件','cmii-uav-cloud-live','/video/storage/manage/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:36'),(4430,'API_fd7d2db05a5cdecc4295e465a9c3cbe8','ts文件数据来源-视频下载','ts文件数据来源-视频下载','cmii-uav-cloud-live','/video/storage/manage/download','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:36'),(4431,'API_e183e5a0cea8c2b6faf23532924f7464','ts文件数据来源-获取载荷名称列表','ts文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-10-12 09:42:31'),(4432,'API_7d103b4d606da0093251d04eb272586a','ts文件数据来源-触发老数据文件大小字段修复(调试)','ts文件数据来源-触发老数据文件大小字段修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairTsSegmentFileSize','GET',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-10-12 09:42:35'),(4433,'API_de25611ea380c123af7a1ad22ea516b5','ts文件数据来源-批量删除视频片段','ts文件数据来源-批量删除视频片段','cmii-uav-cloud-live','/video/storage/manage/batchDeleteSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-10-12 09:42:35'),(4434,'API_4698e84e7aa12ccecf4bcc61213840ce','视频文件数据来源-触发部分老数据修复(调试)','视频文件数据来源-触发部分老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairSomeVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:29',1,'2024-10-12 09:42:35'),(4435,'API_2f7d245e3a311dad0dc361f0ddc80c3c','视频文件数据来源-获取载荷ID列表','视频文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:30',1,'2024-10-12 09:42:33'),(4436,'API_6ea8bbd872a1a8a93b2296474efdbb1b','ts文件数据来源-通过id获取回放Token','ts文件数据来源-通过id获取回放Token','cmii-uav-cloud-live','/video/storage/manage/createToken','GET',_binary '\0',_binary '\0','2024-07-18 09:23:31',1,'2024-10-12 09:42:38'),(4437,'API_ca5c86faab31a2ba429413bde4747319','视频文件数据来源-批量删除视频文件','视频文件数据来源-批量删除视频文件','cmii-uav-cloud-live','/video/storage/manage/batchDeleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:33',1,'2024-10-12 09:42:38'),(4438,'API_aeb339d8a5e7c7ddf64fdf8cf0242177','批量删除作业派发任务','','cmii-uav-mission','/zjjt/delete_task','POST',_binary '\0',_binary '\0','2024-07-21 07:24:01',1,'2024-08-03 03:06:37'),(4439,'API_674fa7f21bbad1a4e0261eaf637bb9e6','创建新的作业派发任务','','cmii-uav-mission','/zjjt/create_task','POST',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:37'),(4440,'API_436d88b7132e19d83a2f43ac37478a00','查询作业派发任务','','cmii-uav-mission','/zjjt/query_task','POST',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:36'),(4441,'API_6a2ce044d2e4bed0ca2f4a353ff03386','视频截图接口,提供参数,不是最后实现接口','','cmii-uav-mission','/zjjt/get_video_stream_pic','GET',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:36'),(4442,'API_1d0299e80d7bcf172d93ad5000c11188','更新作业信息','','cmii-uav-mission','/zjjt/update_mission','POST',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:35'),(4443,'API_d47b08d1323691f17a37bc0264364128','通过作业id查询作业关联的照片,并返回照片的临时地址','header IS_SYSTEM_ADMIN:true 设置管理员权限','cmii-uav-mission','/zjjt/get_mission_pics','GET',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:35'),(4444,'API_320a6684510dbb91a85c40b4f94cd7d5','查询没有在执行任务的在线无人机(不包括机库在线但是无人机不在线的情况)','','cmii-uav-mission','/zjjt/get_online_uav','GET',_binary '\0',_binary '\0','2024-07-21 07:24:03',1,'2024-08-03 03:06:38'),(4445,'API_a9604882ce3502c42265d7c35ab0da6c','查询没有在执行任务的在线无人机和离线无人机(但是机库在线)','','cmii-uav-mission','/zjjt/get_online_device','GET',_binary '\0',_binary '\0','2024-07-21 07:24:04',1,'2024-08-03 03:06:37'),(4446,'API_d52cc036bcd7d1847405a14fe4ae054e','引导光电设备-用合作无人机','引导光电设备-用合作无人机','cmii-uav-industrial-portfolio','/photoelectric/camera/guideCameraWithUAV','POST',_binary '\0',_binary '\0','2024-07-21 15:05:54',1,'2024-10-15 02:14:12'),(4447,'API_795dc5d9304aac0e0808791eb6a8f467','获取跳转地址','','cmii-uav-mqtthandler','/uav_fly_command/getJumpUrlForDetection','GET',_binary '\0',_binary '\0','2024-07-22 14:34:07',1,'2024-09-25 08:48:46'),(4448,'API_11b72c2bf2e51317eba9a6419d0def51','停止引导光电设备-用合作无人机','停止引导光电设备-用合作无人机','cmii-uav-industrial-portfolio','/photoelectric/camera/stopGuideCameraWithUAV','POST',_binary '\0',_binary '\0','2024-07-23 02:07:55',1,'2024-10-15 02:14:10'),(4449,'API_2cd07947253752d3f03a75cc51fb7536','查询无人机 字符串叠加视频流地址','','cmii-uav-mission','/zjjt/get_uav_string_video','GET',_binary '\0',_binary '\0','2024-07-24 01:33:29',1,'2024-08-03 03:06:36'),(4450,'API_729985be1bc42ff134920574e0de3c03','模拟调用定时任务','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/advanced5GSync','POST',_binary '\0',_binary '\0','2024-07-30 03:35:35',1,'2024-10-15 02:14:16'),(4451,'API_23b72e1121709fdbff39f61006d6d53a','机库详细数据','机库详细数据','cmii-uav-mqtthandler','/oapi/uav/hangar/getHangarDetail','GET',_binary '\0',_binary '\0','2024-08-13 07:41:40',1,'2024-09-25 08:48:47'),(4452,'API_e8dd5bcc7e1a27eed56adaeee36ac9d6','检测目标上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/detectedTarget','POST',_binary '\0',_binary '\0','2024-08-14 09:28:20',1,'2024-10-15 02:14:22'),(4453,'API_d372cc461bc24b981f0dbe56654ef5dc','追踪目标上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/tracedTarget','POST',_binary '\0',_binary '\0','2024-08-14 09:28:21',1,'2024-10-15 02:14:10'),(4454,'API_7d91ca39e7a94086bb768f1eca6e49a5','重置探测目标上报标识(用于测试)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/photoelectricity/detectionFlagReset','POST',_binary '\0',_binary '\0','2024-08-14 09:28:21',1,'2024-10-15 02:14:20'),(4455,'API_5b2389bcbcd4e036cee92262be7d3ff5','停止 AI 检测','','cmii-uav-mission','/api/uav/mission/ai/stopAIDetection','POST',_binary '\0',_binary '\0','2024-08-15 03:45:42',1,'2024-10-10 08:57:05'),(4456,'API_e66a16c26aea1a91b0c1b90fd459ed25','开始 AI 检测','','cmii-uav-mission','/api/uav/mission/ai/switchAIDetection','POST',_binary '\0',_binary '\0','2024-08-15 03:45:42',1,'2024-10-10 08:57:08'),(4457,'API_71d869467078025b6219ffc8f61c367e','获取 AI 检测结果','','cmii-uav-mission','/api/uav/mission/ai/getAIResult','POST',_binary '\0',_binary '\0','2024-08-15 03:45:44',1,'2024-10-10 08:57:06'),(4458,'API_b5a7f14153b7231270f84bdead91dac4','根据机库名称模糊查询机库信息【机库名称和机库编号】','','cmii-uav-device','/api/uav/hangar/queryHangarListByName','POST',_binary '\0',_binary '\0','2024-08-22 09:33:30',1,'2024-10-11 01:36:53'),(4459,'API_6b96e4cf6e1492b7ed8181658b07b0fa','查询定时任务统计信息for智慧交通','','cmii-uav-mission','/api/uav/mission/traffic/get_timed_mission_total','POST',_binary '\0',_binary '\0','2024-08-22 09:35:33',1,'2024-10-10 08:57:02'),(4460,'API_ffec3da6b0ecbecc693cba4f02e63be0','智慧机场获取告警信息','根据 GPS 显示在地图上,并且根据 invaderId 缓存轨迹','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/map/warn','GET',_binary '\0',_binary '\0','2024-08-22 09:36:02',1,'2024-10-15 02:14:20'),(4461,'API_9008a0fcb4c5c88c834f240e1bf9f699','删除航班信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/delete','POST',_binary '\0',_binary '\0','2024-08-22 09:36:03',1,'2024-10-15 02:14:14'),(4462,'API_deca7946eb3b3d5eebb1572ef3c77bc9','处理探测告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/warn/handle','POST',_binary '\0',_binary '\0','2024-08-22 09:36:03',1,'2024-10-15 02:14:09'),(4463,'API_fe1d6c4c50730d55ed7a877a2f41e8f9','下载跑道导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/template/download','GET',_binary '\0',_binary '\0','2024-08-22 09:36:03',1,'2024-10-15 02:14:20'),(4464,'API_484da1af6e5afb6e1f75ca7484cfeb2d','下载航班导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/template/download','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-10-15 02:14:12'),(4465,'API_506d24e9d83dc42198264ccf7b89588e','下载导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/all/template/download','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-10-15 02:14:12'),(4466,'API_cad90868c4c06aa37e35492fbc5c5914','获取机场探测统计概览信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/overview','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-10-15 02:14:10'),(4467,'API_87f82b62fd3e48ded6adc7f3fe396426','获取跑道信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/list','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-10-15 02:14:21'),(4468,'API_fcde3f53cc89a742d185a80d15141a57','导入机场列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/airport/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:05',1,'2024-10-15 02:14:21'),(4469,'API_62eaae53821d8df80d18caf3fa034d5c','删除基站信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/delete','POST',_binary '\0',_binary '\0','2024-08-22 09:36:05',1,'2024-10-15 02:14:22'),(4470,'API_5e0ad78f5e789a6e8c3c44e43ed8ac85','获取航班信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/list','POST',_binary '\0',_binary '\0','2024-08-22 09:36:05',1,'2024-10-15 02:14:20'),(4471,'API_e44a3472be3b5aaa4ff293f8af90aa4a','导入全部数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/all/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:06',1,'2024-10-15 02:14:15'),(4472,'API_e33ed2786feb00cfb0a7aacd1cd10681','导入航班列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:06',1,'2024-10-15 02:14:15'),(4473,'API_e5ae7dbf8b2ee5b76c153f3f12bf3100','删除跑道信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/delete','POST',_binary '\0',_binary '\0','2024-08-22 09:36:06',1,'2024-10-15 02:14:15'),(4474,'API_67d63dd2cf9936e4780559c1f0e2fa95','导出基站信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/export','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-10-15 02:14:17'),(4475,'API_72d4d37c30cd2cfca405857077728cb5','导出跑道信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/export','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-10-15 02:14:13'),(4476,'API_df0a641d5e5f064f86ba1d94284af0b6','导入基站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-10-15 02:14:19'),(4477,'API_470a0c33862e0a8c8db626905f082b9a','获取基站信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/list','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-10-15 02:14:18'),(4478,'API_24c54c7f2e789206a1039140a4092b8b','导出航班信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/export','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-10-15 02:14:11'),(4479,'API_209b2be43d76dd9f948e3c73e949ad9e','获取探测告警列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/warn/page','POST',_binary '\0',_binary '\0','2024-08-22 09:36:09',1,'2024-10-15 02:14:16'),(4480,'API_22b970a07bc7f9b858d0c3ec9fc19ebc','同步公司无人机到监管平台-用于接口测试调用','','cmii-uav-device','/api/uav/plane/syncCompanyUAV','GET',_binary '\0',_binary '\0','2024-08-26 06:56:44',1,'2024-10-11 01:36:49'),(4481,'API_9948c5fb3ae6171384f848a639d85260','应用信息接口统计查询','','cmii-uav-device','/open/interface/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4482,'API_a997f0624ff6072968c99157ea4a5529','手机验证码登录','','cmii-uav-device','/code/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4483,'API_667852302f77fa35e495e2817cbb171f','hello服务接口','hello','cmii-uav-device','/oapi/test/test2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4484,'API_b3454b99b39819b7162228f7f4c472b5','查询所有的开发者','','cmii-uav-device','/api/uav/developer/queryAll','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4485,'API_6a47476f83ae858ba6316011ab7edde3','删除开发者','','cmii-uav-device','/admin/developer/deleteDeveloper','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4486,'API_5c0d18ee137d4c9583aad7ceccf15893','上传航线航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4487,'API_084c7c2455fda374a82e8bbdab2dda6d','生成接口版本的语言示例代码','','cmii-uav-device','/admin/interfaceVersion/buildLanguageSample','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4488,'API_43afe3fcf0ea9b7bd472182946fe67cf','查询应用日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppLog','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4489,'API_65abfaf6ea956fe99501de108f032df9','更新开发者的接口额度','','cmii-uav-device','/admin/appInterface/updateDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4490,'API_964ddda94b02c71f20ef2d7f65b5f141','批量删除实体','','cmii-uav-device','/admin/model/deleteBatch','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4491,'API_e3a6636fffe617d5cb77ee97c09dec68','结束火警信息','','cmii-uav-device','/oapi/mission/caseinfo/newcase/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4492,'API_5e88132853982d0096d42c51453b571c','过期接口查询','','cmii-uav-device','/open/appInterface/expire','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4493,'API_5158b08718bc40c8aec2f55cf1d8ba28','查询无人机分布情况','查询无人机分布情况','cmii-uav-device','/oapi/device/uav/plane/area/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4494,'API_249926bac448fc996928b30d903a79b2','发送找回密码验证码','','cmii-uav-device','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4495,'API_5ec9f1123a2ce15ec6712d015449deef','获取公司','获取公司','cmii-uav-device','/oapi/test/company_get','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4496,'API_0f4f05991657fe4123357a2d1b075990','找回密码','','cmii-uav-device','/profile/findPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4497,'API_7ecadfd54c5a99c0a7af577477fdb18b','开发者状态设置','','cmii-uav-device','/admin/developer/updateDeveloperStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4498,'API_7df3d8f845a62481658467566aa78a76','单个应用日志查询','','cmii-uav-device','/open/appInterfaceLog/queryById/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4499,'API_eb5384f8fe480bdb7db33bd69cd7c698','hello服务接口','hello','cmii-uav-device','/oapi/test/hello2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4500,'API_06f99998367e82c923ea4369de701750','获取接口类型列表','','cmii-uav-device','/admin/interface/getInfTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4501,'API_90cdfb0f6d907b78b7c568d502f21262','超额接口查询','','cmii-uav-device','/open/appInterface/exceed','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4502,'API_215139419d712ca0567579b61c32421e','查询开发者应用的接口列表','','cmii-uav-device','/admin/appInterface/queryDeveloperAppInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4503,'API_0ee1db5e3a71ef9bf55d059915617a7b','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4504,'API_e3d56348564e21431b37396391acf92c','测试的一个接口','','cmii-uav-device','/open/developer/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4505,'API_1547ffe370a00802b6bdd73197ec55dc','根据参数的请求类型,获取参数支持的属性类型','','cmii-uav-device','/admin/params/getTypesByParamType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4506,'API_cfd3c4e00d7e8e050f669f9bc718a2bb','模糊查詢有效的公司列表','','cmii-uav-device','/admin/app/queryCompanyList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4507,'API_be962a97ca8f557646ed5408639926d4','发送注册验证码','','cmii-uav-device','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4508,'API_d291d930c2c5c58e5673e2e9a2f51655','账号手机号密码登录','','cmii-uav-device','/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4509,'API_23b7e96bf71e175a28462a6ac809a72f','公司配置','','cmii-uav-device','/admin/app/updateAppCompany','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4510,'API_57f9358a01b1441985d52921ce078163','应用日志查询','','cmii-uav-device','/open/appInterfaceLog/query/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4511,'API_dd79c51369092a266474139a145fa500','删除一个接口','','cmii-uav-device','/api/uav/developer/resource/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4512,'API_617a542e7348e0aca4666f17fa0bcf5a','更新开放的接口','','cmii-uav-device','/admin/interface/updateOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4513,'API_1956520eab23482aac79172610537e70','通过应用ID查询接口信息','','cmii-uav-device','/open/interface/queryBy/appId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4514,'API_0a8af1319e8a427f411b1fa17a09c7db','检测找回密码验证码','','cmii-uav-device','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4515,'API_d55e68dda9d4833d4c8caf9a29bd4e22','查询支持的文件类型','','cmii-uav-device','/admin/params/getFileTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4516,'API_4330bd915aea75efff5a0ddcaffd5231','获取接口的示例语言','','cmii-uav-device','/admin/interface/querySampleLanguages','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4517,'API_f7e55608958c5b4f5ee37c5972944d04','接口状态设置','','cmii-uav-device','/admin/interface/v2/updateInfStat','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4518,'API_d6fae1606aa882168a06b75b20c6707d','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/batchUploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4519,'API_3851413d9e7715457b3c22bae556e89c','申请更新邮箱','','cmii-uav-device','/profile/updateEmail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4520,'API_1f4d61fddddb8c628c1e25c913669529','获取单个接口文档','','cmii-uav-device','/docs/getDoc','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4521,'API_08a69a85e4030ba975f338a46e03df30','接口版本状态设置','','cmii-uav-device','/admin/interface/updateInfOpenStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4522,'API_9322d1fcfbb3d492cae05b5e91e095e1','获取限制类型列表','','cmii-uav-device','/admin/interface/getLimitTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4523,'API_f92c106b9fcd8d0e4678fd1e428af613','查询内部接口标识','','cmii-uav-device','/admin/interface/v2/infCodeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4524,'API_182ad6f50aa498e7232b57f96b2b39de','配置接口','','cmii-uav-device','/admin/params/configInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4525,'API_4cbfe07c0c6d3317e3a7da21f32b7981','添加公司','添加公司秒速','cmii-uav-device','/oapi/test/company_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4526,'API_b6c94ebb46a0ca789c544ae91af45c49','应用中心重置秘钥','','cmii-uav-device','/open/app/reset/appSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4527,'API_45af1b3851683703872fabf203301f4f','list文档','','cmii-uav-device','/docs/docList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4528,'API_8e1caaaf63c47de0420d8f350b477f8d','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4529,'API_94833b0c5a16a4aadc8db39f19804138','查询接口默认额度','','cmii-uav-device','/admin/interface/queryInterfaceQuota','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4530,'API_61eeb6a7981ff281a90ae07d183fcdaf','接口日志查询','','cmii-uav-device','/open/appInterfaceLog/query/interfaceLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4531,'API_6c7fd1ff0f0cf24883c098d236f9ed66','注册一个开发者','','cmii-uav-device','/registry-for-test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4532,'API_aea6d823f58266b1e0d9e7a96b52a381','删除(测试接口),不暴露','','cmii-uav-device','/profile/test/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4533,'API_57eb200269325e96ecd3d49e69696c92','查询公司下所有无人机7日内作业记录','查询公司下所有无人机7日内作业记录','cmii-uav-device','/oapi/surveillance/fly/history/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4534,'API_290b6f946d70c7bc7f96323eaf3afb1e','获取请求结果列表','','cmii-uav-device','/admin/appInterfaceLog/getReqResultList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4535,'API_59fd6d5d10bbc98f7fb6faaa3e14cf6d','获取版本列表','','cmii-uav-device','/admin/interface/getVerFilterOpenInf','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4536,'API_2e8d996d698e153301438ee698b4e627','公司所属无人机分页查询','公司所属无人机分页查询','cmii-uav-device','/oapi/device/uav/page/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4537,'API_1f417c4d49600c9483c26fc44cc8654f','检测登录图片验证码','','cmii-uav-device','/verifyCode/checkImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4538,'API_04bcf6e5551f577342654d27996ec763','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-device','/oapi/surveillance/querySinglePlaneTrack/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4539,'API_3138ed368dbf92beb2904cc3e6c81354','查询支持的接口','','cmii-uav-device','/open/interface/querySupported','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4540,'API_dbaa1a31266af22e41348daa7bf42ee0','上传多架次无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4541,'API_0478002407683222df2b890bdcf7c577','查询公司下所有无人机7日内作业记录','','cmii-uav-device','/oapi/surveillance/queryHistoryTotal/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4542,'API_cbce3c99940cb8c36137c28d815e055a','应用中心编辑应用','','cmii-uav-device','/open/app/edit/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4543,'API_1a6e3330342f300451a2ca19b6fb2513','查询开发者应用详情','','cmii-uav-device','/admin/app/queryDeveloperAppDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4544,'API_d5b644994336696a14e561410caaf16b','删除实体','','cmii-uav-device','/admin/model/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4545,'API_68f3605a5fb03293cc8147b5d25bc597','创建密钥','','cmii-uav-device','/api/uav/developer/createSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4546,'API_ca231a76d69dd9151e05cf6dbad453fc','查询公司/所属机构获取无人机数量','','cmii-uav-device','/oapi/uav/queryUavCountByCompanyId/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4547,'API_57aaa50997a152d2ab2b53af43cf0ac1','发送解绑手机号验证码','','cmii-uav-device','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4548,'API_419fddfa8659237fe5d0a6015f193483','添加或更新多语言示例代码','','cmii-uav-device','/admin/interface/mergeSampleCodes','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4549,'API_88cdad8f212950e48e1bce48e8e0f3af','查询脱敏规则','','cmii-uav-device','/admin/params/getBlurRuleList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4550,'API_be1c37552263d701e4f4b1e1ac019c53','hello服务接口','hello','cmii-uav-device','/oapi/test/hello','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4551,'API_58a2231d464838aac14ca5325102967a','复亚作业上传文件','复亚作业上传文件','cmii-uav-device','/oapi/mission/oss/foiaUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4552,'API_a0d06c67145fd7c5347108a33a935d36','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/uploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4553,'API_86bb29e0a43436c7775ffd7397ce66fa','获取接口所属列表','','cmii-uav-device','/admin/interface/getInfGroupList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4554,'API_6624b2af0d7d230e55fde0589b97249a','查询单个飞机目前最新航迹数据','','cmii-uav-device','/oapi/surveillance/queryRealTimeInfo/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4555,'API_4044b84853cf230b988b4216b86373b2','更新实体','','cmii-uav-device','/admin/model/update','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4556,'API_6a941df64620f5947280e8376401a1e4','删除一个开发者','','cmii-uav-device','/api/uav/developer/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4557,'API_f4a88485785f26734cc7769cf0557fd4','查询平台基础指标接口','查询平台基础指标接口','cmii-uav-device','/oapi/basic/plat/bizInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4558,'API_0adc74bc22df384c8cbc7860d39bacf0','查询开发者应用接口日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppInfLogDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4559,'API_6cd3022a793bfbb30583fcb6857025f5','通过接口ID查询接口版本信息','','cmii-uav-device','/open/interface/queryVersion/interfaceId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4560,'API_ff7c0d84e8d20076bea4dd8d16d624d6','查询开发者应用列表','','cmii-uav-device','/admin/app/queryDeveloperAppList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4561,'API_03cd27281db8be928edf69ce4764ae08','查询开发者详情','','cmii-uav-device','/admin/developer/queryDeveloperDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4562,'API_b428c978248f4a35dc65b982ca3060b3','应用中心删除应用','','cmii-uav-device','/open/app/delete/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4563,'API_a52e2468f4666472e5ed608e73498fda','查询应用接口列表','','cmii-uav-device','/admin/appInterface/queryAppInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4564,'API_107fe2718678b900c70e70706b7168b7','发送绑定手机号验证码','','cmii-uav-device','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4565,'API_574b9ba5c6559cc5452fb297020bc4ce','应用中心主页查询','','cmii-uav-device','/open/app/homePage','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4566,'API_a6eca5f755ce833a55eb230a7d277793','查询接口服务信息','','cmii-uav-device','/admin/interface/queryInfServie','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4567,'API_077fd0ba780ca05a543a225aaa355cf6','验证token','','cmii-uav-device','/checkToken','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4568,'API_dd0a4000f702b4537ba4106e1d0751fc','通过设备号查询公司ID接口','通过设备号查询公司ID接口','cmii-uav-device','/oapi/device/uav/company/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4569,'API_f02f16bb0651b443a899a92b0e675172','应用中心设置回调地址','','cmii-uav-device','/open/app/redirect/setUrl','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4570,'API_a08fd7df587042c50e561f4c2610601a','根据token获取用户基本信息-敏感信息脱敏','','cmii-uav-device','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4571,'API_edcac3127696bb31f63d6a31eb1c4d20','查询接口列表V2','','cmii-uav-device','/admin/interface/v2/openInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4572,'API_fd403b4f0b3b815118d05f4fd62df9f8','全局统计本公司设备在线及简略详情','全局统计本公司设备在线及简略详情','cmii-uav-device','/oapi/surveillance/fly/total/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4573,'API_6b420b6cd90702af273ec1f8a75cc754','hello服务接口','hello','cmii-uav-device','/oapi/test/hello3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4574,'API_dfeb0c082537aa219d044ce2b4607b91','应用中心应用详情查询','','cmii-uav-device','/open/app/queryAppById','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4575,'API_57ffc88565558b5ad16ac821349ecc64','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4576,'API_72660c97aa4955edbe48e7bc1b166ee5','应用中心配置应用接口','','cmii-uav-device','/open/appInterface/configure/appInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4577,'API_fa4138e3f7b8fc64fefca8100f95f2a7','删除接口','','cmii-uav-device','/admin/interface/v2/deleteInf','DELETE',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4578,'API_141cb2eeccd77d098fd5defcf046e4da','获取接口选择列表','','cmii-uav-device','/admin/appInterface/getInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4579,'API_666076e8389d8bdb9c1673c2c66995e2','设备统计接口','设备统计接口','cmii-uav-device','/oapi/device/uav/count/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4580,'API_0b79665ae2e017fbd6a8dd0bea0d6ea0','发送登陆验证码','','cmii-uav-device','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4581,'API_facecd2ba5889dc8f012224a8d8234e4','更新接口缓存数据','','cmii-uav-device','/admin/interface/refresh','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4582,'API_75d46dc0c40249362c4a7a9d750313b1','通过设备号列表查询绑定信息接口','通过设备号列表查询绑定信息接口','cmii-uav-device','/oapi/device/uav/bound/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4583,'API_7c8bebce400bda4312128cf6a07efdf0','collect服务接口','collect','cmii-uav-device','/oapi/test/collect','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4584,'API_69c4c6b204d9ec3e4e3d23fa2f88a8f0','实体分页查询','','cmii-uav-device','/admin/model/query','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4585,'API_65f4debbcec32e3b76225066fcd395c6','查询开发者可用的开放接口','','cmii-uav-device','/api/uav/developer/resource/queryOpenApi','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4586,'API_5be9648ee4af6d39697fdc9fce4702c5','查询接口详情v2','','cmii-uav-device','/admin/interface/v2/interfaceDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4587,'API_98ee25c6c10aa7d7775f5f9e368ea825','查询所有实体','','cmii-uav-device','/admin/model/all','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4588,'API_558992bed1b604511d4f03c37a31d12e','上传无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4589,'API_a37243e55e41dc730532965f8ea0e0db','上传单架次无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4590,'API_9474d172fa5449a6373893f4c21e7bd2','应用中心单接口详情及调用情况查询','','cmii-uav-device','/open/appInterface/query/oneInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4591,'API_c8f089c2a0bc50504970a3eec1d4b628','添加实体','','cmii-uav-device','/admin/model/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4592,'API_76af8ca82ed6daea77d94dee396cf470','开发者应用接口调用统计表查询','','cmii-uav-device','/open/interface/invoke/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4593,'API_2638542b36b1e79f635028b7b8503256','接口详情,版本列表V2','','cmii-uav-device','/admin/interface/v2/infVersionList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4594,'API_d89dfeb204b75dc3ddbea4d424465a8b','检查是否有访问权限','','cmii-uav-device','/api/uav/developer/resource/check','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4595,'API_db42b753da1547e145568f76d32e7577','重新绑定手机','','cmii-uav-device','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4596,'API_0da68f2090fe13d30d43e470830c7b8e','设置接口版本号','','cmii-uav-device','/admin/interfaceVersion/updateInfVersion','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4597,'API_3d77798a4f897b5eb5e974a341b222af','根据接口版本ID,获取接口配置','','cmii-uav-device','/admin/params/getParamsConfigByVerId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4598,'API_a53b23499e23989701754474456da617','设置开放接口的默认额度','','cmii-uav-device','/admin/interface/updateInfDefaultQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4599,'API_ade56e487532d8f58e2bbca8cabe7992','即将过期接口查询','','cmii-uav-device','/open/appInterface/expire/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4600,'API_cc2499648f3e7cf3410f318672e47ddb','公司添加用户','公司添加用户描述','cmii-uav-device','/oapi/test/company_user_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4601,'API_58e2816541204276dd819cf50e48a005','冻结(测试接口),不暴露','','cmii-uav-device','/profile/test/freeze','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4602,'API_30b8d48a7181f95801420c96991132e5','执行更新邮箱','','cmii-uav-device','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4603,'API_6920952f4d8d1e20ae2c52e26956c877','上传无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/batchUpload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4604,'API_aeb24ce0709bc05e10d9a9a020f94790','按条件分页查询开发者应用接口信息','','cmii-uav-device','/admin/appInterface/queryDevAppInfPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4605,'API_9693a020cdda953697c9526e27d908dd','查询接口详情','','cmii-uav-device','/admin/interface/queryInterfaceDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4606,'API_2863e39bfc4c9983f727eb909d6bfbbc','查询每款无人机对应作业执行次数','查询每款无人机对应作业执行次数','cmii-uav-device','/oapi/mission/job/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4607,'API_dae39585a67460f1ea5e78172f5a98f0','查询单个飞机最新数据','','cmii-uav-device','/oapi/surveillance/info/realtimeInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4608,'API_369a429da33cdcf0c5b944e5d86ad256','查询平台最近12月每月无人机作业执行次数','查询平台最近12月每月无人机作业执行次数','cmii-uav-device','/oapi/mission/job/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4609,'API_f532af8b9e2300d0fda0f3f43ebf3c64','普通作业上传文件','普通作业上传文件','cmii-uav-device','/oapi/mission/oss/normalUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4610,'API_7bb67cee83c0b28bf7d50a945166a27b','开发者应用状态设置','','cmii-uav-device','/admin/app/updateDeveloperAppStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4611,'API_a7acb49b27405d143a0766afe9ca9935','即将超额接口查询','','cmii-uav-device','/open/appInterface/exceed/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4612,'API_000d992a047736227893c569eb107c5e','按限制类型查询接口列表','','cmii-uav-device','/admin/interface/queryOpenInfListByLimit','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4613,'API_e77aa6d23dee04357b75babccf53f363','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4614,'API_0b7f303c7b319864441f89c29f8ff65c','根据属性类型,获取属性的限制类型','','cmii-uav-device','/admin/params/getLimitsByPropertyType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4615,'API_4d28d8d160204f57a5aefe7a776e422d','验证绑定手机号验证码','','cmii-uav-device','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4616,'API_1d02a19252314b9bbcc15a7ea200db7b','新建接口V2','','cmii-uav-device','/admin/interface/v2/createOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4617,'API_07ee41af1d7978077c6977bcd6f117dd','获取应用对应的所有接口列表','','cmii-uav-device','/admin/appInterface/getAllInfListByAppId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4618,'API_8c0e1ae161f2d9bef3ecb8e984a22039','应用中心接口管理','','cmii-uav-device','/open/appInterface/query/allInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4619,'API_301c7f177ab9c38c5b3d430142388a51','查询开放的接口列表','','cmii-uav-device','/admin/interface/queryOpenInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4620,'API_80314e58c1bb6473f7199fd222de701e','查询无人机实例总数接口','设备统计接口','cmii-uav-device','/oapi/device/uav/plane/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4621,'API_3f0ebc815624b71bb8726ea7650263c0','根据图片id获取图片code','','cmii-uav-device','/verifyCode/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4622,'API_b729b2523556e6da46748f44c6ed3984','接口版本列表','','cmii-uav-device','/admin/interfaceVersion/infVersionList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4623,'API_e94fed089656866dcdae8f87d94accac','获取所有接口列表','','cmii-uav-device','/admin/interface/getAllInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4624,'API_1753b15cadbc575ce733685f83e25737','hello服务接口','hello','cmii-uav-device','/oapi/test/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4625,'API_68027d93c4eff7b794fce78cc9261d4d','helloOMS服务接口','hello','cmii-uav-device','/oapi/test/helloOMS','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4626,'API_6d41da958445233eca23fd7d4f3d2db9','分组获取接口','','cmii-uav-device','/docs/list','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4627,'API_344e5ebde3c1d23eb02b8d0c7febe2d2','创建接口版本','','cmii-uav-device','/admin/interfaceVersion/createInfVersion','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4628,'API_f3d0bd6377aa1f6f940409f38e7029a6','账号退出登录','','cmii-uav-device','/logout','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4629,'API_027faf38a5d543ccdca02f0f3b38cd8e','上传火警信息','','cmii-uav-device','/oapi/mission/caseinfo/casefinish/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4630,'API_700a6eaf2e9f6bf64cfa7d6c6e0236ac','查询无人机的拉流信息','','cmii-uav-device','/oapi/surveillance/uav/steamAddrs/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4631,'API_6fa75f9f4c4a56ad7e558c9fb24a5595','获取实体详细信息','','cmii-uav-device','/admin/model/getModelDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4632,'API_73fed1e2e520d4a3593413261db71207','查询开发者的接口额度','','cmii-uav-device','/admin/appInterface/queryDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4633,'API_f1bb25873aea6fd9710d3be0fd9923da','创建一个开发者','','cmii-uav-device','/api/uav/developer/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4634,'API_3320a6b862ea0c70e0126ea0b2a23e99','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-device','/oapi/surveillance/plane/single/allTrack/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4635,'API_ba5b76f97ca1946575fb0cbf9c279c33','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4636,'API_5defc8e579529b73bed6cd688849d067','应用中心新建应用','','cmii-uav-device','/open/app/add/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4637,'API_37ef71f7f83115cf3b2c3c04d5090270','验证解绑手机号验证码','','cmii-uav-device','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4638,'API_7a3b0d70e39d59f8884bf15dc92dc237','接口文档接口','','cmii-uav-device','/docs/queryList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4639,'API_890cfe8d41a7d4ccffc05653ab7b63b0','获取接口未开放的版本列表','','cmii-uav-device','/admin/interface/','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4640,'API_4826824bb07036b1b994c3419353422a','查询平台最近12月每月飞行时长接口','查询平台最近12月每月飞行时长接口','cmii-uav-device','/oapi/mission/fly_duration/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4641,'API_84c536e250cf8d28129590b1f31fdf34','按条件分页查询开发者信息','','cmii-uav-device','/admin/developer/queryDeveloperPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4642,'API_e107149bf123ce8fae306122785fe216','获取接口的版本列表','','cmii-uav-device','/admin/interface/queryInfVerList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4643,'API_4a796da93b623f3b3fb5b3b050a5f73b','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4644,'API_c4508c515401c20f7e49d6b9d83eab3e','重置密码','','cmii-uav-device','/profile/resetPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4645,'API_34216cbf1fc376288c076b8ebbf7c580','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4646,'API_f226d4e60a81b0ba1584037cc5b339fd','开发者应用接口仓库查询','','cmii-uav-device','/open/interface/query/repository','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4647,'API_362c273fc0a25bf8a014159397bc22d5','注册一个开发者','','cmii-uav-device','/registry','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4648,'API_4584464031bc7c9bfc12836342976df0','获取请求时间列表','','cmii-uav-device','/admin/appInterfaceLog/getReqTimeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4649,'API_5446128d9ace9120cb0c76c2529458d4','添加一个接口','','cmii-uav-device','/api/uav/developer/resource/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4650,'API_dd7ff9e5ee3e2b503df0161c5243a5a5','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/airline/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4651,'API_15e65be6ad22938f6546cc5b554b19fd','新建开放的接口','','cmii-uav-device','/admin/interface/addOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4652,'API_23257b48677554f4bd76ec1940a90ed7','删除开放的接口版本','','cmii-uav-device','/admin/interface/deleteInfVer','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4653,'API_7364627a9d0eec31410c0f407da6cfb7','查询无人机视频回放','查询无人机视频回放','cmii-uav-device','/oapi/mission/uav/video/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4654,'API_c06fc8c98a9b177248f2360856bb119b','上报诱骗设备指定位置诱骗响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/locationInduce/response','POST',_binary '\0',_binary '\0','2024-08-28 01:24:48',1,'2024-10-15 02:14:22'),(4655,'API_2dd7bde6ba81cc05d89d405cfc22999f','queryHistoryVagueByCId','','cmii-uav-user','/user/queryHistoryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2024-09-09 09:07:10',1,'2024-10-11 15:37:18'),(4656,'API_43c829294d1b39258e962f3e4ba3a034','新建','','cmii-uav-emergency','/event/save','POST',_binary '\0',_binary '\0','2024-09-09 09:07:23',1,'2024-10-10 09:08:03'),(4657,'API_7b31c02cffc3e5ea412110a0ca3491a7','灾害次数统计','灾害次数统计','cmii-uav-emergency','/event/stats','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:05'),(4658,'API_391253cdb694e78845e9cba15a8b58f3','关联飞行记录','关联飞行记录','cmii-uav-emergency','/event/conn','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:04'),(4659,'API_dafffc66add49b0a88e209df76845bed','值班信息详情-不加密','不加密','cmii-uav-emergency','/duty/detailNoEncrypt','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:03'),(4660,'API_33918ed8739f49d91f4b25283ff9bec7','通信保障-设置救援点','通信保障-设置救援点','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/setPoint','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:03'),(4661,'API_810529670bd64d4193fcbe828d9c6620','通信保障-获取救援点','通信保障-获取救援点','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPoint','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:05'),(4662,'API_0dc5be8beda0ff97ce4712bf0a00046f','通信保障-获取无人机轨迹','通信保障-获取无人机轨迹','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPlaneTrack','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:05'),(4663,'API_b89ddd5147ed5a2f1b5de1e3911b958d','通信保障-获取通信情况','通信保障-获取通信情况','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getCommInfo','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:05'),(4664,'API_3cf5d25ef3002709242e76f5df7fae78','分页查询','','cmii-uav-emergency','/event/query','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:05'),(4665,'API_aa8c19db0afc381d6d1af3ac9bc79efc','值班信息详情','加密','cmii-uav-emergency','/duty/detail','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:05'),(4666,'API_ee01c005c4d8692268d801acb58ff631','通信保障-获取无人机视频流','通信保障-获取无人机视频流','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:04'),(4667,'API_cd09b17fd0a5706583b5ba0002c0a54c','值班信息填写','','cmii-uav-emergency','/duty/save','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:06'),(4668,'API_acc9aab10ec6f3d8b36b5faadc2832aa','日历查询','','cmii-uav-emergency','/duty/query','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:04'),(4669,'API_3a86668c969685c0f6a5de6d05e9c85b','ai推荐','ai推荐','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/computeAiInfo','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-10 09:08:05'),(4670,'API_1c1f2a4cd38884d796d28f1d40b4bbb1','编辑成员','传入区域json字符串,需要有主键','cmii-uav-emergency','/event/edit','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:05'),(4671,'API_b0a57127e1639b09309b59276da70ba9','日报填写','有id编辑,无id新增','cmii-uav-emergency','/duty/dailyEdit','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:06'),(4672,'API_69a2e7d51a5c978c9d9ef53558622d84','获取灾害年份','获取灾害年份','cmii-uav-emergency','/event/years','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:03'),(4673,'API_e9a42d6bdc44391570bdf50ea979423a','改变事件状态','改变事件状态','cmii-uav-emergency','/event/del','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:05'),(4674,'API_932e3007107566b7a459e490d8d57a4e','获取事件详情','传入主键','cmii-uav-emergency','/event/detail','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:03'),(4675,'API_764d7f3c8d41d9d3aaad120e577d82b5','批量删除','传入主键','cmii-uav-emergency','/event/delete','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:05'),(4676,'API_ed80c920bee8ae360b3b64167761d64b','通信保障-分享-获取页面分享码&提取码','监通信保障-分享-获取页面分享码&提取码','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/shareCode','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:03'),(4677,'API_cf0f2699785777a94fdb6891d2f9ae92','通信保障-关闭通信作业','通信保障-关闭通信作业','cmii-uav-emergency','/client/industrial/emergency/stopJob','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:05'),(4678,'API_db1f163cecd0a0616d85d13ea17ad2cc','通信保障-开启通信作业请求','通信保障-开启通信作业请求','cmii-uav-emergency','/client/industrial/emergency/startJob','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:04'),(4679,'API_524399ddc44884356d49a91e8db2efa6','通信保障-在线无人机列表','通信保障-在线无人机列表','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/onlinePlanes','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-10 09:08:04'),(4680,'API_add1eddd551500b56fbf88c5adaf0f40','统计查询','','cmii-uav-emergency','/duty/queryCount','POST',_binary '\0',_binary '\0','2024-09-09 09:07:26',1,'2024-10-10 09:08:04'),(4681,'API_988a11a0b1bc78a12d2e4b3f5306f41f','通信保障-获取无人机设备情况及覆盖范围','通信保障-获取无人机设备情况及覆盖范围','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPlaneInfoCoverage','GET',_binary '\0',_binary '\0','2024-09-09 09:07:26',1,'2024-10-10 09:08:04'),(4682,'API_65738049923989e46d11f1fbd777588c','值班信息编辑','','cmii-uav-emergency','/duty/edit','POST',_binary '\0',_binary '\0','2024-09-09 09:07:26',1,'2024-10-10 09:08:04'),(4683,'API_80fd400b18240c230596a361e327c623','获取机场区域以及禁飞区 Wgs84','','cmii-admin-data','/api/admin/arealimit/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-09-09 09:07:32',1,'2024-09-09 09:15:05'),(4684,'API_edd1f20c8423bc5ebabdf422f6dd2a00','从Redis获取类型对应的有效字典明细的K-V','从Redis获取类型对应的有效字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValKeyMapFromRedisByType','GET',_binary '\0',_binary '\0','2024-09-09 09:07:32',1,'2024-09-09 09:15:05'),(4685,'API_93245a10b22a387e990be87793651f08','电子围栏列表','','cmii-uav-airspace','/efence_airspace/efence_info_List','POST',_binary '\0',_binary '\0','2024-09-09 09:09:09',1,'2024-10-11 08:57:36'),(4686,'API_0fab114d29ab09bf0bb243525258e689','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmDetail','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:27'),(4687,'API_cfab17a872576434e2d085792b4340b6','通过事件ID处理告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmIdNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:25'),(4688,'API_195fb5899fa1e35092ee71e52c3e7c6a','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4689,'API_3fba2693af9291a6434d9078de761854','上报安全告警事件','','cmii-uav-alarm','/api/uav/alarm/event/reportSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:25'),(4690,'API_5768fa4743b4961fe3aa36fdaa178ee1','查询自己公司及子公司所属的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:27'),(4691,'API_43f719feec3fa832bf1d4c8b37856292','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:25'),(4692,'API_fb37e608252a8178582d9a851e8f5066','查询所有指定AlarmID的告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecByAlarmIdNoCompany','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4693,'API_4d29e7f6ae861cb0f3d883f2df4e5b88','查询告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/queryConSecAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4694,'API_454ec5c7dafd9ebf2956ba61b37624bc','查询指定对象的告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByObj','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4695,'API_9b65820af66004d1b5a76b17fa416eab','管理告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/controlSecAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:24'),(4696,'API_9038b1b0cc36168f7f707b131cbb49c4','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmId','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4697,'API_4a17d58452a19cfaafe2575f3e3ab059','查询所有告警事件详情-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecDetailNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4698,'API_2c3693e478d3f4576bec2aced8c6f8cd','查询所有在线告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4699,'API_f6b91968d821c1c4413f36482e025ec1','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/secAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-11 05:48:26'),(4700,'API_6eac0d1829f778b3eab0436a28b6fdcb','查询自己公司及子公司所属的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26'),(4701,'API_8ebb3db40953c69121e1ab9c0bc8d0a3','查询指定AlarmID的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByAlarmId','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:24'),(4702,'API_253ff22d71d81bf89c929b75769b63c2','无人机下线之后处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByObj','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26'),(4703,'API_00419b2f3d3e1e9d0acb7c8c94e41658','查询所有的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:25'),(4704,'API_f3eedbc9d0a83ab0fc5258a87f2f0c0d','查询历史告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26'),(4705,'API_8956785199d26bb5c70a942651140cdf','查询所有历史告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:25'),(4706,'API_f062d3477042153e6e64d388dc5d86d3','一键处理所有告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelAllSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:26'),(4707,'API_3580cc836a060f01471c090f239b1baf','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:25'),(4708,'API_8d77d76663433f4fa4a5731580119573','查询所有告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27'),(4709,'API_c4c8dbafb227cdb2aaf70a68db26eb6b','查询所有的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27'),(4710,'API_9c51a35849a0e91613cb2cad5eb3eeff','查询告警配置','','cmii-uav-alarm','/api/uav/alarm/query/secAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27'),(4711,'API_2d6f18e63183a9836589fff31c76d25d','提供类型查询告警配置','','cmii-uav-alarm','/api/uav/alarm/querySecAlarmConfByType','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-11 05:48:27'),(4712,'API_da13587c03b1247baa362d8b46aa3b9f','迅蚁无人机飞行数据接收,1s 一次','','cmii-uav-integration','/antwork/uav/flight/data/receive','POST',_binary '\0',_binary '\0','2024-09-10 02:08:50',1,'2024-09-30 07:59:18'),(4713,'API_61f5c6be2235cb2c305e51830b511984','开启方向诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openDirectionInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:33',1,'2024-10-15 02:14:10'),(4714,'API_eb1c430ad37726c3907360c15c11233d','关闭诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-10-15 02:14:11'),(4715,'API_12300f505903b50ff92cd3e9f8980139','开启角度诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openAngleInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-10-15 02:14:13'),(4716,'API_958e4192ccff58fc175ae0f66658739d','关闭无线电探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/aoa/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-10-15 02:14:19'),(4717,'API_8eaff52b5cbedbbeaabd1a1e8f5f91f0','开启干扰','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/jam/open','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-10-15 02:14:21'),(4718,'API_6836672234d2faf86ca6bda3a53c6572','开启位置诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openLocationInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:35',1,'2024-10-15 02:14:22'),(4719,'API_20e8081fb2fb87f9dfad7ddeb4c1a81f','关闭TDOA探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/tdoa/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:36',1,'2024-10-15 02:14:19'),(4720,'API_0c41725fe87ee2b410b252a272e59de2','开启TDOA探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/tdoa/open','POST',_binary '\0',_binary '\0','2024-09-12 02:33:36',1,'2024-10-15 02:14:21'),(4721,'API_a8370e3dc6f74e5e3199e863cd539806','关闭干扰','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/jam/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:37',1,'2024-10-15 02:14:20'),(4722,'API_7ff630be72a0af3b0f87db6c5871dc71','开启导航屏蔽','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openGNSSInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:38',1,'2024-10-15 02:14:16'),(4723,'API_e97d4e9715f2df434361a1bf42463114','查询指定类型的设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/device/listByTypes','POST',_binary '\0',_binary '\0','2024-09-12 02:33:38',1,'2024-10-15 02:14:18'),(4724,'API_57532ac848a7bb6a27cc7572feb3a5fe','开启无线电探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/aoa/open','POST',_binary '\0',_binary '\0','2024-09-12 02:33:39',1,'2024-10-15 02:14:14'),(4725,'API_79e656b2ef4efc417c0017ac74bd351f','开启模式诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openModeInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:39',1,'2024-10-15 02:14:10'),(4726,'API_108c86fb146467d0bf00fd5644cf2778','开启轨迹诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openTrackInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:39',1,'2024-10-15 02:14:17'),(4727,'API_def82b89add8732951e698588c382eb2','通过excel模拟探测数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/mock/mockRadarDatasFromExcel','POST',_binary '\0',_binary '\0','2024-09-13 07:32:59',1,'2024-10-15 02:14:22'),(4728,'API_014fb4cafa5cd839ff461e54d899ea11','查询emqx连接参数','','cmii-uav-integration','/dji_cloud/pilot/query_mqtt_config','GET',_binary '\0',_binary '\0','2024-09-23 05:52:11',1,'2024-09-30 07:59:17'),(4729,'API_f7747a26085eb3afb8802fba36691b5d','查询无人机和绑定的机库,设备号全等,不是模糊','以无人机为准,如果符合条件的多个需要调用方筛选','cmii-uav-device','/api/device/mqtt/query_uav_dock','GET',_binary '\0',_binary '\0','2024-09-24 02:50:40',1,'2024-10-11 01:36:52'),(4730,'API_c971d6e99e558df153baecadea62a7bb','删除某一个设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/device/delete','POST',_binary '\0',_binary '\0','2024-09-24 08:22:57',1,'2024-10-15 02:14:09'),(4731,'API_34a053ad88b46d23d2ee3e1ffebae8e0','获取某个用户ws的相关信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/mock/getSenseDataWSInfo','POST',_binary '\0',_binary '\0','2024-09-26 03:32:20',1,'2024-10-15 02:14:20'),(4732,'API_f7ab9ea940fc95e1760f92ff2c39d96a','获取某个雷达id的相关ws信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/mock/getSenseDataWSInfoByRadarId','POST',_binary '\0',_binary '\0','2024-09-26 03:32:24',1,'2024-10-15 02:14:21'),(4733,'API_5601ed1929f0119f639b047c97bd1753','h5新建','','cmii-uav-emergency','/event/h5/save','POST',_binary '\0',_binary '\0','2024-09-29 02:02:52',1,'2024-10-10 09:08:05'),(4734,'API_570acf71ae3cad3038570f9e7d26b520','H5端业务上传,需业务后端确认','','cmii-uav-material-warehouse','/api/v1/warehouse/project/h5/putObject','POST',_binary '\0',_binary '\0','2024-09-30 04:25:51',1,'2024-10-11 08:57:34'),(4735,'API_3f8d9de49ffffd50bc821e8fbafe1fa7','通过文件id删除照片','','cmii-uav-mission','/picture/del_pics_by_file_id','POST',_binary '\0',_binary '\0','2024-09-30 06:25:02',1,'2024-10-10 08:57:02'),(4736,'API_0f63406d6838e3afef97418c3ecd0895','查询航线信息统计','','cmii-uav-mission','/api/uav/mission/szga/line/stat','GET',_binary '\0',_binary '\0','2024-10-10 06:26:56',1,'2024-10-10 06:29:22'),(4737,'API_57cf7f66bcdfb432f15902c628c24a3d','通过无人机id 查询 照片信息','','cmii-uav-mission','/picture/query_uav_pics','POST',_binary '\0',_binary '\0','2024-10-10 06:27:01',1,'2024-10-10 06:29:22'),(4738,'API_77c2c4d9467be1f4f6786ca42ee474eb','更新任务类型','更新作业的任务类型','cmii-uav-mission','/api/uav/mission/mission_info/update_task_type','POST',_binary '\0',_binary '\0','2024-10-10 06:27:01',1,'2024-10-10 06:29:18'),(4739,'API_e98e1acb7cca3f6218f19b0cf091a6cb','查询任务信息统计','','cmii-uav-mission','/api/uav/mission/szga/mission/stat','GET',_binary '\0',_binary '\0','2024-10-10 06:27:01',1,'2024-10-10 06:29:19'),(4740,'API_c83f9ca3c66a53a980c79d6f1b6169cc','查询设备在线离线统计','','cmii-uav-mission','/api/uav/mission/szga/device/stat','GET',_binary '\0',_binary '\0','2024-10-10 06:27:02',1,'2024-10-10 06:29:17'),(4741,'API_6ef29cd831fa845c82c2abbdd1eb22da','通过航线ID创建快速作业','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_mission_start_with_line','POST',_binary '\0',_binary '\0','2024-10-10 06:27:02',1,'2024-10-10 08:57:08'),(4742,'API_2389db5db7fdcf27e22719438f40d42c','下载检测文件是否存在','下载检测文件是否存在','cmii-uav-material-warehouse','/api/v1/warehouse/project/check','GET',_binary '\0',_binary '\0','2024-10-10 08:57:30',1,'2024-10-11 08:57:36'),(4743,'API_7c28d6eadadf46a8acdf7d7cb40e717e','生成告警事件ID','','cmii-uav-alarm','/api/uav/alarm/event/getEventId','GET',_binary '\0',_binary '\0','2024-10-11 01:31:41',1,'2024-10-11 05:48:26'),(4744,'API_702c8ddee6da0a9dcd8e36be11f64747','查询自己公司及子公司告警指标统计信息','附带告警无人机统计Map<\"uasId\", count>','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCountAddUav','GET',_binary '\0',_binary '\0','2024-10-11 01:31:44',1,'2024-10-11 05:48:25'),(4745,'API_cb4b0cb23f92f145e54d962085186016','aggregation','','cmii-uav-kpi-monitor','/uav/data/aggregation','POST',_binary '\0',_binary '\0','2024-10-11 01:37:35',1,NULL),(4746,'API_25269ec39b0142c36c8b3cad9253b5df','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-10-11 01:37:35',1,NULL),(4747,'API_0322e5121b244a203dcea6cd6ffd6294','getDocumentation','','cmii-uav-kpi-monitor','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL),(4748,'API_c9970b8a7739b6447de97aba48dae12f','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL),(4749,'API_d9863c5d9b91c22fdc6bba2bba3f42cb','createRSA','','cmii-uav-kpi-monitor','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL),(4750,'API_1de7a19a944d9c35111646d62956fe9b','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,NULL),(4751,'API_2fd6f4fc2e7777e66783708968c99038','getDocumentation','','cmii-uav-kpi-monitor','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,NULL),(4752,'API_22a6a60092fe6af14cb3692fc7c5538c','加密邮箱服务器密码','加密邮箱服务器密码','cmii-uav-notice','/mail/provider/encryptEmailServerPwd','GET',_binary '\0',_binary '\0','2024-10-11 08:15:37',1,'2024-10-11 08:15:42'); +INSERT INTO `sys_resource_api` VALUES (8,'API_94606acf6f83c2ac28918281f85b22a0','创建一个机构','','cmii-uav-user','/api/uav/org/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:11',1,'2024-11-06 12:16:30'),(9,'API_caefde2c04ac0eda6a284d1edbb1152f','创建一个公司','','cmii-uav-user','/api/uav/org/createCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:11',1,'2024-11-06 12:16:38'),(10,'API_0dd8e9d343c3ad19ac127ac1956a7990','分页查询公司','','cmii-uav-user','/api/uav/org/pageCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-11-06 12:16:40'),(11,'API_c12b6c34d3573bd5537e9b2cd2b1617e','查询公司详细信息','','cmii-uav-user','/api/uav/org/getCompanyDetail','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-11-06 12:16:22'),(12,'API_8d221aca42139bdc4a70ae46c50e14be','查询所有公司','','cmii-uav-user','/api/uav/org/queryCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-11-06 12:16:38'),(13,'API_b19957e6c9ef266e975453a9f56f171a','删除一个公司','','cmii-uav-user','/api/uav/org/delCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-11-06 12:16:44'),(14,'API_952348d1fc4fc0fdfd58d2b87d952264','更新公司','','cmii-uav-user','/api/uav/org/updateCompany','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-11-06 12:16:32'),(15,'API_9a61edcd78864d7bcc25913e5c208c23','查询公司所有的机构','','cmii-uav-user','/api/uav/org/queryOrg','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-11-06 12:16:29'),(16,'API_38c2422dda1213e31ccdc2f5879fe670','删除一个机构','','cmii-uav-user','/api/uav/org/delOrg','POST',_binary '\0',_binary '\0','2020-05-09 01:10:12',1,'2024-11-06 12:16:20'),(17,'API_575b68b670980029e5e067d4200ec727','更新一个机构','','cmii-uav-user','/api/uav/org/updatOrg','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-11-06 12:16:27'),(18,'API_d444a24f9fccc8576073243433916bf0','查询出所有的api','','cmii-uav-user','/api/uav/resource/api/queryAll','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-11-06 12:16:42'),(19,'API_b84b0f5eda8a0541bbb9bab629280d8d','增加api','','cmii-uav-user','/api/uav/resource/api/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-11-06 12:16:27'),(20,'API_3dd1062f863d72d28cbd6bdc31e272fa','更新api','','cmii-uav-user','/api/uav/resource/api/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-11-06 12:16:28'),(21,'API_5f500603a8f4a9b7c5ab637961035338','删除api','','cmii-uav-user','/api/uav/resource/api/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-11-06 12:16:25'),(22,'API_40a8afb36e4bf19fb6800cc07f0c5fcb','增加菜单','','cmii-uav-user','/api/uav/resource/menu/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:13',1,'2024-11-06 12:16:42'),(23,'API_c5247f54f028dc8bf62526cdc67f9f68','更新菜单','','cmii-uav-user','/api/uav/resource/menu/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:41'),(24,'API_eddc9be54517ea76417f8fbf05632e81','删除菜单','','cmii-uav-user','/api/uav/resource/menu/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:39'),(25,'API_a9d5998b2842d008bceefd9bdc989687','查询所有菜单','','cmii-uav-user','/api/uav/resource/menu/queryAll','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:28'),(26,'API_ab1152801e84b0bf7aab84807ac549dd','增加按钮','','cmii-uav-user','/api/uav/resource/action/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:33'),(27,'API_4ed629ddc7b9bec753d6bddae509ecdc','增加按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:41'),(28,'API_5b6f4c01e1bff1411ed5f15ca3a77b73','更新按钮以及授权api','','cmii-uav-user','/api/uav/resource/action/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:41'),(29,'API_9643432bc3144a39764ef1e4b95a960c','更新按钮','','cmii-uav-user','/api/uav/resource/action/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:36'),(30,'API_3e884720cec333d70c19325e8edde54d','删除按钮','','cmii-uav-user','/api/uav/resource/action/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:31'),(31,'API_f1f84b1ad3430fd333764f0ab2ce5f8b','查询菜单下所有的按钮','','cmii-uav-user','/api/uav/resource/action/queryByMenuId','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:21'),(32,'API_696e439d468de4625840fce37d60a36e','查询按钮,菜单下面的所有api','','cmii-uav-user','/api/uav/resource/action/queryApiByActionId','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:31'),(33,'API_dfc472e5b9c3816de93be86120cc6baf','给按钮授权api接口','','cmii-uav-user','/api/uav/resource/action/authorityApi','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:25'),(34,'API_bcee59f2103818a5f37eeb7c35a6898e','获取平台(公司)的所有菜单以及按钮','','cmii-uav-user','/api/uav/resource/queryMenuAndAction','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:27'),(35,'API_37772fbb1a5f9246c6fa2dc533b55526','获取平台所有的资源列表(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceList','POST',_binary '\0',_binary '\0','2020-05-09 01:10:14',1,'2024-11-06 12:16:26'),(36,'API_03e1a0b6cbedccfd749d336239e1c653','获取平台所有的资源树(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTree','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:20'),(37,'API_6b3707c0d9075a6e1d5e446886eae8d0','新增角色','','cmii-uav-user','/api/uav/role/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:32'),(38,'API_187627f031d0a65bed30f74d7878b90a','修改角色','','cmii-uav-user','/api/uav/role/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:35'),(39,'API_a62023d9956bd0c0d5a5bce050a744ec','有效角色的列表','','cmii-uav-user','/api/uav/role/query','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:44'),(40,'API_fb0cc52e402afe1bec8994793a2ee376','删除角色','删除角色','cmii-uav-user','/api/uav/role/del','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:33'),(41,'API_1c85326fbb19ed42d341591ef931d823','禁用角色/锁定角色','','cmii-uav-user','/api/uav/role/disable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:39'),(42,'API_b2f652e930b07177f12b7fd87fb5ea40','启用角色/解锁角色','','cmii-uav-user','/api/uav/role/enable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:27'),(43,'API_83cc6276385c5454f8a555d9b0843c21','获取角色详细信息包括资源','','cmii-uav-user','/api/uav/role/getRoleWithResource','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:39'),(44,'API_c14ab57512e6e3351e3e0e0a9730b2e7','新增角色并授权','','cmii-uav-user','/api/uav/role/addAndAuthority','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:23'),(45,'API_9711fedd69da15347a54ba6cefa7b29b','修改角色并授权','','cmii-uav-user','/api/uav/role/updateAndAuthority','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:37'),(46,'API_e66b38c75630b4a737829f4a679b36a4','为用户赋予角色','为用户赋予角色','cmii-uav-user','/api/uav/role/saveUserRoles','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:34'),(47,'API_e9e81aa05a3a5fece29adee9de94ad7d','为角色增加用户','为角色增加用户','cmii-uav-user','/api/uav/role/saveRoleUsers','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:36'),(48,'API_01c42d1241684992ce0d0994e949f353','角色授权资源(菜单以及按钮)','角色授权资源(菜单以及按钮)','cmii-uav-user','/api/uav/role/authorityResource','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:30'),(49,'API_3e5c403e4b7f1c602ac3e28951955783','增加用户','','cmii-uav-user','/api/uav/user/add','POST',_binary '\0',_binary '\0','2020-05-09 01:10:15',1,'2024-11-06 12:16:37'),(50,'API_3740f38f36c26a50c0e0a3fd4c9e51f1','修改用户信息','','cmii-uav-user','/api/uav/user/update','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:25'),(51,'API_a869a436cd0be4fee43ca50af78d2e5c','禁用用户/锁定用户','','cmii-uav-user','/api/uav/user/disable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:19'),(52,'API_20ed92bcb1ab21bb4387511221772bee','启用用户/解锁用户','','cmii-uav-user','/api/uav/user/enable','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:20'),(53,'API_13df7b0a05472e0a9a51488dfbf05876','用户列表','','cmii-uav-user','/api/uav/user/findPage','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:40'),(54,'API_f7cf343ee9bc0f36c04b885ae5994458','管理员重置密码','','cmii-uav-user','/api/uav/user/resetPassword','POST',_binary '\0',_binary '\0','2020-05-08 19:10:16',1,'2024-11-06 12:16:22'),(55,'API_bdf05b037740ee590e3b6864e5163ab1','获取用户角色','','cmii-uav-user','/api/uav/user/getUserRoles','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:24'),(56,'API_4a45eb5cf116d6304ccd6c4d7c617356','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/getMyDetail','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:26'),(57,'API_f8bdaff975e38f1088ea7130e2cd0fde','获取用户详细信息','','cmii-uav-user','/api/uav/user/getUserDetail','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:19'),(58,'API_d4e2a13d9077aa75aeb94bc7b20aae07','获取用户资源','','cmii-uav-user','/api/uav/user/getUserResources','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:25'),(59,'API_78f9684cf1948d9fa7ac822f808dda10','以树形结构获取资源树','','cmii-uav-user','/api/uav/user/getUserResourceTree','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:24'),(60,'API_707c71b10a1cc38fcc6fa499c4da6514','添加飞手','','cmii-uav-user','/api/uav/user/addFlyer','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:36'),(61,'API_56e5cefafdd168386d7f30b5b1219454','测试','','cmii-uav-user','/api/uav/uavTestPO/','POST,GET',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:22'),(62,'API_150ba1da1f4a174b132167b3b252d670','测试获取单个','','cmii-uav-user','/api/uav/uavTestPO/testGet','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:25'),(63,'API_622b954009a914f7c3f5b4dae6c5a722','测试异常','','cmii-uav-user','/api/uav/uavTestPO/testException','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:19'),(64,'API_9d8416f00194ce3c7cd9ac0366e70e2d','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPage','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:42'),(65,'API_9da6a0c63553bbd633a55d9ac60a4227','测试分页查询','','cmii-uav-user','/api/uav/uavTestPO/testPageByCustom','POST',_binary '\0',_binary '\0','2020-05-09 01:10:16',1,'2024-11-06 12:16:22'),(66,'API_1a735ffddfa640ed742d282018370fc4','测试添加','','cmii-uav-user','/api/uav/uavTestPO/testAdd','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-11-06 12:16:24'),(67,'API_40dff29929d118e208b634b4cf41ff6d','根据用户名获取账号信息','','cmii-uav-user','/account/getByUsername','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-11-06 12:16:41'),(68,'API_a8c6a4ffabfb0a9d79f36db5a147e723','根据手机号获取账号信息','','cmii-uav-user','/account/getByTelephone','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-11-06 12:16:43'),(69,'API_dfbef905b3129b45341a9690102968e9','检测用户是否拥有权限','','cmii-uav-user','/user/checkUri','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-11-06 12:16:34'),(70,'API_9a77fc28815a543625cc1da15f122326','根据用户id获取信息,未被删除用户','','cmii-uav-user','/user/getById','POST',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2024-11-06 12:16:22'),(71,'API_98c7ec3ba0ce3553bb0c52272f29cee7','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2022-03-11 06:17:35'),(72,'API_7ac275e7b208b86b6bae996e6305f86f','swaggerResources','','cmii-uav-user','/swagger-resources','',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2022-03-11 06:17:35'),(73,'API_2c5059bcb5b737dfc1f69fc4897d587f','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-05-09 01:10:17',1,'2022-03-11 06:17:35'),(74,'API_9f707b4364462c082b59c5dd00240592','errorHtml','','cmii-uav-user','/error','',_binary '\0',_binary '\0','2020-04-19 07:10:17',1,'2024-11-06 12:16:37'),(99,'API_4ea6212bfc023bb48de804b2d1a55b81','生成邀请地址','','cmii-uav-user','/api/uav/user/createInviteUrl','POST',_binary '\0',_binary '\0','2020-05-15 08:03:14',1,'2024-11-06 12:16:40'),(100,'API_568f7d141e21dda80d1ff2bcdfd058b8','用户注册','','cmii-uav-user','/registry','POST',_binary '\0',_binary '\0','2020-05-15 08:03:15',1,'2024-11-06 12:16:44'),(102,'API_eaae5f9cc6fad74e1d9a525f33d26856','更新用户头像','','cmii-uav-user','/api/uav/user/profile/updateAvatar','POST',_binary '\0',_binary '\0','2020-05-23 19:50:52',1,'2024-11-06 12:16:30'),(103,'API_9c99b4ed48a4b631c0970484c13929a9','更新用户名称','','cmii-uav-user','/api/uav/user/profile/updateRealName',NULL,_binary '\0',_binary '\0','2020-05-29 06:50:52',1,'2020-05-29 11:50:54'),(104,'API_f90b75a4827a5f681dd9dde40c97f66d','根据token获取用户基本信息','','cmii-uav-user','/api/uav/user/profile/getMyDetail','POST',_binary '\0',_binary '\0','2020-05-23 19:50:52',1,'2024-11-06 12:16:38'),(105,'API_136b8ba1ae8483e65884e8380625a67e','发送修改邮箱验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendResetEmail','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2020-05-25 17:43:51'),(106,'API_fcc25be6a9f1c1dfd749708881413f42','验证修改邮箱验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkResetEmail','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2020-05-25 17:43:51'),(107,'API_a70d9ba7a909c0d00734632f09a2ded1','发送绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-11-06 12:16:31'),(108,'API_41b4ab1a493b21a94ca77fddff40af63','验证绑定手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-11-06 12:16:36'),(109,'API_383e669ef441f9f9d20d7c07299cfb4a','发送解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-11-06 12:16:38'),(110,'API_92e42e7981b90482b33b9ddf7db4cd95','验证解绑手机号验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2020-05-25 12:43:50',1,'2024-11-06 12:16:24'),(111,'API_69b54b15bedcabdc884571bc8971b3c7','申请更新邮箱','','cmii-uav-user','/api/uav/user/profile/updateEmail','POST',_binary '\0',_binary '\0','2020-05-26 09:44:34',1,'2024-11-06 12:16:19'),(112,'API_1032f1f983c37cd32e5b7381c4cbca9d','重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephone','POST',_binary '\0',_binary '\0','2020-05-26 09:44:34',1,'2024-11-06 12:16:26'),(113,'API_deda391c18ef00ea6a63865be14310fc','通过身份证重新绑定手机','','cmii-uav-user','/api/uav/user/profile/updateTelephoneWithIdentity','POST',_binary '\0',_binary '\0','2020-05-26 09:44:34',1,'2024-11-06 12:16:34'),(115,'API_2a3d43803567789ca45f6c0f0fc4e1aa','更新用户名称','','cmii-uav-user','/api/uav/user/profile/updateName','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:27'),(116,'API_feba8e8d58c5347eb929af17138838f9','添加用户账号','','cmii-uav-user','/api/uav/user/profile/addAccount','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:39'),(117,'API_28b67fe2833bef7e732dbd5d89829618','发送登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:30'),(118,'API_5dc51c889fa6be6bd5235d4059a4294f','检测登陆验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:28'),(119,'API_e58796bbb5570d9441ebc7e81e8599ab','发送注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:24'),(120,'API_ba2f464c282b3a0553bd99165d06d783','检测注册验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:43'),(121,'API_98b17ab44f353e164355f455a423419b','发送找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:19'),(122,'API_0aeba2b421ca15f92cd5428c886d485b','检测找回密码验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2020-05-29 01:39:27',1,'2024-11-06 12:16:43'),(123,'API_4af205f553090073657fd3225909fca0','预览excel','','cmii-uav-user','/system/file/preViewExcel','POST',_binary '\0',_binary '\0','2020-06-02 03:54:05',1,'2024-11-06 12:16:33'),(124,'API_cd482e686ebdeb7f999493b5b5d8a462','下载用户批量导入模版','','cmii-uav-user','/system/file/userTemplate','GET',_binary '\0',_binary '\0','2020-06-04 06:33:56',1,'2024-11-06 12:16:29'),(125,'API_4600ad4f0e176d556393a65c04510e51','批量上传用户','','cmii-uav-user','/api/uav/user/userUpload','POST',_binary '\0',_binary '\0','2020-06-04 17:27:12',1,'2024-11-06 12:16:19'),(126,'API_2ee55d087127129a3a6d29dbf9b6469f','重置','','cmii-uav-user','/api/uav/user/profile/resetPwd','POST',_binary '\0',_binary '\0','2020-06-07 02:50:55',1,'2024-11-06 12:16:21'),(169,'API_56bc7049827cfeba0af9af2bb04c2f81','修改载荷生产厂家和设备类型','','cmii-uav-device','/api/uav/load/updateDevManufacturer',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(170,'API_0b82428385517d636fc9bcdb34040cbc','删除载荷生产厂家和设备类型','','cmii-uav-device','/api/uav/load/deleteDevManufacturer',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(171,'API_868fb317bf26069587bf72bd03ae4e91','载荷生产厂家和设备类型详情查询','','cmii-uav-device','/api/uav/load/queryDevManufacturerDetail',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(172,'API_da88cb85eb3563b3656c18b30366dbbd','根据设备类型获取生产厂家列表','','cmii-uav-device','/api/uav/load/querydevManufacturerListByMafId',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(173,'API_f429192ee4288e1dacf66e9d0f713051','查询设备类型列表','','cmii-uav-device','/api/uav/load/querydevTypes',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(174,'API_f51fc53186080cddef6dc118ca33b221','新增载荷生产厂家和设备类型','','cmii-uav-device','/api/uav/load/addDevManufacturer',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(175,'API_106a918609df946aca1a53655d32fb49','修改无人机','','cmii-uav-device','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:56'),(176,'API_6fcb86dbb2501707e5ddbbb76c7668e7','删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:52'),(177,'API_6fd9ffa6039d98a39b7ffe156d060d94','批量删除无人机','','cmii-uav-device','/api/uav/plane/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:50'),(178,'API_6465ffa36bd12bf5d249583ca80364ba','模糊查询无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(179,'API_35baa96ea7e128ba18521c93f66d7ec9','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfName','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(180,'API_44d5cb8bf252057df56597309c8ae02d','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavMode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(181,'API_7a31287ec4ca56716189ac715ffff95e','模糊查询无人机形态列表','','cmii-uav-device','/api/uav/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(182,'API_0dfc8854557634dfa5d03ad49d336793','模糊查询无人机尺度列表','','cmii-uav-device','/api/uav/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(183,'API_8a96f6bda4172a6945cb2924b6c6bf70','模糊查询可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStat','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:51'),(184,'API_87164cc21687f97d2041965ae9f1b66f','模糊查询生产厂家有的产品型号列表','','cmii-uav-device','/api/uav/plane/queryModeListByMnf','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(185,'API_79f66734cd6fa15fd50c4cea770b08d6','通过产品型号查询生产厂家和产品型号对象','','cmii-uav-device','/api/uav/plane/queryMnfModeByMode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(186,'API_f7e38acfe5b46367db42b53b495d95b4','按条件分页查询无人机信息','','cmii-uav-device','/api/uav/plane/queryUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(187,'API_c4aed632c3e6a6031a7ca0305caa11aa','按无人机编码查询无人机详情查询','','cmii-uav-device','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(188,'API_31151a2ae3f60864f0184a3e4b73a1f3','获取无人机照片','','cmii-uav-device','/api/uav/plane/queryUavPicByCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:50'),(189,'API_75faa10f56c898c1e76b50cf283a4a3d','查询指定公司/机构范围内的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:54'),(190,'API_b90518a6151aaf568edc63b43d601817','根据无人机编码查询该无人机是否存在','','cmii-uav-device','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:49'),(191,'API_dab95364a57d89e51d76193f66810c55','生成新无人机编码','','cmii-uav-device','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:44'),(192,'API_d06ee272c26f99d194aa9da2a4aede6d','设置无人机在线状态','','cmii-uav-device','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:58'),(193,'API_a0ebba8fe10fc7ff7068af1c74331a32','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2024-11-07 09:01:48'),(194,'API_9123f5d24a53ed45473aaf78dbff8b1d','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavDev',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(195,'API_d08edaffa3c49fbd4b21f7f3e343e0a0','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryDevByUav',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(196,'API_6ef033bb286b002ef0f4c243b5beb1b0','无人机解绑载荷','','cmii-uav-device','/api/uav/plane/unboundDevFromUav',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(197,'API_a0215c0676721e559700ba7257cc1266','无人机操作日志查询','','cmii-uav-device','/api/uav/plane/queryUavLogList',NULL,_binary '\0',_binary '\0','2020-06-24 16:25:20',1,'2020-06-24 21:31:13'),(198,'API_c491a74b63bf41be63230811eae2daa6','新增载荷','','cmii-uav-device','/api/uav/load/addUavDevice',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(199,'API_f2cfbd00e0b000771f41fce4bb6c56e0','修改载荷','','cmii-uav-device','/api/uav/load/updateUavDevice',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(200,'API_f8dba39581eb18d265010d8f2efc6d9d','删除载荷','','cmii-uav-device','/api/uav/load/deleteUavDevice',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(201,'API_ee3d08e629c84909f11400c4cb817608','批量删除载荷','','cmii-uav-device','/api/uav/load/deleteUavDeviceBatch',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(202,'API_a8ce2ea124712056992199a12a50a9b1','无人机绑定的载荷列表','','cmii-uav-device','/api/uav/load/queryUavDevicesByUavId',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(203,'API_67cb5e39759bbcc02989bddb67abed79','获取新载荷编码','','cmii-uav-device','/api/uav/load/queryUavDevCode','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(204,'API_618a8937c3bf426a934c944d560c04eb','获取载荷分页列表','','cmii-uav-device','/api/uav/load/queryUavDevList','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(205,'API_5edd6e98ab5da1ed7574800b0ed28087','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavDevList','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(206,'API_894dc58e65b272dceeaf08fdb4486a2b','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/load/checkDevBoundRelations','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(207,'API_cf6aa87a8e86d0240670beb3a268f6ee','模糊查询载荷编码列表','','cmii-uav-device','/api/uav/load/queryDevCodeList','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(208,'API_e9f2d641c20ecd673cee5293254c09da','载荷详情查询','','cmii-uav-device','/api/uav/load/queryUavDeviceDetail',NULL,_binary '\0',_binary '\0','2020-06-16 04:25:20',1,'2020-06-16 09:31:13'),(209,'API_dce2075fbb65dad6506bc2240773d754','查询无人机类型详情','','cmii-uav-device','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(210,'API_d7c3a419346333e9a050a11c2201dabd','新增无人机类型','','cmii-uav-device','/api/uav/plane/addUavModel','POST',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2020-07-13 06:31:13'),(211,'API_8d32c4d3366dead1c1add0d82ed3dc3d','修改无人机类型','','cmii-uav-device','/api/uav/plane/updateUavModel','POST',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2020-07-13 06:31:13'),(212,'API_808683de543f3716b25400a704250d1e','删除无人机类型','','cmii-uav-device','/api/uav/plane/deleteUavModel','POST',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2020-07-13 06:31:13'),(213,'API_378d645bb2f6b03bbef75dba42a1c639','模糊搜索厂家对应的设备型号列表','','cmii-uav-device','/api/uav/load/queryDevModelListByMafId','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(214,'API_3c2b4ca91e53a585605a144ff2b8a928','删除载荷设备型号','','cmii-uav-device','/api/uav/load/deleteUavDevModel','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(215,'API_f5de88192341d2e0bc4d55411b2ecafa','新增载荷设备型号','','cmii-uav-device','/api/uav/load/addUavDevModel','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(216,'API_5ab916008111d8240228aafe49f91bdd','修改载荷设备型号','','cmii-uav-device','/api/uav/load/updateUavDevModel','POST',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(217,'API_03edda2d2a799df3cf21484d905701e9','载荷设备型号详情查询','','cmii-uav-device','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-12 12:25:20',1,'2020-07-12 17:31:13'),(218,'API_7d444eaa2f15f8b184dd1855415e4446','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2022-04-25 02:49:37'),(219,'API_b8ff7a2544bb4e8c6e7b79f324083dab','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2022-04-25 02:49:37'),(220,'API_603ce91dec93cfb4063c1926d38cf572','swaggerResources','','cmii-uav-device','/swagger-resources','',_binary '\0',_binary '\0','2020-07-13 01:25:20',1,'2022-04-25 02:49:37'),(221,'API_051cfba46414c56f1b4537687f89833d','errorHtml','','cmii-uav-device','/error','',_binary '\0',_binary '\0','2020-08-08 12:25:20',1,'2024-11-07 09:01:54'),(222,'API_94a3eb35188d0b70f984c9e079a47268','获取单个无人机目前的航迹','','cmii-uav-surveillance','/surveillance/queryUavPoints/{UASID}',NULL,_binary '\0',_binary '\0','2020-06-17 12:39:49',1,'2020-06-18 14:08:28'),(223,'API_83d729de6d968040f9c77d272a61bc1f','查询本公司飞机七日内飞行历史记录','','cmii-uav-surveillance','/surveillance/flyHistory','GET',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2024-11-12 03:56:11'),(224,'API_55bba35223746a01d3d5d05b2a46d3d6','securityConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2022-03-31 03:10:04'),(225,'API_37f09116159b86c2dd50d79287c517b5','uiConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2022-03-31 03:10:05'),(226,'API_87490b132b78566a21cf497d89b38198','swaggerResources','','cmii-uav-surveillance','/swagger-resources','',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2022-03-31 03:10:04'),(227,'API_f44699527a155e7a951e5254a9bb7b75','查询公司/机构所属的无人机编码列表','','cmii-uav-surveillance','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2023-03-29 09:05:05'),(228,'API_d744eb7808517966bff9e3b1e667019e','按无人机编码查询无人机详情查询','','cmii-uav-surveillance','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2020-06-24 17:08:28'),(229,'API_819d14f47a56a3e80d475f94bd2d471b','设置无人机在线状态','','cmii-uav-surveillance','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2023-03-29 09:05:05'),(230,'API_5c3e2e1810caa38551ef924cc8e72498','无人机绑定的载荷列表查询','','cmii-uav-surveillance','/api/uav/plane/queryDevByUav',NULL,_binary '\0',_binary '\0','2020-06-16 09:39:49',1,NULL),(231,'API_1f4fbefa225a2595fdb562694e8a6eb0','根据无人机编码查询该无人机是否存在','','cmii-uav-surveillance','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2023-03-29 09:05:05'),(232,'API_960f651fd3be99401654dc83dd053fb2','查询无人机类型详情','','cmii-uav-surveillance','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-06-23 15:39:49',1,'2020-06-24 17:08:28'),(233,'API_378057d4cc00ea62cae9806f7cac273c','errorHtml','','cmii-uav-surveillance','/error','',_binary '\0',_binary '\0','2020-06-30 16:39:49',1,'2024-11-12 03:56:10'),(234,'API_009b9f297e6d324bdb9868996eeab36f','新增载荷','','cmii-uav-device','/api/uav/load/addUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-11-07 09:01:57'),(235,'API_2734ea96b050f2deae5883c82d4ae2e5','修改载荷','','cmii-uav-device','/api/uav/load/updateUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-11-07 09:01:44'),(236,'API_e35c03761aa95413b9dadbf0ae476334','删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-11-07 09:01:52'),(237,'API_438e3f86a59e35e254ea26df38c6602a','批量删除载荷','','cmii-uav-device','/api/uav/load/deleteUavLoadBatch','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-11-07 09:01:58'),(238,'API_843b9797693a0536db662a14d01a0e51','载荷详情查询','','cmii-uav-device','/api/uav/load/queryUavLoadDetail','GET',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:03'),(239,'API_dba08ee989879f608bba49f094509933','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/querydevMnfList',NULL,_binary '\0',_binary '\0','2020-06-15 21:10:26',1,'2020-06-16 03:26:03'),(240,'API_1be70f68207732dfc5d150c1ab5e318c','模糊查询载荷设备类型列表','','cmii-uav-device','/api/uav/load/queryDevTypeList','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:03'),(241,'API_d937afa65e86eeb087905b8fdd9f7872','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavLoad','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:04'),(242,'API_0d52f355600136c09d156eda403909de','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2020-07-13 07:26:04'),(243,'API_e83782efad13b139f36f5d86c23dec92','无人机解绑载荷','','cmii-uav-device','/api/uav/plane/unboundLoadFromUav','POST',_binary '\0',_binary '\0','2020-07-13 01:10:26',1,'2024-11-07 09:01:49'),(244,'API_c141c202beb8477f05aea714392e11b4','无人机绑定的载荷列表查询','','cmii-uav-surveillance','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-06-24 17:08:28',1,'2020-06-24 11:30:08'),(245,'API_5fe33412cbe4aef4c0983bc6cc595a12','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryDevMnfList','POST',_binary '\0',_binary '\0','2020-07-15 02:10:14',1,'2020-07-14 18:30:46'),(246,'API_5238a0e4378c5ab60f223f4575b1ca49','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-surveillance','/surveillance/queryUavPoints','POST',_binary '\0',_binary '\0','2020-06-24 04:13:22',1,'2020-06-23 20:40:58'),(247,'API_f8575d0d0d6138ed277f0339a0d561ee','恢复一个公司','','cmii-uav-user','/api/uav/org/enableCompany','POST',_binary '\0',_binary '\0','2020-06-20 08:15:53',1,'2024-11-06 12:16:38'),(248,'API_f4cad236d06712a0c44987ebb502faf1','关停一个公司','','cmii-uav-user','/api/uav/org/disableCompany','POST',_binary '\0',_binary '\0','2020-06-20 08:15:53',1,'2024-11-06 12:16:21'),(249,'API_e52cbd9464f9e29fcc2fa4860aa672ca','测试添加','','cmii-uav-user','/api/uav/uavTestPO/testRpc','POST',_binary '\0',_binary '\0','2020-06-20 08:15:54',1,'2020-06-20 00:15:58'),(250,'API_452d66110157d297ffe6356f2fbb9107','根据邀请码,查询邀请信息','','cmii-uav-user','/registry/getInvitedInfo','POST',_binary '\0',_binary '\0','2020-06-20 08:15:54',1,'2024-11-06 12:16:27'),(251,'API_ce779d357be0d8577ce7af6ac166c639','根据用户id集合获取用户信息','','cmii-uav-user','/user/getByIds','POST',_binary '\0',_binary '\0','2020-06-20 08:15:54',1,'2024-11-06 12:16:25'),(252,'API_2f792ba68267c0e9802e2a3ff75ff56d','获取平台所有的资源树,并统计(菜单,按钮)','','cmii-uav-user','/api/uav/resource/queryResourceTreeStatistic','POST',_binary '\0',_binary '\0','2020-06-23 09:23:16',1,'2024-11-06 12:16:35'),(253,'API_952d06cbfdc5cd71b09f941194c76b92','角色分页查询','','cmii-uav-user','/api/uav/role/queryPage','POST',_binary '\0',_binary '\0','2020-06-23 09:23:16',1,'2024-11-06 12:16:24'),(254,'API_bc97a2e4a906e69ba0a38961e61dd1c2','获取角色资源树','','cmii-uav-user','/api/uav/role/getRoleResourceTree','POST',_binary '\0',_binary '\0','2020-06-23 09:23:16',1,'2024-11-06 12:16:24'),(255,'API_ba389f10315750ec60df2e7041aadb75','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/surveillance/querySinglePlaneTrack','POST',_binary '\0',_binary '\0','2020-06-24 22:40:52',1,'2020-06-25 11:13:43'),(256,'API_e16193a54a8c3605718087964b475b22','查询所有机场','','cmii-uav-airspace','/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-11-14 03:10:22'),(257,'API_51cfdab152fd2f16dd20ecace8ff2d23','删除空域容量','','cmii-uav-airspace','/zydAirspaceCapacity/deleteCapacityByAirsNo.do','DELETE',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(258,'API_1fec04562343c9dbe9baa50196a456fc','新增空域容量','','cmii-uav-airspace','/zydAirspaceCapacity/saveZydAirspaceCapacity.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(259,'API_4915b9309b715ec171376f4e61ab5ae7','修改空域容量','','cmii-uav-airspace','/zydAirspaceCapacity/updateZydAirspaceCapacity.do','PUT',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(260,'API_b26faf6149440b54eaf4f9ab1da96b84','按条件分页查询空域申请和时间段','','cmii-uav-airspace','/zydAirspace/queryByConditons.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-11-14 03:10:23'),(261,'API_895f4f13f1573208eb8e18cbb2673253','获取新建空域申请页面的下拉框数据','无需传参','cmii-uav-airspace','/zydAirspace/getDropDownBox.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(262,'API_52329ea052a3213ef59284b74b995e83','新增空域申请和时间段','','cmii-uav-airspace','/zydAirspace/saveAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-11-14 03:10:23'),(263,'API_fc665fb4031a71c16c6c30a8e3f5ac9e','飞行计划获取空域列表','传入空域申请json字符串,需要分页数据,查询条件为主键时为查询详情','cmii-uav-airspace','/zydAirspace/queryAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(264,'API_395e7fe8f2f8860dfc6d0d53d4451cec','编辑修改空域申请','传入空域申请json字符串,需要有主键','cmii-uav-airspace','/zydAirspace/editAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-11-14 03:10:23'),(265,'API_4bd275a28b0298f50a95fc3b00ac0b28','批量删除空域申请和时间段-n','传入空域申请主键,以数组方式传入','cmii-uav-airspace','/zydAirspace/deleteAirspace.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-11-14 03:10:22'),(266,'API_52d7c991d2962e1cb946c1b6ca2a989a','审核空域','传入空域编号、审核操作、审核人id','cmii-uav-airspace','/zydAirspace/auditAirspace.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(267,'API_6628f3f97efaec4c29b5f197ae3e03cf','查询空域详情','传入空域主键','cmii-uav-airspace','/zydAirspace/queryDetail.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-11-14 03:10:22'),(268,'API_ab002d2b6eaa803d8a22092d2d569c3f','获取空域申请类型的数量-n','无需传参','cmii-uav-airspace','/zydAirspace/getCountByStat.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(269,'API_045305960e66f93a66a18ddde0cb1750','查询空域容量列表','','cmii-uav-airspace','/zydAirspace/getAirspaceCapacity.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(270,'API_25e76177f5a0e13252ce31b02e85dfe5','查询空域容量详情','','cmii-uav-airspace','/zydAirspace/getAirspaceCapacityById.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(271,'API_45e4cf438d3b1c4f8e5710d0c52d37eb','为监视提供的空域接口','无需传参','cmii-uav-airspace','/zydAirspace/getAirspaceBySurveillance.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(272,'API_681049cd535eee150ecf3ba034c14589','查询未定义空域容量且为已通过的临时飞行区','','cmii-uav-airspace','/zydAirspace/getAirspaceCapacityByAdd.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(273,'API_a33b13d78be515f2030a8abe6fdeccb2','获取空域申请和空域限制所有数据-n','无需传参','cmii-uav-airspace','/zydAirspace/getAllAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(274,'API_e64eb41adecd6be488be482850f85988','获取空域申请和空域限制所有数据','无需传参','cmii-uav-airspace','/zydAirspace/getAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2024-11-14 03:10:23'),(275,'API_417d074d0c96a630a3b3ee601d4f6084','查询临时飞行区','无需传参','cmii-uav-airspace','/zydAirspace/queryErailAirspace.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(276,'API_3fe4fd9c710fa314b33323442031d249','空域历史统计查询','','cmii-uav-airspace','/zydAirspaceHistoricalData/getAirspaceHistoricalData.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(277,'API_e58ae1d8608f13b4eec42bf21d4e6237','根据空域编号查询空域历史','','cmii-uav-airspace','/zydAirspaceHistoricalData/getAirspaceHistoricalDataByAirsNo.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(278,'API_30ddb9445d4740298095d0cbf3aa49fa','获取空域实时数据','','cmii-uav-airspace','/zydAirspaceRealData/getAirspaceRealData.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(279,'API_e1cb1af69ce841d8f0eea9c78210c63d','根据公司id获取空域实时数据','','cmii-uav-airspace','/zydAirspaceRealData/getAirspaceRealDataByCompanyid.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(280,'API_a0bcf36f4c8f04b09eff28b54445737b','按空域类型查询空域限制','传入参数为空域类型 多个请用,相隔','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitByAreaTypeSur.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(281,'API_99a42a28165f388e086614adc0f23529','按空域类型查询空域限制','传入参数为空域类型','cmii-uav-airspace','/zydAreaLimit/queryLimitAreaByType.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(282,'API_b2fb5db5b0f7f6dcb8444e8145b5dffa','按id删除空域限制','传入参数为id值','cmii-uav-airspace','/zydAreaLimit/deleteZydAreaLimitById.do','DELETE',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(283,'API_6d8d8dd3b615f81d6774ed81916615a7','新增空域限制-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/zydAreaLimit/insertZydAreaLimit.do','POST',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(284,'API_01b9da8fa89bf3bd9b06b29b9ef938d7','修改空域限制-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/zydAreaLimit/updateZydAreaLimit.do','PUT',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(285,'API_9983d216745fa0f33df53aab1785f7c7','按id查询空域限制','传入参数为id值','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitById.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(286,'API_7ae8c3349cf3e68db94ceff112d98c8b','为监视提供的接口,用于查询告警','无需传参数','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitBySurveillance.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(287,'API_dcc1b19439b953d1c53b4d4e347c2f11','按空域类型查询空域限制-n','传入参数为空域类型 多个请用,相隔','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitByAreaType.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2020-06-28 14:16:52'),(288,'API_9489ebf61622dfc85ecf0ec578449dfe','飞行任务类型字典表','','cmii-uav-airspace','/zydDicFlytask/getZydDicFlytask.do','GET',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2021-09-22 20:09:11'),(289,'API_f8fd09b31ddbac06045bd342be87770c','uiConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2022-04-25 02:48:43'),(290,'API_443b50cd6f58599295241c6de6cb7e01','swaggerResources','','cmii-uav-airspace','/swagger-resources','',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2022-04-25 02:48:43'),(291,'API_4c57dc011da8906cdb1dcd15c54c080a','securityConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-28 22:14:28',1,'2022-04-25 02:48:43'),(292,'API_ea7a7243272fdfc2331b8342add4f863','error','','cmii-uav-airspace','/error','',_binary '\0',_binary '\0','2020-07-05 18:14:28',1,'2024-11-14 03:10:23'),(293,'API_8138e0c7ce00c4dd9aea4f7f624e5f98','查询所有无人机编码列表','','cmii-uav-device','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-02 19:03:43',1,'2024-11-07 09:01:52'),(294,'API_889e384e48d54fe17111942c773aca48','查询所有无人机编码列表','','cmii-uav-surveillance','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-06-25 08:06:48',1,'2020-06-25 22:18:11'),(295,'API_89dba7a6eb9a2cfacedfd80f9ac039c7','添加一个问题反馈','','cmii-uav-feedback','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:27:59'),(296,'API_425ee952c02aa238fed24797554ac6f2','导出查询结果','','cmii-uav-feedback','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(297,'API_e4a55343c032ef4fc49727f482e7eb67','查询反馈类型','','cmii-uav-feedback','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(298,'API_dc560856289d3a9211012dbabb79ef29','查询应用列表','','cmii-uav-feedback','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(299,'API_772d54d06ec5de08c748ab474f5ed449','查询问题反馈','','cmii-uav-feedback','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:00'),(300,'API_64552bbf0983e08276afbdd6c20fe8f1','securityConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:01'),(301,'API_92bc10538452e5059980a0a68ff57611','uiConfiguration','','cmii-uav-feedback','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:01'),(302,'API_38e7b789c679b2e181a351ba0c48f3e4','swaggerResources','','cmii-uav-feedback','/swagger-resources','',_binary '\0',_binary '\0','2020-06-24 01:31:01',1,'2020-07-01 06:28:01'),(303,'API_9e1361a03705c615f98b19b4e7e3b5bd','errorHtml','','cmii-uav-feedback','/error','',_binary '\0',_binary '\0','2020-06-24 09:31:01',1,'2020-06-24 01:31:01'),(304,'API_df40b16c8af79cc961c67057562e3ec6','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/zydAreaLimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-07-01 06:13:38',1,'2024-11-14 03:10:22'),(305,'API_51551e9c8da1083fafaf04aa977de44f','模糊查询无人机编码和型号列表','','cmii-uav-device','/api/uav/plane/queryUavCodeMode',NULL,_binary '\0',_binary '\0','2020-06-28 07:04:11',1,NULL),(306,'API_f4c18ef93dddfe79981ccc1ccc4d7fe5','模糊查询无人机编码和型号列表','','cmii-uav-device','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-02 23:05:42',1,'2020-07-02 16:59:32'),(307,'API_c62b95dc88d0b6772dda252389e33ed6','检查空域是否重复-n','','cmii-uav-airspace','/zydAirspace/judgeAirspaceIntersect.do','POST',_binary '\0',_binary '\0','2020-06-30 02:58:54',1,'2020-06-29 19:04:16'),(308,'API_68a121b56fb6d1f3a2fec0b3b172b5ff','模糊查询无人机编码和型号列表','','cmii-uav-surveillance','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-06-29 06:55:15',1,'2020-07-01 07:01:25'),(405,'API_03199eef7972d4f754ebfed14a4d8ee7','删除飞行报告附件地址:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(406,'API_c94f5c7650a167b0836f08a3e339de7e','保存附件','','cmii-uav-waypoint','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(407,'API_87c753396b50cf21b07804a712e01ed4','获取飞行作业信息:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-06-30 09:34:35'),(408,'API_e45c895f2e3c1ce451277932071df036','停止作业','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(409,'API_63488ccf019a1c67a50c077f4e7c8951','获取所有的飞行作业信息','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(410,'API_22fb324767fdfdef4a2c96a707d66cfe','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(411,'API_22233893c6a77ac0cc161383336c7381','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(412,'API_d1aa0342ea4a1fc38d9a19a36018ad87','选择飞机','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(413,'API_48ff1233dd1e1811a25eceee27a29828','起飞','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(414,'API_83213c76225b7b4d6854d345cc62ce42','暂停作业','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(415,'API_52bc2f64116a946693a387adc75f2474','继续作业','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 02:36:23'),(416,'API_a8a0348bca1c4ccffb3959946b7c3563','返航','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(417,'API_1c047b8d17af63b7a35cdc44859481d7','降落','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(418,'API_a88ee7ca803e380026953c88057be0d5','确认着陆','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(419,'API_eae9b02683d2e40e50ee8a640424eac4','获取:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-06-30 09:34:35'),(420,'API_67f785173c25f7d9569a8b2f0c4a9ef3','获取所有的','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:35',1,'2020-07-01 06:32:24'),(421,'API_c649c685ce671565d57265a72720ae57','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(422,'API_198d95167c3219ebecceca94c1dcf96a','文件打包下载','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(423,'API_296173217583fdf0bdcae776dbd2b478','获取所有的','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(424,'API_8d59e9b0241bfcf0196258db59c52bdd','新增和保存(需要包括航点参数)','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(425,'API_972f33164a3bb77cf04b3217773b02d7','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(426,'API_615cc5d27b63a48ac3e8a99840c842d1','获取:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(427,'API_48d8d948f9d3dfcf51fc0fdc5a91528b','删除:根据id删除航线和航点','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(428,'API_c998f185393ba2a6cfbe5ca0902fb2cf','导入指令集','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/importCommand','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(429,'API_7b0c8872f619a5656e30e9a6d43bd0a2','获取:根据id','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(430,'API_030a5368cf9bb0fddd995a19668f1aea','删除:根据id并保存剩下点','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/deleteFlushPoint','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(431,'API_af55b831faa0400399e920499acc8225','获取所有的','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/list','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(432,'API_8c2fa307536617360def7877255174ff','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(433,'API_bc6dea3cd12ea84f3dbcaed6ebe3a54c','获取:根据搜索数据传入的对象','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/json','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(434,'API_b02c75beefa57fdcf8c9a7d2d33189da','根据id删除航点','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(435,'API_86e37cb419359c628624a328866fdad2','获取所有航点:根据航线id','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(436,'API_adb8cc3d03cf80c9322ccbe4a4df7c3f','根据航线id清空航点','','cmii-uav-waypoint','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(437,'API_a9546080612462887b543d5835354159','swaggerResources','','cmii-uav-waypoint','/swagger-resources','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2022-04-25 02:50:20'),(438,'API_41642d48ec6460a8dc7ccd0c11c8ca90','uiConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2022-04-25 02:50:20'),(439,'API_67dd77768e42e1f32694694d106c12c7','securityConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2022-04-25 02:50:20'),(440,'API_c04d080dbe4af42982229ee56d673d90','载荷设备型号详情查询','','cmii-uav-waypoint','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(441,'API_99654785a53be32b169eefec49b73b53','无人机绑定的载荷列表','','cmii-uav-waypoint','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(442,'API_c805f2cb18b0728dc3e62c6fcf1b2e09','downloadByUrl','','cmii-uav-waypoint','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(443,'API_602b90c614e5098802fc76501493c536','upload','','cmii-uav-waypoint','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(444,'API_17a8ee1b67a3899d77335f8e68fc02c8','查询公司/机构所属的无人机编码列表','','cmii-uav-waypoint','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2023-05-04 09:35:55'),(445,'API_8d9f3877d317319dcd7d157b7fb4128b','设置无人机在线状态','','cmii-uav-waypoint','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2023-05-04 09:35:55'),(446,'API_5b233da335abf5911337f5ad833fe4d2','查询无人机类型详情','','cmii-uav-waypoint','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(447,'API_9ccf17d4e9ca5038102917bbc52160bd','根据无人机编码查询该无人机是否存在','','cmii-uav-waypoint','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2023-05-04 09:35:55'),(448,'API_a98060907e17612eaf178fc6e70946bc','查询所有无人机编码列表','','cmii-uav-waypoint','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(449,'API_216b336c5ca8d275a2d41d5b4d5e08ae','模糊查询无人机编码和型号列表','','cmii-uav-waypoint','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(450,'API_ed0a1707acc22bfbed3fa40054eb6fcf','无人机绑定的载荷列表查询','','cmii-uav-waypoint','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(451,'API_5e20a049d88bed87f87aa5792c0f43f5','按无人机编码查询无人机详情查询','','cmii-uav-waypoint','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2020-07-01 06:32:24'),(452,'API_6dba74458a91bd2993cbf6dc17881d1f','error','','cmii-uav-waypoint','/error','',_binary '\0',_binary '\0','2020-06-30 09:34:36',1,'2024-11-12 03:52:42'),(453,'API_fa2680a92192033899a2481e8fb3bb6e','根据token获取用户基本信息','','cmii-uav-user','/system/checkPassword','POST',_binary '\0',_binary '\0','2020-07-01 06:23:39',1,'2024-11-06 12:16:37'),(454,'API_369462ef1c44ffe0533a3ac24f92a675','删除飞行作业信息:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-01 06:32:24',1,NULL),(455,'API_9929aaba8279679784e36c84961bcc74','删除:根据id','','cmii-uav-waypoint','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-01 06:32:24',1,NULL),(456,'API_92c73e3d40fab73a5aac050b6022394c','根据用户id获取用户详细信息','','cmii-uav-user','/user/getDetailById','POST',_binary '\0',_binary '\0','2020-07-02 02:47:43',1,'2024-11-06 12:16:34'),(457,'API_7b05767d9cf76eaa468bda44cadf1b49','删除飞行报告附件地址:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(458,'API_ee6bb3f642cae30a2aa852cd20ea9d85','保存附件','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(459,'API_5006d92bf004145da52981978815385d','获取飞行作业信息:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(460,'API_ccca8f6d0bc59f0335afdc27e7149187','删除飞行作业信息:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(461,'API_9d48881435ce7a755d77524da0cda1fa','停止作业','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(462,'API_ed6e9f6be729ddcaf41760e44d951235','获取所有的飞行作业信息','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:48',1,NULL),(463,'API_5bf4186e59ffc30663efa061c0a47630','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(464,'API_79f83b747fbef0b7c9604eeb9276b37e','暂停作业','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(465,'API_4b65648a2f649d0366a895e778f80d26','降落','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(466,'API_5783719d0bc46cedc5c150c0f3e80e10','确认着陆','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(467,'API_b312fe147b9dea48a801f5a5b608505f','起飞','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(468,'API_17e0abb32e70c4ae52ab541276deaddd','返航','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(469,'API_2b6c410b748f8a12c48c64d63bd8894b','选择飞机','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(470,'API_14e1c489991410b742810fee3bf68f38','继续作业','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(471,'API_42b45cd4e3f3c18b16903803d8e702a1','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-07-02 03:22:49',1,NULL),(472,'API_1c1721a7d2fcb6c7810052b134fccf93','获取:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(473,'API_8e709398009f598c6402d484b485ff0d','删除:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(474,'API_eebb1a8f312d378489c69a51b12b5b10','获取所有的','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(475,'API_9ee7bbd2ed8e09382bfe4a8bc2bad7d7','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(476,'API_64750ec137c20b76752080c0f2f19e29','文件打包下载','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(477,'API_ffbc7a1cad559836808941b356d25429','获取所有的','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(478,'API_6e06d94ed40a1f0d3213d97bdbbd4c84','新增和保存(需要包括航点参数)','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,'2020-07-07 07:35:53'),(479,'API_5d592e3807192e9f4a28d0e0899917dd','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(480,'API_3c330fc21987a359514a529ab6c72d78','删除:根据id删除航线和航点','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(481,'API_7ded17fffa01fa4089f259e66aa30979','获取:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(482,'API_718da25f9291c7056e3c15173c0a6f01','导入指令集','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/importCommand','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(483,'API_4ed72c82c3a44d20eddf0d01c564f630','获取:根据id','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(484,'API_3ebf0860798da6da9bd70b60427ed12c','删除:根据id并保存剩下点','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/deleteFlushPoint','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(485,'API_c04ec3d2006a47a8845c4648ead477fc','获取所有的','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/list','GET',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(486,'API_f0aafc5e186d9513795454d4e5365e83','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(487,'API_1498fec782d0271c47fa667ad81f94e2','根据id删除航点','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:50',1,NULL),(488,'API_aa5572c64c2940354a85588593e4eceb','获取:根据搜索数据传入的对象','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/json','POST',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(489,'API_95152d1e517ef888fc53149a9a89d077','获取所有航点:根据航线id','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(490,'API_a96f958b5463beb6424def7b94cb15b1','根据航线id清空航点','','cmii-uav-waypoint-dev','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(491,'API_11956da36b4a1197dc3c38bc3e749395','uiConfiguration','','cmii-uav-waypoint-dev','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(492,'API_8e17f291de7a4cfa6c57a773fd2da2cc','swaggerResources','','cmii-uav-waypoint-dev','/swagger-resources','',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(493,'API_0f89d05898b9ac137feb928d49ba6512','securityConfiguration','','cmii-uav-waypoint-dev','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-02 03:22:51',1,NULL),(494,'API_2a44fa7b71b2d945970e8f3fe3ccab4a','无人机绑定的载荷列表','','cmii-uav-waypoint-dev','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(495,'API_92fa68477d5837f207b3af3752c3eb37','载荷设备型号详情查询','','cmii-uav-waypoint-dev','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(496,'API_388e61483ca0a881e336adf8ed6aeabd','upload','','cmii-uav-waypoint-dev','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(497,'API_0f95eef2b37eb81b7d22499f1ef0c111','downloadByUrl','','cmii-uav-waypoint-dev','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(498,'API_f78185399115fc498fec7699c462c74b','无人机绑定的载荷列表查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(499,'API_823c89e5b58dd52412fbeeaf5214e9c5','按无人机编码查询无人机详情查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(500,'API_efe78dda29c2037aa2750db2f3f45a3f','设置无人机在线状态','','cmii-uav-waypoint-dev','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(501,'API_d2532b838b1952c7c197e5c505d09293','查询所有无人机编码列表','','cmii-uav-waypoint-dev','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(502,'API_bd03c2bf3273581657892b69ca202b65','查询无人机类型详情','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(503,'API_bf705ab447776c502982d8888cd6c51d','根据无人机编码查询该无人机是否存在','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(504,'API_b45d08d586c93f6310ce1cc6cb507a80','查询公司/机构所属的无人机编码列表','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(505,'API_c11c24f57d2f2fdc95758a05b61ce93a','模糊查询无人机编码和型号列表','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,NULL),(506,'API_a68408da04ab5173aad0a4500ee142b1','errorHtml','','cmii-uav-waypoint-dev','/error','',_binary '\0',_binary '\0','2020-07-02 03:22:52',1,'2020-07-02 03:22:52'),(507,'API_6b6d6d9e3ab6685d17548baf4822a486','查询无人机是否可用','','cmii-uav-device','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-03 03:13:13',1,'2024-11-07 09:01:53'),(508,'API_462dc48c0c4286daadfa9d2ee087edac','设置无人机可用状态','','cmii-uav-waypoint-dev','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-03 05:48:19',1,NULL),(509,'API_ddb994a1c31625b31395ccecedab0b64','查询无人机是否可用','','cmii-uav-waypoint','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-03 06:55:01',1,'2023-05-04 09:35:55'),(510,'API_9c9693f0afde811d434735fa9aea64ed','新增无人机载荷绑定','','cmii-uav-device','/api/uav/plane/addUavLoadBound','POST',_binary '\0',_binary '\0','2020-07-03 07:39:30',1,'2024-11-07 09:01:55'),(511,'API_f5ebc5c8257ab1f457eca7f3826d7d3f','查詢无人机在线状态','','cmii-uav-device','/api/uav/plane/queryOnlineStat','GET',_binary '\0',_binary '\0','2020-07-06 02:28:36',1,NULL),(512,'API_4a03921d3a436f3b7b513cd1b239e7ee','查询无人机在线状态','','cmii-uav-device','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2020-07-06 02:31:16',1,'2024-11-07 09:01:55'),(513,'API_f3264318305479db70f96e13ece707a0','查询无人机是否可用','','cmii-uav-surveillance','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-07 02:30:43',1,'2023-03-29 09:05:05'),(514,'API_b2990c8ee37e7e401bd1b6c50fb56255','新增和保存航线(不含航点参数)','','cmii-uav-waypoint-dev','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-07 07:35:53',1,NULL),(515,'API_ca2b99acd004cc719b49c56bcff0c90a','新增和保存航线(不含航点参数)','','cmii-uav-waypoint','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-07 08:48:54',1,NULL),(516,'API_712ba6b5354ac38399751baa652f06fe','根据rsrp和snr计算网络信号','','cmii-uav-surveillance','/surveillance/testNetWorkLevel','POST',_binary '\0',_binary '\0','2020-07-10 07:04:18',1,NULL),(517,'API_06e9072fb150f382aab71481201ca329','无人机绑定的载荷列表查询','','cmii-uav-waypoint','/api/uav/plane/queryDevByUav','POST',_binary '\0',_binary '\0','2020-07-14 09:34:10',1,NULL),(518,'API_0b1b2735fc0cf315004cfb8aed751df7','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-surveillance','/surveillance/queryUavPoints','GET',_binary '\0',_binary '\0','2020-07-15 02:25:45',1,'2024-11-12 03:56:10'),(519,'API_cbdaa899dcb64c399d7bc9c219061d2e','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/surveillance/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-07-15 02:25:45',1,'2024-11-12 03:56:09'),(520,'API_bc1d3f8b20f89adbf62b85412505c010','无人机绑定的载荷列表查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryDevByUav','POST',_binary '\0',_binary '\0','2020-07-15 07:39:23',1,NULL),(521,'API_276eab3a3808374fbfe8de8d02d70ce2','downloadTif','','cmii-uav-airspace','/zydAirport/download','GET',_binary '\0',_binary '\0','2020-07-22 07:08:40',1,NULL),(522,'API_ab61426016701c41d6d105e449c758ac','按条件分页查询设备动作匹配信息','','cmii-uav-device','/api/uav/model/match/queryUavDevActionMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(523,'API_535c97cf50f3eda571ddfb1efb218e79','模糊查询设备类别列表','','cmii-uav-device','/api/uav/model/match/queryUavDevType','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(524,'API_39f82b2e8110c36984e600118ad1eaa4','模糊查询设备型号列表','','cmii-uav-device','/api/uav/model/match/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(525,'API_64332037c0514f52ddf78f4c9a3ab076','新增设备动作匹配','','cmii-uav-device','/api/uav/model/match/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(526,'API_fdd2e5544873ecbaf2ce307a7c5f5f10','设备动作匹配详情查询','','cmii-uav-device','/api/uav/model/match/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(527,'API_808739a8cc7b231e494cd30aec295f49','修改设备动作匹配','','cmii-uav-device','/api/uav/model/match/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(528,'API_654bf387a6252569a2e51365400158d3','删除设备动作匹配','','cmii-uav-device','/api/uav/model/match/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(529,'API_7f9871fdeff9ca1ae4a1835f5953b9f5','按条件分页查询设备型号匹配信息','','cmii-uav-device','/api/uav/model/match/queryUavDevTypeMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(530,'API_33795e48af2d27704a7d2245e9afe201','新增设备型号匹配','','cmii-uav-device','/api/uav/model/match/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(531,'API_6afc01708c868ce643c7135e63efa123','设备型号匹配详情查询','','cmii-uav-device','/api/uav/model/match/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(532,'API_d3c0da333c08da8260d868d0d600b7ef','修改设备型号匹配','','cmii-uav-device','/api/uav/model/match/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(533,'API_f111cc314d60f5a749d1c3373213e3d2','删除设备型号匹配','','cmii-uav-device','/api/uav/model/match/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(534,'API_b4ca16991a9190c8ead8995ad9e9f186','按条件分页查询摄像头型号信息','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamModelPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(535,'API_da49fb454fce5b2834b2a53687a3a522','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamMnfName','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(536,'API_041d7626b7c2540c8400f9cb2e538da2','模糊查询型号列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(537,'API_9a8ef42fcbaa6d74a61acf3854866da8','新增摄像头载荷设备型号','','cmii-uav-device','/api/uav/model/load/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(538,'API_ebe8dfc49ac98b561aba215179a73852','摄像头载荷设备型号详情查询','','cmii-uav-device','/api/uav/model/load/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(539,'API_018b39e95d79ce47d6e7c103b103db11','修改摄像头载荷设备型号','','cmii-uav-device','/api/uav/model/load/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(540,'API_296c30cc73141403079abf0bfddef826','删除摄像头载荷设备型号','','cmii-uav-device','/api/uav/model/load/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(541,'API_3f60dabec398f384b88a9c4e352190a0','按条件分页查询喊话器型号信息','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkModelPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(542,'API_c60c9eadda9a7835eee14f1cc3aa3f25','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkMnfName','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(543,'API_76aafb94843e22f337f51abb0f9a7eea','模糊查询型号列表','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(544,'API_f4b196b1114bce746e99ee28fde8d515','新增喊话器载荷设备型号','','cmii-uav-device','/api/uav/model/load/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(545,'API_1bf47e388ea94d766fed4cbb0176ada4','喊话器载荷设备型号详情查询','','cmii-uav-device','/api/uav/model/load/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(546,'API_70f8e855119aacbde21df4a29d18e3ad','修改喊话器载荷设备型号','','cmii-uav-device','/api/uav/model/load/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(547,'API_1dea3dc8f288a21ab0041d736dbb15e4','删除喊话器载荷设备型号','','cmii-uav-device','/api/uav/model/load/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(548,'API_27e13c40b0b9080b1d3840915c309862','按条件分页查询无人机型号信息','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneModelPage','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(549,'API_c3f718a97fd1262bbdeb851eff9b0ac7','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneMnfName','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(550,'API_5d4853d4e32a4371a8787a64b9ed6db6','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(551,'API_1391e81438612de83157e4b78c5b696f','模糊查询无人机形态列表','','cmii-uav-device','/api/uav/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(552,'API_9e7794344e69ecea91c621c1296b3ecf','模糊查询无人机尺度列表','','cmii-uav-device','/api/uav/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(553,'API_bc9f0cf58ba25405445d8872014ff932','新增无人机类型信息','','cmii-uav-device','/api/uav/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(554,'API_a0a1e7f64038265e8712a57d6d1784f6','查询无人机类型详情','','cmii-uav-device','/api/uav/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(555,'API_15d1fb8abe44cd542d1327486aa58d95','修改无人机类型信息','','cmii-uav-device','/api/uav/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(556,'API_23881e8cdb13a0d03a8d368dfa367b9a','删除无人机类型信息','','cmii-uav-device','/api/uav/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 05:48:38',1,NULL),(557,'API_5899c9049b635f4549f8979c6044dcf4','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevActionMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(558,'API_93fb6152cb3c938b50538beeb30d2d8c','模糊查询设备类别列表','','cmii-admin-data','/api/uav/model/match/queryUavDevType','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(559,'API_7218da2ce96942496fbacd9bd837c00e','模糊查询设备型号列表','','cmii-admin-data','/api/uav/model/match/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(560,'API_1967b614f9cf51102e550218537873c8','新增设备动作匹配','','cmii-admin-data','/api/uav/model/match/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(561,'API_51d3f67adccac7ef512df260539a3902','设备动作匹配详情查询','','cmii-admin-data','/api/uav/model/match/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(562,'API_b7d1c092053f837b75996c9db918b67a','修改设备动作匹配','','cmii-admin-data','/api/uav/model/match/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(563,'API_76f9d01d647615dda7a7158a42bdca08','删除设备动作匹配','','cmii-admin-data','/api/uav/model/match/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(564,'API_3f2a925129ec77ed72d1ef4387aa5f32','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevTypeMatchPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(565,'API_1cbbe06cd6da71f1dfec4b7509c620da','新增设备型号匹配','','cmii-admin-data','/api/uav/model/match/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(566,'API_53161d80f92973b971ed259fdf3d2fc7','设备型号匹配详情查询','','cmii-admin-data','/api/uav/model/match/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(567,'API_dce52a7fb09f48385fe0cb32e9137adf','修改设备型号匹配','','cmii-admin-data','/api/uav/model/match/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(568,'API_65917752e367d55b3ab9a76284ff2785','删除设备型号匹配','','cmii-admin-data','/api/uav/model/match/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(569,'API_6bc8786242b7900ac77f6b4f98ca96af','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModelPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(570,'API_3db4b7d45b2d912bd24ab010ebdac54d','模糊查询生产厂家列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamMnfName','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(571,'API_e8b92a884917cd0f01dedd5d7e81adc1','模糊查询型号列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(572,'API_b203caf0255effc1c5aa72db5c918636','新增摄像头载荷设备型号','','cmii-admin-data','/api/uav/model/load/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(573,'API_d8293f15d5a7331d6a14552d6eda501a','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(574,'API_af0d502a1a1d1f95667ed3a6335ec1ac','修改摄像头载荷设备型号','','cmii-admin-data','/api/uav/model/load/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(575,'API_4eb7510d5465b0d5ab9416e6b63e9587','删除摄像头载荷设备型号','','cmii-admin-data','/api/uav/model/load/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(576,'API_ca99bf6c575bdde89076ddd73baeece7','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModelPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(577,'API_fbf8d455f2742aea782642ff87509361','模糊查询生产厂家列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkMnfName','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(578,'API_b7dce75bec39d0076cb80f8a003dd368','模糊查询型号列表','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(579,'API_f511b0f4cb2548b6e0e6e768064215ca','新增喊话器载荷设备型号','','cmii-admin-data','/api/uav/model/load/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(580,'API_69a5e753c6a4947c280fa435e5cc382d','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(581,'API_c4ce8403eb10f19049ea6e419c68f154','修改喊话器载荷设备型号','','cmii-admin-data','/api/uav/model/load/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(582,'API_f4da566fc2be7da6d82c5a70c400bd77','删除喊话器载荷设备型号','','cmii-admin-data','/api/uav/model/load/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(583,'API_a49efce53d6b05d74b65b58476f38be8','按条件分页查询无人机型号信息','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModelPage','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(584,'API_6ff473dd987a8c76ed8b2f4984296457','模糊查询生产厂家列表','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneMnfName','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(585,'API_c20039770b6aae7e8a1b7745f6327bcb','模糊查询无人机型号列表','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(586,'API_c67c734fd9d0de395ea13bef968719b7','模糊查询无人机形态列表','','cmii-admin-data','/api/uav/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(587,'API_63afe1ce184a8dd531d15b8b22d2c6f2','模糊查询无人机尺度列表','','cmii-admin-data','/api/uav/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(588,'API_74e1905baffd261b7bffb8d5f05735cd','新增无人机类型信息','','cmii-admin-data','/api/uav/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(589,'API_0ba560960014c0310836e8a0c254e729','查询无人机类型详情','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(590,'API_33fbd6b1818e72a3dfaaf1e998d2ec5b','修改无人机类型信息','','cmii-admin-data','/api/uav/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(591,'API_b8ce467f847d20750ff5a7c5c6500dbd','删除无人机类型信息','','cmii-admin-data','/api/uav/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,NULL),(592,'API_3f2d5ac4692a6e334f1803d6e43b1b1f','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2022-04-25 02:50:11'),(593,'API_e91843e6c80f66232751894ca6daab2a','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2022-04-25 02:50:11'),(594,'API_73a8cc79afcfb72994c36e356120d1b6','swaggerResources','','cmii-admin-data','/swagger-resources','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2022-04-25 02:50:11'),(595,'API_722c394501c759be1a1615c1195dce7e','errorHtml','','cmii-admin-data','/error','',_binary '\0',_binary '\0','2020-07-23 06:28:54',1,'2024-11-06 12:16:55'),(596,'API_eb363709497bd1f067fd159e80929ffc','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:42',1,NULL),(597,'API_a7012c3053806521be260c0b4d9d15c8','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/uav/model/match/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:42',1,NULL),(598,'API_d1ca7317c3bb33925d1902305959cf89','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:42',1,NULL),(599,'API_2c62ea9a254c0cc05afa234de6ed89d4','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/uav/model/load/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:43',1,NULL),(600,'API_58aa8ba38cfdfcaf93815c094cbec20c','按条件分页查询无人机型号信息','','cmii-admin-data','/api/uav/model/plane/queryUavPlaneModelPage','POST',_binary '\0',_binary '\0','2020-07-23 06:50:43',1,NULL),(601,'API_604e3074af14cbb30c078126e109e9e3','发布拼图结果','','cmii-uav-airspace','/zydPicture/picStatus.do','GET',_binary '\0',_binary '\0','2020-07-27 09:02:09',1,'2020-07-28 05:55:25'),(602,'API_0c90f635daeb5104d2e03b3464457e85','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavDevList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(603,'API_9e14e7a1bafba4832369d961c5b08825','模糊查询载荷编码列表','','cmii-uav-device','/api/uav/load/queryDevCodeList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(604,'API_80ce85c003494389334805ba595d55c8','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryDevTypeList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(605,'API_ac0fb801f30af2ab6ea728b1c1011e42','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryDevMnfList','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(606,'API_e9bb92c8d69cae8f377e084fa18e3241','模糊搜索设备型号列表','','cmii-uav-device','/api/uav/load/queryDevModelList','POST',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(607,'API_1c2e464bff9399f17f039d6b53831215','模糊查询包括子公司的无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCode','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,'2024-11-07 09:01:48'),(608,'API_53b3b597f778587f08f78086299c4ceb','按条件分页查询包括子公司的无人列表','','cmii-uav-device','/api/uav/plane/queryUavPlanePage','POST',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,'2024-11-07 09:01:48'),(609,'API_a307b67340f5abaf329719766ee25fba','按无人机编码查询无人机详情查询','','cmii-uav-device','/api/uav/plane/queryUavPlaneDetail','GET',_binary '\0',_binary '\0','2020-07-27 09:27:55',1,NULL),(610,'API_d3f5df26ecf060c6ac3e7f88391afd06','获取载荷分页列表','','cmii-uav-device','/api/uav/load/queryUavLoadPage','POST',_binary '\0',_binary '\0','2020-07-27 09:44:31',1,'2024-11-07 09:01:52'),(611,'API_b087fe64486964245b2744de9258e2b0','获取新载荷编码','','cmii-uav-device','/api/uav/load/queryUavLoadCode','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(612,'API_2754c22a1a1fd50c30be4bc58a5b1400','获取未绑定载荷列表','','cmii-uav-device','/api/uav/load/queryUnboundUavLoadList','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,'2024-11-07 09:01:52'),(613,'API_d4f1d70e72fb7529b06d5d099fea9d7b','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/load/checkLoadBoundRelations','POST',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(614,'API_bc16b644074166c2d1297760d7877e1e','模糊查询载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadCodeList','POST',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(615,'API_8a220c939afe760f0127208661419e44','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadTypeList','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(616,'API_6192eb0ebbceef9e553c52866f06cf27','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryLoadMnfList','GET',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(617,'API_482d2def80cd0512d232aedca4ee64e9','模糊搜索设备型号列表','','cmii-uav-device','/api/uav/load/queryLoadModelList','POST',_binary '\0',_binary '\0','2020-07-28 03:20:51',1,NULL),(618,'API_a619c2f923c705295dcfea1114ea3066','发布拼图结果','','cmii-uav-datahandler','/zydPicture/upload.do','GET',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(619,'API_322b13c9cc7d1386f9ac4cc9a1508483','查询拼图状态','','cmii-uav-datahandler','/zydPicture/picStatus.do','GET',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,'2020-07-31 07:05:48'),(620,'API_7e7446f72cac0bd55c2511901258974c','securityConfiguration','','cmii-uav-datahandler','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(621,'API_9b8aa1082148f1019822ab2547d3edd8','uiConfiguration','','cmii-uav-datahandler','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(622,'API_f3a491558a67403231c033d5d2fcc3bb','swaggerResources','','cmii-uav-datahandler','/swagger-resources','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,NULL),(623,'API_28b3499c95b13d5bc0a5f930d87758bc','errorHtml','','cmii-uav-datahandler','/error','',_binary '\0',_binary '\0','2020-07-29 06:25:18',1,'2020-07-29 06:25:18'),(624,'API_b68b780af07eb5a6f3f1ef29b5bbc3b3','删除飞行报告附件地址:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(625,'API_23fbb52d1a3086d932dc34400a42d7ed','保存附件','','cmii-uav-mission-dev','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(626,'API_a44941b7c68138d85ba19540888ae46b','获取飞行作业信息:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(627,'API_ab9f8f043bf10fa15591320a42c4ba71','删除飞行作业信息:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(628,'API_13f49e16410ca88d34d6d0dc8282039d','停止作业','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(629,'API_a7a74a7359ab91a37fd0128025a36d81','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(630,'API_032f6a472ad29eba139dd9ecc275b39c','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(631,'API_20c7e44e3465cb2e938a2a6fa9e2681f','选择飞机','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:08',1,NULL),(632,'API_c3b349cfd7ca7a1b90da994a6fb811fd','起飞','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(633,'API_c5a8596c9abd2f46eb8928415cc47e43','暂停作业','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(634,'API_9b036697a082770753eed623d5cb600c','降落','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(635,'API_083df0f500ffb2b57a4b8a960868d3eb','确认着陆','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(636,'API_e8eb7ca9f583cc3b1196f7d8da3f0b6b','返航','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(637,'API_8c9722048a44a833bf9dc16bc9eed257','继续作业','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(638,'API_72b1c589129e55af65a30d38297b7dac','获取:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(639,'API_2b54ed8766a95dfcf6849e250fc6e6c1','删除:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(640,'API_5c82e201198154a672d13a514ae3a0b7','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(641,'API_67894e8a572af492c7b55ff6af3b524d','文件打包下载','','cmii-uav-mission-dev','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(642,'API_5a1063e7a1fc0298f4c3f81f4fab4e62','新增和保存(需要包括航点参数)','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:09',1,NULL),(643,'API_7cc98ab2429f72588dfd029a0c73cb52','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(644,'API_7e31e79fc32bc58a16f91169305a7401','获取:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(645,'API_d8821a3df137446203c2c25bec85c888','新增和保存航线(不含航点参数)','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(646,'API_e68003ffb1b201d8c74757da895c92dd','删除:根据id删除航线和航点','','cmii-uav-mission-dev','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(647,'API_f9c89d02164cc3b9319c90a0a42460c1','获取:根据id','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(648,'API_46763542c352a5ae6680cdfecca57529','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(649,'API_1cacba8c6f1de0897ab47363b3d83b62','根据航线id清空航点','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(650,'API_1591fff4d18f05b77066a4096b7db7a4','获取所有航点:根据航线id','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(651,'API_6e21f0450ebef9af96cca2fe4c24e4d9','根据id删除航点','','cmii-uav-mission-dev','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(652,'API_ed7fbacaa97d25c113e49ea5de94a8ca','swaggerResources','','cmii-uav-mission-dev','/swagger-resources','',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(653,'API_1c7378d1a7777697c169499ff15167d2','uiConfiguration','','cmii-uav-mission-dev','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(654,'API_0d4755f8ada706eaf76af41bf7d7f473','securityConfiguration','','cmii-uav-mission-dev','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(655,'API_ff29669b3ccb8e9b4d3f43a0f167c0f5','无人机绑定的载荷列表','','cmii-uav-mission-dev','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-07-30 08:12:10',1,NULL),(656,'API_cc880669c82e9b47ad9fb878bfe5bd1d','载荷设备型号详情查询','','cmii-uav-mission-dev','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(657,'API_e6e6b5f809433f60f0e1bc21d13f3c66','downloadByUrl','','cmii-uav-mission-dev','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(658,'API_f3bc26673cbe90dd73294abf81b33769','upload','','cmii-uav-mission-dev','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(659,'API_feab5b24fe03213dcf7d320c25c5395c','设置无人机可用状态','','cmii-uav-mission-dev','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(660,'API_2a3af7bd985f01a75bbc685bc20cd421','设置无人机在线状态','','cmii-uav-mission-dev','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(661,'API_306809c9f57903aaea195ab9cf80b9bd','无人机绑定的载荷列表查询','','cmii-uav-mission-dev','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(662,'API_5ad9bdb6ee05adca8aa61aaec2f6ba61','查询所有无人机编码列表','','cmii-uav-mission-dev','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(663,'API_5f617715c4820e55883e18409179e0fd','按无人机编码查询无人机详情查询','','cmii-uav-mission-dev','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(664,'API_5c4601cce6c8979556400c03e736dde2','根据无人机编码查询该无人机是否存在','','cmii-uav-mission-dev','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(665,'API_eb7239432ac109f18519dbac5e0a1bf6','模糊查询无人机编码和型号列表','','cmii-uav-mission-dev','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(666,'API_edf969666a889d3259e089fc4b768512','查询公司/机构所属的无人机编码列表','','cmii-uav-mission-dev','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(667,'API_0d18239ac43e5ada7e02f025bc3f3f91','查询无人机类型详情','','cmii-uav-mission-dev','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-30 08:12:11',1,NULL),(668,'API_7e457275af7cbc1c5ccfaa2383dd649d','errorHtml','','cmii-uav-mission-dev','/error','',_binary '\0',_binary '\0','2020-07-30 08:12:12',1,'2020-07-30 08:12:12'),(669,'API_f296644f1e4b49618081a04992fcd41d','文件打包下载','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/downloadFile/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(670,'API_b442c7bd88f6d60098ba92755d037f42','获取:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(671,'API_0cbeab2252a7e2d50d694f3aa5b2af36','删除:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(672,'API_7ea59b7fbe948c19168ce7154734b25f','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission','/api/uav/waypoint/flyMissionReport/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:32',1,NULL),(673,'API_d638ead72e19267864701ff2ecc4cd4b','模糊搜索分页:作业名/作业描述/关联的无人机,另外:作业状态为点击不同按钮','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(674,'API_0713d1929aaa9a06f2982a4c8872e80d','选择飞机','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/pickUpUav/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(675,'API_8887a218978591885a8b7a26fcd2ed02','起飞','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(676,'API_6165afd9cb227885ea8b2f2254a6f5f0','暂停作业','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/pause/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(677,'API_6997b71b7e99e813027693c82c3c4e0d','继续作业','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/continueMission/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(678,'API_b785705fec61b94235fe2620f744905c','返航','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(679,'API_62d9a85e557684563447a41558689e4d','降落','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(680,'API_d3d19ab457290e2bdf50305c38e754de','确认着陆','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/confirmLanding/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(681,'API_62b4d39617de7ce79b029f09c7553aab','获取飞行作业信息:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(682,'API_b1b4433712bbbca796c7c900153d8580','删除飞行作业信息:根据id','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(683,'API_d9a837704cc4817c8b81bb803f57c9b3','停止作业','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/stop/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(684,'API_e9c49bd6eafff28ce0bf5645787e2b39','飞行作业信息保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission','/api/uav/waypoint/flyMissionInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(685,'API_76adccee6515efaa0c0b4264ae889e9d','删除:根据id删除航线和航点','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/delete/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(686,'API_a8613a36aab4b62771759ef2d7230fdf','模糊搜索分页:航线名,飞行器类型(形态)','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/json','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(687,'API_409b5246600b7ffe8f6953a5ed691d16','新增和保存航线(不含航点参数)','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/savePath','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(688,'API_1034fe8f9bc80778bc63ad8ca3c86925','获取:根据id','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(689,'API_aec34c4dd45bac5a2cd5c54dd5143a25','新增和保存(需要包括航点参数)','','cmii-uav-mission','/api/uav/waypoint/flyPathInfo/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(690,'API_969fd11f15b8c304d99d2ad2e2e34894','删除飞行报告附件地址:根据id','','cmii-uav-mission','/api/uav/waypoint/flyAttachment/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(691,'API_3b30129d17353c961e4291a6e9b3f37d','保存附件','','cmii-uav-mission','/api/uav/waypoint/flyAttachment/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(692,'API_0ea3e1179b325977e761237f453a8b17','根据id删除航点','','cmii-uav-mission','/api/uav/waypoint/wayPoint/deleteById/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(693,'API_05bac7c26065554354ff21415e4efbbd','获取所有航点:根据航线id','','cmii-uav-mission','/api/uav/waypoint/wayPoint/getByFlyLineId/{flyLineId}','POST',_binary '\0',_binary '\0','2020-07-30 08:46:33',1,NULL),(694,'API_f7cd79aa093021f6bed3aca69813fff6','根据航线id清空航点','','cmii-uav-mission','/api/uav/waypoint/wayPoint/deleteByPath/{id}','DELETE',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(695,'API_a212f5a4fbe7aa75bb4cdea80de5843c','获取:根据id','','cmii-uav-mission','/api/uav/waypoint/wayPoint/{id}','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(696,'API_d54bc3f54e1661c8427ac6363804fa16','保存:包括添加和修改,根据是否有id进行的判断','','cmii-uav-mission','/api/uav/waypoint/wayPoint/save','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(697,'API_19cfef19173f25417b0904d4be0d8015','securityConfiguration','','cmii-uav-mission','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2022-04-25 04:00:35'),(698,'API_2b8687f49ca365335c5838b9f75540c0','uiConfiguration','','cmii-uav-mission','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2022-04-25 04:00:35'),(699,'API_10400f2566e22f60d5db124fdd35132c','swaggerResources','','cmii-uav-mission','/swagger-resources','',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2022-04-25 04:00:35'),(700,'API_d800bde2157daf1a7004ff9ee2008023','downloadByUrl','','cmii-uav-mission','/api/uav/minio/getObjectByUrl','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(701,'API_7de03fd9592cd80a577f5a3b04be240a','upload','','cmii-uav-mission','/api/uav/minio/putObject','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(702,'API_2c772d6da7b1ae3c1a781b55b2d2a0f3','载荷设备型号详情查询','','cmii-uav-mission','/api/uav/load/queryUavDevModelDetail','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(703,'API_be74c779b10aa8c29b238297ab8e1ffd','无人机绑定的载荷列表','','cmii-uav-mission','/api/uav/load/queryUavLoadsByUavId','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,NULL),(704,'API_41715de417bbbed33dc48b6eb5f8a37d','设置无人机在线状态','','cmii-uav-mission','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2023-07-18 04:08:27'),(705,'API_1eb2790593a57183b126a41ea7351127','查询公司/机构所属的无人机编码列表','','cmii-uav-mission','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-07-30 08:46:34',1,'2023-07-18 04:08:27'),(706,'API_cdbd9cce04ab08896fdb045ab3e6bcc1','查询所有无人机编码列表','','cmii-uav-mission','/api/uav/plane/queryAllUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(707,'API_56c6655597c676633cbdc96b584f5524','模糊查询无人机编码和型号列表','','cmii-uav-mission','/api/uav/plane/queryUavCodeModel','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(708,'API_9ed43647035b607cb38120acfa408233','无人机绑定的载荷列表查询','','cmii-uav-mission','/api/uav/plane/queryLoadByUav','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,NULL),(709,'API_a623a99289607f227f42e042763c09f8','根据无人机编码查询该无人机是否存在','','cmii-uav-mission','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2023-07-18 04:08:27'),(710,'API_63fef88b73fd2975ad046da78506cdb1','查询无人机是否可用','','cmii-uav-mission','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2023-07-18 04:08:27'),(711,'API_e3b214b620d2c3aadca75a586af6a81d','查询无人机类型详情','','cmii-uav-mission','/api/uav/plane/queryUavModelDetail','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(712,'API_14218b79282bc8ed2ea935e0a383a95a','按无人机编码查询无人机详情查询','','cmii-uav-mission','/api/uav/plane/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2021-01-22 02:33:36'),(713,'API_71dc636ca372766dc0ef5d750e4ade91','errorHtml','','cmii-uav-mission','/error','',_binary '\0',_binary '\0','2020-07-30 08:46:35',1,'2024-11-12 01:20:38'),(714,'API_1f0c64327ac9e6f437fea4f89b45d7d5','保存','','cmii-uav-waypoint','/api/uav/waypoint/airline/save','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(715,'API_dac59707cfe46fcd4da6bc3f140b4a20','复制','','cmii-uav-waypoint','/api/uav/waypoint/airline/copy_air_line','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(716,'API_3426a3c0d55683ae2423c3a1083d38a7','暂存','航线ID不存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/temp_store','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,'2020-08-04 09:19:32'),(717,'API_98cf057653544929096a894a684e7407','批量删除和删除','','cmii-uav-waypoint','/api/uav/waypoint/airline/delete_air_line','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(718,'API_5b72d08145bc75740f47c86b48df5ba7','获取详情','','cmii-uav-waypoint','/api/uav/waypoint/airline/query_air_line_detail','GET',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(719,'API_a9e96281fdd0d4a3d3ba51867f17cc52','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/airline/query_air_line_page_list','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,NULL),(720,'API_2163be27db64d75dd697f21be9bf5e78','保存航点信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/save_air_point_list','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,'2020-07-31 06:10:22'),(721,'API_998e3f23e45e7189409108f467a1549a','获取航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/query_air_point_list','POST',_binary '\0',_binary '\0','2020-07-31 02:21:24',1,'2020-07-31 06:10:22'),(722,'API_d3fa5fe17dc3798e1212098d17f63601','批量删除和删除','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info','DELETE',_binary '\0',_binary '\0','2020-07-31 05:55:50',1,'2024-11-12 03:52:40'),(723,'API_f9271bd702c504a93f8e41afacc50d70','新增航线信息','在新增航点(airpoint_info_list)的时候就已经添加了基本的航线信息,所以此方法暂时不用','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info','POST',_binary '\0',_binary '\0','2020-07-31 05:55:51',1,'2020-08-03 01:32:02'),(724,'API_9a2649fafb8f84bc320bc41ba7358ff8','查询上传状态','','cmii-uav-datahandler','/zydPicture/uploadStatus.do','GET',_binary '\0',_binary '\0','2020-07-31 07:05:48',1,NULL),(725,'API_98df3309de0afd8e717d3078e53cfb5f','航线详情','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_detail/{id}','GET',_binary '\0',_binary '\0','2020-08-03 01:32:02',1,'2024-11-12 03:52:43'),(726,'API_d6eb88883fdc9dae618c7177adb0ffbc','无人机绑定的载荷列表查询','','cmii-uav-mission','/api/uav/plane/queryDevByUav','POST',_binary '\0',_binary '\0','2020-08-03 01:38:52',1,NULL),(727,'API_781dd070cddb2a004c934621bebadabc','修改航线信息(第一、二、三步)','只需传改步骤的数据;第一步参数:id(必填),lineName(必填),airZone(必填),airZoneId(必填),airZoneLat,airZoneLng,step(必填),remarks;第二步参数:id(必填),step(必填),uavModel(必填),uavModelId(必填),hangarModel,hangarModelId,loadModels;第三步参数:id(必填),step(必填)','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info','PUT',_binary '\0',_binary '\0','2020-08-03 05:38:57',1,'2021-06-01 09:28:46'),(728,'API_7f98ef6778b426a144a186da223fa8f4','暂存','航线ID存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/temp_store','PUT',_binary '\0',_binary '\0','2020-08-03 05:38:57',1,'2020-08-04 09:19:32'),(729,'API_c7048bd2ab2c365b75fee2127a271437','复制航线','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_clone','POST',_binary '\0',_binary '\0','2020-08-03 05:38:57',1,'2024-11-12 03:52:42'),(730,'API_dc0b21d3c6ec7d41164cb0e0d85c45b6','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list','GET',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,NULL),(731,'API_605c53d1d9a98047a9c726a89db78c38','获取航点列表信息','点击某一条航线返回对应的航点列表信息','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list','GET',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,'2024-11-12 03:52:40'),(732,'API_4ed9ca889da09822cd986a275addee67','修改航线标题/位置','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info','PUT',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,'2024-11-12 03:52:39'),(733,'API_c10b4b5fad0bbb5d2114b1d6b14b7675','修改航点信息','点击修改点位','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_list','POST',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,NULL),(734,'API_c4aa1cdf76ee74a17cd075d522ca63fb','创建航线和航点','打点完成提交到数据库,航线和航点同时保存','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_with_airpoints','POST',_binary '\0',_binary '\0','2020-08-04 09:19:31',1,'2024-11-12 03:52:40'),(735,'API_d8b3556b4d67f2d75daefb6efabe22e3','更新航点信息','点击修改点位','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list','PUT',_binary '\0',_binary '\0','2020-08-05 06:48:15',1,'2024-11-12 03:52:42'),(736,'API_78e2383fdb5a642635a8ca5d00d7168e','新增航线信息(暂存)','航线ID不存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_temp_info','POST',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,'2020-08-06 09:10:26'),(737,'API_9834e33b2408b72c46f427255515bfc8','修改航线信息(暂存)','航线ID存在时','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_temp_info','PUT',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,'2020-08-06 09:10:26'),(738,'API_7aa62de7923f9993545d3e046051a403','保存航点信息','航点ID存在时','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_list','PUT',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,NULL),(739,'API_e2436ba96ccb5b569e9c4efd4e5aee53','保存航点信息','航点ID不存在时','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_list','POST',_binary '\0',_binary '\0','2020-08-05 07:22:26',1,'2020-08-05 07:34:01'),(740,'API_e34689f2a839b53e73bdbda29417ebdf','修改航点信息','航线ID存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list','PUT',_binary '\0',_binary '\0','2020-08-05 07:27:29',1,'2021-06-01 09:28:46'),(741,'API_bf1e1c419fcc72a4a883af68adb27b70','绘制航点接口(创建航点)','航线ID不存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list','POST',_binary '\0',_binary '\0','2020-08-05 07:27:29',1,'2021-06-01 09:28:46'),(742,'API_7b3c844a3990bd6e08028214fa18ad31','获取航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list','GET',_binary '\0',_binary '\0','2020-08-05 07:27:29',1,'2024-11-12 03:52:40'),(743,'API_aa3a01e2185589905394335605976d0a','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list','GET',_binary '\0',_binary '\0','2020-08-05 07:59:36',1,NULL),(744,'API_ed57b6ddcfdbdf623f387c887d0cca2d','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list/{pageSize}','GET',_binary '\0',_binary '\0','2020-08-06 08:37:48',1,NULL),(745,'API_5ea8dd004f64aac5bb62c6ac0b7f4db5','分页查询航线列表','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list','POST',_binary '\0',_binary '\0','2020-08-06 08:37:48',1,'2021-05-12 06:05:53'),(746,'API_35e04cdb3c8af696c02f1bf5f3a50c41','分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list/{pageSize}','GET',_binary '\0',_binary '\0','2020-08-06 09:01:03',1,NULL),(747,'API_40b263c32050cf473f41de0d6ed3c9ef','分页条件筛选航线列表','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list_with_filters','POST',_binary '\0',_binary '\0','2020-08-07 06:21:43',1,'2024-11-12 03:52:42'),(748,'API_3b7c79a51c08db95bc7b8df371edb4a9','查询指定航线列表项','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list_item/{id}','GET',_binary '\0',_binary '\0','2020-08-07 09:35:12',1,'2021-05-12 06:05:53'),(749,'API_606c261214874cb5542b27fe72d58010','APP端航线分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list','POST',_binary '\0',_binary '\0','2020-08-07 09:35:12',1,'2024-11-12 03:52:39'),(750,'API_5d0ea7b1b59bb1814fcf1b882ab0b183','下拉菜单模糊查询','支持空域/创建人/飞行设备','cmii-uav-waypoint','/api/uav/waypoint/airline/down_list_fuzzy_menu_info','GET',_binary '\0',_binary '\0','2020-08-07 10:09:49',1,NULL),(751,'API_0c7e64a3d88deea2a62f5dcac1a09403','下拉菜单模糊查询','支持空域/创建人/飞行设备','cmii-uav-waypoint','/api/uav/waypoint/airline/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-08-07 10:23:17',1,'2024-11-12 03:52:41'),(752,'API_644f10c6ad66e5fb250f518225dda5da','获取用户可用所有空域','','cmii-uav-airspace','/zydAirspace/getAirspaceByUser.do','GET',_binary '\0',_binary '\0','2020-08-10 02:25:28',1,NULL),(753,'API_01cf9be91d4536f51fc882230a27eef1','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-11-07 09:01:53'),(754,'API_0cfa74fce5f680fc926301b0857cf378','模糊查询无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavMode','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-11-07 09:01:51'),(755,'API_0739754e32b2127016a920b0cb80a3d7','模糊查询包括子公司的机库列表','','cmii-uav-device','/api/uav/plane/queryHangar','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-11-07 09:01:53'),(756,'API_5a3a407174868a09aeae2a0bafa11cd6','根据产品型号查询生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,NULL),(757,'API_53132a6b2b39271d22722286e2924043','根据生产厂家查询产品型号列表','','cmii-uav-device','/api/uav/plane/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,NULL),(758,'API_19fdc8abdf22a8b3898a6846d096db75','模糊查询所属机库','','cmii-uav-device','/api/uav/plane/queryBelongHangar','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,NULL),(759,'API_299ba405af4b7dc97e0856e0d0d4a124','按无人机编码查询指定公司范围内的无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2020-08-11 02:59:55',1,'2024-11-07 09:01:47'),(760,'API_3bc7e822504b27281de4048ced9e7a91','按条件分页查询无人机信息','','cmii-uav-device','/api/uav/hangar/queryUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(761,'API_acd39e3a1198a7505c594678ca65aac8','获取无人机第一张照片','','cmii-uav-device','/api/uav/hangar/queryUavPicByCode','GET',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(762,'API_2a84cb4dad4a31dd3938f871c1da1eb1','生成新无人机编码','','cmii-uav-device','/api/uav/hangar/newUavCode','GET',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(763,'API_d3b4623d6de50136316338e6bd4885ce','新增无人机','','cmii-uav-device','/api/uav/hangar/addUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(764,'API_eb1ee4f15076193c2a982a515af3bdae','绑定无人机','','cmii-uav-device','/api/uav/hangar/bindUav','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,'2024-11-07 09:01:51'),(765,'API_71c66ca4108af813ad7ed2f59978a9cc','删除无人机','','cmii-uav-device','/api/uav/hangar/deleteUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(766,'API_de4fc6068a898a455911098f0d41c04c','修改无人机','','cmii-uav-device','/api/uav/hangar/updateUavPlane','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(767,'API_d1a48771ee63cc754b1248c85ec39276','批量删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavPlaneBatch','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,'2024-11-07 09:01:57'),(768,'API_adb9aa725cbd21f42b6151ab54a8683f','按无人机编码查询无人机详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByUavCode','POST',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(769,'API_b278b709e5f7620928505ccd4df6d5bf','查询公司/机构所属的无人机编码列表','','cmii-uav-device','/api/uav/hangar/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-08-11 07:34:50',1,NULL),(770,'API_7270af0fb5d2fcb6534ee62f6bc42ab1','新增机库','','cmii-uav-device','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2020-08-11 08:59:05',1,'2024-11-07 09:01:49'),(771,'API_1d3dde17bde2cda631d9e36fd71399e5','生成新机库编码','','cmii-uav-device','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2020-08-11 08:59:05',1,'2024-11-07 09:01:54'),(772,'API_88b554c90ec24df24a4ee90dd651f12d','修改机库','','cmii-uav-device','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2020-08-11 09:52:46',1,'2024-11-07 09:01:54'),(773,'API_848589d443b1e05b1deae5cec66bdf4b','按机库编码查询机库详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByHangarCode','POST',_binary '\0',_binary '\0','2020-08-12 03:03:28',1,NULL),(774,'API_1316cfd99d03f0378e9a24555bb811e7','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangar','POST',_binary '\0',_binary '\0','2020-08-12 03:03:28',1,NULL),(775,'API_77e3faf92b7a34862394232d003ef579','删除机库','','cmii-uav-device','/api/uav/hangar/deleteUavHangar','POST',_binary '\0',_binary '\0','2020-08-12 03:03:28',1,'2024-11-07 09:01:45'),(776,'API_6e20e41c7a82ad074fa614440190d3ee','查询无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryDetailByModel','GET',_binary '\0',_binary '\0','2020-08-12 03:14:40',1,NULL),(777,'API_c37e85a2913e4b824564a34721e7960e','查询公司/机构所属的机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2020-08-12 08:44:51',1,'2024-11-07 09:01:58'),(778,'API_609cf7baddd46be1f9ef360af88c8b30','生成新视频编码','','cmii-uav-device','/api/uav/hangar/newHangarVideoCode','GET',_binary '\0',_binary '\0','2020-08-12 08:44:51',1,'2024-11-07 09:01:47'),(779,'API_5bdceb6f301895ac2055640b052a1f8e','模糊查询机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarCode','POST',_binary '\0',_binary '\0','2020-08-12 10:07:10',1,NULL),(780,'API_bcf275e55409fb916bba2fcb320077ce','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfName','POST',_binary '\0',_binary '\0','2020-08-12 10:07:10',1,NULL),(781,'API_9fd597f5bd1a8387ece7f7c03f3a7e70','模糊查询机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarMode','POST',_binary '\0',_binary '\0','2020-08-12 10:07:10',1,NULL),(782,'API_cbf0b91c20d81b2ee835f556463fa292','根据产品型号查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-13 03:29:17',1,NULL),(783,'API_0bd385e47244e1a65c97aff7accbe3fc','模糊查询机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarType','POST',_binary '\0',_binary '\0','2020-08-13 03:29:17',1,'2020-08-13 09:54:00'),(784,'API_1c99bd2265c4567080bb871ac4e94855','根据生产厂家查询产品型号列表','','cmii-uav-device','/api/uav/hangar/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-13 03:29:17',1,NULL),(785,'API_987944263146a10126587f851119f60c','获取可绑定无人机','','cmii-uav-device','/api/uav/hangar/getUav','POST',_binary '\0',_binary '\0','2020-08-13 07:49:26',1,NULL),(786,'API_8b67f52396c9b4998d9eca80309a6300','查询机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetail','GET',_binary '\0',_binary '\0','2020-08-13 07:49:26',1,'2024-11-07 09:01:46'),(787,'API_ab7e676c1d45bd807720064ce249147b','获取航点列表所有信息','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_baseinfo_list','GET',_binary '\0',_binary '\0','2020-08-13 07:56:27',1,'2024-11-12 03:52:42'),(788,'API_d50850d131ccdbe9c070cebb638b31ec','查询省份信息列表','','cmii-admin-data','/public/api/admin/area/province/list','GET,POST',_binary '\0',_binary '\0','2020-08-13 08:28:02',1,'2024-11-06 12:16:56'),(789,'API_89cf3952de0bd4ae4b102d3b0ec04730','查询区域下面子区域列表','','cmii-admin-data','/public/api/admin/area/subarea/list','GET,POST',_binary '\0',_binary '\0','2020-08-13 08:28:02',1,'2024-11-06 12:16:57'),(790,'API_5494210933a8193ffd84f6bb1f731ced','添加字典属性','添加字典属性','cmii-admin-data','/api/admin/dictionary/add','POST',_binary '\0',_binary '\0','2020-08-13 08:28:02',1,'2024-11-06 12:16:52'),(791,'API_52723d911feedd347c2c4dfea68a8c1d','字典属性上移动','字典属性上移动','cmii-admin-data','/api/admin/dictionary/moveUp','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:52'),(792,'API_3a03a398c5b5aca2112cc1ee26ea1ca7','字典属性下移动','字典属性下移动','cmii-admin-data','/api/admin/dictionary/moveDown','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:50'),(793,'API_99cd090ae437761a844e1366239bafc8','字典查询','字典查询','cmii-admin-data','/api/admin/dictionary/query','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:56'),(794,'API_cc5d51f761b86e43c71192ad16c8ed10','字典check','字典check','cmii-admin-data','/api/admin/dictionary/check','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:59'),(795,'API_5d077f1daf3a374171468eb52ba961f1','查询类别对应的字典code映射','查询类别对应的字典code映射','cmii-admin-data','/api/admin/dictionary/queryByTypeCode','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:49'),(796,'API_cbb5da8278aa4a91e9aea8d93a3967de','模糊查询本地语言对应的数据字典属性','模糊查询本地语言对应的数据字典属性','cmii-admin-data','/api/admin/dictionary/queryLocalByKeyWords','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:55'),(797,'API_0ccdea8c8d91095fcea830b9be8b6605','更新字典属性','更新字典属性','cmii-admin-data','/api/admin/dictionary/update','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:59'),(798,'API_279c3912b0662a0b7d24b188c8278c8b','删除字典属性','删除字典属性','cmii-admin-data','/api/admin/dictionary/delete','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:57'),(799,'API_7cf67447d82dbc2aae3f58416b95d6cf','禁用字典属性','禁用字典属性','cmii-admin-data','/api/admin/dictionary/disable','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:57'),(800,'API_7c1af759105a09feac5129c0a5749699','恢复可用字典属性','恢复可用字典属性','cmii-admin-data','/api/admin/dictionary/enable','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:54'),(801,'API_0b5c9de8f3a6f8a12e48665a0939216a','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/GetDictName','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(802,'API_d0a8b82a53afe76c478d1010dfe1ff01','添加字典类型','','cmii-admin-data','/api/admin/dictionaryType/add','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:53'),(803,'API_c5d7432a0e3bae534a3d6ea3665237e2','修改字典类型','','cmii-admin-data','/api/admin/dictionaryType/update','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:54'),(804,'API_f3a90193680fa0f62a2ebf52db9c4fb4','字典类型列表','','cmii-admin-data','/api/admin/dictionaryType/query','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:51'),(805,'API_f404be3fc6b1ecb26eaad3ab924efbb9','删除字典类型','','cmii-admin-data','/api/admin/dictionaryType/delete','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:50'),(806,'API_df28049d91b12b12cb0b160d7fb49f07','查询所有的语言','查询所有的语言','cmii-admin-data','/api/admin/language/queryAll','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,'2024-11-06 12:16:51'),(807,'API_8550075f78052e635bc09cdc6076bf4c','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/admin/model/match/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(808,'API_f0a64d95cf4c9c916bfc0571f489e58b','模糊查询设备类别列表','','cmii-admin-data','/api/admin/model/match/queryUavDevType','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(809,'API_32a0acef9b8bae507644c7ea6b6a7560','模糊查询设备型号列表','','cmii-admin-data','/api/admin/model/match/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(810,'API_16013589570db350f89c8b516bd781b3','设备动作列表','','cmii-admin-data','/api/admin/model/match/queryUavDevAction','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(811,'API_9dfaba44b00d8a52f4c54eb23eda6ec0','新增设备动作匹配','','cmii-admin-data','/api/admin/model/match/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(812,'API_ba1c3de0015a55fbebecc4c29ed9cb82','设备动作匹配详情查询','','cmii-admin-data','/api/admin/model/match/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(813,'API_480c197aeed752dadeab434c095ecb34','修改设备动作匹配','','cmii-admin-data','/api/admin/model/match/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(814,'API_7f2c832f8d2d7b0f0f2f25cdf7d0e5cd','删除设备动作匹配','','cmii-admin-data','/api/admin/model/match/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:03',1,NULL),(815,'API_e1a97c593f01828480fe6633f4c4c42a','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/admin/model/match/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(816,'API_ea0beb1691a6cfd9b506f841fdff1147','设备型号匹配详情查询','','cmii-admin-data','/api/admin/model/match/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(817,'API_78dacf832ac0663df45cef7eacc46b7a','载荷型号列表','','cmii-admin-data','/api/admin/model/match/queryUavLoadModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(818,'API_cf4c2608d20fa4c8168e40606afdb28e','查询机库型号列表','','cmii-admin-data','/api/admin/model/match/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(819,'API_9b7701108b0688ddcff6d57bb9926251','新增设备型号匹配','','cmii-admin-data','/api/admin/model/match/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(820,'API_862e4f9cfa37e6c715a494e2195c1246','修改设备型号匹配','','cmii-admin-data','/api/admin/model/match/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(821,'API_7d40d47650144734c82b80460a27d218','删除设备型号匹配','','cmii-admin-data','/api/admin/model/match/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(822,'API_dccbf2a46c478eee49c61c16c772e472','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:57'),(823,'API_f7f835d6b5b5414a15e9367bfa686402','模糊查询机库生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:54'),(824,'API_90760f07c8b56ff5094c6b7f8a9a61a4','模糊查询机库型号列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:51'),(825,'API_a857b8606d5df8359d9fd8f319524902','根据型号查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(826,'API_ef00e5ef79faaeea98b7dc1377cbcd99','根据生产厂家查询型号列表','','cmii-admin-data','/api/admin/model/hangar/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(827,'API_762f968c368fbd2c9d98a1b9cacbc25b','查询机库类型列表','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarType','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:54'),(828,'API_bc038b9711ca6bab9e1b557b57a2ff07','查询机库保护等级表','','cmii-admin-data','/api/admin/model/hangar/queryUavProtLevel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:53'),(829,'API_9f361f9fb967f4e757da4452ca730a1d','通过类型ID查询机库类型详情','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:56'),(830,'API_6e1e3b576ed81cfbe301f4b19c131c3a','新增机库类型信息','','cmii-admin-data','/api/admin/model/hangar/addUavHangarModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:58'),(831,'API_2df7cfdd028644189fb39c1fbfb8e5fe','修改机库类型信息','','cmii-admin-data','/api/admin/model/hangar/updateUavHangarModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:54'),(832,'API_f9dab58050666d3f087b5bd13906b4db','删除机库类型信息','','cmii-admin-data','/api/admin/model/hangar/deleteUavHangarModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,'2024-11-06 12:16:55'),(833,'API_04aaff7dad84ce556316185231275594','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:04',1,NULL),(834,'API_11c13a878f2f6cff3828a68ab6511b0b','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(835,'API_bec0759155bdfae1f18ade0f25619498','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(836,'API_1d0ed505879fd6326b5d0d819ddcc7dc','新增摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(837,'API_74f7067372e1ccbb5c75c43aca68dedf','修改摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(838,'API_535a3377d76d046b5db6541e814e136c','删除摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(839,'API_e977d642e93926f1341d627d736451c4','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(840,'API_228ab7305fc8536063ec19a7b1a28892','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(841,'API_87cd4d7026ae124e707dc311c006fa7e','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(842,'API_41d78892988fcd6f8591302f59edb266','新增喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(843,'API_0ec389c0370e0cd7b92e3b9193a330ba','修改喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(844,'API_0230cec1aaa20e351a7ea806d54211cd','删除喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(845,'API_03b7fa585f860fa5933f91be4a811e0b','按条件分页查询无人机型号信息','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelPage','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:50'),(846,'API_38240ce87df9230a33ce22481ae042bb','根据类型查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfByModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(847,'API_aae5c09d6465b1282e2259e132ded9e8','根据生产厂家查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryModelByMnf','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,NULL),(848,'API_cc7275a27199de74744502db1dd45d42','模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:48'),(849,'API_46126a9079c1e989640b27f24723f897','模糊查询无人机型号列表','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:49'),(850,'API_add4ec5281842a91f27e12737122676d','查询无人机形态列表','','cmii-admin-data','/api/admin/model/plane/queryUavShape','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:55'),(851,'API_88d1e620f01eae55406970adea9275d2','查询无人机尺度列表','','cmii-admin-data','/api/admin/model/plane/queryUavSize','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:53'),(852,'API_b0241abc0a3d6ce1ee149c7cab0e834a','查询无人机材料列表','','cmii-admin-data','/api/admin/model/plane/queryUavMat','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:57'),(853,'API_3e9f4b6e52461b3aa27a2ad8f9a8fde6','查询无人机接口列表','','cmii-admin-data','/api/admin/model/plane/queryUavInf','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:56'),(854,'API_76d5d4b2c2f147587b07cd432e8ca456','查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelDetail','GET',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:52'),(855,'API_7c5b59bfff93797cba7ce89bdd1d0aac','新增无人机类型信息','','cmii-admin-data','/api/admin/model/plane/addUavPlaneModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:58'),(856,'API_5ee8bb154057edbb9a533bb0de8f2616','修改无人机类型信息','','cmii-admin-data','/api/admin/model/plane/updateUavPlaneModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:57'),(857,'API_184313ace3c86c6b91ec302f3ff0524e','删除无人机类型信息','','cmii-admin-data','/api/admin/model/plane/deleteUavPlaneModel','POST',_binary '\0',_binary '\0','2020-08-13 08:28:05',1,'2024-11-06 12:16:47'),(858,'API_3641d327d48b35cc86c847a31560db66','按条件查询无人机型号信息','','cmii-admin-data','/api/admin/model/hangar/queryUavHangarModelDetail','POST',_binary '\0',_binary '\0','2020-08-13 09:06:24',1,NULL),(859,'API_089d3e2f3a245c5c424d6370223b5f98','模糊查询机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarMode','GET',_binary '\0',_binary '\0','2020-08-13 09:07:07',1,'2024-11-07 09:01:43'),(860,'API_3e10b571d99b6f7e98f0b4015d0d4d77','根据类型查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelByModel','GET',_binary '\0',_binary '\0','2020-08-13 09:57:30',1,NULL),(861,'API_1c5e1b743fa23e9ee79982e2c3722836','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/GetDictName','GET',_binary '\0',_binary '\0','2020-08-13 13:38:07',1,NULL),(862,'API_f3c7db7eed20640a751a78bc81341543','模糊查询机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHangarCode','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,'2024-11-07 09:01:47'),(863,'API_123a5d1073846eb9df7de02ea5362647','模糊查询生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,'2024-11-07 09:01:47'),(864,'API_f9c481bcefc5c514eff43a0ec263bfa9','模糊查询机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarType','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,NULL),(865,'API_47ec0d60eba6581f9085433036996e84','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangar','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,NULL),(866,'API_1f16142b30891e5a07fe19c92d819199','按机库编码查询机库详情查询','','cmii-uav-device','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2020-08-14 03:24:09',1,'2024-11-07 09:01:46'),(867,'API_8e5bc0bdc4f8c19fd48c636ef4e8d7bf','提供机库型号查询机库型号信息','','cmii-admin-data','/api/admin/model/hangar/queryDetailByHungarModel','POST',_binary '\0',_binary '\0','2020-08-14 03:28:25',1,NULL),(868,'API_02ebb757ca5fa1baa7d9491dadc41455','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/load/queryLoadSpkModelByModel','GET',_binary '\0',_binary '\0','2020-08-14 04:54:16',1,NULL),(869,'API_221340c1980b4ab2dcbac65d825bc27c','从无人机类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/plane/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-14 04:54:16',1,'2024-11-06 12:16:52'),(870,'API_f7689c8c83de27f64a05668b62af6007','从类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryUavPlaneModelFromModel','GET',_binary '\0',_binary '\0','2020-08-14 04:54:16',1,NULL),(871,'API_b4bff552477e5c6b1af717cf54c1b2de','根据类型查询无人机类型详情','','cmii-admin-data','/api/admin/model/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-14 05:01:35',1,'2024-11-06 12:16:56'),(872,'API_940540adebdc42dd3d15796c5d36f664','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_line_name','POST',_binary '\0',_binary '\0','2020-08-14 06:45:33',1,NULL),(873,'API_2cd0ecd24fbca8958ba943f238c7dbc8','解绑无人机','','cmii-uav-device','/api/uav/hangar/unbindUav','POST',_binary '\0',_binary '\0','2020-08-14 06:47:27',1,NULL),(874,'API_e24a63adfd5aa74f11397c1f08be557d','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在;true:存在,false不存在','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_line_name','GET',_binary '\0',_binary '\0','2020-08-14 06:55:42',1,'2020-08-14 07:00:46'),(875,'API_00e86bc45ada098ed656617ed9b4db3e','查询载荷是否有绑定无人机','','cmii-uav-device','/api/uav/plane/checkLoadBoundRelations','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:57'),(876,'API_f4ef3d19d207ce810b185378ccea62ae','无人机绑定的载荷列表查询','','cmii-uav-device','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:49'),(877,'API_4c6e476755cf391fcd3eea11b94fae64','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByLoadCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:46'),(878,'API_71a05e7ee9a717501af4d030b9012e2d','查询包括子公司的载荷详情','','cmii-uav-device','/api/uav/load/queryUavLoadDetail','POST',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:46'),(879,'API_fa94e8c4624b01ed2c276ab10dac7d3f','获取新载荷编码','','cmii-uav-device','/api/uav/load/newLoadCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:44'),(880,'API_2a6eaa070ef40bfe23947d9660ca996e','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadCode','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:56'),(881,'API_31dc801d5ac42388d0925a531fab0d45','模糊查询载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfName','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:44'),(882,'API_0c134f0811252de9350517aa4947b116','模糊查询载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadType','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:51'),(883,'API_e595767d8cd18cc6f7c48e77346699b7','模糊查询载荷类型列表','','cmii-uav-device','/api/uav/load/queryLoadModel','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:57'),(884,'API_ec46fc3387def0b5374b28ec21e4fd40','查询无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-17 01:40:18',1,'2024-11-07 09:01:45'),(885,'API_725534203c359e0e21090287f0dcbdbe','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/oapi/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2020-08-17 02:47:14',1,'2024-11-12 03:56:06'),(886,'API_bc06ed24e07d95d8c9bbc61af19ca202','查询公司下7日内飞行记录','','cmii-uav-surveillance','/oapi/queryHistoryTotal','GET',_binary '\0',_binary '\0','2020-08-17 02:47:14',1,'2024-11-12 03:56:11'),(887,'API_5b22775bfa21384f92056fb4e06f3c5b','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/oapi/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-08-17 02:47:14',1,'2024-11-12 03:56:10'),(888,'API_aca610f9936522d086756cc34bdd273b','类型对应的数据字典名称对应的key','类型对应的数据字典名称对应的key','cmii-admin-data','/api/admin/dictionary/GetDictKey','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,NULL),(889,'API_2a38ba8b44f9227276e556d1b4fdcdea','按条件分页查询设备动作匹配信息','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:47'),(890,'API_f0bb4d4149221532cbdfd93f6f70867c','模糊查询设备类别列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevType','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:53'),(891,'API_dd9a0a34900527d19fa9e51602bd8c66','模糊查询设备型号列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:53'),(892,'API_6de3e13765d806e95b54edba5c8ba7fa','设备动作列表','','cmii-admin-data','/api/admin/model/match/action/queryUavDevAction','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:53'),(893,'API_1027e0154b2cabcfcd03f2705aae31c9','新增设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/addUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:57'),(894,'API_45f69de95496f9503fe5da237bee773d','设备动作匹配详情查询','','cmii-admin-data','/api/admin/model/match/action/queryUavDevActionMatchDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:53'),(895,'API_6950169e9ca9384217f431e1c5459aa4','修改设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/updateUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:56'),(896,'API_88494eb1755e09d138b8e16c5121cfb4','删除设备动作匹配','','cmii-admin-data','/api/admin/model/match/action/deleteUavDevActionMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:50'),(897,'API_f3a3bbb16e9d784a4baa1e7f7a1cc432','根据类型查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionMatchByModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:52'),(898,'API_d3e06bfbed9a266753cbde23e4fff04a','按条件分页查询设备型号匹配信息','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:47'),(899,'API_0bdef64520190b16672dbb06d7715e2a','设备型号匹配详情查询','','cmii-admin-data','/api/admin/model/match/type/queryUavDevTypeMatchDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:55'),(900,'API_4ed187c7ced82ab26132997c81859a3e','载荷型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavLoadModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:57'),(901,'API_21aa3d9fac7d93666bca6833bf5568b9','查询机库型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavHangarModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:47'),(902,'API_8855ffd14b83ee49369fe8f758c2e9fa','模糊无人机型号匹配型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavPlaneMatchModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,NULL),(903,'API_46093c9fecf9308045914611b99a23bb','新增设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/addUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:50'),(904,'API_21ef9d5cf72e0d3d2b66f96ce3f89422','修改设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/updateUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:58'),(905,'API_0b760cde3e65475e19f8a99ed388db38','删除设备型号匹配','','cmii-admin-data','/api/admin/model/match/type/deleteUavDevTypeMatch','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:51'),(906,'API_d4e1de191bcaf2c506528a6a1ca24711','根据无人机查询设备类型匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByPlane','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,NULL),(907,'API_0fad73ed918548c3826f85283e31366c','根据机库查询无人机匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByHangar','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:50'),(908,'API_eb31be32d9c3a40adbb4f12b63e02300','从机库类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/hangar/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:58'),(909,'API_d3f1a51c788084a2a74ec83331dcca34','从机库类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/hangar/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:49'),(910,'API_7addf0dc3c91ea72e107cf07b21f5794','按条件分页查询摄像头型号信息','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:58'),(911,'API_bc60df3df11353c5e51941e33d6a8a79','摄像头载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:50'),(912,'API_114055c06825f48f1103858a5b4e5243','模糊查询型号列表','','cmii-admin-data','/api/admin/model/cam/queryUavLoadCamModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:54'),(913,'API_445b19de6f7aa6fdb994c62ac18b8f5a','新增摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/addUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:53'),(914,'API_cf6a3aa36a679cec602ea02152b324af','修改摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/updateUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:58'),(915,'API_8b110561027e6075cbc784f5245c0344','删除摄像头载荷设备型号','','cmii-admin-data','/api/admin/model/cam/deleteUavLoadCamModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:51'),(916,'API_78f934171b8fbc2900b04258a35d7a95','从摄像头类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/cam/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:50'),(917,'API_ad8d42ba2aee3e2d138b3950cee78fc8','从摄像头类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/cam/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:54'),(918,'API_ab0e57a46420e4534b5c7997aa0a0b1b','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/cam/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:50'),(919,'API_63d52b1a7520b2c088573d92931d3404','按条件分页查询喊话器型号信息','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelPage','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:46'),(920,'API_ca5a964fe634a07d0bd320d964cb3ee5','喊话器载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModelDetail','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:58'),(921,'API_d30cca23905217ae8b0a17b4ee2c1018','模糊查询型号列表','','cmii-admin-data','/api/admin/model/spk/queryUavLoadSpkModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:52'),(922,'API_49b0224bc641ca32510894821e03636b','新增喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/addUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:47'),(923,'API_6585ce453fd0e6dff8e03a24bcc649c1','修改喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/updateUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:52'),(924,'API_6558552d0cbcd975a333ec6d718e1ed9','删除喊话器载荷设备型号','','cmii-admin-data','/api/admin/model/spk/deleteUavLoadSpkModel','POST',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:57'),(925,'API_3e2410bdbc010bebf06c9c183b04f0d3','从喊话器类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/spk/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:54'),(926,'API_25e8361bc244a0699cededd54ae0f8ed','从喊话器类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/spk/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:53'),(927,'API_03a697de6910c8d3d8ae2f4c962e51d0','根据类型查询喊话器类型详情','','cmii-admin-data','/api/admin/model/spk/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:49'),(928,'API_d4198c9b8c990c36cf8d69bf82d25935','从无人机类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/plane/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2020-08-17 02:55:03',1,'2024-11-06 12:16:50'),(929,'API_25c5a58d6ac51ebfd73efb2b63222e3c','摄像头载荷设备型号详情查询','','cmii-uav-waypoint','/api/admin/model/cam/queryUavLoadCamModelDetail','GET',_binary '\0',_binary '\0','2020-08-18 02:02:05',1,NULL),(930,'API_4e19e0092828729be01bcfeda441a33f','无人机绑定的载荷列表查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-08-18 02:10:06',1,'2023-03-29 09:05:05'),(931,'API_668a10b15299a08a943a7eaacf0ea9fe','获取绑定无人机信息','','cmii-uav-device','/api/uav/hangar/getBoundUav','POST',_binary '\0',_binary '\0','2020-08-18 07:15:53',1,NULL),(932,'API_42812137eeb9fa9eac3dbccc1fff0fec','获取可绑定无人机','','cmii-uav-device','/api/uav/hangar/getUav','GET',_binary '\0',_binary '\0','2020-08-18 07:25:07',1,'2024-11-07 09:01:53'),(933,'API_ff5494e0727b58b829f6c84243f99f05','获取绑定无人机信息','','cmii-uav-device','/api/uav/hangar/getBoundUav','GET',_binary '\0',_binary '\0','2020-08-18 07:25:07',1,'2024-11-07 09:01:51'),(934,'API_44c5eee1c86cffe59ebae6946c01f7be','查询载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryModelDetailByModel','POST',_binary '\0',_binary '\0','2020-08-19 06:22:32',1,NULL),(935,'API_2b270bd6499910cae38f0fda79e608b9','查询载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2020-08-19 06:24:30',1,'2024-11-07 09:01:55'),(936,'API_0e34c8eca4382d7106b98f33f0e40550','提供机库型号查询机库型号信息','','cmii-admin-data','/api/admin/model/hangar/queryDetailByHungarModel','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:47'),(937,'API_d01e0d54b5b7202eafc7d1a2231876b8','查询视频分辨率列表','','cmii-admin-data','/api/admin/model/cam/queryVideoDisName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:56'),(938,'API_6732fadadc52936af9a6a9687cce7a1e','查询图标尺寸列表','','cmii-admin-data','/api/admin/model/cam/queryImgSizeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:48'),(939,'API_097cdf6975ebe29f15f2ddcc4681415a','查询视频ISO列表','','cmii-admin-data','/api/admin/model/cam/queryVideoISOName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:50'),(940,'API_7984c09b224b5e860f7fe8958a758dcb','查询工作模式列表','','cmii-admin-data','/api/admin/model/cam/queryWorkModeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:51'),(941,'API_dd46071112769417386194ce7c86e967','查询照片ISO列表','','cmii-admin-data','/api/admin/model/cam/queryImgISOName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:49'),(942,'API_7bec2a8dfa9aca7159523dbe9e18326f','查询拍照模式列表','','cmii-admin-data','/api/admin/model/cam/queryCamModeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:50'),(943,'API_bbe3f8c129c82cbe71ed35a41a282599','查询图像存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryImgFmtName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:49'),(944,'API_ea0004e0d1c3324340cddceec50c61f6','查询曝光模式列表','','cmii-admin-data','/api/admin/model/cam/queryExpModeName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:54'),(945,'API_4899d9a41838c726a75f0a72a6122290','查询曝白平衡列表','','cmii-admin-data','/api/admin/model/cam/queryBalanName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:51'),(946,'API_a1d168be5031dc1dd0e4fbc2505be60b','查询快门速度列表','','cmii-admin-data','/api/admin/model/cam/queryCamShutName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:55'),(947,'API_6ada96027958ab3c87a1610d3d91397a','查询视频存储格式列表','','cmii-admin-data','/api/admin/model/cam/queryVideoFmtName','GET',_binary '\0',_binary '\0','2020-08-21 05:00:53',1,'2024-11-06 12:16:51'),(948,'API_670ee49175328b4484f621bcd5770198','无人机型号列表','','cmii-admin-data','/api/admin/model/match/type/queryUavPlaneModel','GET',_binary '\0',_binary '\0','2020-08-23 10:41:18',1,'2024-11-06 12:16:48'),(949,'API_c3b99fb14456c127717f1870cf75a282','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-08-24 03:26:06',1,NULL),(950,'API_c7470b824c01b0fb67dbaea61b7bb7ad','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2020-08-24 03:26:06',1,NULL),(951,'API_1e207b399368ac25646beb4c51e3324e','查询公司下7日内飞行记录','','cmii-uav-surveillance','/queryHistoryTotal','GET',_binary '\0',_binary '\0','2020-08-24 03:26:06',1,NULL),(952,'API_dcb62f6a8317223fbb12c735dfde49ce','回调','','cmii-uav-waypoint-dev','/uav/uavInfo','POST',_binary '\0',_binary '\0','2020-08-24 07:33:48',1,'2020-08-25 02:12:28'),(953,'API_846cefbe72746c746abe4120afd61af0','订阅','','cmii-uav-waypoint-dev','/uav/subscribe','POST',_binary '\0',_binary '\0','2020-08-24 07:45:49',1,'2020-08-25 02:12:28'),(954,'API_5f89356023671b2c1cba9c13c7537893','无人机绑定的载荷列表查询','','cmii-uav-waypoint-dev','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-08-24 08:33:07',1,NULL),(955,'API_040852f945f29876940a70c5370b511f','查询公司下7日内飞行记录','','cmii-uav-surveillance','/oapi/uav/queryHistoryTotal','GET',_binary '\0',_binary '\0','2020-08-24 09:57:55',1,NULL),(956,'API_0b45ead59a2c4424f02ded292b8c2db4','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/oapi/uav/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2020-08-24 09:57:55',1,NULL),(957,'API_61f09b3a5565c3ae45008f3345a4f0de','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/oapi/uav/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2020-08-24 09:57:55',1,NULL),(958,'API_b1419634c225cef9555fdf5b0d011184','修改航点信息','点击修改点位','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list','POST',_binary '\0',_binary '\0','2020-08-25 06:18:22',1,NULL),(959,'API_6386b9fbf4e62a8d7fa9a024b1d39f82','解绑无人机','','cmii-uav-device','/api/uav/hangar/unBindUav','POST',_binary '\0',_binary '\0','2020-08-25 08:36:24',1,'2024-11-07 09:01:48'),(960,'API_b13c315af9e3ffdbeffa2a36f5626c20','设置机库在线状态','','cmii-uav-device','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-08-26 01:09:10',1,'2024-11-07 09:01:47'),(961,'API_e057d6bc1492dece552ba1d8b9f309eb','分页条件筛选作业列表','','cmii-uav-mission','/mission_info_list/mission_info_page_list_with_filters','POST',_binary '\0',_binary '\0','2020-08-26 02:47:10',1,NULL),(962,'API_4128c0c60bca87eb77e065858f56aa4f','作业详情查询','','cmii-uav-mission','/mission_info_list/mission_info/{id}','GET',_binary '\0',_binary '\0','2020-08-26 02:48:47',1,'2020-08-28 07:15:40'),(963,'API_1a32fe5cbd3b0f3d377e0c0932176815','下拉菜单模糊查询','支持作业名称/航线名称/执行人','cmii-uav-mission','/mission_info/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-08-26 02:53:26',1,NULL),(964,'API_586267fa2bacea566142b327a8db6773','下拉菜单模糊查询','支持作业名称 0/航线名称 1/飞行空域 2/执行人 3','cmii-uav-mission','/mission_info_list/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-08-26 03:03:05',1,'2020-09-01 02:11:58'),(965,'API_1f4428d6821f7d2bc77359b36d05d4b3','查询作业执行人的用户列表','','cmii-uav-mission','/mission_info/down_list_user_info','GET',_binary '\0',_binary '\0','2020-08-26 09:42:49',1,'2020-08-27 08:54:40'),(966,'API_e4a9c3011db740edc6646cb49292f77c','获取作业关联的封存航点详情列表','','cmii-uav-mission','/mission_info/airpoint_sealed_info_detail_list/{id}','GET',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(967,'API_99e0d5c68920f56f192c327b8b168810','创建作业','','cmii-uav-mission','/mission_info/mission_data','POST',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(968,'API_0ea60b08e616e7f117a94f8eb01505ee','更新作业','','cmii-uav-mission','/mission_info/mission_data','PUT',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(969,'API_72934064a40b9bc6031379716f4d634e','获取作业关联的封存航线详情','','cmii-uav-mission','/mission_info/airline_sealed_info_detail/{id}','GET',_binary '\0',_binary '\0','2020-08-27 08:54:40',1,NULL),(970,'API_c47c8080645f5ea74237a65f6b8cd3a6','模糊查询有效code映射','模糊查询有效code映射','cmii-admin-data','/api/admin/dictionary/queryValiableList','GET',_binary '\0',_binary '\0','2020-08-28 01:09:06',1,'2024-11-06 12:16:55'),(971,'API_23ef0f9fd358281ec9f82a7a9147e828','新建作业时模糊查询航线名称','发送所有航线给前端,前端做模糊查询','cmii-uav-waypoint','/api/uav/waypoint/mission/air_line_name','POST',_binary '\0',_binary '\0','2020-08-28 01:21:05',1,NULL),(972,'API_6983f4a0d9c4c9fda5d4f2fd4c2adf77','新建作业时查询封存航线信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airline_detail_info/{id}','GET',_binary '\0',_binary '\0','2020-08-28 02:44:36',1,'2024-11-12 03:52:41'),(973,'API_8b38986704c58131797068a570a2c45a','空域查询封存航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airpoint_detail_info_list/{id}','GET',_binary '\0',_binary '\0','2020-08-28 02:44:36',1,'2024-11-12 03:52:40'),(974,'API_281ece7316be3c5fe01bef8a55c515c6','获取航线名称全集','','cmii-uav-mission','/mission_info/airLineName','GET',_binary '\0',_binary '\0','2020-08-28 08:20:52',1,NULL),(975,'API_81edc180a8bc6677c39b0e5255f3b9e5','模糊查询空域名称列表','','cmii-uav-airspace','/zydAirspace/queryAreaName.do','GET',_binary '\0',_binary '\0','2020-08-31 03:05:41',1,'2024-11-14 03:10:22'),(976,'API_f8162fb82bbfb79a4b2c129aeadb703e','查询认证状态列表','','cmii-uav-airspace','/zydAirspace/queryAppr.do','GET',_binary '\0',_binary '\0','2020-08-31 03:05:41',1,NULL),(977,'API_e523610d0264ff173b1c8f2401204645','查询认证状态列表','','cmii-uav-airspace','/zydAirspace/downloadDoc.do','GET',_binary '\0',_binary '\0','2020-08-31 08:26:04',1,NULL),(978,'API_4e1ae2d6b8a9b781c333eeea3bf48dd9','批量导出模板','','cmii-uav-airspace','/zydAirspace/downloadDoc.do','POST',_binary '\0',_binary '\0','2020-08-31 08:33:08',1,'2024-11-14 03:10:23'),(979,'API_1aba38a41d34683a9a54babdca60c7b4','批量删除和删除','','cmii-uav-mission','/mission_info_list/mission_info','DELETE',_binary '\0',_binary '\0','2020-09-01 01:31:14',1,NULL),(980,'API_b52210a50f75307b41919c561962ddca','查询作业执行人的用户列表','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:36'),(981,'API_a225c1c35aecf8ac5adbc75b1f36a2df','创建作业','','cmii-uav-mission','/api/uav/mission/mission_info/mission_data','POST',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:38'),(982,'API_cbb8ad2843324aa5a28a9a72e7a386dd','更新作业','','cmii-uav-mission','/api/uav/mission/mission_info/mission_data','PUT',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:36'),(983,'API_60732ad87a7140c7fa9f1ae1e310c551','获取作业关联的封存航线详情','','cmii-uav-mission','/api/uav/mission/mission_info/airline_sealed_info_detail/{id}','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:34'),(984,'API_44bc0289526f72c425aecd27d4fda8f1','获取作业关联的封存航点详情列表','','cmii-uav-mission','/api/uav/mission/mission_info/airpoint_sealed_info_detail_list/{id}','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:36'),(985,'API_d6588f480cda839f7040e75cd4868949','获取航线名称全集','','cmii-uav-mission','/api/uav/mission/mission_info/airLineName','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:38'),(986,'API_ae425332d79c11cebf3b6dfdcc318036','分页条件筛选作业列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info_page_list_with_filters','POST',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:40'),(987,'API_94c18c7ce042fe795b695af4ad3a6ed4','下拉菜单模糊查询','支持作业名称 0/航线名称 1/飞行区域 2/执行人 3/创建人 4/无人机code 5','cmii-uav-mission','/api/uav/mission/mission_info_list/down_list_fuzzy_menu_info','POST',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:40'),(988,'API_49bd1c47f4f141694318567448148fa2','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}','GET',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:35'),(989,'API_8a4f6a8cb9e339ed069e5bc9b70da4cc','批量删除和删除','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info','DELETE',_binary '\0',_binary '\0','2020-09-01 02:04:14',1,'2024-11-12 01:20:40'),(990,'API_33e8b2e467de1de478901df874259c6d','作业复制','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info_clone','POST',_binary '\0',_binary '\0','2020-09-02 01:46:27',1,'2021-03-29 01:33:58'),(991,'API_59b3752c8aaf6ecadc354f4abc0656e9','自动对焦','','cmii-uav-surveillance','/cameraGimbal/AutoFocus','POST',_binary '\0',_binary '\0','2020-09-02 02:32:41',1,NULL),(992,'API_da9aa27014f1d4ae0cf91f51ea3585a7','设置相机参数','','cmii-uav-surveillance','/cameraGimbal/setCameraParameter','POST',_binary '\0',_binary '\0','2020-09-02 02:32:41',1,NULL),(993,'API_75ff1fc1f584bf9005b24b375054d6f5','按空域类型查询空域限制-n','传入参数为空域类型 多个请用,相隔','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByAreaType.do','GET',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-11-06 12:16:55'),(994,'API_79aa85dad2686c8be8398fc686fe2d76','为监视提供的接口,用于查询告警','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitBySurveillance.do','GET',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-11-06 12:16:51'),(995,'API_73ee94cc1a1fe118747c0e4ffb98715e','查询高度和时间有重叠部分的空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-11-06 12:16:51'),(996,'API_7142cc769bff4f9fb3ea9b6172637be8','按id删除空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/deleteZydAreaLimitById.do','DELETE',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-11-06 12:16:56'),(997,'API_f995cda2241b426c6983e9d3fcf5893c','修改空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/updateZydAreaLimit.do','PUT',_binary '\0',_binary '\0','2020-09-02 02:38:47',1,'2024-11-06 12:16:57'),(998,'API_82d09530b6c97ea16a33a5ede527adbf','按id查询空域限制','传入参数为id值','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitById.do','GET',_binary '\0',_binary '\0','2020-09-02 02:38:48',1,'2024-11-06 12:16:47'),(999,'API_a3fab050851c9041a920021ec3a2d362','新增空域限制-n','传入参数为zydAreaLimit实体对象','cmii-admin-data','/api/admin/arealimit/insertZydAreaLimit.do','POST',_binary '\0',_binary '\0','2020-09-02 02:38:48',1,'2024-11-06 12:16:58'),(1000,'API_ef09dbd19715c3dc4498a6829590c634','提交空域认证','','cmii-uav-airspace','/zydAirspace/uploadAudit.do','POST',_binary '\0',_binary '\0','2020-09-02 05:57:44',1,'2024-11-14 03:10:22'),(1001,'API_d07db158125291eca581a8ffba91ebbc','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}','',_binary '\0',_binary '\0','2020-09-02 06:46:34',1,NULL),(1002,'API_ac7ccab9883b6b7affb15f13befad34f','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info','GET',_binary '\0',_binary '\0','2020-09-02 06:56:08',1,NULL),(1003,'API_7ab44b0ec04a1814b13c727c2ca9fc91','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}/','GET',_binary '\0',_binary '\0','2020-09-02 06:57:11',1,NULL),(1004,'API_b3236d962e0982bef6ab9da493517f6c','主动触发更新(从高德地图)区域信息','','cmii-admin-data','/public/api/admin/area/refresh','GET,POST',_binary '\0',_binary '\0','2020-09-02 07:52:05',1,'2024-11-06 12:16:51'),(1005,'API_b38cf8a1e62f9b50245c0422c289cff9','作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/{id}','POST',_binary '\0',_binary '\0','2020-09-02 08:18:56',1,NULL),(1006,'API_f3854c9a9bc3997f399b433bd7842c1f','摄像参数设置','','cmii-uav-surveillance','/camera/video/setting','POST',_binary '\0',_binary '\0','2020-09-02 09:23:32',1,'2024-11-12 03:56:11'),(1007,'API_3f45ee3a503752f3638277585cc109be','相机参数设置','','cmii-uav-surveillance','/camera/camera/setting','POST',_binary '\0',_binary '\0','2020-09-02 09:23:32',1,'2024-11-12 03:56:08'),(1008,'API_c337c4ca3c0458da62526001898b7af3','云台参数设置','','cmii-uav-surveillance','/camera/gimbal/setting','POST',_binary '\0',_binary '\0','2020-09-02 09:23:32',1,'2024-11-12 03:56:11'),(1009,'API_a8f653f1e5fd6fe95c54523511ee5d47','根据无人机查询设备类型匹配详情','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchByUav','GET',_binary '\0',_binary '\0','2020-09-03 00:59:44',1,'2024-11-06 12:16:53'),(1010,'API_586c0c599b75290c598925596bc1014b','根据无人机查询设备类型匹配編碼列表','','cmii-admin-data','/api/admin/model/match/type/queryMatchListByUav','GET',_binary '\0',_binary '\0','2020-09-03 00:59:44',1,'2024-11-06 12:16:48'),(1011,'API_a6f13db5c1b993222e0289ebd55fa29b','查询有效的字典code映射','查询有效的字典code映射','cmii-admin-data','/api/admin/dictionary/queryValiableByTypeCode','GET',_binary '\0',_binary '\0','2020-09-03 04:01:14',1,'2024-11-06 12:16:51'),(1012,'API_6b3c5b5ea45962a0e37cb7a7440436fb','获取航线名称全集','','cmii-uav-mission','/api/uav/mission/mission_info/airLineName','POST',_binary '\0',_binary '\0','2020-09-03 08:43:03',1,NULL),(1013,'API_f3d6636ea76a96217c0a41b2411ea5eb','通过机库型号查询机库实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/hangar/queryHangarInfoList','GET',_binary '\0',_binary '\0','2020-09-03 09:52:23',1,'2024-11-07 09:01:51'),(1014,'API_431193ea36a2066e44dce4b510454506','镜头缩放','','cmii-uav-surveillance','/camera/camera/zoom','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-11-12 03:56:07'),(1015,'API_e59b17f7df6d42ea9e9372e6c37766e3','切换为照相/摄像模式','','cmii-uav-surveillance','/camera/camera/modeChange','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-11-12 03:56:10'),(1016,'API_6451a9189d90a88e0a398150dc3133f9','云台控制转向','','cmii-uav-surveillance','/camera/gimbal/control','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-11-12 03:56:08'),(1017,'API_1a894092b08bc772840127281ad0e441','自动对焦','','cmii-uav-surveillance','/camera/camera/autoFocus','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-11-12 03:56:07'),(1018,'API_0dcc849acdad2a4ea57402c2ab50652b','拍照或者摄像','','cmii-uav-surveillance','/camera/camera/cameraAction','POST',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-11-12 03:56:07'),(1019,'API_1f1eef5b17517305eccbb21b23565860','查询云台旋转角度设定','','cmii-uav-surveillance','/camera/camera/queryGimbalSetting','GET',_binary '\0',_binary '\0','2020-09-03 16:22:27',1,'2024-11-12 03:56:12'),(1020,'API_cb035007aa42d351c7f84144528adade','通过载荷型号查询载荷实例列表[作业管理中引用]','','cmii-uav-device','/api/uav/load/queryLoadInfoList','GET',_binary '\0',_binary '\0','2020-09-04 02:09:44',1,'2024-11-07 09:01:47'),(1021,'API_ffe81557303b1ffb8a3a1a2493d5454e','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-device','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2020-09-04 02:09:44',1,'2024-11-07 09:01:49'),(1022,'API_1bea8ee445a2922a459b8cef22c022ff','修改审批状态','','cmii-uav-airspace','/zydAirspace/updateStat.do','POST',_binary '\0',_binary '\0','2020-09-07 08:29:52',1,'2024-11-14 03:10:22'),(1023,'API_d93cac635460573a39072d83a64ad8e6','根据无人机ID查询进行中的作业详情','','cmii-uav-mission','/api/uav/mission/surveillance/mission_info/{id}','GET',_binary '\0',_binary '\0','2020-09-08 01:35:08',1,'2024-11-12 01:20:37'),(1024,'API_46b2f550f8e902fb86d7064a42e8be42','查看轨迹回放之上报作业飞行数据接口','','cmii-uav-mission','/api/uav/mission/surveillance/airline_track_info/{id}','GET',_binary '\0',_binary '\0','2020-09-08 01:35:08',1,'2020-09-16 02:22:07'),(1025,'API_7999fb512373545428a904f2a93126c5','查询动作匹配类型详情','','cmii-admin-data','/api/admin/model/match/action/queryActionByModel','GET',_binary '\0',_binary '\0','2020-09-08 02:02:05',1,'2024-11-06 12:16:58'),(1026,'API_1a760fde751208bdc26abcedbbca41fd','判断空域名称是否重复','','cmii-uav-airspace','/zydAirspace/judgeAirsNameRep.do','GET',_binary '\0',_binary '\0','2020-09-08 06:01:43',1,'2024-11-14 03:10:23'),(1027,'API_15619ea072c1ddacd82dfe1b0f75d02b','判断用户是否有权限执行作业','','cmii-uav-mission','/api/uav/mission/surveillance/MissionAuthority','GET',_binary '\0',_binary '\0','2020-09-08 07:39:23',1,'2020-09-08 07:43:21'),(1028,'API_4aaeb69d58a376553c7674e93dd81151','结束作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_ending','POST',_binary '\0',_binary '\0','2020-09-08 09:02:46',1,'2020-09-16 03:04:31'),(1029,'API_048a6e2737767979c293379256046cf4','降落','','cmii-uav-mission','/api/uav/mission/surveillance/startLanding/{id}','GET',_binary '\0',_binary '\0','2020-09-08 09:02:46',1,'2024-11-12 01:20:40'),(1030,'API_08b791104d5cf534913d2c6a182ef330','模糊查询可用状态列表','','cmii-uav-device','/api/uav/hangar/queryHangarUseStat','GET',_binary '\0',_binary '\0','2020-09-09 06:50:25',1,'2024-11-07 09:01:58'),(1031,'API_cdd9560d32de928dad673d67accca023','模糊查询可用状态列表','','cmii-uav-device','/api/uav/load/queryLoadUseStat','GET',_binary '\0',_binary '\0','2020-09-09 06:50:25',1,'2024-11-07 09:01:45'),(1032,'API_e7e328cf8d731f9c02a8cab4c44ab8f6','开始作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_data','POST',_binary '\0',_binary '\0','2020-09-09 07:23:29',1,NULL),(1033,'API_d925816c859b55482ee818f05cc3b44a','查询空域类型','','cmii-admin-data','/api/admin/arealimit/queryAreaType','GET',_binary '\0',_binary '\0','2020-09-09 08:01:19',1,'2021-09-22 20:09:26'),(1034,'API_7c75613cb2c22f020ecead67e9689c8f','查询动作匹配类型详情','','cmii-uav-waypoint','/api/admin/model/match/action/queryActionByModel','GET',_binary '\0',_binary '\0','2020-09-09 09:05:08',1,NULL),(1035,'API_b677cb684036a17ab6c3ec7a308c876f','模糊查询包括子公司的所属无人机编码列表','','cmii-uav-device','/api/uav/load/queryUavCodeBound','GET',_binary '\0',_binary '\0','2020-09-10 03:18:18',1,'2024-11-07 09:01:47'),(1036,'API_9b75b1ab51bc0e8c6ca94f282913d2a6','无人机绑定的载荷列表查询','','cmii-uav-mission','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-09-10 03:19:55',1,'2023-07-18 04:08:27'),(1037,'API_6267772257b61cefe234f9a5f2a89a96','查询某个区域详细属性信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/detail','GET,POST',_binary '\0',_binary '\0','2020-09-10 05:13:25',1,'2024-11-06 12:16:52'),(1038,'API_4e4f7658029678734ffce0027252e8fc','查询区域详细属性信息','','cmii-uav-waypoint','/public/api/admin/area/detail','POST',_binary '\0',_binary '\0','2020-09-10 09:15:09',1,'2020-12-30 06:33:49'),(1039,'API_956154abe8979ccd6b222d73f2b2302b','模糊查询公司范围的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModelList','GET',_binary '\0',_binary '\0','2020-09-14 05:00:00',1,'2024-11-07 09:01:52'),(1040,'API_a0e003812786904c0d23d43c9b3f1ce4','判断用户是否有权限执行作业','','cmii-uav-mission','/api/uav/mission/surveillance/MissionAuthority','POST',_binary '\0',_binary '\0','2020-09-14 06:17:07',1,'2024-11-12 01:20:38'),(1041,'API_2309a5886c4870675d5c4c1f39d44911','根据无人机ID查询进行中的作业详情','','cmii-uav-mission','/api/uav/mission/surveillance/mission_info/{id}','POST',_binary '\0',_binary '\0','2020-09-14 06:17:07',1,NULL),(1042,'API_71ee48df473a112f4f1d1f4396c0cde7','根据无人机编码和作业状态筛选作业列表','','cmii-uav-mission','/api/uav/mission/surveillance/mission_list','GET',_binary '\0',_binary '\0','2020-09-14 06:48:16',1,NULL),(1043,'API_e4ca6faf34329bbfe40307b1d5bc9edf','根据无人机编码和作业模式筛选监视作业列表','','cmii-uav-mission','/api/uav/mission/surveillance/surv_mission_list','GET',_binary '\0',_binary '\0','2020-09-14 09:57:33',1,NULL),(1044,'API_a8104d8a07fd7fe85874cbc261ed2e9b','获取单个数据字典','根据指定的数据编码获取数据字典项','cmii-uav-surveillance','/dictionary/getDict','POST',_binary '\0',_binary '\0','2020-09-15 02:55:25',1,'2022-05-06 02:52:14'),(1045,'API_4e58a69fc3fae900ac480671bd0f7b8d','获取数据字典','获取云台参数设置所有数据字典','cmii-uav-surveillance','/dictionary/getDictList','GET',_binary '\0',_binary '\0','2020-09-15 02:55:25',1,NULL),(1046,'API_9cf77bb58c5a9447a714eb5c9310472d','查询数据字典明细','查询数据字典明细','cmii-admin-data','/api/admin/dictionary/queryDictDetail','GET',_binary '\0',_binary '\0','2020-09-15 08:10:37',1,'2024-11-06 12:16:48'),(1047,'API_6c10712206f93529a619f8080ef3426f','起飞','','cmii-uav-mission','/api/uav/mission/surveillance/takeOff/{id}','GET',_binary '\0',_binary '\0','2020-09-16 04:59:50',1,'2024-11-12 01:20:36'),(1048,'API_2895fcd7ea84bb74ad1d52e020a0486f','根据无人机编码和作业模式筛选监视作业列表','','cmii-uav-mission','/api/uav/mission/surveillance/surv_mission_list','POST',_binary '\0',_binary '\0','2020-09-16 04:59:50',1,'2024-11-12 01:20:38'),(1049,'API_b64ea8de58590f93f0a18f322cbdca46','继续飞行','','cmii-uav-mission','/api/uav/mission/surveillance/resume/{id}','GET',_binary '\0',_binary '\0','2020-09-16 04:59:50',1,'2024-11-12 01:20:37'),(1050,'API_c9694ccb1c665a04fec72ee10fe68561','查询公司/机构所属的机库类型','','cmii-uav-device','/api/uav/hangar/queryHangarModelByCompanyId','GET',_binary '\0',_binary '\0','2020-09-16 05:04:31',1,'2024-11-07 09:01:56'),(1051,'API_1dffdd6514c4517fdc2339c931fdc1f9','查詢包括子公司的載荷類型','','cmii-uav-device','/api/uav/load/queryLoadModelByCompanyId','GET',_binary '\0',_binary '\0','2020-09-16 05:04:31',1,'2024-11-07 09:01:50'),(1052,'API_34a7fb8da64e22199f82369e7e594276','查询指定公司的无人机类型匹配的載荷和机库类型类别','','cmii-uav-device','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2020-09-16 05:04:31',1,'2024-11-07 09:01:56'),(1053,'API_9d6c0487a16c47d23c4b5262fbd7ded6','获取数据字典','获取云台参数设置所有数据字典','cmii-uav-surveillance','/dictionary/getDictList','POST',_binary '\0',_binary '\0','2020-09-16 06:02:22',1,'2024-11-12 03:56:07'),(1054,'API_b1e1771386dd5bd18e13b84aeb6e97a3','停止','','cmii-uav-mission','/api/uav/mission/surveillance/stop/{id}','GET',_binary '\0',_binary '\0','2020-09-16 07:11:46',1,'2024-11-12 01:20:37'),(1055,'API_13259ac30ce80925eec7b3236c7de5a2','暂停','','cmii-uav-mission','/api/uav/mission/surveillance/pause/{id}','GET',_binary '\0',_binary '\0','2020-09-16 07:11:46',1,'2024-11-12 01:20:41'),(1056,'API_0be849a1aa051ce187cc949923d93dd7','开始作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_starting','POST',_binary '\0',_binary '\0','2020-09-16 07:11:46',1,NULL),(1057,'API_e18f034e5edbed07ca014db0b46f6c0a','查询作业名称是否唯一','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_name_distinct','POST',_binary '\0',_binary '\0','2020-09-18 05:10:49',1,'2024-11-12 01:20:36'),(1058,'API_10ca3ce206a37e1c305570faf17b2bfe','查询作业名称列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_name_list','GET',_binary '\0',_binary '\0','2020-09-18 06:03:51',1,NULL),(1059,'API_7861965d3fd9e6484bd275c6b34457ed','showTrackDataList','','cmii-uav-surveillance','/surveillance/test1','GET',_binary '\0',_binary '\0','2020-09-18 07:00:00',1,NULL),(1060,'API_beb707e79c04cf7d89f785f509d79898','showTrackData','','cmii-uav-surveillance','/surveillance/test2','GET',_binary '\0',_binary '\0','2020-09-18 07:00:00',1,NULL),(1061,'API_68c9b304c6d10ad7d7b7f9bcd84a57fb','Websocket_Total_Surveillance_数据结结构','','cmii-uav-surveillance','/surveillance/TotalSurveillance','GET',_binary '\0',_binary '\0','2020-09-18 09:06:17',1,NULL),(1062,'API_dffe61df8924b7d431db0e9af8bd55dd','querySinglePlaneTrack模拟数据结构','','cmii-uav-surveillance','/surveillance/querySinglePlaneTrackSimulate','GET',_binary '\0',_binary '\0','2020-09-18 09:06:17',1,NULL),(1063,'API_333970b2675a439219d3fbb3234fd8c7','Websocket_Single_Surveillance_数据结结构','','cmii-uav-surveillance','/surveillance/SingleSurveillance','GET',_binary '\0',_binary '\0','2020-09-18 09:06:17',1,NULL),(1064,'API_cea1d1fa375a31b306e6d5add838cbe5','新建作业时模糊查询航线名称','发送所有航线给前端,前端做模糊查询','cmii-uav-waypoint','/api/uav/waypoint/mission/air_line_name_list','POST',_binary '\0',_binary '\0','2020-09-18 09:56:47',1,'2024-11-12 03:52:42'),(1065,'API_c60a4b717eba16f3e75f374cdddd2298','根据时间和航线id查可用空域','','cmii-uav-airspace','/zydAirspace/selectByConditons.do','POST',_binary '\0',_binary '\0','2020-09-18 10:20:04',1,'2024-11-14 03:10:22'),(1066,'API_6bfa40f0c09cc20371a8fa1ca2a42e9b','查询高度和时间有重叠部分的空域限制-n','传入参数为zydAreaLimit实体对象','cmii-uav-airspace','/api/airspace/zydAreaLimit/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2020-09-21 04:50:24',1,NULL),(1067,'API_08aadc2ddb2af424581a079b5a9f43df','查看轨迹回放之上报作业飞行数据接口','','cmii-uav-mission','/api/uav/mission/mission_info/airline_track_info/{id}','GET',_binary '\0',_binary '\0','2020-09-21 07:53:37',1,'2024-11-12 01:20:36'),(1068,'API_bb8f9d5366516b7bd1fd68b8871ba966','类型对应的数据字典key对应的名称','类型对应的数据字典key对应的名称','cmii-admin-data','/api/admin/dictionary/getDictName','GET',_binary '\0',_binary '\0','2020-09-21 10:01:11',1,'2024-11-06 12:16:54'),(1069,'API_4d0a53a39c735aa8ad90f5d3b268e245','类型对应的数据字典名称对应的key','类型对应的数据字典名称对应的key','cmii-admin-data','/api/admin/dictionary/getDictKey','GET',_binary '\0',_binary '\0','2020-09-21 10:01:11',1,'2024-11-06 12:16:49'),(1070,'API_24d80fbba26c87978550f0e74599c525','获取字典里面语言对应的某个值','获取字典里面语言对应的某个值','cmii-admin-data','/api/admin/dictionary/getValueByLang','GET',_binary '\0',_binary '\0','2020-09-21 10:01:11',1,'2024-11-06 12:16:53'),(1071,'API_fc61e32568d804e09aaa057b6c0e9942','查询5km范围内空域信息','','cmii-uav-airspace','/zydAirspace/selectByPoint.do','POST',_binary '\0',_binary '\0','2020-09-22 05:36:34',1,'2024-11-14 03:10:22'),(1072,'API_0fbfa49d7da8d3780a1c75740cce97c9','返航','带机库的返航命令,speed和height默认10,30','cmii-uav-mission','/api/uav/mission/surveillance/goHome/{id}/{speed}/{height}','GET',_binary '\0',_binary '\0','2020-09-22 06:34:53',1,'2024-11-12 01:20:40'),(1073,'API_cd7aa1953138e81cb268ec8de9e868b9','提供给飞行监视查询当日计划飞行工作数量和正在飞行工作数量','','cmii-uav-mission','/api/uav/mission/surveillance/mission_flying_number','POST',_binary '\0',_binary '\0','2020-09-22 08:15:58',1,'2024-11-12 01:20:36'),(1074,'API_9a2e98241817ae6c0fe3ea4fc2261721','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryBy','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:37'),(1075,'API_32e11ca32ec273ec4a78bca3dd85f9e3','根据code获取资源的多语言版本','','cmii-uav-user','/api/uav/resource/queryResourceLanguage','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:43'),(1076,'API_db073aa081d2ffe613ebc3cf56876ab9','根据编码导出资源信息','','cmii-uav-user','/api/uav/resource/syncExportResource','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:21'),(1077,'API_144cb3ab17945c8b50b0c5b2fa20dae0','根据编码导入资源信息','','cmii-uav-user','/api/uav/resource/syncImportResource','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:41'),(1078,'API_951214eab30adc7578fdde049514ce4e','执行更新邮箱','','cmii-uav-user','/api/uav/user/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:24'),(1079,'API_257d9acdae4652fdef4795d11de4b411','找回密码','','cmii-uav-user','/api/uav/user/profile/findPwd','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:39'),(1080,'API_e9678de1af14b0753155ffab173a0613','用户邀请注册','','cmii-uav-user','/inviteRegistry','POST',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:29'),(1081,'API_fbaaeb1dc35e086b1fe493193046f746','获取公司所有用户','','cmii-uav-user','/user/getByCId','GET',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:23'),(1082,'API_f5ec0b9a99300481ff676e3fd1ec326f','根据公司id,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId','GET',_binary '\0',_binary '\0','2020-09-23 05:49:10',1,'2024-11-06 12:16:42'),(1083,'API_331b9a808ed0007b6c46cc6e5dec0e85','上传文件','','cmii-uav-airspace','/zydAirspace/putObject.do','POST',_binary '\0',_binary '\0','2020-09-23 06:24:03',1,NULL),(1084,'API_bed26233fb97b8d186bc1955883ad00f','设置Redis的数据字典','设置Redis的数据字典','cmii-admin-data','/api/admin/dictionary/setDictRedis','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-11-06 12:16:46'),(1085,'API_ae31ca2fc44fd14b3e8e494cb6faca5c','从Redis获取类别对应的字典明细','从Redis获取类别对应的字典明细','cmii-admin-data','/api/admin/dictionary/getDictRedisByType','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-11-06 12:16:53'),(1086,'API_2feb437ab841ebce098c4a071d84aadb','从Redis获取类别对应的有效的字典明细','从Redis获取类别对应的有效的字典明细','cmii-admin-data','/api/admin/dictionary/getValiableDictRedisByType','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-11-06 12:16:58'),(1087,'API_f0d603eba30e16a56b72d312dcee2b78','从Redis获取所有的编码对应的所有语言值','从Redis获取所有的编码对应的所有语言值','cmii-admin-data','/api/admin/dictionary/getAllValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-11-06 12:16:49'),(1088,'API_5c8b4d4a2969efea39ddfffa0cfe2e75','从Redis获取所有的语言对应的字典明细的K-V','从Redis获取所有的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-11-06 12:16:55'),(1089,'API_930f5e5c7fbe6e30b57944ff17b8831e','从Redis获取所有的编码对应的本地语言的值','从Redis获取所有的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-11-06 12:16:48'),(1090,'API_cb86e886050ae21f962df8b9bb6d8530','check在Redis里面明细是否有效','check在Redis里面明细是否有效','cmii-admin-data','/api/admin/dictionary/checkValiableInRedis','GET',_binary '\0',_binary '\0','2020-09-24 03:39:02',1,'2024-11-06 12:16:58'),(1091,'API_dea03766a92947842b88837ac9f93514','generalMissionSend','','cmii-uav-mission','/mqtt/MissionSend','POST',_binary '\0',_binary '\0','2020-09-24 09:25:47',1,NULL),(1092,'API_1e1b892be60f2ae98cd001413519f450','startMission','','cmii-uav-mission','/mqtt/startMission','POST',_binary '\0',_binary '\0','2020-09-24 09:25:47',1,NULL),(1093,'API_19616826cb61645b0a42907b6ac28322','endMission','','cmii-uav-mission','/mqtt/endMission','POST',_binary '\0',_binary '\0','2020-09-24 09:25:47',1,NULL),(1094,'API_812168f74d0ae4d4fb14726b76a9c4f2','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在;true:存在,false不存在','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_line_name_duplicate','GET',_binary '\0',_binary '\0','2020-09-25 06:24:49',1,'2024-11-12 03:52:43'),(1095,'API_e9295eb1669c0be3f3b82fd1c5531f3c','开始作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_starting/{id}','GET',_binary '\0',_binary '\0','2020-09-25 09:27:53',1,'2024-11-12 01:20:39'),(1096,'API_2c54812c0b28cb62f3ad1fb503fe5474','结束作业','','cmii-uav-mission','/api/uav/mission/surveillance/mission_ending/{id}','GET',_binary '\0',_binary '\0','2020-09-25 09:27:53',1,'2024-11-12 01:20:36'),(1097,'API_05e5cc906d4e5f2e58aea33e2a432e34','新建作业时查询封存航点列表信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airpoint_info_po_list/{id}','GET',_binary '\0',_binary '\0','2020-09-29 06:01:01',1,'2024-11-12 03:52:41'),(1098,'API_7d0e87bd698c59711eec761fa3c8a57a','根据流程ID查询空域详情-n','传入空域主键','cmii-uav-airspace','/zydAirspace/queryDetailByAudit.do','GET',_binary '\0',_binary '\0','2020-09-30 01:16:22',1,NULL),(1099,'API_afaa85332e700cfbede04b00d52074a8','查询本公司七日内作业完成历史记录','','cmii-uav-mission','/api/uav/mission/surveillance/flyHistory','GET',_binary '\0',_binary '\0','2020-09-30 02:05:50',1,'2024-11-12 01:20:40'),(1100,'API_cd990af8afd653c1f5342d6b22700c09','查询公司范围的设备在线状态','','cmii-uav-device','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2020-09-30 02:13:10',1,'2024-11-07 09:01:52'),(1101,'API_831630bcf0c07e37dd393b53d58900cc','国际化测试','','cmii-uav-surveillance','/surveillance/internationalTest','GET',_binary '\0',_binary '\0','2020-10-09 01:30:33',1,NULL),(1102,'API_36ee06627f1db4aecff47d210338e5d9','查询包括子公司的载荷类型详细信息','','cmii-uav-device','/api/uav/load/queryLoadModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-11-07 09:01:57'),(1103,'API_c666353987c2e7f3d3fe966ba63acd2c','check在数据字典里面载荷类型编码和名称是否一致','check在数据字典里面载荷类型编码和名称是否一致','cmii-uav-device','/api/uav/load/checkLoadModelMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-11-07 09:01:44'),(1104,'API_ab7b50dd0de2b4aecab4c057a1339253','查询该公司的机库类型详细信息','','cmii-uav-device','/api/uav/hangar/queryHangarDetailByModel','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-11-07 09:01:55'),(1105,'API_1f515aef9beec6efa8c04dac816e7d93','check在数据字典里面机库类型编码和名称是否一致','check在数据字典里面机库类型编码和名称是否一致','cmii-uav-device','/api/uav/hangar/checkHngModelMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-11-07 09:01:56'),(1106,'API_a7be376e5ee861d385187b9ae5748c39','无人机列表绑定的载荷列表详情查询','','cmii-uav-device','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-11-07 09:01:47'),(1107,'API_ae6e5100bf8e72ab99c0c574e8a8ad96','校验指定公司的无人机类型编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkUavModelMapingInRedis','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-11-07 09:01:57'),(1108,'API_0c36d2f6044a28e11a500996c44393ba','查询指定公司的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2020-10-28 08:37:19',1,'2024-11-07 09:01:47'),(1109,'API_e9dff92e908dd9be6d674dac0a7a5f8a','kml文件导入接口','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/import_kml_file','POST',_binary '\0',_binary '\0','2020-10-28 10:06:15',1,'2021-06-01 09:28:46'),(1110,'API_ee582d88f16bf2a05f3f039238053b0b','kml文件导出接口','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/export_kml_file','GET',_binary '\0',_binary '\0','2020-10-28 10:06:15',1,'2021-06-01 09:28:46'),(1111,'API_4fea21fe984ff5fe15305ce790ae7dcb','校验航线名称是否存在','航线ID不存在时,校验航线名称是否已经存在;true:存在,false不存在','cmii-uav-waypoint','/api/uav/waypoint/app/airline_line_name_duplicate','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:42'),(1112,'API_dfcacd5d19a669672ff9d5016c428463','查询进度','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/schedule','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:43'),(1113,'API_4f21500e3b030099e80d9914f8e0a8ca','查询地图','','cmii-uav-waypoint','/middlecourt/api/v1/view/maps','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:39'),(1114,'API_5e553cf59a44958448d8f1a8e9403549','查询天线','','cmii-uav-waypoint','/middlecourt/api/v1/view/antennas','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:42'),(1115,'API_99677ca1fc1e2df645c6be0d3355d292','查询工参','','cmii-uav-waypoint','/middlecourt/api/v1/view/stations','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:41'),(1116,'API_e006385482aa4eaf9b8bd4bf7e4fbe57','查询传播模型','','cmii-uav-waypoint','/middlecourt/api/v1/view/transmodels','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:42'),(1117,'API_2473b7c5ee6b48624674877ce86730b9','上传地图','','cmii-uav-waypoint','/middlecourt/api/v1/upload/map','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:40'),(1118,'API_3049d38f1964349d246bab31521d27dd','上传天线','','cmii-uav-waypoint','/middlecourt/api/v1/upload/antenna','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:41'),(1119,'API_1c9a3ae62a96a15a5fa35037e15bd237','上传工参','','cmii-uav-waypoint','/middlecourt/api/v1/upload/station','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:41'),(1120,'API_4d17b3a3d23428949cb0df4654e74797','上传传播模型','','cmii-uav-waypoint','/middlecourt/api/v1/upload/transmodel','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:41'),(1121,'API_4a0042f3646812e462e52be6edf0eb01','二维覆盖仿真','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/2d','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:42'),(1122,'API_9233e29dbe3898302905792de37090b2','下载仿真文件','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/download','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:42'),(1123,'API_b62d286090d83037315faf488f111296','发布仿真结果','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/publishGis','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:39'),(1124,'API_21d01c6fb59fdf33d1897d5a082378fc','查询用户的仿真结果','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/queryBySimId','GET',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:39'),(1125,'API_03be8c3306f2abd97c8e23d113c01ba5','提供给外部平台上传航线航点信息','','cmii-uav-waypoint','/api/uav/waypoint/open_platform/airline_info_with_airpoints','POST',_binary '\0',_binary '\0','2020-10-28 10:06:16',1,'2024-11-12 03:52:42'),(1126,'API_1fb0a000cc6507b937c31b6886142cc3','更具公司id查询公司管理员','','cmii-uav-user','/user/getCompanyAdminByCId','GET',_binary '\0',_binary '\0','2020-11-11 03:00:34',1,'2024-11-06 12:16:30'),(1127,'API_1a018778504fa7a76012d85ea20ac016','校验指定公司设备类型的编码和名称是否一致','','cmii-uav-device','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-11-07 09:01:55'),(1128,'API_e721a9dee48586a6f9e14acf4f6a0263','校验指定公司的设备类型是否匹配','','cmii-uav-device','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-11-07 09:01:58'),(1129,'API_ce5ec1b31cc777129860ddee19de9f62','校验指定公司的设备动作是否匹配','','cmii-uav-device','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-11-07 09:01:46'),(1130,'API_2339020a7c07baff4815ee31740f7176','查询公司/机构范围的无人机类型列表','','cmii-uav-device','/api/uav/plane/queryUavModelByCompanyId','GET',_binary '\0',_binary '\0','2020-11-11 03:02:21',1,'2024-11-07 09:01:57'),(1131,'API_9a18721b0c11d492ee2ac765d434888e','查看流程模板详情','查看流程模板详情','cmii-uav-process','/process/config/get','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1132,'API_e37ad640561369415c8d63df72d05c38','新增流程模板实例','新增流程模板实例','cmii-uav-process','/process/config/add','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1133,'API_542c619f1d5f824e4f42b06dd28fdf98','修改流程模板信息','修改流程模板信息','cmii-uav-process','/process/config/update','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1134,'API_b282c4114f84b51c2969e4f4ebce1b9c','删除流程模板','删除流程模板','cmii-uav-process','/process/config/delete','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1135,'API_89afc8df9b924aaa9c5d141aed3466f0','查看流程模板列表','查看流程模板列表','cmii-uav-process','/process/config/list','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:54'),(1136,'API_6ebd19fa69f437d23e937843a2298104','查看用户对某个流程的权限【个人关联流程】','查看用户是否具有访问某个流程的权限【个人关联流程】','cmii-uav-process','/process/power/getPermission','GET,POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:59'),(1137,'API_1114d8041ccfb8339eb7935fc8ba9282','个人查看流程列表【个人关联流程】','个人查看流程列表【个人关联流程】','cmii-uav-process','/process/list/personalList','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1138,'API_623a97adf1787f657b4bfaee2f096e72','管理查看流程列表【租户下所有流程】','管理查看流程列表【租户下所有流程】','cmii-uav-process','/process/list/processList','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:58'),(1139,'API_3b39bdb3a9a386ee0ae0e50602ade9b1','查看流程列表【流程自动初始化】','查看流程列表【流程自动初始化】','cmii-uav-process','/process/manage/list','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1140,'API_75ba8f1ce8192c75ee9f3226e6f25846','查看流程配置详细信息','查看流程配置详细信息','cmii-uav-process','/process/manage/get/detail','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1141,'API_b2b42ab1c418280a557fef46840e82fe','修改流程基础信息','修改流程基础信息','cmii-uav-process','/process/manage/update/baseInfo','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:56'),(1142,'API_ec991d995a5d80b1eb62b255d012c7d4','修改流程节点配置信息','修改流程节点配置信息','cmii-uav-process','/process/manage/update/node','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1143,'API_496eb853a337e034b54ff1e95a079d4a','查看流程节点配置信息','查看流程节点配置信息','cmii-uav-process','/process/manage/get/node','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1144,'API_bf6acf6806f9fbb0b11c38c61ec43780','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:56'),(1145,'API_e3fc55528e271f4dbb271d746a073737','模糊搜索用户列表接口[审批管理获取审批用户]','模糊搜索用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/search','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1146,'API_1703f5219dad8f4996685c38fdc268f0','审批流程任务接口【页面接口】','审批流程任务接口,用户对任务发起审批','cmii-uav-process','/process/audit/audit','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:54'),(1147,'API_d7009156f7913b2002131e2560c45832','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/detail','GET',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:57'),(1148,'API_0cf1476dfee47c99bc516adfdbf06f49','改派任务审批人接口【页面接口】','改派任务审批人接口,修改当前任务审批人','cmii-uav-process','/process/audit/modifyAssignee','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:55'),(1149,'API_4de1bec4b470d64f0533261cf217d04a','修改流程实例节点审批人接口【页面接口】','修改节点审批人接口,修改流程后续审批人','cmii-uav-process','/process/audit/modifyNodeAssignee','POST',_binary '\0',_binary '\0','2020-11-11 03:34:25',1,'2024-09-12 02:46:56'),(1150,'API_e0f17baadc09281bc2a44d8c94887c8b','生成流程图接口','生成流程图接口','cmii-uav-process','/process/audit/processDiagram','GET',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:55'),(1151,'API_7530ee2404647eb8c11d70182c8a39ce','流程审核明细接口【页面接口】','流程审批明细接口,展示流程审批过程信息','cmii-uav-process','/process/audit/procInst/node/detail','GET',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:54'),(1152,'API_f7955f527ba9e2bcdda3bb9baa0a7d75','启动新流程【流程实例创建接口】','启动新流程,业务端后台程序发起流程创建【流程实例创建接口】','cmii-uav-process','/client/process/startProcess','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:57'),(1153,'API_70b3d400eb80a1b9690b4dd1decb56a2','获取某个流程类型定义信息【流程配置信息获取接口】','','cmii-uav-process','/client/process/client/process/procDef/get','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,NULL),(1154,'API_e06ce07e7c5675b08857625d167bd512','重新提交驳回流程【驳回流程修改后重新提交接口】','','cmii-uav-process','/client/process/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,NULL),(1155,'API_f1d1326af4d6bf0d9cca780ef7503c62','查询流程状态【业务系统查询流程状态接口】','','cmii-uav-process','/client/process/client/process/getProcessStatus','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,NULL),(1156,'API_46e8d02d8764d540469cc53b96d010e1','获取某个流程类型的详细信息','获取某个流程类型的详细信息','cmii-uav-process','/process/start/procDef/get','POST',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:55'),(1157,'API_369c1f6c5f1d82ffe2022eae2c49421e','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2022-08-29 07:48:39'),(1158,'API_68668fe8c1c836b50875801ff65d1ca0','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2022-08-29 07:48:39'),(1159,'API_c58cc36656b780acc71fe379a6ed895c','swaggerResources','','cmii-uav-process','/swagger-resources','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2022-08-29 07:48:39'),(1160,'API_5afe9893f53f3bec6fff6fc1b30ca37b','error','','cmii-uav-process','/error','',_binary '\0',_binary '\0','2020-11-11 03:34:26',1,'2024-09-12 02:46:59'),(1161,'API_1ba9c89718e73cd3799ca00965f3942c','作业审批','','cmii-uav-mission','/api/uav/mission/mission_info/mission_approval','POST',_binary '\0',_binary '\0','2020-11-11 03:42:29',1,'2024-11-12 01:20:36'),(1162,'API_3fac1e405596412c2e906cd77256fc91','获取审批状态(审批系统状态更新后回调该接口)','','cmii-uav-mission','/api/uav/mission/mission_info/approval_state','POST',_binary '\0',_binary '\0','2020-11-11 03:42:29',1,'2024-11-12 01:20:35'),(1163,'API_fce712ce509feb0d543ce0918eb5757f','一键起飞查询作业列表接口','','cmii-uav-mission','/api/uav/mission/surveillance/queryOneButtonMissionList','GET',_binary '\0',_binary '\0','2020-11-11 03:42:29',1,'2024-11-12 01:20:36'),(1164,'API_831a3e33662ea4563d6924f37af37c84','查询SimId','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/querySimId','GET',_binary '\0',_binary '\0','2020-11-11 04:43:40',1,'2024-11-12 03:52:41'),(1165,'API_8e62b086e420fda5ad62f66b2be29b66','更新状态','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/updateStatus','PUT',_binary '\0',_binary '\0','2020-11-11 04:43:40',1,'2024-11-12 03:52:39'),(1166,'API_cd21a0064744a96ef11a1766255eb95e','统计公司/所属机构范围内的无人机数量','','cmii-uav-device','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2020-11-13 09:33:22',1,'2024-11-07 09:01:53'),(1167,'API_f4ff4a0253654d04df20e0fe9ad84b5d','根据无人机类型查询公司范围的无人机类型详细信息','','cmii-uav-device','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2020-11-13 09:33:23',1,'2024-11-07 09:01:57'),(1168,'API_db3a301b74e08e183f4e7dc6e18b30ab','查询空域以及空域限制数量','','cmii-uav-airspace','/zydAirspace/getAirspaceAndLimitNum.do','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2024-11-14 03:10:22'),(1169,'API_d9bb4dea458b1b86eb1b92d104602347','接口扫描','','cmii-uav-airspace','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2024-11-14 03:10:22'),(1170,'API_1a81598ff757acb38733400f73885a3b','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-airspace','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1171,'API_3f7ab22879f12c428914a7cb8e77d749','新增无人机','','cmii-uav-airspace','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1172,'API_425d874d3b2daa60267633323855812b','修改无人机','','cmii-uav-airspace','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1173,'API_c85f805f662b946370dc35c2d0d7ad81','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-airspace','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1174,'API_4e585954a282fd342c2685906d32db73','按无人机设备号查询无人机详情查询','','cmii-uav-airspace','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1175,'API_f75ea76dbe5590b2e29c31ebb6eb34a6','查询无人机是否可用','','cmii-uav-airspace','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1176,'API_cad9f3dc919a092e904fb87624b76497','查询设备在线状态','','cmii-uav-airspace','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1177,'API_2d5b67c0798f2da03268c719053ae57f','设置无人机在线状态','','cmii-uav-airspace','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1178,'API_7600057ebcc990764bd976d9f4d485f5','查询该公司有的无人机类型详细信息','','cmii-uav-airspace','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1179,'API_6fad829e37a03d312a7241e8b4e90cf9','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-airspace','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1180,'API_04e9a58158a47a98c55c9570bc29983d','查询公司/机构所属的无人机编码列表','','cmii-uav-airspace','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1181,'API_ac8436c7457471e30bac1ea1449b2f17','模糊查询可用状态列表','','cmii-uav-airspace','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1182,'API_ed4f2fe6eebde6163488bef59e3ec7c4','查询公司/机构所属的在线无人机列表','','cmii-uav-airspace','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1183,'API_e7e2f7876c57dc6e95f63072f1bd5b03','无人机绑定的载荷列表查询','','cmii-uav-airspace','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1184,'API_6c9f654619ced038950e62e7830810c8','统计公司/所属机构获取无人机数量','','cmii-uav-airspace','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1185,'API_3651178fee7a083a6ae61ea80699fde4','按无人机编码查询无人机详情查询','','cmii-uav-airspace','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1186,'API_9fe6c4116306d76faadf5bbb71e95efe','根据无人机编码查询该无人机是否存在','','cmii-uav-airspace','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2020-12-28 06:29:10',1,'2023-03-29 08:30:25'),(1187,'API_e2c4e3bb23d0d892004fd7f0fc2e9f70','查询包括子公司的无人机尺度列表','','cmii-uav-device','/api/uav/plane/queryUavSizeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:53'),(1188,'API_9923170469d9fe3e5b24d8610be192ab','查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:48'),(1189,'API_0de4d92e1aa64c8c1800879290c3b3ac','模糊视频线路列表','','cmii-uav-device','/api/uav/plane/queryVideoLine','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:47'),(1190,'API_f4cdb7ba93755daf91e3494414279a5c','按无人机设备号查询指定公司范围内无人机详情','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:45'),(1191,'API_e4c6dfa5b05761de0eb255769cf60dcc','根据设备类型和编码查询公司范围的可用状态信息','','cmii-uav-device','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:53'),(1192,'API_030e4547e850834c14fd61077634881a','查询指定公司/机构范围内的在线无人机列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:46'),(1193,'API_48aebb5ffd9166b9bc64f57909492a08','统计所有无人机数量','','cmii-uav-device','/api/uav/plane/queryAllUavCount','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:54'),(1194,'API_d307152526c45f79fd4e8d95caed9060','模糊查询包括子公司的生产厂家列表','','cmii-uav-device','/api/uav/plane/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:58'),(1195,'API_94d0907cd83bdda66ce2d15eaaf1875c','模糊查询包括子公司的无人机型号列表','','cmii-uav-device','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:53'),(1196,'API_502815d9c4439f38b83309b3c124a511','查询包括子公司的无人机形态列表','','cmii-uav-device','/api/uav/plane/queryUavShapeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:48'),(1197,'API_2736b2c4a2ac36f2a824c6f21c42f29f','模糊查询公司所属的可用状态列表','','cmii-uav-device','/api/uav/hangar/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:45'),(1198,'API_326a1a3ab9812751b8120495bfdc0342','模糊查询公司所属的机库类型列表','','cmii-uav-device','/api/uav/hangar/queryHangarTypeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:46'),(1199,'API_e880f6790e3880dfdf832a77d34f994d','模糊查询公司所属的机库型号列表','','cmii-uav-device','/api/uav/hangar/queryHangarModeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:53'),(1200,'API_c674128d738505b1b654dcc556aca6b3','按条件分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryUavHangarPage','POST',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:52'),(1201,'API_a59f14f77c781d6c32e045a162f33c96','模糊查询公司所属的生产厂家列表','','cmii-uav-device','/api/uav/hangar/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:54'),(1202,'API_6a05eaa7341ed42348a119d0d5098cea','模糊查询包括子公司的可用状态列表','','cmii-uav-device','/api/uav/load/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:58'),(1203,'API_95f6f70e43ae56ae811aae121ce27a1b','模糊查询包括子公司的载荷生产厂家列表','','cmii-uav-device','/api/uav/load/queryMnfNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:48'),(1204,'API_106489797c47bd108d4818ba4fd67d4d','模糊查询包括子公司的载荷类型列表','','cmii-uav-device','/api/uav/load/queryModelNameByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:31',1,'2024-11-07 09:01:45'),(1205,'API_cfa14462d7844b50d869d454a6db494a','模糊查询包括子公司的载荷类别列表','','cmii-uav-device','/api/uav/load/queryLoadTypeByCompanyId','GET',_binary '\0',_binary '\0','2020-12-28 06:30:32',1,'2024-11-07 09:01:47'),(1206,'API_4c67d80c9f6c7ed11355e3170571f851','接口扫描','','cmii-uav-device','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:30:32',1,'2024-11-07 09:01:50'),(1207,'API_4e61ca805de7e414e0a5cd51e894a63d','接口扫描','','cmii-uav-mission','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:36:53',1,'2024-11-12 01:20:36'),(1208,'API_9d875be85707d959500b8a317feb4cee','接口扫描','','cmii-uav-surveillance','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:40:19',1,'2024-11-12 03:56:09'),(1209,'API_5e5f8dd1422db17ae09b283c8a7f0792','查询上传状态','','cmii-uav-waypoint','/middlecourt/api/v1/simulation/getUploadStatus/{key}','GET',_binary '\0',_binary '\0','2020-12-28 06:43:05',1,'2024-11-12 03:52:42'),(1210,'API_a3c29792379896e354fd697f7a3e4024','接口扫描','','cmii-uav-waypoint','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:43:05',1,'2024-11-12 03:52:40'),(1211,'API_15665441f1d1635587fd6f016058f3f6','分组获取平台应用列表','','cmii-uav-user','/api/uav/platform/queryPlatformsByGroup','GET',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:30'),(1212,'API_15665441f1d1635587fd6f016058f3f6','分组获取平台应用列表','','cmii-uav-user','/api/uav/platform/queryPlatformsByGroup','GET',_binary '\0',_binary '','2020-12-28 06:43:07',1,'2022-01-18 11:03:58'),(1213,'API_e4d855c1d7897b6b87fea71e8e06abc0','管理员获取全平台的所有树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:37'),(1214,'API_aea793965a6dccffb67f9c19b0e5c69c','获取某个角色的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForRole','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:29'),(1215,'API_48c8cb8f97e22a0f4b2ac1861f31c9dd','获取某个公司的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForCompany','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:27'),(1216,'API_39112b4382df2b946e30b59c784aa817','获取某个用户的全平台菜单树','','cmii-uav-user','/api/uav/resource/queryAllPlatformsResourceTreeForUser','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:21'),(1217,'API_d83e61c4ac50aa7d9ec1091ed56ab8a3','获取某个用户的某个平台菜单树','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForUser','GET',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:43'),(1218,'API_afd411eb8654953e857666530e88321a','获取应用的类型列表','','cmii-uav-user','/api/uav/resource/getAppTypes','GET',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:36'),(1219,'API_ee6751fb2a2628f5c66cd8085cdbbcb2','管理员获取某一个平台的全部资源','','cmii-uav-user','/api/uav/resource/queryPlatformResourceTreeForAdmin','POST',_binary '\0',_binary '\0','2020-12-28 06:43:07',1,'2024-11-06 12:16:20'),(1220,'API_33b24d37f02f7e07cd5ca451bf432b99','查询所有的用户','','cmii-uav-user','/user/queryAll','GET',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-11-06 12:16:26'),(1221,'API_aa858a3fc95f5d17248bff767175f1dc','查询用户和公司统计','','cmii-uav-user','/user/getStatistic','GET',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-11-06 12:16:40'),(1222,'API_e754afcf7b88439c5aacd7ba36e18d9b','接口扫描','','cmii-uav-user','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-11-06 12:16:31'),(1223,'API_b0554c7914636666aaf2d0672458a6cd','获取某个流程类型定义信息【流程配置信息获取接口】','获取某个流程类型定义信息,业务后台查询某个流程的定义信息','cmii-uav-process','/client/process/procDef/get','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-09-12 02:46:55'),(1224,'API_f58ad6540ac37ed06aa849814e36d2dd','重新提交驳回流程【驳回流程修改后重新提交接口】','业务端后台重新提交驳回流程【驳回流程修改后重新提交接口】','cmii-uav-process','/client/process/resubmitProcess','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-09-12 02:46:57'),(1225,'API_0c81f12bd0f555fe2eb9f25f0904ab15','查询流程状态【业务系统查询流程状态接口】','查询某个流程实例状态【业务系统查询流程状态接口】','cmii-uav-process','/client/process/getProcessStatus','POST',_binary '\0',_binary '\0','2020-12-28 06:43:08',1,'2024-09-12 02:46:56'),(1226,'API_169275344ae8193f7e3f3f39001776de','接口扫描','','cmii-uav-process','/api/scanner/scan','POST',_binary '\0',_binary '\0','2020-12-28 06:43:09',1,'2024-09-12 02:46:56'),(1227,'API_af68b2608a5a700a3b8504c97f0dacff','设备数据字典和匹配校验','','cmii-uav-waypoint','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1228,'API_9b803fd8bcccb3d6d7f42d9dc88cc6a0','新增无人机','','cmii-uav-waypoint','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1229,'API_4de0f5f038062db09cf7ae0b06d9d373','修改无人机','','cmii-uav-waypoint','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1230,'API_a417dcf0371454d834418a042487f682','通过无人机设备号查询无人机编码','','cmii-uav-waypoint','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1231,'API_736d5541d8cdbc3aeaa6e4ce4b5dc3d0','通过无人机编码查询无人机编码设备号','','cmii-uav-waypoint','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1232,'API_9eb7700827ac0160c98fa5c2a3e33434','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-waypoint','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1233,'API_762037d18dd68cd0d895faf640b3bcee','根据无人机编码获取公司信息','','cmii-uav-waypoint','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1234,'API_ec8265026e61114119bc6035b01bb97d','查询该公司有的无人机类型详细信息','','cmii-uav-waypoint','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1235,'API_4b34289fee6b9b03180041fdefca05e6','check设备动作是否匹配','','cmii-uav-waypoint','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1236,'API_8d7abfb09ac62de9e3d6ea50115036ee','按无人机编码查询无人机详情查询','','cmii-uav-waypoint','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1237,'API_78172a760edc58397f8e8f962f0eca3d','按无人机设备号查询无人机详情查询','','cmii-uav-waypoint','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1238,'API_25335ce26ac53477ece5786cacfb6a5e','查询设备在线状态','','cmii-uav-waypoint','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1239,'API_55a89b3a59f0efcaa108b83c8083a036','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-waypoint','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1240,'API_09a8f22372570a4175344e13ef3cae94','模糊查询可用状态列表','','cmii-uav-waypoint','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1241,'API_82e4da2d276a03137e59b0ab3f806364','查询公司/机构所属的在线无人机列表','','cmii-uav-waypoint','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1242,'API_3d35029c383ea19006be8c0c0e0fd126','无人机绑定的载荷列表查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1243,'API_524b37bab927c63618a3a9edece46aef','统计公司/所属机构获取无人机数量','','cmii-uav-waypoint','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1244,'API_4454259283b71738184688a5a1a61358','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-waypoint','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1245,'API_213cabb5de1eed25c9739d6482674269','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-waypoint','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1246,'API_ed5e314cabcf2499d757fe5f805c7c7e','生成新无人机编码','','cmii-uav-waypoint','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1247,'API_4af171b23c836f0fc1ec2abd72c1dc77','check设备类型是否匹配','','cmii-uav-waypoint','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:03:49',1,'2023-05-04 09:35:55'),(1248,'API_586ad6cbe725e05d7f9c7e2fd04325cf','禁用三月未登录过的用户','','cmii-uav-user','/api/uav/user/disableInactiveUsers','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:32'),(1249,'API_8c4df51ed65d15b261daf2bca465eaaf','导出查询结果','','cmii-uav-user','/api/uav/feedback/export','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:39'),(1250,'API_370e298f167c80ef222770b53b25f05d','查询应用列表','','cmii-uav-user','/api/uav/feedback/queryApps','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:33'),(1251,'API_3ea32b425fd30e8ed7d124fe062c72ef','查询问题反馈','','cmii-uav-user','/api/uav/feedback/queryFeedbacks','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:30'),(1252,'API_1b93c3aae168c8efd6dad138874bded8','查询反馈类型','','cmii-uav-user','/api/uav/feedback/queryFeedbackType','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:19'),(1253,'API_d6260990e96ba28ae65e0420311ada19','添加一个问题反馈','','cmii-uav-user','/api/uav/feedback/add','POST',_binary '\0',_binary '\0','2021-01-29 07:09:08',1,'2024-11-06 12:16:29'),(1254,'API_90486be4c33795d2c75c471f947c41b5','校验指定公司的设备数据是否匹配','','cmii-uav-device','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:09:43',1,'2024-11-07 09:01:51'),(1255,'API_40a64df7cb84eea605f73dde15d98668','通过无人机设备号查询无人机编码','','cmii-uav-device','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-11-07 09:01:55'),(1256,'API_7704177d2ecb71fb7bb4068333033d01','通过无人机编码查询无人机设备号','','cmii-uav-device','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-11-07 09:01:46'),(1257,'API_aaa3bdb2ba087941f88cc48a55f4f003','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-11-07 09:01:47'),(1258,'API_ab559f97c2b1ae1a8216fcf3c90f0fba','统计指定公司的(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-11-07 09:01:52'),(1259,'API_4b641b03323c7aba2e2afbab6ea01589','按机库设备号查询机库详情','','cmii-uav-device','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:09:44',1,'2024-11-07 09:01:54'),(1260,'API_e02756ce1d268f6ac8698ac81b2826db','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-11-07 09:01:58'),(1261,'API_90cd80a446b293444ba189243f4afa21','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-11-07 09:01:46'),(1262,'API_2c581c80620f2c6f54d128033e9eccc5','通过机库设备号查询机库编码','','cmii-uav-device','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-11-07 09:01:55'),(1263,'API_9df19cad9a1ba451241223ecdfa09ead','通过机库编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:09:45',1,'2024-11-07 09:01:54'),(1264,'API_424da75617ec54006483edc52b7e696f','机场急停','','cmii-uav-mission','/api/uav/mission/FoiaHangar/stop/{id}','GET',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-11-12 01:20:38'),(1265,'API_f701b72eaec561ea21e7a4e9efd92827','机场复位','','cmii-uav-mission','/api/uav/mission/FoiaHangar/reboot/{id}','GET',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-11-12 01:20:39'),(1266,'API_f9450a4ee19805d14b767d85afb60afc','机场准备','','cmii-uav-mission','/api/uav/mission/FoiaHangar/ready/{id}','GET',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-11-12 01:20:37'),(1267,'API_7d4824e14f3ddc56295b824df109c6d9','周期性在redis存储丢失进行中的信息','','cmii-uav-mission','/api/uav/mission/surveillance/setRedisMissionInfo','POST',_binary '\0',_binary '\0','2021-01-29 07:11:40',1,'2024-11-12 01:20:39'),(1268,'API_fb22472680ef72ebfc603479c388a60d','查询设备在线状态','','cmii-uav-mission','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1269,'API_6f59dd31a5840ba63ebd58bb7e54a7c4','按无人机编码查询无人机详情查询','','cmii-uav-mission','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1270,'API_ebd31cef4d48bfb7e54766f6d784003b','按无人机设备号查询无人机详情查询','','cmii-uav-mission','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1271,'API_9aa1de342a48b50972a4b48bdf27e7c5','查询该公司有的无人机类型详细信息','','cmii-uav-mission','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1272,'API_0215a3010b9250e9b6b0357a45615fe4','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-mission','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1273,'API_da9f04677489e26538e71b9c8a7565f5','模糊查询可用状态列表','','cmii-uav-mission','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1274,'API_646327b7daeb3af90d930e0a6e2cdfeb','查询公司/机构所属的在线无人机列表','','cmii-uav-mission','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1275,'API_6ea96235a5640404c3df7adcb467bcc8','统计公司/所属机构获取无人机数量','','cmii-uav-mission','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1276,'API_1501ac6049853be6c03ec867874c091f','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-mission','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1277,'API_345f0c239781b0b59960856ec37ff89a','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-mission','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1278,'API_0f19127b48107cf6ffd3684fdf7eb328','新增无人机','','cmii-uav-mission','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1279,'API_f20245799f6c52050fd536a2283758cd','修改无人机','','cmii-uav-mission','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1280,'API_d5a1db024948add15ae29d43632620bc','通过无人机设备号查询无人机编码','','cmii-uav-mission','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1281,'API_a805972725b12db9c5e41df66a478fd0','通过无人机编码查询无人机编码设备号','','cmii-uav-mission','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1282,'API_fabbbd0819241f50e91c5bad3d2e4491','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-mission','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1283,'API_6dd2a49c737014f41732b54bbe92cc34','check设备类型是否匹配','','cmii-uav-mission','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1284,'API_09fd06322fa267a0027cb875cdf38f76','check设备动作是否匹配','','cmii-uav-mission','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1285,'API_3ce00fa7b83f072cd7058c9ee3aa121d','设备数据字典和匹配校验','','cmii-uav-mission','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:28'),(1286,'API_f9a217f36007f249f5bd7d5a4bbf3172','根据无人机编码获取公司信息','','cmii-uav-mission','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1287,'API_bf85fa138749a6a03e683ffeba5b4482','生成新无人机编码','','cmii-uav-mission','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:11:41',1,'2023-07-18 04:08:27'),(1288,'API_64bfcc7f1f967905a8dc832e882ca9b5','生成新无人机编码','','cmii-uav-airspace','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1289,'API_d4881ed31a8ab5f17a194fdd4a451b79','通过无人机设备号查询无人机编码','','cmii-uav-airspace','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1290,'API_48dda530a2caabb3678acf9d5e225295','通过无人机编码查询无人机编码设备号','','cmii-uav-airspace','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1291,'API_7b7d9ecc40f2168bd7a35039c959e9d8','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-airspace','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1292,'API_2a05f9e89288287b6bc06e0ad62b8fae','check设备类型是否匹配','','cmii-uav-airspace','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1293,'API_4edc7baa9427bdb404f600c277cb28d8','check设备动作是否匹配','','cmii-uav-airspace','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1294,'API_1317799c7c1ef863c1a07b658f936c17','设备数据字典和匹配校验','','cmii-uav-airspace','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1295,'API_c5fe3c392bfc5993926b4d159409e762','根据无人机编码获取公司信息','','cmii-uav-airspace','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:12:51',1,'2023-03-29 08:30:25'),(1296,'API_14076be4a320bb420893f59ef4d3af65','查询飞行日志','','cmii-uav-surveillance','/surveillance/flyLog/{uuid}','GET',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-11-12 03:56:11'),(1297,'API_327f903486be8cb82cb8ed1a629f1715','查询飞行时长','','cmii-uav-surveillance','/surveillance/flyDuration/{duration}','GET',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-11-12 03:56:07'),(1298,'API_6cc34d23717ebfca7bdae9127c1f4864','开启喊话器','params:喊话内容','cmii-uav-surveillance','/camera/megaphone/start','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-11-12 03:56:09'),(1299,'API_659eed366c2a020e934d2bc3d58b9e39','关闭喊话器','params为空','cmii-uav-surveillance','/camera/megaphone/stop','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-11-12 03:56:04'),(1300,'API_263d5daa8c0179c23b401126bbcde203','设置喊话器音量','params:音量范围0~10','cmii-uav-surveillance','/camera/megaphone/setVolume','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-11-12 03:56:12'),(1301,'API_e9bb76474f17f4137d05f45a13f2900d','设置xt2模式','params:模式范围0,1,2','cmii-uav-surveillance','/camera/XT2ModeSetting','POST',_binary '\0',_binary '\0','2021-01-29 07:32:15',1,'2024-11-12 03:56:08'),(1302,'API_3bf817ec43bf227253f798fdcf13b646','记录飞行日志','','cmii-uav-surveillance','/oapi/saveFlyLog','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-11-12 03:56:08'),(1303,'API_0387c4fa49334cf7f95c3ade04cd7cd1','记录飞行日志','','cmii-uav-surveillance','/oapi/updateFlyLog','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-11-12 03:56:09'),(1304,'API_cc63faa4dd0156e84a03a22be22f8839','飞机下线时删除飞行日志','','cmii-uav-surveillance','/oapi/deleteFlyLog','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-11-12 03:56:10'),(1305,'API_d15f2e54997322cd88e3c4231243e924','统计在线时长','','cmii-uav-surveillance','/oapi/calDuration','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2024-11-12 03:56:11'),(1306,'API_c453b11c4d7e4642804c2a0b4ea562b8','按机库编码查询机库详情查询','','cmii-uav-surveillance','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1307,'API_8f59d45a85af7b03830b792499dd01f0','查询公司/机构所属的机库编码列表','','cmii-uav-surveillance','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1308,'API_231dd57be4bd6fbc5a481534adb503c8','获取无人机绑定的机库详细信息','','cmii-uav-surveillance','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1309,'API_bb431f3c52639fa813afa15a30190f49','获取机库绑定的无人机详细信息','','cmii-uav-surveillance','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1310,'API_db3d3eaedec875d615459259971de9ab','生成新机库编码','','cmii-uav-surveillance','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1311,'API_9eb5275a71b188ad5c0e1be712128d4b','新增机库','','cmii-uav-surveillance','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1312,'API_da01f6d3f5f6cdd03b607f450a22867c','按机库设备号查询机库详情','','cmii-uav-surveillance','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1313,'API_864e1d7f26938049fd7e643757f272a4','修改机库','','cmii-uav-surveillance','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1314,'API_7152166a71fee9fe89715d71dbc31816','通过机库设备号查询机库编码','','cmii-uav-surveillance','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1315,'API_4261753098c828c185a78a044dfdf79e','通过机库编码查询机库设备号','','cmii-uav-surveillance','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:06'),(1316,'API_585adf61aed7f0bcb1f0582801ca7de8','设置机库在线状态','','cmii-uav-surveillance','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-01-29 07:32:16',1,'2023-03-29 09:05:05'),(1317,'API_7cf888253d14b51f7ff8aa3aca50152c','查询航线当前已用配额数','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/current_quota','POST',_binary '\0',_binary '\0','2021-03-05 08:24:27',1,'2024-11-12 03:52:41'),(1318,'API_f95bc280c1ff1d44b76e70135cbb14ac','getUsedQuotaNumByType','','cmii-uav-waypoint','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:24:28',1,'2024-11-12 03:52:41'),(1319,'API_7cc7cee309ba9ebc98b9ec238321a09e','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-waypoint','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:24:28',1,'2023-05-04 09:35:56'),(1320,'API_651bfce6c712d49923d869f80becec21','模糊查询在线无人机编码和机库编码列表','','cmii-uav-waypoint','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:24:28',1,'2023-05-04 09:35:56'),(1321,'API_49247494c82c42d58ffb6d83b3923879','查询作业当前已用配额数','','cmii-uav-mission','/api/uav/mission/mission_info/current_quota','POST',_binary '\0',_binary '\0','2021-03-05 08:25:53',1,'2021-03-29 01:33:58'),(1322,'API_04969e8eceeb833d66f136cb94972a53','getUsedQuotaNumByType','','cmii-uav-mission','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:25:54',1,'2024-11-12 01:20:37'),(1323,'API_31b09004cd00c581ac19afc0c2ead83c','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-mission','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:25:54',1,'2023-07-18 04:08:27'),(1324,'API_9989722ce729a8e98e53f5af1353390c','模糊查询在线无人机编码和机库编码列表','','cmii-uav-mission','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:25:54',1,'2023-07-18 04:08:27'),(1325,'API_7cbd59ade75e3ef1c42860a1c2a27f4b','全局监视页面根据code快速查询设备','','cmii-uav-surveillance','/surveillance/queryDevice','GET',_binary '\0',_binary '\0','2021-03-05 08:45:21',1,'2024-11-12 03:56:11'),(1326,'API_99e470398be86a79a7fe7b2b1b327fbf','queryFlyData','','cmii-uav-surveillance','/oapi/queryFlyData/{companyId}','GET',_binary '\0',_binary '\0','2021-03-05 08:45:21',1,'2021-06-09 03:43:12'),(1327,'API_d7c76ce6ed5855ad6326eaacbb9d0cae','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-surveillance','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1328,'API_cde3eefba3b56ece695729043dd50437','新增无人机','','cmii-uav-surveillance','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1329,'API_fb2874ad70ddda8164d8df3a670c9e7f','修改无人机','','cmii-uav-surveillance','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1330,'API_8532d563a526295196e1ef1195424dd8','通过无人机设备号查询无人机编码','','cmii-uav-surveillance','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1331,'API_0e4dae63b4a73ab7fbc8f7ecb3b9c7f5','通过无人机编码查询无人机编码设备号','','cmii-uav-surveillance','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1332,'API_e493cd33fb2d3303e2ed93af707a129e','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-surveillance','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1333,'API_50406eac9259107ea0da2edd9f72794e','生成新无人机编码','','cmii-uav-surveillance','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1334,'API_32dcb1ef930bb7ff3cca083836840704','按无人机编码查询无人机详情查询','','cmii-uav-surveillance','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1335,'API_ec40bad526e16fe2c200962ff9f9bcf7','按无人机设备号查询无人机详情查询','','cmii-uav-surveillance','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1336,'API_24d2db606bb36666d5e2e0da5534e930','check设备类型是否匹配','','cmii-uav-surveillance','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1337,'API_1f006699dd852263ba0ee06b91366039','check设备动作是否匹配','','cmii-uav-surveillance','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1338,'API_630323f7ea6f78df8964863a1e058f0c','设备数据字典和匹配校验','','cmii-uav-surveillance','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1339,'API_da99815bbe84e14f48ce07a3ddccc355','根据无人机编码获取公司信息','','cmii-uav-surveillance','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1340,'API_18e5d65d1e5f31d0ce89cc14096c8595','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-surveillance','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1341,'API_451e512f13819504da0ba34c4c4af87d','模糊查询可用状态列表','','cmii-uav-surveillance','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1342,'API_fa3f95aebe3a45d652db8e08e27a6384','查询公司/机构所属的在线无人机列表','','cmii-uav-surveillance','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1343,'API_b011caf6a1038912a50ee57a04e66c5b','统计公司/所属机构获取无人机数量','','cmii-uav-surveillance','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1344,'API_9fca5f8abec2443cbc516fb8ec6021d2','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-surveillance','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1345,'API_f12d909cd165015a9ccc6d14ea932bf0','查询设备在线状态','','cmii-uav-surveillance','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1346,'API_795076893d771daab734dacb1505a16c','查询该公司有的无人机类型详细信息','','cmii-uav-surveillance','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1347,'API_beb561db588c977f4b493b21de97ea44','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-surveillance','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1348,'API_02061d97ce91b3bd383d4373f0a0f7fa','模糊查询在线无人机编码和机库编码列表','','cmii-uav-surveillance','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:05'),(1349,'API_e044ae974ff897f852291a7ac5443b09','根据机库编码获取公司信息','','cmii-uav-surveillance','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-03-05 08:45:22',1,'2023-03-29 09:05:06'),(1350,'API_4e0df8f7b53399e937cd1d77e87ffc4f','模糊指定公司的在线无人机编码和机库编码列表','','cmii-uav-device','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:46:31',1,'2024-11-07 09:01:50'),(1351,'API_18fac9d5bf04444272c88e747b034bd7','根据机库编码获取公司信息','','cmii-uav-device','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-03-05 08:46:32',1,'2024-11-07 09:01:50'),(1352,'API_f392e8e611abd392c111b1733bf01c2e','getUsedQuotaNumByType','','cmii-uav-device','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:46:32',1,'2024-11-07 09:01:48'),(1353,'API_ee02cddf9432d4c8f699017d3cefb62a','getUsedQuotaNumByType','','cmii-uav-airspace','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2021-03-05 08:47:07',1,'2024-11-14 03:10:23'),(1354,'API_96892fe677c9c23515aced7e5c835cc5','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-airspace','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-05 08:47:08',1,'2023-03-29 08:30:26'),(1355,'API_f620072ca87ae28faae8ce8fc7033853','模糊查询在线无人机编码和机库编码列表','','cmii-uav-airspace','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-05 08:47:08',1,'2023-03-29 08:30:26'),(1356,'API_9459ff49b424848b1c7fb42856b779f7','下载','','cmii-uav-data-post-process','/v1/product/download/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1357,'API_cc23ed1c8fe2da56ee0375ecdf70e3b5','产品管理分页查询','','cmii-uav-data-post-process','/v1/product/product_info_page_list','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1358,'API_89ccd56b4bdc629b8990e6c6b9dcba53','获取map_report.json信息','','cmii-uav-data-post-process','/v1/product/map_report/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1359,'API_6c9975d530355f36329f8c2546b1f61a','获取拍摄点位置信息','','cmii-uav-data-post-process','/v1/product/pos/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1360,'API_545d5146891d3bd79ebb0b86c470a827','重建任务','','cmii-uav-data-post-process','/v1/task/rebuild/{id}','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1361,'API_ef818ed0cb9afbacded2bf428b65cc33','取消任务','','cmii-uav-data-post-process','/v1/task/cancel/{id}','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1362,'API_cfe1cf9e1e588f8846a32af5452f8164','任务管理分页查询','','cmii-uav-data-post-process','/v1/task/task_info_page_list','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1363,'API_c84fd52e9a5cbe5bf012f515194bb1cf','获取建模场景类型','','cmii-uav-data-post-process','/v1/task/getScenceType','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1364,'API_8d65fe03b05e8fea0a059b3d9d8eb850','根据任务id查询任务详情','','cmii-uav-data-post-process','/v1/task/task_info/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1365,'API_855069b95280ecd09143ca46e2958c38','编辑获取三张图片URL','','cmii-uav-data-post-process','/v1/task/getPicUrl/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1366,'API_59d4b802a27f0825292a987b39ffd59b','上传POS文件','','cmii-uav-data-post-process','/v1/task/uploadPos','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1367,'API_1ddfbdf96ef11183031d490487795d00','上传图片','','cmii-uav-data-post-process','/v1/task/uploadPic','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1368,'API_8931e96fa8450d8f0dadd3f20044f621','判断任务名称是否重复-n','','cmii-uav-data-post-process','/v1/task/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1369,'API_be409ef972769200493ae669b7641e05','更新任务','','cmii-uav-data-post-process','/v1/task/update','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1370,'API_31b52892648d5dfb5793f69cd1aee01a','删除/批量删除','','cmii-uav-data-post-process','/v1/task/delete','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1371,'API_db0b7babb357fdbbd53be35427d129f9','下载上传测试','','cmii-uav-data-post-process','/v1/task/test','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-04-20 09:19:37'),(1372,'API_246a9e5c8c40d50586fe274719b7063a','开始任务','','cmii-uav-data-post-process','/v1/task/start/{id}','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1373,'API_3ff4ecf7ac3f3a90a001b29caddc019b','新增任务','','cmii-uav-data-post-process','/v1/task/create','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1374,'API_169644a4224fd00f7c6ed9c8ad157365','点云数据上传','','cmii-uav-data-post-process','/3d/visual/uploadPointCloud','POST',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1375,'API_88121e8c87e364e95d8fc992a9b5b6b8','文件进度查询','','cmii-uav-data-post-process','/3d/visual/progress','GET',_binary '\0',_binary '\0','2021-03-05 08:56:18',1,'2021-07-06 05:44:30'),(1376,'API_d81370ec395231ea118691f802a3959f','三维可视化产品检索/列表','','cmii-uav-data-post-process','/3d/visual/retrieval','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1377,'API_d18e46e52b3039c43e43057c018ba401','三维可视化产品下载','','cmii-uav-data-post-process','/3d/visual/download','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1378,'API_c0b9092d6e017414e022019219a5c0df','单体模型上传新增','','cmii-uav-data-post-process','/3d/visual/modelUploadAdd','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1379,'API_e71ec279bbf71933762a2869a4c8aae0','文件合并','','cmii-uav-data-post-process','/3d/visual/merge','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1380,'API_00d64428ac4f1c56e406cc715f37f794','文件秒传查询','','cmii-uav-data-post-process','/3d/visual/fileValidate','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1381,'API_15859e0c21efcee3b93d16175037bf64','三维可视化产品编辑','','cmii-uav-data-post-process','/3d/visual/edit','PUT',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1382,'API_c4b0c1cb77e96f0367b62b8ed70ba43b','三维可视化产品数据管理列表','','cmii-uav-data-post-process','/3d/visual/pageInfo','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1383,'API_cf739754c7f4d8bec10cb1ba5e588045','三维可视化产品详情','','cmii-uav-data-post-process','/3d/visual/detail/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1384,'API_0679a1f2be7d6e2442aa7e74d9acab4a','判断产品名称是否重复','不存在true,存在false','cmii-uav-data-post-process','/3d/visual/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1385,'API_35b322ad7b37fd1ba2f98f7062ecbc18','三维可视化产品删除','','cmii-uav-data-post-process','/3d/visual/delete','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1386,'API_af48c2bf6f88f715b7230f3194310cc4','单体模型上传删除','','cmii-uav-data-post-process','/3d/visual/modelUploadDelete','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1387,'API_eccd1f8f2e92409eb9f7c17c0a0636bf','单体模型上传编辑数据回显','','cmii-uav-data-post-process','/3d/visual/modelUploadInfo/{id}','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1388,'API_caf83005e3996c45733c7ed85a18c310','单体模型上传修改','','cmii-uav-data-post-process','/3d/visual/modelUploadEdit','PUT',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1389,'API_9ef1db25fb494b05ed3ca3e663d47dfb','三维可视化产品新增','','cmii-uav-data-post-process','/3d/visual/save','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1390,'API_9e7b833bb630e85a08e88063bf364fb4','点云文件名更新','','cmii-uav-data-post-process','/3d/visual/rename','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:30'),(1391,'API_0e5f0acd24f9678a5d9eb85e53172b7b','接口扫描','','cmii-uav-data-post-process','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2024-09-09 09:16:29'),(1392,'API_a0b543736472d30f7547431b9d9167fa','uiConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2022-06-08 03:06:20'),(1393,'API_7c69b2e9a17539f83179cd3667a81fae','swaggerResources','','cmii-uav-data-post-process','/swagger-resources','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2022-06-08 03:06:20'),(1394,'API_648fb7a293e4810e8ad1ff2412de91eb','securityConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2022-06-08 03:06:20'),(1395,'API_aa7ce5574fa478381148404b669b1bfa','删除数据对象','','cmii-uav-data-post-process','/api/minio/core/removeObject','DELETE',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1396,'API_86a9b5871297856cfa8961ecbfcf683d','判断桶的对象是否存在','','cmii-uav-data-post-process','/api/minio/core/checkBucketObjectExist','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1397,'API_8a8b4d2ebeb57fd0e9b846c16403cae2','上传对象,基于文件','','cmii-uav-data-post-process','/api/minio/core/putObject/file','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1398,'API_0450437204ee337a7e79780bec7e3b9a','获取需要下载的对象的URL','','cmii-uav-data-post-process','/api/minio/core/getObjectUrl','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1399,'API_320aea144882e52790db501ac360e569','获取需要下载的对象的URL,有效期1天','','cmii-uav-data-post-process','/api/minio/core/getPresignedObjectUrl','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1400,'API_977467cc0cf6d304159436147c01f129','列出指定条件下的所有存储对象','','cmii-uav-data-post-process','/api/minio/core/listObjects','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1401,'API_3036f5b99ad32c01dbcf78bdc163b052','上传对象,基于输入流','','cmii-uav-data-post-process','/api/minio/core/putObject/stream','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2021-07-06 05:44:31'),(1402,'API_ca28830caafb750d4540b97b3cc8775e','第一次上传项目','第一次上传项目,返回projId','cmii-uav-data-post-process','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1403,'API_f0c8f2e13ad248e06e71b585379a312d','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-data-post-process','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1404,'API_4557dd7f13c4d01b4e7105f3fae14edc','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-data-post-process','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1405,'API_b11d894aa4171d47cd426d7eb888abb7','删除项目的文件','删除项目的文件,支持批量','cmii-uav-data-post-process','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1406,'API_a6f7254e8668e761007186ba05975a0c','项目文件上传','上传项目文件 ','cmii-uav-data-post-process','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2023-03-29 08:38:08'),(1407,'API_7654a8d0f2881056d9f2d8c9475aec7b','error','','cmii-uav-data-post-process','/error','',_binary '\0',_binary '\0','2021-03-05 08:56:19',1,'2024-09-09 09:16:30'),(1408,'API_4af5893392682f4c772cc6fd43822722','模糊查询当前公司下全量的用户列表','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info/vague','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-11-12 01:20:36'),(1409,'API_84f043be2e4013cce86b198726676544','查询作业执行人的用户列表(数据回填专用)','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info/fallBack','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-11-12 01:20:38'),(1410,'API_015807cd5fc04522602251b1f4d3bce3','模糊查询作业创建人的用户列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/down_list_create_user_info','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-11-12 01:20:35'),(1411,'API_64ce54248af887816ce6324ce45e2641','提供给中科院地理所作业详情查询','','cmii-uav-mission','/api/uav/mission/mission_info_list/task_info','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-11-12 01:20:35'),(1412,'API_9e6f80667889e7658f6639404b0e6937','数据恢复','','cmii-uav-mission','/api/uav/mission/mission_info_list/recovery_track_data','POST',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-11-12 01:20:38'),(1413,'API_5552513e7cdd28fe17c7b8b8095424df','getProcessIsExist','','cmii-uav-mission','/client/process/getProcessIsExist','GET',_binary '\0',_binary '\0','2021-03-19 05:47:11',1,'2024-11-12 01:20:40'),(1414,'API_406ff88acf10405695de904d537ee1b8','getNjHistoryPoint','','cmii-uav-surveillance','/surveillance/getNjHistoryPoint','GET',_binary '\0',_binary '\0','2021-03-19 05:47:18',1,'2024-11-12 03:56:07'),(1415,'API_02c2b3cc0c789674700010e27c671121','hangarLoadControl','','cmii-uav-surveillance','/camera/hangarLoadControl','POST',_binary '\0',_binary '\0','2021-03-19 05:47:18',1,'2024-11-12 03:56:04'),(1416,'API_e1119e261ccaf0dcc95320cbaf0c9e03','查询空域详情-n(数据回填专用)','传入空域主键','cmii-uav-airspace','/zydAirspace/queryDetail.do/fallBack','GET',_binary '\0',_binary '\0','2021-03-19 05:49:40',1,'2024-11-14 03:10:23'),(1417,'API_869d9b04d73f4ccba32d7f45de4b53ee','getProcessIsExist','','cmii-uav-airspace','/client/process/getProcessIsExist','GET',_binary '\0',_binary '\0','2021-03-19 05:49:40',1,'2024-11-14 03:10:23'),(1418,'API_34920ec007c3ac277370bdb9532f2a2a','查看用户列表接口[审批管理获取审批用户]','查看用户列表接口[审批管理获取审批用户]','cmii-uav-process','/process/manage/get/user/list/vague','GET',_binary '\0',_binary '\0','2021-03-19 05:50:21',1,'2024-09-12 02:46:58'),(1419,'API_4c3c7e261f5d40feb0f4567886cd3737','流程详情接口【页面接口】','流程详情接口,展示流程详情基础信息','cmii-uav-process','/process/audit/procInst/getProcessIsExist','GET',_binary '\0',_binary '\0','2021-03-19 05:50:21',1,'2024-09-12 02:46:58'),(1420,'API_edb896c8f7a949895d9d28aa9a5950c6','查询公司详细信息(数据回填专用)','','cmii-uav-user','/api/uav/org/getCompanyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:17',1,'2024-11-06 12:16:24'),(1421,'API_c727602364100d70015a5ce2f3b30493','根据token获取用户基本信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getMyDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-11-06 12:16:40'),(1422,'API_0755f3279b5bf809dcfb81600e4c7310','获取用户详细信息(数据回填专用)','','cmii-uav-user','/api/uav/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-11-06 12:16:40'),(1423,'API_1b7015d5a94be8c6f1fa73ce08a46c25','删除用户','','cmii-uav-user','/api/uav/user/delete','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-11-06 12:16:25'),(1424,'API_4de3b611f4460f38f9a8a8b2be70a663','是否还有配额','','cmii-uav-user','/quota/personal/hasQuota','POST',_binary '\0',_binary '\0','2021-03-19 05:51:18',1,'2024-11-06 12:16:34'),(1425,'API_bf931bc2b9309816c6beaed0cfb4ebed','二三维建模根据code获取用户Token','二三维建模根据code获取用户Token','cmii-uav-data-post-process','/v1/permission/user/getTerraToken','GET',_binary '\0',_binary '\0','2021-03-19 05:53:16',1,'2024-09-09 09:16:29'),(1426,'API_4b7f2c204a20619304859f611f2481c1','三维可视化根据code获取用户Token','三维可视化权限获取token','cmii-uav-data-post-process','/v1/permission/user/getVisualToken','GET',_binary '\0',_binary '\0','2021-03-19 05:53:16',1,'2024-09-09 09:16:30'),(1427,'API_28c90b87b0a44241486efce657ac1027','保存复亚的位置信息2','','cmii-uav-mqtthandler','/foia/saveFoiaTrackInfo2','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-09-28 01:55:53'),(1428,'API_4d6c2d76433cb4a372d715d6e19f50cd','保存复亚的位置信息','','cmii-uav-mqtthandler','/foia/saveFoiaTrackInfo','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-09-28 01:55:53'),(1429,'API_0a80b501b02669c79a381de8aa9fe693','开始任务','','cmii-uav-mqtthandler','/mqtt/startMission','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1430,'API_c36031561f8bc94e54bc7a11053a1c96','结束任务','','cmii-uav-mqtthandler','/mqtt/endMission','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:29'),(1431,'API_601a0aff69d14aa570e58d398f6fce09','轨迹恢复','','cmii-uav-mqtthandler','/mqtt/recoveryTrackData','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1432,'API_5b55481c3686a7cef015c60c344b7f48','发送任务指令','','cmii-uav-mqtthandler','/mqtt/MissionSend','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:29'),(1433,'API_bb0472471e6e157406f9e42a42d0af46','摄像参数设置','设置相机摄像参数','cmii-uav-mqtthandler','/gimbal/video/setting','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1434,'API_8f989250e64e61745daa1b6d4a93e743','云台参数设置','设置云台转动参数','cmii-uav-mqtthandler','/gimbal/gimbal/setting','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:29'),(1435,'API_a663322ce87ea58cac4b4fbc7a059d0d','自动对焦','云台自动对焦','cmii-uav-mqtthandler','/gimbal/camera/autoFocus','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:29'),(1436,'API_0cf94e61e21a555077fe5090a5f9cd89','拍照/摄像','拍照或摄像','cmii-uav-mqtthandler','/gimbal/camera/cameraAction','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:30'),(1437,'API_11ba43c3ec79c262f9026f1c7093e6a1','镜头缩放','镜头缩放','cmii-uav-mqtthandler','/gimbal/camera/zoom','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1438,'API_d23d700f4344d073c7a3a6de168d0aaa','切换为照相/摄像模式','','cmii-uav-mqtthandler','/gimbal/camera/modeChange','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:30'),(1439,'API_1d5ed939a990b8285d9c812ef4795b8d','云台控制转向','','cmii-uav-mqtthandler','/gimbal/gimbal/control','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1440,'API_78493ed0da030621c1c9e751df34abd9','相机参数设置','设置相机拍照参数','cmii-uav-mqtthandler','/gimbal/camera/setting','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:27'),(1441,'API_c914a0735dd37762f089d627a1766b12','批量上传飞行态势数据','同时上传多架次无人机飞行态势数据,每秒上传一次','cmii-uav-mqtthandler','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1442,'API_ddee7deab9f1c0fc74b9f074268f58f0','上传飞行态势数据','上传单架次无人机飞行态势数据,每秒上传一次','cmii-uav-mqtthandler','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:27'),(1443,'API_e88fafb548f8395e747ec2947d1d3129','获取一次飞行的轨迹','根据orderId获取一次飞行的轨迹','cmii-uav-mqtthandler','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1444,'API_c29fbfd49b3f0a8eab190de53b659af7','获取一次作业的轨迹','根据missionId获取一次飞行的轨迹,每秒上传一次','cmii-uav-mqtthandler','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1445,'API_5f4abbc22b087a1c4fa06c686f969659','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-mqtthandler','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:30'),(1446,'API_3458281ed9381f2071effe1238298925','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-mqtthandler','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:30'),(1447,'API_2d3cd80605727ef6bf82b6c219fb2d7a','发送航线到复亚机库','','cmii-uav-mqtthandler','/mqtt/hangar/sendRoute2Box','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:29'),(1448,'API_86974c85cb82e7ac573d2efb01c2120b','发送控制命令到复亚机库','','cmii-uav-mqtthandler','/mqtt/hangar/sendCommand','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,NULL),(1449,'API_767ced6b5f9135c88be24d811efb32e4','commandTest','','cmii-uav-mqtthandler','/mqtt/hangar/testDeviceInfoGet','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-05-23 07:50:19'),(1450,'API_834128407372429d40202086ec5c8083','commandTest','','cmii-uav-mqtthandler','/mqtt/hangar/testCommand','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1451,'API_4954a24d516fb8514fba92dcbf82d64c','控制是否打印机库日志接口','','cmii-uav-mqtthandler','/mqtt/hangar/redisLogSwitch','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:30'),(1452,'API_e18a887c2e4dbe06f1e4339bbd38a55e','修改biz redis配置','','cmii-uav-mqtthandler','/mqtt/hangar/modifyBizConfig','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-09-28 01:55:54'),(1453,'API_1cdbc47391cfd8bdace0e60587ae3a73','send','','cmii-uav-mqtthandler','/send/msg','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1454,'API_ad572945f7cf45abe208d2b3892f4fdc','订阅','','cmii-uav-mqtthandler','/uav/subscribe','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:30'),(1455,'API_11b75cc41a77e81d06f41cbb2b121898','回调','','cmii-uav-mqtthandler','/uav/uavInfo','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1456,'API_71760adbff33a72daa3978da8f8beaf8','更新uavCode和天途SN码','','cmii-uav-mqtthandler','/uav/updateUavSn','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:27'),(1457,'API_9db0cee11827994129a2530e702fb94e','检查水泵开关状态','','cmii-uav-mqtthandler','/uav/checkPumpStatus','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:26'),(1458,'API_4ddd7470e2c43abacb4556a0cb2452a5','打开或关闭水泵开关','','cmii-uav-mqtthandler','/uav/sprayCommand','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:27'),(1459,'API_1fea100d31c9ead49f4d989b3410b440','喷洒控制','','cmii-uav-mqtthandler','/uav/sprayControl','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:28'),(1460,'API_3013f9aeaf4f26196ff55e6d097e5086','查询天途云台视频播放地址','','cmii-uav-mqtthandler','/uav/rtmp/{uavCode}','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:29'),(1461,'API_923ca55de23e8d0a931a1f522cd8f56a','接口扫描','','cmii-uav-mqtthandler','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2024-11-07 08:51:27'),(1462,'API_1121b4afccbc7f7c8d358300b7b8d55d','swaggerResources','','cmii-uav-mqtthandler','/swagger-resources','',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-04-25 02:51:09'),(1463,'API_02ec4eebffaef82565d6636e8959e639','uiConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-04-25 02:51:09'),(1464,'API_e037dc9553caf6662d5153052328fa21','securityConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2022-04-25 02:51:09'),(1465,'API_3c26d41e43d1dd1d3163c6c8e943083c','通过无人机设备号查询无人机编码','','cmii-uav-mqtthandler','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1466,'API_9e4352cd84990d1be6d70980262a94b0','根据无人机编码查询该无人机是否存在','','cmii-uav-mqtthandler','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1467,'API_6add593c6857052058d95b83ae672682','查询无人机是否可用','','cmii-uav-mqtthandler','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1468,'API_24a2953b91cf2401ee86a28b0701bd8e','设置无人机在线状态','','cmii-uav-mqtthandler','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:22'),(1469,'API_41c28cef6648150124d425030699a61c','按无人机设备号查询无人机详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:22'),(1470,'API_34dbca1ed5678a2abbddbf7833afe197','生成新无人机编码','','cmii-uav-mqtthandler','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1471,'API_047dce2adddc92520dbc7581507cbb04','查询设备在线状态','','cmii-uav-mqtthandler','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1472,'API_17559bc5e3daefa77ac7bed8ffda18d7','按无人机编码查询无人机详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1473,'API_8e227fa3f5be60623574dcc82031d3d6','通过无人机编码查询无人机编码设备号','','cmii-uav-mqtthandler','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1474,'API_8ac5653df237bc79164c8439a38761fb','根据无人机编码获取公司信息','','cmii-uav-mqtthandler','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1475,'API_1e0b7a938a525f09ba8b3d751a77f8cd','查询该公司有的无人机类型详细信息','','cmii-uav-mqtthandler','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1476,'API_d6841d6ed87cd0a4cfce6685991075b4','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-mqtthandler','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1477,'API_032b3df43de6a61032c348486f376d6f','查询公司/机构所属的无人机编码列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1478,'API_0c5774ed458b4ed1efe3126d9d4eedad','模糊查询可用状态列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1479,'API_f437bd82b5da4c89e0b40529fdf75d4b','查询公司/机构所属的在线无人机列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1480,'API_aa5cc9e9be11f7209307162fbfc403b2','无人机绑定的载荷列表查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1481,'API_124e83abc445a75b6ee78436af019904','统计公司/所属机构获取无人机数量','','cmii-uav-mqtthandler','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1482,'API_70fc36f54dc805f2cfcbb749deaf0d2d','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-mqtthandler','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1483,'API_9f28e782a1d197fec0190d58c085b907','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-mqtthandler','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1484,'API_1dcba599a8ae797c27839c254b0f315b','新增无人机','','cmii-uav-mqtthandler','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2021-03-19 06:25:43',1,'2023-05-04 09:36:21'),(1485,'API_4ef517005e61cbc21d301ae2438b737a','修改无人机','','cmii-uav-mqtthandler','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:21'),(1486,'API_52984f82355fc31ac1008e7a1138a4fa','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-mqtthandler','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:21'),(1487,'API_8dcc9ee6e14badc0cb2da3cebc49d0f9','check设备类型是否匹配','','cmii-uav-mqtthandler','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1488,'API_e63c260280d3c227f497daf7e1155801','check设备动作是否匹配','','cmii-uav-mqtthandler','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1489,'API_e4b92231f9c44db1137de242d01bc478','设备数据字典和匹配校验','','cmii-uav-mqtthandler','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1490,'API_f22bf0aea52ab0490e1f27b4c600e663','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-mqtthandler','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1491,'API_e82afc6d0bf9f514bf8dbaaf9e49d3c8','模糊查询在线无人机编码和机库编码列表','','cmii-uav-mqtthandler','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:21'),(1492,'API_799331f9fd344e72ae5d11c85602e5d4','设置机库在线状态','','cmii-uav-mqtthandler','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1493,'API_f456a7f2814bc70f0a6cb895b05d9a4f','按机库设备号查询机库详情','','cmii-uav-mqtthandler','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1494,'API_1bd4ef68116a0faf4824bb2dca07a8aa','修改机库','','cmii-uav-mqtthandler','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1495,'API_540e4fa57f457dc5c01fa54d35063d36','生成新机库编码','','cmii-uav-mqtthandler','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1496,'API_71c74cd05545e26bed7a69d371da8285','新增机库','','cmii-uav-mqtthandler','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1497,'API_df3eac427baaa24c1f85a06d0cbe724c','获取机库绑定的无人机详细信息','','cmii-uav-mqtthandler','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1498,'API_d4826662c06d3b06c1727ce0f8603876','获取无人机绑定的机库详细信息','','cmii-uav-mqtthandler','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1499,'API_1d1b366fe216a5754ca601416b379ea1','查询公司/机构所属的机库编码列表','','cmii-uav-mqtthandler','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1500,'API_409c4d6ad3f8d3fb99056b989a196bb5','根据机库编码获取公司信息','','cmii-uav-mqtthandler','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1501,'API_dad74d331bfe718f060ff57e1302ad32','通过机库设备号查询机库编码','','cmii-uav-mqtthandler','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1502,'API_bb1b9f9d4b56159e994f1cd70deb7d1f','通过机库编码查询机库设备号','','cmii-uav-mqtthandler','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1503,'API_8e2462113aabce64c6deacf66a7ab606','按机库编码查询机库详情查询','','cmii-uav-mqtthandler','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2023-05-04 09:36:22'),(1504,'API_f758a6cc232d6dbcb2979ecc800119f4','error','','cmii-uav-mqtthandler','/error','',_binary '\0',_binary '\0','2021-03-19 06:25:44',1,'2024-11-07 08:51:31'),(1505,'API_9f10b1349eb7299406c94a7eae1fc212','按类型导入字典明细','','cmii-admin-data','/api/admin/dictionary/dictImport','POST',_binary '\0',_binary '\0','2021-03-19 06:45:45',1,'2024-11-06 12:16:54'),(1506,'API_41e1f6d85f2724a89061a30a00b199d9','按类型导出字典明细','','cmii-admin-data','/api/admin/dictionary/dictExport','GET',_binary '\0',_binary '\0','2021-03-19 06:45:45',1,'2024-11-06 12:16:57'),(1507,'API_8273362a82640f68d9061f967d5ea3cb','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/cam/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:45',1,'2024-11-06 12:16:51'),(1508,'API_66476ec9921485b64010dd50885985e5','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/spk/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:51'),(1509,'API_7487d41441eaff5b202a6cc54e48b362','从Redis获取有效的编码对应的所有语言的值','从Redis获取有效的编码对应的所有语言的值','cmii-admin-data','/api/admin/dictionary/getAllLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:48'),(1510,'API_558bd45f421ad0fc6bd325ad037809e5','从Redis获取有效的本地语言值对应的key','类型对应的本地语言值对应的key','cmii-admin-data','/api/admin/dictionary/getLangKeyFromRedisByValue','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:58'),(1511,'API_c34e31bdefebec7afca0c28a4ce25655','从Redis模糊查询有效数据字典列表','从Redis模糊查询有效数据字典列表','cmii-admin-data','/api/admin/dictionary/getDictListFromRedis','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:49'),(1512,'API_31b549a1139985fc1c0dbc21eb6b24a6','check在Redis里面编码和名称是否一致','check在Redis里面编码和名称是否一致','cmii-admin-data','/api/admin/dictionary/checkMapingInRedis','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:47'),(1513,'API_e4151a02daecf76311cc8baaebe27ede','为区块链提供接口,查询空域限制数量','无需传参数','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitCount.do','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:57'),(1514,'API_e158024b9d2170b4cc3c16e7c18c2a26','获取机场区域以及禁飞区','','cmii-admin-data','/api/admin/arealimit/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:46'),(1515,'API_e2c418b0d87cdb39a51448d12818b727','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/plane/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:55'),(1516,'API_7d5d4aa167650e78febf5e176e2ff7c0','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/hangar/checkNotFrozen','GET',_binary '\0',_binary '\0','2021-03-19 06:45:46',1,'2024-11-06 12:16:57'),(1517,'API_a0dbde8cd3176b28b139ea6c067e614b','接口扫描','','cmii-admin-data','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-03-19 06:45:47',1,'2024-11-06 12:16:53'),(1518,'API_3a687682ca5ff7370cd41352d39b3b76','获取图片链接','','cmii-uav-mission','/oss/getPicture','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:35'),(1519,'API_569d105dc0c725a4be7855f4e70c9fa5','下载图片','','cmii-uav-mission','/oss/download','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:34'),(1520,'API_433113c8082be824d89a47fa44ea44e8','批量上传文件','','cmii-uav-mission','/oss/upload','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:34'),(1521,'API_00943517371b0c6b1794b84c3aecaf06','更新定时作业母版','','cmii-uav-mission','/api/uav/mission/mission_info/timed_mission_plan_data','PUT',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:39'),(1522,'API_32be9d8ac8e444d09d27de8bce51a886','获取定时作业航线信息全集','','cmii-uav-mission','/api/uav/mission/mission_info/airLineInfoTimedList','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:39'),(1523,'API_23c36759ab431790c6e360ce89c8ef7f','创建定时作业母版','','cmii-uav-mission','/api/uav/mission/mission_info/timed_mission_plan_data','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:38'),(1524,'API_871c01f480b77b493496589cddbdae78','getFoiaPicInfos','','cmii-uav-mission','/api/uav/mission/mission_info/getFoiaPicInfos','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:36'),(1525,'API_1f7abd99859f1a889ca483e485c733ee','创建定时作业','','cmii-uav-mission','/api/uav/mission/mission_info/period_timer/{id}','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:35'),(1526,'API_ae8f648b7fae3c35c59362d6477c9776','停止定时作业','','cmii-uav-mission','/api/uav/mission/mission_info/period_timer_stop/{id}','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:35'),(1527,'API_6f08767c2fb77abf891146ebea4b1845','测试发送短信','','cmii-uav-mission','/api/uav/mission/mission_info/sms/{id}','GET',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:38'),(1528,'API_74b33420d1fe470d9f86c9bd08f9c1e4','分页条件筛选定时作业列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/timed_mission_info_list_with_filters','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2021-04-23 02:42:44'),(1529,'API_9923650f832119aef322b6f5f2d7f532','saveFlyHistory','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/saveFlyHistory','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:41'),(1530,'API_a781d84214f33db7e7c993f0fdd6fb2d','更新定时作业计划启用状态','','cmii-uav-mission','/api/uav/mission/mission_info_list/timed_mission_plan_enable_switch','PUT',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2024-11-12 01:20:39'),(1531,'API_ef25091c986ef461a5d2e19d3cd0f93d','定时作业下拉菜单模糊查询','支持作业名称 0','cmii-uav-mission','/api/uav/mission/mission_info_list/timed_mission_down_list_fuzzy_info','POST',_binary '\0',_binary '\0','2021-03-31 09:48:43',1,'2021-04-23 02:42:44'),(1532,'API_c6a6fa074f440bf0ea404138f9dc1fad','saveFoiaPicInfo','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/saveFoiaPicInfo','POST',_binary '\0',_binary '\0','2021-03-31 09:48:44',1,'2024-11-12 01:20:38'),(1533,'API_bdbe6821b04215aa98e67786f5044122','按条件分页查询自动上报的设备型号信息','','cmii-uav-device','/queryUavDevPage','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1534,'API_deb9b004835cedab2f4491a6251e6983','分配设备给指定公司','','cmii-uav-device','/allocateUavDev','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1535,'API_157bd273a43281461c2787b2c213ddde','批量分配设备给指定公司','','cmii-uav-device','/allocateUavDevBatch','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1536,'API_3f25f73b51ac9d74a7d1acddf999babe','删除设备信息','','cmii-uav-device','/deleteUavDev','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1537,'API_d6e06c7e5a997c490d62d20af9d441e7','批量删除设备信息','','cmii-uav-device','/deleteUavDevBatch','POST',_binary '\0',_binary '\0','2021-03-31 09:51:51',1,'2021-03-31 09:51:54'),(1538,'API_2c721f3298566d003acc082abe9fb2a5','新建定时作业时模糊查询航线名称','发送所有定时作业航线给前端,前端做模糊查询','cmii-uav-waypoint','/api/uav/waypoint/mission/api/uav/waypoint/mission/air_line_info_list_timed','GET',_binary '\0',_binary '\0','2021-03-31 09:53:03',1,'2024-11-12 03:52:41'),(1539,'API_208845de413e01576bb862ca7f7978dd','获取/释放无人机控制权限','','cmii-uav-surveillance','/virtualStick/changeControlMode','POST',_binary '\0',_binary '\0','2021-03-31 09:53:42',1,'2024-11-12 03:56:11'),(1540,'API_1ca55485d1fcdb2c57201ba951ccdb03','起飞','','cmii-uav-surveillance','/virtualStick/flyUp','POST',_binary '\0',_binary '\0','2021-03-31 09:53:42',1,'2024-11-12 03:56:07'),(1541,'API_7a704f1fbf413b09c1202b0af851efb1','虚拟遥感','','cmii-uav-surveillance','/api/uav/VirtualStick/virtualStick','POST',_binary '\0',_binary '\0','2021-03-31 09:53:44',1,'2023-01-18 04:50:24'),(1542,'API_6f9c47d47b51b55436da65fefca5ef98','获取/释放无人机控制权限','','cmii-uav-surveillance','/api/uav/VirtualStick/changeControlMode','POST',_binary '\0',_binary '\0','2021-03-31 09:53:44',1,'2023-01-18 04:50:24'),(1543,'API_fcd0dd427263d992c4d749c90c1de9d9','升起','','cmii-uav-surveillance','/api/uav/VirtualStick/flyUp','POST',_binary '\0',_binary '\0','2021-03-31 09:53:44',1,'2023-01-18 04:50:24'),(1544,'API_cb806b5622e15dfbe269203c9ef12f5a','通过流程实例ID删除流程实例【测试使用】','通过流程实例ID删除流程实例【测试使用】','cmii-uav-process','/client/process/deleteProcess','POST',_binary '\0',_binary '\0','2021-03-31 09:54:17',1,'2024-09-12 02:46:56'),(1545,'API_ea2e692b4331c50131d21f8ecaba6f12','无人机列表绑定的载荷列表详情查询','','cmii-uav-mission','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-19 09:12:43',1,'2023-07-18 04:08:27'),(1546,'API_cafe2b9e70f2bce5aedaaa30943af4ee','修改快速航点信息','航线ID存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list_fast','PUT',_binary '\0',_binary '\0','2021-04-20 06:24:16',1,'2024-11-12 03:52:41'),(1547,'API_3996fc090afb68eb04ed808cfe780391','绘制快速航点接口(创建航点)','航线ID不存在','cmii-uav-waypoint','/api/uav/waypoint/airpoint/airpoint_info_list_fast','POST',_binary '\0',_binary '\0','2021-04-20 06:24:16',1,'2024-11-12 03:52:41'),(1548,'API_45d9277cf079417c618da9f45d545a11','无人机列表绑定的载荷列表详情查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 06:24:17',1,'2023-05-04 09:35:56'),(1549,'API_acebee45653d893e76a60a1d75cd0a3c','queryCompany','','cmii-uav-user','/clients/org/queryCompany','GET',_binary '\0',_binary '\0','2021-04-20 09:18:18',1,'2024-11-06 12:16:35'),(1550,'API_65816ac1a814c3251864b2a34e8c0886','根据id查询公司信息','','cmii-uav-user','/clients/org/getById','GET',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-11-06 12:16:20'),(1551,'API_272b4d0242a68b45577015e3eebead94','根据用户id获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryById','POST',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-11-06 12:16:28'),(1552,'API_b94a08818c65730154aa7f594172708f','根据姓名和电话号码 模糊查询公司用户','','cmii-uav-user','/user/queryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-11-06 12:16:34'),(1553,'API_04983dfe29b27883bf6a799d0fed60e8','查询某个应用中的全部用户','','cmii-uav-user','/user/queryByPlatformCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:19',1,'2024-11-06 12:16:32'),(1554,'API_f39b0513e65e7867e3bf63660694369d','查询组织配额信息','','cmii-uav-user','/client/quota/getQuotaInfoByType','POST',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-11-06 12:16:19'),(1555,'API_f889240e74c75cb3f13ce1144103d411','根据平台应用id,删除资源','','cmii-uav-user','/resource/deleteByPlatformId','POST',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-11-06 12:16:19'),(1556,'API_d6925d7290ed8ce694423daa048ca1db','查询用户某个平台的菜单','','cmii-uav-user','/resource/queryPlatformResourceTreeForUser','POST',_binary '\0',_binary '\0','2021-04-20 09:18:20',1,'2024-11-06 12:16:21'),(1557,'API_568f82c0cf471afce1d89200350d9879','查询区|县对应的区域信息','','cmii-admin-data','/public/api/admin/area/district/detail','GET,POST',_binary '\0',_binary '\0','2021-04-20 09:18:35',1,'2024-11-06 12:16:46'),(1558,'API_0678a9924a89ed8dcd060abedc841390','强制删除空域(测试调用)','传入空域申请主键,以数组方式传入','cmii-uav-airspace','/zydAirspace/forceDeleteAirspace.do','POST',_binary '\0',_binary '\0','2021-04-20 09:18:41',1,'2024-11-14 03:10:23'),(1559,'API_50277d28d03ac1dbe8cc1b7225dada55','无人机列表绑定的载荷列表详情查询','','cmii-uav-airspace','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:42',1,'2023-03-29 08:30:26'),(1560,'API_55bf600f383be27938a4428907c0e6f5','查詢公司范围内在线无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:55'),(1561,'API_fcbfa36a859f563459e4070a5d5734a8','查詢用户关注无人机视频流列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:53'),(1562,'API_e1ec0ca36f9bcc44b55415c5f0043145','模糊查詢待关注的无人机列表','','cmii-uav-device','/api/uav/plane/queryUavPlaneInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:49',1,'2024-11-07 09:01:47'),(1563,'API_2b8c110cfd855d55f49cfe401e3ab5af','添加用户关注的无人机','','cmii-uav-device','/api/uav/plane/addAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:49'),(1564,'API_820e1c6b166145e0ecf7669bddf62dc0','取消用户关注的无人机','','cmii-uav-device','/api/uav/plane/cancelAttUavPlane','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:47'),(1565,'API_44d84d7abd329c04504d8bed451d84f3','查詢公司范围内在线机库视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrOnlineVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:50'),(1566,'API_8d7d22a58611547e13e523708a94ebec','查詢用户关注机库机视频流列表','','cmii-uav-device','/api/uav/hangar/queryUavHgrAttVideoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:52'),(1567,'API_e6e54cd2384bcac8277698847d832911','模糊查詢待关注的机库列表','','cmii-uav-device','/api/uav/hangar/queryUavHangarInfoList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:50'),(1568,'API_f3b616b38914d9d7253166928c0e63f6','添加用户关注的机库','','cmii-uav-device','/api/uav/hangar/addAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:54'),(1569,'API_55a336058652952f4e79a969053d8673','取消用户关注的机库','','cmii-uav-device','/api/uav/hangar/cancelAttUavHangar','POST',_binary '\0',_binary '\0','2021-04-20 09:18:50',1,'2024-11-07 09:01:52'),(1570,'API_4070abaa8f7d2bc1c2e397869193e031','通过公司名称或者管理员名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyList','GET',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:57'),(1571,'API_1499a2ebdf5c01b2627e57e15b472b07','通过公司名称模糊查詢公司列表','','cmii-uav-device','/api/uav/devAllocate/queryCompanyListByName','GET',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2022-03-08 06:47:14'),(1572,'API_2d7d72bd1cc847e50266ed214e1ea617','分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:58'),(1573,'API_2b08ca467289bca513d1e9084cd26eda','批量分配设备给指定公司','','cmii-uav-device','/api/uav/devAllocate/allocateUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:51'),(1574,'API_74ee723d3e114b0eb4ada9edd7bf35ae','删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDev','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:57'),(1575,'API_a5f3677ccd73b6c21a7b44b2301c5fd7','批量删除设备信息','','cmii-uav-device','/api/uav/devAllocate/deleteUavDevBatch','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:44'),(1576,'API_4bcd4faf8c1cf35844576b637c92fed0','获取设备详情','','cmii-uav-device','/api/uav/devAllocate/getDevDetail','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:56'),(1577,'API_310c46f834d022a74e0e9c3d5c0b1327','按条件分页查询自动上报的设备型号信息','','cmii-uav-device','/api/uav/devAllocate/queryUavDevPage','POST',_binary '\0',_binary '\0','2021-04-20 09:18:51',1,'2024-11-07 09:01:47'),(1578,'API_38a98e7c49bb6f4e80451fe7dacb8ab1','queryDetailByUavCode','','cmii-uav-surveillance','/surveillance/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:52',1,'2024-11-12 03:56:04'),(1579,'API_ca897c6aa83202383429457f6e2e8ddc','无人机列表绑定的载荷列表详情查询','','cmii-uav-surveillance','/surveillance/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:52',1,'2024-11-12 03:56:06'),(1580,'API_f72ea08c5c29ab1732502bc54da43677','无人机列表绑定的载荷列表详情查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2021-04-20 09:18:53',1,'2023-03-29 09:05:05'),(1581,'API_c290bd117b25703e004d04d6974deeb6','系统航线导入到kml','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/systemLineImport','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2024-11-12 03:52:42'),(1582,'API_5183ffe062eb68ccf4c7b3f70bfafe9c','文件导入kml航线','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/kmlFileImport','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2024-11-12 03:52:42'),(1583,'API_1b0b7a2d9e7c02fb34381b9f6b4ba62a','分页查询kml航线列表','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_info_page_list_kml','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2024-11-12 03:52:41'),(1584,'API_2ad3538cb213c09ef7dc3b6de05f7621','分页条件筛选kml航线列表','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_info_page_list_with_filters_kml','POST',_binary '\0',_binary '\0','2021-05-12 06:05:48',1,'2021-05-12 06:05:53'),(1585,'API_602af16052d34831d24a6248a44434cd','获取作业视频','','cmii-uav-mission','/api/uav/mission/mission_info/vedio/{id}','GET',_binary '\0',_binary '\0','2021-05-12 06:05:55',1,'2022-04-01 02:19:20'),(1586,'API_0001c1f101300ee94ccd942b694b8850','分页查询定时子作业列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/submission_info_list_page','POST',_binary '\0',_binary '\0','2021-05-12 06:05:56',1,'2024-11-12 01:20:40'),(1587,'API_63ca33cd3935f1d5a2ab5f335e1e1f1d','第一次上传项目','第一次上传项目,返回projId','cmii-uav-mission','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1588,'API_c2483a37ebd2e48e4ae2bc6e4922315b','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-mission','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1589,'API_ff63c498ec90915691d5b70aefcf2afb','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-mission','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1590,'API_5ee97bed0b785f25005d90547d2b94fa','删除项目的文件','删除项目的文件,支持批量','cmii-uav-mission','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1591,'API_2553d3384baa3e84634c581cb5be7d53','项目文件上传','上传项目文件 ','cmii-uav-mission','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-05-12 06:05:57',1,'2023-05-18 09:36:08'),(1592,'API_5a02b551720c04670f3b129cee25c013','从Redis模糊查询数据字典列表','从Redis模糊查询数据字典列表','cmii-admin-data','/api/admin/dictionary/getSimpleDictListFromRedis','GET',_binary '\0',_binary '\0','2021-05-12 06:06:15',1,'2024-11-06 12:16:54'),(1593,'API_34a4cf00417ad9a7ad31735b47c78b7b','无人机绑定的摄像头信息查询','','cmii-uav-airspace','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:16',1,'2023-03-29 08:30:26'),(1594,'API_5d27fd894e51ccda163cd54365522dce','文件进度查询','','cmii-uav-data-post-process','/3d/visual/show/{path}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:18',1,'2021-07-06 05:44:30'),(1595,'API_2a430ee51c505de318a1880a0d441485','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:24',1,'2024-11-07 09:01:44'),(1596,'API_9e3c2f84e445d7068889b23223c0cba6','无人机绑定的摄像头信息查询','','cmii-uav-mission','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:35',1,'2023-07-18 04:08:27'),(1597,'API_427792643216895a2773067714aa7719','文件导出kml航线','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/kmlFileExport','GET',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-11-12 03:52:43'),(1598,'API_44496908fb5ee7c0a64ff07d0b5c60eb','获取导入人下拉数据','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_info_users','POST',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-11-12 03:52:42'),(1599,'API_3cd7960529b1fddff6e063d2d2021fec','获取航线名称下拉数据','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_names','POST',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-11-12 03:52:42'),(1600,'API_e959072efdad161eeb2adf36ea20ac32','获取弹框列表数据','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/airline_frame_list','POST',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-11-12 03:52:43'),(1601,'API_f06030ece03367ef27bf0ccda43ed737','updateHistoryData','','cmii-uav-waypoint','/api/uav/waypoint/airline/updateHistoryData/{key}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:38',1,'2024-11-12 03:52:41'),(1602,'API_167b335d4cf241548f090a893aa6d0a6','无人机绑定的摄像头信息查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:39',1,'2023-05-04 09:35:56'),(1603,'API_ec98c0f303c8e6977b1986eb10b2d172','强制降落','','cmii-uav-surveillance','/virtualStick/forceLand','POST',_binary '\0',_binary '\0','2021-05-26 01:51:40',1,'2024-11-12 03:56:05'),(1604,'API_fd395a00e4252729db04de8af2c45491','强制降落','','cmii-uav-surveillance','/api/uav/VirtualStick/forceLand','POST',_binary '\0',_binary '\0','2021-05-26 01:51:40',1,'2023-01-18 04:50:24'),(1605,'API_317949c7d98aa92e86acd050ffeacdde','无人机绑定的摄像头信息查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2021-05-26 01:51:41',1,'2023-03-29 09:05:05'),(1606,'API_19d8d6fc3205ac1b33a4b11e960579d1','下载','','cmii-uav-user','/api/uav/uavTestPO/download','GET',_binary '\0',_binary '\0','2021-05-26 01:51:42',1,'2024-11-06 12:16:21'),(1607,'API_0fd8148ac05f2e3a9a399c84280d224a','测his','','cmii-uav-user','/api/uav/uavTestPO/test/{id}','GET',_binary '\0',_binary '\0','2021-05-26 01:51:42',1,'2024-11-06 12:16:43'),(1608,'API_516969165da68e72960fd079970247fb','批量上传作业产生的图片文件','','cmii-uav-mission','/oss/batchUploadFile','POST',_binary '\0',_binary '\0','2021-06-01 09:17:40',1,'2024-11-12 01:20:34'),(1609,'API_90de18869ba6b4249937dc886e7f97ed','上传作业产生的图片文件','','cmii-uav-mission','/oss/uploadFile','POST',_binary '\0',_binary '\0','2021-06-01 09:17:40',1,'2024-11-12 01:20:35'),(1610,'API_b99e8fb53bca58fa8ff57ceb3e14fb13','ping','','cmii-uav-device','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:17:54',1,'2024-11-07 09:01:53'),(1611,'API_49e1eb08d9cbad20d0dcfe5ba7d0d0fa','health','','cmii-uav-device','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:17:54',1,'2024-11-07 09:01:45'),(1612,'API_060692698cbf6ca8d4c71eb5ff7b6a94','二三维建模二期根据code获取用户Token','二三维建模二期根据code获取用户Token','cmii-uav-data-post-process','/v1/permission/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2021-06-01 09:17:57',1,'2024-09-09 09:16:30'),(1613,'API_ade165fe9425224d48c0c4812dfb4726','存储上传文件的属性信息','','cmii-uav-hyperspectral-provider','/Processing/callalgorithm','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1614,'API_bdea06370b3cfbd97539426a66b4b5ca','更新算法信息','','cmii-uav-hyperspectral-provider','/tAlgorithm/update','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1615,'API_729a9d0678d8b9d72a38dd25270e15f7','新增算法信息','','cmii-uav-hyperspectral-provider','/tAlgorithm/insert','PUT',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1616,'API_5830d6a11e7aedb30e693cafd55483c9','查询算法信息列表','','cmii-uav-hyperspectral-provider','/tAlgorithm/listByPage','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1617,'API_c514b5a79777ccd1ce00700db822bb4d','删除单条数据','','cmii-uav-hyperspectral-provider','/tAlgorithm/deleteById','GET',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1618,'API_b2618a67f945ff427faac99483cce65e','根据id查询算法信息','','cmii-uav-hyperspectral-provider','/tAlgorithm/selectById','GET',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1619,'API_6e7f7ccc868f99b7954a0382f8e59407','fileUpload','','cmii-uav-hyperspectral-provider','/tAlgorithm/upload','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1620,'API_e1ef8922aed82178c426e12b0b609add','增加api','','cmii-uav-hyperspectral-provider','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1621,'API_a741f31b3ac488354f6b8145170e7666','uiConfiguration','','cmii-uav-hyperspectral-provider','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1622,'API_cf618bd1924d6043632e2dfe03e31865','securityConfiguration','','cmii-uav-hyperspectral-provider','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1623,'API_c62d7aa9d78e0b535fa3f11ff716305a','swaggerResources','','cmii-uav-hyperspectral-provider','/swagger-resources','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1624,'API_bc62d60a30f40ca182c3b570c1718976','errorHtml','','cmii-uav-hyperspectral-provider','/error','',_binary '\0',_binary '\0','2021-06-01 09:26:05',1,'2021-10-22 08:10:05'),(1625,'API_fedfd43545c3937a3dfea724e43018d1','health','','cmii-uav-data-post-process','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-01 09:46:41',1,'2024-09-09 09:16:29'),(1626,'API_bfe9f6ab8a6287310deeda74efffccc0','ping','','cmii-uav-data-post-process','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-01 09:46:41',1,'2024-09-09 09:16:28'),(1627,'API_64b634b57febc0081be9ec51f20cb582','规划带状航线','','cmii-uav-waypoint','/api/uav/waypoint/airpoint/getStrapLine','POST',_binary '\0',_binary '\0','2021-06-01 09:47:22',1,'2024-11-12 03:52:40'),(1628,'API_0a4c22b991cefd76353ae1e889418198','从kml文件解析航点','','cmii-uav-waypoint','/api/uav/waypoint/KmlLine/kmlFileToPoints','POST',_binary '\0',_binary '\0','2021-06-01 09:47:22',1,'2024-11-12 03:52:41'),(1629,'API_9abd2acc31a54f40d93641f2b260bc35','ping','','cmii-uav-waypoint','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-02 05:52:30',1,'2024-11-12 03:52:40'),(1630,'API_4eb3c3db046448bd42fb85ee8176ccef','health','','cmii-uav-waypoint','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-02 05:52:30',1,'2024-11-12 03:52:40'),(1631,'API_7df26817582dc0ea893ea56915edb8bf','ping','','cmii-uav-mission','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-02 05:52:44',1,'2024-11-12 01:20:35'),(1632,'API_2c3f14344b0c866417d1fdf69e015412','health','','cmii-uav-mission','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-02 05:52:44',1,'2024-11-12 01:20:40'),(1633,'API_ccb853f58fbf416685be2a8c73f5aaf9','health','','cmii-admin-data','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-11-06 12:16:49'),(1634,'API_544d535cbc76e0b0128e76922d3afd9f','ping','','cmii-admin-data','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-11-06 12:16:51'),(1635,'API_f1edcb6fffbcf95c049248c247ca07cf','ping','','cmii-uav-airspace','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-11-14 03:10:23'),(1636,'API_886112acb7b455948c5311888bc56232','health','','cmii-uav-airspace','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:39',1,'2024-11-14 03:10:23'),(1637,'API_b1fac4d7334e841fde4cfd0bac163789','health','','cmii-uav-surveillance','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:50',1,'2024-11-12 03:56:10'),(1638,'API_afa974116f45df69a3aaf4540dd83fcd','ping','','cmii-uav-surveillance','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:50',1,'2024-11-12 03:56:06'),(1639,'API_bb6f9709c5d46299110e10895eb80622','health','','cmii-uav-process','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-03 09:34:53',1,'2024-09-12 02:46:55'),(1640,'API_9428c59c4623f75b69d774d388e5a51f','ping','','cmii-uav-process','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-03 09:34:53',1,'2024-09-12 02:46:55'),(1641,'API_22f6229ad751e013f292f27b09a9ec49','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-waypoint','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:47:55',1,'2023-05-04 09:35:56'),(1642,'API_2cfa72f62088d3b989f02ebcb3d2a21d','根据设备号获取公司信息','','cmii-uav-waypoint','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:47:55',1,'2023-05-04 09:35:56'),(1643,'API_c81ead2e32b95e4d61115282c164324f','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-airspace','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:17',1,'2023-03-29 08:30:26'),(1644,'API_747bcd0f104482859dd6ba2abed1858a','根据设备号获取公司信息','','cmii-uav-airspace','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:17',1,'2023-03-29 08:30:26'),(1645,'API_49161f40c3b80954b51c002e0f21e978','根据设备号获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:26',1,'2024-11-07 09:01:56'),(1646,'API_9aa7ec1c77b2f1e32778d663f5c3898e','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-device','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:29',1,'2024-11-07 09:01:48'),(1647,'API_c743d50d480b556f976bcfb6f7ba785f','飞行模式切换','','cmii-uav-surveillance','/surveillance/switchMissionMode','POST',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-11-12 03:56:11'),(1648,'API_88f0855761a26744d4c65baa35784e7c','本公司全局无人机统计','','cmii-uav-surveillance','/oapi/queryFlyData','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-11-12 03:56:08'),(1649,'API_fe3ad80ec95ed1008f1a59c82f3e6ea0','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-surveillance','/oapi/oApi/querySinglePlaneTrackWithCId','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-11-12 03:56:07'),(1650,'API_833fb55194c67fc9927fbb72450d61af','查询单个飞机目前最新航迹数据','','cmii-uav-surveillance','/oapi/oApi/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-11-12 03:56:11'),(1651,'API_28d64a484b53a9c12caa73c9f8a121fa','查询无人机的拉流信息','','cmii-uav-surveillance','/oapi/oApi/queryUavPullStreams','GET',_binary '\0',_binary '\0','2021-06-11 05:48:39',1,'2024-11-12 03:56:05'),(1652,'API_60dce0e61d10ac5d4cb4f436d1949981','载荷详情查询','','cmii-uav-surveillance','/api/uav/load/queryUavLoadDetail','POST',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1653,'API_4b58f89e1d0949e241ed48ce5d92b904','查询载荷类型详细信息','','cmii-uav-surveillance','/api/uav/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1654,'API_15e3edc723fb4b035a60d84443629b60','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-surveillance','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1655,'API_2400c0f9cfb350a088e88dbba88acceb','根据设备号获取公司信息','','cmii-uav-surveillance','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-11 05:48:40',1,'2023-03-29 09:05:05'),(1656,'API_289464e10fe2a7ce4a6b8d0bc171cb37','视频回放','视频回放','cmii-uav-cloud-live','/public/his/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:41'),(1657,'API_54a5348ac671626c43c764324d188f45','回放视频封面','回放视频封面','cmii-uav-cloud-live','/public/his/playback/cover','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:43'),(1658,'API_9d28fbc7c7784e8ec68d13bb1e2b5342','获取时间戳(yyyyMMddHHmmss)','获取时间戳','cmii-uav-cloud-live','/client/live/playback/timestamp','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:41'),(1659,'API_afb234620493d3bacd41c8856967fa2a','获取视频流地址信息','通过设备号获取视频流地址信息','cmii-uav-cloud-live','/client/live/create','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:38'),(1660,'API_be4e01864c39805f1642134d888b02c4','启动AI流任务','启动AI流任务','cmii-uav-cloud-live','/client/live/ai/start','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-05-07 08:33:48'),(1661,'API_f5c35f28acc1868831a3bcc2e7b16389','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/client/live/playback/m3u8','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:36'),(1662,'API_f786e0a615e81b944c0ba70449453da6','获取回放信息(包括封面)','获取回放信息(包括封面)','cmii-uav-cloud-live','/client/live/playback/m3u8Info','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:35'),(1663,'API_8ff849043d0e3a1dde9612ba3b707605','获取回放视频token','获取回放视频token','cmii-uav-cloud-live','/client/live/playback/token','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:43'),(1664,'API_5cd7b62f7857e1c41eb2389a64843169','查询视频流通道ID','查询设备对应的视频流通道ID','cmii-uav-cloud-live','/client/live/getStreamId','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:35'),(1665,'API_cebe3ea38fd5de661fb7169955872bf5','查询具体视频流地址','查询设备对应的某种视频流地址','cmii-uav-cloud-live','/client/live/get','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:42'),(1666,'API_64d5ee764973e82287d15d96289f0974','health','','cmii-uav-cloud-live','/cmii/health','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:38'),(1667,'API_11d6b101a37aee3d2968d5befdba397b','ping','','cmii-uav-cloud-live','/cmii/ping','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:41'),(1668,'API_a9934d326aaa2d148734d9ef6bd86b72','接口扫描','','cmii-uav-cloud-live','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:41'),(1669,'API_b7e2958940688b9536c45ef455cbb00f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:46'),(1670,'API_9cc1caf8776d669aae36e19adc19f4ec','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:46'),(1671,'API_a7a93d6bfc9b6112cb5dd2d20d51bb92','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2022-03-11 06:17:46'),(1672,'API_7b5c8e9b95934d385fc84a301156e020','第一次上传项目','第一次上传项目,返回projId','cmii-uav-cloud-live','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1673,'API_690036470ac7133066e45b60b5353ecd','项目文件上传','上传项目文件 ','cmii-uav-cloud-live','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1674,'API_0397f90389582c696a60ba0c32f34110','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-cloud-live','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1675,'API_398c21859fb437ac1e6edb2892a59fef','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-cloud-live','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1676,'API_10a9d10e5455fb2ff0d8434e0d5a4c6f','删除项目的文件','删除项目的文件,支持批量','cmii-uav-cloud-live','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2023-03-29 10:20:11'),(1677,'API_150e23b0c5fbf84f07cac8933516682c','errorHtml','','cmii-uav-cloud-live','/error','',_binary '\0',_binary '\0','2021-06-11 05:58:09',1,'2024-11-14 02:02:42'),(1678,'API_47ea24d630b6e382b15f5214beff92e4','一键起飞','','cmii-uav-mission','/api/uav/mission/FoiaHangar/oneClickFly/{id}','GET',_binary '\0',_binary '\0','2021-06-16 06:58:18',1,'2024-11-12 01:20:34'),(1679,'API_0c79a2cd29a8b9d74e7b359bf4fd5bc5','手动切回自动','','cmii-uav-mission','/api/uav/mission/surveillance/switch2Auto/{id}','GET',_binary '\0',_binary '\0','2021-06-16 06:58:18',1,'2024-11-12 01:20:37'),(1680,'API_52c0ba8fc33cd7bd6c1031a78a2447d5','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-mission','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-16 06:58:19',1,'2023-07-18 04:08:27'),(1681,'API_bdc337bb0c447ee8f7b0bf1308fba4bc','根据设备号获取公司信息','','cmii-uav-mission','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2021-06-16 06:58:19',1,'2023-07-18 04:08:27'),(1682,'API_72bbbfa0333ef09cf54519ac993ed537','开启AI处理功能','','cmii-uav-mission','/api/uav/mission/surveillance/openAIProcess/{id}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:06',1,'2022-03-08 06:58:14'),(1683,'API_4a5496e5898f01a80c1455c0a54d3bff','开始AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/switchAIDetection/{id}/{type}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:06',1,'2021-10-21 08:48:40'),(1684,'API_faa9916a05df4633f066de636646e3c4','AI单目标跟踪处理','','cmii-uav-mission','/api/uav/mission/surveillance/trackSingleTarget/{id}/{trackId}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-11-12 01:20:40'),(1685,'API_c5023c24aef88ceccf45edfbd79ae305','设置AI检测临界值','','cmii-uav-mission','/api/uav/mission/surveillance/setAIThreshold','POST',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-11-12 01:20:37'),(1686,'API_c5c9578dbe4b4898f7b21a3315c2c6e1','下载AI辅助信息','','cmii-uav-mission','/api/uav/mission/surveillance/downloadAIDetectionInfo/{id}/{type}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-11-12 01:20:39'),(1687,'API_651c5a4ec4dbb1b1a0ade123506fe933','获取AI辅助信息','','cmii-uav-mission','/api/uav/mission/surveillance/retrieveAIDetectionInfo/{id}/{type}','GET',_binary '\0',_binary '\0','2021-07-05 05:14:07',1,'2024-11-12 01:20:38'),(1688,'API_b127e8d74c7d88572818a6767e1f4a9a','获取某个kpi最新取值','获取某个kpi最新取值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:17:00'),(1689,'API_ee187d2d5b861acf87c99c0f03bc0aeb','采集所有配置kpi值','集所有配置kpi值','cmii-uav-kpi-monitor','/kpi/monitor/query/kpis','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1690,'API_a74e30325f9fc3ada840c47319f571e8','测试采集并推送所有KPI值【测试】','测试采集并推送所有KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/allKpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1691,'API_695c96c4e4b60e41e4b170d18a8207a4','推送某个KPI值【测试】','推送某个KPI值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/push/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1692,'API_ba49cb37fe53a50feed5ee2e2721fe4e','解析配置文件并测试kpi取值【测试】','解析配置文件并测试kpi取值【测试】','cmii-uav-kpi-monitor','/kpi/monitor/parse/file','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:58'),(1693,'API_f4b801b6f4f6eabff1eade6ffe536c47','更新指标配置信息【管理员用】','更新指标配置信息【管理员用】','cmii-uav-kpi-monitor','/kpi/monitor/config/kpi','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1694,'API_9de68788e8519966581f78f8b3da56c6','获取每个用户访问时长','获取每个用户访问时长','cmii-uav-kpi-monitor','/user/accessAnalysis/userAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1695,'API_3545158a96ea145fcd03285b42c18f42','获取每个公司用户访问行为','获取每个公司用户访问行为','cmii-uav-kpi-monitor','/user/accessAnalysis/companyAccessInfo','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1696,'API_a31391fcf55f7c3dc7a9586f344415af','下载单用户访问情况','下载单用户访问情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/accessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1697,'API_b7bc47b7b77ffe63ba428eb36d280afd','下载公司用户使用情况','下载公司用户使用情况','cmii-uav-kpi-monitor','/user/accessAnalysis/down/companyAccessInfo','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1698,'API_9f9cdb82fba2247dbc894ad15411e0c2','health','','cmii-uav-kpi-monitor','/cmii/health','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:58'),(1699,'API_a1c7ba561fb4fa48452235a4cbf206b3','ping','','cmii-uav-kpi-monitor','/cmii/ping','GET',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1700,'API_a02eee36bdea730c9b24dfa944cc6bc5','接口扫描','','cmii-uav-kpi-monitor','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1701,'API_e9c7f41a1163a4d02cb3da23ab6cc254','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-07-29 15:58:27'),(1702,'API_a57b76ba92218fdf8c0711a3975bf6a4','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-07-29 15:58:27'),(1703,'API_76d19d64565237e2591fc5b5ecc488fb','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-07-29 15:58:27'),(1704,'API_86a09a2be1661d38daa754f5ce91e913','error','','cmii-uav-kpi-monitor','/error','',_binary '\0',_binary '\0','2021-07-05 05:14:25',1,'2024-11-06 12:16:59'),(1705,'API_c20b0cd89ceadf8784004fe98442c51f','上传录音文件','','cmii-uav-surveillance','/megaphone/saveRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-11-12 03:56:08'),(1706,'API_ae88a6381c08033e9a3379a792680179','播放即时录音文件','','cmii-uav-surveillance','/megaphone/playRealTimeRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-11-12 03:56:10'),(1707,'API_22b5dfb27d4621b301efe0fab87b49a8','查询该用户下面的录音文件','分页查询','cmii-uav-surveillance','/megaphone/queryRecords','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-11-12 03:56:06'),(1708,'API_e089fce252bc6b02e5cc75feb560fc17','播放指定id的录音到无人机','','cmii-uav-surveillance','/megaphone/playRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-11-12 03:56:12'),(1709,'API_1a0c4ad592033594b0555bab6e383be7','修改录音的名称','','cmii-uav-surveillance','/megaphone/modifyRecordName','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-11-12 03:56:10'),(1710,'API_04b5f81c44cc13643701f715668ddbc8','根据id删除一条录音','','cmii-uav-surveillance','/megaphone/deleteRecord','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2024-11-12 03:56:12'),(1711,'API_0bde320beda34ebb9f3cb37220ea4019','第一次上传项目','第一次上传项目,返回projId','cmii-uav-surveillance','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:04'),(1712,'API_bfc89dc462e8847f30225294fa19a320','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-surveillance','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:04'),(1713,'API_710ff21a32a740bdb7073d08d1370582','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-surveillance','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:04'),(1714,'API_c9cac8e117a1dfcafdf69dc15ca2ed5a','删除项目的文件','删除项目的文件,支持批量','cmii-uav-surveillance','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:05'),(1715,'API_3d45cf237b4aa0652635e6579c95c366','项目文件上传','上传项目文件 ','cmii-uav-surveillance','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-07-05 05:17:57',1,'2023-03-29 09:05:05'),(1716,'API_8de4801e5e53f51580b6ead79e00fca6','重新保存失败视频文件','重新保持失败视频文件','cmii-uav-cloud-live','/video/reSaveFailedFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-11-14 02:02:38'),(1717,'API_7e49e7ff34f254a4df5d1d70101a7c30','获取视频分片文件列表','获取视频分片文件列表','cmii-uav-cloud-live','/video/file/partList','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-11-14 02:02:38'),(1718,'API_56cc6cc9afb762bdcf5326e7c41d0dc0','重置视频同步时间','重置视频同步时间','cmii-uav-cloud-live','/video/resetSyncTime','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-11-14 02:02:41'),(1719,'API_a1029d20b60b6b56f72d27c121cfff58','同步视频文件','同步视频文件','cmii-uav-cloud-live','/video/syncPartFile','GET',_binary '\0',_binary '\0','2021-07-20 08:56:50',1,'2024-11-14 02:02:43'),(1720,'API_05684b732792a350983cc6ebb2066ac5','获取类别最新应急指标列表(分类,job:作业信息;bss:基站&卫星信息;summary:概况)','获取某个kpi最新取值','cmii-uav-kpi-monitor','/personal/emergency/sos/category','GET',_binary '\0',_binary '\0','2021-07-22 09:55:49',1,'2024-11-06 12:16:59'),(1721,'API_44daf24fb4cf68ed9db2f3d631de795c','轨迹视频回放接口','轨迹视频回放接口','cmii-uav-cloud-live','/client/live/playback/detailToken','POST',_binary '\0',_binary '\0','2021-07-30 09:38:53',1,'2024-11-14 02:02:44'),(1722,'API_c8c57f5149397359449ecaa90208fdca','添加测试数据','','cmii-uav-mission','/oss/testPicInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:39:25',1,'2024-11-12 01:20:37'),(1723,'API_d0eeaaecb2e2e35488ac8cb47774bb97','变更数据','','cmii-uav-mission','/oss/transHistory','GET',_binary '\0',_binary '\0','2021-07-30 09:39:25',1,'2021-10-21 08:48:41'),(1724,'API_240a6fd5a5c51319e65a002e01e98361','批量下载文件','','cmii-uav-mission','/api/uav/mission/mission_info/downloadZip','POST',_binary '\0',_binary '\0','2021-07-30 09:39:25',1,'2024-11-12 01:20:39'),(1725,'API_b0bd16e742685cfe47c5d24240995f72','获取分段作业视频和轨迹信息','','cmii-uav-mission','/api/uav/mission/mission_info/Segmented_video/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:39:26',1,'2024-11-12 01:20:37'),(1726,'API_6b397b07b45ec6992ec1b17e902f750d','云台控制转向','','cmii-uav-surveillance','/camera/gimbal/autocontrol','POST',_binary '\0',_binary '\0','2021-07-30 09:39:27',1,'2024-11-12 03:56:11'),(1727,'API_12e43cc1b21e1f3af7530ff86eb93d7c','机库设置home点','','cmii-uav-surveillance','/hangarSurveillance/setHangarHomePoint','POST',_binary '\0',_binary '\0','2021-07-30 09:39:29',1,'2024-11-12 03:56:08'),(1728,'API_ead63b18083667ef313b13c64f092b3e','机库设置紧急降落点','','cmii-uav-surveillance','/hangarSurveillance/setHangarEmergencyLandingPoint','POST',_binary '\0',_binary '\0','2021-07-30 09:39:29',1,'2024-11-12 03:56:05'),(1729,'API_f7337c038e800ae90fd49dfc7b080ed0','deprecated 结束机库流程','','cmii-uav-surveillance','/hangarSurveillance/endHangarProcedure','POST',_binary '\0',_binary '\0','2021-07-30 09:39:29',1,'2024-11-12 03:56:11'),(1730,'API_17ddf88e8b299d09a99624aea0f6a198','启用/禁用电子围栏','','cmii-uav-airspace','/efence_airspace/efence_enable_switch','PUT',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:22'),(1731,'API_ba7c62d9dd1effc0e7397ffc169f77ea','电子围栏详情','','cmii-uav-airspace','/efence_airspace/efence_info_detail/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:23'),(1732,'API_e1d774919d7e11a82fa58bcd64edbd47','模糊搜索电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info_map_with_filter','POST',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:22'),(1733,'API_e7153ec900de721157cbabf84b4b996c','查询可用电子围栏列表','','cmii-uav-airspace','/efence_airspace/enabled_efence_info_list','GET',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:22'),(1734,'API_5a84715c3f0c62a01985d477694a7c24','查询所有可用空域告警触发配置信息map','','cmii-uav-airspace','/efence_airspace/all_enabled_airspace_trigger_info_map','GET',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:22'),(1735,'API_fe6ae3ee3aa25889baf43ce1701d5a2b','校验电子围栏名称是否唯一','','cmii-uav-airspace','/efence_airspace/efence_name_distinct','POST',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:22'),(1736,'API_04f157b4dee9dfe6e83fdf1ec17b4bd1','编辑电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info','PUT',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:23'),(1737,'API_33f4f05bae4633525ea45cf26eb28c43','删除电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info/{id}','DELETE',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:23'),(1738,'API_9cf9d6d86f5dae441273ee1e3561fbbc','创建电子围栏','','cmii-uav-airspace','/efence_airspace/efence_info','POST',_binary '\0',_binary '\0','2021-07-30 09:39:32',1,'2024-11-14 03:10:23'),(1739,'API_607f5d4328ad8185009002e624007294','获取图片验证码','','cmii-uav-user','/api/uav/user/profile/verifyCode/getImageCode','GET',_binary '\0',_binary '\0','2021-07-30 09:39:33',1,'2024-11-06 12:16:38'),(1740,'API_9c6414c9e81e247588815a6f52b3224f','地区模糊查询下拉框','','cmii-uav-data-post-process','/dataset/areaFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1741,'API_dbec834a14b770506d9c0f20ceed199b','判断名称是否重复','不存在true,存在false','cmii-uav-data-post-process','/dataset/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1742,'API_9a4098e2bc8c00b8a675ccc810a591f9','素材仓库选取','','cmii-uav-data-post-process','/dataset/getPicByMaterialWarehouse','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2022-06-08 03:06:19'),(1743,'API_bbb590d7ba449d9bc88b5ec7fa162260','根据项目id素材仓库选取','','cmii-uav-data-post-process','/dataset/getMWPicByProjId','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2022-06-08 03:06:19'),(1744,'API_58f2a7ef11a7a9385f149593613e9b9f','根据文件Id获取图片和缩略图地址','','cmii-uav-data-post-process','/dataset/getFilesPath','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1745,'API_6c550b7cca47a83ea5fc79c4b3d3b3a5','详情','','cmii-uav-data-post-process','/dataset/datasetInfo/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1746,'API_184f5213bc57bb34f6ff417a5ee4fd23','数据管理分页查询','','cmii-uav-data-post-process','/dataset/datasetInfoPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1747,'API_1fc866490cf2058a6ea70769d55be4bc','编辑','','cmii-uav-data-post-process','/dataset/edit','PUT',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1748,'API_3fb67d4dd7e867328bbbe70bc6039528','本地图片上传','','cmii-uav-data-post-process','/dataset/uploadPic','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1749,'API_7e15901ca91153d59508577b87e4f852','创建人模糊查询下拉框','','cmii-uav-data-post-process','/dataset/creatorFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1750,'API_bdfeaecac79dfae46e290fc652352e87','删除/批量删除','','cmii-uav-data-post-process','/dataset/delete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1751,'API_fc1120ad9ad6ae844811a02d163318fb','复制数据集','','cmii-uav-data-post-process','/dataset/copy','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:28'),(1752,'API_6e3833bca341ad49de101dcd6556a02d','新建数据集','','cmii-uav-data-post-process','/dataset/create','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1753,'API_c0cf2850fdc498efda63d9f0ad4fb090','地区模糊查询下拉框','','cmii-uav-data-post-process','/result/areaFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:28'),(1754,'API_e9d3142952a88b16e9653de55cbaf648','判断任务名称是否重复-n','','cmii-uav-data-post-process','/result/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:29'),(1755,'API_d0136a0bee8b1aaf7eb522ff7ac89f7c','取消发布','','cmii-uav-data-post-process','/result/cancelPublish/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:51',1,'2024-09-09 09:16:30'),(1756,'API_fbc486526773c99e60eaf6b70e63ebee','成果详情','','cmii-uav-data-post-process','/result/resultManagement/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1757,'API_32e5eaf508aac4919c426409101ad0c8','成果编辑','','cmii-uav-data-post-process','/result/resultManagement','PUT',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1758,'API_77754b05e3a41c37bad2ad1efd548762','根据成果id获取下载url','','cmii-uav-data-post-process','/result/download','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1759,'API_33804ce1a2c0d5976c1d96e5a348a26f','本地数据上传','','cmii-uav-data-post-process','/result/upload','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1760,'API_c535e530e48c01940c3d5ab5527ceb71','创建人模糊查询下拉框','','cmii-uav-data-post-process','/result/creatorFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1761,'API_7ddd8bd2cffcaa4198d111b0a08b5485','文件合并','','cmii-uav-data-post-process','/result/merge','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1762,'API_92252549ddf21526b2b313c299ccc58c','单体模型上传','','cmii-uav-data-post-process','/result/modelUpload','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1763,'API_468a1d83503ddac32a86c5247b4ce5b8','单体模型上传删除','','cmii-uav-data-post-process','/result/modelUploadDelete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1764,'API_b41a4dd92679d83009f276a046e80b9d','单体模型上传编辑数据回显','','cmii-uav-data-post-process','/result/modelUploadInfo/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1765,'API_cb4787fd806d147efe47454ae9d80cea','根据类型获取数据字典','','cmii-uav-data-post-process','/result/getDictByType','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1766,'API_a023d99e849ce0bb190f9a214974386d','获取map_report.json信息','','cmii-uav-data-post-process','/result/getMapReport/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1767,'API_c5fa46516eb21b9ec814273924e09c17','成果展示-可视化','','cmii-uav-data-post-process','/result/visualInfoPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1768,'API_c48d0b82f603d92cc734208f7b821ad1','成果管理分页查询','','cmii-uav-data-post-process','/result/resultInfoPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1769,'API_32da99d08fd6691e1d1c53a75dfd15fb','删除/批量删除','','cmii-uav-data-post-process','/result/delete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1770,'API_632579233dd7aedac83e042aa4abe070','新增任务','','cmii-uav-data-post-process','/result/create','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1771,'API_77f8005e0a8648b9bba9ffe58aa38010','发布','','cmii-uav-data-post-process','/result/publish/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1772,'API_a238a003d2068c87bdeba741a3565a4c','地区模糊查询下拉框','','cmii-uav-data-post-process','/product/areaFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1773,'API_2cc699730937df5cd881745591845200','判断任务名称是否重复','不存在false,存在true','cmii-uav-data-post-process','/product/judgeTaskNameRep','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1774,'API_598e080c5b8a6eefaf9cd194c467467f','取消任务','','cmii-uav-data-post-process','/product/cancel/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:29'),(1775,'API_e18da2e5fc28cd1d285618fc182317e9','重建任务','','cmii-uav-data-post-process','/product/rebuild/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1776,'API_bd25c54517bdf5c661d22f97a27f778d','创建人模糊查询下拉框','','cmii-uav-data-post-process','/product/creatorFuzzyInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:28'),(1777,'API_378df373c489616dd73cf922d2902a96','分页查询影像数据集','','cmii-uav-data-post-process','/product/datasetInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1778,'API_0b7b27b37e1670f05c03b8d71ecb6dff','根据任务类型查询影像数据集','','cmii-uav-data-post-process','/product/downListDatasetInfo','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1779,'API_35d8ad1df0dae208bc43bbaa10816908','详情查询','','cmii-uav-data-post-process','/product/taskInfo/{id}','GET',_binary '\0',_binary '\0','2021-07-30 09:55:52',1,'2024-09-09 09:16:30'),(1780,'API_50ae048a00b6ef92526ff8975c306881','报告下载','','cmii-uav-data-post-process','/product/report/download','GET',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1781,'API_26431ae7d777fee048d79a670b4d6a7b','下载','','cmii-uav-data-post-process','/product/download','GET',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1782,'API_f604e4d649d08751502b66ba89103e45','生产管理分页查询','','cmii-uav-data-post-process','/product/productManagementPageList','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1783,'API_052f3f6d525dcbfe58db07cb3e7d2b5c','編輯任务','','cmii-uav-data-post-process','/product/update','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1784,'API_5d336af7c5a8c37d25c08c3340a1a5ae','删除/批量删除','','cmii-uav-data-post-process','/product/delete','DELETE',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1785,'API_c13eb63174648dea44b3b225f404406b','开始任务','','cmii-uav-data-post-process','/product/start/{id}','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:29'),(1786,'API_08df23c26807ae85f337db6e99508938','新增任务','','cmii-uav-data-post-process','/product/create','POST',_binary '\0',_binary '\0','2021-07-30 09:55:53',1,'2024-09-09 09:16:28'),(1787,'API_03cd30425f552e7e5ae322bfd03e269c','应急数据修改接口','应急数据修改接口','cmii-uav-kpi-monitor','/personal/emergency/sos_data/update','GET',_binary '\0',_binary '\0','2021-07-30 09:56:42',1,'2024-11-06 12:16:59'),(1788,'API_858feecbcc679d7e7f65039c0089cdff','获取每个公司无人机实例信息','获取每个公司无人机实例信息','cmii-uav-kpi-monitor','/user/accessAnalysis/planeInfo','POST',_binary '\0',_binary '\0','2021-07-30 09:56:42',1,'2024-11-06 12:16:59'),(1789,'API_d1568db90a52026907f43d635e6ef310','env','','cmii-uav-kpi-monitor','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:40',1,'2024-11-06 12:17:00'),(1790,'API_48ff70f4a482b1b50fa05d5324c9a81c','删除图片','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/pic_info','DELETE',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:30'),(1791,'API_f584f8bc6ba4f8dd317ca3ccf224c322','查询巡检照片路径列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_list/{routeId}/{towerId}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:34'),(1792,'API_652dbc45270752e52ea6cd10381ddd1f','获取巡检照片压缩包路径','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_package','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:33'),(1793,'API_fa947af77c21a242691cc256cff984f0','获取巡检照片详情信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_detail/{routeId}/{towerId}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:30'),(1794,'API_a04096eb58320035b11b584da9db84fd','移动图片','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/moving_picture_list','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:29'),(1795,'API_9f69e25266318ded0a06282e9757cc04','上传单张图片','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/pic_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:33'),(1796,'API_943a942e7f02a54eedfb226d4daace8a','更新缺陷列表信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/picture_defect_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:31'),(1797,'API_9213f2245d525b1e1dd29f2615988f75','巡检照片信息保存','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/inspection/flight_picture_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:31'),(1798,'API_f221e821ea95376765364c188ecd17a4','删除线路','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info','DELETE',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:30'),(1799,'API_41570b0728d32e243d74d23ac08ebbd9','全量杆塔线路列表信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info_list','GET',_binary '\0',_binary '\0','2021-11-05 10:08:43',1,'2024-11-13 12:23:27'),(1800,'API_3215ca24caa0150a078b8f5aa9ae50f4','分页查询杆塔线路列表信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/page_route_info_list','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:29'),(1801,'API_1e5e47f45092f13e4a769e1cb20b7bf3','创建线路','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:36'),(1802,'API_346da9d89299be9fc89489258df3542e','查询杆塔名称是否冲突,false:冲突、true:不冲突','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_name_distinct','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:34'),(1803,'API_92219fa6b9ab0076dd319bb286423c75','查询线路绑定的杆塔信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_list_in_route/{id}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:30'),(1804,'API_b8304a664af6b4c8a40ced49f7269380','创建杆塔','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:28'),(1805,'API_9b71f9fc4256df74f2e42d32403c1d3f','修改杆塔','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_info','PUT',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:32'),(1806,'API_5ee05c152af8e1fe51adec0b528f9218','删除杆塔','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_info','DELETE',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:28'),(1807,'API_e2d29cab0e28d00fe8db354e50f444f3','杆塔详细信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_detail_info/{id}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:35'),(1808,'API_3ba6a54f550034935fd33a07e84a6c07','导入杆塔列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_data_list/{routeId}','POST',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:27'),(1809,'API_5284db2993d52046d51ca648cdef16d3','下载杆塔导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_data_list_template','GET',_binary '\0',_binary '\0','2021-11-05 10:08:44',1,'2024-11-13 12:23:35'),(1810,'API_4b3eea96794184eb9c9b644fba2a4af7','导出杆塔列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_data_list/{routeId}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:29'),(1811,'API_279a08c4c6944e65bb1257a17cea387a','改动杆塔顺序','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/tower_sort','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:36'),(1812,'API_0061485909627b5766e7681d376f691b','修改线路','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_info','PUT',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:28'),(1813,'API_d0d09eab176ff96232908a9bd86b0e97','查询线路名称是否冲突,false:冲突、true:不冲突','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/route_name_distinct','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:32'),(1814,'API_db2751e81a910b88bc7738bc6522dda0','获取全量航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/airline_info/{routeId}','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:29'),(1815,'API_82a1a1bd676c258139fa2fa445deafc4','线路关联航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/airline_list','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:35'),(1816,'API_81c0c802aaceb1720544ce8bdd18757e','线路获取关联航线详细信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/airline_list_info','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:29'),(1817,'API_ad0676e5f14a03943694b02fe5a90327','删除线路关联的航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/unbind_airline_list','POST',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:30'),(1818,'API_a0b2c6704136f611bbb09278624ba574','ping','','cmii-uav-industrial-portfolio','/cmii/ping','GET',_binary '\0',_binary '\0','2021-11-05 10:08:45',1,'2024-11-13 12:23:28'),(1819,'API_932251a24ec77eebb57c8c7d35dc02aa','health','','cmii-uav-industrial-portfolio','/cmii/health','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2024-11-13 12:23:28'),(1820,'API_9ea3941fd5b216974aa2ba9cd19bcd07','env','','cmii-uav-industrial-portfolio','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2024-11-13 12:23:35'),(1821,'API_e848b01c128a1e32bcd5d487aaa2a9fb','接口扫描','','cmii-uav-industrial-portfolio','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2024-11-13 12:23:34'),(1822,'API_270185567bffff78c8ae3168eeafc4db','securityConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-03-15 07:29:57'),(1823,'API_c7a989ee54e1b01623e485572e37588d','swaggerResources','','cmii-uav-industrial-portfolio','/swagger-resources','',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-03-15 07:29:57'),(1824,'API_14b5d882bf109eeb82e3534878dd5374','uiConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-03-15 07:29:57'),(1825,'API_450e2e4a22287888781876db2a15ecf4','第一次上传项目','第一次上传项目,返回projId','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:11'),(1826,'API_0797b71a8065b81d7638858bbc4b4123','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:11'),(1827,'API_dfca8d8f9573ebe1ae05015d1f85b468','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:11'),(1828,'API_6f5e68f272858c879969e688fde11abe','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2021-11-05 10:08:46',1,'2022-11-02 09:13:12'),(1829,'API_04976e01c4b2ba87fd1a855c3d55c336','删除项目的文件','删除项目的文件,支持批量','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2022-11-02 09:13:12'),(1830,'API_1f140d98ff149d0154981a081ade8464','项目文件上传','上传项目文件 ','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2022-11-02 09:13:12'),(1831,'API_689053505118876c5ba27bec7a413e45','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-industrial-portfolio','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2022-11-02 09:13:12'),(1832,'API_242b0002427d61925fa0c6e0cf5d32a3','errorHtml','','cmii-uav-industrial-portfolio','/error','',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2024-11-13 12:23:34'),(1833,'API_340fe139abee2fde75289994adff7ec1','env','','cmii-uav-cloud-live','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:47',1,'2024-11-14 02:02:44'),(1834,'API_0bb20ef1840be51455dbad528597652b','下载指定时长mp4文件','下载制定时长mp4文件','cmii-uav-cloud-live','/video/download/mp4file','GET',_binary '\0',_binary '\0','2021-11-05 10:08:48',1,'2024-11-14 02:02:41'),(1835,'API_9a239d269204b50e4d66d2cce1dea7e0','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','/public/his/playback/ts/{fileName}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:48',1,'2024-11-14 02:02:38'),(1836,'API_24ffe32cac865b59c4824b21954438ac','开始一个新的workflow','开始一个新的workflow','cmii-uav-cloud-live','/orchestrate/init','POST',_binary '\0',_binary '\0','2021-11-05 10:08:49',1,'2022-03-08 07:20:03'),(1837,'API_1b3f2d7c00669e0d02e448b75e3e6bfe','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:50',1,'2023-03-29 10:20:11'),(1838,'API_648ec3173582226c50adabdef7640f36','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-cloud-live','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:50',1,'2023-03-29 10:20:11'),(1839,'API_9f9a9a7f40169ee8bf9c0a21e330c763','env','','cmii-uav-data-post-process','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:08:53',1,'2024-09-09 09:16:29'),(1840,'API_1b9f5a274f3c4a7d03959696bf843e71','成果-列表查询-二三维模型列表查询','','cmii-uav-data-post-process','/uav/threeD/visualInfoList','GET',_binary '\0',_binary '\0','2021-11-05 10:08:58',1,'2024-09-09 09:16:30'),(1841,'API_d2b24f0717a48a9a2efe602a4e31b18f','航线航点详情查询','','cmii-uav-data-post-process','/uav/threeD/airPointInfoList/{id}','GET',_binary '\0',_binary '\0','2021-11-05 10:08:58',1,'2024-09-09 09:16:30'),(1842,'API_be558ff12ebb443b017629fb4297b53a','成果-列表查询','','cmii-uav-data-post-process','/clients/result/visualInfoList','POST',_binary '\0',_binary '\0','2021-11-05 10:08:58',1,'2024-09-09 09:16:29'),(1843,'API_5334d119dfd5d0f598b2786e0720fe16','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-data-post-process','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:59',1,'2023-03-29 08:38:08'),(1844,'API_ccfdb35b51df441df95868bb7b5de14a','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-data-post-process','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-05 10:08:59',1,'2023-03-29 08:38:08'),(1845,'API_deff3745dfbb0fbff07bba51cf8ccece','从Redis获取有效的编码对应的本地语言的值','从Redis获取有效的编码对应的本地语言的值','cmii-admin-data','/api/admin/dictionary/getValLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2021-11-05 10:09:01',1,'2024-11-06 12:16:47'),(1846,'API_a62e0e5af0aa671e90aa30bee955bb38','从Redis获取有效的语言对应的字典明细的K-V','从Redis获取有效的语言对应的字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2021-11-05 10:09:02',1,'2024-11-06 12:16:57'),(1847,'API_719e33488c94c692a8a6194044a9226a','查询指定限制空域','','cmii-admin-data','/api/admin/arealimit/querySpecifiedZydAreaLimit','POST',_binary '\0',_binary '\0','2021-11-05 10:09:04',1,'2024-11-06 12:16:56'),(1848,'API_d60359bb5ed6fe0e2e7b0ff830a92c4e','env','','cmii-admin-data','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:12',1,'2024-11-06 12:16:52'),(1849,'API_15bd50e9ea74e908cd6e9d785ea91a53','env','','cmii-uav-process','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:13',1,'2024-09-12 02:46:56'),(1850,'API_17e92ba3f3254c5de0a373d75bedfbb9','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-22 12:07:17'),(1851,'API_526b934847d50eb05602fd611b9e5dcc','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-22 12:07:18'),(1852,'API_d826dc52a480d92cce72a9b9477221c6','通过告警对象查询指定公司的在线告警事件列表','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-22 12:07:17'),(1853,'API_e6e68e310194d4af876a4ad5f8362cb0','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-22 12:07:16'),(1854,'API_e8a1ae1477cca15626192ae0c8edc535','查询告警配置对应的事件信息','','cmii-uav-alarm','/api/uav/alarm/event/query/alarmEventDetailByAlrmId','GET',_binary '\0',_binary '\0','2021-11-05 10:09:16',1,'2024-10-22 12:07:16'),(1855,'API_1e77ab6a913b79833e87b67f02f57aab','告警触发器','','cmii-uav-alarm','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:16'),(1856,'API_79b01188af4e7022c61720c36d77a31d','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byId','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:16'),(1857,'API_3b185cd3d02b8d675047b4d85e977c92','通过关联作业处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:16'),(1858,'API_ee029c84f67993e91d0455d40e9a36c0','通过事件标识处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmByIdentity','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:19'),(1859,'API_8821ef843ad5e6ab28249bca8b816996','通过告警对象处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:18'),(1860,'API_b8fd251faf2dc9c5e93a71d69a643444','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/onLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:19'),(1861,'API_a2475abfb5028b323c9b422abb307769','查询历史在告警事件','','cmii-uav-alarm','/api/uav/alarm/event/query/offLine','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:17'),(1862,'API_780123db4080c80b7dfa636d0799878b','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:16'),(1863,'API_894992c55afc4f4cd771e603af0142c3','查询包括子公司的指定告警配置的详情','','cmii-uav-alarm','/api/uav/alarm/query/configurationById','GET',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:19'),(1864,'API_1d9708f43fe32a30e441a63e750063c9','查询指定公司的监控对象告警触发条件','','cmii-uav-alarm','/api/uav/alarm/queryAlarmTriggerByObj','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:17'),(1865,'API_b4647e28e3da8db818e570a626b27ca7','新增告警配置','','cmii-uav-alarm','/api/uav/alarm/add/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:17',1,'2024-10-22 12:07:18'),(1866,'API_e8aefd2952a4b43dcb8064e8b703d879','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:18'),(1867,'API_5836f54818af59d88aff1ee225d3ee3a','查询包括子公司的告警名称','','cmii-uav-alarm','/api/uav/alarm/queryAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:19'),(1868,'API_94ab8f3eeb3b5ccd94f6b7d9fe575b9f','查询包括子公司的监控对象','','cmii-uav-alarm','/api/uav/alarm/queryAlarmObject','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:18'),(1869,'API_ddd29fd3c17dbc04e47ad11a617656e8','查询包括子公司的监控指标','','cmii-uav-alarm','/api/uav/alarm/queryAlarmIndex','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:17'),(1870,'API_8a110d05ceda064d14bc186c840ffd26','分页查询包括子公司的告警配置','','cmii-uav-alarm','/api/uav/alarm/query/configuration','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:17'),(1871,'API_e19ec127d1af0072905a7f7080bcf5e6','数据字典下拉列表查询','','cmii-uav-alarm','/api/uav/alarm/getDictValue','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:18'),(1872,'API_1e54a11defb3f33db2e73db82c28d95f','查询当前公司所属用户列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userInfo','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:18'),(1873,'API_338ce979c6c54127e5c0c8f8658665fb','根据用户名称或者手机号查询当前公司所属用户id列表','','cmii-uav-alarm','/api/uav/alarm/query/notice/userIds','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:17'),(1874,'API_6b46feb15dfd928bd5dae31533e09ebc','启用禁用操作','','cmii-uav-alarm','/api/uav/alarm/update/available','POST',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:17'),(1875,'API_34e3288ab4eda30bb0fd075d007d625d','校验告警名称','','cmii-uav-alarm','/api/uav/alarm/checkAlarmName','GET',_binary '\0',_binary '\0','2021-11-05 10:09:18',1,'2024-10-22 12:07:18'),(1876,'API_77adff0510203563ce13a51a32e15130','删除操作','','cmii-uav-alarm','/api/uav/alarm/delete/configure','POST',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-22 12:07:16'),(1877,'API_065f442334b312950a67b874f2a123e5','批量删除操作','','cmii-uav-alarm','/api/uav/alarm/deleteBatch','POST',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-22 12:07:18'),(1878,'API_bbd18c44e5cb04c6c87ed506b4ededeb','接口扫描','','cmii-uav-alarm','/api/scanner/scan','POST',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-22 12:07:17'),(1879,'API_e6bc5e82583f7c2795398a90caaab35e','health','','cmii-uav-alarm','/cmii/health','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-22 12:07:17'),(1880,'API_5e7e12e67d378030dd3edcb30ab70ff8','ping','','cmii-uav-alarm','/cmii/ping','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-22 12:07:17'),(1881,'API_df5241d77cce8bc64906586cad2227f2','env','','cmii-uav-alarm','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-22 12:07:17'),(1882,'API_ba16ebc000ef650d05bc45e632378065','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2022-04-25 02:49:08'),(1883,'API_30b7c6431967cc689a963de5862cf0c1','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2022-04-25 02:49:08'),(1884,'API_c8a54dba9e0394eaa8fa54f5712d33d3','swaggerResources','','cmii-uav-alarm','/swagger-resources','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2022-04-25 02:49:08'),(1885,'API_bbc39447c2bf5f77ceceba22c9f39878','error','','cmii-uav-alarm','/error','',_binary '\0',_binary '\0','2021-11-05 10:09:19',1,'2024-10-22 12:07:19'),(1886,'API_e5e2bd05493243387a3f6eab5e605be4','env','','cmii-uav-surveillance','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-09 08:58:42',1,'2024-11-12 03:56:06'),(1887,'API_61774562fd947b7d9a583991a01c1aa0','获取用户云台控制键盘快捷键设置','','cmii-uav-surveillance','/virtualStick/get_keyboard_binding_setting','GET',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:06'),(1888,'API_6ca3ffd15bd19c61aac9c8ee5f76b75f','视频快拼,前端存放一个redis值,暂时','','cmii-uav-surveillance','/virtualStick/set_stitch_data','GET',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:06'),(1889,'API_ec32453606d2ff26fa7d64a05b2ee1b3','视频快拼,前端获取一个redis值,暂时','','cmii-uav-surveillance','/virtualStick/get_stitch_data','GET',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:04'),(1890,'API_af7ac805c24f6ea2786f732a8b999bd3','设置用户云台控制键盘快捷键','','cmii-uav-surveillance','/virtualStick/set_keyboard_binding_setting','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:11'),(1891,'API_20350da37f40d6259218b9f5e14f10db','云台自动扫描','返回操作失败的无人机di','cmii-uav-surveillance','/multi_plane_controller/gimbal/auto_scan','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:07'),(1892,'API_9f3dea3224177fab40e4a4361cace426','自动对焦','','cmii-uav-surveillance','/multi_plane_controller/camera/autoFocus','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:10'),(1893,'API_beaf31611d1652dfdf7e9c5aa9a6068f','拍照或者摄像','','cmii-uav-surveillance','/multi_plane_controller/camera/cameraAction','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:04'),(1894,'API_93ad40012188f3c026c37accd8967a56','镜头缩放','返回失败的无人机id','cmii-uav-surveillance','/multi_plane_controller/camera/zoom','POST',_binary '\0',_binary '\0','2021-11-09 08:58:46',1,'2024-11-12 03:56:04'),(1895,'API_e5c7df3e46ad41e6df17a32e006daddd','切换为照相/摄像模式','','cmii-uav-surveillance','/multi_plane_controller/camera/modeChange','POST',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-11-12 03:56:06'),(1896,'API_e4e2026e9321db7e79d1900679f3eb1d','云台控制转向','返回操作失败的无人机di','cmii-uav-surveillance','/multi_plane_controller/gimbal/control','POST',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-11-12 03:56:05'),(1897,'API_4578ebc9a8b8920b8079eceba18d4a0e','测试新接口','','cmii-uav-surveillance','/surveillance/testDevice','GET',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-11-12 03:56:04'),(1898,'API_2c14787739eefc528ee77344042c1d56','起飞','','cmii-uav-surveillance','/surveillance/takeOff/{id}','GET',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-11-12 03:56:07'),(1899,'API_08f2636b4b315f2eba8220fc131e9891','获取火情信息接口,全量查询','','cmii-uav-surveillance','/surveillance/getFireInfoList','GET',_binary '\0',_binary '\0','2021-11-09 08:58:47',1,'2024-11-12 03:56:12'),(1900,'API_2a7e9dbd04ec9f21713622abcb4a9ae9','新增告警事件','','cmii-uav-surveillance','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1901,'API_a83853d9ed07d9d2a64bc03052006594','查询告警事件详情','','cmii-uav-surveillance','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1902,'API_face32d26c557a55ec401c92ec8e8d87','告警触发器','','cmii-uav-surveillance','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1903,'API_504846b8bbe52998b5ce474c7c341049','通过告警对象查询告警事件列表','','cmii-uav-surveillance','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1904,'API_7ef096e1b46b0f58726a294fba60026f','告警指标统计信息','','cmii-uav-surveillance','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1905,'API_00d4e713d6ecbccaf9a78fa7d9199d32','通过关联作业处理告警事件','','cmii-uav-surveillance','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1906,'API_ee103a83439af52024cbc275953858f8','通过告警对象处理告警事件','','cmii-uav-surveillance','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1907,'API_7cb3ed0b1309af6a3641bf108e2bed2e','查询告警数量统计信息','','cmii-uav-surveillance','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1908,'API_6a87c72fe0b31f63fbe96d0938824b8f','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-surveillance','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:05'),(1909,'API_e9fbe36d133fded014d4d21dd4f267a7','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-surveillance','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2021-11-09 08:58:49',1,'2023-03-29 09:05:04'),(1910,'API_09da3f3fde44235337ab399464bca40d','查询公司/机构所属的载荷编码列表','','cmii-uav-surveillance','/api/uav/load/queryLoadByCompanyId','GET',_binary '\0',_binary '\0','2021-11-09 08:58:54',1,'2023-03-29 09:05:05'),(1911,'API_24e056f03f5fd2570962541216c45bc2','获取视频推拉流地址','','cmii-uav-device','/api/uav/load/getVideoAddress','POST',_binary '\0',_binary '\0','2021-11-15 08:59:49',1,'2024-11-07 09:01:57'),(1912,'API_fbbd4ef17066a99a51693c642748652a','env','','cmii-uav-device','/cmii/env','GET',_binary '\0',_binary '\0','2021-11-15 08:59:53',1,'2024-11-07 09:01:45'),(1913,'API_9d45fca0880b60e20782f363ba02a6db','行业应用平台根据code获取用户Token','行业应用平台根据code获取用户Token','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/common/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:32'),(1914,'API_bf099ab312fb1a3cb7bd2502d0e16314','保存目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/keep_duration_config','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:34'),(1915,'API_5374302dbbbacbdf96457cc1a87277b5','查询目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/query_keep_duration_config','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:30'),(1916,'API_e528c28b6cd9b51730641e8949266360','导入基站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/bts_data_list','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:32'),(1917,'API_2e031a9d0d7377c19e107ddeba40d5c7','下载基站导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/bts_data_list_template','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:31'),(1918,'API_64163106902fdc9f3971eeed44c5ae96','查询基站数据列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/bts_data_list','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:28'),(1919,'API_1f46488e1975c05594899261446e300c','回放探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/queryDetectionHistoryByTime','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:34'),(1920,'API_b618bcf974519c31694a50445f13fa24','查询探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/queryDetectionHistory','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:36'),(1921,'API_9a41ac7c362fd9ee68b0ed453ffbbf26','WS数据接口展示','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/testWs','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:36'),(1922,'API_a53b744897746057b82a808ce1b1dbbb','增加测试数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/addtestData','POST',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:33'),(1923,'API_7126407a3b96e535cd4f1455c63c4506','查询低空探测配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/detection_config','GET',_binary '\0',_binary '\0','2022-01-18 11:03:56',1,'2024-11-13 12:23:31'),(1924,'API_1809633b3d5fd1191eaadc045a73685a','保存参照点配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/ref_point_config','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:31'),(1925,'API_56306f496c6cfaa523d74c9fc758d177','全量查询页面标记','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/web_flag/query_total','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:30'),(1926,'API_87503f226f7c26007be3f7ccb18253e1','添加或者编辑页面标记,带id编辑,不带新建','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/web_flag/add_or_edit','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:28'),(1927,'API_7991c181a1b12b86044e5cd0f5762328','删除页面标记','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/web_flag/delete','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:30'),(1928,'API_63dd030352081e0429a3e18112c95ef5','获取无人机实时位置,只有经纬度','','cmii-uav-industrial-portfolio','/v1/permission/share/get_uav_point','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:31'),(1929,'API_e6eb16309c175de40d1522d5d11902a9','checkShareCode','','cmii-uav-industrial-portfolio','/v1/permission/share/check_share_code','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:35'),(1930,'API_872e9048ed5e102b3dc1b1538b31fc6c','根据作业id获取视频分享连接和提取码','','cmii-uav-industrial-portfolio','/v1/permission/share/get_share_code_by_mission_id','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:36'),(1931,'API_20e518430eac7aecbd1236f3ebdbb094','公安平台根据code获取用户Token','二三维建模二期根据code获取用户Token','cmii-uav-industrial-portfolio','/v1/permission/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:29'),(1932,'API_0e999dc9362e357b16d8dd89d81cf999','警情信息上传接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/caseinfo/newcase','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:31'),(1933,'API_5f0740f50491d391e78b1f74b06570c7','警情结束接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/caseinfo/casefinished','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:32'),(1934,'API_2139aafd11779bb2c2ab3de3ef0ab23a','全量查询警情接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/query_total_police_cases','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:33'),(1935,'API_e31178a3005ad848426d8e22c0e25fa5','结束警情出警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/complete_police_case','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:29'),(1936,'API_1c7cfc468248bd444483b24c83e67be3','出警接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/police_case_dispatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:30'),(1937,'API_b033206e8be89004f94fe1c783843546','通过missionId 查询出警的警情以及用户点','返回的列表最多只有一个数据','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/query_mission_cases','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:32'),(1938,'API_052d530b44d63ba300ac8d19108b2698','删除警情 ','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/del_police_case','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:32'),(1939,'API_1b0888298c525635974ce49b805a9295','修改警情所属公司','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/modify_police_case_belong','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2024-11-13 12:23:35'),(1940,'API_fbe580115b262d02468f0722b91fac05','无人机列表绑定的载荷列表详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1941,'API_c3d96e199e79fc2e0e6efe77ec0ad758','根据无人机类型查询公司有的无人机类型详细信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1942,'API_4a45657b639f4098ac4aebdad85458bb','根据设备类型和编码查询编码对应的可用状态信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1943,'API_7f5826fcb9a79d240e5325b733ed1bdf','新增无人机','','cmii-uav-industrial-portfolio','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2022-01-18 11:03:57',1,'2022-11-02 09:13:11'),(1944,'API_dcbe30376436d7c9dfbceec1f59f1b9f','修改无人机','','cmii-uav-industrial-portfolio','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1945,'API_a07d48bd3646df2a23109270c98167c3','通过无人机设备号查询无人机编码','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1946,'API_a8d36c1eaa5fa60c9c817f5587cc4e14','通过无人机编码查询无人机编码设备号','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1947,'API_b9f022a0765c23ab039e9360ac32d09a','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1948,'API_7c9dc51b2d40fe163a3b05e005e23cb0','check设备类型是否匹配','','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1949,'API_7c53c4a829e77710c6a9cacfdd801c41','check设备动作是否匹配','','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1950,'API_644c7355dfbf51a510bbd5e5cf641c94','设备数据字典和匹配校验','','cmii-uav-industrial-portfolio','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1951,'API_5ca7e9d5ac1edbd0ae698cd8c4e79175','根据无人机编码获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1952,'API_3f89c2175244877baebb07048af4477a','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1953,'API_371627ad81634fcc7c8cd5e38f09562f','菜单资源同步','','cmii-uav-user','/api/uav/resource/sync','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-11-06 12:16:37'),(1954,'API_76aef9ab70c47b1d659f7addc0850ff4','模糊查询在线无人机编码和机库编码列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1955,'API_29eac790d6d85b29d41958067eac7346','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1956,'API_7650cc6e5cff558f8200a9b741c63907','根据设备号获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1957,'API_f41d91bc0602299853c54cff68170847','无人机绑定的摄像头信息查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1958,'API_6572e03ee0dbeb044f16bb13634860fc','生成新无人机编码','','cmii-uav-industrial-portfolio','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1959,'API_046c5a79680f6ff1f65868ca6a150d9b','按无人机编码查询无人机详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1960,'API_7a25a381dd0dcaf9d8ac29d2162587b4','按无人机设备号查询无人机详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1961,'API_f46db5ec307f99570c71f28b65fa40d5','根据无人机编码查询该无人机是否存在','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1962,'API_7718cad8a6eaed7e3c5f8a313cd4a4d4','查询无人机是否可用','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1963,'API_e80ce85b917600b6275d8360a0c8d18d','查询设备在线状态','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1964,'API_d37755e2b5bed970e4eabdaedff004fd','设置无人机在线状态','','cmii-uav-industrial-portfolio','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1965,'API_4887ff3bc2ed62dd84b6b847ebdee1a7','查询无人机总飞行时长','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1966,'API_c589e0f7060e1eb0f32d89200a242bf1','查询该公司有的无人机类型详细信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1967,'API_cfbc0f6ac3a512f21354fc263300086f','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-uav-industrial-portfolio','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1968,'API_64a492a1b001278931e0634102d5d7a8','模糊查询可用状态列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1969,'API_577ea2865d3aecb0c5fe7b6845331cc3','查询公司/机构所属的在线无人机列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1970,'API_ce24ea7b75dbbfe6e267afdcd9bc4cbb','无人机绑定的载荷列表查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1971,'API_2c88be6be58cb0a02482693d04247259','统计公司/所属机构获取无人机数量','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1972,'API_4c7d4392059244c4e0cdb4f9306e3386','无人机绑定的摄像头推流信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1973,'API_d21bd2bd0c4a8f6692259e8fe9a8cb97','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1974,'API_1f5ace1281b80bab94fe0b6f99cd2cf7','查询公司/机构所属的无人机编码列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1975,'API_1f14a61350bd9787496d64e9df5f5639','增加菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/addAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-11-06 12:16:24'),(1976,'API_e8644287d106974dd3abd2b2e63e129b','更新菜单并授权接口','','cmii-uav-user','/api/uav/resource/menu/updateAndAuthorityApi','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-11-06 12:16:31'),(1977,'API_e6a250e09db8632e259ab40ba620e1a0','新增机库','','cmii-uav-industrial-portfolio','/api/uav/hangar/addUavHangar','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1978,'API_d6990a91149a1dfa3797e0924bce0bb9','按机库编码查询机库详情查询','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryDetailByHangarCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1979,'API_84b18e7dd2b2c9bfa647e529cfc1b961','修改机库','','cmii-uav-industrial-portfolio','/api/uav/hangar/updateUavHangar','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1980,'API_21722bcfd32b3a52ec158cc756ef2281','按机库设备号查询机库详情','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1981,'API_a21c3a2e047e8b6049d1eac65ffa4e3d','设置机库在线状态','','cmii-uav-industrial-portfolio','/api/uav/hangar/updateOnlineStat','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1982,'API_e6410cd8083ec77c856dbeac9282364e','公司支持的多语言','','cmii-uav-user','/api/uav/user/profile/querySupportedLanguages','POST',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2024-11-06 12:16:35'),(1983,'API_3c44116cbfc46a40b50e22a81f759da1','生成新机库编码','','cmii-uav-industrial-portfolio','/api/uav/hangar/newHangarCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1984,'API_c26e03fffe6f1019b5fb5773b56dc181','获取无人机绑定的机库详细信息','','cmii-uav-industrial-portfolio','/api/uav/hangar/getBoundHngByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1985,'API_f0d000973cdf6871d35706eb33d6225e','获取机库绑定的无人机详细信息','','cmii-uav-industrial-portfolio','/api/uav/hangar/getBoundUavByHngCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1986,'API_9f23f5aa662c9c56b1dca751d0d73c02','通过机库设备号查询机库编码','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryHngCodeByDeviceNo','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1987,'API_c5e0a8bba9e3133024a9050227b90766','通过机库编码查询机库设备号','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryDeviceNoByHngCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1988,'API_13430c953f9fae22336fe9df69a16995','根据机库编码获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryCompanyByHngCode','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1989,'API_1a1c6f7a9bcd291190663c7cbc090495','查询公司/机构所属的机库编码列表','','cmii-uav-industrial-portfolio','/api/uav/hangar/queryHangarByCompanyId','GET',_binary '\0',_binary '\0','2022-01-18 11:03:58',1,'2022-11-02 09:13:11'),(1990,'API_c7362388408bfca8e7cc15ca5592d0d5','搜索日志','','cmii-uav-logger','/bizLog/searchLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:49'),(1991,'API_76300389360c13a81bdbdfd9ecb79f93','搜索对象关联日志','','cmii-uav-logger','/bizLog/searchOpIdentityLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(1992,'API_db065b5d3b83b61eaefa2a4b50836f78','模糊搜索用户列表接口','模糊搜索用户列表接口','cmii-uav-logger','/personal/search/userList','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(1993,'API_796a09c0bc084f600504c3bcd4abf532','模糊搜索设备列表接口','模糊搜索设备列表接口','cmii-uav-logger','/personal/search/deviceList','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(1994,'API_d0c6d1f5bf828187a559fbab169bdcb4','设备类别列表接口','设备类别列表接口接口','cmii-uav-logger','/personal/config/category/list','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(1995,'API_2fc811bd78563bfd029726034e5b277a','搜索业务日志【通用检索接口】','','cmii-uav-logger','/logger/searchBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(1996,'API_9592623ab1b1e0bf43fa57eeaf7a978e','根据编码集合查询出接口信息','','cmii-uav-user','/api/uav/resource/api/queryByCodes','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:44'),(1997,'API_22efa37fc10586896a1e2c931e33a65e','写一条业务日志【日志埋点使用】','','cmii-uav-logger','/logger/saveBizLog','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:47'),(1998,'API_a7e9511e581d19131d2c36db53502b78','接口扫描','','cmii-uav-logger','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(1999,'API_bc273903671185a43d1dad89c944b981','health','','cmii-uav-logger','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:49'),(2000,'API_72f1ed0d5cf4e0b1979085f43465fde6','ping','','cmii-uav-logger','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(2001,'API_b16f39ced33dbbd4773db4915e4f2386','env','','cmii-uav-logger','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:49'),(2002,'API_8656bcac6b04d4b5f95c971afef1fe09','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2022-03-11 06:17:33'),(2003,'API_e2804c450c1aa20fcab278f7590f4351','swaggerResources','','cmii-uav-logger','/swagger-resources','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2022-03-11 06:17:33'),(2004,'API_7dbad5674586f150ad7ecb021f2b88a9','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2022-03-11 06:17:33'),(2005,'API_fd1762c99da1c9cf1cc14970e7a2817a','error','','cmii-uav-logger','/error','',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:48'),(2006,'API_ef1392e9af777173a7d22a9a2dd896fc','用户修改密码(验证旧密码)','','cmii-uav-user','/api/uav/user/modifyPwd','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:41'),(2007,'API_3d2e58aa2ed872cc0efb748d14cd2e5d','验证账号密码','','cmii-uav-user','/api/uav/user/checkAccountPwd','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:26'),(2008,'API_55940e0a645db648b082a2bdc29b956b','获取配置项目历史记录','','cmii-uav-user','/api/admin/system/quota/getQuotaHistory','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:33'),(2009,'API_d831b068209afa75fae95362539c5248','获取组织配额使用信息(不包含子组织配额)','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfo','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:40'),(2010,'API_138d1f792e8c7ef2953118f03055b18e','查询组织历史记录时配额信息展示','','cmii-uav-user','/api/admin/system/quota/getQuotaInfoByCompany','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:35'),(2011,'API_91792e840f0d594a77e2579be356f4d8','获取组织配额信息','','cmii-uav-user','/api/admin/system/quota/getCompanyQuota','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:20'),(2012,'API_bde567dcccb5a9ace49be8f1c7d3d37f','查询所有组织信息','','cmii-uav-user','/api/admin/system/quota/getAllCompany','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:22'),(2013,'API_f096c70213c5df875be07f0c8386e247','修改配额配置(配置或批量配置)','','cmii-uav-user','/api/admin/system/quota/updCompanyQuota','POST',_binary '\0',_binary '\0','2022-01-18 11:03:59',1,'2024-11-06 12:16:26'),(2014,'API_9139c0e2f4ff19be2ee015f851dea540','更新检查密码过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:44'),(2015,'API_6beea8e80ff08ac650cf234507edd315','更新检查密码即将过期用户','','cmii-uav-user','/user/pwd/notice/updatePwdWillExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:21'),(2016,'API_412903050f7d31bec581858540eec30a','向用户发送短信','','cmii-uav-user','/user/pwd/notice/startSendSms','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:29'),(2017,'API_3dc66cc39026e1523fab47ab17028019','根据用户id获取用户详细信息','','cmii-uav-user','/user/getUpdateById','POST',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:36'),(2018,'API_da4d4460e5d246a7e2e5bcc23912ceb9','向用户发送Email','','cmii-uav-user','/user/pwd/notice/startSendEmail','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:20'),(2019,'API_ffc94b12cc6152ed1ebd0dadf788eba4','health','','cmii-uav-user','/cmii/health','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:43'),(2020,'API_100a284ed1d1ae4ab3b90991239af961','ping','','cmii-uav-user','/cmii/ping','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:25'),(2021,'API_41a5a4ad4c33ecaa64d42329d150bb2e','env','','cmii-uav-user','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:04:00',1,'2024-11-06 12:16:38'),(2022,'API_6cf23bdae74602c793a65ca87b97b4c8','查询支持的算子列表(可选)','查询支持的算子列表','cmii-uav-cloud-live','/config/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2022-03-08 07:20:02'),(2023,'API_57b11d3699ec917da49f417693309a23','查询算子配置标准(可选)','查询算子配置标准','cmii-uav-cloud-live','/config/task/info','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:41'),(2024,'API_aa851340e8516d5394f1a733f1a3fa21','算子上报任务状态接口(可选)','算子上报任务状态接口','cmii-uav-cloud-live','/config/report/status','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2022-03-08 07:20:02'),(2025,'API_7bdd1e253db690eae958770109d4df8b','插件需要运行任务列表','插件需要运行任务列表','cmii-uav-cloud-live','/task/run/list','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:39'),(2026,'API_f9ecea55f0f0ddaa5b5d798451b6c3dd','启动算子任务','启动算子任务','cmii-uav-cloud-live','/task/start','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:44'),(2027,'API_2c7807e4baef26561f779a78aa9b38c4','停止算子任务','停止算子任务','cmii-uav-cloud-live','/task/stop','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:39'),(2028,'API_fae85f9df895d5904e0e9f2bb3a6ca59','查询微服务下运行的任务列表','查询微服务运行的任务列表','cmii-uav-cloud-live','/task/list','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:38'),(2029,'API_b61133abe3f5660483655646b25afdd6','查询容量','查询容量','cmii-uav-cloud-live','/task/summary','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2022-03-08 07:20:02'),(2030,'API_72621d9d7f3fd3d8da551e852539d260','查询算子任务状态','查询算子任务状态','cmii-uav-cloud-live','/task/status/get','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:44'),(2031,'API_bfe511b393227902e718f34fc9f913ec','查询视频流状态','查询视频流','cmii-uav-cloud-live','/video/stream','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:41'),(2032,'API_a53504f49cf4641453c2137943dd1539','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','/video/stream/{streamId}','DELETE',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:36'),(2033,'API_1df86d39f377967622f7cbdbb5b9c4d5','获取视频流状态信息','获取视频流状态信息','cmii-uav-cloud-live','/video/stream/getStreamStatus','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:41'),(2034,'API_38b1c5cd2a964df55a41fd64d0aa2301','创建工作流任务','创建工作流任务','cmii-uav-cloud-live','/workflow/task','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:42'),(2035,'API_664a461473515cd35686976d146ef20e','查询工作流状态','查询工作流状态','cmii-uav-cloud-live','/workflow/status','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:36'),(2036,'API_eb30f6388b9304ed0f36191557e3d5ce','查询视频信息','查询视频信息','cmii-uav-cloud-live','/client/video/queryVideoInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:43'),(2037,'API_9e0d5bc96a5945702af710adf71bddba','合并完成通知','合成完成通知','cmii-uav-cloud-live','/client/video/mergeComplete','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:43'),(2038,'API_deeadfe980021944cf2eb95105eca865','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/client/video/applyMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:39'),(2039,'API_3aa94cb231afe3b4dc74cc434ac5b960','通知视频插件合并视频【调试接口】','通知视频插件合并视频【调试接口】','cmii-uav-cloud-live','/client/video/noticeMerge','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:38'),(2040,'API_bb719bbe92cdfec83c452f2b0940ee61','通知任务执行【调试接口】','通知任务执行【调试接口】','cmii-uav-cloud-live','/client/video/startTask','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:44'),(2041,'API_77ce20cbcf31364a347a9ee9ad913eef','查询已启动的算子服务','查询已启动的算子服务','cmii-uav-cloud-live','/aibrain/task/list','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:41'),(2042,'API_3bf7a24c21a7a87e06bcdd0a481c257b','查询受支持的算子','查询受支持的算子','cmii-uav-cloud-live','/aibrain/module','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:44'),(2043,'API_a5354dd8a32cec260b29ef9064103626','检查过期任务','检查过期任务','cmii-uav-cloud-live','/aibrain/task/checkExpire','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:42'),(2044,'API_aefa630cfc259cc50feacfb468747142','创建AI Token','创建AI Token','cmii-uav-cloud-live','/aibrain/createAiToken','GET',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:41'),(2045,'API_f76287aae226e3f42feda5d6347b3393','启动算子服务','启动算子服务','cmii-uav-cloud-live','/aibrain/task','POST',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:42'),(2046,'API_e7cd9c3a32b93dccd073b593ab94a948','停止算子服务','停止算子服务','cmii-uav-cloud-live','/aibrain/task','DELETE',_binary '\0',_binary '\0','2022-01-18 11:04:02',1,'2024-11-14 02:02:38'),(2047,'API_4c293733864102529b24ce2e8aca7c5d','查询视频分片文件列表','查询视频分片文件列表','cmii-uav-cloud-live','/client/live/queryPartFiles','POST',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-11-14 02:02:37'),(2048,'API_4ce3713dcd9407e532b36fc2222e86c7','申请视频流','申请视频流','cmii-uav-cloud-live','/client/live/stream/createStream','POST',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-11-14 02:02:44'),(2049,'API_95cc9e770062fe4aa202821d013ff0d2','查询视频流信息','查询视频流信息','cmii-uav-cloud-live','/client/live/stream/getStreamInfo','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-11-14 02:02:44'),(2050,'API_d08c958d9a9b0f498e57ed074618bb69','查询视频流地址','查询视频流地址','cmii-uav-cloud-live','/client/live/stream/getStreamUrl','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-11-14 02:02:37'),(2051,'API_44886cade0b7fa437e5d7955306ff6f9','创建临时视频流','创建临时视频流','cmii-uav-cloud-live','/client/live/stream/createTempStream','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-11-14 02:02:41'),(2052,'API_ddf5b7086132de055d3ef2c1be7d51ba','删除视频流','删除视频流','cmii-uav-cloud-live','/client/live/stream/deleteStream','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-11-14 02:02:37'),(2053,'API_9b7392d77b4fc497ddcc5bd67e6d4c2a','getStreamUrls','','cmii-uav-cloud-live','/streams/urls','GET',_binary '\0',_binary '\0','2022-01-18 11:04:03',1,'2024-11-14 02:02:43'),(2054,'API_6ccbcf7e7a2a5cf33f8c5733a0fee930','查询所有状态列表','','cmii-uav-airspace','/zydAirspace/queryAllStat.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:07',1,'2024-11-14 03:10:23'),(2055,'API_d51f76e282f86ed9822b61339cb4372b','查询数据字典信息','','cmii-uav-airspace','/zydAirspace/getZydDicInfo.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:07',1,'2024-11-14 03:10:22'),(2056,'API_3ab5cf3875b930eaf0560be5836b0cc2','手动提交终审','','cmii-uav-airspace','/zydAirspace/manualAudit.do','POST',_binary '\0',_binary '\0','2022-01-18 11:04:07',1,'2024-11-14 03:10:22'),(2057,'API_8dfe23889d8fbd89e87499f24fc9abbc','查询终审流程','0:无终审 1:自动终审 2:手动终审','cmii-uav-airspace','/zydAirspace/getProcedure.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-11-14 03:10:23'),(2058,'API_55fd67bbd0ae55491ce2fa177bad4d3c','下载审批文件','','cmii-uav-airspace','/zydAirspace/getAppliFile.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-11-14 03:10:23'),(2059,'API_67f906e44cbd13682907323811772e85','test','','cmii-uav-airspace','/zydAirspace/test.do','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2022-08-29 01:35:08'),(2060,'API_971b286ef3ef68d082b683925384449f','查询指定空域告警触发配置信息列表','','cmii-uav-airspace','/efence_airspace/specified_airspace_trigger_info_list','POST',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-11-14 03:10:22'),(2061,'API_fbf92f911baf8d1753947a812a570b64','测试alarm xxl job','','cmii-uav-airspace','/efence_airspace/testAlarm','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-11-14 03:10:22'),(2062,'API_363b42edc3414c559880ce1012fdc984','env','','cmii-uav-airspace','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2024-11-14 03:10:23'),(2063,'API_b52e188f9fd64b399a15d9d0bfb14ca1','查询无人机总飞行时长','','cmii-uav-airspace','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2023-03-29 08:30:25'),(2064,'API_d54efb4eca43af43ba6e920ff3c7cc79','无人机绑定的摄像头推流信息','','cmii-uav-airspace','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2023-03-29 08:30:26'),(2065,'API_40e278cb7c6a0ae7cde4405ecfb351fa','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-airspace','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:04:08',1,'2023-03-29 08:30:26'),(2066,'API_c1c0f28b57d142d37d59a5c9a4fc3d02','testUpdatePicWhole','','cmii-uav-mission','/oss/testUpdatePicWhole','GET',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:36'),(2067,'API_13117e81912b2dc8f8905e89e06aaafc','sendEndMissionTest','','cmii-uav-mission','/oss/send_end_mission_mq_test','GET',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:39'),(2068,'API_1638d070ae812b7265701b2e243078ee','外网接口 获取分享的作业信息','','cmii-uav-mission','/report_and_video/report_share/check','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:38'),(2069,'API_551ef231e5b24a402f64512982ff64de','外网接口 获取分享报告关联的作业照片地址','','cmii-uav-mission','/report_and_video/report_share/pic_list','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:39'),(2070,'API_c5a126633544e4d674c2dbc5f957069a','ai识别告警短信发送接口','','cmii-uav-mission','/report_and_video/send_ai_event_sms','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:34'),(2071,'API_aaf366c56c797d45991144feee239494','校验提取码,返回 无人机视频流地址、视频截图地址','','cmii-uav-mission','/report_and_video/video_share/check','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:36'),(2072,'API_880e8b3712afec0d53280b5f3aff7936','获取无人机实时位置,只有经纬度','','cmii-uav-mission','/report_and_video/video_share/get_uav_point','POST',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:39'),(2073,'API_20b39fea52680287923bc94ab52c306e','手动发送作业报告给用户','','cmii-uav-mission','/report_and_video/report_send/{missionId}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:08',1,'2024-11-12 01:20:40'),(2074,'API_3fc63a11e866d6b59e862b4bd06a7665','开始AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/switchAIDetection','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:36'),(2075,'API_41269627e2aa921b7b6da83e3031c8b4','根据无人机id列表查询进行中的作业id','','cmii-uav-mission','/api/uav/mission/surveillance/query_running_missions_by_uasIds','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:38'),(2076,'API_c97f0c91f98880f6f7cdee1380c74a7c','停止AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/stop_ai_detection/{id}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2022-04-01 02:34:13'),(2077,'API_6179036c7a862b67660ff6392a189e88','车牌信息上报','','cmii-uav-mission','/api/uav/mission/surveillance/ai_detection_info_report','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:34'),(2078,'API_c1a89c22a463df38c940687dc8573f25','提交更新作业审批','','cmii-uav-mission','/api/uav/mission/mission_info/mission_approval','PUT',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:34'),(2079,'API_d634e93c15d4fa0e4b5b5386ac688691','提交更新定时作业审批','','cmii-uav-mission','/api/uav/mission/mission_info/timed_mission_approval','PUT',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:38'),(2080,'API_750703a32158976e07a2b2eb2f9153b8','指定起始点和终点,航线为一条直线,快速创建作业,并且开始作业','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_mission_and_start','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:39'),(2081,'API_e4c9057a8f3a454b478d6cad96dcfc7d','火警出警,创建作业并开始,更新火警信息','','cmii-uav-mission','/api/uav/mission/mission_info/createFastMissionAndStartThenFly','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:34'),(2082,'API_b9d94704f22cfe54f51c2bccba8f334d','结束火情出警','','cmii-uav-mission','/api/uav/mission/mission_info/complete_fire_case','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:35'),(2083,'API_5fbc20d69d6eebbb741a23f02ebe7595','上海火警信息上传接口','','cmii-uav-mission','/api/uav/mission/mission_info/caseinfo/newcase','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:37'),(2084,'API_d8e9f9c00b94ff1ef4776e3de1455031','fireCaseFinished','','cmii-uav-mission','/api/uav/mission/mission_info/caseinfo/casefinished','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:35'),(2085,'API_de4c84ce6569cadeedd369798d065b02','获取AI相关类型的全量图片列表','','cmii-uav-mission','/api/uav/mission/mission_info/ai_picture_list','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:36'),(2086,'API_676ebc422cf5ff71c86a04408cc51af0','根据执行人名称模糊查询执行人ID列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/executor_id_list_with_fuzzy_executor_name','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:39'),(2087,'API_1c631f20ee69d0d0ddd0ada8095a36cb','根据作业名称模糊查询作业ID列表','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_id_list_with_fuzzy_mission_name','POST',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:34'),(2088,'API_ce03c539c3654249e440995fcebf3a78','queryMissionState','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_state/{id}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:34'),(2089,'API_78c99233f7b9ff746fc61cb8b5393ee1','根据作业名称查询作业模式','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_model/{name}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:39'),(2090,'API_3c5a5315a5e33a381f832f8b4ba5534c','获取整合的作业报告','','cmii-uav-mission','/api/uav/mission/mission_info_list/integrateMissionReport/{id}','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:36'),(2091,'API_f7afb74c9e0208561d56b60772e28022','env','','cmii-uav-mission','/cmii/env','GET',_binary '\0',_binary '\0','2022-01-18 11:18:09',1,'2024-11-12 01:20:36'),(2092,'API_616ccdb602c32b2efc69b42a43365502','查询无人机总飞行时长','','cmii-uav-mission','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:27'),(2093,'API_9e78eeed394af9166159b86370e6cae6','无人机绑定的摄像头推流信息','','cmii-uav-mission','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:27'),(2094,'API_ef2281d702bf4c40618f3a6cc4c8dc35','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-mission','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:27'),(2095,'API_a6fab03e9341b2ed6dbdbb7466c3a657','新增告警事件','','cmii-uav-mission','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2096,'API_3d2c383e5b132bb8823a99448a5416b3','查询告警事件详情','','cmii-uav-mission','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2097,'API_490a01689921a4b9d14ab38c9d00d778','告警触发器','','cmii-uav-mission','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2098,'API_99ab757d89f1b425d960d9231cb9afea','通过关联作业处理告警事件','','cmii-uav-mission','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2099,'API_ef1ff15096513626001c35d05a54a52b','通过告警对象处理告警事件','','cmii-uav-mission','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2100,'API_3dd4831d23c52c08cf03b5acf7eca3c3','查询告警数量统计信息','','cmii-uav-mission','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2101,'API_4713a1d46e491f116a88cf63b4e09759','告警指标统计信息','','cmii-uav-mission','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2102,'API_eb8820b96fe409eaed37e9cc6a85c730','通过告警对象查询告警事件列表','','cmii-uav-mission','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-07-18 04:08:28'),(2103,'API_f2897eecb88652bb9cfe9a6735d7f650','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-mission','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-05-18 09:36:08'),(2104,'API_c14b4cec357e5579129020b39c607b1e','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-mission','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2022-01-18 11:18:10',1,'2023-05-18 09:36:08'),(2105,'API_75762540aa74ed7f4c6671794d4fee35','报告预览','','cmii-uav-data-post-process','/product/report/getRep','GET',_binary '\0',_binary '\0','2022-01-18 11:56:50',1,'2024-09-09 09:16:29'),(2106,'API_1b467078b0ea290db660782bc2f25a0c','素材仓库图片选取分页查询','','cmii-uav-data-post-process','/dataset/materialWarehousePicPageList','POST',_binary '\0',_binary '\0','2022-01-18 11:56:50',1,'2024-09-09 09:16:28'),(2107,'API_ef5eeef72755191b37ff061c656c621f','检查图片是否有删除','','cmii-uav-data-post-process','/dataset/checkMwPicIsDelete','POST',_binary '\0',_binary '\0','2022-01-18 11:56:50',1,'2024-09-09 09:16:30'),(2108,'API_e44ea7d6859dbec3f741701331359dec','寄件人列表信息查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/list','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:35'),(2109,'API_7d167fcdbe3c0ecc261623dbe8cc88a6','添加寄件人','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:28'),(2110,'API_9e7d9335bdb464d96e4e8606ac9a689d','批量删除寄件人','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:33'),(2111,'API_69f4c4f395f33ec463d19dcb012f23ae','修改寄件人','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:33'),(2112,'API_5440b6cd4103b7012934facce6985f36','根据code查看寄件人详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/sender_user/userinfo/{code}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:32'),(2113,'API_99805dd746602947d412186c2925d903','无人机默认执飞设置','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/drone/default','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:35'),(2114,'API_3e1faf53fa87a321b0cb8936dd80db80','无人机列表查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/drone/list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:28'),(2115,'API_d5d5dab654fc37a950a53954075db47d','查询前序航班信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/frontFlight','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:31'),(2116,'API_b8859ed32f8549a24c72cf06d59b8f5a','获取当前航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/getAirLine','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:33'),(2117,'API_667180b8b9ca2313221589218cf41aaf','monitorWsPull','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/ws/pull','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:36'),(2118,'API_1c65abde2c0b3a310f2e60801cb697e9','monitorWsClose','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/ws/close','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:30'),(2119,'API_c50af127d774a44fe8004d24e0bc6fff','ws数据展示接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/monitor/ws/show','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:33'),(2120,'API_3346d1f02f2acfbc14ca21943cc99753','订单详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/order/details/{code}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:31'),(2121,'API_c064a25df4fedeeada0580e9ddbe8d8d','分页查询订单列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/order/list','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:28'),(2122,'API_5c3a70267883a9895564e4f9a9dda13c','航线起点和航线终点各自到起点和终点智能柜的距离','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/distance','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:30'),(2123,'API_a22118960d03d334b16780e5a804bbf5','全量航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/all','POST',_binary '\0',_binary '\0','2022-02-28 02:36:00',1,'2024-11-13 12:23:28'),(2124,'API_020d5d99bc0401f9635557e3ecc50b8c','导入航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/airLineInfo','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:28'),(2125,'API_ddf5cb81c4652d0b190fcf782d8981a8','删除','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/airLineInfo','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:30'),(2126,'API_ad432cb5a16532a416c04541e7d46b78','航线详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/airLineInfo/{id}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:30'),(2127,'API_35e2944b00644d34ba727bcc3040f58f','分页查询航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/airLine/list','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:28'),(2128,'API_6ef75ac68b36f8dd0582bb8a7c0424c8','行业应用平台根据code获取用户Token','行业应用平台根据code获取用户Token','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/common/user/getDataProcessToken','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:30'),(2129,'API_ec0281835d67a75cbcb8a2c3b94b371b','智能柜列表查询','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/medicallogistics/cabinet/list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:34'),(2130,'API_5627bc32a033d19f763ae1d18c99dbe3','更新应急兴趣区域状态','状态:0:影藏,1:显示','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info_status','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:33'),(2131,'API_25853e773c36211eb9d51c8aee17d32d','获取应急兴趣区域信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info/{id}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:28'),(2132,'API_857b9833c7404a7189c6bb31bbace89a','删除应急兴趣区域信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info/{id}','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:32'),(2133,'API_e48b41699ed1401314331cc6cd420cc0','获取应急兴趣区域信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info_list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:32'),(2134,'API_0fbebb6464bd6d55e23e7dc8e6d09db6','添加应急兴趣区域信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:33'),(2135,'API_13f2e565fab9b1278031a8a615863a45','更新应急兴趣区域信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/area_info','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:31'),(2136,'API_c41090d93ad3583693752f52d14c2774','行业应用平台应急管理根据code获取用户Token','行业应用屏山应急管理根据code获取用户Token','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/emergency_token','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:27'),(2137,'API_03980af90e9baec81dcead048cbff9ff','添加应急调度资源信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:32'),(2138,'API_d0d19a5642a758316453304e756557b6','更新应急调度资源信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info','PUT',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:30'),(2139,'API_0b86f50bd809af547fbce8b2491d9f75','获取应急调度资源信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info/{id}','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:35'),(2140,'API_f5aec35afdcd32f0f452e61feab3c6e5','删除应急调度资源信息详情','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info/{id}','DELETE',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:28'),(2141,'API_d067563fd624765ba3b322b100e6a3df','获取应急调度资源信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_info_list','GET',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:30'),(2142,'API_392a8437e9d9ce014e0c2a1bfa5ad398','查询资源名称是否唯一','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/emergency/resource_name_distinct','POST',_binary '\0',_binary '\0','2022-02-28 02:36:01',1,'2024-11-13 12:23:32'),(2143,'API_f461607704830edda20e194487a8afa4','获取游客的无人机设备列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-02-28 02:36:02',1,'2022-11-02 09:13:11'),(2144,'API_7719ef77f51614d28950eab5ec478b36','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-industrial-portfolio','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-02-28 02:36:02',1,'2022-11-02 09:13:11'),(2145,'API_6e4cdd066aa27a5f22732d7f3e607dec','设置无人机上线','','cmii-uav-industrial-portfolio','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-02-28 02:36:02',1,'2022-11-02 09:13:11'),(2146,'API_ec35e84853c188e3e7fc65fb7d805943','查询载荷类型','','cmii-uav-device','/api/uav/load/queryUavLoadType','GET',_binary '\0',_binary '\0','2022-03-08 06:47:04',1,'2024-11-07 09:01:49'),(2147,'API_f3a796075590fc75cdec6c8ef419602d','查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/queryLoadByCompanyId','GET',_binary '\0',_binary '\0','2022-03-08 06:47:05',1,'2024-11-07 09:01:54'),(2148,'API_e241a61f309072d11f33960bdb86dab7','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:05',1,'2024-11-07 09:01:47'),(2149,'API_72cb1b5411f248269171c268534ce636','test','','cmii-uav-waypoint','/middlecourt/api/v1/test','POST',_binary '\0',_binary '\0','2022-03-08 06:47:08',1,'2024-11-12 03:52:39'),(2150,'API_e75b0f8cabf2ea935e6beea0169e8790','查询工参','','cmii-uav-waypoint','/middlecourt/api/v1/station/queryByStationId/{stationId}','GET',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2024-11-12 03:52:41'),(2151,'API_75993a401388597c227b71da76f91b83','查询航线列表信息','','cmii-uav-waypoint','/api/uav/waypoint/mission/airline_info_list','POST',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2024-11-12 03:52:41'),(2152,'API_33dafc6602e03161e71b1ceea545471f','env','','cmii-uav-waypoint','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2024-11-12 03:52:43'),(2153,'API_1d119069d73b2923c28db3481ef4a3b6','查询无人机总飞行时长','','cmii-uav-waypoint','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-08 06:47:09',1,'2023-05-04 09:35:55'),(2154,'API_e72dbea5e13344bdc0356c4cf706f864','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2023-05-04 09:35:56'),(2155,'API_88742f14ea3f859f23695c7b4e309fb6','health','','cmii-uav-material-warehouse','/cmii/health','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-11-11 11:46:06'),(2156,'API_7650e7c314a5b6d5b89c2b0b4f00d5a4','ping','','cmii-uav-material-warehouse','/cmii/ping','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-11-11 11:46:08'),(2157,'API_5a69ea9e7a73cedcfeb075f7c8a25044','env','','cmii-uav-material-warehouse','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-11-11 11:46:09'),(2158,'API_89037909604fc144fc99e9402c30282f','文件上传进度获取','','cmii-uav-material-warehouse','/mwProjItemTmpPO/api/v1/warehouse/get/progress','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2159,'API_9ffbdc9ed88ada61836fb12ebbe49391','任务监控模糊查询文件标题与所有人','','cmii-uav-material-warehouse','/mwProjItemTmpPO/api/v1/warehouse/getfiletitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2160,'API_0bd8546665e765a9aed4436018dbfa68','任务监控视图查询任务详情列表','','cmii-uav-material-warehouse','/mwProjItemTmpPO/api/v1/warehouse/job/project','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2161,'API_82da9a6654b96f6862c5b099ac5dfb8d','查询项目来源','查询项目来源','cmii-uav-material-warehouse','/mwScrPO/api/v1/warehouse/project/origins','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2162,'API_2babab9fa2904f2ae1bf07361d4b2142','ZipDownloadById','根据文件的id,选择素材仓库中的各种文件并打包下载','cmii-uav-material-warehouse','/api/v1/warehouse/project/getZipFiles','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-11-11 11:46:06'),(2163,'API_448892d400c4834d9c9d26fb27e7911b','提交任务列表','','cmii-uav-material-warehouse','/api/v1/warehouse/project/taskList','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2164,'API_ef3447ade0be463864448d1e1becf29d','文件分片上传','','cmii-uav-material-warehouse','/api/v1/warehouse/project/upload','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2165,'API_e361f1956b68d9bb71a633be28dc454f','文件合并','','cmii-uav-material-warehouse','/api/v1/warehouse/project/merge','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2166,'API_2d8558d263aa5e24103814435d0f6c26','前端默认上传测试','','cmii-uav-material-warehouse','/api/v1/warehouse/project/default/putObjectTest','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2167,'API_dadd8f2c9a3cea9c5b732b2c8388b8b5','通过URL下载文件测试','','cmii-uav-material-warehouse','/api/v1/warehouse/project/getObjectByUrlTest','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2168,'API_d8cfd20f01d79796b0444f636011a747','通过URL下载文件','','cmii-uav-material-warehouse','/api/v1/warehouse/project/getObjectByUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2169,'API_7107dae045fcf12b334af14a7bce6cb8','通过URL批量下载文件','','cmii-uav-material-warehouse','/api/v1/warehouse/project/getObjectBatchByUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2022-03-08 06:47:17'),(2170,'API_aeeb371f249998f26777d390bf305a6c','无认证暴露文件,临时接口','','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFile/{fileId}/{token}','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-11-11 11:46:09'),(2171,'API_e34093cbf113861c1c153bb519544166','通过文件id下载文件','通过文件id下载文件,type:0(原图),1(缩略图),2(临时文件)','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileByToken/{fileId}/{type}/{neverMore}/{kael}/{spectre}','GET',_binary '\0',_binary '\0','2022-03-08 06:47:10',1,'2024-06-26 09:47:49'),(2172,'API_e02b254f1eabd50ff7fdef1a2b13b06f','自定义下载文件','自定义下载文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFile','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:08'),(2173,'API_b5d36e69d070269717d085496bd68685','通过对象路径下载文件,利用token','通过对象路径下载文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileByToken','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:07'),(2174,'API_09137aee1b566c4457b0270c357c918f','下载三维模型文件,利用token','下载三维模型文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadModelFile/**','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:07'),(2175,'API_03d2232e5cf78f25e9b84a3034db484c','前端默认上传','','cmii-uav-material-warehouse','/api/v1/warehouse/project/default/putObject','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:08'),(2176,'API_136c40c26495e38a08044676e027d712','模糊搜索标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/labels','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:17'),(2177,'API_27e9e4a0b5a915b8b36789b1c6cc7c22','每个用户搜索标签展示','默认没有搜索不会展示标签','cmii-uav-material-warehouse','/api/v1/warehouse/project/showLabels','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:17'),(2178,'API_aa19b8243eccc1d811f96150efbaf20c','修改项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/labels','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:17'),(2179,'API_6404906837f054dce7ce0289a2983c05','zip包下载(返回URL)','选择素材仓库中的各种文件,返回url地址','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getZipFilesUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:07'),(2180,'API_573b1cf7fa66bd93b6c08d0e970e65e0','zip包下载(返回流)【内部接口】','选择素材仓库中的各种文件打包下载','cmii-uav-material-warehouse','/api/v1/warehouse/internal/downloadZipFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:08'),(2181,'API_47953a37b7544ac36d4d16519e7af580','项目图片zip包下载','将素材仓库中的图片集打包下载','cmii-uav-material-warehouse','/api/v1/warehouse/internal/downloadZipPics','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:07'),(2182,'API_cf368262d63d1cf32182a6c1853acc38','模糊搜索标题title或者所有人姓名','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/searchProjs','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:06'),(2183,'API_a9a313c8fbe7b753447df7c88fb957b7','获取项目文件存储路径信息【内部接口】','根据projObjId查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getFilePath','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:08'),(2184,'API_837855a974a132a8e5baece88cb6a6cb','获取项目文件存储路径信息【内部接口】','根据文件名查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getFilePathByName','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:09'),(2185,'API_e3202a406776e050631c8e9b8ec97d45','获取项目文件【内部接口】','根据projectId查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/queryFiles','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:09'),(2186,'API_00a1c2449636ed33815ed9b3e81b256e','获取项目基础信息和文件列表【内部接口】','根据projectId查询项目基础信息和文件列表','cmii-uav-material-warehouse','/api/v1/warehouse/internal/queryProjFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:08'),(2187,'API_068a6c08f26dca8c7d9ca6384494dc22','文件上传【内部接口】','上传文件,返回文件ID','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadFile','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:09'),(2188,'API_c4fd8899e4dbc5611656d492692af74a','文件批量上传【内部接口】','批量上传文件,返回文件ID','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:07'),(2189,'API_675542a7aa38508a650ed4d89eaa7584','获取上传前缀【内部接口】','获取项目文件上传前缀','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getUploadPrefix','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:09'),(2190,'API_36fb0f223ac2436796bd386dd0c6ae53','上传结束通知【内部接口】','上传结束通知','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadEndNotice','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:08'),(2191,'API_5e70d83a4e70a34810c23c83bb86b915','文件检索通知【内部接口】','文件检索通知','cmii-uav-material-warehouse','/api/v1/warehouse/internal/fileSearchNotice','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:09'),(2192,'API_1c66c2dc81b9d69247eb03f50f332292','项目删除【内部接口】','项目删除','cmii-uav-material-warehouse','/api/v1/warehouse/internal/delProject','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:09'),(2193,'API_ef39409e2b1113e2effce75cfa19034c','文件删除【内部接口】','项目文件删除','cmii-uav-material-warehouse','/api/v1/warehouse/internal/delItem','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:07'),(2194,'API_6f47379ce6e578d3c0dfecfb0c7158dd','根据文件ID进行文件删除【内部接口】','项目文件删除,通过文件id','cmii-uav-material-warehouse','/api/v1/warehouse/internal/delItemById','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:07'),(2195,'API_5e962c9956553ce878dac303b3926e8e','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:06'),(2196,'API_f01c475192e2ae498f14659b527e8630','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getProjByLabel','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:06'),(2197,'API_6d0961a0aea46618be17fcf5309e24c4','获取无认证文件链接,临时接口','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getUnauthorizedUrl','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:08'),(2198,'API_46a799433a94cd36fe9402cd4fe20bc8','删除项目的文件','删除项目的文件,支持批量','cmii-uav-material-warehouse','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2199,'API_f52f288b853f69db8dc6239a93f2e405','获取项目图片信息','根据projectId查询项目图片信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/pictures','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2200,'API_70eb1f3e4da1432a3b672ed4be2ea732','获取项目文件信息','根据projectId查询项目文件信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/files','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2201,'API_423612c2ce1ed69b52c81faeae49307e','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2202,'API_dacfd905db88ce0a66263ac6e4f9c222','多个文件下载','根据projectId和文件ID集合下载项目文件,目前杆塔业务使用','cmii-uav-material-warehouse','/api/v1/warehouse/project/files/download','POST',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:09'),(2203,'API_84c3f12c8ce5887afbcb071e904cea2c','图集下载','根据projectId下载项目所有图片文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/pictureFiles/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2204,'API_49fbbd03cd388c17768c6d4c3af6841e','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2205,'API_8990f35ecac50359ee706fe4c096dbd4','获取项目图片统计信息','根据projectId统计项目图片信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/pictureSize','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2206,'API_c685042445fcc228338236fe771dea96','删除项目所有图片','根据projectId逻辑删除项目所有图片','cmii-uav-material-warehouse','/api/v1/warehouse/project/del/picture','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2207,'API_e909d222de1212680fd24caa18f54c2b','删除项目图集信息','根据projectId删除项目图集信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/deletePictures','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2208,'API_5ce40d17b09869f986febde2f91dd7b4','获取项目音频信息','根据projectId查询项目音频信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/sounds','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2209,'API_30f87a9ebdebd9d6ff9322d35360a6a6','获取项目视频信息','根据projectId查询项目视频信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/videos','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2210,'API_f80f24f4cf81da89554d5b7e544569fa','分页获取项目视频信息','根据projectId分页查询项目视频信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/pageVideos','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2211,'API_03787324c6bdad4f8b563f925349a6a6','用户详情','根据userId获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/userDetail','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2212,'API_d8aaa67be06d1c6939dd91d559a1875e','根据token获取用户详细信息','根据Token获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/user/getMyDetail','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2213,'API_09c10c8b7aff0919f49e15b4281bcfdd','判断用户','根据userId判断用户','cmii-uav-material-warehouse','/api/v1/warehouse/project/checkUser','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2214,'API_63faf5749395d0ae8abd9a25973fb826','根据code获取用户Token','根据code获取用户Token','cmii-uav-material-warehouse','/api/v1/warehouse/project/user/getToken','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2215,'API_0b1bb8199a1c69d5bc835a742315a774','获取用户信息','获取用户信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/userList','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2022-03-08 06:47:18'),(2216,'API_6b801d24f05cadbb4bb592dd6cd37808','模糊搜索标题title或者所有人姓名','','cmii-uav-material-warehouse','/api/v1/warehouse/project/gettitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:11',1,'2024-11-11 11:46:10'),(2217,'API_e59dc5197c8ddb30859fd3cfce5abd09','获取项目基本信息','根据projectId查询项目基本信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/missionInfo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2218,'API_6e3d5412f3001022406a35d5bcd3b076','修改项目标题信息','根据projectId修改项目标题信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/title','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2219,'API_59c680107f8ea81c458dc5d03e810ac3','修改项目描述信息','根据projectId修改项目描述信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/description','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2220,'API_cd8378b7e6d5121448c90da4fc127de5','修改项目备注信息','根据projectId修改项目备注信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/comments','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2221,'API_bf275c1d113b39391043979841622aaf','修改项目基本信息','根据projectId修改项目基本信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/updateProject','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2222,'API_fd7a8cee57e4ee96a0440d483f3e1de2','查询所有项目','查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/project/getprojs','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2223,'API_f90e50e74015ac4e59a268da4e690715','删除项目','逻辑删除','cmii-uav-material-warehouse','/api/v1/warehouse/project/delpros','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2224,'API_fbeade2137d4fc191d1d3323cb858702','创建项目','创建项目','cmii-uav-material-warehouse','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2024-11-11 11:46:08'),(2225,'API_0fe269ac8b09036d584f3f71eca8803b','查询项目名是否唯一','true为唯一可用,false为不唯一不可用','cmii-uav-material-warehouse','/api/v1/warehouse/project/query/projTitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:18'),(2226,'API_8901db5a6d21411de1152cbeacce3f93','素材管理模糊搜索标题title或者所有人姓名','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/getManagerTitle','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2227,'API_39e6603a36326dbe274106cc023f1a8b','查看我的项目列表(文件类型分组)','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/getMyProjs','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2228,'API_287c7a1bbb9b83ec8360116ac7732c8b','素材管理界面文件下载','根据projectId集合以及文件ID集合打包下载项目文件','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/download','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2229,'API_56059020a7c2b86500fff2145ab38f4c','素材管理分享项目','根据projectId集合分享给新的用户','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/share','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2230,'API_5fb1ec5203cb8c976f1bd5dc1e8c3941','删除项目','项目逻辑删除','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/deleteProj','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2231,'API_c40bd9fa3a3aeddf48186da9df5b211c','来自分享的项目','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/queryShare','GET',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2232,'API_457610e2ad2141030e1293e8a5b6ad8e','更改项目所有者','','cmii-uav-material-warehouse','/api/v1/warehouse/manager/project/changeOwner','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2233,'API_af7f877332e2cac703f9dc5b3329c0e9','删除项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/delete/labels','DELETE',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2234,'API_f275e108a39f441175821b5aa45cf5c3','创建项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/project/create/labels','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-08 06:47:19'),(2235,'API_7afda1dccbe77df8774cca90df541eb8','接口扫描','','cmii-uav-material-warehouse','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2024-11-11 11:46:07'),(2236,'API_a4f739237a5e24b6548c7c981a4d6604','securityConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/security','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-11 06:17:41'),(2237,'API_8b86aae50951070824741f835e9bc696','swaggerResources','','cmii-uav-material-warehouse','/swagger-resources','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-11 06:17:41'),(2238,'API_c4520b4a89be9400b83210b44c906047','uiConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/ui','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2022-03-11 06:17:41'),(2239,'API_7a42acf545d38e5fa61375f76c7b5423','error','','cmii-uav-material-warehouse','/error','',_binary '\0',_binary '\0','2022-03-08 06:47:12',1,'2024-11-11 11:46:09'),(2240,'API_c091f0d515551576885c0d95fdeff98a','设置虚拟摇杆参数','','cmii-uav-surveillance','/virtualStick/virtualStickParam','POST',_binary '\0',_binary '\0','2022-03-08 06:47:17',1,'2024-11-12 03:56:08'),(2241,'API_d18f909934751a019e385a3c475fc119','无人机绑定的摄像头推流信息','','cmii-uav-surveillance','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-08 06:47:18',1,'2023-03-29 09:05:05'),(2242,'API_8b1217a9f4182201bd62a73fee7f31b5','设置无人机上线','','cmii-uav-surveillance','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-08 06:47:18',1,'2023-03-29 09:05:05'),(2243,'API_26fd7dd1db84e01b3461fb03bd395ef6','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:19',1,'2023-03-29 09:05:05'),(2244,'API_11b4912a89d7c79fb3185563dcc0ed5b','查询无人机总飞行时长','','cmii-uav-surveillance','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-08 06:47:19',1,'2023-03-29 09:05:05'),(2245,'API_51932f83909c3867dc73aa55e1c8a9f9','testFlyHistory','','cmii-uav-mqtthandler','/testFlyHistory','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:31'),(2246,'API_206c55ea49d2a8824dc6ac80bd3717b8','上海火警信息上传接口','','cmii-uav-mqtthandler','/exterior_data/caseinfo/newcase','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:26'),(2247,'API_7461a99c25a89dd624a21886ab751b58','fireCaseFinished','','cmii-uav-mqtthandler','/exterior_data/caseinfo/casefinished','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:27'),(2248,'API_c034211a7dca726f3623c24202e4dbf3','喊话器及显示模式','','cmii-uav-mqtthandler','/gimbal/gimbal/megaphoneAndDisplayMode','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:29'),(2249,'API_8cc54c5d3cacd6dfba13b6b9731babb2','起飞时发送航线到无人机','','cmii-uav-mqtthandler','/mqtt/send_line_and_take_off','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:27'),(2250,'API_e2ef40dc53c49b4cd29cf7ae8b60786f','testWaypoint2','','cmii-uav-mqtthandler','/test_waypoint_2','GET',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2022-03-15 07:28:12'),(2251,'API_c830fb45b303e8b4b5eba63f4e46a423','发送控制命令到复亚机库,版本3和4都是这个接口','','cmii-uav-mqtthandler','/mqtt/hangar/sendCommandVer4','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:27'),(2252,'API_d293d280bf56ee918b906e79fb6212fb','setRedisKey','','cmii-uav-mqtthandler','/mqtt/hangar/modifyRedis','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2022-09-28 01:55:54'),(2253,'API_26bdf7dcf7672180c3f83b1b94480c35','testDeviceInfoGetV4','','cmii-uav-mqtthandler','/mqtt/hangar/testDeviceInfoGetV4','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:26'),(2254,'API_b4d0582d0912da3d832e432c81e60f1d','获取/释放无人机控制权限','','cmii-uav-mqtthandler','/api/uav/VirtualStick/changeControlMode','POST',_binary '\0',_binary '\0','2022-03-08 06:47:26',1,'2024-11-07 08:51:27'),(2255,'API_e2e331ecb2775da30c28edb221b58575','起飞','','cmii-uav-mqtthandler','/api/uav/VirtualStick/flyUp','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-11-07 08:51:29'),(2256,'API_2df63fa70afd85918e54a83e4c369090','虚拟遥感','','cmii-uav-mqtthandler','/api/uav/VirtualStick/virtualStick','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-11-07 08:51:26'),(2257,'API_daeffb8aa73e0f0c0318e4bff605d261','强制降落','','cmii-uav-mqtthandler','/api/uav/VirtualStick/forceLand','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-11-07 08:51:31'),(2258,'API_61e0d8a50b218f13435057b07cd61d19','health','','cmii-uav-mqtthandler','/cmii/health','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-11-07 08:51:27'),(2259,'API_73c053d8aa0da09361126d73dba4c6b2','ping','','cmii-uav-mqtthandler','/cmii/ping','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-11-07 08:51:29'),(2260,'API_f5a9db81e1b376e53b045ed2e5059069','env','','cmii-uav-mqtthandler','/cmii/env','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2024-11-07 08:51:28'),(2261,'API_2b13b5fd2e96615cc43932525b23a6c0','根据设备号获取公司信息','','cmii-uav-mqtthandler','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2262,'API_d92ab8445892c3155419ecefcb2982a1','查询无人机总飞行时长','','cmii-uav-mqtthandler','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2263,'API_d841ca5521b08588ef99d354d2a10a53','无人机绑定的摄像头信息查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:21'),(2264,'API_5ad0f6f309b56df650f476bd25890c57','无人机列表绑定的载荷列表详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2265,'API_9131054766c4b5efa9cde40e3bdf1f97','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2266,'API_caa0cb2f279f6f4f95e44c372b92ec99','无人机绑定的摄像头推流信息','','cmii-uav-mqtthandler','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2267,'API_1c8dac64f9817ccca1f4f7c65bb22a33','无人机列表绑定载荷载荷视频详情查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-03-08 06:47:27',1,'2023-05-04 09:36:22'),(2268,'API_bbc45550d378ab047e05f04f48fb70e9','通过告警对象处理告警事件','','cmii-uav-mqtthandler','/api/uav/alarm/event/cancelAlarmbyUav','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2269,'API_87877a9912e6b677755ad10c15eac2dd','新增告警事件','','cmii-uav-mqtthandler','/api/uav/alarm/event/addEvent','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2270,'API_c411f6618274b55c54c688a0842cbcec','查询告警事件详情','','cmii-uav-mqtthandler','/api/uav/alarm/event/query/alarmEventDetailById','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2271,'API_84543f69a48bf10f09c20ab1adc42ba0','告警触发器','','cmii-uav-mqtthandler','/api/uav/alarm/event/alarmEventTrigger','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2272,'API_8d4af1773ae8d8891bccdcdd36b27952','通过关联作业处理告警事件','','cmii-uav-mqtthandler','/api/uav/alarm/event/cancel/byTask','POST',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2273,'API_a8c8a1a0e56d21aa9fc36924cc7c6f66','查询告警数量统计信息','','cmii-uav-mqtthandler','/api/uav/alarm/event/query/statics','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2274,'API_424ccb38975915e6a5b0c8655da721c3','告警指标统计信息','','cmii-uav-mqtthandler','/api/uav/alarm/event/queryAlarmIndexCount','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2275,'API_066c14bac507ff6e3846fcc800d76f3d','通过告警对象查询告警事件列表','','cmii-uav-mqtthandler','/api/uav/alarm/event/query/alarmEventDetailByObj','GET',_binary '\0',_binary '\0','2022-03-08 06:47:28',1,'2023-05-04 09:36:22'),(2276,'API_3b87b350b693887af09016e27cbdb1e3','验证区域信息是否正确[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/checkArea','POST',_binary '\0',_binary '\0','2022-03-11 03:07:06',1,'2024-11-06 12:16:54'),(2277,'API_d4f2e185163e0755673448c0ee376ea6','按条件分页查询载荷型号信息','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelPage','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:55'),(2278,'API_71b99303d880eb9226fbca6dc38cdcd7','从载荷类型表模糊查询生产厂家列表','','cmii-admin-data','/api/admin/model/load/queryMnfNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:52'),(2279,'API_c422092cc68cc976c1ffe774ef338788','从载荷类型表模糊查询类型列表','','cmii-admin-data','/api/admin/model/load/queryModelNameFromModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:54'),(2280,'API_5c729fae887038eb3b4814dcb549c305','根据类型查询载荷类型详情','','cmii-admin-data','/api/admin/model/load/queryModelDetailByModel','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:48'),(2281,'API_4a071fe963d52832096c7867ca6409d6','check设备类型是否没有被冻结','','cmii-admin-data','/api/admin/model/load/checkNotFrozen','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:50'),(2282,'API_e9d4c1b8190381c4f9ad256471c4a981','模糊查询型号列表','','cmii-admin-data','/api/admin/model/load/queryUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:55'),(2283,'API_e4a11a7c3bf95fbfe1a8d22a16f328e0','载荷载荷设备型号详情查询','','cmii-admin-data','/api/admin/model/load/queryUavLoadModelDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:53'),(2284,'API_59d2893cc2ab37fba1b6cbde2d2f1bdc','新增载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/addUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:55'),(2285,'API_cb684243191e595a7401409f0db91594','修改载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/updateUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:58'),(2286,'API_254694c31ab18704e4f225c7aeebab06','删除载荷载荷设备型号','','cmii-admin-data','/api/admin/model/load/deleteUavLoadModel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:09',1,'2024-11-06 12:16:48'),(2287,'API_90706ff810c24e4966aed2e0b8863be6','通过告警对象列表批量处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:11',1,'2022-03-11 06:17:19'),(2288,'API_f0c1ce7c546a0e0d48037eb8081c0ed5','upload','','cmii-uav-alarm','/api/uav/common/event/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-22 12:07:18'),(2289,'API_389ebdff8f8c553a5306d9c71122b7f2','excel导入指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/importExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-22 12:07:19'),(2290,'API_b9cd4732193d41fb9b1aebc8db6eda5b','excel导入所以sheet','','cmii-uav-alarm','/api/uav/common/event/importAllExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-22 12:07:16'),(2291,'API_13ff192cb0e53b481a648a39708a6adc','导出到指定某个sheet','','cmii-uav-alarm','/api/uav/common/event/exportExcel','POST',_binary '\0',_binary '\0','2022-03-11 03:07:12',1,'2024-10-22 12:07:18'),(2292,'API_cb979d42027053024033ae28a8638c56','获取当前无人机的视频分享链接, 视频绑定无人机id,作业id随便传','','cmii-uav-mission','/report_and_video/get_video_share_by_missionId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:13',1,'2024-11-12 01:20:38'),(2293,'API_e2a3793d897e737f54aa47072a37b8c4','获取AI视频流地址','','cmii-uav-mission','/api/uav/mission/surveillance/AIPullAddr/{id}/{type}','GET',_binary '\0',_binary '\0','2022-03-11 03:07:14',1,'2024-11-12 01:20:34'),(2294,'API_17478984fcf4d4d10c1c9d5a1cc75aff','app开始一个手动作业,成功返回id,如果有作业就返回失败','','cmii-uav-mission','/api/uav/mission/surveillance/app_start_manual_mission','POST',_binary '\0',_binary '\0','2022-03-11 03:07:14',1,'2024-11-12 01:20:37'),(2295,'API_c39167f384d063de3f450f129cb9c6a3','app 查询当前无人机是否有作业,返回name,id,权限','','cmii-uav-mission','/api/uav/mission/surveillance/app_query_mission_right','POST',_binary '\0',_binary '\0','2022-03-11 03:07:14',1,'2024-11-12 01:20:36'),(2296,'API_479eeb9a62555408fabb7175098bff54','获取游客的无人机设备列表','','cmii-uav-mission','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2297,'API_096cba61a53f04304f70e4923a313a83','按无人机编码查询无人机是否是真机','','cmii-uav-mission','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2298,'API_65dffa654e1e06c5ee771863ea741e61','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-mission','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2299,'API_5440f0781b4d4c66ee15bf501e67a610','载荷绑定的无人机编码查询','','cmii-uav-mission','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:28'),(2300,'API_63a78590a139271297f570c3fc2a2bde','设置无人机上线','','cmii-uav-mission','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-07-18 04:08:27'),(2301,'API_b7db75f5a7d2b9a7e9b7a3b29d89d73f','findTrackByMissionId','','cmii-uav-mission','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2302,'API_15d321485962ec306fe9b77604387eb0','uploadDefaultFlight','','cmii-uav-mission','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2303,'API_5372a12b37e647554f7b0b316ea7a99d','uploadDefaultFlight','','cmii-uav-mission','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2304,'API_df7ec5e35364c805517767d2e55df04b','findTrackByOrderId','','cmii-uav-mission','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2305,'API_8bc6ceb99efb15818ca6b2f805155893','uploadFlight','','cmii-uav-mission','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2306,'API_05d3780de84687ce4d6a14b7d40430e3','uploadFlight','','cmii-uav-mission','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:16',1,'2023-06-14 09:59:35'),(2307,'API_a26dc33bf051b14a454f49fa7f3fedaf','给飞行监视提供航线飞行的航线信息','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/waypoints','GET',_binary '\0',_binary '\0','2022-03-11 03:07:20',1,'2024-11-12 03:52:40'),(2308,'API_4cfa4078c9c18dd0eea1765a09d3bb86','分页条件筛选医疗物流航线列表','','cmii-uav-waypoint','/api/uav/waypoint/airline/airline_info_page_list_for_medical_logistics','POST',_binary '\0',_binary '\0','2022-03-11 03:07:20',1,'2024-11-12 03:52:41'),(2309,'API_b3721af25862a6334ea1b04efeeba2cc','载荷绑定的无人机编码查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:21',1,'2023-05-04 09:35:55'),(2310,'API_f07a18d2a347d57f5696da21f489ca14','无人机绑定的摄像头推流信息','','cmii-uav-waypoint','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:21',1,'2023-05-04 09:35:56'),(2311,'API_6ce8d8310c0fb15639ef97c2d05b9120','设置无人机上线','','cmii-uav-waypoint','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:56'),(2312,'API_73f12d9f351b1a400b1ca13c090db5da','获取游客的无人机设备列表','','cmii-uav-waypoint','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:56'),(2313,'API_076e36966a05e6c02065fed1a6e9bb67','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-waypoint','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:55'),(2314,'API_89fcb7e696e423ff278ede491de2c295','按无人机编码查询无人机是否是真机','','cmii-uav-waypoint','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:22',1,'2023-05-04 09:35:56'),(2315,'API_67e1fcd3754a9a7fe40da4e3ad678bab','载荷绑定的无人机编码查询','','cmii-uav-industrial-portfolio','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:26',1,'2022-11-02 09:13:11'),(2316,'API_c71018b7f387827e955fc38fb8505574','按无人机编码查询无人机是否是真机','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:26',1,'2022-11-02 09:13:11'),(2317,'API_1d956273d8b1058569766a81c37db142','uploadDefaultFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2318,'API_4282e298101f8ee7112dbb49501a48e4','uploadDefaultFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2319,'API_f320c8f821ed02551e3d1a01c2fe2680','uploadFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2320,'API_0921bd6813729306003e0952310143ad','uploadFlight','','cmii-uav-industrial-portfolio','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2321,'API_4dabab2f7919b6d5fbd24d5e2e407a69','findTrackByOrderId','','cmii-uav-industrial-portfolio','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2322,'API_cb233bb093cea7b2dcc3a2c86cdf7514','findTrackByMissionId','','cmii-uav-industrial-portfolio','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2022-03-11 03:07:27',1,'2022-11-02 09:13:12'),(2323,'API_b0e6af44f389fbb5d5bc6f0b10c54646','是否存储配额告警','','cmii-uav-user','/personal/quota/hasWarn','POST',_binary '\0',_binary '\0','2022-03-11 03:07:29',1,'2024-11-06 12:16:43'),(2324,'API_68c3e0f14d1c550c78f80c6ca1db9f56','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryUav','POST',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2024-11-07 09:01:49'),(2325,'API_6702c13bc2c962e6a1d294f5b4dd96a1','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2022-09-29 06:35:44'),(2326,'API_6407aa74d4efa63e3035e136c6b46103','获取游客的无人机设备列表','','cmii-uav-device','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2024-11-07 09:01:56'),(2327,'API_1b82fd20fc26e41f5631420a8d472dbd','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:31',1,'2024-11-07 09:01:45'),(2328,'API_37ed874b03a209ba9a2e3ba730f524bd','查询无人机总飞行时长','','cmii-uav-device','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-11-07 09:01:46'),(2329,'API_621b76dbfc0820c65c659ac94b91d6bb','设置无人机上线','','cmii-uav-device','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-11-07 09:01:48'),(2330,'API_ab3e284739e564c16d2c808d62484669','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/plane/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-11-07 09:01:44'),(2331,'API_ec24af9abdf24b7570567ee12819e635','无人机绑定的摄像头推流信息','','cmii-uav-device','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-11-07 09:01:45'),(2332,'API_0bbb96c440960337f67ff1c7797a7117','载荷绑定的无人机编码查询','','cmii-uav-device','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-11-07 09:01:53'),(2333,'API_b45434946f5350bd8184415958a3fedc','更新无人机绑定载荷类型','','cmii-uav-device','/api/uav/plane/updateLoadTypeByUavCode','POST',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-11-07 09:01:53'),(2334,'API_fa3a657597b9619499202054581160aa','模糊查询包括子公司的设备号列表','','cmii-uav-device','/api/uav/load/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:32',1,'2024-11-07 09:01:58'),(2335,'API_5c3eb73c8182fd8e34cc894951232f6b','基础版根据code获取用户Token','基础版根据code获取用户Token','cmii-uav-device','/api/uav/permission/user/getUavFreeTokenByCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:33',1,'2024-11-07 09:01:57'),(2336,'API_dd49c05d52607d775525836a8b3b15bf','模糊查詢游客列表','','cmii-uav-device','/api/uav/devAllocate/queryVisitorList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:33',1,'2024-11-07 09:01:56'),(2337,'API_d03e108b238192592ee649a23a974313','模糊查询公司所属的设备号列表','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:33',1,'2024-11-07 09:01:50'),(2338,'API_420aecbfd5220c92db2fd13843c80829','幻飞APP上传环保数据接口','','cmii-uav-mqtthandler','/equipment/productRealtimeData.do','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2339,'API_4d62f8d0001693fe493aeb22ea9248c8','天途喷水控制','','cmii-uav-mqtthandler','/payload/spray/sprayCommand','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:31'),(2340,'API_88490bd67fafd4dab1bddae53e0d7331','云台显示模式修改','','cmii-uav-mqtthandler','/payload/camera/display_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:29'),(2341,'API_2b7b21a5be43e1435e0f3629dd2e8e95','喊话器音量设置','','cmii-uav-mqtthandler','/payload/megaphone/configure_volume','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:29'),(2342,'API_347c9cf1b6e515cb3b1290fdc368cd03','megaphoneStartPlay','','cmii-uav-mqtthandler','/payload/megaphone/play','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:29'),(2343,'API_915449453b6496c0646bdaf33b1ad65c','megaphoneStopPlay','','cmii-uav-mqtthandler','/payload/megaphone/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2344,'API_8654fb265de0a4b254178a0cb3516ea7','镜头缩放','','cmii-uav-mqtthandler','/payload/camera/zoom','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:26'),(2345,'API_9f2457ee74bcca98d2341ebd198d6eef','摄像机拍照','','cmii-uav-mqtthandler','/payload/camera/take_picture','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:27'),(2346,'API_79cc246d1fcd8bdd1742f7140f986b9a','摄像机开始录像','','cmii-uav-mqtthandler','/payload/camera/start_record','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:27'),(2347,'API_aa36cfdcc6c4f74665fab5048cbed672','摄像机停止录像','','cmii-uav-mqtthandler','/payload/camera/stop_record','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:30'),(2348,'API_28b52eb8efc81c5a482e620001355593','摄像头自动对焦','','cmii-uav-mqtthandler','/payload/camera/auto_focus','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2349,'API_fd16944c0fe9840c7c14b9074b6b6263','相机模式切换','','cmii-uav-mqtthandler','/payload/camera/mode_change','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:29'),(2350,'API_ecef3b82e863478cee4afa2d1b27f67f','云台控制','','cmii-uav-mqtthandler','/payload/gimbal/control','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2351,'API_f0031f483de68deef62d060e2e07c699','航线飞行','','cmii-uav-mqtthandler','/uav_fly_command/waypoint','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2022-09-28 01:55:53'),(2352,'API_488015e1d886ac727bc65c833f9e7993','航线飞行 新','','cmii-uav-mqtthandler','/uav_fly_command/waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2353,'API_59738eceaa33e13fce603df22aa70204','暂停','','cmii-uav-mqtthandler','/uav_fly_command/pause','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:27'),(2354,'API_d43b7c9a5fe3ae76764aea0dcbad5519','继续','','cmii-uav-mqtthandler','/uav_fly_command/continue','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:29'),(2355,'API_b93e72bc4344e710eb9c53b512420f91','停止','','cmii-uav-mqtthandler','/uav_fly_command/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2356,'API_ad370db9b1858133e32f80282d1472be','返航任务指令','','cmii-uav-mqtthandler','/uav_fly_command/go_home','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2357,'API_774ed5cca4d40ca7a00a1eaac13da589','降落','','cmii-uav-mqtthandler','/uav_fly_command/landing','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:28'),(2358,'API_1167753c003e57c31440f53e16173b82','强制降落','','cmii-uav-mqtthandler','/uav_fly_command/force_landing','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:29'),(2359,'API_d0c38507826c0374dbb3091b293622bf','升起','','cmii-uav-mqtthandler','/uav_fly_command/fly_up','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:27'),(2360,'API_299fef7e7300274c232f6aa286a4948b','获取摇杆控制权','','cmii-uav-mqtthandler','/uav_fly_command/get_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:29'),(2361,'API_46aba38a456ff4b843ffe9d2899151dd','释放摇杆控制权','','cmii-uav-mqtthandler','/uav_fly_command/release_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2024-11-07 08:51:31'),(2362,'API_81f1e31a0ddbc9da3e3923592105b050','无人机下线测试接口','','cmii-uav-mqtthandler','/uav_fly_command/offline_test','POST',_binary '\0',_binary '\0','2022-03-11 03:07:39',1,'2023-05-04 09:36:20'),(2363,'API_1fe9e22534340f4d928a45534c4f7a9f','获取游客的无人机设备列表','','cmii-uav-mqtthandler','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:22'),(2364,'API_c23209273529b0356186c7d07fe3ebf2','按无人机编码查询无人机是否是真机','','cmii-uav-mqtthandler','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:22'),(2365,'API_f5b7a4bc3c24fe26becd4921e7bd912e','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-mqtthandler','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:21'),(2366,'API_f21ac242e5d0aeb7e3af7e7a54f5b358','载荷绑定的无人机编码查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:21'),(2367,'API_98f71336da749dc8e70bb9b7c10616d2','设置无人机上线','','cmii-uav-mqtthandler','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:40',1,'2023-05-04 09:36:21'),(2368,'API_9c9198875a79eb8daaba15d187c48cce','设置无人机上线','','cmii-uav-airspace','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:26'),(2369,'API_166871d623e61f7fa730a7adf32f4f34','获取游客的无人机设备列表','','cmii-uav-airspace','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:26'),(2370,'API_d4a175c60b633ba7da0f1762ea21fb64','按无人机编码查询无人机是否是真机','','cmii-uav-airspace','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:26'),(2371,'API_a9ecc956a441a42f58f980eced2ce0cb','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-airspace','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:25'),(2372,'API_c653269f53bed060cf984d392356e346','载荷绑定的无人机编码查询','','cmii-uav-airspace','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:07:42',1,'2023-03-29 08:30:25'),(2373,'API_7f5facf301bf71d881b9d13d01c6fb73','查询项目来源','查询项目来源','cmii-uav-material-warehouse','/api/v1/warehouse/scr/origins','GET',_binary '\0',_binary '\0','2022-03-11 03:07:47',1,'2024-11-11 11:46:07'),(2374,'API_8b0a7770a3111ca7b2cf376724926750','增加项目来源','增加项目来源','cmii-uav-material-warehouse','/api/v1/warehouse/scr/add','GET',_binary '\0',_binary '\0','2022-03-11 03:07:47',1,'2024-11-11 11:46:08'),(2375,'API_298c508c26f9c1841f35450714de7311','删除项目来源','删除项目来源','cmii-uav-material-warehouse','/api/v1/warehouse/scr/delete','GET',_binary '\0',_binary '\0','2022-03-11 03:07:47',1,'2024-11-11 11:46:08'),(2376,'API_87d052311f2c9f92431398586e392932','任务监控视图查询任务详情列表','','cmii-uav-material-warehouse','/api/v1/warehouse/progress/listItemProgress','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2377,'API_496d6dc53c2a4c67492303d59b3061a1','任务监控模糊查询文件标题与所有人','','cmii-uav-material-warehouse','/api/v1/warehouse/progress/getfiletitle','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:09'),(2378,'API_628b441ac664847d0ad011d092691c99','文件上传进度获取','','cmii-uav-material-warehouse','/api/v1/warehouse/progress/getItemProgress','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:08'),(2379,'API_88f7ce90b3e7e356a9842fae5e544f70','模糊搜索标签名','','cmii-uav-material-warehouse','/api/v1/warehouse/label/listLabelName','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2380,'API_555043e21c329ccf362d556442907977','创建项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/label/add','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:06'),(2381,'API_ad55341e05fcfc2d2e333f767aed9d94','编辑项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/label/edit','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2382,'API_a2706c34b8193f27f2a46106ab8e1afb','删除项目标签','','cmii-uav-material-warehouse','/api/v1/warehouse/label/delete','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:08'),(2383,'API_6632b356010631c5ad9b9bf5ac06b7f0','用户搜索标签展示','默认没有搜索不会展示标签','cmii-uav-material-warehouse','/api/v1/warehouse/label/showLabels','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:08'),(2384,'API_37b523e2780e2022dd7ac6e77dc48ebf','文件上传额度校验【内部接口】','上传文件,返回文件ID','cmii-uav-material-warehouse','/api/v1/warehouse/internal/uploadFileCheck','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2385,'API_fd59951281f9f2771e48ce1e3fde3507','getUsedQuotaNumByType','','cmii-uav-material-warehouse','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2386,'API_dc10cca3492678971903d1164788f9f1','多个文件下载','根据projectId和文件ID集合下载项目文件,杆塔业务使用','cmii-uav-material-warehouse','/api/v1/warehouse/item/files/download','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:10'),(2387,'API_59cbaf983169df78bca6424f07fc3c29','获取项目文件信息列表','获取项目文件信息列表','cmii-uav-material-warehouse','/api/v1/warehouse/item/queryFiles','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:10'),(2388,'API_d760f2c2175ccfebcd385a416a9a78bc','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-material-warehouse','/api/v1/warehouse/item/public/file/download','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:09'),(2389,'API_07119308ac64386fa36c2d8134b99a5b','图集下载','根据projectId下载项目所有图片文件','cmii-uav-material-warehouse','/api/v1/warehouse/item/public/pictureFiles/download','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:06'),(2390,'API_5675c8379d092ea939ef6172df46c737','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-material-warehouse','/api/v1/warehouse/item/public/filesAll/download','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:09'),(2391,'API_c959d63acff7d7b69116e9dd884eb792','获取项目图片统计信息','根据projectId统计项目图片信息','cmii-uav-material-warehouse','/api/v1/warehouse/item/pictureSize','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2392,'API_d11a24c3a081d9b8fe5bed80bd912618','用户详情','根据userId获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/user/userDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:08'),(2393,'API_3e717845c131424cb0d48539d4638361','根据token获取用户详细信息','根据Token获取用户详情信息','cmii-uav-material-warehouse','/api/v1/warehouse/user/getMyDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2394,'API_c0cbbfc7c26ea34aac1a063366c47d2e','根据code获取用户Token','根据code获取用户Token','cmii-uav-material-warehouse','/api/v1/warehouse/user/getToken','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:06'),(2395,'API_4c687d4873f7c33b4adf62e460367900','获取项目基本信息','根据projectId查询项目基本信息','cmii-uav-material-warehouse','/api/v1/warehouse/project/getProjectDetail','GET',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2396,'API_91c77ad9a9f7a39e0e2ed501b53514a1','查询所有项目','查询所有未删除项目','cmii-uav-material-warehouse','/api/v1/warehouse/project/listProject','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:09'),(2397,'API_753522fef5e4921205850547b342ad53','创建项目标签,待考虑删除','','cmii-uav-material-warehouse','/api/v1/warehouse/projLabel/add','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:08'),(2398,'API_cb0bcf15bb03fa03495a3b4991f44454','删除项目标签,待考虑删除','','cmii-uav-material-warehouse','/api/v1/warehouse/projLabel/delete','DELETE',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-11 11:46:07'),(2399,'API_4e26137db92324caad958954feb17d65','停止流程','停止流程','cmii-uav-cloud-live','/workflow/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-14 02:02:35'),(2400,'API_9cc4b7cdd1f1653b79b73c7b31080c26','保持流程心跳','保持流程心跳','cmii-uav-cloud-live','/workflow/keepAlive','POST',_binary '\0',_binary '\0','2022-03-11 03:07:48',1,'2024-11-14 02:02:38'),(2401,'API_6416958a39d25fee2b1f75951e86a9ea','完结超时流程','完结超时流程','cmii-uav-cloud-live','/workflow/cleanExpireFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:44'),(2402,'API_72ee70869742bb1f700fa9e59f61a48e','查询插件输入输出流信息','查询插件输入输出流信息','cmii-uav-cloud-live','/workflow/queryStreamInfo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:43'),(2403,'API_6afe7df38923488b2b390d9093cfd30b','更新流程','更新流程','cmii-uav-cloud-live','/workflow/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:41'),(2404,'API_26133f68affa7c39f380555c6de8fcb2','通过启动参数停止流程','通过多参数停止流程','cmii-uav-cloud-live','/workflow/stopFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:42'),(2405,'API_17d4e0fbfc4d4f45eed4a9644711e08c','释放作业关联视频分片','释放作业关联视频分片','cmii-uav-cloud-live','/client/live/stream/releaseVideo','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:38'),(2406,'API_3e601d5862ffe674019e072d71533b17','执行删除视频任务','执行删除视频任务','cmii-uav-cloud-live','/client/live/stream/executeDeleteVideoTask','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:36'),(2407,'API_38b45d1b9390779f52cef09b5c3ad313','更新算子任务','更新算子任务','cmii-uav-cloud-live','/task/update','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:36'),(2408,'API_8edd6ae82ca26b01230a32aecfa1b6c4','服务实例注册(必选)','服务实例注册','cmii-uav-cloud-live','/config/service/registerInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:43'),(2409,'API_83a60e43cda23ce35d88b317a92b27ab','服务实例注销(可选,3分钟无新注册心跳自动注销)','服务实例注销','cmii-uav-cloud-live','/config/service/deregisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:42'),(2410,'API_e028a848bd2749a1fe46565255ffa9b1','查看注册服务实例信息','查看注册服务实例信息','cmii-uav-cloud-live','/config/service/getRegisterInstance','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:40'),(2411,'API_b94a39e945b2d15a5a94ff0e4b2ba5d1','是否还有存储配额(true.有, false. 无','','cmii-uav-cloud-live','/personal/quota/canSave','GET',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:43'),(2412,'API_962e612d2f3b78893a9d1f02f674eb3c','添加流程','添加流程','cmii-uav-cloud-live','/workflow/config/addFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:42'),(2413,'API_3648534a1cf81e18d7b142149b7841fc','更新流程','更新流程','cmii-uav-cloud-live','/workflow/config/updateFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:49',1,'2024-11-14 02:02:36'),(2414,'API_85c7a757a263542774515c3b3fe4602e','锁定流程','锁定流程','cmii-uav-cloud-live','/workflow/config/lockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2024-11-14 02:02:42'),(2415,'API_14d45933e60b70fad979158b8876d1ec','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unLockFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2022-08-29 01:35:34'),(2416,'API_d0177bec91de61c3940949dcefe74080','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/reMoveFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2022-08-29 01:35:34'),(2417,'API_16c3eec5c21c4d0e3c48b60063a032d4','查询流程定义列表','查询流程定义列表','cmii-uav-cloud-live','/workflow/config/queryFlowList','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2024-11-14 02:02:42'),(2418,'API_3691fbe7f7e8d3094727c3fc74a1575c','重新加载流程','重新加载流程','cmii-uav-cloud-live','/workflow/config/reloadFlow','POST',_binary '\0',_binary '\0','2022-03-11 03:07:50',1,'2024-11-14 02:02:41'),(2419,'API_bcee08871e4d09ecb0fd642af3a647d5','起飞','请使用 uav_command/fly_up','cmii-uav-surveillance','/surveillance_app/flyUp','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2022-10-12 06:22:43'),(2420,'API_4547709301e22dd16653cb2bfef1c5c2','强制降落','请使用 uav_command/force_landing','cmii-uav-surveillance','/surveillance_app/forceLand','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2022-10-12 06:22:43'),(2421,'API_b64aa6433dad43f55512ec62318bcc9a','获取无人机关联的载荷的视频流地址','','cmii-uav-surveillance','/surveillance_app/get_uav_video_url_list','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2024-11-12 03:56:05'),(2422,'API_bb49852bac818143e984e03074313d0a','获取/释放无人机虚拟摇杆控制权限','请使用get_stick_control / release_stick_control','cmii-uav-surveillance','/surveillance_app/change_virtual_stick_control_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:43:11',1,'2022-10-12 06:22:43'),(2423,'API_dafc10724ced42773ef8f403918a06bf','给app提供的数据内容','','cmii-uav-surveillance','/dictionary/trackDataView_Content','GET',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2022-05-06 02:52:14'),(2424,'API_ae18da670d1151815421e1ac56efa78c','给app提供的无人机历史轨迹数据内容','','cmii-uav-surveillance','/dictionary/track_Content','GET',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2022-05-06 02:52:14'),(2425,'API_885382ca5844667a532e2b5cb862f988','增加大气监测测试数据','','cmii-uav-surveillance','/surveillance/addEnvTestData','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:07'),(2426,'API_443c68ba214da9a849afbbd37a3cc40a','开启模拟机','','cmii-uav-surveillance','/surveillance/simulator/start','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:10'),(2427,'API_61966521dbfa0f94b520dfdf7d212c34','关闭模拟机','','cmii-uav-surveillance','/surveillance/simulator/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:04'),(2428,'API_af1ac00056c0ec5f6976a27e853ffcb2','获取模拟机的最新位置信息','','cmii-uav-surveillance','/surveillance/simulator/get_location','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:05'),(2429,'API_49e2085580e8c537ac1f3378e04687f2','无人机航线飞行,提供航线id','','cmii-uav-surveillance','/surveillance/uav_command/waypoint_fly_with_lineId','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:12'),(2430,'API_899c337fe6cebd61e87ee0b09528e02b','无人机航线飞行,直接使用航线数据,复亚机库不适用','','cmii-uav-surveillance','/surveillance/uav_command/waypoint_fly_with_Waypoints','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:04'),(2431,'API_53effa942c695976d7390a99b60e9be7','暂停','','cmii-uav-surveillance','/surveillance/uav_command/pause','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:11'),(2432,'API_4408b380c741de9ca146386344a6c49e','继续','','cmii-uav-surveillance','/surveillance/uav_command/continue','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:06'),(2433,'API_b8b20ebeb691ddceac7ab31f4791858e','停止','','cmii-uav-surveillance','/surveillance/uav_command/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:07'),(2434,'API_c7cf8eebf5453170f50b2ba30c29b871','降落','','cmii-uav-surveillance','/surveillance/uav_command/landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:07'),(2435,'API_9f0a3baa028c4c7d825cd1194f43b3cd','强制降落','','cmii-uav-surveillance','/surveillance/uav_command/force_landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:05'),(2436,'API_fe9abb217850cd35ba518f3f5d35ab3e','升起','','cmii-uav-surveillance','/surveillance/uav_command/fly_up','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:11'),(2437,'API_07150800502f2405a3eaa9f9d9785424','返航','','cmii-uav-surveillance','/surveillance/uav_command/go_home','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:08'),(2438,'API_c4962efa1df1597386caa85abc472fd3','获取虚拟摇杆权限','','cmii-uav-surveillance','/surveillance/uav_command/get_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:12',1,'2024-11-12 03:56:07'),(2439,'API_90a5ec69c16b8d24b6c2cd6caf0028fa','释放摇杆控制权','','cmii-uav-surveillance','/surveillance/uav_command/release_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:08'),(2440,'API_472f3d8cb1d24475b4c53ae791c7ef06','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-surveillance','/surveillance/basic/queryUavPoints','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:05'),(2441,'API_d507c916799dd8793764ccc1a23577e0','基础版 起飞','','cmii-uav-surveillance','/surveillance/basic/take_off','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:05'),(2442,'API_f0742ab3bd6fdfca73d28f8e4c385d3a','基础版 查找设备','','cmii-uav-surveillance','/surveillance/basic/queryDeviceBasic','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:11'),(2443,'API_a9ae3c17a944493037ea65c73fd9b0f5','noticeUavOffline','','cmii-uav-surveillance','/surveillance/basic/notice_uav_offline','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-03-28 02:10:37'),(2444,'API_d298e45865b3bb57fe67f4bf07683ad4','查询uav 当前关联的航线,没有就返回空','','cmii-uav-surveillance','/surveillance/basic/get_uav_line','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:09'),(2445,'API_71d75d11474ddf745eb72b57693c1793','停止航行','','cmii-uav-surveillance','/surveillance/basic/stop_waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:08'),(2446,'API_a73e01e368501ae66a62f8fd8f8ce995','开始航行','','cmii-uav-surveillance','/surveillance/basic/start_waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:11'),(2447,'API_2bebccdddfadd12ae65863afd4d6d09b','云台显示模式修改','','cmii-uav-surveillance','/surveillance/payload/camera/display_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:09'),(2448,'API_5c26311ad924a8a72a0f7d8112df4fa7','喊话器音量设置','','cmii-uav-surveillance','/surveillance/payload/megaphone/configure_volume','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:09'),(2449,'API_d859d875f17b4ed41e735b682b913f6f','喊话器播放录音文件','','cmii-uav-surveillance','/surveillance/payload/megaphone/play_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:08'),(2450,'API_4479eaf72c2305914a2e399d90bbb89b','喊话器播放实时文件','','cmii-uav-surveillance','/surveillance/payload/megaphone/play_realtime','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:08'),(2451,'API_194239803c72c9a5ea14cf9923e780e2','喊话器播放文字内容','','cmii-uav-surveillance','/surveillance/payload/megaphone/play_text','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:11'),(2452,'API_0e1b9d2a627667b80b12df5271e76aab','喊话器停止喊话','','cmii-uav-surveillance','/surveillance/payload/megaphone/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:08'),(2453,'API_bf245daffc5834ffea64e7f74c430923','摄像机拍照','','cmii-uav-surveillance','/surveillance/payload/camera/take_picture','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:07'),(2454,'API_4d91532fc3e323d94881fe06a3c07c92','摄像机开始录像','','cmii-uav-surveillance','/surveillance/payload/camera/start_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:08'),(2455,'API_f0d945da3b7ef5e706526090bd4bd457','摄像机停止录像','','cmii-uav-surveillance','/surveillance/payload/camera/stop_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:10'),(2456,'API_908c220ff648b20e611ead6e94513623','天途喷水控制','','cmii-uav-surveillance','/surveillance/payload/spray/sprayCommand','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:09'),(2457,'API_ab91c9b512a4881d6219043a2fd976e9','相机 拍照 摄像 模式切换','','cmii-uav-surveillance','/surveillance/payload/camera/mode_change','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:04'),(2458,'API_0dde8d5f15f40684d35e2b65de802a54','云台控制','','cmii-uav-surveillance','/surveillance/payload/gimbal/control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:07'),(2459,'API_222be6616e034c6d0466dec1758eebfc','摄像头自动对焦','','cmii-uav-surveillance','/surveillance/payload/camera/auto_focus','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:08'),(2460,'API_e2c19cc40f8e8de1821e53866dba58ef','镜头缩放','','cmii-uav-surveillance','/surveillance/payload/camera/zoom','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2024-11-12 03:56:11'),(2461,'API_2665eb91efb67028d52a34a96710fb14','uploadFlight','','cmii-uav-surveillance','/oapi/uav/flight/upload','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2462,'API_31be97347352cdb80a3ac136c6188a1e','uploadFlight','','cmii-uav-surveillance','/oapi/uav/flight/batchUpload','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2463,'API_ffe05783d4dd37a157b8708688ab481a','uploadDefaultFlight','','cmii-uav-surveillance','/oapi/uav/flight/batchUploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2464,'API_570ab7e721bbc58022b58ac3f2151980','uploadDefaultFlight','','cmii-uav-surveillance','/oapi/uav/flight/uploadDefault','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2465,'API_a3d27cd841e3007e453c875579e96a56','findTrackByOrderId','','cmii-uav-surveillance','/oapi/uav/flight/trackOrder','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2466,'API_28a6e0562c58c1b27589f1381dfd379f','findTrackByMissionId','','cmii-uav-surveillance','/oapi/uav/flight/trackMission','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:23'),(2467,'API_614fcaaabfecd69546b563a394688800','返航','','cmii-uav-surveillance','/api/uav/VirtualStick/return_home','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2468,'API_8485471c57ae24775874be6625ecc9c0','sendPause','','cmii-uav-surveillance','/uav_fly_command/pause','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2469,'API_fc5e29e329b49af508f5ab5a3d6815da','sendContinue','','cmii-uav-surveillance','/uav_fly_command/continue','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2470,'API_35b2cc9115dce36bcc9cb73df7f1e317','getStickControl','','cmii-uav-surveillance','/uav_fly_command/get_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2471,'API_8274bee20034a8dd6f77462e06cfb830','releaseStickControl','','cmii-uav-surveillance','/uav_fly_command/release_stick_control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2472,'API_e5d8b0af8267becb8482410fb17ca378','sendStop','','cmii-uav-surveillance','/uav_fly_command/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2473,'API_606e42663a7bcf7891550b7d0a95c9dc','sendLanding','','cmii-uav-surveillance','/uav_fly_command/landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2474,'API_ad13dd56b3c80fc7643dd2907299922e','sendForceLanding','','cmii-uav-surveillance','/uav_fly_command/force_landing','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2475,'API_ea62e59621a2ee0c069fb419cab9414f','sendFlyUp','','cmii-uav-surveillance','/uav_fly_command/fly_up','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2476,'API_01c97f88970dc6b83bca47a95ce6b924','sendGoHome','','cmii-uav-surveillance','/uav_fly_command/go_home','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2477,'API_8c866fe63853e81e0a6203d400e802ae','waypointFly','','cmii-uav-surveillance','/uav_fly_command/waypoint_fly','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2478,'API_ad1540f3b2a53aa5b593d0e1b8232a91','给飞行监视提供航线飞行的航线信息','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/waypoints','GET',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-03-29 09:05:04'),(2479,'API_62109ac3c5daf091b58c48bd57dc91bf','configureDisplayMode','','cmii-uav-surveillance','/payload/camera/display_mode','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2480,'API_93a4abb94fb3115d2b577f3c01e99ac0','configureMegaphoneVolume','','cmii-uav-surveillance','/payload/megaphone/configure_volume','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2481,'API_5ccae1a58718aa90e5284dcf34e769d3','megaphoneStopPlay','','cmii-uav-surveillance','/payload/megaphone/stop','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2482,'API_7c30414d58758876ed8aa8bccdb91a16','megaphoneStartPlay','','cmii-uav-surveillance','/payload/megaphone/play','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2483,'API_b712211caf2762ac60bf1b1fff82ce54','cameraTakePicture','','cmii-uav-surveillance','/payload/camera/take_picture','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2484,'API_da546cee004e96f950734d0ac9c21cab','cameraStartRecord','','cmii-uav-surveillance','/payload/camera/start_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2485,'API_bec475b02b5728a57c493a16b85b8a64','cameraStopRecord','','cmii-uav-surveillance','/payload/camera/stop_record','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2486,'API_083c080b101f3711488db3b1359f15b4','sprayCommand','','cmii-uav-surveillance','/payload/spray/sprayCommand','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2487,'API_0fb5ad73a3e3f3cc0b14afbcf2e048aa','cameraModeChange','','cmii-uav-surveillance','/payload/camera/mode_change','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2488,'API_81514e96ef03d919a84033202589e9d1','gimbalControl','','cmii-uav-surveillance','/payload/gimbal/control','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2489,'API_b408699b51b43b341d8673fa15f0fab2','cameraAutoFocus','','cmii-uav-surveillance','/payload/camera/auto_focus','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2490,'API_93f3a9f4b3c16468f746e9d3f599bcff','cameraZoom','','cmii-uav-surveillance','/payload/camera/zoom','POST',_binary '\0',_binary '\0','2022-03-11 03:43:13',1,'2023-01-18 04:50:24'),(2491,'API_81c4b023130f2ba573eca31920a23393','获取游客的无人机设备列表','','cmii-uav-surveillance','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2492,'API_c9e15b34c1162daf6277074edfb9c6b6','按无人机编码查询无人机是否是真机','','cmii-uav-surveillance','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2493,'API_f08b73c0fdd7b59599494a964e82612a','按无人机编码查询无人机详情查询不用公司id','','cmii-uav-surveillance','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2494,'API_1e6ab833e962c2ff64fbf6e000a3310c','载荷绑定的无人机编码查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-03-11 03:43:14',1,'2023-03-29 09:05:05'),(2495,'API_a3e9bbaa35d07d89747c7744316f9971','查询包括子公司的真实无人机和模拟机列表','','cmii-uav-device','/api/uav/plane/queryUavRealByCompanyId','GET',_binary '\0',_binary '\0','2022-03-14 01:44:53',1,'2024-11-07 09:01:51'),(2496,'API_cd517d91bed3c4b36218eab52cc53e7c','按无人机编码查询无人机是否是真机','','cmii-uav-device','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-03-14 01:44:54',1,'2024-11-07 09:01:56'),(2497,'API_c452e0b6b1d8aa5d63610aad4f58bb4f','通过告警对象列表删除已经处理的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/deleteAlarmbyUavList','POST',_binary '\0',_binary '\0','2022-03-15 01:20:48',1,'2024-10-22 12:07:17'),(2498,'API_ad14b1d5e25ee25eba013275cdaf7a04','查询不包含指定id的所有航线','','cmii-uav-waypoint','/api/uav/waypoint/evnProtection/airline_all_list/except_ids','POST',_binary '\0',_binary '\0','2022-03-15 05:42:40',1,'2024-11-12 03:52:39'),(2499,'API_9a2f52f178db9c7adbfdc8feb6785dd4','获取最近十分钟的环保监测数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/monitor/env_history_data/{uasId}','GET',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-11-13 12:23:35'),(2500,'API_bec84324dc59a33995c9203bbf3565df','查询在线设备资产数量','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/device/device_num','GET',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2022-04-25 02:51:27'),(2501,'API_49dd2fc850d5a8c796e49cceea21dc30','查询待添加航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/list_to_add','POST',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-11-13 12:23:29'),(2502,'API_12ee5dd7ce3c81ac003c5a170a240997','查询已添加的航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/list_added','GET',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-11-13 12:23:29'),(2503,'API_28ee1893d7ef56712c6c7b0560779d3f','删除航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/{id}','DELETE',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-11-13 12:23:29'),(2504,'API_c198b43340bcf3a70ae2c8ce0d981a04','批量添加航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/batch','POST',_binary '\0',_binary '\0','2022-03-15 05:43:10',1,'2024-11-13 12:23:33'),(2505,'API_b76e20107ed5f8bd56f6411514bec89d','查询作业信息列表for环保大屏','','cmii-uav-mission','/api/uav/mission/mission_info_list/list_for_env_protection','GET',_binary '\0',_binary '\0','2022-03-15 07:36:10',1,'2024-11-12 01:20:40'),(2506,'API_6e11dbc21cafdab7a8bff6e039121a0c','nacosRootTest','','cmii-uav-mission','/report_and_video/test','GET',_binary '\0',_binary '\0','2022-03-15 07:36:10',1,'2022-05-07 08:31:53'),(2507,'API_7a8b9f5e2324877ba5cff838fde20bc0','创建智慧环保快速作业','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/fast_mission_for_env_protection','POST',_binary '\0',_binary '\0','2022-03-15 07:36:11',1,'2024-11-12 01:20:37'),(2508,'API_e7623a4f1ced64d30265844f88b9e593','visitorUavCheck','','cmii-uav-surveillance','/surveillance/basic/uas_auth_check','POST',_binary '\0',_binary '\0','2022-03-16 03:14:09',1,'2024-11-12 03:56:09'),(2509,'API_f3ecf4af648d67c9a354e6cb0674a885','校验Token获取模型分享数据','校验Token获取模型分享数据','cmii-uav-data-post-process','/v1/permission/share/queryShareDataByToken','GET',_binary '\0',_binary '\0','2022-03-25 03:44:24',1,'2024-09-09 09:16:28'),(2510,'API_e39052b1b57b2e43593eb02ba1b0da86','获取模型分享token','','cmii-uav-data-post-process','/uav/share/modelShareToken','GET',_binary '\0',_binary '\0','2022-03-25 03:44:24',1,'2024-09-09 09:16:29'),(2511,'API_3cafdc89dfa0baf145cea6ff08dab7d1','test','','cmii-uav-data-post-process','/product/test','GET',_binary '\0',_binary '\0','2022-03-25 03:44:24',1,'2024-09-09 09:16:30'),(2512,'API_74dfcb65435278c2fcd33b8ef83c3969','getDocumentation','','cmii-uav-data-post-process','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:29'),(2513,'API_6b9c5a403a7d181a8f7c65f88a299f29','uiConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:30'),(2514,'API_4ee0726de24e6d9868e19fc9c62b826a','securityConfiguration','','cmii-uav-data-post-process','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:29'),(2515,'API_ae1249fdd6106383b33bcdecff87f998','swaggerResources','','cmii-uav-data-post-process','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:30'),(2516,'API_feca6aa2874b523a9459c2424155dd98','getDocumentation','','cmii-uav-data-post-process','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:44:25',1,'2024-09-09 09:16:28'),(2517,'API_557dfd58eece9c1041ea24e5ec60b2be','getBucket1','','cmii-uav-material-warehouse','/api/v1/warehouse/scr/getBucket1','GET',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-11-11 11:46:08'),(2518,'API_e14ab995f12bae09b6d94263ed78d8db','模型分享文件下载','','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadModelFile/bypass/**','GET',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-11-11 11:46:08'),(2519,'API_ea879d36f382278b4373abb7cb0cb9e6','获取来源域信息','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/listScr','GET',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-11-11 11:46:07'),(2520,'API_767d17d3e8141b754e28d55e38c0e687','获取绕行认证token','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getBypassToken','POST',_binary '\0',_binary '\0','2022-03-25 03:45:03',1,'2024-11-11 11:46:07'),(2521,'API_2e7ae6af196ae27fd208151f2f5c6b0d','getDocumentation','','cmii-uav-material-warehouse','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-11-11 11:46:09'),(2522,'API_541acf73414970602d251465ab00d767','swaggerResources','','cmii-uav-material-warehouse','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-11-11 11:46:08'),(2523,'API_da037cebf7a6ad08b1e22b5bc5feb570','uiConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-11-11 11:46:09'),(2524,'API_803a045c332c6f51d2bbcb5c3e672a73','securityConfiguration','','cmii-uav-material-warehouse','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-11-11 11:46:07'),(2525,'API_9c715588bae1d7427bee6af10f6044ce','getDocumentation','','cmii-uav-material-warehouse','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-25 03:45:04',1,'2024-11-11 11:46:06'),(2526,'API_6119ee0b87e868a20c9e08899357e6d7','getQuotaInfoUseByType','','cmii-uav-user','/client/quota/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2022-04-25 02:50:17'),(2527,'API_284e320c6a841710d98e01292da09c18','getDocumentation','','cmii-uav-user','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2024-11-06 12:16:36'),(2528,'API_728b8c57db4c6c0b705d5530ac9a9511','uiConfiguration','','cmii-uav-user','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2024-11-06 12:16:32'),(2529,'API_05f507cccc8b8e92bd008fc09d4c71ce','swaggerResources','','cmii-uav-user','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:41',1,'2024-11-06 12:16:20'),(2530,'API_6dbae71c90d3b3330ff3cbdcd488fdff','securityConfiguration','','cmii-uav-user','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:42',1,'2024-11-06 12:16:19'),(2531,'API_4557b0cbb4b7d06a2eab089c66cc0c7e','getDocumentation','','cmii-uav-user','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:42',1,'2024-11-06 12:16:41'),(2532,'API_9dba39306b6890d8a5a45653099bbdb3','分页查询不包含指定id的航线','','cmii-uav-waypoint','/api/uav/waypoint/evnProtection/airline_info_list/except_ids','POST',_binary '\0',_binary '\0','2022-03-30 03:18:43',1,'2024-11-12 03:52:41'),(2533,'API_409093c7159def23cec4d0055fd04d04','getDocumentation','','cmii-uav-logger','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-11-06 12:16:48'),(2534,'API_b18a9fe72e9a7d19d9e5a57da928c016','uiConfiguration','','cmii-uav-logger','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-11-06 12:16:49'),(2535,'API_97dce13d5d2d27ead51a858ba3739145','swaggerResources','','cmii-uav-logger','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-11-06 12:16:48'),(2536,'API_3a3e4f9b7f08645f3974540b65c204c9','securityConfiguration','','cmii-uav-logger','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-11-06 12:16:49'),(2537,'API_75ab987af8c4c64c61b7a38949275afb','getDocumentation','','cmii-uav-logger','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:44',1,'2024-11-06 12:16:49'),(2538,'API_0360662d26eafb263cfe3d147a3223a0','下载FMV无人机态势信息','','cmii-uav-mission','/api/uav/mission/mission_info/download_fmv_track_data/{id}','GET',_binary '\0',_binary '\0','2022-03-30 03:18:51',1,'2024-11-12 01:20:34'),(2539,'API_6328e98eb2b734c53955050da4a184f1','获取fmv格式的无人机轨迹数据','','cmii-uav-mission','/api/uav/mission/mission_info/fmv_uav_track','GET',_binary '\0',_binary '\0','2022-03-30 03:18:51',1,'2024-11-12 01:20:37'),(2540,'API_300c9b7221bc896a9aea430c21c95291','getDocumentation','','cmii-uav-industrial-portfolio','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-11-13 12:23:33'),(2541,'API_3add314b34c28e3a7827a9a5032613b9','uiConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-11-13 12:23:33'),(2542,'API_d8c48e4ff0f1fe40f8b48e948a10d63e','securityConfiguration','','cmii-uav-industrial-portfolio','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-11-13 12:23:28'),(2543,'API_01c641e1b4e6d9c30c319220fefd75f6','swaggerResources','','cmii-uav-industrial-portfolio','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-11-13 12:23:28'),(2544,'API_49d5ad513fad592408029bf44178bdfd','getDocumentation','','cmii-uav-industrial-portfolio','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:52',1,'2024-11-13 12:23:34'),(2545,'API_5d01133a91598b434cf3ffce3baf9550','获取回放AI视频token','获取回放AI视频token接口','cmii-uav-cloud-live','/client/live/playbackAi/token','POST',_binary '\0',_binary '\0','2022-03-30 03:18:56',1,'2024-11-14 02:02:37'),(2546,'API_7cfc25f15a47c4567c5d1bbae53690f3','获取回放AI视频token列表','获取回放AI视频token列表接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens','POST',_binary '\0',_binary '\0','2022-03-30 03:18:56',1,'2024-11-14 02:02:39'),(2547,'API_a15968b980c85a0ff2c44091096ae066','getDocumentation','','cmii-uav-cloud-live','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:40'),(2548,'API_f78d3ef6fc559f0a6dfcfe7b80751af4','uiConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:39'),(2549,'API_686c9a27044cbeb2e932628006b22022','swaggerResources','','cmii-uav-cloud-live','/swagger-resources','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:39'),(2550,'API_871a9156aa421a1b37b481fdf8fb936f','securityConfiguration','','cmii-uav-cloud-live','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:38'),(2551,'API_e0a09b08d3699ce5a5c4d6d8e487c541','getDocumentation','','cmii-uav-cloud-live','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-03-30 03:18:57',1,'2024-11-14 02:02:38'),(2552,'API_3f648559133e61dd09837a0aa5b7bb3a','获取MP4作业视频','','cmii-uav-mission','/api/uav/mission/mission_info/vedio_mp4/{id}','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-11-12 01:20:37'),(2553,'API_c6d2d4e24b57855eb8f054ad6d809d46','获取m3u8作业视频','','cmii-uav-mission','/api/uav/mission/mission_info/vedio_m3u8/{id}','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-11-12 01:20:37'),(2554,'API_4ee60ddea40d13fa570f7d811a4383e6','处理老作业合成视频','','cmii-uav-mission','/api/uav/mission/mission_info/history_vedio','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-11-12 01:20:35'),(2555,'API_35ba6f391708c59b0cb8ef08ff2ddb92','处理单个历史作业合成视频','','cmii-uav-mission','/api/uav/mission/mission_info/history_vedio/{id}','GET',_binary '\0',_binary '\0','2022-04-01 02:34:14',1,'2024-11-12 01:20:36'),(2556,'API_ada4340c15f0563ab83e660cae0dc7c7','getDocumentation','','cmii-uav-surveillance','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-11-12 03:56:04'),(2557,'API_118f97a041a0085ff14e57a730170d0a','uiConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-11-12 03:56:04'),(2558,'API_2fd6b2ec21f2a7acb0836eaac69f0778','swaggerResources','','cmii-uav-surveillance','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-11-12 03:56:10'),(2559,'API_d6293f405604065292a57f8192e55840','securityConfiguration','','cmii-uav-surveillance','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-11-12 03:56:08'),(2560,'API_fd8ba8f9bbd6df918ab9897bd6cbfb66','getDocumentation','','cmii-uav-surveillance','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-01 06:32:33',1,'2024-11-12 03:56:06'),(2561,'API_01fb4e7a0b145af32f7ce420efc64924','停止AI检测','','cmii-uav-mission','/api/uav/mission/surveillance/stop_ai_detection','GET',_binary '\0',_binary '\0','2022-04-07 03:47:38',1,'2024-11-12 01:20:39'),(2562,'API_5c7432080fbf74f65180b30fc6afaaf6','获取作业AI视频','','cmii-uav-mission','/api/uav/mission/mission_info/ai_vedio/{id}','GET',_binary '\0',_binary '\0','2022-04-07 03:47:38',1,'2024-11-12 01:20:38'),(2563,'API_39b9ccc5f762bd8d06b4fef7b13fc8f3','给飞行监视提供航线飞行的航线信息,只需要航线id','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/waypoints_with_id','GET',_binary '\0',_binary '\0','2022-04-13 06:33:39',1,'2023-03-29 09:05:04'),(2564,'API_b37d58bf331f4f76dc7b19c2f0c8401a','修改角色并授权资源组','','cmii-uav-user','/api/uav/role/updateAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:02',1,'2024-11-06 12:16:35'),(2565,'API_1840f89179ef93cd9a6550c61c0a2b32','查询某公司有效角色的列表','','cmii-uav-user','/api/uav/role/queryOneCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:29'),(2566,'API_5574ca8695086e09a34dc22ddec566a8','新增角色并授权资源组','','cmii-uav-user','/api/uav/role/addAndAuthorityGroup','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:40'),(2567,'API_093f51549470c1f5d78593100e7ff71b','查询组织已用配额','','cmii-uav-user','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:28'),(2568,'API_e7d98c8b1405680df0a72fd712e57290','查询权限组树型结构','','cmii-uav-user','/api/uav/group/trees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:19'),(2569,'API_01fd6de539cb9f9aa5668922a0ace4ff','查询权限组详细列表','','cmii-uav-user','/api/uav/group/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:29'),(2570,'API_88de3838653107ec360b2c7b17e3c12c','查询权限组资源树型结构','','cmii-uav-user','/api/uav/group/resourceTrees','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:22'),(2571,'API_53146fed117f8c89cc11e8a012c97b69','查找出未选择的权限组','','cmii-uav-user','/api/uav/group/dependsUnChecked','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:20'),(2572,'API_a7a4ccbfd3aff2d60b958ce3355e4bf7','管理员获取全平台的所有权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForAdmin','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:28'),(2573,'API_32475e5852084a6f2a18e9277bf161cd','获取某个角色的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForRole','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:22'),(2574,'API_74db49217ba70f4dd0bd402d840bb72c','给资源组赋予菜单按钮','','cmii-uav-user','/api/uav/group/authorityResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:40'),(2575,'API_949caf693b72457471529fc1a359c6aa','获取自己所在公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForMyCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:25'),(2576,'API_7eed6e744998919c9c8231c58069ee2f','获取某个公司的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForCompany','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:25'),(2577,'API_107f9069a3f501b65fdfcd791c0062dc','获取某个用户的全平台权限组树','','cmii-uav-user','/api/uav/group/queryAllPlatformsResourceGroupTreeForUser','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:38'),(2578,'API_9ab9fe4b26b4c290781e3796906f7af0','查询自己公司的子孙公司,普通管理员仅自己公司','','cmii-uav-user','/api/uav/org/company_scopes','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:19'),(2579,'API_433629c1f4512e6f7cfd5e45efc0d848','查询公司的子孙公司(不包括自己公司)','','cmii-uav-user','/api/uav/org/descendants','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:20'),(2580,'API_fa8e6a48b33398f42e01ba89b8434a0e','查询公司所在的族谱,所在树的全部节点','','cmii-uav-user','/api/uav/org/genealogy','GET',_binary '\0',_binary '\0','2022-04-27 02:45:03',1,'2024-11-06 12:16:22'),(2581,'API_96c010936d0212bc2e6a96ae0df4c9c1','查询公司性质列表','','cmii-uav-user','/api/uav/org/companyNatures','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-06 12:16:42'),(2582,'API_706b176b853fc3850409aed6aca58d40','分页查询公司的子公司','','cmii-uav-user','/api/uav/org/pageChildrenCompany','POST',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-06 12:16:22'),(2583,'API_94ab3b50003fb911a0ac2c2bcf2f7d9f','分页查询公司树型结构','','cmii-uav-user','/api/uav/org/pageCompanyTree','POST',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-06 12:16:31'),(2584,'API_d590165e9ffcba5c3ab549087a8517a5','查询公司的子孙公司(包括自己公司)','','cmii-uav-user','/api/uav/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-06 12:16:23'),(2585,'API_a3c45d6497bb720021eac3c3d3626524','getDocumentation','','cmii-uav-mqtthandler','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-07 08:51:30'),(2586,'API_f89a7df6e26465006c2c6a0cba555553','uiConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-07 08:51:30'),(2587,'API_2277c14a0d6d52bf21d0486f8fc69028','securityConfiguration','','cmii-uav-mqtthandler','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-07 08:51:27'),(2588,'API_6d1dce5ed5db158800f38d4d7f191f1d','swaggerResources','','cmii-uav-mqtthandler','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-07 08:51:27'),(2589,'API_61e908b2d5b3c4c66b0de5407e792a5e','getDocumentation','','cmii-uav-mqtthandler','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-07 08:51:27'),(2590,'API_1e7067f999bef83d2f1006ae1ae356a0','查询按钮,菜单所属的资源组集合','','cmii-uav-user','/api/uav/resource/queryResouceGroups','GET',_binary '\0',_binary '\0','2022-04-27 02:45:04',1,'2024-11-06 12:16:28'),(2591,'API_09572688f3ed468db68e104ac7e6ac99','根据资源id,获取所有的父资源','','cmii-uav-user','/api/uav/resource/queryParentsById','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:26'),(2592,'API_46cdaf99ebad4e635a0b5b61fb509c50','根据编码导出资源信息XML','','cmii-uav-user','/api/uav/resource/syncExportResourceXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:28'),(2593,'API_8a2fcdbeba25a9f8e605f78da7b668fa','根据编码导入资源信息XML','','cmii-uav-user','/api/uav/resource/syncImportResourceXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:26'),(2594,'API_eababd8d641858ec0dc94a96b119fc2e','菜单资源同步XML','','cmii-uav-user','/api/uav/resource/syncResource','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:23'),(2595,'API_cb8e545bd520a55501bd9058d4a90dac','查询无人机在线状态','','cmii-uav-mqtthandler','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2023-05-04 09:36:22'),(2596,'API_aafaa3624ccfca4434946824ffa8c688','获取公司gis信息','','cmii-uav-user','/api/uav/user/profile/companyGisInfo','GET',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:42'),(2597,'API_52c1eb609c16345d337004d08500ee34','测试List对象','','cmii-uav-user','/api/uav/uavTestPO/listObject','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:34'),(2598,'API_9e55f6b9c8d021b29c831f91df9688fa','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/listInt','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:41'),(2599,'API_0138862efbd1381847bc149173fadfb1','测试ListInt','','cmii-uav-user','/api/uav/uavTestPO/int','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:37'),(2600,'API_7c46c892a835c386f5491d57086e1b78','testPath','','cmii-uav-user','/api/uav/uavTestPO/testPath','POST',_binary '\0',_binary '\0','2022-04-27 02:45:05',1,'2024-11-06 12:16:34'),(2601,'API_e7a568f15bc9f756091c84492f47d320','查询某公司的用户列表','','cmii-uav-user','/api/uav/user/findOneCompanyPage','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:22'),(2602,'API_40a85440b0431a8aaf4ce0266653f075','新建&更新组织最大可用配额查询接口','','cmii-uav-user','/api/admin/system/quota/getMaxQuotaInfo','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:34'),(2603,'API_1adca4c2f75642b528e15166f4d0525a','数据权限升级','','cmii-uav-user','/api/uav/group-sync/dbMygration','PUT',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:20'),(2604,'API_d25daf1a7f47e18058fddb9cfd58fd95','导出权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncExportGroupsAndGroupResourceMappingXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:27'),(2605,'API_dc1325fbbf764825474bdab8eb1f82ba','导ru权限组,权限组与资源的关系XML','','cmii-uav-user','/api/uav/group-sync/syncImportGroupsAndGroupResourceMappingXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:37'),(2606,'API_60b09fb94ce3496ff90a4857ef89785b','同步资源组与资源的映射关系','','cmii-uav-user','/api/uav/group-sync/syncGroupsAndGroupResourceMapping','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:36'),(2607,'API_342d642b2fa1a417bb82509b6ae66a30','导出资源组模板','','cmii-uav-user','/api/uav/group-sync/syncExportGroupTemplatesXML','GET',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:44'),(2608,'API_5525d2fef1a7dfd03ce6ae26df0aa195','导入资源组模板','','cmii-uav-user','/api/uav/group-sync/syncImportGroupTemplatesXML','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:39'),(2609,'API_bf0b1ee8a98d585edee95dafee344142','多环境之间同步资源组模板','','cmii-uav-user','/api/uav/group-sync/syncGroupTemplates','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:23'),(2610,'API_5ea94a0889354836cbd1cc9f3b672ad6','更新rootId为空的公司','','cmii-uav-user','/api/uav/group-sync/correctCompanyRootId','POST',_binary '\0',_binary '\0','2022-04-27 02:45:06',1,'2024-11-06 12:16:41'),(2611,'API_581fdd0ea099d6547069e61de1c5a5cf','添加演示模板','','cmii-uav-user','/api/uav/group-template/add','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:22'),(2612,'API_4ba19a8bb7bd5f99724b7e66a55b2495','查询权限组所有详细列表','','cmii-uav-user','/api/uav/group-template/list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:23'),(2613,'API_80ea13663650435d1a73ce828652d6bd','查询组织已使用配额信息','','cmii-uav-user','/client/quota/getQuotaUseInfoByType','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:21'),(2614,'API_3e2af60d636ca1ed913ec55de3ca8bd3','getDocumentation','','cmii-uav-airspace','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-14 03:10:23'),(2615,'API_751a4ab3731513f08a9c38e532d6d42d','uiConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-14 03:10:23'),(2616,'API_827bb9e60c72d56401c772a130934563','用户数概况(总用户数&在线用户数)','','cmii-uav-user','/api/open/user/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:30'),(2617,'API_0b3542957558e4d6fff337c8bb2e21e3','swaggerResources','','cmii-uav-airspace','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-14 03:10:22'),(2618,'API_d13748306aa816b972952b75d3580e18','securityConfiguration','','cmii-uav-airspace','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-14 03:10:23'),(2619,'API_173dd3971a5b2e4215e515cd970416ef','getDocumentation','','cmii-uav-airspace','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-14 03:10:23'),(2620,'API_de4d740768d7847768e4bb45baa338c4','根据公司范围查询公司的用户列表','','cmii-uav-user','/user/queryByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:25'),(2621,'API_76874d731f956a8bc21b90b4c151995d','根据公司范围,使用账号,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCompanyScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:23'),(2622,'API_92a248782383d5a4151df2f079f62979','根据公司范围,手机号,姓名模糊匹配用户列表','','cmii-uav-user','/user/queryVagueByCId/namePhoneScope','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:22'),(2623,'API_4153d0d6ef5046411dedba0a0434135c','获取公司集合','','cmii-uav-user','/clients/org/queryByIds','POST',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:20'),(2624,'API_2fff43c8902b7f5982987580fc098270','获取公司的子孙公司包括自己','','cmii-uav-user','/clients/org/descendants_with_own','GET',_binary '\0',_binary '\0','2022-04-27 02:45:07',1,'2024-11-06 12:16:21'),(2625,'API_67a6671f780b4f9fe066acd721fb72b2','查询无人机在线状态','','cmii-uav-airspace','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2023-03-29 08:30:26'),(2626,'API_6007c3fc3b590525460f495b02c2bd6f','给飞行监视提供航线飞行的航线信息,只需要航线id','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/waypoints_with_id','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-11-12 03:52:42'),(2627,'API_4f3edd9a9b52293c8274039d18a15002','重载业务参数','','cmii-uav-alarm','/api/uav/alarm/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-22 12:07:18'),(2628,'API_7c1f11ca6aa894a3225f9a8d4145c557','getDocumentation','','cmii-uav-alarm','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-22 12:07:16'),(2629,'API_e0be1e447ee76257d0a1e151fc603fd5','uiConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-22 12:07:17'),(2630,'API_9111eef1a24129edea603beca94e3e02','securityConfiguration','','cmii-uav-alarm','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:08',1,'2024-10-22 12:07:16'),(2631,'API_57166349726e8361c53f41e89d093ff3','swaggerResources','','cmii-uav-alarm','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-22 12:07:19'),(2632,'API_71c9b1d72ea78199e17cc83a875f9aa6','getDocumentation','','cmii-uav-alarm','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-10-22 12:07:17'),(2633,'API_ed54eecf59da12c360a0c7769a36dd26','获取GPS坐标地址信息[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeo','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:53'),(2634,'API_454baf69c5c624ae03301d7ae71c70fd','getDocumentation','','cmii-uav-waypoint','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-12 03:52:39'),(2635,'API_33e58190fc162fd27a7572628ec49968','uiConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-12 03:52:39'),(2636,'API_e82f3a73c5028a734c5f50ff913b430a','swaggerResources','','cmii-uav-waypoint','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-12 03:52:41'),(2637,'API_ca41b76164029c56cb6f211e22a500f9','securityConfiguration','','cmii-uav-waypoint','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-12 03:52:41'),(2638,'API_167f5c9c4606f942ab8074d8820d2f46','getDocumentation','','cmii-uav-waypoint','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-12 03:52:42'),(2639,'API_c9409405699c91590c7dabf9e63db87d','文件导入字典明细','','cmii-admin-data','/api/admin/dictionary/fileImport','POST',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:58'),(2640,'API_f19dff044b68e536ce8df43f8dac84dd','文件导出字典明细','','cmii-admin-data','/api/admin/dictionary/fileExport','GET',_binary '\0',_binary '\0','2022-04-27 02:45:09',1,'2024-11-06 12:16:49'),(2641,'API_d94d9aec0da4b19fd50a4b315e9d39a7','查询无人机在线状态','','cmii-uav-waypoint','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:10',1,'2023-05-04 09:35:56'),(2642,'API_c3afa707108b58d9cb6b68ae5c7ed283','根据无人机类型查询设备类型匹配列表','','cmii-admin-data','/api/admin/model/match/type/queryModelMatchListByUav','GET',_binary '\0',_binary '\0','2022-04-27 02:45:11',1,'2024-11-06 12:16:54'),(2643,'API_4cb882103bc6f97c2fe3c31dfb8eb6c8','getDocumentation','','cmii-admin-data','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-11-06 12:16:59'),(2644,'API_47a8e3e0d37ca77be1ac9934fe039256','uiConfiguration','','cmii-admin-data','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-11-06 12:16:58'),(2645,'API_f6bb5dd6d167aecdf23c473da3dfd63d','securityConfiguration','','cmii-admin-data','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-11-06 12:16:48'),(2646,'API_e0c615762e25ee05a6397222aefe8457','swaggerResources','','cmii-admin-data','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-11-06 12:16:47'),(2647,'API_6b0dd054428ea6530ce4a388e6d0fb3e','getDocumentation','','cmii-admin-data','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:12',1,'2024-11-06 12:16:55'),(2648,'API_121607fdc9863543f51650000f0fc92b','按年/月/日查询所有平台飞行总时长','','cmii-uav-surveillance','/surveillance/AllflyDuration/{duration}','GET',_binary '\0',_binary '\0','2022-04-27 02:45:19',1,'2024-11-12 03:56:04'),(2649,'API_0d389a1a09e2228b88ae758c3f959de4','查询无人机在线状态','','cmii-uav-surveillance','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:22',1,'2023-03-29 09:05:05'),(2650,'API_68753bdacc315e6581975c33647880e7','查詢包括子公司的设备列表','','cmii-uav-device','/api/uav/dev/queryDeviceList','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:49'),(2651,'API_2aaaede1b5563b0a4fa5c87d5059c072','新增设备','','cmii-uav-device','/api/uav/dev/addDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:46'),(2652,'API_f333962bf1352ae3f443309395496c10','修改设备','','cmii-uav-device','/api/uav/dev/updateDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:53'),(2653,'API_5164cba6d601963304a354d348afc6ec','删除设备','','cmii-uav-device','/api/uav/dev/deleteDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:46'),(2654,'API_8652cf7850b6724027c40bd1f128b3c1','批量删除设备','','cmii-uav-device','/api/uav/dev/deleteDevBatch','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:52'),(2655,'API_841b6fca6859d319a9b08c93ec1f5e43','无人机实例总数接口','','cmii-uav-device','/api/open/plane/summary','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:52'),(2656,'API_07a9053b3d7e250fc90ebc87ec5fceab','无人机实例总数接口','','cmii-uav-device','/api/open/planeArea','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:48'),(2657,'API_8c2b4339a58ddd7961bfcef40afd52cf','修改仓库','','cmii-uav-device','/api/uav/house/updateHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:44'),(2658,'API_0d92af5e0d766243ee4b1e58cdc684d5','删除仓库','','cmii-uav-device','/api/uav/house/deleteHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:50'),(2659,'API_fb599dc78672805305ea6002de13ce45','仓库关联设备信息','','cmii-uav-device','/api/uav/house/queryHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:53'),(2660,'API_458baa7426dc09bc3a1327579edded9a','仓库可关联设备信息','','cmii-uav-device','/api/uav/house/queryValHouseBound','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:55'),(2661,'API_6a5a45853293d08ba87ac3827cbcf66a','查詢包括子公司的仓库列表','','cmii-uav-device','/api/uav/house/queryHouseList','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:44'),(2662,'API_9c0f321db584d3d813a281f25cfe2df3','新增仓库','','cmii-uav-device','/api/uav/house/addHouse','POST',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:53'),(2663,'API_7bb2b50110c6fb4815372f2bdcba0134','统计子公司范围内的设备(无人机,载荷,机库)使用数量','','cmii-uav-device','/api/uav/plane/queryDevCount','GET',_binary '\0',_binary '\0','2022-04-27 02:45:23',1,'2024-11-07 09:01:56'),(2664,'API_a086ecddc9771b681e4061815fbb8e63','重载业务参数','','cmii-uav-device','/api/uav/plane/initParameter','POST',_binary '\0',_binary '\0','2022-04-27 02:45:24',1,'2024-11-07 09:01:53'),(2665,'API_2ca0106de89e47edf77400b05936d135','取消设备绑定','','cmii-uav-device','/api/uav/dev/unBoundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:25',1,'2024-11-07 09:01:45'),(2666,'API_479f78171081bed9faca2e8ca745fe6b','绑定设备列表查询','','cmii-uav-device','/api/uav/dev/queryBoundBydevCode','GET',_binary '\0',_binary '\0','2022-04-27 02:45:25',1,'2024-11-07 09:01:56'),(2667,'API_ef7895bb33af75327d8df6695c0e64da','添加设备绑定','','cmii-uav-device','/api/uav/dev/boundDev','POST',_binary '\0',_binary '\0','2022-04-27 02:45:25',1,'2024-11-07 09:01:45'),(2668,'API_f78c01a72c762ad505c90da48cd93402','getDocumentation','','cmii-uav-device','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-11-07 09:01:52'),(2669,'API_5977f2474e6ec130e76828bfd7286930','uiConfiguration','','cmii-uav-device','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-11-07 09:01:53'),(2670,'API_54fd717c1af7b96a999fff84fe3276d7','swaggerResources','','cmii-uav-device','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-11-07 09:01:46'),(2671,'API_5fbdf0b1cdd87a9fd62f3e44742b385e','securityConfiguration','','cmii-uav-device','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-11-07 09:01:46'),(2672,'API_a3a532a479e924acb0242a6b717c61cd','getDocumentation','','cmii-uav-device','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:26',1,'2024-11-07 09:01:51'),(2673,'API_29e9f7f14d98a6348ced289a13b9c182','提供已有航线,无人机 创建快速作业','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/mission/create_fast_with_line_and_uav','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:31'),(2674,'API_4c11c0b09166bb135f965bd21401b339','查询已添加的航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/list_added/{uavCode}','GET',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:33'),(2675,'API_b0342f0ee6d6785176b33a30fe21f780','批量添加航线信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/batch','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:35'),(2676,'API_9bbbd3836c2e12d14b573352b02368b9','删除航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/{id}','DELETE',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:33'),(2677,'API_561c9948b63d0fceac6908c59f88267e','查询待添加航线列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/airLine/list_to_add','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:27'),(2678,'API_533512a3d10f3396f61082dd90bd77dd','获取测温点位列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/temperatureMeasuring_point_info/list','GET',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:33'),(2679,'API_47b9e7c120f7e26e195eedcd82b993f8','根据测温点位id分页获取巡检记录列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/temperatureMeasuring_point_info/patrol_record_page_list','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:33'),(2680,'API_68688674fb96be9c90813c065b1268c1','消息处理测试接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/common/Message','POST',_binary '\0',_binary '\0','2022-04-27 02:45:27',1,'2024-11-13 12:23:34'),(2681,'API_cc60e6c600244455e919d7f113666d12','查询无人机在线状态','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:28',1,'2022-11-02 09:13:11'),(2682,'API_89dbfc45753c11945f0a5ee1e53a855b','模拟发布复亚图片信息列表','','cmii-uav-mission','/oss/mock_foia_pic_info_list_publish','POST',_binary '\0',_binary '\0','2022-04-27 02:45:31',1,'2024-11-12 01:20:37'),(2683,'API_bc3e35b7a90335f8ee4528c941f99b7c','发送单机监视视频分享短信到选定的手机号','missionId 非必须','cmii-uav-mission','/report_and_video/send_video_share_sms','POST',_binary '\0',_binary '\0','2022-04-27 02:45:31',1,'2024-11-12 01:20:38'),(2684,'API_9f09fa590fba8ee2870de267ac4b1631','提供已有航线,无人机 创建快速作业','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_with_line_and_uav','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-11-12 01:20:38'),(2685,'API_5138febf031d37b94e6529aff77f807c','查询指定预计开始时间范围的作业-时间区间为左闭右开','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info_list_with_estimated_start_time_range','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-11-12 01:20:34'),(2686,'API_30ed633b13d45560fca4ecd303d5d606','基于终端维度的作业执行概况信息--开放接口','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/uav_mission_info','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-11-12 01:20:34'),(2687,'API_a9eef19654b65701370bf2b77dfa23ba','查询前12个月已完成作业数量--开放接口','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/mission_num_per_month','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-11-12 01:20:41'),(2688,'API_9ec21123e64357c0a5524b119f6573e8','查询今日和全量已完成/进行中作业数量--开放接口','','cmii-uav-mission','/api/uav/mission/mission_info_list/mission_info/mission_num_static','POST',_binary '\0',_binary '\0','2022-04-27 02:45:32',1,'2024-11-12 01:20:35'),(2689,'API_4d0b953a47f81652a9c1e32046c5147a','getDocumentation','','cmii-uav-mission','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-11-12 01:20:37'),(2690,'API_b9d52a009f6eb5f49817561eb5149173','uiConfiguration','','cmii-uav-mission','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-11-12 01:20:38'),(2691,'API_b8f5387dce4499aed5adea8fa1e48f75','securityConfiguration','','cmii-uav-mission','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-11-12 01:20:34'),(2692,'API_c4c97f2c2a367ac3cf399d527c7da1c6','swaggerResources','','cmii-uav-mission','/swagger-resources','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-11-12 01:20:34'),(2693,'API_3597a39e2e8bfed274be9c239f7e7fb1','getDocumentation','','cmii-uav-mission','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2024-11-12 01:20:41'),(2694,'API_da3e37ce4e9e1b1dc81c9c41e9c7f973','查询无人机在线状态','','cmii-uav-mission','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-04-27 02:45:33',1,'2023-07-18 04:08:27'),(2695,'API_3c48518686f7e3bc1485eb1aff1e2ff9','获取回放视频token1','获取回放视频token1接口','cmii-uav-cloud-live','/client/live/playback/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-11-14 02:02:40'),(2696,'API_d25e1e1c0fa3f13e191c801e18d8941d','获取回放AI视频token1','获取回放AI视频token1接口','cmii-uav-cloud-live','/client/live/playbackAi/token1','POST',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-11-14 02:02:39'),(2697,'API_732ef4f6817583a25459c7fb874f5b5a','获取视频流存储信息','','cmii-uav-cloud-live','/video/storage/getStorageInfo','GET',_binary '\0',_binary '\0','2022-04-27 03:16:56',1,'2024-11-14 02:02:41'),(2698,'API_b5203cfafccff79ddd6ef3658a490aa8','获取回放AI视频token列表1','获取回放AI视频token列表1接口','cmii-uav-cloud-live','/client/live/playbackAi/tokens1','POST',_binary '\0',_binary '\0','2022-05-07 08:33:42',1,'2024-11-14 02:02:44'),(2699,'API_69b4b0408d379208deea19d59ed98e85','根据日期范围筛选公司下面的飞行时长','','cmii-uav-surveillance','/surveillance/query_duration_by_time','GET',_binary '\0',_binary '\0','2022-05-25 08:34:13',1,'2024-11-12 03:56:10'),(2700,'API_258fd28d703f12613f3d56a2a7183f24','开启模拟机库','','cmii-uav-surveillance','/surveillance/simulator/start_hangar','POST',_binary '\0',_binary '\0','2022-05-25 08:34:14',1,'2024-11-12 03:56:08'),(2701,'API_37513463f05836c8602a1e1c528fe5b5','机库自动起飞','','cmii-uav-surveillance','/surveillance/simulator/auto_fly','POST',_binary '\0',_binary '\0','2022-05-25 08:34:14',1,'2024-11-12 03:56:10'),(2702,'API_937cb2e0a224e7222ac4f4b6caa5e4ef','湘潭演示','开始作业, 开启模拟机,自动飞行,返航,上传图片,结束作业','cmii-uav-surveillance','/xg_scenario','POST',_binary '\0',_binary '\0','2022-05-25 08:34:14',1,'2024-11-12 03:56:10'),(2703,'API_0303c6966093dc0f77b56442375d3f5e','publishCommand','','cmii-uav-surveillance','/mqtt/hangar/command','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2704,'API_9af718e4419c544dcd67de73d14a9016','configureRTKSetting','','cmii-uav-surveillance','/mqtt/hangar/configure_RTK','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2705,'API_3486edec41e52068b198470deeaade5c','sendWayLineAndSetDefault','','cmii-uav-surveillance','/mqtt/hangar/send_line_and_set_default','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2706,'API_73a3d517f242d06d2e775b3c48908e96','publishSimulatorHangarTelemetry','','cmii-uav-surveillance','/mqtt/hangar/publish_simulator_data','POST',_binary '\0',_binary '\0','2022-05-25 08:34:15',1,'2023-01-18 04:50:23'),(2707,'API_50418acd60e21bb7ef1038742dcc9f3a','查询公司范围下的在线无人机,返回map','','cmii-uav-surveillance','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:16',1,'2023-03-29 09:05:05'),(2708,'API_926a3783ab9c0e5fb0cc820e50d2f71c','查询公司范围下的在线无人机,返回map','','cmii-uav-airspace','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:24',1,'2023-03-29 08:30:25'),(2709,'API_62f98911a42248cb190b4b166d58e354','查询公司/机构范围的无人机名称列表','','cmii-uav-device','/api/uav/plane/queryUavNameByCompanyId','GET',_binary '\0',_binary '\0','2022-05-25 08:34:25',1,'2024-11-07 09:01:50'),(2710,'API_cb3d59b848074a115a1e0c7cc26a5eac','查询公司范围下的在线无人机,返回map','','cmii-uav-device','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:25',1,'2024-11-07 09:01:56'),(2711,'API_5650997fb36ac4227d6dab55afac6050','查询不同时间段所有的无人机行时长','','cmii-uav-device','/api/uav/plane/queryAllFlyTotal','GET',_binary '\0',_binary '\0','2022-05-25 08:34:25',1,'2024-11-07 09:01:55'),(2712,'API_142e6a2f1b1c5821b138d6c39e1cff7b','模糊查询包括子公司的仓库列表','','cmii-uav-device','/api/uav/plane/queryHouse','GET',_binary '\0',_binary '\0','2022-05-25 08:34:26',1,'2024-11-07 09:01:52'),(2713,'API_a3c041486461b027297b1529b2d3da10','发送模拟机库遥测信息','','cmii-uav-mqtthandler','/mqtt/hangar/publish_simulator_data','POST',_binary '\0',_binary '\0','2022-05-25 08:34:29',1,'2024-11-07 08:51:28'),(2714,'API_1a87dfde0834ab278e25857240043f23','查询公司范围下的在线无人机,返回map','','cmii-uav-mqtthandler','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:30',1,'2023-05-04 09:36:21'),(2715,'API_37943f7a412c3091007dad54a69b79fa','获取作业报告的分享码','','cmii-uav-mission','/report_and_video/get_report_share/{missionId}','GET',_binary '\0',_binary '\0','2022-05-25 08:34:33',1,'2024-11-12 01:20:41'),(2716,'API_8260ba9b61450155ff907812128f8e67','视频数据回放-获取轨迹数据日期分布','视频数据回放-获取轨迹数据日期分布','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getDataDistribution','GET',_binary '\0',_binary '\0','2022-05-25 08:34:34',1,'2024-11-12 01:20:39'),(2717,'API_da50d60e377e25f455a2b66a3560816a','模拟演示作业用 提供已有航线,无人机,机库(非必须) 创建快速作业并开始','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_hangar_M','POST',_binary '\0',_binary '\0','2022-05-25 08:34:34',1,'2024-11-12 01:20:37'),(2718,'API_d1826a3fe494d4abc6b596ac798a332b','获取环保作业报告数据','','cmii-uav-mission','/api/uav/mission/mission_info/env_protection_info/{id}','GET',_binary '\0',_binary '\0','2022-05-25 08:34:34',1,'2024-11-12 01:20:35'),(2719,'API_100953d66811971e871a9745020c33e1','视频数据回放-获取飞行轨迹列表','视频数据回放-获取飞行轨迹列表','cmii-uav-mission','/api/uav/mission/mission_info/queryFlyTrackList','POST',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-11-12 01:20:39'),(2720,'API_e13b0c8ab34ff7356f808d2b5e9f57f0','视频数据回放-获取轨迹详情和视频详情信息','视频数据回放-获取轨迹详情和视频详情信息','cmii-uav-mission','/api/uav/mission/mission_info/flyTrackDetail2Video/{flyOrderId}','GET',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-11-12 01:20:40'),(2721,'API_4cc853c4ae0ec9ec244fa8373e0c3eee','视频数据回放-获取视频关联轨迹列表详情信息','视频数据回放-获取视频关联轨迹列表详情信息','cmii-uav-mission','/api/uav/mission/mission_info/queryUavTrackDetailList','GET',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-11-12 01:20:39'),(2722,'API_6637f567e591b17336a2f3bfbc5f0ef4','视频数据回放-获取轨迹设备列表','视频数据回放-获取轨迹设备列表','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getDeviceList','GET',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-11-12 01:20:38'),(2723,'API_b31dba41363b05cd306bc625a219c3d1','飞行监视启动的模拟机完成飞行','type: 演示种类','cmii-uav-mission','/api/uav/mission/scenario/complete','POST',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2024-11-12 01:20:40'),(2724,'API_c8a007b2970ec84c5715ba549e5d5b11','test','','cmii-uav-mission','/api/uav/mission/scenario/test','POST',_binary '\0',_binary '\0','2022-05-25 08:34:35',1,'2022-07-27 08:32:59'),(2725,'API_f934435864ab7d3b18baf3053e7b6e3a','查询公司范围下的在线无人机,返回map','','cmii-uav-mission','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-05-25 08:34:36',1,'2023-07-18 04:08:27'),(2726,'API_06a93b693a9ca44debfd049bacf7f023','设置作业状态&添加历史巡检作业ID','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/envProtection/airLine/mission_status','POST',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-11-13 12:23:33'),(2727,'API_43b4c04e1fbe2b6cca7c0296b800f7a9','设置作业状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/mission/mission_status','POST',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-11-13 12:23:31'),(2728,'API_1cc474da611339638de4fa2b811b78c8','当前所有航线异常点位信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/parkPatrol/temperatureMeasuring_point_info/abnormal_data','POST',_binary '\0',_binary '\0','2022-05-25 08:34:40',1,'2024-11-13 12:23:35'),(2729,'API_64415b4d0e44e202dda0581a0ebbd77b','获取GPS坐标地址列表信息,地址数不能超过200个[FeignClient]','','cmii-admin-data','/public/api/admin/area/tool/regeos','POST',_binary '\0',_binary '\0','2022-05-25 08:34:46',1,'2024-11-06 12:16:48'),(2730,'API_a1ef2aa9d6c09ba78cbd8bfa1442dec4','上报设备位置','上报设备位置','cmii-uav-cloud-live','/client/live/stream/reportPosition','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:40'),(2731,'API_4a29f59c53ba76b36ba5785cac04774d','上报视频流事件','上报视频流事件','cmii-uav-cloud-live','/client/live/stream/reportVideoEvent','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:42'),(2732,'API_8fac5b9b410c904a26af1fae7b53263a','视频数据回放-获取视频片段列表','视频数据回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/videoList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:44'),(2733,'API_1fa6f8a0787d98b0718a18520a5835c3','视频数据回放-播放M3U8文件','视频数据回放-播放M3U8文件','cmii-uav-cloud-live','/public/his/videoPlay/playM3u8','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:36'),(2734,'API_96d29c6f9142d88a2c5d0673bad041f4','视频数据回放-获取Token','视频数据回放-获取Token','cmii-uav-cloud-live','/video/playback/createToken','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:40'),(2735,'API_4a4413b74f7ea53fa4a81a79abbf5cce','视频数据回放-获取设备编号列表','视频数据回放-获取设备编号列表','cmii-uav-cloud-live','/video/playback/getDeviceList','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:37'),(2736,'API_cb47492784522c21d3ca7e46dd3749ab','视频数据回放-生成回放片段','视频数据回放-生成回放片段','cmii-uav-cloud-live','/video/playback/generateList','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:43'),(2737,'API_9230ba3e7a8a8507a4a6e378159067a6','视频数据回放-生成回放片段2','视频数据回放-生成回放片段2','cmii-uav-cloud-live','/video/playback/generateList2','POST',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:40'),(2738,'API_f2daace874086ea979701b88fb223f39','视频数据回放-获取视频数据日期分布','视频数据回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/getDataDistribution','GET',_binary '\0',_binary '\0','2022-05-25 08:35:44',1,'2024-11-14 02:02:39'),(2739,'API_cddd52bf039445da3e93dacbee8730d2','查询兴趣点类型列表','查询兴趣点类型列表','cmii-uav-gis-server','/poi/listType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:47'),(2740,'API_519ce6839a5627a4e6684b8afa49283f','新增兴趣点类型','新增兴趣点类型','cmii-uav-gis-server','/poi/addType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:49'),(2741,'API_78e909523e148485bcf009419b83336c','编辑兴趣点类型','编辑兴趣点类型','cmii-uav-gis-server','/poi/editType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:52'),(2742,'API_99f10f9db5b2d0e32e13aa6fa8264c16','删除兴趣点类型','删除兴趣点类型','cmii-uav-gis-server','/poi/deleteType','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:47'),(2743,'API_4e7774a1bbe37e82dc280607195e0f85','查询兴趣点类型详情','查询兴趣点类型详情','cmii-uav-gis-server','/poi/getType','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:51'),(2744,'API_2642d80fb9a584a5217a3cf1442f1d6a','查询默认icon列表','查询默认icon列表','cmii-uav-gis-server','/poi/listIcons','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:51'),(2745,'API_61b08ae4a35dc790bd8bc207192ba2d8','分类聚合','','cmii-uav-gis-server','/zydPOI/aggregation','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:47'),(2746,'API_16df9b64e7c2515ae4456f56f578d35f','获取兴趣点列表','获取兴趣点列表','cmii-uav-gis-server','/zydPOI/getData','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:51'),(2747,'API_7955f726c1a54806b9ee1dd98e25e876','判断兴趣点名称是否重复','','cmii-uav-gis-server','/zydPOI/judgeName','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:50'),(2748,'API_3b279f6149886ec0f7264363d568190e','新增兴趣点','新增兴趣点','cmii-uav-gis-server','/zydPOI/addPoint','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:47'),(2749,'API_892a48feb7054a94e4b470dfee32b92a','编辑兴趣点','编辑兴趣点','cmii-uav-gis-server','/zydPOI/editPoint','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:49'),(2750,'API_e88fc17c0a29d123425d694e612975ce','删除兴趣点','删除兴趣点','cmii-uav-gis-server','/zydPOI/deletePoint','DELETE',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:48'),(2751,'API_5f85cc33c12ea88c8b4165e0f44a8e9b','导入excel','导入excel','cmii-uav-gis-server','/zydPOI/import','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:51'),(2752,'API_7392a4ebd8263156be1bb1abb96c6cba','根据type下载POI模板文件','','cmii-uav-gis-server','/zydPOI/download','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:47'),(2753,'API_1b729c4d1c53d59fae7da2cf34fbc4b3','接口扫描','','cmii-uav-gis-server','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:47'),(2754,'API_e05e68b3715f3afebdb39c014aadfa72','ping','','cmii-uav-gis-server','/cmii/ping','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:50'),(2755,'API_b2ef9094756f45a1201924f737ddd547','health','','cmii-uav-gis-server','/cmii/health','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:51'),(2756,'API_66eb882e5788c171902f66f9b44dee04','env','','cmii-uav-gis-server','/cmii/env','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:52'),(2757,'API_d5a547e77a3853208f0b5e3b7dd92ca5','getDocumentation','','cmii-uav-gis-server','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:50'),(2758,'API_fe7dcd8ebf3e6c929954413ca22a5a9d','uiConfiguration','','cmii-uav-gis-server','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:50'),(2759,'API_2b965ae2a94864d8065d9b8e74fe4a93','securityConfiguration','','cmii-uav-gis-server','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:50'),(2760,'API_6b839e6eea96fac568c62a4482d440f4','swaggerResources','','cmii-uav-gis-server','/swagger-resources','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:47'),(2761,'API_495ca55302ba9a0d874d581567e049df','getDocumentation','','cmii-uav-gis-server','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:49'),(2762,'API_057c1cf0947e0a6117a05e90bc11da2b','error','','cmii-uav-gis-server','/error','',_binary '\0',_binary '\0','2022-05-25 09:55:11',1,'2024-10-23 08:39:52'),(2763,'API_6ccf466fa0d07e8fa045a7fe8ec86dbc','用户登出','','cmii-suav-supervision','/supervisor/logout','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:34'),(2764,'API_5ad1bce0f2915d307c3d9083ddc2d9c1','验证校验码','','cmii-suav-supervision','/supervisor/checkToken','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:35'),(2765,'API_a71bb5c893d5b05dffac9cf1ef847e5e','更具图片id获取图片code','','cmii-suav-supervision','/supervisor/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:35'),(2766,'API_87ebd94fdf0ab87347b1f58a82fd38d3','获取图片验证码(图片)','','cmii-suav-supervision','/supervisor/getImageCode','GET,POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:35'),(2767,'API_fbe61a5b5b5cc94212caa6cd4bcddc5d','监管用户登录','监管用户登录','cmii-suav-supervision','/supervisor/login','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:34'),(2768,'API_1b0e9fd6096c56a71b64f135757bf348','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/enable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:32'),(2769,'API_bcfa1ca4a7e003ebd519892d7f58c6f4','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/disable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:35'),(2770,'API_c5bd4ac70995607e5051f066e1257257','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/resetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:34'),(2771,'API_17e849aa95a21501891e9f89668c1f24','监管用户列表','','cmii-suav-supervision','/supervisor/findPage','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:36'),(2772,'API_9c94fef7fd453ad19df4ec86d59544e2','增加监管用户','','cmii-suav-supervision','/supervisor/add','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:32'),(2773,'API_fc4e5577228b3e5a70c8e435bfab67c2','修改监管用户信息','','cmii-suav-supervision','/supervisor/update','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:36'),(2774,'API_a863d8197f08a3873927c0a1552087c9','删除监管用户','','cmii-suav-supervision','/supervisor/delete','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:33'),(2775,'API_b951953b73e61e8ea318ed057d559b79','根据code获取用户Token','根据code获取用户Token','cmii-suav-supervision','/permission/getToken','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:36'),(2776,'API_66e1874d7b98d239fd09465fbf50797a','更新用户名称','','cmii-suav-supervision','/supervisor/profile/updateName','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:31'),(2777,'API_b27a1b04d95f936fec102d05dca1a2f2','根据token获取用户基本信息','','cmii-suav-supervision','/supervisor/profile/getMyDetail','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:31'),(2778,'API_6849451376c268b42de7e00e58ceb084','ping','','cmii-suav-supervision','/cmii/ping','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:33'),(2779,'API_64d5e0077c373488dc566eb1a4647f45','health','','cmii-suav-supervision','/cmii/health','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:37'),(2780,'API_6d47e40ec829a32e76a08bb2b12045ac','env','','cmii-suav-supervision','/cmii/env','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:33'),(2781,'API_333e3e3f61a2fce410046633a2a80dd5','游客用户注册','','cmii-suav-supervision','/registry','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:35'),(2782,'API_3fe8fcc7e5c8474b127a8a4a822a9b84','用户登出','','cmii-suav-supervision','/logout','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:35'),(2783,'API_5dbb319621d7ced2d3b459eb46cbc3ed','验证校验码','','cmii-suav-supervision','/checkToken','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:34'),(2784,'API_512e3aba0d2f55c1e8a63de62a452fa9','更具图片id获取图片code','','cmii-suav-supervision','/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:37'),(2785,'API_3ee085d0ad4227df73cf0620336dae24','获取图片验证码(图片)','','cmii-suav-supervision','/getImageCode','GET,POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:29'),(2786,'API_bf39f7edfcf6d195c5a83ee13ee58c07','手机验证码登录','','cmii-suav-supervision','/code/login','POST',_binary '\0',_binary '\0','2022-05-26 01:33:53',1,'2024-11-06 12:18:29'),(2787,'API_139f9b6382a146553f718049ec275f8c','游客用户登录','游客用户登录','cmii-suav-supervision','/login','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:33'),(2788,'API_f069d5680083a52e909c5186e0d997ab','更新用户名称','','cmii-suav-supervision','/profile/updateName','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:37'),(2789,'API_25342285caaef784bef54becf99be880','根据token获取用户基本信息','','cmii-suav-supervision','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2790,'API_44c208ecd306e996277917090d6db40f','更新用户头像','','cmii-suav-supervision','/profile/updateAvatar','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2791,'API_6d0eab90bbd8ec2ae2a722e21a1c1d7e','申请更新邮箱','','cmii-suav-supervision','/profile/updateEmail','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2792,'API_a226e36beb0a2947695d07f37c61c6bc','执行更新邮箱','','cmii-suav-supervision','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2793,'API_f90a896ed4127a489772cf6fe81e1958','重新绑定手机','','cmii-suav-supervision','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:33'),(2794,'API_0ca946fcc0b80154891022033d088f12','添加用户账号','','cmii-suav-supervision','/profile/addAccount','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:34'),(2795,'API_9a817fa14bb7e5f51a69d1655a9b3308','重置密码,验证旧密码','','cmii-suav-supervision','/profile/resetPwd','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2796,'API_2ad4fc1c609019c3f4c28198392a3f5a','找回密码','','cmii-suav-supervision','/profile/findPwd','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2797,'API_db24b1e3aa5b1707a8c5b4aa797c8615','认证申请','','cmii-suav-supervision','/profile/authApplying','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:29'),(2798,'API_e43e252fe18e33bae70774a90fd3b847','检测注册验证码','','cmii-suav-supervision','/verifyCode/checkRegisty','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2799,'API_f75ef00424f78b4273c9fb5d943f41f9','发送找回密码验证码','','cmii-suav-supervision','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2800,'API_4a889c8d9229c7d41cd5fbef1733738e','检测找回密码验证码','','cmii-suav-supervision','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2801,'API_1ea89600aae8fc4c25dcc375b80fc077','发送绑定手机号验证码','','cmii-suav-supervision','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:34'),(2802,'API_aa985e09c31e4e428a70f3f5420077d5','验证绑定手机号验证码','','cmii-suav-supervision','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2803,'API_0db3446721b5fb89a5bd54571ed34051','发送解绑手机号验证码','','cmii-suav-supervision','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:29'),(2804,'API_beaa6d055f59d68b459662ae0889b796','验证解绑手机号验证码','','cmii-suav-supervision','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2805,'API_f957d1588853fcbef978cf6713ff7308','发送登陆验证码','','cmii-suav-supervision','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2806,'API_f5c44436b52dc958ab0b0a3dd30ef84f','检测登陆验证码','','cmii-suav-supervision','/verifyCode/checkLogin','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:35'),(2807,'API_e3debdef97e3a91be8c7b589276bfdb4','发送注册验证码','','cmii-suav-supervision','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2808,'API_63b893bb1922aeb76d517e954352ff21','启用监管用户/解锁监管用户','','cmii-suav-supervision','/supervisor/user/enable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:36'),(2809,'API_57a113ba3e0f837aab672c191d8fa44f','禁用监管用户/锁定监管用户','','cmii-suav-supervision','/supervisor/user/disable','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:33'),(2810,'API_a602624584a3a214310c2e10577c6bbd','管理员对监管用户重置密码','','cmii-suav-supervision','/supervisor/user/resetPassword','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:37'),(2811,'API_396488c3c94c7beb85a7404412f1f5ca','获取用户详细信息','','cmii-suav-supervision','/supervisor/user/getUserDetail','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2812,'API_e91ba6f811542c75bc149692fbec571e','获取用户详细信息(数据回填专用)','','cmii-suav-supervision','/supervisor/user/getUserDetail/fallBack','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:36'),(2813,'API_99f1d094722c119b90f28dc4b0aacda7','游客认证申请同意','','cmii-suav-supervision','/supervisor/user/authAccess','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2814,'API_e6f48213fb4b279fb7569b90c915b7b8','游客用户列表','','cmii-suav-supervision','/supervisor/user/findPage','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:36'),(2815,'API_b0ed9007d197f1d0fdaf482a71841ee4','删除监管用户','','cmii-suav-supervision','/supervisor/user/delete','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:34'),(2816,'API_218034a999216813471b2f75584af9b6','查询所有机场','','cmii-suav-supervision','/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:35'),(2817,'API_e2ce37ab81f0b149ea08d3857cf96713','按条件分页查询空域申请和时间段','','cmii-suav-supervision','/zydAirspace/queryByConditons.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:34'),(2818,'API_133c9d96c71c4a1e0eac936cd8aa4b81','模糊查询空域名称列表','','cmii-suav-supervision','/zydAirspace/queryAreaName.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:35'),(2819,'API_ab43e21c1dded0e5f0fbd055f7b3954a','查询所有配置列表','','cmii-suav-supervision','/zydAirspace/queryAllConfig.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:33'),(2820,'API_f2e4e3172ea9d65bd8592cd016849989','查询所有状态列表','','cmii-suav-supervision','/zydAirspace/queryAllStat.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2821,'API_a1a8667eaf5a7363a25739c2caf5e53c','新增空域申请和时间段','','cmii-suav-supervision','/zydAirspace/saveAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2822,'API_bb50ad65d3c9f5dc6ca39919ce93203f','判断空域名称是否重复','','cmii-suav-supervision','/zydAirspace/judgeAirsNameRep.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:33'),(2823,'API_6b7567ceb891a1055219639aa8ffd3b6','编辑修改空域申请','传入空域申请json字符串,需要有主键','cmii-suav-supervision','/zydAirspace/editAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:29'),(2824,'API_4766ec583c0588243cf6ac1588ce797e','批量删除空域申请和时间段-n','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/deleteAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:32'),(2825,'API_2c822f473adee2133c554741b48ec5f9','强制删除空域(测试调用)','传入空域申请主键,以数组方式传入','cmii-suav-supervision','/zydAirspace/forceDeleteAirspace.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2826,'API_74c65819bdf9be30aad8c6e6c2fb63cf','查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2827,'API_bdc4ff25321301b0b87e8c947513a76e','查询空域详情-n(数据回填专用)','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetail.do/fallBack','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2828,'API_5389cfe64dae96de95d9cd42ff999a6b','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2023-05-04 09:35:23'),(2829,'API_4ea09400a61b86b6e825f14ba6d69e30','批量导出模板','','cmii-suav-supervision','/zydAirspace/downloadDoc.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2830,'API_db80e967db9509f1bc912036aa8c5d05','手动提交终审','','cmii-suav-supervision','/zydAirspace/manualAudit.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:35'),(2831,'API_975441f44b90576602168cc69691ac80','下载审批文件','','cmii-suav-supervision','/zydAirspace/getAppliFile.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2832,'API_d672d3cf96c75e51736b5abc9dca42ee','获取机场区域以及禁飞区','','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2833,'API_de485d999f4874d868daa311c9210903','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:31'),(2834,'API_9bce110b79fea5952fde30aca4d130d4','查询省份信息列表','','cmii-suav-supervision','/zydAirspace/province/list','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:29'),(2835,'API_fb6075fa37a5e0469ddba87ac99d8184','查询区域下面子区域列表','','cmii-suav-supervision','/zydAirspace/subarea/list','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:33'),(2836,'API_578626ba41dc19e11d09258c5407f896','接口扫描','','cmii-suav-supervision','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:35'),(2837,'API_ba635969d5856156769365246476f27d','getDocumentation','','cmii-suav-supervision','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2838,'API_ff478bb1e86c8a09f21bad13ddc70023','uiConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:29'),(2839,'API_cac0bbcc3d6c5d50f5b09ecf085f24b0','securityConfiguration','','cmii-suav-supervision','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2840,'API_94293bba2bec3138ef69bb641255faa4','swaggerResources','','cmii-suav-supervision','/swagger-resources','GET',_binary '\0',_binary '\0','2022-05-26 01:33:54',1,'2024-11-06 12:18:30'),(2841,'API_6c32a4d692529a8bd36ce4323f5c2b8f','getDocumentation','','cmii-suav-supervision','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-05-26 01:33:55',1,'2024-11-06 12:18:37'),(2842,'API_588d350c3d64e2ec50bbad8ecf910937','error','','cmii-suav-supervision','/error','',_binary '\0',_binary '\0','2022-05-26 01:33:55',1,'2024-11-06 12:18:37'),(2843,'API_7265580d49b1dada846dbd70c200910a','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-mission','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-05-31 04:00:44',1,'2023-07-18 04:08:27'),(2844,'API_f80c802fef4e5f571069e5c95206e99c','根据无人机code列表查询无人机名称详情','','cmii-uav-device','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-08 03:06:22',1,'2024-11-07 09:01:48'),(2845,'API_467888d231fd342e1091a6bec97d4344','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-device','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:22',1,'2024-11-07 09:01:48'),(2846,'API_0fc7d7501f4f12b0c6fb98aa9887076c','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-mqtthandler','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:29',1,'2023-05-04 09:36:21'),(2847,'API_399251fd305aaff7576b45c5f91004e1','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-airspace','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:31',1,'2023-03-29 08:30:25'),(2848,'API_5b9b29de98fbe910f44a04fc69b0e3ad','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-surveillance','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-06-08 03:06:41',1,'2023-03-29 09:05:05'),(2849,'API_538a5f3c59889aa1c96a2776b001b4b5','视频数据回放-获取设备编号名称列表','视频数据回放-获取设备编号名称列表','cmii-uav-cloud-live','/video/playback/getDeviceInfoList','GET',_binary '\0',_binary '\0','2022-06-08 03:06:49',1,'2024-11-14 02:02:44'),(2850,'API_e665b4708505f122ccf5a4d2bdcc5dc3','视频数据回放-获取轨迹设备编号名称列表','视频数据回放-获取轨迹设备编号名称列表','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getDeviceInfoList','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:37'),(2851,'API_25b9b6d1ef05af13eb38a9c4bc090e0c','视频数据回放-获取无人机位置[Feign接口]','视频数据回放-获取无人机位置[Feign接口]','cmii-uav-mission','/api/uav/mission/mission_info/trackData/getPlanePosition','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:36'),(2852,'API_0c9f244c5855d43b8cadb27c4faa3c64','查询时间范围内作业和任务数量','时间戳秒级','cmii-uav-mission','/api/uav/mission/mission_info_list/count_mission_task_with_companies','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:38'),(2853,'API_e0335b50fb70b0ce418962c90d87a387','按月或者按年查询一个公司的作业数量','','cmii-uav-mission','/api/uav/mission/mission_info_list/query_mission_count_by_month','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:40'),(2854,'API_4cb56ccb651dfa58c53908fc641684ce','根据任务类型查询作业数量','','cmii-uav-mission','/api/uav/mission/mission_info_list/queryMissionCountByTaskType','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:37'),(2855,'API_b1e0511633ea1a26b639ba4f9d6e373f','分页查询标签照片, 作业内 时间排序, missionId 必须带','','cmii-uav-mission','/picture/query_label_pics_order','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:36'),(2856,'API_2117f673834e4af5349d456b3749addb','为照片添加标签信息','','cmii-uav-mission','/picture/attach_labels','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:34'),(2857,'API_618e3986aba1cb5a882f0aef89dbe0a0','通过id删除照片','','cmii-uav-mission','/picture/del_pics_by_id','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:34'),(2858,'API_2b0af62cb60ab3a7c97bdc99b469e626','前端上传单机监视截图','','cmii-uav-mission','/picture/upload_screenshot','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:34'),(2859,'API_38d51ee3d747bfe74d5442454155adaf','指定公司范围,获取问题标记的统计信息','','cmii-uav-mission','/picture/get_statistic_of_labels','GET',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:35'),(2860,'API_10dbdb9b76ccec46dbf89a91dfc49abf','分页查询标签照片, 根据作业id 和 标签,都没有的话就是全量, 不分页的话 page size 和num 传0','','cmii-uav-mission','/picture/query_label_pics','POST',_binary '\0',_binary '\0','2022-06-08 03:27:36',1,'2024-11-12 01:20:39'),(2861,'API_c8dec68bcb010e5ed3985f4f9a7e7cf2','根据无人机code列表查询无人机名称详情','','cmii-uav-mission','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-08 03:27:37',1,'2023-07-18 04:08:27'),(2862,'API_e57e273f386c9972cab7ab6c390dbd60','判断区域名称是否重复','','cmii-suav-supervision','/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:33'),(2863,'API_9a0c18a8a8d3777c9ef3567fdd0110ea','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/areaPlan/edit','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:34'),(2864,'API_0d53a330385a97cfca14ac906661615d','查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/detail','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:30'),(2865,'API_d814d729fb7585caa3f3a1b98b80fb64','删除区域','传入区域申请主键','cmii-suav-supervision','/areaPlan/delete','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:36'),(2866,'API_f274be45b391f6ffd8d5d2f7e025f7b3','新增区域','','cmii-suav-supervision','/areaPlan/save','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:35'),(2867,'API_c87b29587893d91169b9585dd577028d','判断飞行计划名称是否重复','','cmii-suav-supervision','/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:29'),(2868,'API_c3b928b0401d9d8ecfb6b59d7a0e3977','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/flightPlan/edit','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:29'),(2869,'API_20cf9154c913bad4361a04698f2b4bab','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/flightPlan/detail','GET',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:35'),(2870,'API_da04c9d67235436d8577c5cb5cc8ed4c','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/delete','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:30'),(2871,'API_6c37efaea2e802359a0b46cf054d2247','申报飞行计划','','cmii-suav-supervision','/flightPlan/save','POST',_binary '\0',_binary '\0','2022-06-08 06:29:58',1,'2024-11-06 12:18:30'),(2872,'API_a7564eea3f085d0f3580037297f7cb23','视频数据回放-获取无人机坐标','视频数据回放-获取无人机坐标','cmii-uav-cloud-live','/video/playback/getPlanePosition','GET',_binary '\0',_binary '\0','2022-06-09 07:19:49',1,'2024-11-14 02:02:42'),(2873,'API_af222ac23f8ce4c94137d994714ec5d6','视频数据回放-更新视频坐标','视频数据回放-更新视频坐标','cmii-uav-cloud-live','/video/playback/updateVideoAddress','GET',_binary '\0',_binary '\0','2022-06-09 07:19:49',1,'2024-11-14 02:02:44'),(2874,'API_adbcf1b0d5b5f2a19ac838943ef82153','纵横 吊舱控制功能开关;开启后由SDK控制;关闭后由GCS控制','','cmii-uav-mqtthandler','/payload/jouav/pod_switch','POST',_binary '\0',_binary '\0','2022-06-22 06:37:46',1,'2024-11-07 08:51:29'),(2875,'API_371f2b89562c9ea39aab95ab544b5a42','根据无人机code列表查询无人机名称详情','','cmii-uav-mqtthandler','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-06-22 06:37:48',1,'2023-05-04 09:36:21'),(2876,'API_d52925b89dc3c885d911e2d40071ea58','纵横 吊舱控制功能开关','','cmii-uav-mqtthandler','/jouav_cmd/pod_switch','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2877,'API_34774feb37b295b26e4c951b1dfd3474','纵横球机控制动作指令','','cmii-uav-mqtthandler','/jouav_cmd/gimbal_cmd','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2878,'API_67c9c8f82b2f0292126562577ce8268b','纵横发送航线地址、推流地址到设备','','cmii-uav-mqtthandler','/jouav_cmd/plan_push','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2879,'API_28b75f2da605c788a11179ba981f9bea','起飞、降落指令','','cmii-uav-mqtthandler','/jouav_cmd/take_off_or_landing','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2880,'API_f282df87ef3a3d9ec6a9500aeb4f2551','控制跟踪航点指令','','cmii-uav-mqtthandler','/jouav_cmd/track_to','POST',_binary '\0',_binary '\0','2022-06-22 06:37:49',1,'2023-05-04 09:36:22'),(2881,'API_cc43a57031866396dbc337f85e46201d','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-11-06 12:18:31'),(2882,'API_c76c3c428e4ed32f01a04a6ce85cab49','分页查询','','cmii-suav-supervision','/areaPlan/query','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-11-06 12:18:35'),(2883,'API_78e86c7b545ada097bfcbb860800e8ff','提交申请','','cmii-suav-supervision','/flightPlan/submit','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-11-06 12:18:32'),(2884,'API_f789a7f9391b844d4bf06c97b3ca20f2','审批飞行计划','','cmii-suav-supervision','/flightPlan/audit','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-11-06 12:18:32'),(2885,'API_dca2ed8e853203fff9d5e3268c4e8ba1','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-11-06 12:18:37'),(2886,'API_34a2f05d6ecd91656e9f5cda769612a0','分页查询','','cmii-suav-supervision','/flightPlan/query','POST',_binary '\0',_binary '\0','2022-06-22 06:37:51',1,'2024-11-06 12:18:29'),(2887,'API_d59355c024b0646f902bd1be70f823dd','ping','','cmii-uav-brain','/cmii/ping','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2888,'API_f4650bc93cc283af15117fc064485c4d','health','','cmii-uav-brain','/cmii/health','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2889,'API_19aa7d34e670cb6d9c2c1fe6fbf53f26','env','','cmii-uav-brain','/cmii/env','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2890,'API_cba70abc525d5d4ea9fa350300d0cc59','图像处理(file)【返回base64编码图片】','图像处理(file)【返回base64编码图片】','cmii-uav-brain','/brain/tech/process/file','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2891,'API_2a5a6c58e776ac8e89f458f5454e649e','图像处理(file)【返回图片流】','图像处理(file)【返回图片流】','cmii-uav-brain','/brain/tech/process/file/stream','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2892,'API_6cbb1add91cecf312fcbcf8682fcf169','图像处理(url),返回图片流【用于测试AI算法】','图像处理(url),返回图片流【用于测试AI算法】','cmii-uav-brain','/brain/tech/process/url','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2893,'API_5d2c1a463b2d59e9a2fb2f8762d4a808','生成识别图片对应的url地址【测试算法时使用】','生成识别图片对应的url地址【测试算法时使用】','cmii-uav-brain','/brain/tech/process/getUrl','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2894,'API_a8489cd6b0eab5cfc65aaa66debd422c','查询技术数据详情','查询技术数据详情','cmii-uav-brain','/brain/scene/type/get','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2895,'API_cb2623e1259c0d088baef25fc136e5cf','查询AI场景数据列表','查询AI场景数据列表','cmii-uav-brain','/brain/scene/type/list','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2896,'API_718c8b177378b7cbb96cf0adf7377d8d','根据Token获取用户','根据Token获取用户详情信息','cmii-uav-brain','/brain/user/getMyDetail','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2897,'API_14a5077ac39231bad93558a05cab015a','根据Token获取用户菜单树','根据Token获取用户菜单树','cmii-uav-brain','/brain/user/getMyResourceTree','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2898,'API_4f0781f565b3c5b41f8af48746f3bf63','根据code获取用户Token','根据code获取用户Token','cmii-uav-brain','/brain/user/permission/getToken','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2899,'API_80ace50de3bd9cab498410d556a6e01a','接口扫描','','cmii-uav-brain','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2900,'API_77b9545993ac20cecf908a185f5e2d50','getDocumentation','','cmii-uav-brain','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2901,'API_a872db78152e64288e5685303bda05cb','uiConfiguration','','cmii-uav-brain','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2902,'API_fe37d11b51f4d6a288b768010084f0e9','securityConfiguration','','cmii-uav-brain','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2903,'API_71abf30639a070795f374920607f0635','swaggerResources','','cmii-uav-brain','/swagger-resources','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2904,'API_cb67d0c55c954fffed1f95b134d953b2','getDocumentation','','cmii-uav-brain','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2905,'API_2464bb68d78cf4ebfeb14a9784a965a9','error','','cmii-uav-brain','/error','',_binary '\0',_binary '\0','2022-06-22 06:54:25',1,'2024-11-06 12:18:45'),(2906,'API_fb3e1a53007da7e060023fde9843945e','获取短信发送情况','','cmii-uav-emergency','/sms/getCount','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:33'),(2907,'API_f642e8ff24d8b66885ab14b7bcfa9206','发送短信','传入主键','cmii-uav-emergency','/sms/send','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2908,'API_59a8585c6564c0207251355541ca5eac','编辑成员','传入区域json字符串,需要有主键','cmii-uav-emergency','/sms/edit','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2909,'API_2473e89631631a40dcb8427e18619d91','获取分享码','','cmii-uav-emergency','/sms/getShareCode','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2910,'API_b21b6625cd48d58050b6322b1a99f9b0','批量删除','传入主键','cmii-uav-emergency','/sms/delete','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:31'),(2911,'API_7da3e9c06b41d1e46ef37ed77b4af086','新增成员','','cmii-uav-emergency','/sms/save','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:31'),(2912,'API_ee2b0d43d597bd9530a4dcd996f40294','分页查询','','cmii-uav-emergency','/sms/query','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2913,'API_2f1249fd39eb628729135297a1105832','接口扫描','','cmii-uav-emergency','/api/scanner/scan','POST',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:33'),(2914,'API_4255f2b64c15e15839d28fa952e82c88','ping','','cmii-uav-emergency','/cmii/ping','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:31'),(2915,'API_89d99ebc8d12f2acf7e5b76635712d3b','health','','cmii-uav-emergency','/cmii/health','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2916,'API_3a8c7fad5aa6950d1016ebf74e962443','env','','cmii-uav-emergency','/cmii/env','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:31'),(2917,'API_2856254fff02d83e27297e433e8885ae','getDocumentation','','cmii-uav-emergency','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:33'),(2918,'API_0651f53f94292a5c61d363b244d8b683','uiConfiguration','','cmii-uav-emergency','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:31'),(2919,'API_61ac231f6fd2c289609ee80921691355','swaggerResources','','cmii-uav-emergency','/swagger-resources','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2920,'API_28b74bf2a621bd6ccf469522508b4aa7','securityConfiguration','','cmii-uav-emergency','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2921,'API_857423cceae5e4b5c4eace2780f06881','getDocumentation','','cmii-uav-emergency','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:32'),(2922,'API_cf50d9b2a3513d9385aca11b0b206567','error','','cmii-uav-emergency','/error','',_binary '\0',_binary '\0','2022-07-01 06:58:04',1,'2024-10-20 12:54:33'),(2923,'API_86f5a19f6ebf7fd256a33236f13c103b','删除巡检航线,参数巡检航线id,不是航线id','','cmii-uav-mission','/patrol_line/del_patrol','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-11-12 01:20:35'),(2924,'API_fae9e7aa2d27bff1bdc4e73464bfc8e5','添加系统航线到巡检航线,参数 系统航线id','','cmii-uav-mission','/patrol_line/add_patrol','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-11-12 01:20:35'),(2925,'API_e29f444306b6eae93df71b36b9381f69','查询系统航线,剔除已经导入的','','cmii-uav-mission','/patrol_line/query_air_line','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-11-12 01:20:38'),(2926,'API_b058274a1ff37d47a2274fab93153ef7','查询每一条巡检航线,关联的作业信息','','cmii-uav-mission','/patrol_line/query_every_patrol_detail','POST',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-11-12 01:20:37'),(2927,'API_80d0bc0352696bb982c22b52fa3689a5','查询大屏作业数量统计,进行中,已完成,今日完成','','cmii-uav-mission','/patrol_line/query_mission_num_stats','GET',_binary '\0',_binary '\0','2022-07-08 06:24:40',1,'2024-11-12 01:20:40'),(2928,'API_f76cb6c2d41fd22283f87d3ab7ec19e7','派遣无人机出警, 与公安一样用法','','cmii-uav-surveillance','/surveillance/alert/dispatch_uav','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-11-12 03:56:07'),(2929,'API_0d34d72bfd40335a67152bf7daf4596f','分页查询公司范围的告警信息, 时间近的在前面','','cmii-uav-surveillance','/surveillance/alert/query_alert_events','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-11-12 03:56:12'),(2930,'API_bc7711abea8bf1ed21696eb4d64d449c','上传外部警情','','cmii-uav-surveillance','/surveillance/alert/upload_alert','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-11-12 03:56:09'),(2931,'API_46fa94c3ca6b00a4f67935a08e260611','大屏查询告警统计','','cmii-uav-surveillance','/surveillance/alert/query_alert_stats','GET',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-11-12 03:56:11'),(2932,'API_7336f4225e04742341a56e4c729dc65c','处理警情','','cmii-uav-surveillance','/surveillance/alert/handle_alert_event','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-11-12 03:56:11'),(2933,'API_1e0a66a4227d192f2f83ae53b08d75ff','发送警情短信','','cmii-uav-surveillance','/surveillance/alert/send_alert_notice','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-11-12 03:56:05'),(2934,'API_e1c2f48fb99b28594dc74c8a5fe0bb78','删除告警','','cmii-uav-surveillance','/surveillance/alert/delete_alert','POST',_binary '\0',_binary '\0','2022-07-08 06:24:50',1,'2024-11-12 03:56:08'),(2935,'API_81c1e08421ec5908880a0d858f65a383','飞手-新增飞手信息','飞手-新增飞手信息','cmii-uav-user','/flyer/addFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:32'),(2936,'API_85eb4f45e9968afe2a983c95ebcd8858','飞手-编辑飞手信息','飞手-编辑飞手信息','cmii-uav-user','/flyer/updateFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:42'),(2937,'API_bdccda43feeb0bd3450fa97882968d44','飞手-分页查询飞手信息','飞手-分页查询飞手信息','cmii-uav-user','/flyer/queryPageFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:24'),(2938,'API_910d5ed8cccbe03c2627d001dd126e6b','飞手-注销飞手信息','飞手-注销飞手信息','cmii-uav-user','/flyer/cancellationFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:26'),(2939,'API_e9ad7513848fe2abf3898c8893766e01','飞手数据字典-查询合格证等级','飞手数据字典-查询合格证等级','cmii-uav-user','/flyer/queryCertificateLevel','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:21'),(2940,'API_ff107246c0528de2d6e8ca2611de5659','飞手数据字典-查询飞手违规类型','飞手数据字典-查询飞手违规类型','cmii-uav-user','/flyer/queryViolationType','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:44'),(2941,'API_f6d98f98ddf021b4e68e5ee6cf485f29','飞手数据字典-查询飞手违规处罚','飞手数据字典-查询飞手违规处罚','cmii-uav-user','/flyer/queryViolationPenalty','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:20'),(2942,'API_1090f162960dd6510daacf0fa4cd82b7','飞手-手动验证飞手信息','飞手-手动验证飞手信息','cmii-uav-user','/flyer/checkFlyerInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:43'),(2943,'API_6dec08acb3a67d9891f580acced31157','飞手-根据id查询飞手信息','飞手-根据id查询飞手信息','cmii-uav-user','/flyer/getFlyerById','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:32'),(2944,'API_0026ba25d9100c225ea798b6406e92e3','飞手-根据id查询飞手信息用于编辑','飞手-根据id查询飞手信息用于编辑','cmii-uav-user','/flyer/getFlyerForEdit','GET',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:34'),(2945,'API_d7e9c45b91a5dbfed4e918e6d9351af3','飞手违规-录入飞手的违规记录','飞手违规-录入飞手的违规记录','cmii-uav-user','/flyer/addIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:22'),(2946,'API_bf9d49687be6013694a2003c833c940b','飞手违规-编辑飞手的违规记录','飞手违规-编辑飞手的违规记录','cmii-uav-user','/flyer/updateFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:38'),(2947,'API_2f3ee3aa76f7fd716d136764c9f24951','飞手违规-分页查询飞手的违规信息','飞手违规-分页查询飞手的违规信息','cmii-uav-user','/flyer/queryPageIllegal','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:28'),(2948,'API_49d7922291aa900378bb7a8dc75a2a11','飞手违规-根据id查询飞手违规信息','飞手违规-根据id查询飞手违规信息','cmii-uav-user','/flyer/queryFlyerIllegalById','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:19'),(2949,'API_f3b016b098a0ff37dca34b05ee67aef3','飞手违规-手动处理飞手违规信息','飞手违规-手动处理飞手违规信息','cmii-uav-user','/flyer/dealFlyerIllegalInfo','POST',_binary '\0',_binary '\0','2022-07-08 06:24:56',1,'2024-11-06 12:16:36'),(2950,'API_43a6d9d4648b716b6e4952b20eb2a04b','测试锁与事物','','cmii-uav-user','/api/uav/uavTestPO/testLockAndTrans','POST',_binary '\0',_binary '\0','2022-07-25 07:59:56',1,'2024-11-06 12:16:36'),(2951,'API_3148113e1fd6e767775edbc659344963','数据权限升级3.2.6','','cmii-uav-user','/api/uav/group-sync/dbMygration3_2_6','PUT',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-11-06 12:16:33'),(2952,'API_f6a5aeaac5b06b81000a77d71f23a474','查询权限组应用范围的详细列表','','cmii-uav-user','/api/uav/group-template/listScopeTemplates','POST',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-11-06 12:16:31'),(2953,'API_62f0c326f1123b42b06be36add8eed87','删除默认模板模板','','cmii-uav-user','/api/uav/group-template/deleteDefault','POST',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-11-06 12:16:39'),(2954,'API_5dfe79389effe7386b69be9f0b878478','删除模板','','cmii-uav-user','/api/uav/group-template/delete','POST',_binary '\0',_binary '\0','2022-07-25 07:59:58',1,'2024-11-06 12:16:21'),(2955,'API_5d12314b254928c27af51bef8cd0b0bf','查询基础设施总量','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/tower/query_all_tower_num','POST',_binary '\0',_binary '\0','2022-07-25 08:00:04',1,'2024-11-13 12:23:35'),(2956,'API_aafbe01fd349f681d798e4be28ee8f78','查询三维航线自动规划结果','','cmii-uav-mqtthandler','/mqtt/auto_3d_route_plan_result','POST',_binary '\0',_binary '\0','2022-07-25 08:00:07',1,'2024-11-07 08:51:28'),(2957,'API_d65e84b87a84c68daaadb46b927164e3','请求三维航线自动规划','','cmii-uav-mqtthandler','/mqtt/auto_3d_route_plan','POST',_binary '\0',_binary '\0','2022-07-25 08:00:07',1,'2024-11-07 08:51:27'),(2958,'API_c399f7b721882e6f9f363f7d69b51edb','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-waypoint','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-07-25 08:00:12',1,'2023-05-04 09:35:55'),(2959,'API_b4f88f53484abe29899574e6f835f847','查询公司范围下的在线无人机,返回map','','cmii-uav-waypoint','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-07-25 08:00:12',1,'2023-05-04 09:35:55'),(2960,'API_c1702248141b368e30b55ccf0ba994d9','根据无人机code列表查询无人机名称详情','','cmii-uav-waypoint','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-07-25 08:00:12',1,'2023-05-04 09:35:56'),(2961,'API_357b0bc1d239e8e7e1a3761b0ddb247a','获取下载码','获取下载码','cmii-uav-material-warehouse','/api/v1/warehouse/item/getDownloadCode','POST',_binary '\0',_binary '\0','2022-07-25 08:00:15',1,'2024-11-11 11:46:08'),(2962,'API_955bc8ebf9581ffacfec2b6d20184ce6','多文件下载','多文件下载,浏览器下载进度显示','cmii-uav-material-warehouse','/api/v1/warehouse/item/files/downloadByCode','GET',_binary '\0',_binary '\0','2022-07-25 08:00:15',1,'2024-11-11 11:46:06'),(2963,'API_d66e93c31b5e312f5b1f73a961fc9ec1','已完成作业,按照天统计','','cmii-uav-mission','/api/uav/mission/mission_info_list/query_mission_count_group_by_day','POST',_binary '\0',_binary '\0','2022-07-25 08:00:19',1,'2024-11-12 01:20:35'),(2964,'API_4aedb56ed7d80fb1f0128d071cb0d143','更新或新建方案','','cmii-uav-surveillance','/surveillance/demonstrate/update_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:11'),(2965,'API_87857fc7cf7c4fba2b56e850db04ebc0','激活演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/active_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:04'),(2966,'API_cbe39b0d7ef8a7fdce895d5b81e51968','批量激活演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/active_list','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:07'),(2967,'API_ccbf0e1dbd576d949fec40cdde7728a1','批量删除方案','','cmii-uav-surveillance','/surveillance/demonstrate/delete_list','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:07'),(2968,'API_c2a365474a79c718b712a9275f84ecda','删除演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/delete_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:09'),(2969,'API_10633a1ddd29cf9b17bd917b8605c04b','用户演示方案单一查询,航线不存在的话,名称返回空','','cmii-uav-surveillance','/surveillance/demonstrate/query_one_plan/{id}','GET',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:05'),(2970,'API_e31b0b8993f09b13321772e7de7a61d1','用户演示方案列表查询,航线不存在的话,名称返回空','','cmii-uav-surveillance','/surveillance/demonstrate/query_list_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:10'),(2971,'API_e9b62ffdc6bb54597bb059f8d0d8d55c','新建预设方案,后台使用','{\n \n \"companyId\": 2,\n \"hangarId\":\"HGR00014813\",\n \"uasId\": \"UAS00011457\",\n \"lineId\": 1584829320528187393,\n \"planType\": 2,\n \"loopTimes\": 1,\n \"presetCode\": \"XG\",\n \"presetName\": \"测温模拟\",\n \"uavVideoId\": 1\n}','cmii-uav-surveillance','/surveillance/demonstrate/create_preset_plan','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:05'),(2972,'API_60e6958c74bf5f0071048416f7a497ca','预设方案新建演示方案','','cmii-uav-surveillance','/surveillance/demonstrate/create_from_preset','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:11'),(2973,'API_ead42bdec92053a1a607716515095cd0','演示视频插入','','cmii-uav-surveillance','/surveillance/demonstrate/insert_video','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:04'),(2974,'API_58399737a04314b8391db33c51307559','选择视频列表','','cmii-uav-surveillance','/surveillance/demonstrate/get_video_list','GET',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:06'),(2975,'API_76e537350fd5572223420a82f6cdda85','startPlanById','','cmii-uav-surveillance','/surveillance/demonstrate/start_plan_by_id','POST',_binary '\0',_binary '\0','2022-08-04 09:45:38',1,'2024-11-12 03:56:09'),(2976,'API_edd0ddac62797aac314de6b4910b2439','给飞行监视提供航线飞行的航线id到航线名称的map','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/get_id_map_name','POST',_binary '\0',_binary '\0','2022-08-04 09:45:39',1,'2023-03-29 09:05:04'),(2977,'API_3944b886d31711968ecff43dc7eb4b86','根据无人机code列表查询无人机名称详情','','cmii-uav-surveillance','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-08-04 09:45:40',1,'2023-03-29 09:05:05'),(2978,'API_a76d872e27d1fb78706b1ca34ca49e0b','给飞行监视提供航线飞行的航线id到航线名称的map','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_id_map_name','POST',_binary '\0',_binary '\0','2022-08-04 09:45:45',1,'2024-11-12 03:52:43'),(2979,'API_f67fe93ff0be5659f0252b9d3b6143e8','根据token获取用户完整信息','','cmii-uav-user','/api/uav/user/profile/completeInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:13',1,'2024-11-06 12:16:37'),(2980,'API_59a73dfca0fffd4fe3d3a4fae3a81a41','根据token获取公司完整信息','','cmii-uav-user','/api/uav/user/profile/completeCompanyInfo','POST',_binary '\0',_binary '\0','2022-08-25 01:48:13',1,'2024-11-06 12:16:29'),(2981,'API_f01b253ea480ec8ef0a03037de81b258','主平台的无人机详情查询接口','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/common/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2024-11-13 12:23:32'),(2982,'API_029a4abfa929bd2549cf764569c67531','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-industrial-portfolio','/surveillance/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2983,'API_b274005c6af7634b53699e63fd08b8bb','查询单个飞机目前最新航迹数据','','cmii-uav-industrial-portfolio','/surveillance/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2984,'API_ac3501733d1251084f6a17c93488169b','查询公司下7日内飞行记录','','cmii-uav-industrial-portfolio','/surveillance/queryHistoryTotal','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2985,'API_76ce7e6d8222a8689d9d9160225cc822','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-industrial-portfolio','/surveillance/queryUavPoints','GET',_binary '\0',_binary '\0','2022-08-29 07:48:21',1,'2022-11-02 09:13:11'),(2986,'API_bed98237ebffa48faec258f2dce76189','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2987,'API_e4e62556ee42411ea978009cd4d6728f','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2988,'API_0c6ab1718cb73c1da9425a48be11a10e','模糊查询包括子公司的无人机型号列表','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2989,'API_cef3b076592ece6f8f9106808348c9a4','查询公司范围下的在线无人机,返回map','','cmii-uav-industrial-portfolio','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2990,'API_26112b8d999dca5fb240f3b0fe79efae','根据无人机编码列表查询对应无人机名称集合','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2991,'API_220a82fb1ca3fbd73bf47d2fb1ed11a8','根据无人机编码批量获取公司信息','','cmii-uav-industrial-portfolio','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2992,'API_c1c77dff96033eed3a158df4afd81f1f','根据无人机code列表查询无人机名称详情','','cmii-uav-industrial-portfolio','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:22',1,'2022-11-02 09:13:11'),(2993,'API_cd450f3b6c3bd21fee51d6e6a6c79ff6','获取项目文件存储路径信息【内部接口】','根据projObjId查询项目文件存储路径信息','cmii-uav-material-warehouse','/api/v1/warehouse/internal/getFilePathV2','POST',_binary '\0',_binary '\0','2022-08-29 07:48:42',1,'2024-11-11 11:46:07'),(2994,'API_73af129ee1e6ed88be893161a74d82a9','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-device','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:46',1,'2024-11-07 09:01:45'),(2995,'API_30b2f1bcb26caed129daa7d90ad3e1f7','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:48:46',1,'2024-11-07 09:01:49'),(2996,'API_19ad0f424e8a0438e9601bc48ae29c37','获取插件配置列表','获取插件配置列表','cmii-uav-cloud-live','/plugin/config/list','GET',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-11-14 02:02:36'),(2997,'API_26f3af4bc58af3cc074a66f40178f27a','解锁流程','解锁流程','cmii-uav-cloud-live','/workflow/config/unlockFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-11-14 02:02:43'),(2998,'API_a3428ce9d39cc8869562f7e35a64751c','删除流程','删除流程','cmii-uav-cloud-live','/workflow/config/removeFlow','POST',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-11-14 02:02:40'),(2999,'API_61d24cd62573c5ab961430663885f8be','模糊查询流程定义','模糊查询流程定义','cmii-uav-cloud-live','/workflow/config/fuzzySearchFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-11-14 02:02:40'),(3000,'API_fea3d3fd980a01a918dc11d5929793b3','查询流程定义详情','查询流程定义详情','cmii-uav-cloud-live','/workflow/config/getFlow','GET',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-11-14 02:02:37'),(3001,'API_62dea4b7dfe4a98e7e694e5eb202901f','校验是否存在','校验是否存在','cmii-uav-cloud-live','/workflow/config/checkIfExist','POST',_binary '\0',_binary '\0','2022-08-29 07:48:50',1,'2024-11-14 02:02:36'),(3002,'API_4fa6c28d58725e69b445a85b697bfb6a','根据code获取用户Token','根据code获取用户Token','cmii-uav-cloud-live','/user/getToken','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:37'),(3003,'API_f7028ddc90bfea28a88864ef7323f4ef','删除视频分片','删除视频分片','cmii-uav-cloud-live','/video/part/delete','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:39'),(3004,'API_d49ce826c20e30b16e6d088667263c91','查询视频分片列表','查询视频分片列表','cmii-uav-cloud-live','/video/part/list','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:40'),(3005,'API_2335ee71c9d71a9303da6ce6d10a1b28','模糊查询视频分片','模糊查询视频分片','cmii-uav-cloud-live','/video/part/fuzzySearch','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:43'),(3006,'API_78bc33e450c01a13ead3a9c468aa1680','流程任务管理-停止任务','流程任务管理-停止任务','cmii-uav-cloud-live','/video/process/task/manage/stopTask','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:43'),(3007,'API_52875ec7bda206cb84a7156a04c5e722','流程任务管理-流程实例列表','流程任务管理-流程实例列表','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:44'),(3008,'API_95003de040144226d1ef4b9147ca19b0','流程任务管理-流程实例详情','流程任务管理-流程实例详情','cmii-uav-cloud-live','/video/process/task/manage/getProcInstanceDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:36'),(3009,'API_ea93128efe8d3e791f52e973041eccbe','流程任务管理-插件任务详情','流程任务管理-插件任务详情','cmii-uav-cloud-live','/video/process/task/manage/getPluginTaskDetail','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:38'),(3010,'API_8573a8935dce7f3a3057e9384878171d','流程任务管理-批量删除任务','流程任务管理-批量删除任务','cmii-uav-cloud-live','/video/process/task/manage/deleteProcList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:36'),(3011,'API_02dc6ee1eecd13a66bdbaec47a2badd0','流程任务管理-重启任务','流程任务管理-重启任务','cmii-uav-cloud-live','/video/process/task/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:42'),(3012,'API_bf6926013144f012735e0be3414cd02a','流程任务管理-插件任务重新启动','流程任务管理-插件任务重新启动','cmii-uav-cloud-live','/video/process/pluginTask/manage/restart','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:40'),(3013,'API_04f140baa805dc6049da1f9f04ae1135','流程任务管理-插件任务停止','流程任务管理-插件任务停止','cmii-uav-cloud-live','/video/process/pluginTask/manage/stop','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:42'),(3014,'API_33604007245ea6cb14132a321ebe459a','流程任务管理-获取流程启动参数样例','流程任务管理-获取流程启动参数样例','cmii-uav-cloud-live','/video/process/task/manage/getWorkFlowParam','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:43'),(3015,'API_577f25983223517c7194672524ae7acb','流程任务管理-实例ID下拉列表','流程任务管理-实例ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getInstanceIds','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:43'),(3016,'API_f8dcca1d25448eb817c485f82df8de75','流程任务管理-关联流程ID下拉列表','流程任务管理-关联流程ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getChainIds','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:43'),(3017,'API_364708d86dc832dcdfc00084859e6ae4','流程任务管理-关联设备ID下拉列表','流程任务管理-关联设备ID下拉列表','cmii-uav-cloud-live','/video/process/task/manage/getDevices','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:44'),(3018,'API_7318e7634544cf7d9f84c55cdf5f4b26','流程任务管理-创建工作流任务','流程任务管理-创建工作流任务','cmii-uav-cloud-live','/video/process/task/manage/startWorkflow','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:40'),(3019,'API_d0cda40fdae23a056c3d311897a3000c','视频回放-获取视频数据日期分布','视频回放-获取视频数据日期分布','cmii-uav-cloud-live','/video/playback/manage/getDataDistribution','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:36'),(3020,'API_61c50d8ae3119b2ec8afd1df6ac3176f','视频回放-获取设备用途列表','视频回放-获取设备用途列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceCategoryList','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:41'),(3021,'API_155bc2bc2165563313f00c1ee11823b1','视频回放-播放M3U8文件','视频回放-播放M3U8文件','cmii-uav-cloud-live','/public/video/playback/manage/playM3u8','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:36'),(3022,'API_70b1e201caeb8a00969a8ba09f987c67','视频回放-通过分享码获取回放Token','视频回放-通过分享码获取回放Token','cmii-uav-cloud-live','/public/video/playback/manage/createToken','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:41'),(3023,'API_4bef90d6e3b82b7530842847039b9e00','视频回放-获取视频设备名称列表','视频回放-获取视频设备名称列表','cmii-uav-cloud-live','/video/playback/manage/getDeviceList','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:42'),(3024,'API_0ee85dc3be7876299bfe6590c172eae2','视频回放-获取视频片段列表','视频回放-获取视频片段列表','cmii-uav-cloud-live','/video/playback/manage/videoList','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:44'),(3025,'API_dd808e40342182fecdcdef172fe18129','视频回放-视频下载','视频回放-视频下载','cmii-uav-cloud-live','/video/playback/manage/download','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:42'),(3026,'API_50065eb835309bf5700e90751a6e8926','视频回放-获取分享码&提取码','视频回放-获取分享码&提取码','cmii-uav-cloud-live','/video/playback/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:37'),(3027,'API_353c4c8462864ce53cc49200b431d42f','删除设备','删除设备','cmii-uav-cloud-live','/device/manage/delete','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:38'),(3028,'API_b68ef2fb20dc815309394b31cc4ab8ec','设备ID列表','设备Id列表','cmii-uav-cloud-live','/device/manage/getDeviceCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:42'),(3029,'API_3f4e598f3a16bce2dfb7232a349ffb29','设备名称列表','设备名称列表','cmii-uav-cloud-live','/device/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:44'),(3030,'API_58fd2384f6e1dc187c559b3468c0f84d','设备分类列表','设备分类列表','cmii-uav-cloud-live','/device/manage/getDeviceCategorys','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:36'),(3031,'API_1a70b9f6e7b28467f52012eb73a879d0','设备列表','设备列表','cmii-uav-cloud-live','/device/manage/list','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:37'),(3032,'API_056744ad78b99b838ea7681cbe7bfc12','设备管理-获取分享码&提取码','设备管理-获取分享码&提取码','cmii-uav-cloud-live','/device/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:39'),(3033,'API_29894462ea9fbe104104c74868677dfd','设备新建','设备新建','cmii-uav-cloud-live','/device/manage/create','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:35'),(3034,'API_b68f84751591de0772e63e54428e1bd8','设备编辑','设备编辑','cmii-uav-cloud-live','/device/manage/edit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:44'),(3035,'API_1d50bbd5d1d01cec51b37cd60469f543','设备详情','设备详情','cmii-uav-cloud-live','/device/manage/detail','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:37'),(3036,'API_0765de93ae28fec1a6779fa040da8b88','批量删除设备','批量删除设备','cmii-uav-cloud-live','/device/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:38'),(3037,'API_5b52fce29f871d36fc05a8b6afb042b8','设备管理-分享码获取直播地址','设备管理-获取直播地址','cmii-uav-cloud-live','/public/device/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:48:51',1,'2024-11-14 02:02:39'),(3038,'API_a5719d1123283d1e242f1c563d557ad5','获取单个无人机目前的航迹,不包含态势数据','','cmii-uav-mission','/surveillance/queryUavPoints','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3039,'API_d2a24e0cbd110e86a33afc74244aa585','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-mission','/surveillance/querySinglePlaneTrack','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3040,'API_ccf2aac45e5cd3468cfd2dd3d12c5faa','查询单个飞机目前最新航迹数据','','cmii-uav-mission','/surveillance/queryRealTimeInfo','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3041,'API_0c47bcc04803f6ef0f79e4096887000e','查询公司下7日内飞行记录','','cmii-uav-mission','/surveillance/queryHistoryTotal','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-06-14 09:59:34'),(3042,'API_dc06c781036908a01203b2f82c2072cb','根据无人机编码批量获取公司信息','','cmii-uav-mission','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3043,'API_edcba3f145d190f294ad654fd2ef954b','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-mission','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3044,'API_c1a2687c9efa5194cea2cacf09e117d1','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-mission','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3045,'API_40c27c1e3c1b68bbbb9de245e527b011','模糊查询包括子公司的无人机型号列表','','cmii-uav-mission','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-08-29 07:48:57',1,'2023-07-18 04:08:27'),(3046,'API_2ce28001c4d9a5238e5ab11944866b24','无人机航线飞行,提供航线id','','cmii-uav-mission','/surveillance/uav_command/waypoint_fly_with_lineId','POST',_binary '\0',_binary '\0','2022-08-29 07:48:58',1,'2023-06-14 09:59:35'),(3047,'API_705cb25d7c67c44404b669f6721a52c1','无人机航线飞行,直接使用航线数据','','cmii-uav-mission','/surveillance/uav_command/waypoint_fly_with_Waypoints','POST',_binary '\0',_binary '\0','2022-08-29 07:48:58',1,'2023-06-14 09:59:35'),(3048,'API_ea0f320f2901ba1ebabde0585c4272e1','测试Path','','cmii-uav-user','/api/uav/open/test/path/{id}/{name}','GET',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:31'),(3049,'API_7e60af46b731c179e5188f9c0188680d','测试POSTNONE','','cmii-uav-user','/api/uav/open/test/post-none','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:20'),(3050,'API_5cc56cc9afa7bf9e2ec54352f382ada4','测试FORMDATA','','cmii-uav-user','/api/uav/open/test/post-formdata','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:38'),(3051,'API_964ba6c9abf68c6ace77e84cbbfd14f9','测试urlencoded','','cmii-uav-user','/api/uav/open/test/post-urlencoded','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:26'),(3052,'API_5c7f2d3d72c39db6a34cb156ded9b918','测试POST RAW','','cmii-uav-user','/api/uav/open/test/post-raw','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:39'),(3053,'API_f67edf288f69ba95fdc77651546c81ff','测试文件','','cmii-uav-user','/api/uav/open/test/file','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:33'),(3054,'API_f1634b099f9554ea1c89718d80d48ce7','测试文件集合','','cmii-uav-user','/api/uav/open/test/files','POST',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:31'),(3055,'API_830e06b0ffab162b8098cf8fa123db8c','测试Get','','cmii-uav-user','/api/uav/open/test/get','GET',_binary '\0',_binary '\0','2022-08-29 07:49:12',1,'2024-11-06 12:16:41'),(3056,'API_3d6c07168fd0f82833abc7a14956160a','视频回放-播放MP4文件','视频回放-播放MP4文件','cmii-uav-cloud-live','/public/video/playback/manage/playMp4','GET',_binary '\0',_binary '\0','2022-09-06 01:06:34',1,'2024-11-14 02:02:38'),(3057,'API_66d3086097c78c3b1182bce907a257a8','fetchHtml','','cmii-uav-surveillance','/dictionary/fetch_html_from_url','GET',_binary '\0',_binary '\0','2022-09-06 07:36:30',1,'2022-09-07 08:06:56'),(3058,'API_e988e6d2e3318ccc140dd9c29bc43325','下载联系人模板文件','','cmii-uav-emergency','/sms/download','GET',_binary '\0',_binary '\0','2022-09-07 07:41:18',1,'2024-10-20 12:54:32'),(3059,'API_5188c20f05cc6db8a4f7ecc111f9b133','导入excel','导入excel','cmii-uav-emergency','/sms/import','POST',_binary '\0',_binary '\0','2022-09-07 07:41:18',1,'2024-10-20 12:54:32'),(3060,'API_dcba6310aa8344b089dc27b3c1bd2125','新版APP端航线分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list_new','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-11-12 03:52:41'),(3061,'API_481c60c888f5446f220d74324edbfd85','新版APP端航线按用户ID分页查询','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_page_list_by_uid_new','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-11-12 03:52:42'),(3062,'API_ac73dad2f506c5e73d434a31b2447bbf','新版获取航点列表信息','点击某一条航线返回对应的航点列表信息','cmii-uav-waypoint','/api/uav/waypoint/app/airpoint_info_list_new','GET',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-11-12 03:52:42'),(3063,'API_24ed791e091da896b2a64617258deaa3','新版更新航线和航点信息','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_with_airpoints_new','PUT',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-11-12 03:52:40'),(3064,'API_66e16c35d10ee768c75351d437b6ce4e','新版创建航线和航点信息','打点完成提交到数据库,航线和航点同时保存','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_with_airpoints_new','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-11-12 03:52:41'),(3065,'API_1f25833aa9b7920a6efa2372ae41f1c1','批量删除和删除','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info','DELETE',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-11-12 03:52:41'),(3066,'API_d880d01ac6966287f42329f096fc8359','复制航线','','cmii-uav-waypoint','/api/uav/waypoint/app/airline_info_clone','POST',_binary '\0',_binary '\0','2022-09-14 06:49:50',1,'2024-11-12 03:52:40'),(3067,'API_d82f64965d04ab2fc2aa695cb4c4dc7d','导出联系人','','cmii-uav-emergency','/sms/export','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:32'),(3068,'API_ffac41a268ab1b861423722332a7266c','按无人机获取短信发送情况','','cmii-uav-emergency','/sms/getSmsHistory','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:31'),(3069,'API_03030549a50578cebbebd087bf34175d','按无人机获取短信发送统计','','cmii-uav-emergency','/sms/getSmsTotal','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:31'),(3070,'API_68aab1e1795587801a8255e353a810ca','查询所有联系人','','cmii-uav-emergency','/sms/queryAll','GET',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:32'),(3071,'API_d67efef5a061a0e4f7a70ad64652d866','新增群组','','cmii-uav-emergency','/smsGroup/add','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:32'),(3072,'API_65562093af4fbfed0031d24e8614bc60','批量删除','传入主键','cmii-uav-emergency','/smsGroup/delete','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:32'),(3073,'API_d39f864e919dff0c0e2c1d071d34b3ad','获取所有群组','','cmii-uav-emergency','/smsGroup/query','GET',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:31'),(3074,'API_ed97e94c37eafdfca025c8f41886e730','绑定群组','','cmii-uav-emergency','/smsGroup/bound','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:32'),(3075,'API_74e01cd532eb1af9f41dba6ec794774e','编辑成员','传入区域json字符串,需要有主键','cmii-uav-emergency','/smsGroup/edit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:39',1,'2024-10-20 12:54:32'),(3076,'API_a81eadbcceb1e1c753cdef23bf82bdcc','提交申请','','cmii-suav-supervision','/app/flightPlan/submit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:34'),(3077,'API_e91ca6c38d721b7e6f74a656e86c0cec','判断飞行计划名称是否重复','','cmii-suav-supervision','/app/flightPlan/judgeName','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:33'),(3078,'API_11a73dc8b76daededb65c2e4f8948893','查询所有机场','','cmii-suav-supervision','/app/zydAirport/listAirport.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:33'),(3079,'API_787edcb3bd52a47c6bf392d4013cb725','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/flightPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:36'),(3080,'API_4b187a6cba53f7a007a811c06a14819f','编辑修改飞行计划','传入区域json字符串,需要有主键','cmii-suav-supervision','/app/flightPlan/edit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:36'),(3081,'API_1a7237617f1bf56ce287d8a06bbe4993','查询飞行计划详情','传入区域主键','cmii-suav-supervision','/app/flightPlan/detail','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:31'),(3082,'API_6649121fea2dda521df4237f14bf0cad','规划带状航线','','cmii-suav-supervision','/app/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:36'),(3083,'API_de5f42db49b0d865b0aeb5f8874fce45','获取ip经纬度','','cmii-suav-supervision','/app/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:36'),(3084,'API_595d7d29899f86b0230d63e573fff06a','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/app/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:34'),(3085,'API_5721a50d39dc51ee5d1038ba7368176a','查询高度和时间有重叠部分的临时空域和限制空域-n','传入参数为zydAreaLimit实体对象','cmii-suav-supervision','/app/zydAirspace/queryZydAreaLimitByCondition.do','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:36'),(3086,'API_565375536d3767e9c6dfef29fd18441b','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/app/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:36'),(3087,'API_f44fdebc9ce405f9b507205523fa800c','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/app/zydAirspace/getAirspaceAndLimit.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2023-05-04 09:35:22'),(3088,'API_beaa94e36a60af0d81e1efa0144f9a70','删除飞行计划','传入区域申请主键','cmii-suav-supervision','/app/flightPlan/delete','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:34'),(3089,'API_d644e1c9a80fe1ac5a6697902794e32b','申报飞行计划','','cmii-suav-supervision','/app/flightPlan/save','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:31'),(3090,'API_85df2c8534344ed605af130a15e7acd8','分页查询','','cmii-suav-supervision','/app/flightPlan/query','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:31'),(3091,'API_554fd3826aeb0680465248b3fef7f018','规划带状航线','','cmii-suav-supervision','/flightPlan/getStrapLine','POST',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:30'),(3092,'API_80c3f20e24dfcfe8ca7c100a3af819b1','获取ip经纬度','','cmii-suav-supervision','/flightPlan/getLoction','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:31'),(3093,'API_38165104c0377341bbf83dda38d05c42','根据公司id获取飞行计划','','cmii-suav-supervision','/flightPlan/getByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:47',1,'2024-11-06 12:18:32'),(3094,'API_a3b807460228cc9c19b4a1fa28f29c3a','获取机场区域以及禁飞区 Wgs84','','cmii-suav-supervision','/zydAirspace/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2024-11-06 12:18:32'),(3095,'API_4acf2172bd1378c87fd28cf796811d06','根据无人机编码批量获取公司信息','','cmii-suav-supervision','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3096,'API_2943ae86f728d3fb0a21a977ad92893d','查询公司/机构所属的在线无人机列表','','cmii-suav-supervision','/api/uav/plane/queryUavOnlineByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3097,'API_cdfef52098f7a76e8a6b745217a0dd2c','查询公司范围下的在线无人机,返回map','','cmii-suav-supervision','/api/uav/plane/query_online_uav_code_and_name','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3098,'API_15168df5a37da133d2032ec495f60029','无人机绑定的载荷列表查询','','cmii-suav-supervision','/api/uav/plane/queryBoundByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3099,'API_acbf264ae685dc000f259078e186d9ee','统计公司/所属机构获取无人机数量','','cmii-suav-supervision','/api/uav/plane/queryUavCountByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3100,'API_a93a2d6777744a88ebb25f8ac2c884ea','根据无人机类型查询公司有的无人机类型详细信息','','cmii-suav-supervision','/api/uav/plane/queryUavInfoDetailByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3101,'API_c55fc10d869ab09bfd1a4c175b3f7553','新增无人机','','cmii-suav-supervision','/api/uav/plane/addUavPlane','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3102,'API_fabcc5be3c3d78330868243bf89b760e','修改无人机','','cmii-suav-supervision','/api/uav/plane/updateUavPlane','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3103,'API_8bee24a7aacf285f3810c9d5f3ff14be','通过无人机设备号查询无人机编码','','cmii-suav-supervision','/api/uav/plane/queryUavCodeByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3104,'API_f74610bb7038d511a3fc4f6fc2a359f1','通过无人机编码查询无人机编码设备号','','cmii-suav-supervision','/api/uav/plane/queryDeviceNoByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3105,'API_122828ac3b089cc373ac8609496d972c','check在数据字典里面设备类型的编码和名称是否一致','check在数据字典里面设备类型的编码和名称是否一致','cmii-suav-supervision','/api/uav/plane/checkDevModelMapingInRedis','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3106,'API_a1a7b1c213dc0095f4152522e321b22e','载荷绑定的无人机编码查询','','cmii-suav-supervision','/api/uav/plane/queryBoundByDevNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3107,'API_f259f9a38e27bb8d3881c75dcccaa9fa','check设备类型是否匹配','','cmii-suav-supervision','/api/uav/plane/checkDevTypeMatch','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3108,'API_4bfbd596ce8d6d2ad57fdb04152c6d6b','check设备动作是否匹配','','cmii-suav-supervision','/api/uav/plane/checkDevActionMatch','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3109,'API_6a240e9afd8f1654fc34b6da004f6a8c','设备数据字典和匹配校验','','cmii-suav-supervision','/api/uav/plane/checkDevMappingMatch','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3110,'API_6781afc541edca9d88720130ed406151','根据无人机编码获取公司信息','','cmii-suav-supervision','/api/uav/plane/queryCompanyByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3111,'API_473952e62b6ad18c5dcf7afda46f4d5f','统计公司/所属机构的设备(无人机,载荷,机库)使用数量','','cmii-suav-supervision','/api/uav/plane/queryDevCountByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3112,'API_7679922787637789080feaf2a8763429','根据无人机code列表查询无人机名称详情','','cmii-suav-supervision','/api/uav/plane/queryUavInfoList','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3113,'API_2abd024c80fd72ccaf0384ec2791dbc6','生成新无人机编码','','cmii-suav-supervision','/api/uav/plane/newUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3114,'API_0625cc1b8233918e24a5d7872dbb195d','查询无人机是否可用','','cmii-suav-supervision','/api/uav/plane/queryUavUseStat','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3115,'API_a1d9b8aa36c90b0b760c66b85fd49a1c','查询设备在线状态','','cmii-suav-supervision','/api/uav/plane/queryDevOnlineStat','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3116,'API_eafa98b96fb927ac25dde6e3e443db48','设置无人机在线状态','','cmii-suav-supervision','/api/uav/plane/updateOnlineStat','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:23'),(3117,'API_94f86ba6ffdf3170cfa0404d2f949f8a','查询无人机总飞行时长','','cmii-suav-supervision','/api/uav/plane/queryUavflyTotal','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3118,'API_2e5c88f06b234d5949350ef5e58c9611','查询该公司有的无人机类型详细信息','','cmii-suav-supervision','/api/uav/plane/queryUavModelDetailByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3119,'API_a050bec90e57c58c84e605b65d6681f8','查询公司所属的无人机类型匹配的載荷和机库类型类别','','cmii-suav-supervision','/api/uav/plane/queryTypeMatchByUavModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3120,'API_00ecf3055251b4a95b8e3d164b3f7a5c','查询公司/机构所属的无人机编码列表','','cmii-suav-supervision','/api/uav/plane/queryUavByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3121,'API_10b9d8b0e0259b9b6a978d16cc6bbb0f','模糊查询可用状态列表','','cmii-suav-supervision','/api/uav/plane/queryUseStatByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3122,'API_f020c4e1593d208b6865701167c0ed1a','根据设备类型和编码查询编码对应的可用状态信息','','cmii-suav-supervision','/api/uav/plane/queryDevicesState','POST',_binary '\0',_binary '\0','2022-09-20 06:56:48',1,'2023-05-04 09:35:24'),(3123,'API_a98fd3fe9a9179cd200d92040d2d1af3','按无人机编码查询无人机详情查询','','cmii-suav-supervision','/api/uav/plane/queryDetailByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3124,'API_a2a12a3207158129e74acc5ec5f54bf0','按无人机编码查询无人机详情查询不用公司id','','cmii-suav-supervision','/api/uav/plane/queryDetailByUavCodeWithoutCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3125,'API_30149f9fc317d554729748e1f408fd4e','按无人机设备号查询无人机详情查询','','cmii-suav-supervision','/api/uav/plane/queryDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3126,'API_45fa4b4e52ced31b703357778292eb4a','根据无人机编码查询该无人机是否存在','','cmii-suav-supervision','/api/uav/plane/queryUavByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3127,'API_b58aae9a77c9af3da4623539a1acbf01','根据无人机编码列表查询对应无人机名称集合','','cmii-suav-supervision','/api/uav/plane/queryUavNamesByUavCodes','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:23'),(3128,'API_3b0804cc075a3563b476efb529e8a885','模糊查询在线无人机编码和机库编码列表','','cmii-suav-supervision','/api/uav/plane/queryDevOnlineCodeList','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3129,'API_cb1e18a5ec6857dd43fddc5b25e69a0f','无人机列表绑定的载荷列表详情查询','','cmii-suav-supervision','/api/uav/plane/queryBoundDetailByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3130,'API_ca3f0da125af208e8e5a4b8f72f60e59','通过设备号查询无人机列表绑定的载荷列表详情','','cmii-suav-supervision','/api/uav/plane/queryBoundDetailByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3131,'API_46768a96fe3cae5f39c2b7129884a28a','根据设备号获取公司信息','','cmii-suav-supervision','/api/uav/plane/queryCompanyByDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3132,'API_cce93619ff4c797e37b6db38adf266fa','无人机绑定的摄像头信息查询','','cmii-suav-supervision','/api/uav/plane/queryBoundCameraByUavDeviceNo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3133,'API_8a34ef12f9a4c6f1f3e6477e226c1a2b','无人机绑定的摄像头推流信息','','cmii-suav-supervision','/api/uav/plane/queryUavPushStreamByUavDeviceNo','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3134,'API_f5c057836071a96031d6615c539f888d','无人机列表绑定载荷载荷视频详情查询','','cmii-suav-supervision','/api/uav/plane/queryBoundVideoByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3135,'API_8ee4c98c29092a4904836fff22a6a42a','设置无人机上线','','cmii-suav-supervision','/api/uav/plane/setUavOnline','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3136,'API_aa89d1fe1048818d2e7ed8fb4e2cc0f5','获取游客的无人机设备列表','','cmii-suav-supervision','/api/uav/plane/queryVisitorUavList','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3137,'API_a95964738bc27d742f6daee758bea94a','按无人机编码查询无人机是否是真机','','cmii-suav-supervision','/api/uav/plane/queryUavRealByUavCode','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3138,'API_2ebfe1a257233013264d1c68a92e10c7','查询无人机在线状态','','cmii-suav-supervision','/api/uav/plane/queryUavOnlineStat','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3139,'API_db526db3c60b73c6725fada5565fd8e0','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-suav-supervision','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3140,'API_7d13979d23a0e701b5a6392f19f9e40c','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-suav-supervision','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3141,'API_c4245c042a947a79419c520534dc76ac','模糊查询包括子公司的无人机型号列表','','cmii-suav-supervision','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:56:49',1,'2023-05-04 09:35:24'),(3142,'API_ff03f13970f20c0e51449949e927e4d5','新增监管c端用户','','cmii-uav-user','/suav/user/addSuavUser','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:41'),(3143,'API_a0b65682063c35efd520b44995097ed8','修改监管c端用户状态','','cmii-uav-user','/suav/user/updateStatus','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:28'),(3144,'API_d09b9be867388010f4c94a0127646390','申请认证','','cmii-uav-user','/suav/user/applyCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:31'),(3145,'API_c90bd0cbee2ae40d2715645334a50099','同意认证申请','','cmii-uav-user','/suav/user/accessCertification','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:33'),(3146,'API_767865024b31f2cc03953ddc45cb9986','c端用户列表查询','','cmii-uav-user','/suav/user/query','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:23'),(3147,'API_5e588f2d947d9cb90f1cdb7244895d33','给C端用户重置密码','','cmii-uav-user','/suav/user/updateUserPassword','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:40'),(3148,'API_bd5c59c02d7670b42f87a39c5f58ba4d','生成公司的临时编码','','cmii-uav-user','/suav/user/companyTempCode','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:25'),(3149,'API_443053f0d52c871c8809c1210ffbc30c','数据字典,获取认证状态','','cmii-uav-user','/suav/user/certificationStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:21'),(3150,'API_415be5b2e4186edf2a5ba6421a8967d9','数据字典,获取用户状态','','cmii-uav-user','/suav/user/userStatuses','GET',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:42'),(3151,'API_f0e478dab04650e2e027f8c8f30035b9','获取c端用户详细信息(用户id与公司编码)','','cmii-uav-user','/suav/user/getUserDetail','POST',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:38'),(3152,'API_ff389cb2e6843421dc7f59b66a8388e8','获取c端用户详细信息','','cmii-uav-user','/suav/user/getUserInfo','GET',_binary '\0',_binary '\0','2022-09-20 06:56:54',1,'2024-11-06 12:16:34'),(3153,'API_69fa4c56baaa3a151d8a3daf2a3cb598','根据公司id查询公司下面的子公司','','cmii-uav-user','/clients/org/children','GET',_binary '\0',_binary '\0','2022-09-20 06:56:56',1,'2024-11-06 12:16:21'),(3154,'API_b7e269c10d3ab76b12a3038fc9e22522','根据公司id查询公司的第一级公司','','cmii-uav-user','/clients/org/getRoot','GET',_binary '\0',_binary '\0','2022-09-20 06:56:57',1,'2024-11-06 12:16:19'),(3155,'API_393129d75226ae65ec07e5a15b387e30','根据用户名获取账号信息','','cmii-uav-user','/clients/suav/user/getUserDetail','GET',_binary '\0',_binary '\0','2022-09-20 06:56:57',1,'2024-11-06 12:16:39'),(3156,'API_5e2219afa205079c20f73ff616f5387d','演示视频上传','','cmii-uav-surveillance','/surveillance/demonstrate/upload_video','POST',_binary '\0',_binary '\0','2022-09-20 06:57:00',1,'2024-11-12 03:56:05'),(3157,'API_3b81b17d2582a9b8efa8a76f68c05030','获取演示视频上传信息','','cmii-uav-surveillance','/surveillance/demonstrate/get_video_upload_information','GET',_binary '\0',_binary '\0','2022-09-20 06:57:00',1,'2024-11-12 03:56:12'),(3158,'API_24309755083d7d92f51e5af34438a679','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-surveillance','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-09-20 06:57:08',1,'2023-03-29 09:05:05'),(3159,'API_9633cd7f63709ef2d7eb6d0eaa504277','模糊查询包括子公司的无人机型号列表','','cmii-uav-surveillance','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:57:08',1,'2023-03-29 09:05:05'),(3160,'API_aa68587468f95fe82764bb2c226c65c3','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-surveillance','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:08',1,'2023-03-29 09:05:05'),(3161,'API_7e299e619935dfd731575cced8b56ef5','根据无人机编码批量获取公司信息','','cmii-uav-surveillance','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:09',1,'2023-03-29 09:05:05'),(3162,'API_ba95daa3c52411b9096d22762ce4a16a','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:20',1,'2024-11-06 12:16:54'),(3163,'API_d842a15fca6ec652fce80b67e839520b','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/plane/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:57:20',1,'2024-11-06 12:16:47'),(3164,'API_6f49cba78d3c4c873caff17cda442ea4','根据类型模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:22',1,'2024-11-06 12:16:53'),(3165,'API_a0fc4192b4bce535e26df2633ea71d6a','根据生产厂商模糊查询类型和生产厂家对应map','','cmii-admin-data','/api/admin/model/cam/queryModelMnfFromMnf','GET',_binary '\0',_binary '\0','2022-09-20 06:57:22',1,'2024-11-06 12:16:49'),(3166,'API_7e6ae7bfc7c316e0d433aee96ffff5cf','飞行记录分页查询列表','','cmii-uav-mqtthandler','/fly_log/fly_log_page_list_with_filters','POST',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-11-07 08:51:31'),(3167,'API_41cc9a594f177b3528aba0873185bd11','飞行记录详情','','cmii-uav-mqtthandler','/fly_log/fly_history','GET',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-11-07 08:51:30'),(3168,'API_db4927532c5d7ada16bb535af75ead29','导出通信名单','','cmii-uav-mqtthandler','/fly_log/fly_sms_names','GET',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-11-07 08:51:29'),(3169,'API_039d465187dacce4a9796ed95dc941f3','批量删除飞行记录','','cmii-uav-mqtthandler','/fly_log/fly_history','DELETE',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-11-07 08:51:27'),(3170,'API_76c32eeba777e78da75efac5c2d833fc','下载飞行记录MP4视频','','cmii-uav-mqtthandler','/fly_log/fly_log_mp4','GET',_binary '\0',_binary '\0','2022-09-20 06:57:27',1,'2024-11-07 08:51:27'),(3171,'API_2045f78fe1943db815e9203754930002','模糊查询包括子公司的无人机型号列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:21'),(3172,'API_75b78386575ade400c25dc308db99156','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-mqtthandler','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:21'),(3173,'API_56f48f84534c319b8dc6071d8d0a1b3b','根据无人机编码批量获取公司信息','','cmii-uav-mqtthandler','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:22'),(3174,'API_d40d0548dd249eba986adc7640d703c4','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-mqtthandler','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-09-20 06:57:29',1,'2023-05-04 09:36:22'),(3175,'API_0c896719736a178e9edf4670291c333e','新建任务-单位下拉列表','新建任务-单位下拉列表(自身及子公司)','cmii-uav-process','/process/task/manage/queryChildWithOwnUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3176,'API_badf434ff9d68bed3167b2281e985f9f','新建任务-任务名称是否已存在','新建任务-任务名称是否已存在','cmii-uav-process','/process/task/manage/isExistTaskName','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3177,'API_62e21c821e3740f2918b086b71cc2d57','任务管理-派发单位下拉列表','任务管理-派发单位下拉列表','cmii-uav-process','/process/task/manage/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3178,'API_ba6c8739137a398a525cb5c0ce178924','接收单位下拉列表','接收单位下拉列表','cmii-uav-process','/process/task/manage/queryAcceptUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3179,'API_e183c185836be177513c41d6246c471d','任务名称下拉列表','任务名称下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderNameList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3180,'API_cf33d53097f1c8df6caf8c970b6e5cf8','任务列表','任务列表','cmii-uav-process','/process/task/manage/queryTaskOrderList','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3181,'API_5e6ebf3a52b9c513518de86b3c5e3d31','查询工单状态下拉列表','查询工单状态下拉列表','cmii-uav-process','/process/task/manage/queryTaskOrderStatusList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3182,'API_c8a558c4664e0aa2c44aa4c35555355f','任务详情','任务详情','cmii-uav-process','/process/task/manage/queryTaskOrderDetail','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3183,'API_853387ffa0d8144515d87609a27066ea','流程进度','流程进度','cmii-uav-process','/process/task/manage/queryProgress','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3184,'API_0f10dcdb82f9057af49482767f33d284','备注列表','备注列表','cmii-uav-process','/process/task/manage/queryRemarkList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3185,'API_9b4c8009e239130dc492da82723dc1c3','活动日志列表','活动日志列表','cmii-uav-process','/process/task/manage/queryActivityLog','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3186,'API_5502a36a40c778b245ae28c6fda8e208','获取分享码','获取分享码','cmii-uav-process','/process/task/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3187,'API_c1d8b8f5139a674e8d5bce56b3ea9bf6','新建任务','新建任务','cmii-uav-process','/process/task/manage/createTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3188,'API_ab7a976cd1a7d4d60097caea1b4d22d4','新建任务-任务类型下拉列表','新建任务-任务类型下拉列表','cmii-uav-process','/process/task/manage/queryTaskTypes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3189,'API_b00e0773a4350108b4aff52efa5dc2cd','查询任务类型列表','查询任务类型列表','cmii-uav-process','/process/task/common/queryTaskTypeList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3190,'API_1655e22e5646825c5fbd6e9c4f0a8d6e','通过分享码获取工单信息','通过分享码获取工单信息','cmii-uav-process','/public/process/task/manage/getTaskInfoByShareCode','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3191,'API_6305f358e44e33a38c3dec5fc6856c0b','查询某个任务类型关联任务列表(未完结任务)','查询某个任务类型关联任务列表','cmii-uav-process','/process/task/common/queryTaskList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:54'),(3192,'API_50c5db92bdedc354bdbd39b4b4f347a2','下级单位列表','下级单位列表(任务转派)','cmii-uav-process','/process/task/common/queryChildUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3193,'API_86160a1efa6f90824c0e01f7447d8649','任务类型列表','任务类型列表','cmii-uav-process','/process/task/config/queryTaskTypeList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3194,'API_b534eac3ef1568a0825fae7799621e66','接口单位列表','接口单位列表(company-scope)','cmii-uav-process','/process/task/config/queryUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3195,'API_558988e49b55fce10211c60d44cebc32','接口人列表','分页查询接口人列表','cmii-uav-process','/process/task/config/queryContactPersonList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3196,'API_22efdcedf5b1c33ae42e24c4b3c8574f','新建接口人','新建接口人','cmii-uav-process','/process/task/config/createContactPerson','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3197,'API_c68009430dc1db2573d96872c0602437','可选接口人列表','可选接口人列表','cmii-uav-process','/process/task/config/queryOpContactPersonList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3198,'API_d4bb356f3b244688eeb50b3590d42feb','修改接口人','修改接口人','cmii-uav-process','/process/task/config/modifyContactPerson','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3199,'API_675b982c8fa99f1d578dfbbfa1ffd8a5','任务信息列表','任务信息列表','cmii-uav-process','/process/task/config/queryTaskInfoList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3200,'API_eefe61309016362694f2043f29bf5f7c','启停任务类型','启停任务类型','cmii-uav-process','/process/task/config/updateTaskStatus','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3201,'API_2d79c7a7000e43219ef3d42df281edd2','新增任务类型','新增任务类型','cmii-uav-process','/process/task/config/addTaskInfo','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3202,'API_960696a7d3e59da77231e92e121b868b','我的待办-派发单位下拉列表','我的待办-派发单位下拉列表','cmii-uav-process','/process/task/mytask/queryDispatchUnitList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3203,'API_e72e93182f82f69b3d90abd268138157','任务列表','任务列表','cmii-uav-process','/process/task/mytask/queryTaskOrderList','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:55'),(3204,'API_2c13bc5552897be9ee785e9c59eafb4a','待办任务-任务名称下拉列表','待办任务-任务名称下拉列表','cmii-uav-process','/process/task/mytask/queryMyTaskOrderNameList','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:57'),(3205,'API_d96009d0d398cf79b03530f0bfe2cebc','模糊搜索用户列表','模糊搜索用户列表(详情-查询关联作业列表-用户列表)','cmii-uav-process','/process/task/mytask/fuzzySearchUsers','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3206,'API_f227179e3d0427c0851d0b1263f915f3','备注','备注(备注任务工单)','cmii-uav-process','/process/task/mytask/remarkTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3207,'API_549d96a51fd03d65c5403a7119c4b462','任务操作','任务操作','cmii-uav-process','/process/task/mytask/operateTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3208,'API_c803dba959c31a6a1dcd5b0db3815f55','任务转派','任务转派','cmii-uav-process','/process/task/mytask/assignTask','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:58'),(3209,'API_7b8131ac7fc3599b06be6bc2d6b1de5c','撤回','撤回','cmii-uav-process','/process/task/mytask/revokeTasOrder','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3210,'API_a9080f5832e65d0d77c22391c8dc4781','关联作业','关联作业','cmii-uav-process','/process/task/mytask/createRelateMission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:59'),(3211,'API_159bc7fdcddcf6e4797d6e2f3858788b','取消关联作业','取消关联作业','cmii-uav-process','/process/task/mytask/deleteRelateMission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:54'),(3212,'API_6ac0ce1d6d36e7d4974f2245170da367','详情-查询关联作业列表','详情-查询关联作业列表(用于选择作业)','cmii-uav-process','/process/task/mytask/queryRelateMissions','GET',_binary '\0',_binary '\0','2022-09-20 06:57:33',1,'2024-09-12 02:46:56'),(3213,'API_27481bc15fdac3ed8bd4aaf9b0367270','查询任务类型集合','查询任务类型集合','cmii-uav-process','/client/taskdispatch/queryTaskTypeMap','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:57'),(3214,'API_10f490ebe891b22cee598c79f627cbfa','查询任务名集合','查询任务名集合','cmii-uav-process','/client/taskdispatch/queryTaskNameMap','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3215,'API_9309bfc518f9f0efe6bd31aebf038617','部署工单模型','部署工单模型型','cmii-uav-process','/client/taskdispatch/deployeeTaskorder','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:59'),(3216,'API_bbce007ee3dd32937395e37735db180d','queryTaskStatus','','cmii-uav-process','/client/taskdispatch/queryTaskStatus','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:54'),(3217,'API_9b0a86c18bd339d27a2b89ab98815f3e','查询任务类型列表','查询任务类型列表','cmii-uav-process','/client/taskdispatch/queryTaskTypes','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:58'),(3218,'API_5f619b28121b671745531c411f10d367','查询某个任务类型关联任务列表','查询某个任务类型关联任务列表','cmii-uav-process','/client/taskdispatch/queryTaskList','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:55'),(3219,'API_7b149af39d0c6d9a095694909dcde07e','创建作业与任务关联关系','创建作业与任务关联关系','cmii-uav-process','/client/taskdispatch/createRelateMission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:57'),(3220,'API_5d425c1dcb7e4c5e5f21f611a678bf72','getDocumentation','','cmii-uav-process','/v3/api-docs','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3221,'API_48730966a2b25b53f7bb703b48b202a2','uiConfiguration','','cmii-uav-process','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:55'),(3222,'API_c18ab41099e26fb9ac52c44df14136c0','swaggerResources','','cmii-uav-process','/swagger-resources','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3223,'API_00faed59b54dd5d393df5697b073d2a1','securityConfiguration','','cmii-uav-process','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:56'),(3224,'API_90addc53fb012539245f320c350821cf','getDocumentation','','cmii-uav-process','/v2/api-docs','GET',_binary '\0',_binary '\0','2022-09-20 06:57:34',1,'2024-09-12 02:46:55'),(3225,'API_624966db1edb3998c42b0a5c44e20555','根据无人机编码获取公司信息','','cmii-uav-device','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-09-20 06:57:42',1,'2024-11-07 09:01:44'),(3226,'API_003e320115e918bea20bde157253cb28','接口测试-御航输电线路图片检测','','cmii-uav-mission','/api/uav/mission/mission_info/yuhang/transmission_test','POST',_binary '\0',_binary '\0','2022-09-20 06:57:50',1,'2024-11-12 01:20:38'),(3227,'API_80e0ee2957c1be6a30bb5dca4d757b04','御航输电线路图片检测','','cmii-uav-mission','/api/uav/mission/mission_info/yuhang/transmission','POST',_binary '\0',_binary '\0','2022-09-20 06:57:50',1,'2024-11-12 01:20:40'),(3228,'API_307356e0c0c4d98826b84c3545ec2733','更新现场情况描述信息','河南环保新增功能','cmii-uav-mission','/api/uav/mission/mission_info/env_site_conditions','POST',_binary '\0',_binary '\0','2022-09-20 06:57:50',1,'2024-11-12 01:20:35'),(3229,'API_59e7c66c1a47492dec6127321db575ca','御航-获取图片AI识别结果','','cmii-uav-mission','/picture/get_picture_ai_detect_info','GET',_binary '\0',_binary '\0','2022-09-20 06:57:51',1,'2024-11-12 01:20:40'),(3230,'API_069b7b8264ee32ab2f2c11f03ff1f979','从紧急降落点再次返航回到机库','','cmii-uav-surveillance','/hangarSurveillance/emergency_point_return','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-11-12 03:56:05'),(3231,'API_8ef253f6e299c243e1501fb30c06883a','结束机库流程','','cmii-uav-surveillance','/hangarSurveillance/end_process','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-11-12 03:56:07'),(3232,'API_aa68e063908305d0cc4ec17bfcb97a75','机库准备 发送航线+自动起飞','','cmii-uav-surveillance','/hangarSurveillance/prepare_auto','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-11-12 03:56:07'),(3233,'API_0569f75c285dd90d4deb28f0e826191a','机库准备 发送航线+手动起飞','','cmii-uav-surveillance','/hangarSurveillance/prepare_manual','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-11-12 03:56:10'),(3234,'API_9dd92ab68f2f29ec6ddccf19e8c103d3','在手动模式下,发送飞行到指定一个点位的命令','','cmii-uav-surveillance','/hangarSurveillance/offer_point_fly','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-11-12 03:56:12'),(3235,'API_dd1eeec6a38545a5d320421499725e47','设置机库RTK host 和 端口','','cmii-uav-surveillance','/hangarSurveillance/RTK_setting','POST',_binary '\0',_binary '\0','2022-10-12 06:23:38',1,'2024-11-12 03:56:05'),(3236,'API_03e838c9e174bfcceda31e3ea9779b28','校验指定公司是否有无人机','','cmii-uav-device','/api/uav/plane/checkUavExit','GET',_binary '\0',_binary '\0','2022-10-12 08:18:10',1,'2024-11-07 09:01:51'),(3237,'API_acf5017faf804920b87979e00de84171','根据无人机编码和名称模糊查询无人机列表','','cmii-uav-device','/api/uav/plane/queryUavList','GET',_binary '\0',_binary '\0','2022-10-12 08:18:13',1,'2024-11-07 09:01:48'),(3238,'API_2dc30254053a86e7e8a7444b6d51fd4a','查询机库id和no信息 无无人机信息; id 和no 提供一个','','cmii-uav-device','/api/device/mqtt/queryHangar','POST',_binary '\0',_binary '\0','2022-10-12 08:18:18',1,'2024-11-07 09:01:48'),(3239,'API_0f60b9ea81c4c20a2645e7a3a03c3f8b','上传文件信息','','cmii-uav-material-warehouse','/tus/files/','POST',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-11-11 11:46:08'),(3240,'API_650156bde3086a0978b09b2625fbd5a9','文件使用确认,HeaderContextHolder需有platform(EPlatformType),根据platform不同还需要companyId,userId','','cmii-uav-material-warehouse','/tus/fileUseConfirm','POST',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-11-11 11:46:09'),(3241,'API_93e8e3290d04c5fd64d997d695bb1f42','文件推流','','cmii-uav-material-warehouse','/tus/files/{uuid}','PATCH',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-11-11 11:46:06'),(3242,'API_24f4d58e2a67c0ef4613012f33c36bb2','获取服务器信息','','cmii-uav-material-warehouse','/tus/files/','OPTIONS',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-11-11 11:46:09'),(3243,'API_d641bbfebdc18c0d400765dd8bda9c95','head请求查询文件','','cmii-uav-material-warehouse','/tus/files/{uuid}','HEAD',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-11-11 11:46:08'),(3244,'API_e10d2170c937de51f7c70381e8961746','minio未成功通知文件恢复','minio未成功通知文件恢复','cmii-uav-material-warehouse','/api/v1/warehouse/item/resume','POST',_binary '\0',_binary '\0','2022-10-12 08:18:38',1,'2024-11-11 11:46:09'),(3245,'API_45f848ce652357b7ca95200f9f4e591e','下发航线到机库,并且设置为默认航线','','cmii-uav-mqtthandler','/mqtt/hangar/send_line_and_set_default','POST',_binary '\0',_binary '\0','2022-10-12 08:18:40',1,'2024-11-07 08:51:27'),(3246,'API_fa2f4f82a310a4c44220bfa6dc5b888a','发送控制命令到复亚机库,解耦后新接口','','cmii-uav-mqtthandler','/mqtt/hangar/command','POST',_binary '\0',_binary '\0','2022-10-12 08:18:40',1,'2024-11-07 08:51:27'),(3247,'API_8b60f36fb11a1502e9ecfdb6eef00426','设置RTK 使用的 host 和 端口','','cmii-uav-mqtthandler','/mqtt/hangar/configure_RTK','POST',_binary '\0',_binary '\0','2022-10-12 08:18:40',1,'2024-11-07 08:51:30'),(3248,'API_99125a4b3087272dbb9f2100805774cc','删除作业里面的媒体文件,可以作业详情使用(带作业id),也可以存储管理使用(不带id)','','cmii-uav-mission','/api/uav/mission/mission_info/getFoiaPicInfos','DELETE',_binary '\0',_binary '\0','2022-10-12 08:18:55',1,'2024-11-12 01:20:34'),(3249,'API_28c81e9577a5f1d24392aa7e1db9a26b','前端截屏车牌图片传到AIPic表','','cmii-uav-mission','/report_and_video/ai_picture_upload','POST',_binary '\0',_binary '\0','2022-10-12 08:18:56',1,'2024-11-12 01:20:34'),(3250,'API_4391d2cb43363a98254497e6eac20870','文件使用','','cmii-uav-mission','/oss/useFile','POST',_binary '\0',_binary '\0','2022-10-12 08:18:56',1,'2024-11-12 01:20:38'),(3251,'API_e59ebfad16bcaff422ec9a8a61d29821','download','','cmii-uav-device','/api/uav/plane/download','GET',_binary '\0',_binary '\0','2022-10-12 09:44:30',1,'2022-11-09 07:20:48'),(3252,'API_6deb1974a304cbd0b6467f899bbded96','删除视频合成任务','删除视频合成任务','cmii-uav-cloud-live','/video/merge/delete','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-11-14 02:02:44'),(3253,'API_4ccf219211d38ebd68e9c6e368087db1','查询视频合成任务列表','查询视频合成任务列表','cmii-uav-cloud-live','/video/merge/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-11-14 02:02:35'),(3254,'API_f02265768ee60978134eb6c0fdd4c591','模糊查询视频合成任务','模糊查询视频合成任务','cmii-uav-cloud-live','/video/merge/fuzzySearch','GET',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-11-14 02:02:43'),(3255,'API_d1df2700051f54772ade26acea82227f','提交视频合成任务','提交视频合成任务','cmii-uav-cloud-live','/video/merge/applyMerge','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-11-14 02:02:39'),(3256,'API_3e0895207c7be89015bcefde78eb9a57','视频合成任务-获取m3u8回放Token','视频合成任务-获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/video/merge/getPlaybackM3u8Token','GET',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-11-14 02:02:38'),(3257,'API_43e420d3de8c15d1d0617823b0f9a59e','获取m3u8文件内容','获取m3u8文件内容','cmii-uav-cloud-live','/video/part/getM3U8','POST',_binary '\0',_binary '\0','2022-10-25 08:29:52',1,'2024-11-14 02:02:38'),(3258,'API_36d9b4a4c15f6443b5dd71dbb4ffe523','结束直播','结束直播','cmii-uav-cloud-live','/broadcast/manage/stop','GET',_binary '\0',_binary '\0','2022-10-25 08:29:53',1,'2024-11-14 02:02:44'),(3259,'API_9693ba0fd7e96c9569226e16649b4ad1','新建直播','新建直播','cmii-uav-cloud-live','/broadcast/manage/create','POST',_binary '\0',_binary '\0','2022-10-25 08:29:53',1,'2024-11-14 02:02:39'),(3260,'API_d044fdf2df50285e3213d06fa76d0264','新建直播-直播名称是否存在','新建直播-直播名称是否存在','cmii-uav-cloud-live','/broadcast/manage/isExistActivityName','GET',_binary '\0',_binary '\0','2022-10-25 08:29:53',1,'2024-11-14 02:02:44'),(3261,'API_f7fda7e00fd5eddd7e5957f71098cdb1','直播列表','直播列表','cmii-uav-cloud-live','/broadcast/manage/list','POST',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:42'),(3262,'API_addbaad28b1c82af748d923725cea518','直播管理-获取直播分享码&提取码','直播管理-获取直播分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:38'),(3263,'API_06551f7a0896b0e26721db1c5b930ab3','直播管理-分享回放(MP4文件)','直播管理-分享回放(MP4文件)','cmii-uav-cloud-live','/public/broadcast/manage/playMp4','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:39'),(3264,'API_49da91b3d7b83dd3fd38463f5440fdd9','进入直播','进入直播(获取直播地址)','cmii-uav-cloud-live','/broadcast/manage/getBroadcastPlay','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:42'),(3265,'API_076b223b478afbc1891bd276ccc64f99','直播名称列表','直播名称列表','cmii-uav-cloud-live','/broadcast/manage/getActivityNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:37'),(3266,'API_12175cae1b75bda31a1fc2b2bd812714','直播列表-直播设备下拉列表','直播列表-直播设备下拉列表','cmii-uav-cloud-live','/broadcast/manage/getDeviceNames','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:42'),(3267,'API_3db55c96df43c268cba13f78a16f9205','批量删除直播','批量删除直播','cmii-uav-cloud-live','/broadcast/manage/deleteBatch','POST',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:43'),(3268,'API_7128d138344e76efe5cee8d4ad8c2f3c','直播管理-分享码获取直播地址','直播管理-获取直播地址','cmii-uav-cloud-live','/public/broadcast/manage/getPlayInfo','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:35'),(3269,'API_b3f1bbc5d260a69bc4c684110aafdeed','直播管理-获取回放分享码&提取码','直播管理-获取回放分享码&提取码','cmii-uav-cloud-live','/broadcast/manage/getPlaybackShareCode','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:42'),(3270,'API_7306ef570af18081e81ed62c8561aff3','通过分享码获取m3u8回放Token','通过分享码获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/public/broadcast/manage/getSharePlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:37'),(3271,'API_2f6e07d9525594c82888280793c4edf9','新建直播-选择视频流设备列表','新建直播-选择视频流设备列表','cmii-uav-cloud-live','/broadcast/manage/create/getDeviceList','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:42'),(3272,'API_d77aa62e4ba0c8f547adfe98b1ee194c','获取m3u8回放Token','获取m3u8回放Token(使用/public/his/playback/m3u8接口回放视频)','cmii-uav-cloud-live','/broadcast/manage/getPlaybackToken','GET',_binary '\0',_binary '\0','2022-10-25 08:29:54',1,'2024-11-14 02:02:40'),(3273,'API_c3022e8b2407f10ff611e6a41c949d9d','根据飞行记录生成作业信息','','cmii-uav-mission','/api/uav/mission/mission_info/import_flight_record','POST',_binary '\0',_binary '\0','2022-10-25 08:30:14',1,'2024-11-12 01:20:35'),(3274,'API_074259ff53741533f18f1c72d8dc262e','获取飞行记录关联无人机名称&无人机型号列表','','cmii-uav-mqtthandler','/fly_log/uav_name_model','GET',_binary '\0',_binary '\0','2022-10-25 08:30:22',1,'2024-11-07 08:51:29'),(3275,'API_9d9f475c9ad87fc840fc2b393ab4f14f','机库急停','','cmii-uav-surveillance','/hangarSurveillance/emergency_stop','POST',_binary '\0',_binary '\0','2022-10-25 08:30:27',1,'2024-11-12 03:56:04'),(3276,'API_ea75a5282e9f7d60384c90a16da5da52','机库复位','','cmii-uav-surveillance','/hangarSurveillance/reset','POST',_binary '\0',_binary '\0','2022-10-25 08:30:27',1,'2024-11-12 03:56:09'),(3277,'API_d172e963f5250bb4033ac94dd0c46a69','callBackStatus','','cmii-uav-emergency','/notice/sms/reportStatus','POST',_binary '\0',_binary '\0','2022-11-09 08:44:00',1,'2024-10-20 12:54:31'),(3278,'API_591b90318ab3a88d5acc3c48e08fbff2','createRSA','','cmii-uav-emergency','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-09 08:44:00',1,'2024-10-20 12:54:32'),(3279,'API_ffa4f37a1c2ea6c09d5fcf140ed9c56a','检查该用户是否可以申请获取权限','','cmii-uav-surveillance','/surveillance/authority_transfer/check_applicable','POST',_binary '\0',_binary '\0','2022-11-09 08:44:08',1,'2024-11-12 03:56:04'),(3280,'API_90eb05a09347789295ce404d11101a91','检查该用户是否可以申请归还权限','','cmii-uav-surveillance','/surveillance/authority_transfer/check_applicable_return','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:11'),(3281,'API_21f184867c523d021db6ac690bffeb1b','提交权限变更申请,包括获取和归还','','cmii-uav-surveillance','/surveillance/authority_transfer/apply_transfer','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:06'),(3282,'API_e88bfefd65d1a7d088adfde2b5821c51','执行人主动移交/收回控制权限','','cmii-uav-surveillance','/surveillance/authority_transfer/spontaneous_transfer','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:11'),(3283,'API_2bf7247c366d8d3cabdffdeb565f451a','同意移交控制权申请+申请id','','cmii-uav-surveillance','/surveillance/authority_transfer/approve_transfer','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:12'),(3284,'API_e457ad24ec3b2b31aebd04b2cd579b89','同意移交控制权,外部访问','','cmii-uav-surveillance','/surveillance/authority_transfer/approve_transfer_by_token','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:12'),(3285,'API_2c48d2d9e41d2f3f55b4141a20f6910c','获取申请信息,外部接口','','cmii-uav-surveillance','/surveillance/authority_transfer/check_by_token','GET',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:07'),(3286,'API_0db41c8ad461e132d0d1eed92c4a24df','获取申请信息,通过申请id','','cmii-uav-surveillance','/surveillance/authority_transfer/check_by_id','GET',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:06'),(3287,'API_fe400b2e950b1afbb287571f5a6f2ebf','批量查询无人的控制人id','','cmii-uav-surveillance','/surveillance/authority_transfer/query_uas_controller','POST',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:10'),(3288,'API_539e61ec862b4e22a0feb59c275041ee','clearTransferApplication','','cmii-uav-surveillance','/surveillance/authority_transfer/delete_all_uas_transfer','DELETE',_binary '\0',_binary '\0','2022-11-09 08:44:09',1,'2024-11-12 03:56:07'),(3289,'API_85d5d73589c8964c95b05594bc6610b7','查询无人机关联的人员统计信息','','cmii-uav-surveillance','/surveillance/screen/communication/query_individual_statistics','POST',_binary '\0',_binary '\0','2022-11-09 08:44:10',1,'2024-11-12 03:56:04'),(3290,'API_ea55ef7150550a4e05a51307a5ea4f3e','手动插入人员统计数据','','cmii-uav-surveillance','/surveillance/screen/communication/insert_individual_statistics','POST',_binary '\0',_binary '\0','2022-11-09 08:44:10',1,'2024-11-12 03:56:10'),(3291,'API_0cb8a3873ab09e2ac420f0792855a5e2','download','','cmii-uav-device','/api/uav/plane/download','POST',_binary '\0',_binary '\0','2022-11-09 08:44:19',1,'2024-11-07 09:01:51'),(3292,'API_ce4c361afa82c394716734aaa1ddbd4a','查询自己以及祖先公司以及公司的用户','','cmii-uav-user','/api/uav/org/ancestorsAndOwn','POST',_binary '\0',_binary '\0','2022-11-09 08:58:54',1,'2024-11-06 12:16:29'),(3293,'API_f11240b92cee5d159e4f5eabe1e8a796','上级和下级公司的用户','','cmii-uav-user','/api/uav/user/getSuperiorAndSubordinatetUser','GET',_binary '\0',_binary '\0','2022-11-09 08:58:55',1,'2024-11-06 12:16:32'),(3294,'API_22bd7ab297fcbef4e8289342d128eed0','createRSA','','cmii-uav-user','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-09 08:58:58',1,'2024-11-06 12:16:34'),(3295,'API_a6898c161b0e2ea04598bd6dc11321f4','createRSA','','cmii-uav-cloud-live','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-15 09:20:07',1,'2024-11-14 02:02:38'),(3296,'API_89132c2113940b8c5335fe08bcd6974a','createRSA','','cmii-uav-mqtthandler','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-11-16 05:46:59',1,'2024-11-07 08:51:27'),(3297,'API_f06fd0759c52f4cbd7a833d069fdd2fa','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-mqtthandler','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2022-11-16 05:46:59',1,'2023-05-04 09:36:22'),(3298,'API_96b807bbf1b0b9ac0780f8647f9308d3','transferFioaPicToGeneralPic','','cmii-uav-mission','/oss/foia_pic_to_general_pic','POST',_binary '\0',_binary '\0','2022-11-23 11:27:52',1,'2024-11-12 01:20:34'),(3299,'API_d39bd5eda9627a3374cb9f3edd4f824a','获取无人机状态(文旅专用)','获取无人机状态(文旅专用)','cmii-uav-mqtthandler','/oapi/uav/getStatus','GET',_binary '\0',_binary '\0','2022-12-05 03:38:45',1,'2024-11-07 08:51:29'),(3300,'API_7a8ce5526acc31c206639ae5245bfa0d','设置无人机状态,文旅','设置无人机状态,文旅','cmii-uav-mqtthandler','/oapi/uav/setUavStatus','POST',_binary '\0',_binary '\0','2022-12-05 03:38:46',1,'2024-11-07 08:51:28'),(3301,'API_c96f0a2792b96d6040c0acad7bcf4746','强制删除作业--测试自动化测试使用','','cmii-uav-mission','/api/uav/mission/mission_info_list/force_delete','DELETE',_binary '\0',_binary '\0','2022-12-08 09:21:56',1,'2024-11-12 01:20:36'),(3302,'API_9e97b67deb6516f3018a3ca7db9d2494','将作业置顶','河南环保新增功能:若将某条作业点亮标记,则该条点亮的作业会在大屏中置顶显示','cmii-uav-mission','/api/uav/mission/mission_info/light_up_mission','POST',_binary '\0',_binary '\0','2022-12-08 09:21:59',1,'2024-11-12 01:20:37'),(3303,'API_f0f3caf42adfb3541e7562dfe33623a3','无人机绑定的摄像头信息查询','','cmii-uav-mqtthandler','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:22:09',1,'2023-05-04 09:36:21'),(3304,'API_bd1bab05f21fe3c727fcaa9aa699120a','无人机绑定的摄像头信息查询','','cmii-uav-device','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:22:12',1,'2024-11-07 09:01:57'),(3305,'API_f1812a3f94863bf1c4fa5d646a2c251e','下载航线','','cmii-uav-surveillance','/uav_fly_command/load_line','POST',_binary '\0',_binary '\0','2022-12-08 09:22:33',1,'2023-01-18 04:50:23'),(3306,'API_8d2d1527d90d048f06026cc30f0b9744','waypointFlyIdV3','','cmii-uav-surveillance','/uav_fly_command/waypoint_fly_id','POST',_binary '\0',_binary '\0','2022-12-08 09:22:33',1,'2023-01-18 04:50:24'),(3307,'API_63c29781cb102bf657cf7ee5a06fdfe3','飞手-查询飞手列表','飞手-查询飞手列表','cmii-uav-user','/clients/flyer/queryFlyers','POST',_binary '\0',_binary '\0','2022-12-08 09:51:38',1,'2024-11-06 12:16:37'),(3308,'API_5689b6324559cf13bd1b8b3a9a854743','createRSA','','cmii-uav-surveillance','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-12-08 09:53:56',1,'2024-11-12 03:56:04'),(3309,'API_d88c06208ee5605d5df7bfa161b0f1b3','通过航线id 和无人机型号生成 kmz 文件下载地址, 每次调用新生成文件','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/get_line_kmz_url','POST',_binary '\0',_binary '\0','2022-12-08 09:53:59',1,'2023-03-29 09:05:04'),(3310,'API_489caf6fa70884ca641c909faaa66e22','通过航线id 和无人机型号生成 kmz 素材仓库id, 每次调用新生成文件','','cmii-uav-surveillance','/api/uav/waypoint/for_sur/get_line_kmz_object_id','POST',_binary '\0',_binary '\0','2022-12-08 09:53:59',1,'2023-03-29 09:05:04'),(3311,'API_a3443eaf438bd97e9067210b5ad27e8c','无人机绑定的摄像头信息查询','','cmii-uav-surveillance','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-08 09:54:00',1,'2023-03-29 09:05:05'),(3312,'API_4f56b688c0b29c778fe1b2194963b82f','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-surveillance','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2022-12-08 09:54:00',1,'2023-03-29 09:05:05'),(3313,'API_c369a480eca1568a1a64edeabc8203a9','从Redis获取类别对应的加密字典明细','从Redis获取类别对应的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-11-06 12:16:56'),(3314,'API_e79c6c19893996625cb977f371b7727c','从Redis获取类别对应的有效的加密字典明细','从Redis获取类别对应的有效的加密字典明细','cmii-admin-data','/api/admin/dictionary/getEnCodeValiableDictRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-11-06 12:16:50'),(3315,'API_b8c0b1ce047e9f177879294e1176f46d','从Redis获取所有的语言对应的加密字典明细的K-V','从Redis获取所有的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-11-06 12:16:47'),(3316,'API_3f6a19076e18fa7acce0d74cec04af81','从Redis获取有效的语言对应的加密字典明细的K-V','从Redis获取有效的语言对应的加密字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getEnCodeValLangMapFromRedisByType','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-11-06 12:16:56'),(3317,'API_21c78db35d528159ea148190f80e91fc','从Redis获取所有的编码对应的本地语言的加密值','从Redis获取所有的编码对应的本地语言的加密值','cmii-admin-data','/api/admin/dictionary/getEnCodeLangValueFromRedisByKey','GET',_binary '\0',_binary '\0','2022-12-08 09:57:52',1,'2024-11-06 12:16:52'),(3318,'API_7af6be80b3bcb05b36fa95631144343a','查询天气综合接口','','cmii-admin-data','/api/admin/atmosphere/weather/{coordinate}/{level}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-11-06 12:16:54'),(3319,'API_656295455a26635f330d23b130ddb013','获取彩云天气雷达图','','cmii-admin-data','/api/admin/atmosphere/radar','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-11-06 12:16:56'),(3320,'API_cf65071f9d16a72591016a32567bbd2e','获取彩云天气历史累计图','','cmii-admin-data','/api/admin/atmosphere/historicalImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-11-06 12:16:50'),(3321,'API_e5246134c4a313c2abdc72ab662f3cf7','获取彩云天气卫星图像数据','','cmii-admin-data','/api/admin/atmosphere/satelliteImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-11-06 12:16:52'),(3322,'API_bd6a14bc94eaf8a55a8ecbdcacc9c5b0','获取彩云天气小时级数据图层','','cmii-admin-data','/api/admin/atmosphere/originImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-11-06 12:16:51'),(3323,'API_3376edd154d5e642eaaa1a31c7ddb76c','获取彩云天气预测累计图','','cmii-admin-data','/api/admin/atmosphere/forecastImages','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-11-06 12:16:56'),(3324,'API_20a4aa74a7bbd084fb5cf120a8dcc60c','导出报告接口','','cmii-admin-data','/api/admin/atmosphere/export/{coordinate}','GET',_binary '\0',_binary '\0','2022-12-08 09:57:54',1,'2024-11-06 12:16:55'),(3325,'API_dea45900d60b73c855a3db6810628775','设置机库额外信息','','cmii-uav-device','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 03:48:39',1,'2024-11-07 09:01:49'),(3326,'API_7b75ef1f15defbd5087dfccab3edb8c2','下载航线','','cmii-uav-mqtthandler','/uav_fly_command/load_line','POST',_binary '\0',_binary '\0','2022-12-09 04:51:14',1,'2024-11-07 08:51:30'),(3327,'API_76bf8df1f00bc15b76f237f74883350b','航线飞行 新3','','cmii-uav-mqtthandler','/uav_fly_command/waypoint_fly_id','POST',_binary '\0',_binary '\0','2022-12-09 04:51:14',1,'2024-11-07 08:51:29'),(3328,'API_4a1564e869e2be687e83abcc593d3e41','设置机库额外信息','','cmii-uav-mqtthandler','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 04:51:15',1,'2023-05-04 09:36:22'),(3329,'API_33ed0f20a6da88e934cd6756f5226022','获取无人机的航线飞行版本确定是否展示加载航线按钮,1,2不加载,3加载','','cmii-uav-surveillance','/surveillance/uav_command/get_waypoint_version','GET',_binary '\0',_binary '\0','2022-12-09 07:01:16',1,'2024-11-12 03:56:06'),(3330,'API_30feae63d5df9c2e185bb973f7abd0ab','无人机加载航线','','cmii-uav-surveillance','/surveillance/uav_command/load_line','POST',_binary '\0',_binary '\0','2022-12-09 07:01:16',1,'2024-11-12 03:56:09'),(3331,'API_edd1062387258d859b0ff2e0f07324ab','设置机库额外信息','','cmii-uav-surveillance','/api/uav/hangar/updateHgrExtra','POST',_binary '\0',_binary '\0','2022-12-09 07:01:19',1,'2023-03-29 09:05:06'),(3332,'API_d17ed1a36bfef817128ef5e3be2f2683','通过航线生成kmz, 返回素材仓库object url','','cmii-uav-waypoint','/api/uav/waypoint/kmz/generateKMZFile','PUT',_binary '\0',_binary '\0','2022-12-09 07:01:39',1,'2023-01-17 07:20:31'),(3333,'API_1d318288b479513bc15d2142ecb7c5b9','通过航线id 和无人机型号生成 kmz 文件下载地址, 每次调用新生成文件','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_line_kmz_url','POST',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2024-11-12 03:52:39'),(3334,'API_6f2a08e24900aea7ce9ef5e71fc64994','通过航线id 和无人机型号生成 kmz 素材仓库id, 每次调用新生成文件','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_line_kmz_object_id','POST',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2024-11-12 03:52:40'),(3335,'API_0a98aea43fa08bef5fe929edd57795e5','createRSA','','cmii-uav-waypoint','/cmii/createRSA','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2024-11-12 03:52:39'),(3336,'API_932f0d3b36903e18d3f5e99f90bc723e','无人机绑定的摄像头信息查询','','cmii-uav-waypoint','/api/uav/plane/queryBoundCameraByUavDeviceNo2','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3337,'API_a2a2b4946f163a4c372d26ddd60f9f13','根据无人机型号查询无人机详情,需要公司范围,不返回日志','型号为空,结果为空,公司范围','cmii-uav-waypoint','/api/uav/plane/queryUavByModel','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3338,'API_d4b723e5c3e49404d24238173cc64672','根据无人机名称或者无人机类型查询无人机编码列表','','cmii-uav-waypoint','/api/uav/plane/queryUavCodeLit','POST',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3339,'API_32118a9fa4d5678ab7462fd40d6558ae','模糊查询包括子公司的无人机型号列表','','cmii-uav-waypoint','/api/uav/plane/queryUavModeByCompanyId','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3340,'API_04775dbe72dbd35c4b17f4aa65d88220','通过无人机型号查询公司范围内的无人机实例信息列表[作业管理中引用]','','cmii-uav-waypoint','/api/uav/plane/queryPlaneInfoList','GET',_binary '\0',_binary '\0','2022-12-09 07:01:40',1,'2023-05-04 09:35:56'),(3341,'API_80d7d783295e1d28dc149b50b5a14753','根据无人机编码批量获取公司信息','','cmii-uav-waypoint','/api/uav/plane/queryCompanyByUavCodes','GET',_binary '\0',_binary '\0','2022-12-09 07:01:41',1,'2023-05-04 09:35:56'),(3342,'API_1d407fdf42a15342204587254bbec655','设置地图配置','','cmii-uav-user','/api/uav/org/mergeMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:45',1,'2024-11-06 12:16:23'),(3343,'API_47979857f71ab7739fbbb3d1d10c59b8','删除地图配置','','cmii-uav-user','/api/uav/org/delMapConfig','POST',_binary '\0',_binary '\0','2023-01-17 07:19:45',1,'2024-11-06 12:16:23'),(3344,'API_fb4aefe0ad2483a442075ebded82acca','获取指定组织的地图配置','','cmii-uav-user','/api/uav/org/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:45',1,'2024-11-06 12:16:30'),(3345,'API_10eba035deca93be164f1ad3f808311b','获取自己组织的地图配置','','cmii-uav-user','/api/uav/user/profile/getMapConfig','GET',_binary '\0',_binary '\0','2023-01-17 07:19:46',1,'2024-11-06 12:16:21'),(3346,'API_7d5cf2f804b905941b817979062096c0','景区文件列表获取,临时接口','景区文件列表获取,临时接口','cmii-uav-material-warehouse','/api/v1/warehouse/project/liveStream/list','GET',_binary '\0',_binary '\0','2023-01-18 06:18:38',1,'2024-11-11 11:46:09'),(3347,'API_930a09f77cec27cf6dd4f590079e5f49','景区文件获取,临时接口','景区文件获取,临时接口','cmii-uav-material-warehouse','/api/v1/warehouse/project/liveStream/download','GET',_binary '\0',_binary '\0','2023-01-18 06:18:38',1,'2024-11-11 11:46:08'),(3348,'API_9f5234d806cce0f1d76e28f154963f2c','通过航线生成kmz, 返回素材仓库object url','','cmii-uav-waypoint','/api/uav/waypoint/kmz/generateKMZFile','POST',_binary '\0',_binary '\0','2023-02-08 08:04:07',1,'2024-11-12 03:52:40'),(3349,'API_529464201b2f298924bbd8e0d9b9382d','删除/批量删除','','cmii-uav-gis-server','/vr/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:50'),(3350,'API_58ecbf45effdb2be0f56ccd0d807588f','新增','','cmii-uav-gis-server','/vr/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:49'),(3351,'API_3917f653a3a79462617b3f9aff992667','编辑','','cmii-uav-gis-server','/vr/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:47'),(3352,'API_79699dc19ccd0efb777db8d9071480d9','判断数据是否被删除','','cmii-uav-gis-server','/vr/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:52'),(3353,'API_d41589c153074854218116e58a989d25','列表分页查询','','cmii-uav-gis-server','/vr/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:49'),(3354,'API_75a3f44f890e8bbe0ec10a4cd9dd1e85','获取详情','','cmii-uav-gis-server','/vr/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:47'),(3355,'API_13f012fbcdcc63e44a4cb201c476eaa5','删除/批量删除','','cmii-uav-gis-server','/image/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:49'),(3356,'API_b2b74d4055666016cb6fb1f06c996940','新增','','cmii-uav-gis-server','/image/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:48'),(3357,'API_4416bf19b6e89274d3247915169cfbb5','编辑','','cmii-uav-gis-server','/image/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:48'),(3358,'API_026d1f8457f7facab1ce45a1850c375a','判断数据是否被删除','','cmii-uav-gis-server','/image/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:52'),(3359,'API_b8cb781a722439d546a10930e7644bfa','列表分页查询','','cmii-uav-gis-server','/image/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:51'),(3360,'API_3b723c52cb4b91bf41389e9455d1c4c0','获取详情','','cmii-uav-gis-server','/image/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:47'),(3361,'API_900ae6fc853e01bbce531bdaf2d702b8','删除/批量删除','','cmii-uav-gis-server','/threeD/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:50'),(3362,'API_b06b78ba078d88b3fa975ce28ffec0af','新增三维视图','','cmii-uav-gis-server','/threeD/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:50'),(3363,'API_e457ca7b4de0d105679038e605290f84','编辑三维视图','','cmii-uav-gis-server','/threeD/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:49'),(3364,'API_ee4deb3c0d2f37768255929a6ca6ac11','判断数据是否被删除','','cmii-uav-gis-server','/threeD/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:51'),(3365,'API_a291de8ef4751472f3cd30b303646f85','后台处理进度','','cmii-uav-gis-server','/threeD/publishProgress','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:49'),(3366,'API_0d9e2a9fe5bad16a2ab66de9d32385e9','zip文件上传(测试用已废弃)','测试使用(测试用已废弃)','cmii-uav-gis-server','/threeD/localUploadTest','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:50'),(3367,'API_309182e928412715a9d5fed2d7f90c4f','三维视图列表分页查询','','cmii-uav-gis-server','/threeD/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:48'),(3368,'API_4efcc85cc5016229744188228df4c804','获取三维视图详情','','cmii-uav-gis-server','/threeD/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:51'),(3369,'API_3e42c93fb9bb90097ed0682ef0875b52','获取上传人下拉数据','','cmii-uav-gis-server','/threeD/getCreateByFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:48'),(3370,'API_408d99f0cd676956f627002b1e263ca1','获取名称模糊查询','','cmii-uav-gis-server','/threeD/getFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:48'),(3371,'API_a80edfcfd0a69d4043f96bb03c71f5df','获取对比数据','','cmii-uav-gis-server','/threeD/getCompareData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:50'),(3372,'API_a9c1dcefd3730ce7bd952efa91f9bf74','分片上传','','cmii-uav-gis-server','/threeD/multipartUpload','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:52'),(3373,'API_b55bf52c5f27cccbb3ef345851496dbd','文件合并','','cmii-uav-gis-server','/threeD/multipartMerge','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:50'),(3374,'API_12b7eda8efc787626a757b5732e82953','删除/批量删除','','cmii-uav-gis-server','/grid/delete','DELETE',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:48'),(3375,'API_bad271df6a2fa2628a684484fc88e3f5','新增二维视图','','cmii-uav-gis-server','/grid/create','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:52'),(3376,'API_d2ba6ccafc7d1f8b9d8f19944de0d7b8','编辑二维视图','','cmii-uav-gis-server','/grid/edit','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:51'),(3377,'API_5191b4fae3951e2d43409c8d3a487f3a','判断数据是否被删除','','cmii-uav-gis-server','/grid/checkIsDel/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:47'),(3378,'API_528e2cfd66ab3ed9906ac7e2c3bb4e17','后台处理进度','','cmii-uav-gis-server','/grid/publishProgress','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:47'),(3379,'API_b2567cb080dc0803f1ebb2a2498682ef','zip文件上传(测试用已废弃)','测试使用(测试用已废弃)','cmii-uav-gis-server','/grid/localUploadTest','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-07-10 01:51:00'),(3380,'API_03c187214a1625910a94e40c969bd7da','获取视图名称下拉数据','','cmii-uav-gis-server','/grid/getNameFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:48'),(3381,'API_f610a0dea535f8ff2f84fa58bdc3d65c','二维视图列表分页查询','','cmii-uav-gis-server','/grid/queryPageList','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:51'),(3382,'API_11a41313b6dca9d7dd83388f42a8a2c8','获取二维视图详情','','cmii-uav-gis-server','/grid/detail/{id}','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:49'),(3383,'API_446c3984e90d49167aca7acb14365f31','获取上传人下拉数据','','cmii-uav-gis-server','/grid/getCreatorByFuzzyData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:52'),(3384,'API_fc5a11718159a1271b246d45a4c9282f','获取对比数据','','cmii-uav-gis-server','/grid/getCompareData','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:47'),(3385,'API_90a17c489826d517a26a7864a4045005','分片上传','','cmii-uav-gis-server','/grid/multipartUpload','POST',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:51'),(3386,'API_4d83e5ce6626fa6c00fecdd8802b972c','文件合并','','cmii-uav-gis-server','/grid/multipartMerge','GET',_binary '\0',_binary '\0','2023-02-08 08:04:10',1,'2024-10-23 08:39:49'),(3387,'API_0042ff7fba92103bc243de86021c80d0','单个文件下载','根据projectId和文件ID下载项目文件','cmii-uav-gis-server','/api/v1/warehouse/project/file/download','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3388,'API_5bd7373965e6598c36aaea1c17c37922','全部文件下载','根据projectId下载该项目所有文件','cmii-uav-gis-server','/api/v1/warehouse/project/filesAll/download','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3389,'API_b067c7ded20220c352f8eb29c14f22d8','删除项目的文件','删除项目的文件,支持批量','cmii-uav-gis-server','/api/v1/warehouse/project/deleteFiles','POST',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3390,'API_330141b707ed8a38a13fa2acd325366c','项目文件上传','上传项目文件 ','cmii-uav-gis-server','/api/v1/warehouse/project/files','POST',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3391,'API_3a35285fa9cfebc11564be878c0ca050','根据标签名模糊查询项目列表【内部接口】','内部接口,利用标签名模糊查询所有未删除项目','cmii-uav-gis-server','/api/v1/warehouse/project/getAllProjsByLabel','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3392,'API_04bacb38b2e572545b4850d7310990e7','根据标签名精确查询项目列表【内部接口】','内部接口,利用标签名精确查询所有未删除项目','cmii-uav-gis-server','/api/v1/warehouse/project/getProjByLabel','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3393,'API_29f571b0046313d53ed3246ddd8bb783','第一次上传项目','第一次上传项目,返回projId','cmii-uav-gis-server','/api/v1/warehouse/project/updproj/restring','GET',_binary '\0',_binary '\0','2023-02-08 08:04:11',1,'2023-04-03 06:04:58'),(3394,'API_6931208a2fe7afa9233f2095dc0ebcfa','统计基于任务类型的飞行时间比例','','cmii-uav-mission','/api/uav/mission/mission_info_list/queryFlyTimeByTaskType','GET',_binary '\0',_binary '\0','2023-02-08 08:04:19',1,'2024-11-12 01:20:37'),(3395,'API_2ddec9b0a6c6ddb7972bb3a4b7cb19b5','测his','','cmii-uav-user','','GET',_binary '\0',_binary '\0','2023-02-08 08:04:29',1,'2023-08-07 06:29:39'),(3396,'API_595b33682c3f519aaf3572b88817b432','飞手-查询飞手','飞手-查询飞手','cmii-uav-user','/clients/flyer/getRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:29',1,'2024-11-06 12:16:33'),(3397,'API_e495283cfa185294b0ac99f8c3afbfa5','飞手-查询历史飞手列表','飞手-查询历史飞手列表','cmii-uav-user','/clients/flyer/queryHistoryRpcsByIds','POST',_binary '\0',_binary '\0','2023-02-08 08:04:31',1,'2024-11-06 12:16:23'),(3398,'API_b1e7b0038cbcbdde48ab92395a49fc77','飞手-查询历史飞手信息','飞手-查询历史飞手信息','cmii-uav-user','/clients/flyer/getHistoryRpcById','POST',_binary '\0',_binary '\0','2023-02-08 08:04:32',1,'2024-11-06 12:16:31'),(3399,'API_ea461e10014bb0021824cd9983557961','查询组织自身实际分配给自己配额','','cmii-uav-user','/client/quota/getQuotaConfigByType','POST',_binary '\0',_binary '\0','2023-02-08 08:04:32',1,'2024-11-06 12:16:29'),(3400,'API_16f8fa42e4aaf03d75116f4c3e60a035','createRSA','','cmii-uav-device','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-02-08 08:04:38',1,'2024-11-07 09:01:59'),(3401,'API_a44b0821a730074823868b207b2da9b6','test','','cmii-uav-data-post-process','/product/test1','GET',_binary '\0',_binary '\0','2023-02-08 08:35:43',1,'2024-09-09 09:16:30'),(3402,'API_c64fa9a54063c392bc7ae9abfdecf20f','根据无人机型号查询无人机详情,需要公司范围,不返回日志','','cmii-uav-device','/api/uav/plane/queryFlyTotalByCmpScope','GET',_binary '\0',_binary '\0','2023-02-09 05:51:42',1,'2024-11-07 09:01:48'),(3403,'API_e948d384436ebdf4111fcaed655e4adf','获取公司范围内的飞手列表','','cmii-uav-device','/api/uav/plane/queryFlyerList','GET',_binary '\0',_binary '\0','2023-02-09 05:51:42',1,'2024-11-07 09:01:47'),(3404,'API_e2603349404147c76839e77869c5b8ba','计算距离','计算距离','cmii-uav-mqtthandler','/oapi/uav/flight/getDistance','GET',_binary '\0',_binary '\0','2023-03-29 09:04:36',1,'2024-11-07 08:51:29'),(3405,'API_0e6c72f26d8a0d28df1d48e272ab237f','按时间查询统计数据项,公司分割','','cmii-uav-surveillance','/surveillance/flight_records/query_items_by_company','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-11-12 03:56:09'),(3406,'API_a0567756b018117b093d2a896c0b7e10','按时间查询统计数据项,按天统计','填充空日期,升序','cmii-uav-surveillance','/surveillance/flight_records/query_items_by_day','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-11-12 03:56:07'),(3407,'API_044cd372fdbf8162edee2d746c53be85','插入一条飞行记录数据','','cmii-uav-surveillance','/surveillance/flight_records/insertRecord','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-11-12 03:56:04'),(3408,'API_561e8055292a2126ba9a260285608492','插入一条飞行记录数据','','cmii-uav-surveillance','/surveillance/flight_records/insert_record','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-11-12 03:56:12'),(3409,'API_7698ef1abc78026da764aef4c42e95f7','按时间查询公司范围统计数据','','cmii-uav-surveillance','/surveillance/flight_records/query_statistics','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-11-12 03:56:07'),(3410,'API_25ebf2c681fb2a6036442fde4b2024d4','按时间查询公司范围所有数据项','','cmii-uav-surveillance','/surveillance/flight_records/query_item_details','POST',_binary '\0',_binary '\0','2023-03-29 09:05:03',1,'2024-11-12 03:56:05'),(3411,'API_b45ae6e6540f1c26f30f6821db701f94','停止视频流及相关插件任务','停止视频流','cmii-uav-cloud-live','','DELETE',_binary '\0',_binary '\0','2023-03-29 10:23:00',1,'2023-06-14 09:37:52'),(3412,'API_917d79d5fe966b35d589931c2624c15b','下载指定时长ts文件(支持固定参数10000,5000,...)','下载制定时长ts文件','cmii-uav-cloud-live','','GET',_binary '\0',_binary '\0','2023-03-29 10:23:01',1,'2023-06-14 09:37:52'),(3413,'API_76fe81b0201574b22b605d2496c59164','获取详情','','cmii-uav-gis-server','','GET',_binary '\0',_binary '\0','2023-04-03 07:16:03',1,'2023-05-19 03:16:37'),(3414,'API_8dacfd37cbb9dcaa3cab8afa6222bd57','createRSA','','cmii-uav-gis-server','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-04-03 07:16:04',1,'2024-10-23 08:39:50'),(3415,'API_6382c442feffdb99d380fc509b8d8cdf','机库绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/hangar/queryBoundVideoByHgrDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:19',1,'2024-11-07 09:01:46'),(3416,'API_74382abbc96293ea3031fda83c1dabfc','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryBoundVideoByUavDev','GET',_binary '\0',_binary '\0','2023-04-09 03:14:22',1,'2024-11-07 09:01:55'),(3417,'API_188e69fc95d194a9cc990f43c8503833','查询天途云台视频播放地址','','cmii-uav-mqtthandler','','GET',_binary '\0',_binary '\0','2023-04-09 06:04:51',1,'2023-05-10 03:52:00'),(3418,'API_1e82ef565c64a0cd4cd017a4fbda0f22','查询上传状态','','cmii-uav-waypoint','','GET',_binary '\0',_binary '\0','2023-04-09 06:06:57',1,'2023-05-18 09:34:52'),(3419,'API_ff1d22c70d82e240ab2765180befc1fa','测试wpml内容','','cmii-uav-waypoint','/api/uav/waypoint/kmz/get_wmpl','GET',_binary '\0',_binary '\0','2023-04-09 06:06:58',1,'2024-11-12 03:52:42'),(3420,'API_df1d5509b94fefcdd50b9313c14eae21','飞行器关机','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/drone_shutdown','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-11-12 03:56:06'),(3421,'API_909ff854a0621302bd86ca644d898d1a','推杆开关 0:闭合, 1:展开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/putter_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-11-12 03:56:10'),(3422,'API_79362caeed9e7a8fe0e051b715c0ca81','机场重启','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/dock_reboot','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-11-12 03:56:08'),(3423,'API_1b90b0f404bc5e5c3026df35020d342f','机场电池保存策略切换 1:电池计划存储策略,2:电池应急存储策略','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/battery_store_mode','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-11-12 03:56:09'),(3424,'API_73577911ce880e8779ec8d1d1c50f2da','机场声光报警开关 0 关 1 开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/alarm_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2024-11-12 03:56:05'),(3425,'API_3f23444842f5c763ff7d60791c287afb','按年/月/日查询所有平台飞行总时长','','cmii-uav-surveillance','','GET',_binary '\0',_binary '\0','2023-04-09 06:13:03',1,'2023-05-18 09:50:21'),(3426,'API_638ace2fba2f7f34ef694a8a35b31f79','舱盖开关 0:关, 1:开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/lid_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-11-12 03:56:08'),(3427,'API_de81160b18361339ef97154721091428','远程调试功能开关 0:关, 1开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/remote_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-11-12 03:56:08'),(3428,'API_4dd40372c48fd7253f5f41283634dd51','电池保养状态切换 0:关,1:开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/battery_maintenance','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-11-12 03:56:12'),(3429,'API_b1be31bab27f7cdbca770efc363eff61','增强图传开关 0: 仅使用sdr,1:4G增强模式','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/sdr_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-11-12 03:56:06'),(3430,'API_41216a33cbb1316f0de592a30b755d30','机场数据格式化','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/dock_format','POST',_binary '\0',_binary '\0','2023-04-09 06:13:04',1,'2024-11-12 03:56:07'),(3431,'API_af66ae63e93eac699cae3015f5ede1c4','飞机数据格式化','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/drone_format','POST',_binary '\0',_binary '\0','2023-04-09 06:13:05',1,'2024-11-12 03:56:09'),(3432,'API_d0ff4d0c3510b7306c3f0639f3c39f17','充电开关 0:关,1:开','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/charge_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:13:05',1,'2024-11-12 03:56:09'),(3433,'API_d4dc66272c8ec89e83dbab6ef31b207e','机场重启后飞行器开机','','cmii-uav-surveillance','/surveillance/dji_cloud/remote_control/drone_open','POST',_binary '\0',_binary '\0','2023-04-09 06:13:05',1,'2024-11-12 03:56:11'),(3434,'API_d0692d0e88427623e4d590a5204d287a','publishCancelJob','','cmii-uav-integration','','DELETE',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2023-05-18 09:35:13'),(3435,'API_a9990662ecbbeabaea5dc0957a8f4764','getWaylinesPagination','','cmii-uav-integration','','GET',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2023-05-18 09:35:13'),(3436,'API_5611d1b133b7c864742820d9fa85f1aa','停止直播','','cmii-uav-integration','/dji_cloud/stream_control/stop_push','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-10-22 06:16:05'),(3437,'API_8f29b375a445c537e7cbb501f72116a5','uploadMediaHighestPriority','','cmii-uav-integration','','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2023-05-18 09:35:13'),(3438,'API_5c313ef7893c7f7fbe107708a755eb2e','health','','cmii-uav-integration','/cmii/health','GET',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-10-22 06:16:06'),(3439,'API_43053d581f65bf9402b9a5ecfc75c1d2','一键返航','','cmii-uav-integration','/dji_cloud/remote_control/return_home','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-10-22 06:16:05'),(3440,'API_4122fb481fd60b22f2915dd18234346e','起飞、降落指令','','cmii-uav-integration','/jouav_cmd/take_off_or_landing','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-10-22 06:16:05'),(3441,'API_7627eaf462aaec5a8b1c330988612dc9','远程调试功能开关 0:关, 1开','','cmii-uav-integration','/dji_cloud/remote_control/remote_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:25',1,'2024-10-22 06:16:04'),(3442,'API_76a1baab2aad47d7f92b38721111fdc2','纵横发送航线地址、推流地址到设备','','cmii-uav-integration','/jouav_cmd/plan_push','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3443,'API_bc560b0bfc97eb254268adcc41b61d22','updateElement','','cmii-uav-integration','','PUT',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-18 09:35:12'),(3444,'API_54740222614ea4ce3062d058a85e5358','createRSA','','cmii-uav-integration','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3445,'API_02f826ab0873e98ccbcd8cfc598382df','getRedis','','cmii-uav-integration','/dji_cloud/wayline/redis_get_test','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:05'),(3446,'API_a077ab68f3fa4e76249617ad9d4f5077','将航线文件推送给大疆机场','','cmii-uav-integration','/dji_cloud/wayline/push_line','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:06'),(3447,'API_044117e1e2fdce1b26984064934e1878','设置直播镜头模式','','cmii-uav-integration','/dji_cloud/stream_control/mode_change','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3448,'API_71b108ad301f9a3da8b61851ca8a13af','securityConfiguration','','cmii-uav-integration','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3449,'API_85beac3d46aab765d8cc9f0e19bd277c','接口扫描','','cmii-uav-integration','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3450,'API_3dab1ef7eac8eb9a2335ace7890f5f7f','补光灯开关 0:关, 1开','','cmii-uav-integration','/dji_cloud/remote_control/supplement_light','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3451,'API_38fb975123580c9f07f08000b5aa776b','飞机数据格式化','','cmii-uav-integration','/dji_cloud/remote_control/drone_format','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3452,'API_5b6b3c2524df9bccc894f733daea4367','充电开关 0:关,1:开','','cmii-uav-integration','/dji_cloud/remote_control/charge_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3453,'API_fae5cb4f81cc77cdb9e15bf0f3225950','舱盖开关 0:关, 1:开','','cmii-uav-integration','/dji_cloud/remote_control/lid_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3454,'API_2923a0ad680149769a749d0fc72026de','飞行器关机','','cmii-uav-integration','/dji_cloud/remote_control/drone_shutdown','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:06'),(3455,'API_a53afed6ecc42379e5b1154efbf65960','VTK视频解码','','cmii-uav-integration','/jouav_cmd/startVtk','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3456,'API_e5b03b88a8fc2c459b9caaf0dacb5398','取消最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/undo_wayline','PUT',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:05'),(3457,'API_afe9e4e0677975ab128f20d17fa91a19','执行最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/execute_wayline','PUT',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:04'),(3458,'API_968163d325c8b9c7b323b2c528ab4b54','设置直播清晰度','','cmii-uav-integration','/dji_cloud/stream_control/set_quality','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3459,'API_0994a6c96c4a0952af6945b746f6a002','getDocumentation','','cmii-uav-integration','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3460,'API_8d99ca7d6da23c6679adbce69b03af4b','纵横 吊舱控制功能开关','','cmii-uav-integration','/jouav_cmd/pod_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3461,'API_86c20625d95a6deb2cd3d76a188db8bc','机场数据格式化','','cmii-uav-integration','/dji_cloud/remote_control/dock_format','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3462,'API_54e46d0b7e94308bc28cc829f64ec157','ping','','cmii-uav-integration','/cmii/ping','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:06'),(3463,'API_489251d392951a1628bf4f3930a3a319','机场重启','','cmii-uav-integration','/dji_cloud/remote_control/dock_reboot','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3464,'API_2b80fd01d56f64d6083b7c6d3ffdc6c6','手动添加设备上线后需要的订阅主题','','cmii-uav-integration','/dji_cloud/remote_control/add_topics','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:04'),(3465,'API_165c75a355520f62537cb16c79242b49','增强图传开关 0: 仅使用sdr,1:4G增强模式','','cmii-uav-integration','/dji_cloud/remote_control/sdr_mode_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3466,'API_ec9aead59477bdaacf9263bd42aae8fc','开始直播','','cmii-uav-integration','/dji_cloud/stream_control/start_push','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3467,'API_b2fe5f9deb705aa9ac276016caccfda5','env','','cmii-uav-integration','/cmii/env','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3468,'API_14613f7fe5aa827eff7aabed9a9ea589','setRedis','','cmii-uav-integration','/dji_cloud/wayline/redis_set_test','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2023-05-19 06:01:04'),(3469,'API_cecc6af8c42e4b693a44995752ef4bef','电池保养状态切换 0:关,1:开','','cmii-uav-integration','/dji_cloud/remote_control/battery_maintenance','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:06'),(3470,'API_7b33236ecd11a1c602b3aae8002dc5ca','机场声光报警开关','','cmii-uav-integration','/dji_cloud/remote_control/alarm_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3471,'API_269c942b426428a7a18667bebfa73a04','swaggerResources','','cmii-uav-integration','/swagger-resources','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3472,'API_7f629b4eaced20896a2ce62e2326e047','uiConfiguration','','cmii-uav-integration','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3473,'API_56e87746c453a13a2e72378a39f5b059','纵横球机控制动作指令','','cmii-uav-integration','/jouav_cmd/gimbal_cmd','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3474,'API_e388ccfea132cece796cca6887dc724e','推杆开关 0:闭合, 1:展开','','cmii-uav-integration','/dji_cloud/remote_control/putter_switch','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3475,'API_141d6e9346971b7b72c458a43abc0fe9','error','','cmii-uav-integration','/error','',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:06'),(3476,'API_858b99f54c916fb6b61e325b647c6921','getDocumentation','','cmii-uav-integration','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3477,'API_c377d3c816797df2d2cf409032ac7cb6','控制跟踪航点指令','','cmii-uav-integration','/jouav_cmd/track_to','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3478,'API_c2a855df8222a01c665cddd60e4849a6','机场电池保存策略切换 1:电池计划存储策略,2:电池应急存储策略','','cmii-uav-integration','/dji_cloud/remote_control/battery_store_mode','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:05'),(3479,'API_77f4b0264bde1754beeb24ffb340a9f0','飞行器开机','','cmii-uav-integration','/dji_cloud/remote_control/drone_open','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3480,'API_b473709ef002f563873eb86ff0a66af3','直播能力更新','','cmii-uav-integration','/dji_cloud/stream_control/update_capacity','POST',_binary '\0',_binary '\0','2023-04-09 06:39:26',1,'2024-10-22 06:16:04'),(3481,'API_ef18e28046f8823ce9871074c311d87c','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/plane/checkUavExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:29',1,'2024-11-07 09:01:46'),(3482,'API_3759ecb4da461b7ed9a15788a63b802e','查询公司所属的设备是否存在','','cmii-uav-device','/api/uav/hangar/checkHgrExist','GET',_binary '\0',_binary '\0','2023-04-09 08:52:29',1,'2024-11-07 09:01:55'),(3483,'API_92d16f0d344b72a93164f3a1567937c8','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-mqtthandler','/oapi/uav/flight/uploadDefaultForDock','POST',_binary '\0',_binary '\0','2023-04-12 10:34:07',1,'2024-11-07 08:51:30'),(3484,'API_782102f1e0603897b16656955de7b140','获得镜头列表','','cmii-uav-integration','/dji_cloud/stream_control/get_cam_list','POST',_binary '\0',_binary '\0','2023-04-12 12:33:25',1,'2024-10-22 06:16:05'),(3485,'API_2ada31cfde3d32c09c7e85aaf2e01e35','修改机库的无人机载荷推流模式,会同时修改载荷的模式,广角or变焦','','cmii-uav-integration','/dji_cloud/stream_control/live_stream_change','POST',_binary '\0',_binary '\0','2023-04-12 12:33:26',1,'2024-10-22 06:16:05'),(3486,'API_182ee7baff979a8cb4e801ee17150214','无人机绑定的摄像头视频列表信息查询','','cmii-uav-device','/api/uav/plane/queryCamVideoByUavCode','GET',_binary '\0',_binary '\0','2023-04-13 01:10:28',1,'2024-11-07 09:01:44'),(3487,'API_975860e014c1f8469949d110d928bdc2','大疆机库 同时有哈勃连接时,切换为哈勃控制','','cmii-uav-surveillance','/surveillance/uav_command/switch_to_5g','POST',_binary '\0',_binary '\0','2023-04-19 06:04:21',1,'2024-11-12 03:56:07'),(3488,'API_10bc12773538fe202ce082b70dcddc6b','大疆机库 同时有哈勃连接时,切换为哈勃控制','','cmii-uav-mqtthandler','/uav_fly_command/switch_to_5G','POST',_binary '\0',_binary '\0','2023-04-19 06:04:45',1,'2024-11-07 08:51:26'),(3489,'API_898cdc9b8953a19179070601d11a4ef6','获取当前无人机人群计数告警','','cmii-uav-mission','/api/uav/mission/surveillance/getAIPeopleAlarm/{uasId}','GET',_binary '\0',_binary '\0','2023-04-24 07:42:41',1,'2024-11-12 01:20:35'),(3490,'API_ff937f96a72eecf0d54dd5390d9f8c0a','获取当前无人机火情告警','','cmii-uav-mission','/api/uav/mission/surveillance/getAIFireAlarm/{uasId}','GET',_binary '\0',_binary '\0','2023-04-24 07:42:42',1,'2024-11-12 01:20:37'),(3491,'API_ebccbcfc4dac0291ffd9f0ccd961bb25','获取当前无人机综合告警','','cmii-uav-mission','/api/uav/mission/surveillance/getAITotalAlarm','GET',_binary '\0',_binary '\0','2023-04-24 07:42:42',1,'2024-11-12 01:20:38'),(3492,'API_bc3a82ef832c0ee97ce4aae37f1ed445','获取江苏文旅获取人流量向图','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMap','GET',_binary '\0',_binary '\0','2023-04-24 08:14:24',1,'2024-11-12 03:56:08'),(3493,'API_db606d1776d5b7317901233f700f6050','获取客流数据','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getPeopleTotal','GET',_binary '\0',_binary '\0','2023-04-24 08:14:25',1,'2024-11-12 03:56:06'),(3494,'API_c08789b2c3cf169b1b8a2a6391aa014e','获取视频HLS回放url','获取视频HLS回放url','cmii-uav-cloud-live','/personal/his/playback/hls/getPlayUrl','POST',_binary '\0',_binary '\0','2023-04-26 08:53:38',1,'2024-11-14 02:02:40'),(3495,'API_4cd087acea12e9df6dadc85a13d81647','上报已存储的视频分片','上报已存储的视频分片','cmii-uav-cloud-live','/client/live/stream/reportPartFile','POST',_binary '\0',_binary '\0','2023-04-26 08:53:38',1,'2024-11-14 02:02:44'),(3496,'API_2ace9d2a26489c0b6c0461b6716d1df0','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/client/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-11-14 02:02:40'),(3497,'API_6099fa9109dc842a151d9090663330c2','视频HLS回放','视频HLS回放','cmii-uav-cloud-live','/public/his/playback/hls.m3u8','GET',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-11-14 02:02:40'),(3498,'API_2679f7b8474fc8ef2d2ea59f71b2d6aa','获取HLS直播回放地址','获取HLS直播回放地址','cmii-uav-cloud-live','/client/live/stream/getHlsPlayInfo','POST',_binary '\0',_binary '\0','2023-04-26 08:53:39',1,'2024-11-14 02:02:37'),(3499,'API_bb73da26afcc140de238a1bad0f939b3','createRSA','','cmii-uav-airspace','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2024-11-14 03:10:23'),(3500,'API_eb1dcca4405d4fe3cee268fd731e35b1','电子围栏详情','','cmii-uav-airspace','','GET',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2023-11-29 09:23:20'),(3501,'API_e9950248886164a0660833a57afc22cd','删除电子围栏','','cmii-uav-airspace','','DELETE',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2023-11-29 09:23:20'),(3502,'API_96d6885d86f7c133fd20b2f87d02aa0f','按条件查询空域申请和时间段','','cmii-uav-airspace','/zydAirspace/queryAll.do','POST',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2024-11-14 03:10:23'),(3503,'API_0c30bb16f603e55c1535ac9bb6e2191d','查询范围内危险电子围栏信息','','cmii-uav-airspace','/efence_airspace/selectByPoint.do','POST',_binary '\0',_binary '\0','2023-04-28 02:57:14',1,'2024-11-14 03:10:23'),(3504,'API_81598aae5c2172682604ff6dc4787f2f','开始指点飞行,带作业','给定起点和终点,是否开始作业,是否使用kmz,是否存储航线','cmii-uav-surveillance','/surveillance/uav_command/start_point_fly','POST',_binary '\0',_binary '\0','2023-05-04 01:25:07',1,'2024-11-12 03:56:08'),(3505,'API_f270e43ffd8a12de0606df17b8985511','根据无人机id查询无人机起飞位置','','cmii-uav-surveillance','/surveillance/queryUavTakeOffPos','GET',_binary '\0',_binary '\0','2023-05-04 01:25:07',1,'2024-11-12 03:56:08'),(3506,'API_7b1a4e7d0628bb819ebd556c840b0a80','提供已有航线,无人机机库 创建快速作业','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_with_line','POST',_binary '\0',_binary '\0','2023-05-04 01:30:02',1,'2024-11-12 01:20:38'),(3507,'API_c8a8f035667a5370d7aee5ef0aaed372','指定两点进行航线插值,或者规划避障航线,并且存储数据库','默认飞完悬停','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_line_between','POST',_binary '\0',_binary '\0','2023-05-04 01:31:44',1,'2024-11-12 03:52:40'),(3508,'API_2f576b4aa4334399d4a68ef04f3b7d0d','查询走廊信息','','cmii-uav-grid-datasource','/corridor/corridorQuery','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3509,'API_ec475feef48ac52bb568bad1b59dceeb','检查url是否已经使用','','cmii-uav-grid-datasource','/terrain/checkRepeatUrl','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3510,'API_5b8f1dc3f3ecadbc8cc614e907ac76a3','env','','cmii-uav-grid-datasource','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3511,'API_a233f3b210c54d7fe244188c06a7c4a4','ping','','cmii-uav-grid-datasource','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3512,'API_3dd7916d2570ad77f5f0a4a36a81e43f','保存执行计划','','cmii-uav-grid-datasource','/dataImport/saveCron','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3513,'API_8f8558323e61097a2b8c8d52aae45a22','已接入服务列表','','cmii-uav-grid-datasource','/dataImport/serviceList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3514,'API_5050c3adce00b0029e7b454a77f2f927','飞行计划相交集合','','cmii-uav-grid-datasource','/fightPlan/fightPlanIntersect','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3515,'API_863e3233dd2fb0dfead2b5ae873204d1','立即同步','','cmii-uav-grid-datasource','/dataImport/sync','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3516,'API_37e909b2fefde1d03603324339350050','新增地形数据','','cmii-uav-grid-datasource','/terrain/addTerrain','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3517,'API_e1e529b85d096ca15c079328efd9aad4','查询默认地形数据','','cmii-uav-grid-datasource','/terrain/queryDefaultTerrain','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3518,'API_72bc4178dda49853316a0e3a7bdd8ce8','打码航线','','cmii-uav-grid-datasource','/coding/codingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3519,'API_894b58fcd4bf77172cf7aea9ee666e09','获取网格编码','','cmii-uav-grid-datasource','/grid/manager/getGrid','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3520,'API_ce37696c8ec4641de8ea62167d8dc1b3','根据网格码查询标注信息','','cmii-uav-grid-datasource','/mark/queryMarkList','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3521,'API_bec34ea6ec4eeffc887efdc8146339ed','存储指定网格码的外包矩形','','cmii-uav-grid-datasource','/custom/saveGrid3dScope','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3522,'API_64bc026764f6c25b42c69a8606a07a94','getDocumentation','','cmii-uav-grid-datasource','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3523,'API_c9ddccbad8fa8784cdaf1991b097fe33','设置默认地形','','cmii-uav-grid-datasource','','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2023-07-18 04:08:06'),(3524,'API_29afb846adb55f238910d05afbe2e761','createRSA','','cmii-uav-grid-datasource','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3525,'API_d279ca67575d122ef0f61ff81cbe7a8d','多边形打码','','cmii-uav-grid-datasource','/corridor/polygonCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3526,'API_b1608c283d9b041b452a7a559e608496','批量获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeights','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3527,'API_b049cf657a5c0a8e9096e440ca661d02','securityConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3528,'API_4aaa777469e72d7417e378e630b5bd8f','生成走廊网格码','','cmii-uav-grid-datasource','/corridor/corridorCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3529,'API_59448bffb78439636d0b4d3f16ca48f2','航线在线打码','','cmii-uav-grid-datasource','/custom/onlineCodingAirline','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3530,'API_56b94ed05c688dfa4f3bd071967f7fca','打码可飞行区域','','cmii-uav-grid-datasource','/coding/codingFlyableAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3531,'API_91bd981c8e68b461bf325839da3f0413','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeightToRpc','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3532,'API_37e8361e9f18210f188b9312f0edb357','打码单个空域','','cmii-uav-grid-datasource','/custom/gridCoding','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3533,'API_8a1741a83cb91167bd83059338e69dfa','条件查询地形数据','','cmii-uav-grid-datasource','/terrain/queryTerrainByCondition','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3534,'API_e6311bd8b4857f003d5ae41ddc1b9fa8','保存已通过飞行计划','','cmii-uav-grid-datasource','/fightPlan/savePassFightPlan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3535,'API_3c1ff288ca2fbf810ccd69e351235542','swaggerResources','','cmii-uav-grid-datasource','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:56'),(3536,'API_ecbc7c4dce2a7addfbb0169537a09e06','health','','cmii-uav-grid-datasource','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3537,'API_4fbd74c072343df88b232fbe31a59b04','获取地形高度','','cmii-uav-grid-datasource','/terrain/getTerrainHeight','GET',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3538,'API_025c2238b894f0a0f96b1cd192067bbe','error','','cmii-uav-grid-datasource','/error','',_binary '\0',_binary '\0','2023-05-04 02:46:24',1,'2024-06-18 01:09:57'),(3539,'API_a3ad8f8222c9436057a777a55faf8a7c','获取地形数据列表','','cmii-uav-grid-datasource','/terrain/getTerrainList','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3540,'API_130f26dd451d2a049d5d834b0b0a17de','删除标注信息','','cmii-uav-grid-datasource','/mark/deleteMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3541,'API_c7a327fe84d6d10b54e0de34b9e1ea19','接口扫描','','cmii-uav-grid-datasource','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3542,'API_2447fe8d41a35c4fee51f7b369d7fd12','保存/更新标注信息','','cmii-uav-grid-datasource','/mark/saveOrUpdateMarkInfo','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3543,'API_d811537b42ba578dbc6be1586739193d','getDocumentation','','cmii-uav-grid-datasource','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3544,'API_aaacdcec734a7703cdcf345d3ed75d5c','飞行冲突判断','','cmii-uav-grid-datasource','/fightConflict/fightConflict','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3545,'API_ad3946fa86a26f16ffa9052e13bc40bf','走廊删除','','cmii-uav-grid-datasource','/corridor/deleteCorridor','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3546,'API_b0210debfbccada2fc2ddcb13cf64b84','uiConfiguration','','cmii-uav-grid-datasource','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3547,'API_33b1d75edb6c55c345002a8a44808880','根据ID删除地形数据','','cmii-uav-grid-datasource','','DELETE',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2023-07-18 04:08:06'),(3548,'API_a935d01ed0b7168651291ee04b37894d','打码禁飞区','','cmii-uav-grid-datasource','/coding/codingNoFlyAirspace','POST',_binary '\0',_binary '\0','2023-05-04 02:46:25',1,'2024-06-18 01:09:56'),(3549,'API_0d8be20aa87412864193933ec619e5d7','获取多个无人机最新坐标数据','','cmii-uav-surveillance','/feign/surveillance/queryUavsPoint','POST',_binary '\0',_binary '\0','2023-05-04 09:34:49',1,'2024-11-12 03:56:06'),(3550,'API_84fd2cafee052645fe713aaa3c585fa1','获取多个无人机的飞行轨迹数据','','cmii-uav-surveillance','/feign/surveillance/queryUavPoints','POST',_binary '\0',_binary '\0','2023-05-04 09:34:51',1,'2024-11-12 03:56:09'),(3551,'API_c34c215c95a573cb33d1b4d21c155e6d','ping','','cmii-uav-grid-manage','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:52'),(3552,'API_ad17693570299ac8cef693cd80f419c7','新增空域','','cmii-uav-grid-manage','/airspace/addCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:51'),(3553,'API_bd7418a9441af4ee7150a4047998f7b3','计算仿地航线坐标','','cmii-uav-grid-manage','/airline/calculateFdAirline','POST',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:51'),(3554,'API_c672008dc196b70852bbce47f1c3cbdf','查询自定义空域列表','','cmii-uav-grid-manage','/airspace/queryCustomAirspaceList','POST',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:53'),(3555,'API_9b3d288bb4aa5c5d4da560c005f2dc0a','getDocumentation','','cmii-uav-grid-manage','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 09:34:56',1,'2024-05-27 11:53:52'),(3556,'API_45e30303038520fe1eb4badaf06c04d6','获取偏航的航线','','cmii-uav-grid-manage','/offset/airline','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3557,'API_951a77152c4bed4d67f30630ff9f8863','env','','cmii-uav-grid-manage','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3558,'API_fbacfdafe70afcefb8cfc6591240f74e','uiConfiguration','','cmii-uav-grid-manage','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:51'),(3559,'API_bcc47f962fb4f992a0050f2607b44b81','自动寻路','','cmii-uav-grid-manage','/airline/autoPlanning','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3560,'API_40021442e04807354c9bef2f5ccd9a34','删除自定义空域','','cmii-uav-grid-manage','/airspace/deleteCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3561,'API_2c2f24cdf20eed14718d3ed174d92048','getDocumentation','','cmii-uav-grid-manage','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3562,'API_244387f64b7e6633df38426fd8b89ced','根据空域名称查询','','cmii-uav-grid-manage','/airspace/queryCustomAirspaceByName','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3563,'API_672b81d3a034dae247b16eb64a9a614e','test','','cmii-uav-grid-manage','/airline/test','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3564,'API_255542cbd1e9d2419904a88c96dfd1e8','swaggerResources','','cmii-uav-grid-manage','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3565,'API_b90f352faba436f6c3b0d012cc768991','航线在线打码','','cmii-uav-grid-manage','/airline/onlineCodingAirline','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3566,'API_2ae92431093f99a5f695fb70d4d25d5b','createRSA','','cmii-uav-grid-manage','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3567,'API_8047ac65c663c75f5838b994c74ea59b','error','','cmii-uav-grid-manage','/error','',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3568,'API_85714065bdbc7de178f29057cd2f73ca','health','','cmii-uav-grid-manage','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3569,'API_500ab519bf1af15a3dca09c1127eaa57','根据网格码查询航线信息','','cmii-uav-grid-manage','/airline/queryAirlineInfo','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3570,'API_cab4befaae83f7c1bdbd29fd048da089','securityConfiguration','','cmii-uav-grid-manage','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3571,'API_4cf3a51325047b95a8234bf95d9ce491','查询单个自定义空域','','cmii-uav-grid-manage','/airspace/queryCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3572,'API_7adf7e814f1484feb5f4d0b1bf0aa01e','接口扫描','','cmii-uav-grid-manage','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:53'),(3573,'API_6c2b05607e066544b78a71461c752f6d','更新自定义空域','','cmii-uav-grid-manage','/airspace/updateCustomAirspace','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3574,'API_67278d5256cca375b549dbd0064fe370','检测航线冲突','','cmii-uav-grid-manage','/airline/checkAirlineConflicts','POST',_binary '\0',_binary '\0','2023-05-04 09:34:57',1,'2024-05-27 11:53:52'),(3575,'API_7b03a864c76767ba4f50b602a2712007','航线航点详情查询','','cmii-uav-data-post-process','','GET',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2023-05-10 05:55:49'),(3576,'API_206ed7e280eeeafb35c4af0497cfb748','取消任务','','cmii-uav-data-post-process','','POST',_binary '\0',_binary '\0','2023-05-04 09:35:03',1,'2023-05-10 05:55:49'),(3577,'API_7f59745ba7746334fc4e42054b2ca602','查询建模类型配置','0:本地 1:本地+云化','cmii-uav-data-post-process','/product/getProductType','GET',_binary '\0',_binary '\0','2023-05-04 09:35:04',1,'2024-09-09 09:16:29'),(3578,'API_b359d2495bdc5aa07e9685fc8072693e','createRSA','','cmii-uav-data-post-process','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:35:04',1,'2024-09-09 09:16:29'),(3579,'API_4b4860beecfeaecd9f377855e82bdeda','更新已勾选的数据','','cmii-uav-data-post-process','/uav/threeD/editVisualChoose','PUT',_binary '\0',_binary '\0','2023-05-04 09:35:05',1,'2024-09-09 09:16:30'),(3580,'API_d52162a5cd1e62dfa714b1bccb31408a','createRSA','','cmii-admin-data','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:35:07',1,'2024-11-06 12:16:54'),(3581,'API_7fd046a59194d2af54f3fcdd4bf15887','查询天气综合接口','','cmii-admin-data','','GET',_binary '\0',_binary '\0','2023-05-04 09:35:08',1,'2023-09-10 12:23:34'),(3582,'API_4787f525e4b9b3e880a13fa6c815b231','编辑任务定义','编辑任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/modifyTask','POST',_binary '\0',_binary '\0','2023-05-04 09:35:11',1,'2024-09-12 02:46:58'),(3583,'API_4d3a4baeb1ac5ae600435063a101ef59','转换为系统任务','转换为系统任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2SysTask','GET',_binary '\0',_binary '\0','2023-05-04 09:35:11',1,'2024-09-12 02:46:57'),(3584,'API_6e4f3e159310433aa6f76aa0d407844e','任务配置列表','任务配置列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskDefList','POST',_binary '\0',_binary '\0','2023-05-04 09:35:12',1,'2024-09-12 02:46:55'),(3585,'API_6ec142d4ef3bb75c68be9a88b5474977','任务名称列表','任务名称列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskNames','GET',_binary '\0',_binary '\0','2023-05-04 09:35:12',1,'2024-09-12 02:46:56'),(3586,'API_94bdafc4561a0552cf36d934525dd6ea','queryTaskTypesMap','','cmii-uav-process','/client/taskdispatch/queryTaskTypesMap','POST',_binary '\0',_binary '\0','2023-05-04 09:35:12',1,'2024-09-12 02:46:58'),(3587,'API_324cbc3392d368a7ca5105ea91eba7b8','转换为自定义任务','转换为自定义任务','cmii-uav-process','/process/bizengine/manage/taskdef/shift2CustomTask','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:54'),(3588,'API_30bf98218376680d09033fb90c863194','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/batchDeleteTaskDef','POST',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:55'),(3589,'API_ec9fb300367fadba871b6a400f41531d','任务ID列表','任务ID列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryTaskTypes','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:58'),(3590,'API_69aab0216c9b217b1d957ed16ce35500','删除任务定义','删除任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/deleteTaskDef','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:58'),(3591,'API_efea46ab4702f2c09a4b662bb4e4ccc3','createRSA','','cmii-uav-process','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:59'),(3592,'API_63a129347e547aa26eaa88996cab12f1','查看详情','查看详情','cmii-uav-process','/process/bizengine/manage/taskdef/geTaskDetail','GET',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:59'),(3593,'API_0614844af2518673e07aeaee51772b5e','新建任务定义','新建任务定义','cmii-uav-process','/process/bizengine/manage/taskdef/createTask','POST',_binary '\0',_binary '\0','2023-05-04 09:35:13',1,'2024-09-12 02:46:54'),(3594,'API_e4e6d4125de70b6463d08fbf9d71c47f','查询指定编号的无人机视频流','','cmii-uav-device','/api/uav/stream/querySpecUavStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:16',1,'2024-11-07 09:01:48'),(3595,'API_be6e682bd0a2cdcf659f1d317e142227','查询无人机基础信息','','cmii-uav-device','/api/uav/stream/queryPlaneInfo','GET',_binary '\0',_binary '\0','2023-05-04 09:35:16',1,'2024-11-07 09:01:55'),(3596,'API_e4ea6bcadcc2e15b59c9bf580bec561c','查询公司下的在线无人机列表','','cmii-uav-device','/api/uav/stream/queryOnlineList','GET',_binary '\0',_binary '\0','2023-05-04 09:35:19',1,'2024-11-07 09:01:56'),(3597,'API_788c7ac27d69d34507ec569755221c6a','查询公司下的在线无人机','','cmii-uav-device','/api/uav/stream/queryStream','GET',_binary '\0',_binary '\0','2023-05-04 09:35:19',1,'2024-11-07 09:01:58'),(3598,'API_ae536f7a1e38eb6657fca01b3a47d766','导入杆塔列表数据','','cmii-uav-industrial-portfolio','','POST',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2023-07-06 10:54:17'),(3599,'API_fee84b04dda28a0764fe822ec3206128','公安场景-定时上报在线飞手位置','公安场景-定时上报在线飞手位置','cmii-uav-industrial-portfolio','/personal/api/uav/industrial/police/common/reportFlyPos','POST',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2024-11-13 12:23:32'),(3600,'API_5c4146c460bddb10dec7702cc9aa1996','监控大屏-出警','监控大屏-出警','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/treatTheCases','POST',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2024-11-13 12:23:31'),(3601,'API_51fa4b9a39998b616e2b7718991312ab','通过无人机id查询作业正在执行的航线','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/supervision/get_flying_waypoints','GET',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2024-11-13 12:23:34'),(3602,'API_e5a3811d8a65c04521f1b95dd0b7aa00','查询已添加的航线列表','','cmii-uav-industrial-portfolio','','GET',_binary '\0',_binary '\0','2023-05-04 09:35:26',1,'2023-07-06 10:54:18'),(3603,'API_ec492e323ee5e1af971cb411a4e7b2e9','监控大屏-删除侦察点','监控大屏-删除侦察点','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/removeZhenchaPoint','GET',_binary '\0',_binary '\0','2023-05-04 09:35:27',1,'2024-11-13 12:23:30'),(3604,'API_6a6b31e94a9a3b2668bc404afd100d9a','删除航线','','cmii-uav-industrial-portfolio','','DELETE',_binary '\0',_binary '\0','2023-05-04 09:35:27',1,'2023-07-06 10:54:18'),(3605,'API_720d0217280e6b4772763eef16aa308d','通过无人机id查询作业正在执行的封存航线','','cmii-uav-mission','/api/uav/mission/surveillance/get_flying_waypoints','GET',_binary '\0',_binary '\0','2023-05-04 09:35:37',1,'2024-11-12 01:20:36'),(3606,'API_fb98f1b11a4224b2a9f3d126ea6cdc46','监控大屏-报警统计','监控大屏-报警统计','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/alarmStat','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:34'),(3607,'API_0ae9eaeb92b8a4496d77382cbe45b245','监控大屏-侦察统计','监控大屏-侦察统计','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/reconnoitreStat','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:34'),(3608,'API_430737f3cced1b78a0a2c206ee1e34c1','监控大屏-侦察点-删除侦察线路','监控大屏-侦察点-删除侦察线路','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/removeZCLine','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:29'),(3609,'API_8a45804a477c72d032614901853235f5','监控大屏-侦察点列表','监控大屏-侦察点列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/zhenchaPointList','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:31'),(3610,'API_f326d01cd17a07d1634fc3d48e7cda68','公安场景-定时上报侦察员位置','公安场景-定时上报侦察员位置','cmii-uav-industrial-portfolio','/api/uav/industrial/police/common/reportZCYPos','POST',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:35'),(3611,'API_2ed470e683730f14ce5e3f247e3b63ce','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/supervision/single_plane_track','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:35'),(3612,'API_c1f5944b8f408afd7ac36af3b6fb3691','监控大屏-人员信息(侦察员&飞手)列表','监控大屏-人员信息列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/personList','GET',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:34'),(3613,'API_3bb14335a0d00471b06cd9203cb53fcf','监控大屏-分享-短信分享(页面暂未调用)','监控大屏-分享','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/shareSms','POST',_binary '\0',_binary '\0','2023-05-04 09:36:59',1,'2024-11-13 12:23:33'),(3614,'API_f544c03500e441e9a882c92277f4a625','侦察员辅助工具-在线无人机列表','侦察员辅助工具-在线无人机列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/scoutTools/onlinePlanes','GET',_binary '\0',_binary '\0','2023-05-04 09:37:00',1,'2024-11-13 12:23:29'),(3615,'API_ce4d06f9113bb2f5540c01657a068638','监控大屏-分享-获取播放地址','监控大屏-分享-获取播放地址','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/share/getPlayStream','GET',_binary '\0',_binary '\0','2023-05-04 09:37:00',1,'2024-11-13 12:23:28'),(3616,'API_29c6189ee71e7807a5ccc90da6b02eef','侦察员辅助工具-侦察点列表','侦察员辅助工具-侦察点列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/scoutTools/ZCPointList','GET',_binary '\0',_binary '\0','2023-05-04 09:37:00',1,'2024-11-13 12:23:36'),(3617,'API_ade52e07d7846112765b4012d3c52523','监控大屏-修改侦察点','监控大屏-修改侦察点','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/updateZhenchaPoint','POST',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-11-13 12:23:28'),(3618,'API_ada07938ec782b595cfb6e395999cb26','监控大屏-实时视频-在线无人机列表','监控大屏-实时视频','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/onlinePlanes','GET',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-11-13 12:23:32'),(3619,'API_069d5865ac0ca5910a32158f258edf91','监控大屏-短信分享警情','监控大屏-短信分享警情','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/shareCaseSms','POST',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-11-13 12:23:30'),(3620,'API_4345b094bea60c4a615029837f45a6a7','监控大屏-报警信息','监控大屏-报警信息','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/alarmList','GET',_binary '\0',_binary '\0','2023-05-04 09:37:01',1,'2024-11-13 12:23:27'),(3621,'API_5c32bd4f52e0a6db5e3c5c9bbde759dc','公安场景-获取无人机视频流','公安场景-获取无人机视频流','cmii-uav-industrial-portfolio','/api/uav/industrial/police/common/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-11-13 12:23:36'),(3622,'API_d06fef7a3a239b7b3cf7436c336aa80f','监控大屏-获取警情短信预览','监控大屏-获取警情短信预览','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/queryCaseSms','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-11-13 12:23:27'),(3623,'API_8d8c74a13d995479c25b7b9bc3ea31b9','侦察员辅助工具-侦察员列表(包含活动轨迹)','侦察员辅助工具-侦察点列表','cmii-uav-industrial-portfolio','/api/uav/industrial/police/scoutTools/scoutList','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-11-13 12:23:28'),(3624,'API_8983fd8979a1a0f8eb017f4404a6a263','监控大屏-添加侦察点','监控大屏-添加侦察点','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/addZhenchaPoint','POST',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-11-13 12:23:34'),(3625,'API_9e85114f913c09ce8a1958f51c8be7ed','查询单个飞机目前最新航迹数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/supervision/uav_realtime_location','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-11-13 12:23:32'),(3626,'API_327d8645deb6a1eba78d8574512ed998','监控大屏-分享-获取分享码&提取码','监控大屏-分享','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/shareCode','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-11-13 12:23:36'),(3627,'API_bf3691dec1177ae5497793d3d9a68a4f','监控大屏-人员轨迹信息(包含活动轨迹)','监控大屏-人员轨迹信息(包含活动轨迹)','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/personTrackList','GET',_binary '\0',_binary '\0','2023-05-04 09:39:48',1,'2024-11-13 12:23:35'),(3628,'API_b78418a40df8d4b9e1ce0f7b62172585','createRSA','','cmii-uav-industrial-portfolio','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-04 09:39:49',1,'2024-11-13 12:23:31'),(3629,'API_2e462a722df3811ff11cd27c9b15642c','监控大屏-侦察点-添加侦察线路','监控大屏-侦察点-添加侦察线路','cmii-uav-industrial-portfolio','/api/uav/industrial/police/policeScreen/addZCLine','POST',_binary '\0',_binary '\0','2023-05-04 09:39:49',1,'2024-11-13 12:23:27'),(3630,'API_c9d38aa3f77178450e2356ef4b7be7cb','强制删除飞行计划','传入区域申请主键','cmii-suav-supervision','/flightPlan/deleteForce','POST',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-11-06 12:18:34'),(3631,'API_cbd150b1864fef46b3039bbb14346e76','createRSA','','cmii-suav-supervision','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-11-06 12:18:30'),(3632,'API_a80a322ee402abfd497995de9b521d36','批量查询区域详情','传入区域主键','cmii-suav-supervision','/areaPlan/details','GET',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-11-06 12:18:29'),(3633,'API_be4ef9c9fa5972aece54fdf47c7cd68d','获取所有计划名称','','cmii-suav-supervision','/flightPlan/getFlightPlanNames','GET',_binary '\0',_binary '\0','2023-05-05 01:30:11',1,'2024-11-06 12:18:37'),(3634,'API_e2f5d58ca78ac8b129bbe9d8225eb54b','查询飞行计划详情(回填)','传入区域主键','cmii-suav-supervision','/flightPlan/detail/backfill','GET',_binary '\0',_binary '\0','2023-05-05 01:30:12',1,'2024-11-06 12:18:29'),(3635,'API_3bfae6b5ec9ee6f9f969279d7daef5ca','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/app/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2023-05-05 01:30:12',1,'2024-11-06 12:18:35'),(3636,'API_aa175197db34b859cf7b21e0e82590d7','批量获取查询空域详情','传入空域主键','cmii-suav-supervision','/zydAirspace/queryDetails.do','GET',_binary '\0',_binary '\0','2023-05-05 01:30:12',1,'2024-11-06 12:18:34'),(3637,'API_613eecfd9253532520098b2f8550b2df','获取空域申请和空域限制所有数据','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimit.do','POST',_binary '\0',_binary '\0','2023-05-05 01:30:13',1,'2024-11-06 12:18:33'),(3638,'API_3dd46bfdf1e8344320572e7547cc7c41','getDocumentation','','cmii-uav-grid-engine','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:52'),(3639,'API_f4fa7b0f11a8fe90c579e2aafa3dad2b','securityConfiguration','','cmii-uav-grid-engine','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:54'),(3640,'API_86ec146d28b4d5a8c0460be204002196','根据多边形获取四进制网格码','','cmii-uav-grid-engine','/common/getGeoNum4ListByGeometry','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:52'),(3641,'API_6f713e872ad99b6cb75767ea6e8d6b06','error','','cmii-uav-grid-engine','/error','',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3642,'API_7142568fed6df94b99e61440ef823e3d','getDocumentation','','cmii-uav-grid-engine','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3643,'API_6196437e370a6547184015ff547640cc','health','','cmii-uav-grid-engine','/cmii/health','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3644,'API_9f55218fa69a8e3fac2cdef0bcbc6773','获取网格瓦片绘制坐标','','cmii-uav-grid-engine','','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2023-10-27 06:15:45'),(3645,'API_89e59246a2682dd65d61ce49ac47ed10','获取网格码','','cmii-uav-grid-engine','/common/getGrid','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3646,'API_66ae0da27522ab4602f5591318a3ed56','ping','','cmii-uav-grid-engine','/cmii/ping','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3647,'API_0b4d1c65bc1af0a7935360286959a479','根据范围获取地图绘制网格线','','cmii-uav-grid-engine','/layer/drawGridOnMap','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3648,'API_2866970ff6ecfd60dc96c1dfa2b5c520','接口扫描','','cmii-uav-grid-engine','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3649,'API_e5229ff58dc69f896c07a56d5dfc5bd5','uiConfiguration','','cmii-uav-grid-engine','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3650,'API_2cb126f44bfd77fda4ad09eecc89def0','env','','cmii-uav-grid-engine','/cmii/env','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3651,'API_cf8f57f3c08e0fc50685235448f40312','createRSA','','cmii-uav-grid-engine','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3652,'API_61cb19e0d9d9a4b3385d6592c3067000','proxy','','cmii-uav-grid-engine','','',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2023-10-27 06:15:45'),(3653,'API_8940c2b552bcf1dc2420f7e8a0bc6185','根据多边形获取网格码和中心点','','cmii-uav-grid-engine','/common/getGeoNumAndCenterByGeometry','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3654,'API_956469f6b0bd193e5a89d66a6c87d881','获取网格引擎的web端地址','','cmii-uav-grid-engine','/proxy/iWhereMapperWebUrl','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:52'),(3655,'API_3142acfe04e4c2530afe7c8af43e8a81','swaggerResources','','cmii-uav-grid-engine','/swagger-resources','GET',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3656,'API_4e2bca71f4efaa8d03ea22ca55109bb8','网格条件查询','','cmii-uav-grid-engine','/thematic/getThematicByGeoNum','POST',_binary '\0',_binary '\0','2023-05-05 07:20:35',1,'2024-05-27 11:50:53'),(3657,'API_e3649b9f1f9ec778f06100a6493f1b6c','停止直播','','cmii-uav-surveillance','/surveillance/dji_cloud/stream_control/stop_push','POST',_binary '\0',_binary '\0','2023-05-08 05:48:01',1,'2024-11-12 03:56:09'),(3658,'API_da04010a186332bffbdc099f05ffa784','开始直播','','cmii-uav-surveillance','/surveillance/dji_cloud/stream_control/start_push','POST',_binary '\0',_binary '\0','2023-05-08 05:48:02',1,'2024-11-12 03:56:08'),(3659,'API_1a0fc2b7d3fb9a8c702019ecc6482ca0','按设备号查询无人机详情查询不用公司id','','cmii-uav-device','/api/uav/plane/queryDetailByDeviceNoWithoutCompanyId','GET',_binary '\0',_binary '\0','2023-05-12 01:14:55',1,'2024-11-07 09:01:54'),(3660,'API_0f959d8a065bba9b54784b8c848a586c','根据载荷编码查对应的设备号','','cmii-uav-device','/api/uav/load/queryDeviceNoByCode','POST',_binary '\0',_binary '\0','2023-05-17 01:20:52',1,'2024-11-07 09:01:47'),(3661,'API_48978d5ef090d81630fb3605f57903b7','解密服务','','cmii-uav-user','/public/cipher/decrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:54',1,'2024-11-06 12:16:35'),(3662,'API_dcd9bfc9f9145fd7fa2f86f84b0fe4dd','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryInterfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 09:49:56',1,'2024-11-06 12:16:38'),(3663,'API_c5421137b351c6ead103badcff054086','查询出符合条件的API','','cmii-uav-user','/api/uav/resource/api/queryTopN','GET',_binary '\0',_binary '\0','2023-05-18 09:49:57',1,'2024-11-06 12:16:28'),(3664,'API_fd18a7dcada967185912d83f28c9d074','加密服务','','cmii-uav-user','/public/cipher/encrypt','POST',_binary '\0',_binary '\0','2023-05-18 09:49:57',1,'2024-11-06 12:16:31'),(3665,'API_b4b7083a6db8e45193495a859dc1b01a','创建公司密钥配置','','cmii-admin-data','/personal/cipher/interfaceAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-11-06 12:16:49'),(3666,'API_d6f08ecdcb3267c96d5f438151bc7c9b','公司密钥配置编辑','','cmii-admin-data','/api/admin/cipher/config/edit','POST',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-11-06 12:16:50'),(3667,'API_0f3ebffc0b074339cf0bcbd6f1df19bf','查询返回编码','','cmii-admin-data','/api/admin/cipher/params/returnCode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-11-06 12:16:47'),(3668,'API_74f1e5f507799e1e3205749b034cde0e','创建公司密钥配置','','cmii-admin-data','/api/admin/cipher/config/add','POST',_binary '\0',_binary '\0','2023-05-18 10:48:38',1,'2024-11-06 12:16:50'),(3669,'API_2741dec94ddea0833a4316fd252e0276','查询可以加密的接口列表','','cmii-admin-data','/api/admin/cipher/params/interfaces','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-11-06 12:16:48'),(3670,'API_b5e9ffbb47525729bc78c01fdf228567','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/mgfHashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:39',1,'2024-11-06 12:16:51'),(3671,'API_2417860ccff3359fe9dba9edfaac5f42','密钥配置详情','','cmii-admin-data','/rpc/cipher/encryptDetail','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:16:49'),(3672,'API_9b1451f70e44b613594e017f2628a13a','根据接口编码集合查询接口信息','','cmii-admin-data','/api/admin/cipher/params/interfacesByCodes','POST',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:16:49'),(3673,'API_bd0024ecbe647e014a449bc9d5f729c7','查询加密的参数以及参数值列表','','cmii-admin-data','/api/admin/cipher/params/cipherTypeParams','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:16:50'),(3674,'API_4f43715ed81ec4c9a0acee6c1bb84781','查询工作模式列表','','cmii-admin-data','/api/admin/cipher/params/workMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:16:55'),(3675,'API_694d36068c38eb981742a7ae6ba5d0f4','对称加密的类型','','cmii-admin-data','/api/admin/cipher/params/symmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:16:49'),(3676,'API_d64b38a2d894d23426dbbfb9128d0c07','未全部配置过的组织列表','','cmii-admin-data','/api/admin/cipher/unRelatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:16:55'),(3677,'API_d52a332a6946771c1f169d5066187469','密钥配置详情','','cmii-admin-data','/api/admin/cipher/configDetail','GET',_binary '\0',_binary '\0','2023-05-18 10:48:40',1,'2024-11-06 12:16:57'),(3678,'API_84f91b64d5bfd02bb04aa626edf1d6dd','查询填充模式列表','','cmii-admin-data','/api/admin/cipher/params/paddingMode','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:16:56'),(3679,'API_644f2dab52b418e265238fa68e275c48','查询密钥长度','','cmii-admin-data','/api/admin/cipher/params/keyLength','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:16:53'),(3680,'API_c9de66fbe7350603d416b0a83ed42dc6','已经配置过的组织列表','','cmii-admin-data','/api/admin/cipher/relatedCompanies','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:16:56'),(3681,'API_4eb7e9b4d6471bbd1d931e39a14f0f8b','密钥配置历史版本','','cmii-admin-data','/api/admin/cipher/history','POST',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:16:53'),(3682,'API_b7035bcdcc081a0ce8c2444d57f99b45','非对称加密类型','','cmii-admin-data','/api/admin/cipher/params/asymmetricAlgorithms','GET',_binary '\0',_binary '\0','2023-05-18 10:48:41',1,'2024-11-06 12:16:52'),(3683,'API_8529eee665f795dfecf3af378fba2cd1','查询RSAHash类型','','cmii-admin-data','/api/admin/cipher/params/hashType','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:16:56'),(3684,'API_cb24eaf17427b8969c7410c32143a00c','查询RSA密钥格式','','cmii-admin-data','/api/admin/cipher/params/keyFormat','GET',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:16:48'),(3685,'API_d540393b2029950246fcff435da75cd7','公司密钥配置删除','','cmii-admin-data','/api/admin/cipher/config/delete','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:16:55'),(3686,'API_1c97a7512a978a1d4698c682f4941eca','密钥配置列表','','cmii-admin-data','/api/admin/cipher/configs','POST',_binary '\0',_binary '\0','2023-05-18 10:48:42',1,'2024-11-06 12:16:57'),(3687,'API_b782d34cbca783d78126be9adc4c7ee3','增加AOI','增加AOI','cmii-uav-gis-server','/aoi/add','POST',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2023-05-19 03:16:36'),(3688,'API_82aef62751b4764781a3669dc02eec26','POI数据初始化','','cmii-uav-gis-server','/zydPOI/initialize','GET',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2024-10-23 08:39:51'),(3689,'API_40cceca2ce54f4ec00dccf9457a200fd','获取兴趣点详情','获取兴趣点详情','cmii-uav-gis-server','/zydPOI/getDetail','GET',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2024-10-23 08:39:50'),(3690,'API_8344938ba1ade9968e021f4f8c479cab','查询兴趣点类型树','查询兴趣点类型树','cmii-uav-gis-server','/poi/TreeType','POST',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2024-10-23 08:39:48'),(3691,'API_39b603bb4d739297db1ea40fc038f1de','获取AOI列表','获取AOI列表','cmii-uav-gis-server','/aoi/get','POST',_binary '\0',_binary '\0','2023-05-18 10:48:57',1,'2023-05-19 03:16:36'),(3692,'API_57b9587729ee6d38fcc09f635a01ea46','查询作业执行人的用户反转列表','','cmii-uav-mission','/api/uav/mission/mission_info/down_list_user_info_reverse','GET',_binary '\0',_binary '\0','2023-05-18 10:49:00',1,'2024-11-12 01:20:41'),(3693,'API_03300a3d15131066c317b55cc1b9dc09','指定起始点和终点,航线为一条直线,快速创建作业,并且开始作业jt','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_mission_and_start_jt','POST',_binary '\0',_binary '\0','2023-05-18 10:49:01',1,'2024-11-12 01:20:35'),(3694,'API_c5e17ecd92105409cf8e9fbd8074e533','提供已有航线,无人机 创建快速作业jt','','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_with_line_and_uav_jt','POST',_binary '\0',_binary '\0','2023-05-18 10:49:01',1,'2024-11-12 01:20:34'),(3695,'API_049424d8e4fbbef65eca7fb23a9d7536','通过作业taskType查询照片','','cmii-uav-mission','/picture/queryAllPicsByMissionTaskType','GET',_binary '\0',_binary '\0','2023-05-18 10:49:02',1,'2024-11-12 01:20:38'),(3696,'API_97578d48c0cdc784ef636bee8b733bad','head请求查询文件','','cmii-uav-material-warehouse','','HEAD',_binary '\0',_binary '\0','2023-05-18 10:53:11',1,'2023-05-22 08:27:33'),(3697,'API_f6da22cb8ffdc7d070859cb86448319b','模型分享文件下载','','cmii-uav-material-warehouse','','GET',_binary '\0',_binary '\0','2023-05-18 10:53:11',1,'2023-05-22 08:27:34'),(3698,'API_12659c3a166fd35f41e7a8546823e771','文件推流','','cmii-uav-material-warehouse','','PATCH',_binary '\0',_binary '\0','2023-05-18 10:53:11',1,'2023-05-22 08:27:33'),(3699,'API_63e907766560ce12179088465e790bb1','createRSA','','cmii-uav-material-warehouse','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-05-18 10:53:12',1,'2024-11-11 11:46:08'),(3700,'API_c2f4ea34ada991983fbc0a047e545582','获取检测参数','','cmii-uav-industrial-portfolio','/conflictWarning/getDetection','POST',_binary '\0',_binary '\0','2023-05-19 01:16:22',1,'2024-11-13 12:23:34'),(3701,'API_1127fb5f388b1dbba9d96d50fbb1f45f','设置检测参数','','cmii-uav-industrial-portfolio','/conflictWarning/editDetection','POST',_binary '\0',_binary '\0','2023-05-19 01:16:22',1,'2024-11-13 12:23:35'),(3702,'API_77461ee4d475d49ca8856d4170c632e1','获取检测参数操作日志','','cmii-uav-industrial-portfolio','/conflictWarning/getEditLog','GET',_binary '\0',_binary '\0','2023-05-19 03:13:34',1,'2024-11-13 12:23:30'),(3703,'API_5e5128d4c251e4133bdffd36e41c8a87','从redis重新载入探测基站信息industrial:radar:detect:baseLocation; Map key 是int','{\n \"radarZ\":10,\n \"radarY\":0,\n \"radarX\":0,\n \"radarLat84\":\"30.7341445\",\n \"radarLon84\":\"120.4930214\",\n \"radarHeight\":10\n}','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/detection/reloadDetectedStationLocationFromRedis','GET',_binary '\0',_binary '\0','2023-05-19 03:13:34',1,'2024-11-13 12:23:33'),(3704,'API_c95bbfa6e348103124f0e8da9c9234e1','冲突预警返回对象(便于前端从文档查看,预开发),实际对象由websocket返回','','cmii-uav-industrial-portfolio','/conflictWarning/test','GET',_binary '\0',_binary '\0','2023-05-19 03:13:35',1,'2024-11-13 12:23:33'),(3705,'API_b9e0e052b103a3257f3e6d4677df5692','批量判断是否有冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersect','POST',_binary '\0',_binary '\0','2023-05-19 03:24:27',1,'2024-06-18 01:09:56'),(3706,'API_658f1523eac1c738cb8686d03e440b7e','unmarkFavorite','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/favorites','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3707,'API_6b48aff3f12c9e69ccf75fe9428154f2','publishCancelJob','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/jobs','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3708,'API_c59186fbfe24d43705b54242781c0a81','fastUpload','','cmii-uav-integration','/media/api/v1/workspaces/{workspace_id}/fast-upload','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3709,'API_f481be4548daee69b2de1d7f540d3f2c','uploadMediaHighestPriority','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/jobs/{job_id}/media-highest','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3710,'API_e823b052cc33cb2aa0c48a48771a2f9a','updateElement','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/elements/{element_id}','PUT',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,'2023-06-28 01:22:25'),(3711,'API_255078736bbd40556a9a4f82db14b5ae','uploadCallBack','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/upload-callback','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3712,'API_3cb80bcdb9259fbf4e8ab8a303fb864d','getAllElements','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/element-groups','GET',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,'2023-06-28 01:22:25'),(3713,'API_5c80141dd7b2421be0796b76de8279c1','uploadCallback','','cmii-uav-integration','/media/api/v1/workspaces/{workspace_id}/files/tiny-fingerprints','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3714,'API_640a12fa98c75057ffb4162d1a4c61b5','createJob','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/flight-tasks','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3715,'API_92dd4f1675fbdd6c8bfb1029ca5657f7','markFavorite','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/favorites','POST',_binary '\0',_binary '\0','2023-05-19 06:01:03',1,NULL),(3716,'API_0ce7a43b0c3a60254f27cb60c7d96fd7','checkDuplicateNames','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/duplicate-names','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3717,'API_8bc4e724c73d75bd939442c07bfa9e24','deleteElement','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/elements/{element_id}','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3718,'API_011d123c29e5aefd4bd1d4748de3223f','getWaylinesPagination','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3719,'API_9c3d63b406ab85a02709a5e4f582b42c','uploadCallback','','cmii-uav-integration','/media/api/v1/workspaces/{workspace_id}/upload-callback','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3720,'API_7f51a0d40e2b1dfb56e7f19e15931b06','继续航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_recovery','PUT',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3721,'API_5897d538acf93706d5d17a7747a3cfb5','deleteAllElementByGroupId','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/element-groups/{group_id}/elements','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3722,'API_69145b2e9cac9c1a293a359c0ea52992','getFilesList','','cmii-uav-integration','/media/api/v1/files/{workspace_id}/files','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3723,'API_6baa8f3aca910e50c96fa380b6c6bb36','暂停航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_pause','PUT',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3724,'API_b8c36fe9b2be1181c3d527f288966765','getJobs','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/jobs','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3725,'API_c38081b81c2d3f24ddc3d3be599e1cc3','saveElement','','cmii-uav-integration','/map/api/v1/workspaces/{workspace_id}/element-groups/{group_id}/elements','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3726,'API_43d3a8ad150b37b6034831fe58cf7851','getFileUrl','','cmii-uav-integration','/media/api/v1/files/{workspace_id}/file/{file_id}/url','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3727,'API_710c6967a14c5b1aede93fb834e47811','importKmzFile','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/file/upload','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3728,'API_8818742256e4e2fefe1695da64a3c68a','deleteWayline','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/{wayline_id}','DELETE',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3729,'API_2e46ce83646c222c3d19af27ac0c86cf','getSTSCredentials','','cmii-uav-integration','/storage/api/v1/workspaces/{workspace_id}/sts','POST',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,'2023-06-28 01:22:25'),(3730,'API_90dea4b217b8e13e22abaaf42646bd6b','getFileUrl','','cmii-uav-integration','/wayline/api/v1/workspaces/{workspace_id}/waylines/{wayline_id}/url','GET',_binary '\0',_binary '\0','2023-05-19 06:01:04',1,NULL),(3731,'API_bcf6642aa86d52571f01b583785ed493','自动暂停','由其他程序触发的无人机暂停','cmii-uav-surveillance','/surveillance/uav_command/fly_auto_pause','POST',_binary '\0',_binary '\0','2023-05-19 06:01:59',1,'2024-11-12 03:56:11'),(3732,'API_39f10186538eca8bf44539e1cbdc037a','恢复航线','没有航线的话会报错','cmii-uav-surveillance','/surveillance/uav_command/recover_fly','POST',_binary '\0',_binary '\0','2023-05-19 06:01:59',1,'2024-11-12 03:56:06'),(3733,'API_67e7489e7b2c8787811a918245592b74','hubTurnOnlineTest','','cmii-uav-surveillance','/surveillance/uav_command/hubTurnOnlineTest','POST',_binary '\0',_binary '\0','2023-05-19 06:02:00',1,'2024-07-18 09:23:50'),(3734,'API_4390cf491ac0dbf4ce2c675c8ccab9bb','stopTemporarily','','cmii-uav-surveillance','/surveillance/uav_command/stopTemporarily_Test','POST',_binary '\0',_binary '\0','2023-05-19 06:02:00',1,'2023-11-16 02:46:52'),(3735,'API_5964b15fa9858be8bd2d0c39a8b4034b','通过missionid查询对应出警详情','','cmii-uav-surveillance','/surveillance/queryFireCaseByMissionId','GET',_binary '\0',_binary '\0','2023-05-19 06:02:01',1,'2024-11-12 03:56:09'),(3736,'API_db86c13d870cf2893e8d4f5c4d88cc3c','从大数据公司获取江苏文旅获取人流量向图','','cmii-uav-surveillance','/surveillance/wenlv/{timeStamp}','GET',_binary '\0',_binary '\0','2023-05-19 06:02:02',1,'2024-11-12 03:56:05'),(3737,'API_377a6ad2af134c5509d903ef49cd370a','给定航线生成kmz 返回文件id','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_kmz_id_by_pointsData','POST',_binary '\0',_binary '\0','2023-05-19 06:02:24',1,'2024-11-12 03:52:39'),(3738,'API_9af09cb0b05436d31116614ec5082063','通过视频编码查询机库设备号','','cmii-uav-device','/api/uav/hangar/queryDeviceNoByVideoCode','GET',_binary '\0',_binary '\0','2023-05-19 08:28:34',1,'2024-11-07 09:01:50'),(3739,'API_83501b10768effef0eab0ec0fe8eec4c','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-19 08:28:34',1,'2023-05-19 08:28:38'),(3740,'API_52ba51a36114edf84bf755f56664163f','aop sn test','','cmii-uav-integration','/dji_cloud/wayline/aop_sn_test','POST',_binary '\0',_binary '\0','2023-05-22 02:54:44',1,'2024-10-22 06:16:05'),(3741,'API_a7ac76690996556f88313b0be9d41428','执行最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/execute_wayline','POST',_binary '\0',_binary '\0','2023-05-22 02:54:44',1,'2024-10-22 06:16:05'),(3742,'API_7bbedd757ce822b0dec9ad25951789b7','继续航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_recovery','POST',_binary '\0',_binary '\0','2023-05-22 02:54:45',1,'2024-10-22 06:16:05'),(3743,'API_9c8578a79fc2e076dc3cdb94439fc3fc','暂停航线','','cmii-uav-integration','/dji_cloud/wayline/flighttask_pause','POST',_binary '\0',_binary '\0','2023-05-22 02:54:45',1,'2024-10-22 06:16:04'),(3744,'API_7d805e470b91fb0096f0a52f444d976a','取消最近的一条航线任务','','cmii-uav-integration','/dji_cloud/wayline/undo_wayline','POST',_binary '\0',_binary '\0','2023-05-22 02:54:45',1,'2024-10-22 06:16:06'),(3745,'API_7aeff08ab35ce893c4625b166660f6fe','按无人机设备号查询无人机详情查询无需公司隔离','','cmii-uav-device','/api/uav/plane/queryDetailByUavSn','GET',_binary '\0',_binary '\0','2023-05-23 10:05:43',1,'2024-11-07 09:01:52'),(3746,'API_4ab35aed02383cead8315ecf74959f84','查询无人机型号和载荷的型号code wrjxh64 这种','','cmii-uav-device','/api/device/mqtt/queryUavModel','POST',_binary '\0',_binary '\0','2023-05-23 10:05:43',1,'2024-11-07 09:01:58'),(3747,'API_40b7feeb871b38ee80243ea6b9b87a1f','删除数据','','cmii-uav-grid-datasource','/fightPlan/deleteData','GET',_binary '\0',_binary '\0','2023-05-24 01:57:19',1,'2024-06-18 01:09:56'),(3748,'API_525c8cdfcd0e5428eab20ce710e9ab59','更新状态','','cmii-uav-grid-datasource','/fightPlan/updateStatus','GET',_binary '\0',_binary '\0','2023-05-24 01:57:19',1,'2024-06-18 01:09:56'),(3749,'API_ba0ff43e1d6883aca926c6003e97e4b8','接收utmiss传输的数据','接收utmiss传输的数据','cmii-uav-industrial-portfolio','/public/api/utmiss/import','POST',_binary '\0',_binary '\0','2023-05-31 09:02:14',1,'2024-11-13 12:23:36'),(3750,'API_09372cb87e3e58fc712f1c9af492c212','允许导入数据','允许导入数据','cmii-uav-industrial-portfolio','/api/utmiss/allow/import','GET',_binary '\0',_binary '\0','2023-06-01 09:37:17',1,'2024-11-13 12:23:28'),(3751,'API_ec1b474e2bf7c844d72779003905e5df','禁止导入数据','禁止导入数据','cmii-uav-industrial-portfolio','/api/utmiss/forbid/import','GET',_binary '\0',_binary '\0','2023-06-01 09:37:17',1,'2024-11-13 12:23:28'),(3752,'API_db1ddbd9a043b05718ac459fe9d9348c','插入告警图片','','cmii-uav-mission','/api/uav/mission/surveillance/setAlarmPic','POST',_binary '\0',_binary '\0','2023-06-14 09:37:23',1,'2024-11-12 01:20:36'),(3753,'API_23013111b0eb52f8adfb5699bc4561f7','视频数据回放-批量删除视频片段','视频数据回放-批量删除视频片段','cmii-uav-cloud-live','/video/playback/batchDeleteSegment','POST',_binary '\0',_binary '\0','2023-06-14 09:37:48',1,'2024-11-14 02:02:39'),(3754,'API_360e70eb0864b1f60addcf622a7ab6b3','添加自定义警情点','','cmii-uav-mission','/api/uav/mission/mission_info/add_fire_case_point','POST',_binary '\0',_binary '\0','2023-06-14 09:37:58',1,'2024-11-12 01:20:39'),(3755,'API_12217b6550ba6d26e9382f4714b9fa6b','数据同步增加','','cmii-uav-gis-server','/gisSync/dataSyncAdd','POST',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:51'),(3756,'API_39b655796fdb369c152b300a1100b675','地理数据列表查询','','cmii-uav-gis-server','/gis/gisInfoList','POST',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:48'),(3757,'API_90af5a771fba4abf7e2a0be80f86eeb8','发布','','cmii-uav-gis-server','/zydPOI/publish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:49'),(3758,'API_095a5726917711cf2f7503c948b89c35','获取创建人列表','获取创建人列表','cmii-uav-gis-server','/poi/getUsers','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:49'),(3759,'API_96a1dcaddabdcaef7f1019839637c894','添加到图层','','cmii-uav-gis-server','/grid/publish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:48'),(3760,'API_1a031ef22644de53a17417113f1e6e47','更新已勾选的数据','','cmii-uav-gis-server','/gis/chooseEdit','PUT',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:51'),(3761,'API_8136d9a224ce027cc4b2254be62580b5','添加到图层','','cmii-uav-gis-server','/threeD/publish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:50'),(3762,'API_13006ab2f9a65c17b02b39e3ab2f130e','获取创建人列表','获取创建人列表','cmii-uav-gis-server','/zydPOI/getUsers','GET',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:49'),(3763,'API_a2922cad20ce7a4396c2760e2ad86183','数据同步删除','','cmii-uav-gis-server','/gisSync/dataSyncDel','POST',_binary '\0',_binary '\0','2023-06-14 09:38:18',1,'2024-10-23 08:39:51'),(3764,'API_4b491d353a8f24f6e796ae7dedf3ad75','取消发布','','cmii-uav-gis-server','/zydPOI/cancelPublish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:49'),(3765,'API_6594efdd82626347d07e5ae6e1f20ce4','取消添加到图层','','cmii-uav-gis-server','/threeD/cancelPublish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:51'),(3766,'API_795767d0ba728de9abaa72bba0390674','获取该用户下所有的已勾选的数据','','cmii-uav-gis-server','/gis/chooseInfoList/{resource}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:50'),(3767,'API_b912ea319e9c27730a083b7e75ac2d28','获取所有已发布兴趣点','','cmii-uav-gis-server','/zydPOI/getPublished','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:50'),(3768,'API_e747cfdcacb7d9cdeda4f257f7683db4','单体模型编辑','','cmii-uav-gis-server','/threeD/modelEdit','POST',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:47'),(3769,'API_e5fcaf877d43b441aabfecd0df11e0fe','获取兴趣点类型列表','获取兴趣点类型列表','cmii-uav-gis-server','/zydPOI/getTypes','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:48'),(3770,'API_82e4127b923d15f44b79b4a9c25c4918','取消添加到图层','','cmii-uav-gis-server','/grid/cancelPublish/{id}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:47'),(3771,'API_1edf55a8354f45fdf122a4208825e021','获取兴趣点名称列表','获取兴趣点名称列表','cmii-uav-gis-server','/zydPOI/getPoiNames','GET',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:52'),(3772,'API_e57a7eb913a0f61305134da707cf6ff1','单体模型新增','','cmii-uav-gis-server','/threeD/modelCreate','POST',_binary '\0',_binary '\0','2023-06-14 09:38:19',1,'2024-10-23 08:39:50'),(3773,'API_5d2c84b141233da14bd0834e25c792b5','获取该用户下所有的已勾选的数据','','cmii-uav-data-post-process','/uav/threeD/visualChooseInfoList/{resource}','GET',_binary '\0',_binary '\0','2023-06-14 09:38:20',1,'2024-09-09 09:16:29'),(3774,'API_5d1ab7bac94e2ebe0639dfc6d2750463','手动触发数据同步到数据资源','','cmii-uav-data-post-process','/result/gisDataSync','GET',_binary '\0',_binary '\0','2023-06-14 09:38:20',1,'2024-09-09 09:16:28'),(3775,'API_16eb6d9fda49c60a76fab1754a31ba25','获取设备视频流地址信息','获取设备视频流地址信息(包括播放地址和推流地址)','cmii-uav-cloud-live','/client/live/open/queryDeviceStreamInfo','POST',_binary '\0',_binary '\0','2023-06-14 09:38:41',1,'2024-11-14 02:02:35'),(3776,'API_6325d24763533b2cb36ffb1342f7c4b4','配置设备视频流来源地址','配置设备视频流来源地址,并默认启动拉流服务','cmii-uav-cloud-live','/client/live/open/configDevicePullStream','POST',_binary '\0',_binary '\0','2023-06-14 09:38:42',1,'2024-11-14 02:02:37'),(3777,'API_2f53a483eabc8d6dd865a1a94cf4ddc9','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','启动视频拉流任务(前提为已经配置好设备视频流来源地址)','cmii-uav-cloud-live','/client/live/open/startDevicePullStream','GET',_binary '\0',_binary '\0','2023-06-14 09:38:42',1,'2024-11-14 02:02:40'),(3778,'API_ebb54f07d70b2814f4ae4c6b5ee3bd41','查询无人机指点飞行的切换点和指点航线','有机库id要带机库id','cmii-uav-surveillance','/surveillance/uav_command/query_fly_to_info','POST',_binary '\0',_binary '\0','2023-06-15 03:20:20',1,'2024-11-12 03:56:12'),(3779,'API_8f436efd42a44d4a9f3ee17a25c5fa76','开始指点飞行,飞行过程中的指点飞行','不会新建作业','cmii-uav-surveillance','/surveillance/uav_command/uav_fly_to','POST',_binary '\0',_binary '\0','2023-06-15 03:20:22',1,'2024-11-12 03:56:12'),(3780,'API_8d88fe3ab3384a76d9654a500dff6764','从大数据公司获取江苏文旅获取热力图','','cmii-uav-surveillance','/surveillance/wenlv_hotMap/{timeStamp}','GET',_binary '\0',_binary '\0','2023-06-16 02:07:11',1,'2024-11-12 03:56:10'),(3781,'API_a31df8377ea384e1cdf35d64f4c0dfd0','获取江苏文旅获取 热力图 for 前端','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMapNew','GET',_binary '\0',_binary '\0','2023-06-16 02:07:12',1,'2024-11-12 03:56:09'),(3782,'API_dcd1538e9e9461480f7331d39d6cf95b','测试短信推送','','cmii-uav-mission','/api/uav/mission/surveillance/testAlarm','POST',_binary '\0',_binary '\0','2023-06-20 09:04:12',1,'2024-11-12 01:20:34'),(3783,'API_a11aa3eef265569995fa1c683d1796d4','toGeneralTest','','cmii-uav-mission','/oss/to_general_test','POST',_binary '\0',_binary '\0','2023-06-29 06:34:58',1,'2024-10-10 06:29:21'),(3784,'API_4af46dc042bee7fa977943fb2ebd33bc','回放探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryDetectionHistoryByTime','GET',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-11-13 12:23:29'),(3785,'API_b867dd8a23a4c3c4bf47affe60de7400','分页查询告警服务','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/pageAlarm','POST',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-11-13 12:23:35'),(3786,'API_7ae244507b468b4649d570d54bdadfb0','mockDatas','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/mockDatas','POST',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-04-08 06:59:51'),(3787,'API_99e6f866d5a08c5b0043fb4005aef2de','测试分布式','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/redisson','GET',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-11-13 12:23:29'),(3788,'API_9bf742f7ccf4ae863304756b69b13b2d','查询基站数据列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/bts_data_list','GET',_binary '\0',_binary '\0','2023-06-30 06:04:00',1,'2024-11-13 12:23:29'),(3789,'API_470313a0a7e1e379446920fb6b3cc3b9','获取内存中的空域','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/areaPlanFromMemory','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:34'),(3790,'API_0760296718e64d53b86b1c107640fdd9','开启基站告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/alarm_open','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:32'),(3791,'API_50ded1fe3f7b2de559ecad0e7cc25c1a','正在告警的列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/alarmingList','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:28'),(3792,'API_0bb12b21a94736c2bcbcb8cc07dd8249','WS数据接口展示','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/testWs','GET',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:28'),(3793,'API_ce34364bae46af299d5ec09db297bd5d','保存目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/keep_duration_config','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:28'),(3794,'API_4ba4958665c9aa9b9c3563ece64f4af4','查询目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/query_keep_duration_config','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:35'),(3795,'API_e2077819c1b47daeda9ecfaa082e18fa','保存参照点配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/ref_point_config','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:28'),(3796,'API_2963086be76ca7cd7b117fa9794760d4','结束告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/alarm','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:35'),(3797,'API_0cfff2c543e4e7b310be645d0d362b12','导入基站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/bts_data_list','POST',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:27'),(3798,'API_488b0bd96054462a7b96d8a0601123ac','下载基站导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/bts_data_list_template','GET',_binary '\0',_binary '\0','2023-06-30 06:04:01',1,'2024-11-13 12:23:32'),(3799,'API_86212fae431bcdf5f038cb53814f46b3','告警回放','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/alarmPlayback','POST',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-11-13 12:23:31'),(3800,'API_bea55e4aed277d03916d0a111b554456','查询探测的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryDetectionHistory','GET',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-11-13 12:23:32'),(3801,'API_5a8fd2f0ddc3599ad93ff2d1b7d364a4','查询低空探测配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/config','GET',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-11-13 12:23:32'),(3802,'API_d01466eee826ba848ee5a38e274fdc19','增加测试数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/addtestData','POST',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-11-13 12:23:35'),(3803,'API_bf62ff13258f47f503b991e43340b492','关闭基站告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/alarm_close','POST',_binary '\0',_binary '\0','2023-06-30 06:04:02',1,'2024-11-13 12:23:36'),(3804,'API_8463d03ffec886bcaeda1ab7cc7e525a','编辑修改区域','传入区域json字符串,需要有主键','cmii-suav-supervision','/civilMilitary/areaPlan/edit','POST',_binary '\0',_binary '\0','2023-06-30 06:04:09',1,'2024-11-06 12:18:29'),(3805,'API_b25d89aff393d393619441dd519f5ec1','查询现在某个公司有效的区域-包括飞行计划成功的','查询现在某个公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentCompanyValid','POST',_binary '\0',_binary '\0','2023-06-30 06:04:09',1,'2024-11-06 12:18:37'),(3806,'API_2aef5ebc84cc0564f0eab120ff450e7e','新增区域','','cmii-suav-supervision','/civilMilitary/areaPlan/save','POST',_binary '\0',_binary '\0','2023-06-30 06:04:09',1,'2024-11-06 12:18:30'),(3807,'API_0a830e8aed93b95dcc1eb608aff4171b','分页查询','','cmii-suav-supervision','/civilMilitary/areaPlan/query','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:35'),(3808,'API_8ff7cdd07e40b39948e521bb5d3d5b28','批量查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/details','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:35'),(3809,'API_259da35f5a4f644aa1ba9fa8743bd4fd','查询区域详情','传入区域主键','cmii-suav-supervision','/civilMilitary/areaPlan/detail','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:35'),(3810,'API_883ab85260a738f27f8bf1eb20612498','删除区域','传入区域申请主键','cmii-suav-supervision','/civilMilitary/areaPlan/delete','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:33'),(3811,'API_084f04040c61093a6c24768847650baf','查询高度和时间有重叠部分的区域','','cmii-suav-supervision','/civilMilitary/areaPlan/queryByCondition','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:34'),(3812,'API_a30127d11255958512f2f86cbad23bb0','根据code获取用户军民融合token','根据code获取用户军民融合token','cmii-suav-supervision','/permission/getCivilMilitaryToken','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:33'),(3813,'API_24cfad60cff276799452cc532ad48585','判断区域名称是否重复','','cmii-suav-supervision','/civilMilitary/areaPlan/judgeName','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:34'),(3814,'API_fd0f0cf45d0bae343e99f46009c9a463','根据区域id查询区域列表','根据区域id查询区域列表','cmii-suav-supervision','/civilMilitary/areaPlan/queryByHistoryIds','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:31'),(3815,'API_2e2433cfb06e1f643fc90534a7351bef','统计飞行计划','','cmii-suav-supervision','/flightPlan/count','GET',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:33'),(3816,'API_f4daceebc64feceb452db713e5f05ca2','查询现在所有公司有效的区域-包括飞行计划成功的','查询现在所有公司有效的区域-包括飞行计划成功的','cmii-suav-supervision','/civilMilitary/areaPlan/currentValid','POST',_binary '\0',_binary '\0','2023-06-30 06:04:10',1,'2024-11-06 12:18:32'),(3817,'API_48c612ae619fc003567d89bc8d8c9795','flyToPoint','','cmii-uav-integration','/dji_cloud/remote_control/fly_to_point','POST',_binary '\0',_binary '\0','2023-07-05 08:45:15',1,'2024-10-22 06:16:06'),(3818,'API_5f8c9286761ac2959ea0a91254f548fd','获取无人机返航高度和速度信息','','cmii-uav-surveillance','/surveillance/get_uav_return_info','GET',_binary '\0',_binary '\0','2023-07-06 01:43:48',1,'2024-11-12 03:56:04'),(3819,'API_4c2a1cda11a6fcc28bfa488ee204b1f6','设置无人机返航高度和速度信息','','cmii-uav-surveillance','/surveillance/put_uav_return_info','POST',_binary '\0',_binary '\0','2023-07-06 01:43:49',1,'2024-11-12 03:56:04'),(3820,'API_f57b3d7e7efdf2e3faa6869dc49b52cd','获取空域申请和空域限制所有数据','需传参','cmii-uav-airspace','/zydAirspace/getAllByCondition.do','POST',_binary '\0',_binary '\0','2023-07-06 10:53:14',1,'2024-11-14 03:10:23'),(3821,'API_75a92385064a14c92617dcbb7b0d3dfb','根据用户id集合获取信息,包括删除用户','','cmii-uav-user','/user/getHistoryByIds','POST',_binary '\0',_binary '\0','2023-07-06 10:53:23',1,'2024-11-06 12:16:26'),(3822,'API_43e5a827e0728c4014402a2e1e89ae0d','testUavBound','','cmii-uav-surveillance','/uavboundtest','GET',_binary '\0',_binary '\0','2023-07-06 10:54:10',1,'2023-10-09 03:33:42'),(3823,'API_5726dc686edbcca954c79a044674d7ae','testUavName','','cmii-uav-surveillance','/uavnametest','GET',_binary '\0',_binary '\0','2023-07-06 10:54:11',1,'2023-10-09 03:33:42'),(3824,'API_da39b0086c93277f985f32d6a2f37b9b','重跑(重跑流程实例中的任务)','重跑(重跑流程实例中的任务)','cmii-uav-process','/process/bizengine/manage/flowinst/reRunTask','GET',_binary '\0',_binary '\0','2023-07-06 10:54:44',1,'2024-09-12 02:46:57'),(3825,'API_a7a60c72d8d6084bbe91152a3b456139','批量删除任务实例','批量删任务程实例','cmii-uav-process','/process/bizengine/manage/taskInst/batchDeleteTaskInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:58'),(3826,'API_5f79d730928c488904fbd3fbb907d8fa','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/taskdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:59'),(3827,'API_59c2e318823d1cd11b630c3935fed60f','工作流实例ID列表','工作流实例ID列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryProcInstIds','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:58'),(3828,'API_07aee7fc15102bcbd91d5fbe329c44eb','转换为系统流程','转换为系统流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2SysProcess','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3829,'API_64439cca335e9e460770b8a05dd7ca64','流程ID&名称列表','流程ID&名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypeInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3830,'API_f311697d40d6259884b4bca181888973','页面调试启动新流程','页面调试启动新流程','cmii-uav-process','/process/bizengine/manage/flowinst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:55'),(3831,'API_00e6210b02681a766e9d52b3b4030107','查询用户剩余年假天数','查询用户剩余年假天数','cmii-uav-process','/process/bizengine/testTask/leave/queryAvailableDay','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3832,'API_66e293664ad8ca26a8a87bc640a175bd','批量删除流程实例','批量删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/batchDeleteProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:54'),(3833,'API_4d03daa6fa787ec9e294503d00abb7e4','删除流程定义','删除流程定义','cmii-uav-process','/process/bizengine/manage/flowdef/deleteProcessDef','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3834,'API_3a877970f526e0030b3010e086d4f267','查询调用组织信息(选择公司)','查询调用组织信息(选择公司)','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartTenantInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3835,'API_1acf2555d6ebfc1e9e85735c3e723a63','选择用户信息','选择用户信息','cmii-uav-process','/process/bizengine/manage/flowinst/queryStartUserInfos','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:58'),(3836,'API_fc41db81d059e506876bbc207dff8dc1','查看流程定义详情','查看流程定义详情','cmii-uav-process','/process/bizengine/manage/flowdef/geFlowDefDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3837,'API_7a72800e4a72398506e07780bbc11d2b','微服务名列表','微服务名列表','cmii-uav-process','/process/bizengine/manage/taskdef/queryServiceNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:59'),(3838,'API_76f8502def5fb81ba61d84ea5ca3d1ca','编辑工作流定义','编辑工作流定义','cmii-uav-process','/process/bizengine/manage/flowdef/modifyFlowDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:54'),(3839,'API_b9537d878adaaca679fc4ac238750692','流程ID列表','流程ID列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessTypes','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3840,'API_2cd52ff401214bba6a8bcb3c0ee37e71','转换为自定义流程','转换为自定义流程','cmii-uav-process','/process/bizengine/manage/flowdef/shift2CustomFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:55'),(3841,'API_2fec2f93fde350a2d1262ab45e9060cd','启动新流程(Feign接口)','启动新流程(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/startProcess','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3842,'API_4c1fe164e334b4f74359a66329dca6d0','查询任务运行状态列表','查询任务运行状态列表','cmii-uav-process','/process/bizengine/manage/taskInst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3843,'API_bd48906e98f8465f993763426f36c79c','查看任务运行日志详情','查看任务运行日志详情','cmii-uav-process','/process/bizengine/manage/taskInst/getTaskLogDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3844,'API_85231ad75fadd028dc3bd7bfb4341711','工作流配置列表','工作流配置列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryFlowDefList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:59'),(3845,'API_1277cd8e52f72e5a36744d05d33903bf','系统审批请假信息','系统审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/sysApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:57'),(3846,'API_6bd7bc3ccf337d76a3f5d7519a5c8797','查看工作流实例详情','查看工作流实例详情','cmii-uav-process','/process/bizengine/manage/flowinst/getFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:45',1,'2024-09-12 02:46:56'),(3847,'API_4fdcf1f07680752edcbca7c4029669b9','新建工作流基础信息','新建工作流基础信息','cmii-uav-process','/process/bizengine/manage/flowdef/createFlow','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3848,'API_4ad2f392cff40a2cfe270918610ad891','查询流程实例运行状态列表','查询流程实例运行状态列表','cmii-uav-process','/process/bizengine/manage/flowinst/getRunStatusList','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3849,'API_b17cfa9e77b14474c016864348f42f8d','停止(停止流程及任务,传递任务记录id)','停止(停止流程及任务,传递任务记录id)','cmii-uav-process','/process/bizengine/manage/flowinst/stopFlow','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3850,'API_558d40251bfea3942739f3eaa844947f','流程名称列表','流程名称列表','cmii-uav-process','/process/bizengine/manage/flowdef/queryProcessNames','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3851,'API_d4f43279aa43f3fbed1af1c41981a2b8','获取资源锁','获取资源锁','cmii-uav-process','/process/bizengine/tools/lock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3852,'API_94739fe015051a70b1d8206027c62574','修改工作流任务状态','修改工作流任务状态','cmii-uav-process','/process/bizengine/manage/periodflowinst/updatePeriodInstStatus','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3853,'API_12469c1465e7f5a432fe945abff7fa90','批量删除周期任务实例','批量删除周期任务实例','cmii-uav-process','/process/bizengine/manage/periodflowinst/batchDeletePeriodProcInst','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3854,'API_9559cc99e0361bce3a3151a398003521','流程图展示','流程图展示','cmii-uav-process','/process/bizengine/manage/flowinst/getflowchartInfo','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3855,'API_f72569f8e318eddf19bf06a2312862a0','经理审批请假信息','经理审批请假信息','cmii-uav-process','/process/bizengine/testTask/leave/managerApproval','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3856,'API_4c015162fbae6652dcf6591bec42b08f','删除任务实例','删除任务实例','cmii-uav-process','/process/bizengine/manage/taskInst/deleteTaskInst','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:59'),(3857,'API_779f024ff303fa04f91b3bf87bd09c52','发送告警短信','发送告警短信','cmii-uav-process','/process/bizengine/tools/sendWarnSms','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:59'),(3858,'API_b67caf989c8a32e44b8ccb65f1f5878d','释放资源锁','释放资源锁','cmii-uav-process','/process/bizengine/tools/unLock','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3859,'API_999cad19905bb05d78aff49f33cf5602','任务运行记录列表','任务运行记录列表','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3860,'API_c3db4807ee66876f7ec2ece9207d1500','查看周期工作流任务详情','看周期工作流任务详情','cmii-uav-process','/process/bizengine/manage/periodflowinst/gePeriodFlowInstDetail','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3861,'API_3b6db47197b1889d76320c549c7c4a5f','修改锁定状态','修改锁定状态','cmii-uav-process','/process/bizengine/manage/flowdef/updateLockStatus','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3862,'API_4bd306322678108e17076c6f48fa5ee3','周期工作流任务-执行记录','周期工作流任务-执行记录','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowHisList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:55'),(3863,'API_9ca9fe3f5e324443156cbcfdb1936ac8','工作流实例列表','工作流实例列表','cmii-uav-process','/process/bizengine/manage/flowinst/queryFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3864,'API_62b89922617c45d15aa148b25e447ea3','周期工作流任务列表','周期工作流任务列表','cmii-uav-process','/process/bizengine/manage/periodflowinst/queryPeriodFlowList','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:59'),(3865,'API_f4f6b5e0af2bae6f6e929d2ebe26e246','搜索任务实例ID','搜索任务实例ID','cmii-uav-process','/process/bizengine/manage/taskInst/queryTaskIds','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:54'),(3866,'API_20cb5b6e7d41633b1bc95f83fb54b737','批量删除任务定义','批量删除任务定义','cmii-uav-process','/process/bizengine/manage/flowdef/batchDeleteProcessDef','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3867,'API_9e5206d846fbbb230ed08eafcdfe6eee','填写请假信息','填写请假信息','cmii-uav-process','/process/bizengine/testTask/leave/fillLeaveInfo','POST',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:56'),(3868,'API_afed7c0365d6055c6c9c6de659b0b164','删除流程实例','删除流程实例','cmii-uav-process','/process/bizengine/manage/flowinst/deleteProcInst','GET',_binary '\0',_binary '\0','2023-07-06 10:54:46',1,'2024-09-12 02:46:58'),(3869,'API_fb535e6a5f8446b3c70233964ca3a714','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 06:03:40',1,'2023-07-21 06:06:56'),(3870,'API_70451de6f2d237212ae05cf3d3af09ad','查询无人机编号和厂家编号 无机库信息; id 和no 提供一个','uavDockSn 是指大疆绑定的机库sn','cmii-uav-device','/api/device/mqtt/queryUav_new','POST',_binary '\0',_binary '\0','2023-07-21 07:01:10',1,'2024-11-07 09:01:44'),(3871,'API_b1bfb00c626afd3d254ae03e3fe80b10','删除自定义警情点','','cmii-uav-mission','/api/uav/mission/mission_info/del_fire_case','DELETE',_binary '\0',_binary '\0','2023-07-28 07:27:10',1,'2024-11-12 01:20:37'),(3872,'API_9638f02053e9b0e1c580ffc5944f9ba1','createRSA','','cmii-uav-mission','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-07-28 07:27:10',1,'2024-11-12 01:20:37'),(3873,'API_c74077f23db45b670d2c57bd1b160bba','获取所有站址名称','','cmii-uav-tower','/station/queryAll','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3874,'API_2930d5b363671b708f2572459d4caa1b','securityConfiguration','','cmii-uav-tower','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3875,'API_706c1f8f43c24efa2f935c23fd33c520','接口扫描','','cmii-uav-tower','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3876,'API_415d7a5a95b463833f9aec4196dab4a5','删除质检记录','','cmii-uav-tower','/app/task/delete/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3877,'API_73c9c8d846ba0d1f4c9a4b7ed0e48e84','新增任务','','cmii-uav-tower','/task/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3878,'API_0198fd9efdd703c970944757226e0bcd','修改整改记录','','cmii-uav-tower','/app/task/edit/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3879,'API_395c8121e66868a4ec9a7558768e9736','任务详情','','cmii-uav-tower','/app/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3880,'API_343451246b698c816953c1df3bf7e182','获取所有基站','','cmii-uav-tower','/station/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3881,'API_c266bcc6a1030a108bb299c972cc721c','整改指派','','cmii-uav-tower','/app/task/assign','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3882,'API_420b55e9a01e7d8e7e0be190d86c4c73','createRSA','','cmii-uav-tower','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3883,'API_45e1bf1255999164b78f8c6e285e5a9c','getDocumentation','','cmii-uav-tower','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3884,'API_f9f15d2d759370d78bd1b4b27d7e2f9c','获取我的所有任务','','cmii-uav-tower','/app/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3885,'API_d95d29380c0dd15ef2695dc49d68ec69','获取所有质检人员','','cmii-uav-tower','/task/queryMan','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3886,'API_7bb8b4622c154ce1a35e506f6e4a4a33','uiConfiguration','','cmii-uav-tower','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3887,'API_1eed62e68c5aa0238a654069983e5d70','修改质检记录','','cmii-uav-tower','/app/task/edit/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3888,'API_e62f5d103a8aa2493d10eb9678cdec32','ping','','cmii-uav-tower','/cmii/ping','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:47'),(3889,'API_3cac512eccbfe61733175de852a1cd4a','获取我的整改记录','','cmii-uav-tower','/app/task/query/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3890,'API_08d1e7bfd25e6dc163bb596e409ae7bd','质检任务详情','','cmii-uav-tower','/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3891,'API_135fce405752689bb0a0fcf89de5d156','提交整改记录','','cmii-uav-tower','/app/task/add/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3892,'API_fc99ac31dca1e0d7e2e868dc354b672d','新增基站','','cmii-uav-tower','/station/add','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3893,'API_63ac34f2d4d986397c0d5fc3f62c59fb','获取所有任务','','cmii-uav-tower','/task/query','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3894,'API_ebc11a24893b5b3d7551034b50c2f84e','编辑基站','','cmii-uav-tower','/station/edit','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3895,'API_59a84d2067daee031063a030ba5d318e','评论','','cmii-uav-tower','/task/comment','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3896,'API_19b669a507e8eb1ab723751ad90b9bcd','整改任务详情','','cmii-uav-tower','/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3897,'API_7e7d285262ddfd6de5e175f8241754b9','批量删除','传入主键','cmii-uav-tower','/station/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3898,'API_1252e593ebfc52448b59cd89eb6f7439','导出模板','','cmii-uav-tower','/station/exportTemp','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3899,'API_317ee8f3a83a3405c3f55d54d87048bc','error','','cmii-uav-tower','/error','',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3900,'API_d9ce908e367a68f422997efe7be52024','批量删除','传入主键','cmii-uav-tower','/task/delete','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3901,'API_78ab9d475443f5c3fa79d36bb8bb0f19','获取我的质检记录','','cmii-uav-tower','/app/task/query/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3902,'API_5871d2a5cebf299366cbec6ca838c79d','整改任务详情','','cmii-uav-tower','/app/task/detail/corr','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3903,'API_09afc31f49ba2a1420353d6f4d0aa39d','env','','cmii-uav-tower','/cmii/env','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3904,'API_1dca133eca446b1ba61966d7592dc86d','getDocumentation','','cmii-uav-tower','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3905,'API_e07a98dd6644cde4e9410c14e2de4b6f','任务详情','','cmii-uav-tower','/task/detail','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3906,'API_9036e925e1c9af5ac40828d0bbc09a23','质检任务详情','','cmii-uav-tower','/app/task/detail/quality','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3907,'API_4a29f52f1d17a77aff3f7afa930190ba','health','','cmii-uav-tower','/cmii/health','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3908,'API_ddd9b90e3b5204e2d233187b91575d0f','删除整改记录','','cmii-uav-tower','/app/task/delete/corr','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3909,'API_60f55901bffbc7870b7f33e66e8fe63a','获取站址编码','','cmii-uav-tower','/station/queryCode','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3910,'API_0f4c6d80f7a4846faef0085ce842ca2b','批量导出','','cmii-uav-tower','/station/export','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3911,'API_51db34eff4456809f897fabcd13cb19c','是否接受整改','','cmii-uav-tower','/app/task/accept','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3912,'API_691f10062842de100da49fcde8cf18b8','swaggerResources','','cmii-uav-tower','/swagger-resources','GET',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3913,'API_a397420224a67da28a8364430f9e72b5','提交质检记录','','cmii-uav-tower','/app/task/add/quality','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:49'),(3914,'API_74093124089103f5d2669ed5dade38a4','导入','','cmii-uav-tower','/station/import','POST',_binary '\0',_binary '\0','2023-08-07 03:21:46',1,'2024-11-14 01:58:48'),(3915,'API_816eeb506e5b54fb43ea92a1046ebf14','导出模板','','cmii-uav-user','/tower/user/export','POST',_binary '\0',_binary '\0','2023-08-07 06:29:26',1,'2024-11-06 12:16:19'),(3916,'API_7d4711985b4ebadc120b8285f95dc130','用户列表查询','','cmii-uav-user','/tower/user/query','POST',_binary '\0',_binary '\0','2023-08-07 06:29:26',1,'2024-11-06 12:16:21'),(3917,'API_b65eed5c0995ef8f97fb84f9cbe2038c','根据平台用户id获取用户详情','','cmii-uav-user','/tower/user/detail','GET',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-11-06 12:16:44'),(3918,'API_94b2412b4d79336a22bc8933b3bea069','编辑用户','','cmii-uav-user','/tower/user/edit','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-11-06 12:16:22'),(3919,'API_b64dcce937a6286e2a94d12a52d8ba72','删除用户','','cmii-uav-user','/tower/user/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:27',1,'2024-11-06 12:16:27'),(3920,'API_c8367a0b0568ba4317e062c11c4b40da','导入用户','','cmii-uav-user','/tower/user/import','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-11-06 12:16:29'),(3921,'API_9f1674c7927db03d091990f80d059736','铁塔用户注册','','cmii-uav-user','/tower/registry','POST',_binary '\0',_binary '\0','2023-08-07 06:29:28',1,'2024-11-06 12:16:32'),(3922,'API_36840014be767bd1a9e9d2e6c45584a2','修改用户状态','','cmii-uav-user','/tower/user/updateStatus','POST',_binary '\0',_binary '\0','2023-08-07 06:29:29',1,'2024-11-06 12:16:32'),(3923,'API_106d243cfb467c75e3a400be4b1496a1','获取所有用户','','cmii-uav-user','/tower/user/queryAll','GET',_binary '\0',_binary '\0','2023-08-07 06:29:30',1,'2024-11-06 12:16:43'),(3924,'API_eccff7373efd6a8f423c330bbd65efa2','新增分组','','cmii-uav-user','/tower/group/add','POST',_binary '\0',_binary '\0','2023-08-07 06:29:30',1,'2024-11-06 12:16:39'),(3925,'API_3760590b0cb1cad45077644dda1a59fc','删除分组','','cmii-uav-user','/tower/group/delete','POST',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-11-06 12:16:43'),(3926,'API_c5e5023cd30f56ae42da979d135ca534','分组列表查询','','cmii-uav-user','/tower/group/query','GET',_binary '\0',_binary '\0','2023-08-07 06:29:31',1,'2024-11-06 12:16:32'),(3927,'API_354afb0747e5554da8869f8d9dd7f876','公安场景-下线(scout:侦察员,flying:飞手)','公安场景-下线(scout:侦察员,flying:飞手','cmii-uav-industrial-portfolio','/personal/api/uav/industrial/police/common/offLine','POST',_binary '\0',_binary '\0','2023-08-19 08:05:20',1,'2024-11-13 12:23:32'),(3928,'API_f223464a7cc50cd0acf9f5f76dc71302','查詢文旅景区仓库列表','','cmii-uav-device','/api/uav/house/queryHouseListForWenlv','GET',_binary '\0',_binary '\0','2023-08-25 01:33:53',1,'2024-11-07 09:01:50'),(3929,'API_52a6391550538261f4538c55f116bb70','按id打码航线','','cmii-uav-grid-datasource','/coding/codingAirlineById','POST',_binary '\0',_binary '\0','2023-08-25 06:21:22',1,'2023-09-10 12:23:03'),(3930,'API_b7cfc8326098848ff43e813305e0a39d','根据ID删除地形数据','','cmii-uav-grid-datasource','/terrain/deleteTerrainById/{id}','DELETE',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:57'),(3931,'API_f62ca4ccc54ee41be6f35f0bca7571c3','按id查询航线网格','','cmii-uav-grid-datasource','/coding/getAirlineById','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:23:04'),(3932,'API_9e0177ac1b4c966a45aa5daccf81ff2d','设置默认地形','','cmii-uav-grid-datasource','/terrain/setDefaultTerrain/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:57'),(3933,'API_7345f93556954bf9dae3c96c76cc89fa','获取网格编码','','cmii-uav-grid-datasource','/grid/point/getGrid','POST',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2023-09-10 12:23:04'),(3934,'API_05928b9dccdc789fc96078721d011a19','检查是否有重名','','cmii-uav-grid-datasource','/terrain/checkRepeatName/{name}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:56'),(3935,'API_74a3007ac1c1748d1d11816386f4ca0b','获取指定区域的外包矩形','','cmii-uav-grid-datasource','/custom/getGrid3dScope/{id}','GET',_binary '\0',_binary '\0','2023-08-25 06:21:23',1,'2024-06-18 01:09:56'),(3936,'API_cf8d003af775149c1a429a04d5d28a97','获取偏航的航线','','cmii-uav-grid-manage','/offset/single/airline','POST',_binary '\0',_binary '\0','2023-08-25 06:22:04',1,'2023-09-10 12:24:21'),(3937,'API_fb50f26d76871e866da1571f4a4cf807','停止视频拉流任务','停止视频拉流任务','cmii-uav-cloud-live','/client/live/open/stopDevicePullStream','GET',_binary '\0',_binary '\0','2023-08-28 03:20:15',1,'2024-11-14 02:02:41'),(3938,'API_ace76fd3a2b3ab5cab9841655d0d8fd2','testDecrypt','','cmii-uav-user','/api/uav/uavTestPO/testDecrypt','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-11-06 12:16:25'),(3939,'API_040650b60480a3574863bce890ebb3a1','创建单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/createCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-11-06 12:16:36'),(3940,'API_e3b4643ec4d08fc9f978b12cc91111cd','按姓名手机号查询所有的用户','','cmii-uav-user','/user/queryAllByNameTel','GET',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-11-06 12:16:36'),(3941,'API_27bf6b865e75a1b2d4b29d29f0b2e6fc','编辑单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/updateCompanyStatisticConfig','POST',_binary '\0',_binary '\0','2023-08-29 07:13:10',1,'2024-11-06 12:16:29'),(3942,'API_e1867ffdcc7c8f44f2694255779d56de','查询单个配置的详细信息','','cmii-uav-user','/api/uav/subject-config/getDetailById','GET',_binary '\0',_binary '\0','2023-08-29 07:13:11',1,'2024-11-06 12:16:30'),(3943,'API_f3c37d1558da75187bc79fe68b18c05a','已经配置过的组织列表','','cmii-uav-user','/api/uav/subject-config/relatedCompanies','GET',_binary '\0',_binary '\0','2023-08-29 07:13:13',1,'2024-11-06 12:16:21'),(3944,'API_5eb1a0adf4292ebc517515bf91e31284','查询单个公司的统计配置','','cmii-uav-user','/api/uav/subject-config/companyStatisticConfig','GET',_binary '\0',_binary '\0','2023-08-29 07:13:14',1,'2024-11-06 12:16:44'),(3945,'API_ae46dd18ebf36e49f7ecea09822a8dcb','分页查询公司统计配置','','cmii-uav-user','/api/uav/subject-config/pageCompanyStatisticConfigs','POST',_binary '\0',_binary '\0','2023-08-29 07:13:15',1,'2024-11-06 12:16:40'),(3946,'API_6a43ea97257b9969f55c0e9fa8a2abce','grabPayloadAuthority','','cmii-uav-integration','/dji_cloud/payload_control/grab_payload_authority','POST',_binary '\0',_binary '\0','2023-09-01 09:16:22',1,'2024-10-22 06:16:04'),(3947,'API_08785b2f80ea8949ce2229ff3bd4cc99','grabFlightAuthority','','cmii-uav-integration','/dji_cloud/payload_control/grab_flight_authority','POST',_binary '\0',_binary '\0','2023-09-01 09:16:23',1,'2024-10-22 06:16:05'),(3948,'API_2c18fd5993cb8057f81553be943bc957','镜头缩放','','cmii-uav-integration','/dji_cloud/payload_control/camera_zoom','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-10-22 06:16:05'),(3949,'API_9713e067b5237daa70c732220e09aaa2','屏幕指点 云台移动,比例按照的是广角下(api文档)','','cmii-uav-integration','/dji_cloud/payload_control/camera_aim','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-10-22 06:16:05'),(3950,'API_1606fc86f8186a6a1878189d5163119c','云台控制 and 复位','','cmii-uav-integration','/dji_cloud/payload_control/gimbal_control','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-10-22 06:16:05'),(3951,'API_4818e5c52ff64fbc461092a4d7f67524','摄像机开始录像','','cmii-uav-integration','/dji_cloud/payload_control/camera_start_record','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-10-22 06:16:04'),(3952,'API_68e220dc182ad3cfa34b38adc9afa720','摄像机拍照','','cmii-uav-integration','/dji_cloud/payload_control/camera_take_picture','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-10-22 06:16:06'),(3953,'API_f98cb8228544a6e615224e940d5f6b55','摄像机停止录像','','cmii-uav-integration','/dji_cloud/payload_control/camera_stop_record','POST',_binary '\0',_binary '\0','2023-09-06 04:26:35',1,'2024-10-22 06:16:04'),(3954,'API_95f98c3045030386b85d54ce050d33e7','cameraModeChange','','cmii-uav-integration','/dji_cloud/payload_control/camera_mode_change','POST',_binary '\0',_binary '\0','2023-09-06 04:26:36',1,'2024-10-22 06:16:05'),(3955,'API_6ce8573fb4b28eb0db2a4ac33a4815d9','查询指定公司/机构范围内的在线无人机数量和列表','','cmii-uav-device','/api/uav/plane/queryUavOnlineCntByCompanyId','GET',_binary '\0',_binary '\0','2023-09-06 07:03:43',1,'2024-11-07 09:01:51'),(3956,'API_dd0216086cf703199c36ea53be84ddaf','屏幕指点','','cmii-uav-surveillance','/surveillance/payload/camera_aim','POST',_binary '\0',_binary '\0','2023-09-07 04:23:22',1,'2024-11-12 03:56:05'),(3957,'API_9d8b653ae4257a2d845f4cd19ffd46d4','获取偏航的航线','','cmii-uav-surveillance','/offset/single/airline','POST',_binary '\0',_binary '\0','2023-09-11 01:51:44',1,'2023-10-09 03:33:43'),(3958,'API_faa2093a958bad79d8a7da0642daca90','手动发送作业报告给用户V2','','cmii-uav-mission','/report_and_video/report_send/v2','POST',_binary '\0',_binary '\0','2023-09-12 01:56:41',1,'2024-11-12 01:20:37'),(3959,'API_1b3399822ad4370596c4db58562390df','测试自动结束作业','','cmii-uav-mission','/api/uav/mission/mission_info/testAutoEndMission','GET',_binary '\0',_binary '\0','2023-09-12 01:56:42',1,'2024-11-12 01:20:40'),(3960,'API_fc65c58d8d211e278dc85c0aa08143ae','手动触发数据GPS更新','','cmii-uav-gis-server','/vr/gisDataSync','GET',_binary '\0',_binary '\0','2023-09-26 01:40:35',1,'2024-10-23 08:39:50'),(3961,'API_25198adbdc49442350c5cae851b6f8b2','获取所有有GPS数据的列表','','cmii-uav-gis-server','/vr/queryAllList','POST',_binary '\0',_binary '\0','2023-09-26 01:40:35',1,'2024-10-23 08:39:47'),(3962,'API_ce8ba2874c6bfa0d3e75e9d81e9bdaf5','VR文件上传','','cmii-uav-gis-server','/vr/vrUpload','POST',_binary '\0',_binary '\0','2023-09-26 01:40:35',1,'2024-10-23 08:39:48'),(3963,'API_f3149a45616f048daf259220b2cc29c0','查询流程实例详情(Feign接口)','查询流程实例详情','cmii-uav-process','/client/bizengine/flowInst/queryProcInstDetail','POST',_binary '\0',_binary '\0','2023-09-27 09:51:48',1,'2024-09-12 02:46:58'),(3964,'API_ed51e178573028bcb61c3f9d42763492','我的待办任务(Feign接口)','我的待办任务','cmii-uav-process','/client/bizengine/flowInst/queryMyTaskList','POST',_binary '\0',_binary '\0','2023-09-27 09:51:48',1,'2024-09-12 02:46:55'),(3965,'API_521dfebb8a734ab5248d51f946b1386f','我的历史流程(Feign接口)','我的历史流程','cmii-uav-process','/client/bizengine/flowInst/queryMyHisProcList','POST',_binary '\0',_binary '\0','2023-09-27 09:51:49',1,'2024-09-12 02:46:57'),(3966,'API_e0dd7047b75740fcb40bbe460ac1746c','接收业务流程回调消息(Feign接口)','接收业务流程回调消息(Feign接口)','cmii-uav-process','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2023-09-27 09:51:50',1,'2024-09-12 02:46:56'),(3967,'API_2e501c12cfa660df3c1a5bffdd1ff0bc','处理待办任务','处理待办任务','cmii-uav-process','/client/bizengine/flowInst/dealWaitTask','POST',_binary '\0',_binary '\0','2023-09-27 09:51:50',1,'2024-09-12 02:46:59'),(3968,'API_581a8eae103a3d1ecc48196608116547','设置某个待办任务的办理人(Feign接口)','设置某个待办任务的办理人((Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:51:50',1,'2024-09-12 02:46:58'),(3969,'API_6021071058d3134568d3b65c7d7aa7bd','设置某个节点待办人(Feign接口)','设置某个节点待办人(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/updateTaskNodeAssignee','POST',_binary '\0',_binary '\0','2023-09-27 09:51:51',1,'2024-09-12 02:46:55'),(3970,'API_5c4021d67d077255b5534713e8ae025a','查询当前任务的可执行动作(Feign接口)','查询当前任务的可执行动作(Feign接口)','cmii-uav-process','/client/bizengine/flowInst/queryTaskPageActions','POST',_binary '\0',_binary '\0','2023-09-27 09:51:52',1,'2024-09-12 02:46:55'),(3971,'API_bb3a0ecf6bc4fe7ca71841458b9a1103','通过航线数据获取wpml的xml文件内容','','cmii-uav-waypoint','/api/uav/waypoint/kmz/get_wmpl_content','POST',_binary '\0',_binary '\0','2023-09-27 09:51:53',1,'2024-11-12 03:52:41'),(3972,'API_fa504e0c9b0d867928ba2a3e28c6e7ec','测试获取wmpl','m30-> wrjxh063, m30载荷 xh024','cmii-uav-waypoint','/api/uav/waypoint/kmz/get_wmpl_test','POST',_binary '\0',_binary '\0','2023-09-27 09:51:54',1,'2024-11-12 03:52:40'),(3973,'API_5832e462aaeac0f34ea58153a7c55720','callback','','cmii-uav-mission','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2023-09-27 09:51:55',1,'2024-11-12 01:20:38'),(3974,'API_9ea3008ea5e818de6531379e51849920','作业结束流程-步骤2:提交视频合成任务','提交视频合成任务','cmii-uav-mission','/api/uav/mission/bizproc/mergeVideo','POST',_binary '\0',_binary '\0','2023-09-27 09:51:56',1,'2024-11-12 01:20:35'),(3975,'API_662f7f0260e6d31efe5ddd41b96b943d','作业结束流程-步骤1:停止作业相关AI任务及保存AI数据','停止作业相关AI任务及保存AI数据','cmii-uav-mission','/api/uav/mission/bizproc/stopMissionAI2SaveData','POST',_binary '\0',_binary '\0','2023-09-27 09:51:57',1,'2024-11-12 01:20:39'),(3976,'API_5d08500fb47d2bf95ff0a7f16d3eaa9b','作业结束流程-步骤3-2:湘潭定制需求 将作业报告发送到指定地址 ',' 湘潭定制需求 将作业报告发送到指定地址 ','cmii-uav-mission','/api/uav/mission/bizproc/sendMissionReportToCustomizedAddress','POST',_binary '\0',_binary '\0','2023-09-27 09:51:57',1,'2024-11-12 01:20:40'),(3977,'API_4fbb11de04284c01945ad804abbed67d','作业结束流程-步骤3-1:发送作业报告给用户','发送作业报告给用户','cmii-uav-mission','/api/uav/mission/bizproc/sendMissionReport','POST',_binary '\0',_binary '\0','2023-09-27 09:51:58',1,'2024-11-12 01:20:38'),(3978,'API_621a751b43ecb816c48554694161f62d','新增无人机','','cmii-uav-device','/api/uav/plane/addUavPlaneTest','POST',_binary '\0',_binary '\0','2023-09-27 09:52:05',1,'2024-11-07 09:01:54'),(3979,'API_431d8c15dd3897fafcaa9d0d427f59e7','根据编码更新对应的设备号','','cmii-uav-device','/api/uav/plane/UpdateSnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:06',1,'2024-11-07 09:01:49'),(3980,'API_2511e978dacef70cca9ccdfbbfcfa1e9','根据编码列表查询对应的设备号','','cmii-uav-device','/api/uav/plane/querySnBycode','POST',_binary '\0',_binary '\0','2023-09-27 09:52:07',1,'2024-11-07 09:01:54'),(3981,'API_d9e8775ed3f730d505d5c328a40c4ba9','接口扫描','','cmii-uav-notice','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3982,'API_48241d454d248bf54c9266859e146b9f','查询短信发送状态【短信接口】','查询短信发送状态【短信接口】','cmii-uav-notice','/notice/sms/querySmsSendStatus','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3983,'API_43fb0ce190a6972aecb863eb4d249abb','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUserInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3984,'API_defe8dd2542f2caf6c5e6f4a8f3d240e','新增消息模板','新增消息模板','cmii-uav-notice','/msgtpl/add','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3985,'API_3067cae2057121922fb5f2b67c811968','securityConfiguration','','cmii-uav-notice','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3986,'API_7943ac6919bf8b7f18bf4c832eae1649','createRSA','','cmii-uav-notice','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3987,'API_247945e0a93fa017daba83ace1ece570','发送短信接口【内部程序接口】','发送短信接口','cmii-uav-notice','/sms/sendSms','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:07'),(3988,'API_923a86fc1f5ce5c386f896cef5a34a99','发送站内信接口【内部程序接口】','发送站内信接口','cmii-uav-notice','/webmsg/sendWebMsg','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:07'),(3989,'API_2a43ca1cc995b795cfdd2e7cba89608c','接口签名工具【内部程序接口】','接口签名工具','cmii-uav-notice','/open/sms/getSign','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:07'),(3990,'API_a9bd72a2e167bc2d8af8cb9a0966059e','上架通知','上架通知','cmii-uav-notice','/bulletin/admin/online','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:09'),(3991,'API_0f715385bd1f51237af25d9d2f9bd3d5','查看消息模板列表','查看消息模板列表','cmii-uav-notice','/msgtpl/list','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3992,'API_cac7a84c29e01473084c0e9d11009e0c','getDocumentation','','cmii-uav-notice','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3993,'API_973fce5234ef7aa00de1bb29d7351545','多机Http主动推送【内部接口】','多机Http主动推送【内部接口】','cmii-uav-notice','/personal/userwebmsg/httpSend','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3994,'API_946ccc2d8fafc74ed3317ca6ca03f7c8','env','','cmii-uav-notice','/cmii/env','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3995,'API_7627b374809b8ed666c748b840d882b3','查询短信模板内容','查询短信模板内容','cmii-uav-notice','/notice/sms/queryTplContent','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3996,'API_4a0bef68c91e2ff62a2b36ec9480261d','发送邮件【内部程序接口】','发送邮,支持附件','cmii-uav-notice','/email/sendAttachEmail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3997,'API_bf9c83d74209483dac5770204991d19c','新建通知','新建通知','cmii-uav-notice','/bulletin/admin/createBulletin','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3998,'API_f691022d21fc192f65f91f48432dc74d','公司短信发送量统计接口【内部程序接口】','按公司统计短信发送量接口','cmii-uav-notice','/sms/summary/querySmsUseInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(3999,'API_cc861af1002bea88a0270e3ccb53b2cc','修改消息模板','修改消息模板','cmii-uav-notice','/msgtpl/update','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4000,'API_06c3bb33f9318bbff134b2eb6f69b9ab','发送短信接口2【内部程序接口】','发送短信接口,提供公司ID','cmii-uav-notice','/sms/send','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4001,'API_21db4e1c2727093499291c13cbb09e86','ping','','cmii-uav-notice','/cmii/ping','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4002,'API_d88293c84e0408e944447f15af0802fa','查看消息模板详情','查看消息模板详情','cmii-uav-notice','/msgtpl/get','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:09'),(4003,'API_d218c65f6f3c93d7181de2ff5ab00fb9','查看邮箱网关详情','查看邮箱网关详情','cmii-uav-notice','/mail/provider/get','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4004,'API_c166dca9ed3acb6eeac9f2b1f4ea2bfa','getDocumentation','','cmii-uav-notice','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4005,'API_b3cdb884b2c0854754eca7a34e5c2061','health','','cmii-uav-notice','/cmii/health','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:09'),(4006,'API_fc4c820a89a440dd275d502d45864159','通知详情','通知详情','cmii-uav-notice','/bulletin/admin/getBulletin','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:09'),(4007,'API_d33da0df7d2281092f6735455254cdbb','查询看登录页公告信息','查询看登录页公告信息','cmii-uav-notice','/public/bulletin/queryLoginBulletins','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:07'),(4008,'API_44ceb32076998c560afa6c58006e7398','编辑通知','编辑通知','cmii-uav-notice','/bulletin/admin/editBulletin','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4009,'API_6e5bd5ed66e139b9464550648a7480bf','删除消息模板','删除消息模板','cmii-uav-notice','/msgtpl/delete','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4010,'API_e6fddf458f19859d797d65972f36fc53','查询日志列表','查询日志列表','cmii-uav-notice','/msglog/list','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4011,'API_72f9819b95e5482bf342349d824b1c96','swaggerResources','','cmii-uav-notice','/swagger-resources','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4012,'API_cc988446e9676c38d481736e556de32e','用户修改消息设置','用户修改消息设置','cmii-uav-notice','/personal/userStatus/update','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:09'),(4013,'API_d4f074a123280040e3da73e2ede6e7ee','查看邮箱网关列表','查看邮箱网关列表','cmii-uav-notice','/mail/provider/list','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4014,'API_42d7da4f397a31d8bd8622b58c38df3e','用户查看个人消息设置信息','用户查看个人消息设置信息','cmii-uav-notice','/personal/userStatus/get','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4015,'API_def9844866db8ce6faef02b9ed874205','删除邮箱网关','删除邮箱网关','cmii-uav-notice','/mail/provider/delete','GET',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4016,'API_0f9f75e5abbea5488509dfd74140ab95','发送邮件【内部程序接口】','发送邮,不支持附件','cmii-uav-notice','/email/sendEmail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4017,'API_6a4727c1496387561e4778626710e7bd','修改邮箱网关','修改邮箱网关','cmii-uav-notice','/mail/provider/update','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:09'),(4018,'API_8f0b20d3c2c0d8ad9c4afff0c644b4ec','更新站内信为已读','更新站内信为已读','cmii-uav-notice','/personal/userwebmsg/updateRead','POST',_binary '\0',_binary '\0','2023-09-27 09:52:08',1,'2024-11-13 08:59:08'),(4019,'API_68da79aee6254de6ba77db6ad1688251','发送短信开放接口【开放接口】','发送短信开放接口【开放接口】','cmii-uav-notice','/public/open/sms/send','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:08'),(4020,'API_7cf3a40b0f02ffb5df6c587f00721111','查看用户站内信详情','查看用户站内信详情','cmii-uav-notice','/personal/userwebmsg/get','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:08'),(4021,'API_817d1565ed94920ad8d29cbe0ddf9d72','error','','cmii-uav-notice','/error','',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:09'),(4022,'API_b5bff21546371e7426f95bfb4e1b1a23','下架通知','下架通知','cmii-uav-notice','/bulletin/admin/offline','GET',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:09'),(4023,'API_76ccd83e540977796274ccdc37a36772','接收状态报告【短信接口】','接收状态报告','cmii-uav-notice','/public/sms/accept/statusReport','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:08'),(4024,'API_505f74032fcab8963aa2b02e25395acf','新增邮箱网关','新增邮箱网关','cmii-uav-notice','/mail/provider/add','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:09'),(4025,'API_97ce015c363342714b4f248a0bdc85b6','查询用户站内信列表','查询用户站内信列表','cmii-uav-notice','/personal/userwebmsg/list','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:09'),(4026,'API_6e238fa282808b748a0cc9dec5b3cb49','发送邮件,推荐使用该接口【内部程序接口】','发送邮件,可根据用户设置策略发送,支持附件','cmii-uav-notice','/email/sendUserEmail','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:09'),(4027,'API_e7d64a1e371ebe9e834b153b0f1b6c0b','查询未读站内信总数','查询未读站内信总数','cmii-uav-notice','/personal/userwebmsg/getTotal','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:09'),(4028,'API_6e21d3a801467be33a7327c5c30e64eb','uiConfiguration','','cmii-uav-notice','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:08'),(4029,'API_c3430ae24d03166f2c26ba36660de815','通知列表','通知列表','cmii-uav-notice','/bulletin/admin/queryBulletinPage','POST',_binary '\0',_binary '\0','2023-09-27 09:52:09',1,'2024-11-13 08:59:09'),(4030,'API_361729bb14d7a6d36a0bc97d62c16495','查询公司/机构范围的机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHgrNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:10',1,'2024-11-07 09:01:46'),(4031,'API_94c1fd325b05f2ae3aa81023a6b74833','查询公司/机构范围的载荷名称列表','','cmii-uav-device','/api/uav/load/queryLoadNameByCompanyId','GET',_binary '\0',_binary '\0','2023-09-27 09:52:10',1,'2024-11-07 09:01:54'),(4032,'API_8597a6c5fabb7e6ffd0e82be7444b34b','模糊查询绑定无人机列表','','cmii-uav-device','/api/uav/hangar/queryBoundUavByCompany','GET',_binary '\0',_binary '\0','2023-09-27 09:52:10',1,'2024-11-07 09:01:51'),(4033,'API_aa7338d3a944fa1fd3dad7b09316facc','获取组织额度情况(组织管理-详情-额度情况)','','cmii-uav-user','/api/admin/system/quota/getCompanyQuotaInfo','POST',_binary '\0',_binary '\0','2023-09-27 09:52:12',1,'2024-11-06 12:16:42'),(4034,'API_46648b88a004b4435bf256797b953520','redis-GetAndExpire','','cmii-uav-user','/api/uav/uavTestPO/testGetAndExpire','POST',_binary '\0',_binary '\0','2023-09-27 09:52:14',1,'2024-11-06 12:16:23'),(4035,'API_ed6bef12ae7ea154859268ea4dfa2f7a','获取组织及子孙组织列表','','cmii-uav-user','/api/admin/system/quota/getChildrenCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:15',1,'2024-11-06 12:16:21'),(4036,'API_d2b6aad1c28214428af54d51ae64194a','获取某个用户的指定平台菜单树组','','cmii-uav-user','/api/uav/resource/queryPlatformsGroupResourceTreeForUser','POST',_binary '\0',_binary '\0','2023-09-27 09:52:18',1,'2024-11-06 12:16:41'),(4037,'API_047b7b5f5b6b912c98018b8e5945fb34','获取某个配额在各子组织使用情况','','cmii-uav-user','/api/admin/system/quota/getQuotaUseInfoInCompany','POST',_binary '\0',_binary '\0','2023-09-27 09:52:18',1,'2024-11-06 12:16:43'),(4038,'API_4168459cc2bead90bd4157e2db916f17','机库或者无人机 通过kmz文件url下发航线','','cmii-uav-surveillance','/surveillance/uav_command/load_line_by_file','POST',_binary '\0',_binary '\0','2023-09-27 09:52:33',1,'2024-11-12 03:56:07'),(4039,'API_26ff55f09c7532c9a3f06f18f7a9cb05','更新版本','','cmii-app-release','/version/version_info','PUT',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4040,'API_495f5880e2eccc89d560948c48a09b46','获取版本查询条件列表','','cmii-app-release','/version/version_info_condition_list/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4041,'API_7bf68c2e30734848818c4ecbd41d18e6','新建环境识别码','','cmii-app-release','/env_code/env_code_info','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4042,'API_a52fe2b6f08d41f4dc4dc48a04be1ae9','新建版本','','cmii-app-release','/version/version_info','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4043,'API_727057a04db0406dfb28604429a744c1','securityConfiguration','','cmii-app-release','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4044,'API_e7c4e910df1dd0ea458f3bc9f31ef3bc','更新环境识别码','','cmii-app-release','/env_code/env_code_info','PUT',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4045,'API_3cb691e8e7aedd2a72b6aee74a75ca5c','接口扫描','','cmii-app-release','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4046,'API_a36b89b6c1320e56439a7a20b8ca0676','health','','cmii-app-release','/cmii/health','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4047,'API_fd7106ed46c5e4f7be35cfe58732c8d3','getDocumentation','','cmii-app-release','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4048,'API_d85837149d345af473da714f8ab5affb','查询版本详情','','cmii-app-release','/version/version_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4049,'API_44129cebbcf2841b4bf039dd8ba50cec','分页条件查询环境识别码列表','','cmii-app-release','/env_code/env_code_info_list','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4050,'API_b32dbb106fb41ec57490f916950087fa','获取环境识别码查询条件列表','','cmii-app-release','/env_code/env_code_info_condition_list','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4051,'API_a1a48a54927e4313d2c5b63dbcd002d6','env','','cmii-app-release','/cmii/env','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4052,'API_a83afb5f3f628abd1af5e46b304dde82','删除版本','','cmii-app-release','/version/version_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4053,'API_09a62589d10c79e4a74bb29ca428d3a6','swaggerResources','','cmii-app-release','/swagger-resources','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4054,'API_7f80559bf59c45500e2003734a02206d','createRSA','','cmii-app-release','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4055,'API_86b64c2b3a303565113224d96de8c4ee','getDocumentation','','cmii-app-release','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4056,'API_496c140d931270006608fc4ec7cb46e6','查询发布信息','','cmii-app-release','/version/info','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4057,'API_06c0fe70654170e5e9ff13c1c3ee8c34','error','','cmii-app-release','/error','',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4058,'API_966aaa19d5a4dc4df3e70ec3c82f68c4','更新发布标识','','cmii-app-release','/version/version_pub_info','PUT',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4059,'API_cd0b0037f3e746615ce1309d23a8ec55','查询环境识别码详情','','cmii-app-release','/env_code/env_code_info_detail/{id}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4060,'API_99fb8418b53bc350edf763255a3bd510','uiConfiguration','','cmii-app-release','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4061,'API_f8f4ae88fa75afd56267cde6b7dca76a','删除环境识别码','','cmii-app-release','/env_code/env_code_info/{id}','DELETE',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:13'),(4062,'API_a1588f4475007d3b2740918f2828bc63','分页条件查询版本列表','','cmii-app-release','/version/version_info_list','POST',_binary '\0',_binary '\0','2023-10-07 02:11:09',1,'2024-01-30 06:27:12'),(4063,'API_f1b7d301ae0f8d425c6adde56969a1bd','查询发布状态的版本详情','','cmii-app-release','/version/pub_version_info_detail/{versionCategory}','GET',_binary '\0',_binary '\0','2023-10-07 02:11:10',1,'2024-01-30 06:27:12'),(4064,'API_2dec51f8971e3df957ad7aa41c584242','ping','','cmii-app-release','/cmii/ping','GET',_binary '\0',_binary '\0','2023-10-07 02:11:10',1,'2024-01-30 06:27:12'),(4065,'API_e13dabb538d0a54dce6a8ad6efbf8bfa','通信保障-关闭通信作业','通信保障-关闭通信作业','cmii-uav-industrial-portfolio','/client/industrial/emergency/stopJob','POST',_binary '\0',_binary '\0','2023-10-11 01:31:43',1,'2024-11-13 12:23:27'),(4066,'API_1f34c212c52b13674b6f69e7f16b1890','通信保障-分享-获取通信情况','通信保障-分享-获取通信情况','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getCommInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:43',1,'2024-11-13 12:23:29'),(4067,'API_25bed11abbf7e45975cbe8884dd63743','通信保障-分享-获取无人机设备情况及覆盖范围','通信保障-分享-获取无人机设备情况及覆盖范围','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getPlaneInfoCoverage','GET',_binary '\0',_binary '\0','2023-10-11 01:31:43',1,'2024-11-13 12:23:35'),(4068,'API_1fb54990d5b57bec18ce98df7e7ea6f2','通信保障-获取无人机设备情况及覆盖范围','通信保障-获取无人机设备情况及覆盖范围','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getPlaneInfoCoverage','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-11-13 12:23:32'),(4069,'API_652e1a55ae4a0c941c9108d060d0e687','通信保障-获取无人机视频流','通信保障-获取无人机视频流','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-11-13 12:23:29'),(4070,'API_aace2a8eb07b017bc6463e98c4b49d39','通信保障-在线无人机列表','通信保障-在线无人机列表','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/onlinePlanes','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-11-13 12:23:36'),(4071,'API_ed70781b159fee262a47b7a04c7a6aee','通信保障-分享-获取页面分享码&提取码','监通信保障-分享-获取页面分享码&提取码','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/shareCode','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-11-13 12:23:29'),(4072,'API_e7f1d27b3a45d767d0918df2f8c9a9e1','通信保障-开启通信作业请求','通信保障-开启通信作业请求','cmii-uav-industrial-portfolio','/client/industrial/emergency/startJob','POST',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-11-13 12:23:36'),(4073,'API_8848ab9bdf94efc0280726eb498eda22','通信保障-获取通信情况','通信保障-获取通信情况','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getCommInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:44',1,'2024-11-13 12:23:33'),(4074,'API_2c6ec5b9d82ee093028557c00ca83d26','通信保障-获取无人机轨迹','通信保障-获取无人机轨迹','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/commSupport/getPlaneTrack','GET',_binary '\0',_binary '\0','2023-10-11 01:31:45',1,'2024-11-13 12:23:27'),(4075,'API_1c1305d024614bb511bd2a97779550e5','通信保障-分享-在线无人机列表','通信保障-分享-在线无人机列表','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/onlinePlanes','GET',_binary '\0',_binary '\0','2023-10-11 01:31:45',1,'2024-11-13 12:23:34'),(4076,'API_f3caecbf948e5590908c43c5380d3710','通信保障-分享-获取无人机轨迹','通信保障-分享-获取无人机轨迹','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getPlaneTrack','GET',_binary '\0',_binary '\0','2023-10-11 01:31:45',1,'2024-11-13 12:23:34'),(4077,'API_af2174c0a7ac81e7f040152cf4f80016','通信保障-分享-获取无人机视频流','通信保障-分享-获取无人机视频流','cmii-uav-industrial-portfolio','/public/industrial/emergency/commSupport/share/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2023-10-11 01:31:46',1,'2024-11-13 12:23:28'),(4078,'API_415b4cf64ca90d148ac2731206ead54f','获取设备的视频流状态信息','获取设备的视频流状态信息','cmii-uav-cloud-live','/video/live/stream/getDevStreamStatus','GET',_binary '\0',_binary '\0','2023-10-17 09:42:26',1,'2024-11-14 02:02:38'),(4079,'API_91f82ae6c89317f8df56df0728a42ebf','指标考核-查询冲突列表','','cmii-uav-grid-datasource','/fightPlan/getIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:09:57'),(4080,'API_e77fa4f440478b56fe5bc665f45f65c7','指标考核-飞行计划冲突','','cmii-uav-grid-datasource','/fightPlan/checkIntersectBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:17',1,'2024-06-18 01:09:57'),(4081,'API_42415b3aceb7f511a89d507fbeabbaad','指标考核-飞行计划数据批量申报','','cmii-suav-supervision','/flightPlan/saveBatch','POST',_binary '\0',_binary '\0','2023-10-31 07:32:43',1,'2023-11-02 03:30:20'),(4082,'API_0474d50943fc00bdd34f3fe58a9f78a4','createRSA','','cmii-uav-alarm','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-07 07:43:49',1,'2024-10-22 12:07:19'),(4083,'API_80d73ec6aad120c8c75530ad9ef7e2a0','视频数据回放-获取视频MP4列表','视频数据回放-获取视频MP4列表','cmii-uav-cloud-live','/video/playback/videoMP4List','POST',_binary '\0',_binary '\0','2023-11-09 09:33:13',1,'2024-11-14 02:02:43'),(4084,'API_a4e1342ccb993859aea9214541f58d37','合成任务删除','合成任务删除','cmii-uav-cloud-live','/client/video/delete','POST',_binary '\0',_binary '\0','2023-11-09 10:14:40',1,'2024-11-14 02:02:39'),(4085,'API_48e65c591649782745af6b15116d7f6f','securityConfiguration','','cmii-uav-threedsimulation','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4086,'API_0d8e242c36b5bc84f39cac1fee7a7dc7','获取当前场景','获取当前场景','cmii-uav-threedsimulation','/scene/get','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4087,'API_b3f4f44ec4d22214cd56d257ed2331d5','获取任务列表','获取任务列表','cmii-uav-threedsimulation','/task/list','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4088,'API_04931a27d62153a54bf9fc1a23d35ffa','任务文件使用确认','任务文件使用确认','cmii-uav-threedsimulation','/taskFile/useConfirm','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4089,'API_41eb8005fdef1c4ec23aab1a2f1cd85e','getDocumentation','','cmii-uav-threedsimulation','/v3/api-docs','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4090,'API_548650b50752e62c793e3234b1b97029','切换场景,offshore、city','切换场景','cmii-uav-threedsimulation','/scene/switch','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4091,'API_6d7f6c29560e1a4d8400705da0c42152','接口扫描','','cmii-uav-threedsimulation','/api/scanner/scan','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4092,'API_85bc56aab0e4bc7a8bedb255812af7ab','health','','cmii-uav-threedsimulation','/cmii/health','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4093,'API_375173eb54995c91a0e9a31dfe60d27e','飞行图片回传','飞行图片回传','cmii-uav-threedsimulation','/taskFile/pictureReturn','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4094,'API_437451cba9ac1de85c6e580cf67beb33','uiConfiguration','','cmii-uav-threedsimulation','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4095,'API_fb0057118d5b9f3e6cf319fa877e5f6d','获取任务M3U8视频','获取任务M3U8视频','cmii-uav-threedsimulation','/taskFile/getM3U8Video','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4096,'API_d3d833d265dbcffeda9c9794d5a2aea1','删除任务','删除任务','cmii-uav-threedsimulation','/task/delete','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4097,'API_bc6034dfdf9247338067b05bf1866067','ping','','cmii-uav-threedsimulation','/cmii/ping','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4098,'API_c80ca8334706c20a5dd0a27949d77d9e','获取任务文件列表','获取任务文件列表','cmii-uav-threedsimulation','/taskFile/list','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4099,'API_456f5c569c539fcb290d052018fc34db','获取任务详情','获取任务详情','cmii-uav-threedsimulation','/task/get','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4100,'API_32edd5093a4a8842766f9f2013a6ab5e','getDocumentation','','cmii-uav-threedsimulation','/v2/api-docs','GET',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4101,'API_b0b1e1dc1f430506f8fe7b1fe9ada999','删除任务文件','删除任务文件','cmii-uav-threedsimulation','/taskFile/delete','POST',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4102,'API_b734faaf116713842b98d5c6e7c9d9d2','error','','cmii-uav-threedsimulation','/error','',_binary '\0',_binary '\0','2023-11-14 03:13:15',1,'2024-08-27 07:25:57'),(4103,'API_4083dd5ed7e060e52480b21a4a68e000','下载任务文件','下载任务文件','cmii-uav-threedsimulation','/taskFile/download','POST',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4104,'API_d8d5bbe25daf8b477f87a2e512eefb88','飞行图片上传回调','飞行图片上传回调','cmii-uav-threedsimulation','/taskFile/uploadCallBack','POST',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4105,'API_987c53c8621cc61385f28252a2130d1e','env','','cmii-uav-threedsimulation','/cmii/env','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4106,'API_1714be4ff8dcb05ade416f09e6a9dcae','获取任务MP4视频','获取任务MP4视频','cmii-uav-threedsimulation','/taskFile/getMP4Video','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4107,'API_0babb3a598d1890ce0411ef33d37bcfe','swaggerResources','','cmii-uav-threedsimulation','/swagger-resources','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4108,'API_cd58ef3662e95ff662946925163d1293','获取上传临时凭证','获取上传临时凭证','cmii-uav-threedsimulation','/taskFile/getCredentials','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4109,'API_49377501456c840fcf0ca0757896c864','createRSA','','cmii-uav-threedsimulation','/cmii/createRSA','GET',_binary '\0',_binary '\0','2023-11-14 03:13:16',1,'2024-08-27 07:25:57'),(4110,'API_d6684750fcb631ea568e7e4b22ccc3b0','导入模板','','cmii-uav-tower','/task/exportTemp','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-11-14 01:58:49'),(4111,'API_fb9c7cd82c909434806243fcfd609b4d','获取任务导出的进度','','cmii-uav-tower','/task/getExportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-11-14 01:58:49'),(4112,'API_249ad875c3e09a7c9ab4f935adeab03d','获取导入的进度','','cmii-uav-tower','/station/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-11-14 01:58:48'),(4113,'API_ed4881f58193ac7d83f01d82f6682257','批量导出','','cmii-uav-tower','/task/export','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-11-14 01:58:48'),(4114,'API_2fac1d880847842e0e9c7aa052f023ae','导入','','cmii-uav-tower','/task/import','POST',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-11-14 01:58:48'),(4115,'API_9cf943b411919316e05cd6c414339147','获取导入的进度','','cmii-uav-tower','/task/getImportProgress','GET',_binary '\0',_binary '\0','2023-11-16 03:41:57',1,'2024-11-14 01:58:49'),(4116,'API_59db257ef928880cfc4e85b43feb70e1','更新状态','','cmii-uav-tower','/task/updateStatus','GET',_binary '\0',_binary '\0','2023-11-20 09:13:32',1,'2024-11-14 01:58:48'),(4117,'API_9e06b8f444a2b43fc9bbbd816db81d36','删除基站','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_delete','POST',_binary '\0',_binary '\0','2023-11-27 02:30:56',1,'2024-11-13 12:23:31'),(4118,'API_316c32e174ea35d3468ed983be716f79','获取单个基站详细信息以及统计信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_with_statistic','GET',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-11-13 12:23:31'),(4119,'API_3a14192c40e1d203be8f2ed41d7945a2','摄像头初始化','摄像头初始化','cmii-uav-industrial-portfolio','/photoelectric/camera/initial','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-11-13 12:23:36'),(4120,'API_bb15aac1e99c116b827098400d6b9023','多站分页列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_page','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-11-13 12:23:29'),(4121,'API_b79e9bf4552866205481f6956c7fbcbc','手动添加告警','手动添加告警','cmii-uav-industrial-portfolio','/photoelectric/alarm/addDetail','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-11-13 12:23:34'),(4122,'API_35d1cf7849dd54c4fb4082a184d3db91','查询告警列表','查询告警列表','cmii-uav-industrial-portfolio','/photoelectric/alarm/list','POST',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-11-13 12:23:35'),(4123,'API_21c6c1e51e19d01f1d91f720ccefdb02','摄像头变焦','摄像头变焦','cmii-uav-industrial-portfolio','/photoelectric/camera/getParameters','GET',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-11-13 12:23:33'),(4124,'API_f4dfeab41f25a2bbe46b1f5182bacb04','查询告警详情','查询告警详情','cmii-uav-industrial-portfolio','/photoelectric/alarm/get','GET',_binary '\0',_binary '\0','2023-11-27 02:30:57',1,'2024-11-13 12:23:33'),(4125,'API_eea2b0a06f414b69d37668a0fef8af86','查询历史的基站列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryBtsRecords','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:32'),(4126,'API_7d3009151bd244069d80f89662644ddc','导出多站基站数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_export','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:36'),(4127,'API_9611ddb735d096fd1cdc14394c68198d','下载多站导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_list_template','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:36'),(4128,'API_b4af8cce24a6bd6531a749a99035908d','获取光电摄像头列表','获取光电摄像头列表','cmii-uav-industrial-portfolio','/photoelectric/camera/list','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:27'),(4129,'API_7f327e96c4a276ab75187734d06d1428','增加光电摄像头','增加光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/add','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:36'),(4130,'API_b5f118a2023a2f9cb72b1635b52a1cfb','手动添加告警','手动添加告警','cmii-uav-industrial-portfolio','/photoelectric/alarm/addBrief','POST',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:37'),(4131,'API_477caaa8401b7750ce95f33f62934a44','回放探测的历史轨迹,包括历史基站数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/queryDetectionReplayByTime','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:27'),(4132,'API_94bc9258601e1062b29a7d5e985d79e2','多站全部列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_list','GET',_binary '\0',_binary '\0','2023-11-27 02:30:58',1,'2024-11-13 12:23:28'),(4133,'API_a2374909b686072e2c7d2aeea5398243','获取正在告警的摄像头','获取正在告警的摄像头','cmii-uav-industrial-portfolio','/photoelectric/alarm/getAlarmCamera','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-11-13 12:23:32'),(4134,'API_aaad7d11a47b5dacd9d373a3aa110dce','查询告警全量列表','查询告警全量列表','cmii-uav-industrial-portfolio','/photoelectric/alarm/listIDAll','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-11-13 12:23:30'),(4135,'API_033246125c0da628c3699f13ea08f2d5','导入多站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_list','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-11-13 12:23:28'),(4136,'API_1261ce22958ec5e07bbf945a661aae63','删除告警','删除告警','cmii-uav-industrial-portfolio','/photoelectric/alarm/delete','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-11-13 12:23:29'),(4137,'API_638be037afa898bf09ebb46e3e729d7c','删除光电摄像头','删除光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/delete','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-11-13 12:23:29'),(4138,'API_c897d65a137a466f07440c79b5d6e0d8','更新光电摄像头','更新光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/update','POST',_binary '\0',_binary '\0','2023-11-27 02:30:59',1,'2024-11-13 12:23:29'),(4139,'API_cfb47be939348a89cb8a99f9ea25431e','模拟多站探测数据','','cmii-uav-mqtthandler','/mockMultiRadar','POST',_binary '\0',_binary '\0','2023-11-29 02:32:51',1,'2024-11-07 08:51:29'),(4140,'API_3431ef103d83f37d14e3e7056c1c91b6','通过文件路径下载文件','通过文件路径下载文件','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileBySign','GET',_binary '\0',_binary '\0','2023-11-29 09:23:12',1,'2024-11-11 11:46:07'),(4141,'API_4bb442278f884ecc85ed77efcb8d525d','视频数据回放-删除视频片段','视频数据回放-批量视频视频片段','cmii-uav-cloud-live','/video/playback/deleteOneSegment','POST',_binary '\0',_binary '\0','2023-11-29 09:23:19',1,'2024-11-14 02:02:38'),(4142,'API_acd9f882109ce9e68d511b3b114354b9','插入一条单机监视日志','','cmii-uav-surveillance','/surveillance/flight_records/insertOprationHistory','POST',_binary '\0',_binary '\0','2023-11-29 09:23:27',1,'2024-11-12 03:56:05'),(4143,'API_fc06d7a2bc4186782b809a0dbdc1de1c','query一条单机监视日志','','cmii-uav-surveillance','/surveillance/flight_records/queryOprationHistory','POST',_binary '\0',_binary '\0','2023-11-29 09:23:29',1,'2024-11-12 03:56:10'),(4144,'API_10edae9c3351ad4713645ab24857451a','中断飞行','由云端实现临时打断无人机的当前航线(需要云端下发),并缓存剩余航线','cmii-uav-surveillance','/surveillance/uav_command/stopTemporarily','POST',_binary '\0',_binary '\0','2023-11-29 09:23:29',1,'2024-11-12 03:56:04'),(4145,'API_2518fdbb4cb6e22b626f06230fa49a96','获取单机监视键盘使用模式','','cmii-uav-surveillance','/surveillance/payload/camera/getKeyboard','GET',_binary '\0',_binary '\0','2023-11-29 09:23:30',1,'2024-11-12 03:56:08'),(4146,'API_c4a46d43604996cf28f189901497719e','设置单机监视键盘使用模式','','cmii-uav-surveillance','/surveillance/payload/camera/setKeyboard','POST',_binary '\0',_binary '\0','2023-11-29 09:23:31',1,'2024-11-12 03:56:07'),(4147,'API_ec3289be78166822fb60464157c618fe','色盘参数设置','','cmii-uav-integration','/dji_cloud/property_set/thermal_plate_set','POST',_binary '\0',_binary '\0','2023-11-29 09:23:35',1,'2024-10-22 06:16:05'),(4148,'API_031fbbe70914aa1022835dd80c228017','获取网格瓦片绘制坐标','','cmii-uav-grid-engine','/layer/grid/{x}/{y}/{z}','GET',_binary '\0',_binary '\0','2023-11-29 09:28:53',1,'2024-05-27 11:50:53'),(4149,'API_3db2358bf5ed2ff2c0e5751eccfcd339','proxy','','cmii-uav-grid-engine','/proxy/**','',_binary '\0',_binary '\0','2023-11-29 09:28:53',1,'2024-05-27 11:50:53'),(4150,'API_c2fecca5a1fcc6f7dcb42ff3a484b4d5','重载业务参数','','cmii-uav-device','/api/uav/plane/initSecParameter','POST',_binary '\0',_binary '\0','2023-12-11 06:27:13',1,'2024-11-07 09:01:53'),(4151,'API_39a968804d4dc4bb243589caaf540fe1','无人机的视频流地址列表信息查询','','cmii-uav-device','/api/uav/plane/querySteamAddrByUavCode','GET',_binary '\0',_binary '\0','2023-12-11 06:27:14',1,'2024-11-07 09:01:53'),(4152,'API_0aab2f541a99763e199f3c8b09ad9f10','查詢查询所有在线(不区分公司)无人机列表','','cmii-uav-device','/api/uav/plane/queryAllOnlineUavList','GET',_binary '\0',_binary '\0','2023-12-11 06:27:15',1,'2024-11-07 09:01:53'),(4153,'API_60bb537898c26548c549780e2781a8f7','获取空域申请和空域限制所有数据(仅包含政府监管空域)','无需传参','cmii-suav-supervision','/zydAirspace/getAirspaceAndLimitLocal.do','POST',_binary '\0',_binary '\0','2023-12-27 06:02:36',1,'2024-11-06 12:18:29'),(4154,'API_57f0dc0337892b2a14cfb4c78589a9c6','压力模拟多站探测数据','','cmii-uav-mqtthandler','/stressMockMultiRadar','POST',_binary '\0',_binary '\0','2023-12-27 07:18:00',1,'2024-11-07 08:51:27'),(4155,'API_74388e51043290a1c51fa04fa0559d50','获取景区人流量告警单个','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMapAlarmNew','GET',_binary '\0',_binary '\0','2024-01-12 08:32:37',1,'2024-11-12 03:56:09'),(4156,'API_e51341772790d0ade682520efaf2bc4e','获取景区人流量告警总数','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/getHotMapAlarmNewTotal','GET',_binary '\0',_binary '\0','2024-01-12 08:32:38',1,'2024-11-12 03:56:06'),(4157,'API_b2a909df47e0d13b808f7882a7f19deb','获取景区测试告警数据','','cmii-uav-surveillance','/surveillance/wenlv/jiangsu/testGetAlarm','GET',_binary '\0',_binary '\0','2024-01-12 08:32:38',1,'2024-11-12 03:56:08'),(4158,'API_3ff282c01577c8d58693039f73316e20','测试更新基站位置','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/testUpdateBts','POST',_binary '\0',_binary '\0','2024-01-16 09:44:18',1,'2024-11-13 12:23:29'),(4159,'API_cb15b4432e2140aeb1b751cd38b6f3bf','返航','','cmii-uav-surveillance','/surveillance/uav_command/go_home_all_force','POST',_binary '\0',_binary '\0','2024-01-18 02:12:18',1,'2024-11-12 03:56:07'),(4160,'API_677f82b18c2c358a1c3c6f165553da82','删除当前ID的告警','','cmii-uav-mission','/api/uav/mission/surveillance/deleteAlarmByAlarmId','GET',_binary '\0',_binary '\0','2024-02-10 12:37:54',1,'2024-11-12 01:20:39'),(4161,'API_dc4f1ffd2565af16084e0a4ba6cbdb0b','createRSA','','cmii-uav-logger','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-02-21 09:19:19',1,'2024-11-06 12:16:47'),(4162,'API_12ee30f7ec76fa4f5269c8e2e777d661','在线接收utmiss传输的数据','接收utmiss传输的数据','cmii-uav-device','/api/uav/utmiss/import','POST',_binary '\0',_binary '\0','2024-02-21 09:19:44',1,'2024-11-07 09:01:58'),(4163,'API_8a016e6c502c1e52c4b54736f93ae363','允许导入数据','允许导入数据','cmii-uav-device','/api/uav/utmiss/allow/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:45',1,'2024-11-07 09:01:57'),(4164,'API_743eb529f9e8d7a9ec38c1dea6629d61','从MongoDB获取数据','','cmii-uav-device','/api/uav/utmiss/getUtmissFromMongoDB','GET',_binary '\0',_binary '\0','2024-02-21 09:19:45',1,'2024-11-07 09:01:51'),(4165,'API_36079bab24b9cd7e4db8aedd82709c96','查询公司/机构范围的机库列表','','cmii-uav-device','/api/uav/hangar/queryHgrByCompanyId','GET',_binary '\0',_binary '\0','2024-02-21 09:19:50',1,'2024-11-07 09:01:48'),(4166,'API_cc9f79e12f624ba4985ae4af1f17cefd','上传文件到Redis','','cmii-uav-device','/api/uav/utmiss/utmissUploadToRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:51',1,'2024-11-07 09:01:49'),(4167,'API_ec3ca622720071176a3e8aa77a199427','统计UTMISS的数据','统计UTMISS的数据','cmii-uav-device','/api/uav/utmiss/utmissCnt','POST',_binary '\0',_binary '\0','2024-02-21 09:19:51',1,'2024-11-07 09:01:56'),(4168,'API_8974ee82aaa4130ebae0977bcbf1fe31','上传文件到MongoDB','','cmii-uav-device','/api/uav/utmiss/utmissUploadToMongoDB','POST',_binary '\0',_binary '\0','2024-02-21 09:19:52',1,'2024-11-07 09:01:51'),(4169,'API_17e82f04f875610d5a7764e010f6199b','从Redis获取UTMISS历史数据','','cmii-uav-device','/api/uav/utmiss/getUtmissHistoryFromRedis','POST',_binary '\0',_binary '\0','2024-02-21 09:19:53',1,'2024-11-07 09:01:58'),(4170,'API_c90a732d36204decf638594a3ff66357','禁止导入数据','禁止导入数据','cmii-uav-device','/api/uav/utmiss/forbid/import','GET',_binary '\0',_binary '\0','2024-02-21 09:19:53',1,'2024-11-07 09:01:47'),(4171,'API_552c8a8b8f50db609320606d1d233a18','屏幕画框移动','先测试哈勃,之后测试大疆机库','cmii-uav-surveillance','/surveillance/payload/camera_area_aim','POST',_binary '\0',_binary '\0','2024-02-21 09:20:01',1,'2024-11-12 03:56:12'),(4172,'API_f6c70a8734f570edbc56fe74d6fd463b','更新配额模板','','cmii-uav-user','/quota/template/update','POST',_binary '\0',_binary '\0','2024-02-21 09:20:21',1,'2024-11-06 12:16:24'),(4173,'API_3f9dfa4350247574a5b752fa1f27970c','根据id查询模板详情','','cmii-uav-user','/quota/template/detail','GET',_binary '\0',_binary '\0','2024-02-21 09:20:21',1,'2024-11-06 12:16:35'),(4174,'API_d9873a8533f737c920b7458f519cdd57','游客列表','','cmii-uav-user','/api/uav/user/visitors','POST',_binary '\0',_binary '\0','2024-02-21 09:20:23',1,'2024-11-06 12:16:20'),(4175,'API_6eeb1de83411bedf7a18052c6d4f5fa7','查询配额列表','','cmii-uav-user','/quota/template/listQuotaTypes','GET',_binary '\0',_binary '\0','2024-02-21 09:20:24',1,'2024-11-06 12:16:41'),(4176,'API_daceb80a6f633f9c9f65653a1e9e1ca4','OMS完结待办任务','OMS完结待办任务','cmii-uav-process','/process/bizengine/manage/flowinst/completeTask','POST',_binary '\0',_binary '\0','2024-02-21 09:20:26',1,'2024-09-12 02:46:58'),(4177,'API_8b0ab794f29f25277c9d0cb4bb8994ea','创建统一化电子围栏','','cmii-uav-airspace','/efence_airspace/unified_efence_info','POST',_binary '\0',_binary '\0','2024-02-21 09:52:38',1,'2024-11-14 03:10:22'),(4178,'API_262ee573ba20d66f23470c0096f372df','callback','','cmii-uav-airspace','/client/bizengine/callback','POST',_binary '\0',_binary '\0','2024-02-21 09:52:38',1,'2024-11-14 03:10:22'),(4179,'API_ff22e7f8b802bf033e6b07286b32db4d','编辑统一化电子围栏','','cmii-uav-airspace','/efence_airspace/unified_efence_info','PUT',_binary '\0',_binary '\0','2024-02-21 09:52:38',1,'2024-11-14 03:10:22'),(4180,'API_8bd696a38af23e8d025fb9ce09131a28','创建配额模板','','cmii-uav-user','/quota/template/create','POST',_binary '\0',_binary '\0','2024-02-22 08:15:49',1,'2024-11-06 12:16:40'),(4181,'API_7132224081bad97b07d8e8db28962d13','分页查询','','cmii-uav-user','/quota/template/queryPage','POST',_binary '\0',_binary '\0','2024-02-22 08:15:49',1,'2024-11-06 12:16:40'),(4182,'API_ed9a9fd2df6424847b28e246a2f15b0f','列表查询','','cmii-uav-user','/quota/template/list','GET',_binary '\0',_binary '\0','2024-02-22 08:15:49',1,'2024-11-06 12:16:35'),(4183,'API_e9d307a6f3e6529e1fa10ad9275ca92b','xxljobtext','','cmii-uav-device','/api/uav/utmiss/renewIndex','POST',_binary '\0',_binary '\0','2024-02-22 09:46:10',1,NULL),(4184,'API_c8abde6fece6a8c4ee8eca71bec97cae','删除Redis文件','','cmii-uav-device','/api/uav/utmiss/DeleteSimulateupload','GET',_binary '\0',_binary '\0','2024-02-22 09:46:10',1,NULL),(4185,'API_fdde4be652fe385e3cf53930ce45ee05','swaggerResources','','cmii-uav-multilink','/swagger-resources','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4186,'API_275a34306d68976a509617ad946c0b8c','DEBUG_v上报单个探针链路性能数据','','cmii-uav-multilink','/multiLinkRedundancy/reportPerfData','POST',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4187,'API_c3b6a0543e8173027ad815342ed3062c','debug_更新在线无人机列表','','cmii-uav-multilink','/multiLinkRedundancy/updateOnlinePlaneInfo','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4188,'API_a4b1b52be0192413a5d563c4ac0d858b','health','','cmii-uav-multilink','/cmii/health','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:46'),(4189,'API_2346c82899ca1c77ee2d451da8493fd8','DEBUG_获取Device与Uav对应关系','','cmii-uav-multilink','/multiLinkRedundancy/getDevCode2UavCodeMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4190,'API_4ac796b8d8287500eeff5416372e04e8','DEBUG_获取视频流收发字节数','','cmii-uav-multilink','/multiLinkRedundancy/getVideoBytesMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4191,'API_8f1422986698b6f5f05c0970e83de95d','securityConfiguration','','cmii-uav-multilink','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4192,'API_3fe6ea9c4d1019c6b15edda2261b8f41','DEBUG_获取下发的链路切换参数','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchParamMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4193,'API_9cfe0a58bb6c72ea61b56bb44529de2d','获取单个无人机多链路切换参数','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchPara','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4194,'API_422b571eab8682b2e88092379e6cbdd4','DEBUG_BAK_获取链路切换结果','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchResultMapForDebugBak','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4195,'API_0203087d431bd5c16558ab7206a9a61e','createRSA','','cmii-uav-multilink','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4196,'API_5befc9fe387476d28fd3d2ec4345a015','DEBUG_查询设备管理在线无人机','','cmii-uav-multilink','/multiLinkRedundancy/getAllOnlinePlans','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4197,'API_9d1524c49ced86f57e48e61f752ab5ac','DEBUG_V查询探针延时、丢包率_String','','cmii-uav-multilink','/multiLinkRedundancy/getGaojiPingResult','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4198,'API_d063bf0dd9b947fc33273eae6203646d','DEBUG_获取UAV_ID的MAP信息','','cmii-uav-multilink','/multiLinkRedundancy/getUavCodesForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4199,'API_f63e4c29b9bdfd47597b09e0bfb52a51','设置单个无人机多链路切换参数','','cmii-uav-multilink','/multiLinkRedundancy/setPara','POST',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4200,'API_6503e68bba63984a33d3b41976254788','DEBUG_V查询探针延时、丢包率_obj','','cmii-uav-multilink','/multiLinkRedundancy/getGaojiPingResultObj','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4201,'API_47a75f8fdd3bb7cbcca83fc3835cdeeb','DEBUG_获取MQTT的状态信息','','cmii-uav-multilink','/multiLinkRedundancy/getMqttStatusForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4202,'API_b7209ca42dcf0155df25aea20c7752fe','env','','cmii-uav-multilink','/cmii/env','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4203,'API_7bb4092e1343ac1b9aade3fc7a573196','ping','','cmii-uav-multilink','/cmii/ping','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4204,'API_ae65b7c7e028b5155e354f958b84c271','DEBUG_停止切换视频流任务','','cmii-uav-multilink','/multiLinkRedundancy/stopSwitchStream','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4205,'API_e2f69893c6d9e31ec4f318abcde10f20','获取单个无人机多链路性能数据','','cmii-uav-multilink','/multiLinkRedundancy/queryPerfData','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4206,'API_8b5239e31943ab5997aad23f87d7446e','uiConfiguration','','cmii-uav-multilink','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4207,'API_dd327640f60afd77830de7a05800f941','error','','cmii-uav-multilink','/error','',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4208,'API_a3467c75bb1c397e51ccc3e33328b537','DEBUG_切换视频流','','cmii-uav-multilink','/multiLinkRedundancy/switchStream','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4209,'API_4f631d8130b41a8a9fd02e36fdd946b4','getDocumentation','','cmii-uav-multilink','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4210,'API_e015d1c792026b31e2d19ea9c5edb0c5','查询某个载荷的视频流信息','','cmii-uav-multilink','/multiLinkRedundancy/getDevVideoRate','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4211,'API_07e0779f24f91040ddb2c727dcc54a26','DEBUG_获取IP链路性能数据','','cmii-uav-multilink','/multiLinkRedundancy/getUavIpLinkPerfDataMapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4212,'API_5badd236de4a5cb1ac94f8634989cd5d','接口扫描','','cmii-uav-multilink','/api/scanner/scan','POST',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4213,'API_d1dd3743e62ff8e68231415167cf1452','getDocumentation','','cmii-uav-multilink','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:48'),(4214,'API_40005088b2d270bda0fbab43813b7817','DEBUG_获取链路切换结果','','cmii-uav-multilink','/multiLinkRedundancy/getSwitchResult2MapForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4215,'API_30af0ed997c9bc4e933af0009cbd63b8','DEBUG_获取VIDEO的状态信息','','cmii-uav-multilink','/multiLinkRedundancy/getVideoStatusForDebug','GET',_binary '\0',_binary '\0','2024-02-23 01:04:16',1,'2024-09-09 09:07:47'),(4216,'API_ad1d4c7863301736ebff9d28ba83b13c','归档','','cmii-uav-tower','/task/filing','POST',_binary '\0',_binary '\0','2024-03-01 06:42:24',1,'2024-11-14 01:58:48'),(4217,'API_4201dbf9fd5ea2f4c04b85627682b6f2','无须整改','','cmii-uav-tower','/app/task/noAssign','POST',_binary '\0',_binary '\0','2024-03-01 06:42:25',1,'2024-11-14 01:58:48'),(4218,'API_1888cac04e9e89c6297eaa69a3204876','查询自己公司及子公司告警指标统计信息','','cmii-uav-alarm','/api/uav/alarm/event/query/AlarmIndexCount','GET',_binary '\0',_binary '\0','2024-03-05 09:09:49',1,'2024-03-05 09:09:58'),(4219,'API_798e59c47ab640aecd8006590c45e046','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/push/mqtt','POST',_binary '\0',_binary '\0','2024-03-06 02:52:23',1,'2024-03-08 07:41:01'),(4220,'API_bdde5977a7c4b5fe8ccce84bfef22921','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/map','POST',_binary '\0',_binary '\0','2024-03-06 03:18:50',1,'2024-03-08 07:41:05'),(4221,'API_eb21e9560b103aa9c217ccf66b712322','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/move','GET',_binary '\0',_binary '\0','2024-03-06 06:03:47',1,NULL),(4222,'API_f4cfaafddace7da84401416b54e9bd33','吊舱打开或收起','一般固定翼的云台控制功能,目前仅适配了纵横','cmii-uav-surveillance','/surveillance/payload/pod_switch','POST',_binary '\0',_binary '\0','2024-03-07 09:08:23',1,'2024-11-12 03:56:05'),(4223,'API_f3987d2246de803f936e2b9251e6cbcd','拍照一张','','cmii-uav-integration','/jouav/payload_cmd/take_picture','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-10-22 06:16:05'),(4224,'API_877fc06c2fc3425f2af6fd02b82e4ba5','开始/停止录像, 点击一次开始录像,再点击停止录像','','cmii-uav-integration','/jouav/payload_cmd/record_switch','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-10-22 06:16:04'),(4225,'API_129b307229dd4f6e286b5099163a54c7','自动对焦','','cmii-uav-integration','/jouav/payload_cmd/auto_focus','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-10-22 06:16:05'),(4226,'API_c0110596a15650a307a73a4d828e2f88','吊舱控制','','cmii-uav-integration','/jouav/payload_cmd/gimbal_control','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-10-22 06:16:06'),(4227,'API_4b6b558282c05ee128c20d1e77ebd661','更改吊舱显示模式','','cmii-uav-integration','/jouav/payload_cmd/mode_change','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-10-22 06:16:06'),(4228,'API_f326512a52b0e684d18bcc8bd538a2f7','吊舱收起或打开','','cmii-uav-integration','/jouav/payload_cmd/pod_switch','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-10-22 06:16:05'),(4229,'API_2733852365eedfb8d468d83953c05fd3','焦距缩放','','cmii-uav-integration','/jouav/payload_cmd/camera_zoom','POST',_binary '\0',_binary '\0','2024-03-07 09:08:35',1,'2024-10-22 06:16:04'),(4230,'API_124678d9545673b7411e35eb52c67b00','创建项目','创建项目','cmii-uav-industrial-portfolio','/mock/taget','GET',_binary '\0',_binary '\0','2024-03-08 07:26:27',1,'2024-03-08 07:41:01'),(4231,'API_ec6b0e75e9b26a06646df1ab187f4c0d','初始化MongoDB','','cmii-uav-device','/api/uav/utmiss/initCollection','POST',_binary '\0',_binary '\0','2024-03-21 06:33:12',1,'2024-11-07 09:01:55'),(4232,'API_c4d0f27938182a20c3a2adfd99552a62','应急通信模拟-获取全量作业数据','应急通信模拟-获取全量作业数据','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getJobAllData','GET',_binary '\0',_binary '\0','2024-03-21 09:48:11',1,'2024-11-13 12:23:37'),(4233,'API_d966e5336c84a28f264b8f64baa821e7','应急通信模拟-提交目的地点','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/updateTargetLocation','POST',_binary '\0',_binary '\0','2024-03-21 09:48:11',1,'2024-11-13 12:23:36'),(4234,'API_088f01aefea800932a7ccc25fa68686f','应急通信模拟-获取作业详情','应急通信模拟-获取作业详情','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getJobDetailInfo','GET',_binary '\0',_binary '\0','2024-03-21 09:48:11',1,'2024-11-13 12:23:29'),(4235,'API_9b88a69515771bc9902459868823c7f4','应急通信模拟-结束作业','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/stopJob','POST',_binary '\0',_binary '\0','2024-03-21 09:48:14',1,'2024-11-13 12:23:33'),(4236,'API_75a5f56b03301e523ca879f633ff0f14','应急通信模拟-获取无人机初始化数据','应急通信模拟-获取无人机初始化数据','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getPlaneCurrentLocation','GET',_binary '\0',_binary '\0','2024-03-21 09:48:15',1,'2024-11-13 12:23:27'),(4237,'API_bb3304cb3dd52fe78bccccf30215e8dc','应急通信模拟-获取无人机、基站、天线数据','应急通信模拟-获取无人机、基站、天线数据','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/getPlaneAndStationInfo','GET',_binary '\0',_binary '\0','2024-03-21 09:48:17',1,'2024-11-13 12:23:28'),(4238,'API_bc0b516347d8831407289af33a01b28f','应急通信模拟-开始作业','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/startJob','POST',_binary '\0',_binary '\0','2024-03-21 09:48:17',1,'2024-11-13 12:23:32'),(4239,'API_881e000008149cae97016efd5d7c20a0','应急通信模拟-更新无人机、基站、天线数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/emergency/simulate/updatePlaneAndStation','POST',_binary '\0',_binary '\0','2024-03-21 09:48:18',1,'2024-11-13 12:23:27'),(4240,'API_7cd0251624bad2a0a546974f2ca0b4d4','工具-导出无人机RTK数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/exportRTKData','GET',_binary '\0',_binary '\0','2024-03-22 09:05:23',1,'2024-11-13 12:23:31'),(4241,'API_8b9b2b6eb2d43e520989fd535ca01388','工具-导出通感数据,一个文件一个文件导出','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/exportRadarData','GET',_binary '\0',_binary '\0','2024-03-22 09:05:24',1,'2024-11-13 12:23:32'),(4242,'API_11738cfc6e93f97974424048f1508c72','工具-修正统计基站编码的数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/correctStatistic','POST',_binary '\0',_binary '\0','2024-03-22 09:05:24',1,'2024-11-13 12:23:33'),(4243,'API_37adf5725c948d4ab30b10f56c7a7cf1','工具-修复基站朝向,将基站的(朝向角+水平扇形的一半)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/correctTtsToward','POST',_binary '\0',_binary '\0','2024-03-22 09:05:25',1,'2024-11-13 12:23:33'),(4244,'API_bdeceb08900528bc38a76c57fe30ad5d','多站的探测累计统计','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/statistic','GET',_binary '\0',_binary '\0','2024-03-22 09:05:26',1,'2024-11-13 12:23:33'),(4245,'API_15471986c9e235aefe9d92490e090b29','工具-修复基站下倾角与垂直扇形角度','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fillDefaultValue','POST',_binary '\0',_binary '\0','2024-03-22 09:05:26',1,'2024-11-13 12:23:35'),(4246,'API_0ba28ffc32968db74d461c4b23b2f1a0','工具-取消修复基站朝向,将基站的(朝向角-水平扇形的一半)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/unCorrectTtsToward','POST',_binary '\0',_binary '\0','2024-03-22 09:05:26',1,'2024-11-13 12:23:37'),(4247,'API_966387eb5260e0701d8ff1e3de9b0899','DEBUG_V查询HUB探针网口速率','','cmii-uav-multilink','/multiLinkRedundancy/getHub5GObj','GET',_binary '\0',_binary '\0','2024-03-26 08:28:29',1,'2024-09-09 09:07:47'),(4248,'API_b39050547effdfb51a240cf7ba701dff','DEBUG_V查询PC或APP探针网口速率','','cmii-uav-multilink','/multiLinkRedundancy/getAgentInfoObj','GET',_binary '\0',_binary '\0','2024-03-26 08:28:29',1,'2024-09-09 09:07:47'),(4249,'API_5124b12d0498e52ae242d63d97f54177','DEBUG_V查询高级ping结果map','','cmii-uav-multilink','/multiLinkRedundancy/getGaojiPingResultMap','GET',_binary '\0',_binary '\0','2024-03-26 08:28:29',1,'2024-09-09 09:07:47'),(4250,'API_e0ee5410f391fa3f1338b1eadda9f7a7','DEBUG_设置无人机上线','','cmii-uav-multilink','/multiLinkRedundancy/debugSetOnlinePlane','POST',_binary '\0',_binary '\0','2024-03-26 08:28:30',1,'2024-09-09 09:07:47'),(4251,'API_002efb5279972803f12a46adafbdacbf','刷新数据字典参数','','cmii-admin-data','/api/admin/model/plane/initParameter','POST',_binary '\0',_binary '\0','2024-03-29 12:05:27',1,'2024-11-06 12:16:53'),(4252,'API_3d5c11cc49cd8b34576282884e10c6ea','查询Redis有效数据','','cmii-uav-device','/api/uav/plane/getValDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:41',1,'2024-11-07 09:01:56'),(4253,'API_09780129288cd9e0bc64f806b9694a3f','获取机库绑定的无人机详细信息','','cmii-uav-device','/api/uav/hangar/getBoundUavListByHngList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:41',1,'2024-11-07 09:01:45'),(4254,'API_16f0a4bfbc2241eb670dd0a35540243f','获取无人机绑定的机库详细信息','','cmii-uav-device','/api/uav/hangar/getBoundHngListByUavList','GET',_binary '\0',_binary '\0','2024-04-02 01:48:43',1,'2024-11-07 09:01:48'),(4255,'API_2ff17773c003f845c871fdad610e03d8','查询Redis数据','','cmii-uav-device','/api/uav/plane/getDictRedis','GET',_binary '\0',_binary '\0','2024-04-02 01:48:45',1,'2024-11-07 09:01:51'),(4256,'API_be8ebf40864311643c7483db2656cb2c','根据开始结束时间,查询通感的列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/detect_data','GET',_binary '\0',_binary '\0','2024-04-07 12:34:28',1,'2024-11-13 12:23:29'),(4257,'API_e1c393771637ca10d03f19e339a78d57','根据雷达id,识别飞行器id,与飞行orderid进行精度计算','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/accuracy_calculate','POST',_binary '\0',_binary '\0','2024-04-07 12:34:29',1,'2024-11-13 12:23:36'),(4258,'API_776087189d7547a0a124cd55bf58cff3','根据飞行记录编号获取无人机RTK的数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/rtk_data/{orderId}','GET',_binary '\0',_binary '\0','2024-04-07 12:34:30',1,'2024-11-13 12:23:34'),(4259,'API_08de4c999590b343826bbb61c8bcfaa7','给飞机发送航线起飞,包含一条用于展示的航线id','','cmii-uav-surveillance','/surveillance/uav_command/take_off_with_two_line','POST',_binary '\0',_binary '\0','2024-04-09 13:54:12',1,'2024-11-12 03:56:05'),(4260,'API_08228ea178bfebf3365e176887cf8c70','降落for场景模拟','','cmii-uav-surveillance','/surveillance/uav_command/landingForSimulator','POST',_binary '\0',_binary '\0','2024-04-09 13:54:14',1,'2024-11-12 03:56:06'),(4261,'API_4b7c57eab5434dfc0e1d6e108618ff66','返航for模拟场景','','cmii-uav-surveillance','/surveillance/uav_command/go_homeforSimulator','POST',_binary '\0',_binary '\0','2024-04-09 13:54:14',1,'2024-11-12 03:56:05'),(4262,'API_28916f5fc274799c502f01a77ee9aa15','查询公司范围下的在线设备信息,供飞行监视使用','','cmii-uav-device','/api/device/surveillance/query_online_device_info','GET',_binary '\0',_binary '\0','2024-04-09 13:55:53',1,'2024-11-07 09:01:46'),(4263,'API_b64b3d79d799159c4df8323f15c0cb00','查询公司/机构范围的复亚的在线且支持备降的机库列表','','cmii-uav-device','/api/uav/hangar/OnlineAndAltLandFoiaHgrList','GET',_binary '\0',_binary '\0','2024-04-09 13:55:54',1,'2024-11-07 09:01:51'),(4264,'API_3230ab02db9d2111c46da05150930455','创建故事','','cmii-uav-mission','/api/uav/mission/story_info/data','POST',_binary '\0',_binary '\0','2024-04-09 13:58:42',1,'2024-11-12 01:20:34'),(4265,'API_2e1e79cbd50615a40c02c872794f4100','按条件分页查询故事列表','','cmii-uav-mission','/api/uav/mission/story_info_list/page_list_with_filters','POST',_binary '\0',_binary '\0','2024-04-09 13:58:42',1,'2024-11-12 01:20:36'),(4266,'API_9726a59357131b9fe6fa810b6a444038','更新故事','','cmii-uav-mission','/api/uav/mission/story_info/data','PUT',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-11-12 01:20:39'),(4267,'API_92a05d29ebe9b1cadf6759ad5a2ea3eb','删除故事','','cmii-uav-mission','/api/uav/mission/story_info/data','DELETE',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-11-12 01:20:39'),(4268,'API_7eb245d2667247dde473584cbac33453','停止故事','','cmii-uav-mission','/api/uav/mission/story_info/stopping/{id}','GET',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-11-12 01:20:35'),(4269,'API_869e67c2f8dbd3c2eed622bea15899ae','开始故事','','cmii-uav-mission','/api/uav/mission/story_info/starting/{id}','GET',_binary '\0',_binary '\0','2024-04-09 13:58:43',1,'2024-11-12 01:20:35'),(4270,'API_365437ad1e535fbd972e343708089b78','查询故事详情','','cmii-uav-mission','/api/uav/mission/story_info/data/{id}','GET',_binary '\0',_binary '\0','2024-04-09 13:58:45',1,'2024-11-12 01:20:40'),(4271,'API_8aef770ed28605488822773e37086420','引导光电设备','引导光电设备','cmii-uav-industrial-portfolio','/photoelectric/camera/guideCamera','POST',_binary '\0',_binary '\0','2024-04-09 14:01:11',1,'2024-11-13 12:23:36'),(4272,'API_fc10739d5affcff2b5af275d7fbb4d06','停止引导光电设备','停止引导光电设备','cmii-uav-industrial-portfolio','/photoelectric/camera/stopGuideCamera','POST',_binary '\0',_binary '\0','2024-04-09 14:01:13',1,'2024-11-13 12:23:28'),(4273,'API_109a10252b0da3c7e90c35639e422cce','大疆机场查询该token是否有虚拟摇杆权限','','cmii-uav-surveillance','/surveillance/querySessionVS','GET',_binary '\0',_binary '\0','2024-04-10 08:58:02',1,'2024-11-12 03:56:10'),(4274,'API_8026c7c050a65b7e32073ee1008ec602','喊话器控制','','cmii-uav-integration','/dji_cloud/speaker_control/speaker','POST',_binary '\0',_binary '\0','2024-04-17 01:00:00',1,'2024-04-25 09:02:27'),(4275,'API_06d53f31bed1b31fc7335249f26abaa6','查询当前session是否含有无人机的虚拟摇杆权限','','cmii-uav-surveillance','/surveillance/uav_command/get_cloud_api_vs','GET',_binary '\0',_binary '\0','2024-04-17 01:00:28',1,'2024-11-12 03:56:05'),(4276,'API_698ecb71baa6cc4abda38a62740fdd40','机库无人机退出指令飞行','','cmii-uav-integration','/dji_cloud/wayline/stop_VS','POST',_binary '\0',_binary '\0','2024-04-17 01:54:35',1,'2024-10-22 06:16:05'),(4277,'API_4658aa1e69c311f999d3f92b77bdbcd1','机库无人机进入指令飞行','','cmii-uav-integration','/dji_cloud/wayline/start_VS','POST',_binary '\0',_binary '\0','2024-04-17 01:54:35',1,'2024-10-22 06:16:05'),(4278,'API_dc2fce2a64974d6e98372f67854904a3','机库备降设置','','cmii-uav-surveillance','/hangarSurveillance/altLandingHangar','POST',_binary '\0',_binary '\0','2024-04-17 09:24:27',1,'2024-11-12 03:56:08'),(4279,'API_ee7828d438cfec6d4996edaba7060a2e','开放-获取基站的实时数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fetchRadarDetectionRealtimeData','GET',_binary '\0',_binary '\0','2024-04-18 14:27:50',1,'2024-11-13 12:23:30'),(4280,'API_2899748ea4496aa2aca68d6bf4656070','开放-获取基站的历史数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fetchRadarDetectionHistoryData','POST',_binary '\0',_binary '\0','2024-04-18 14:27:53',1,'2024-11-13 12:23:31'),(4281,'API_69af176eb55fc0a08e615e60fa73ec52','getImageCode','','cmii-uav-user','/api/uav/solution/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-11-06 12:16:35'),(4282,'API_7e3474dee092054823eae022bb37e29e','delete','','cmii-uav-user','/api/uav/dynamic/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-11-06 12:16:22'),(4283,'API_1e24f1367b80430ff750232e0eeaa54d','编辑名单','','cmii-uav-user','/api/uav/dynamic/editPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-11-06 12:16:43'),(4284,'API_ec6a5a95ea95fdb5b3233863bc1fdb0f','编辑一个动态','','cmii-uav-user','/api/uav/dynamic/edit','POST',_binary '\0',_binary '\0','2024-04-28 04:03:55',1,'2024-11-06 12:16:20'),(4285,'API_13466d8529da471067a0232d9d89981a','查询解决方案类型','','cmii-uav-user','/api/uav/solution/querySolutionType','POST',_binary '\0',_binary '\0','2024-04-28 04:03:56',1,'2024-11-06 12:16:34'),(4286,'API_acd6d406e0edbc0cc9c465733b69df1c','getImageCode','','cmii-uav-user','/api/uav/feedback/getImageCode','GET',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-11-06 12:16:34'),(4287,'API_4ff7fa2d154f49e153cfccf5e8f13c7c','获取用户分组名单','','cmii-uav-user','/api/uav/dynamic/queryAll','GET',_binary '\0',_binary '\0','2024-04-28 04:03:57',1,'2024-11-06 12:16:37'),(4288,'API_9320e1d2f70024f78547bf0b192c617f','sendRegisUavTelephoneVerifyCode','','cmii-uav-user','/api/uav/solution/sendRegisUavTelephone','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:19'),(4289,'API_f91c522e105782518efce2e01e15f2e3','删除','','cmii-uav-user','/api/uav/feedback/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:19'),(4290,'API_95eb3ded1a73e88c62d288a838c93c76','添加一个问题反馈','','cmii-uav-user','/api/uav/solution/addFeed','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:42'),(4291,'API_0c87c68fc66fe21230208c1ad9c245b7','删除','','cmii-uav-user','/api/uav/solution/delete','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:36'),(4292,'API_9e8ed6f7c0e93abe33fab436e802b237','deletePeople','','cmii-uav-user','/api/uav/dynamic/deletePeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:41'),(4293,'API_a3e9ad3e2aa0f019fe433894e77cde79','添加一个动态','','cmii-uav-user','/api/uav/dynamic/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:39'),(4294,'API_a63978af4c0d155fdda5b50f9452e571','添加一个解决方案申请','','cmii-uav-user','/api/uav/solution/add','POST',_binary '\0',_binary '\0','2024-04-28 04:03:58',1,'2024-11-06 12:16:44'),(4295,'API_3d91293b3df38da86d1a8e52dbb49faa','查询所有动态','','cmii-uav-user','/api/uav/dynamic/queryAllDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:42'),(4296,'API_c2885c313cdbfc1912b18932b7225c66','查询解决方案','','cmii-uav-user','/api/uav/solution/querySolutions','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:33'),(4297,'API_78cae55bde1a1a2af55c6aecc16f73a3','查询名单','','cmii-uav-user','/api/uav/dynamic/queryPeople','POST',_binary '\0',_binary '\0','2024-04-28 04:03:59',1,'2024-11-06 12:16:27'),(4298,'API_e6a0e7a0b59b2c5bb33cf7879849b1e8','查看信息','','cmii-uav-user','/api/uav/feedback/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-11-06 12:16:40'),(4299,'API_710dbf2924a9dec5a4c0dd445a823383','查询动态','','cmii-uav-user','/api/uav/dynamic/queryDynamics','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-11-06 12:16:35'),(4300,'API_d5a8dc07e5ad3b681f3b9e85e50b062c','导出查询结果','','cmii-uav-user','/api/uav/solution/export','POST',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-11-06 12:16:30'),(4301,'API_2484faa0c56d9c5a0ba75d12f5cf4438','checkExist','','cmii-uav-user','/api/uav/dynamic/checkExist','GET',_binary '\0',_binary '\0','2024-04-28 04:04:00',1,'2024-11-06 12:16:44'),(4302,'API_b409c11776d8f135f796fc601af292de','查看详情','','cmii-uav-user','/api/uav/dynamic/detail','GET',_binary '\0',_binary '\0','2024-04-28 04:04:01',1,'2024-11-06 12:16:35'),(4303,'API_6567297316be22439a299a6dba48e364','查看信息','','cmii-uav-user','/api/uav/solution/detail','POST',_binary '\0',_binary '\0','2024-04-28 04:04:02',1,'2024-11-06 12:16:31'),(4304,'API_a7e9a20384c42f94be0bb9f91276d24a','模拟接受设备数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/mockReceiveData','POST',_binary '\0',_binary '\0','2024-04-28 14:41:32',1,'2024-11-13 12:23:34'),(4305,'API_1802f8c701c19aa7250ed2d45b7beccd','工具-导出公司范围所有基站的历史轨迹','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/exportDetectionReplayByTime','GET',_binary '\0',_binary '\0','2024-04-28 14:41:32',1,'2024-11-13 12:23:36'),(4306,'API_8025c7b8f010186b55212243c9c31f70','查询低空探测配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/heSendStatus','GET',_binary '\0',_binary '\0','2024-04-28 14:41:34',1,'2024-04-28 14:42:48'),(4307,'API_7dace8c0777423361e75527ded438105','模拟接受设备状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/mockReceiveStatus','POST',_binary '\0',_binary '\0','2024-04-28 14:41:35',1,'2024-11-13 12:23:28'),(4308,'API_75ead36c82ed23f061137694e7175ebb','测试-发送TCP基站状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/testSendTcpStatus','POST',_binary '\0',_binary '\0','2024-04-28 14:41:35',1,'2024-11-13 12:23:35'),(4309,'API_3e9290fc191dd0d8fd6716b1eebba608','开始云台扫描','','cmii-uav-surveillance','/surveillance/payload/camera_scan','POST',_binary '\0',_binary '\0','2024-04-29 04:18:24',1,'2024-11-12 03:56:12'),(4310,'API_2036c7ce356e124714544b7bfd4f8dc7','停止云台扫描','','cmii-uav-surveillance','/surveillance/payload/camera_scan_stop','POST',_binary '\0',_binary '\0','2024-04-29 04:18:26',1,'2024-11-12 03:56:08'),(4311,'API_b8fd2bea256e80851258e921d6ffb632','更新设备状态','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/updateDeviceStatus','GET',_binary '\0',_binary '\0','2024-04-29 09:37:30',1,'2024-11-13 12:23:36'),(4312,'API_b1d4ffc314c70d115ea6279e4683d2e6','喊话器控制','','cmii-uav-integration','/dji_cloud/payload_control/speaker','POST',_binary '\0',_binary '\0','2024-04-29 11:21:00',1,'2024-10-22 06:16:05'),(4313,'API_e0d792fed418b97a1c5bba6e1d835760','关闭干扰控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/interfere/close','POST',_binary '\0',_binary '\0','2024-05-10 11:55:42',1,'2024-05-15 14:02:44'),(4314,'API_b8429c7ca75048d2788d51c0ebf1bad5','目标丢失上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/lostTarget','POST',_binary '\0',_binary '\0','2024-05-10 11:55:42',1,'2024-11-13 12:23:29'),(4315,'API_ef58c59a808b6942164cf83cea89c23f','目标发现上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/discoveryTarget','POST',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-11-13 12:23:33'),(4316,'API_2492f3074262c2e2dc25f49fd9eb4f45','查询探测目标列表信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/detectionObjectInfoList','GET',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-06-19 02:47:47'),(4317,'API_9c39b3fa817577d5d131e0355fb18068','启停雷达探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/radar/switch','POST',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-11-13 12:23:27'),(4318,'API_6862bd406a0993f0a043b2e8f15beb6c','查询所有设备联动关系','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/allDeviceRelations','GET',_binary '\0',_binary '\0','2024-05-10 11:55:43',1,'2024-05-13 01:39:41'),(4319,'API_d07dabb16bc7cf3b8ba81bbb4f21e16d','航迹目标上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/targetTrack','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-11-13 12:23:36'),(4320,'API_dc247624eeea5959f0dbf83af5e09fa7','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-11-13 12:23:34'),(4321,'API_9b45a0596196dc64d52d2e072100e5d0','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/jam/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-11-13 12:23:35'),(4322,'API_65b4a53e100d08b2c8b8cea078354dd7','开启干扰控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/interfere/open','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-05-15 14:02:45'),(4323,'API_65788cc51046fb9410f4483811659029','雷达设备状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/deviceState','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-11-13 12:23:35'),(4324,'API_66f5ba444e37decb61fdb65b4e704df2','查询所有设备列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/allDeviceList','GET',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-05-13 01:39:42'),(4325,'API_ae8899fb07d43cd275a49c7560133a9f','启停无线电探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/radio/switch','POST',_binary '\0',_binary '\0','2024-05-10 11:55:44',1,'2024-11-13 12:23:30'),(4326,'API_9c8fc7a12a3b63752d06409bc734d7f8','DEBUG_设置控制面_数据面每秒每客户端最大收包数量','','cmii-uav-industrial-portfolio','/senseAf/setMaxPacketsPerSecondPerClient','GET',_binary '\0',_binary '\0','2024-05-11 04:27:36',1,'2024-11-13 12:23:36'),(4327,'API_8c010e90ba12ffeee667225374de0195','DEBUG_获取所有的SF信息','','cmii-uav-industrial-portfolio','/senseAf/dbgGetAllSfInfo','GET',_binary '\0',_binary '\0','2024-05-11 04:27:36',1,'2024-11-13 12:23:31'),(4328,'API_75db171e1c409644825ac8e5ca156168','DEBUG_查询控制面_数据面每秒每客户端最大收包数量','','cmii-uav-industrial-portfolio','/senseAf/getMaxPacketsPerSecondPerClient','GET',_binary '\0',_binary '\0','2024-05-11 04:27:37',1,'2024-11-13 12:23:29'),(4329,'API_d3939e983d782220db086d24a1a71dfb','通感数据测试','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/senseDataTest','POST',_binary '\0',_binary '\0','2024-05-11 04:27:37',1,'2024-11-13 12:23:31'),(4330,'API_080bd8162c9edd9e373ffc7f9166f89e','发送保活消息','','cmii-uav-industrial-portfolio','/senseAf/SendKeepAliveMsg','POST',_binary '\0',_binary '\0','2024-05-11 04:27:38',1,'2024-11-13 12:23:29'),(4331,'API_5891a3d338f9677125e19649f2649540','感知能力同步请求','','cmii-uav-industrial-portfolio','/senseAf/SenseCapabilitySynReq','POST',_binary '\0',_binary '\0','2024-05-11 04:27:38',1,'2024-11-13 12:23:30'),(4332,'API_ef3e9f40d96465e67358aaef46176554','查询之前启动过的SF感知任务','','cmii-uav-industrial-portfolio','/senseAf/queryStartedSenseTask','GET',_binary '\0',_binary '\0','2024-05-11 04:27:38',1,'2024-11-13 12:23:28'),(4333,'API_ed2cfcc01cccd7237f1eae1406a8e793','停止SF的感知任务','','cmii-uav-industrial-portfolio','/senseAf/stopSenseTask','POST',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-11-13 12:23:27'),(4334,'API_eb21e4c8487fd7f000090fd073f97e64','DEBUG_获取所有的TCP连接信息','','cmii-uav-industrial-portfolio','/senseAf/dbgGetAllTCPInfo','GET',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-11-13 12:23:35'),(4335,'API_cc111c6412fc6d35492eb05973a1bc98','获取SF的感知能力数据','','cmii-uav-industrial-portfolio','/senseAf/querySfCapability','GET',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-11-13 12:23:33'),(4336,'API_c15140dd7567de20bf253f75315e581b','启动SF的感知任务','','cmii-uav-industrial-portfolio','/senseAf/startSenseTask','POST',_binary '\0',_binary '\0','2024-05-11 04:27:39',1,'2024-11-13 12:23:34'),(4337,'API_74eb33fc1f93f282a1ae697f46dbd71a','上报干扰设备指令下发的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/jam/cmd/response','POST',_binary '\0',_binary '\0','2024-05-13 10:31:24',1,'2024-11-13 12:23:32'),(4338,'API_3c183e1d7e54255a7cf2560954ad69bd','查询指定设备的联动关系','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/deviceRelations','POST',_binary '\0',_binary '\0','2024-05-13 10:31:25',1,'2024-11-13 12:23:27'),(4339,'API_67fe4763298c8da3b3e468d8fd57d960','按类型查询所有设备列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/deviceList','POST',_binary '\0',_binary '\0','2024-05-13 10:31:27',1,'2024-11-13 12:23:31'),(4340,'API_f25943302be9b0f4e093806dbcd802a8','上报雷达设备指令下发的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/cmd/response','POST',_binary '\0',_binary '\0','2024-05-13 10:31:27',1,'2024-11-13 12:23:33'),(4341,'API_62f8b0076b22cd19f2cd8bb0122ef577','上报无线电设备指令下发的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/aoa/cmd/response','POST',_binary '\0',_binary '\0','2024-05-13 10:31:28',1,'2024-11-13 12:23:34'),(4342,'API_77f289eb3bbc1763d820a9a5756d488d','基站感知数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/senseData5GA','POST',_binary '\0',_binary '\0','2024-05-13 15:20:09',1,'2024-11-13 12:23:33'),(4343,'API_4a3450e748d23688569cea87fc96b3cb','addCustomizedCase','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/添加自定义警情点','POST',_binary '\0',_binary '\0','2024-05-14 05:47:54',1,'2024-05-14 05:49:23'),(4344,'API_278c5b31cd8a6ead2e36ef8ec14bd984','添加自定义警情点','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/police/police_case_info/addCustomizedCase','POST',_binary '\0',_binary '\0','2024-05-14 05:55:21',1,'2024-11-13 12:23:28'),(4345,'API_f83cd3854985f8e46bef7c14d59f41b9','开启/关闭干扰控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/interfere/switch','POST',_binary '\0',_binary '\0','2024-05-16 10:13:57',1,'2024-11-13 12:23:30'),(4346,'API_a413830ae83e708fdfd40dd4283eb6e4','DEBUG_踢掉某个SF','','cmii-uav-industrial-portfolio','/senseAf/dbgKickOffSf','GET',_binary '\0',_binary '\0','2024-05-20 09:22:30',1,'2024-11-13 12:23:32'),(4347,'API_9ab25681789d727ed2bdb55525ee27f9','DEBUG_踢掉某个TCP连接','','cmii-uav-industrial-portfolio','/senseAf/dbgKickOffTcpConn','GET',_binary '\0',_binary '\0','2024-05-20 09:22:30',1,'2024-11-13 12:23:34'),(4348,'API_9efa6d3d0926596d33943d44d99ba0a9','DEBUG_查询TCP收包的速率','','cmii-uav-industrial-portfolio','/senseAf/getTcpTrafficRate','GET',_binary '\0',_binary '\0','2024-05-20 09:22:30',1,'2024-11-13 12:23:34'),(4349,'API_ab5f493fd8416aec859a88a92874c8c8','切换值守模式','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/guardMode','POST',_binary '\0',_binary '\0','2024-05-20 09:22:31',1,'2024-11-13 12:23:33'),(4350,'API_a54681c55a6ae3f4fd1eda504d0bc895','开放-获取基站列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/fetchRadars','POST',_binary '\0',_binary '\0','2024-05-21 12:41:17',1,'2024-11-13 12:23:34'),(4351,'API_cd5e1f58dfd3e872a44f7306a882b049','DEBUG_查询UDP收包的速率','','cmii-uav-industrial-portfolio','/senseAf/getUdpTrafficRate','GET',_binary '\0',_binary '\0','2024-05-21 12:41:22',1,'2024-11-13 12:23:32'),(4352,'API_bef05d4b5467bb2ab2c827ddfc8a4c68','查询值守模式:0-人工值守,1-无人值守','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/guardMode','GET',_binary '\0',_binary '\0','2024-06-03 09:32:14',1,'2024-11-13 12:23:28'),(4353,'API_94f51e24e55942e31f12edc8f0c4393a','查询用户设备配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/userDevConfig','GET',_binary '\0',_binary '\0','2024-06-03 09:32:14',1,'2024-11-13 12:23:34'),(4354,'API_1510a74205d65e2d8599de7ce3e12d75','checkTimeForAlarm','','cmii-uav-mission','/api/uav/mission/surveillance/checkTimeForAlarm','GET',_binary '\0',_binary '\0','2024-06-05 08:54:38',1,'2024-11-12 01:20:41'),(4355,'API_12088a2d36cb7991f6ba7a741f5d86d4','模拟多站探测数据-excel','','cmii-uav-mqtthandler','/mockRadarDatasFromExcel','POST',_binary '\0',_binary '\0','2024-06-10 07:17:53',1,'2024-11-07 08:51:27'),(4356,'API_a2f7bbb90b7946816124e2127d058b3c','雷达转台设备状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/radar/turntable','POST',_binary '\0',_binary '\0','2024-06-11 10:29:39',1,'2024-11-13 12:23:29'),(4357,'API_ee9cec74447b20c49838f7251cbf8c16','获取周界入侵范围接口','','cmii-uav-mission','/api/uav/mission/surveillance/getDetectionRegion','GET',_binary '\0',_binary '\0','2024-06-14 07:14:05',1,'2024-11-12 01:20:41'),(4358,'API_c82870fdb46cda9f7f5e444421099714','屏幕指点 云台移动,比例按照的是广角下(api文档)','','cmii-uav-integration','/dji_cloud/payload_control/camera_aim_zoom','POST',_binary '\0',_binary '\0','2024-06-18 04:58:01',1,'2024-10-22 06:16:04'),(4359,'API_66f2324cdc37bc8fc9baa85ad6cc6973','getUsedQuotaNumByType','','cmii-uav-industrial-portfolio','/client/quota/getUsedQuotaNumByType','POST',_binary '\0',_binary '\0','2024-06-19 02:46:26',1,'2024-11-13 12:23:35'),(4360,'API_5d3b08e0f2e048f7a8ba783fd90aeb4a','发送探测目标信息(用于测试)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/general/detectionObjectInfo','POST',_binary '\0',_binary '\0','2024-06-19 02:46:26',1,'2024-08-22 09:36:05'),(4361,'API_fbd4090268690adcfeec312786c139e5','存储占用统计修复','存储占用统计修复','cmii-uav-material-warehouse','/aggregate/storage/usageStatisticsRepair','POST',_binary '\0',_binary '\0','2024-06-26 09:56:34',1,'2024-11-11 11:46:07'),(4362,'API_c93d3ab50a03e3d016b814d18815dfbd','公司存储占用统计','公司存储占用统计','cmii-uav-material-warehouse','/aggregate/storage/usageStatistics','GET',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-11-11 11:46:08'),(4363,'API_1941938d21304a700f3eb1a715919823','文件使用确认V2.HeaderContextHolder需有companyId,userId,platform(EPlatformType);List最大5000','','cmii-uav-material-warehouse','/api/v1/warehouse/internal/fileUseConfirmV2','POST',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-11-11 11:46:06'),(4364,'API_e0fbfcf72634db20501b71de3f97a5fa','删除类型','删除类型','cmii-uav-material-warehouse','/baseUploadType/delete','POST',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-11-11 11:46:07'),(4365,'API_2b13ab87305bf7a16b5c66f491a652da','存储空间管理批量删除【内部接口】,通过文件id','存储空间管理批量删除【内部接口】,通过文件id','cmii-uav-material-warehouse','/api/v1/warehouse/internal/storage/batchDelete','POST',_binary '\0',_binary '\0','2024-06-26 09:56:35',1,'2024-11-11 11:46:08'),(4366,'API_7c9231b820d866575e34414c6a5440af','列举类型','列举类型','cmii-uav-material-warehouse','/baseUploadType/list','GET',_binary '\0',_binary '\0','2024-06-26 09:56:36',1,'2024-11-11 11:46:06'),(4367,'API_2375efceaa759af847d486e1b401fac7','存储占用统计初始化','存储占用统计初始化','cmii-uav-material-warehouse','/aggregate/storage/usageStatisticsInitialize','POST',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-11-11 11:46:09'),(4368,'API_6dfcd7737bce88ba755ed87a6e14c30a','通过文件id下载文件','通过文件id下载文件,type:0(原图),1(缩略图),2(临时文件)','cmii-uav-material-warehouse','/api/v1/warehouse/project/downloadFileByToken/{fileId}/{type}/{neverMore}/{kael}/{spectre},/api/v1/warehouse/project/downloadFileByToken/{fileId}/{type}/{downloadType}/{neverMore}/{kael}/{spectre}','GET',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-11-11 11:46:08'),(4369,'API_46635607504c0b93efca9a49ec77dd68','存储占用统计删除','存储占用统计删除','cmii-uav-material-warehouse','/aggregate/storage/deleteById','POST',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-11-11 11:46:06'),(4370,'API_70e6eb275d8a04b63b33c194669d8a2a','创建类型','创建类型','cmii-uav-material-warehouse','/baseUploadType/add','POST',_binary '\0',_binary '\0','2024-06-26 09:56:37',1,'2024-11-11 11:46:06'),(4371,'API_9c09edae596e40daa853b299f7104072','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-07-01 07:08:35',1,'2024-11-13 12:23:31'),(4372,'API_5eb844b22f4b91c19b1710cfb3dc94e1','目标追踪','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/photoelectricity/trackTarget','POST',_binary '\0',_binary '\0','2024-07-01 07:08:37',1,'2024-11-13 12:23:34'),(4373,'API_2e8e5bb280ba8b72cca910a3e707170b','停止目标追踪','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/photoelectricity/trackTermination','POST',_binary '\0',_binary '\0','2024-07-01 07:08:37',1,'2024-11-13 12:23:28'),(4374,'API_08094a34e68b1eef32fcd8255e029bc2','设备心跳状态上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/deviceHeartbeat','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-11-13 12:23:32'),(4375,'API_c6bc408c0e942cff796692109de33a83','上报诱骗设备启动指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/open/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-11-13 12:23:27'),(4376,'API_df572029de188fc38e5b5a876cb3058c','上报诱骗设备模式切换指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/mode/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-11-13 12:23:27'),(4377,'API_4208364a669594084e745f5b3ce87692','上报光电设备目标追踪指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/cmd/trackTarget/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:38',1,'2024-11-13 12:23:32'),(4378,'API_a0530723d769822793de3252a15be190','上报光电设备目标追踪停止指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/cmd/trackTermination/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:40',1,'2024-11-13 12:23:28'),(4379,'API_c4b12379e5ec702d4cc047f967ba4eb6','开启/关闭诱骗控制设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/induce/switch','POST',_binary '\0',_binary '\0','2024-07-01 07:08:40',1,'2024-11-13 12:23:28'),(4380,'API_a63a591899bdf9b002defe4ee7ad287d','上报诱骗设备关闭指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/close/response','POST',_binary '\0',_binary '\0','2024-07-01 07:08:43',1,'2024-11-13 12:23:32'),(4381,'API_7886820239dc42822e1231b4d77b151e','通过查询所有作业回传里面的媒体信息','','cmii-uav-mission','/picture/query_media_objects','POST',_binary '\0',_binary '\0','2024-07-01 07:15:47',1,'2024-11-12 01:20:35'),(4382,'API_27d2bd25d24652134d4be69787f10632','停止跟踪','','cmii-uav-mqtthandler','/uav_fly_command/stop_follow','POST',_binary '\0',_binary '\0','2024-07-04 09:04:24',1,'2024-11-07 08:51:28'),(4383,'API_b3b85cbcdb2a416435284864b822923f','开始跟踪','','cmii-uav-mqtthandler','/uav_fly_command/start_follow','POST',_binary '\0',_binary '\0','2024-07-04 09:04:25',1,'2024-11-07 08:51:30'),(4384,'API_120986a97251de232062743fbd2b9953','跟新跟踪','','cmii-uav-mqtthandler','/uav_fly_command/update_follow','POST',_binary '\0',_binary '\0','2024-07-04 09:04:25',1,'2024-11-07 08:51:27'),(4385,'API_7c3b9e7fa6e6fc3d9259ea9b01a15831','停止跟踪','','cmii-uav-surveillance','/surveillance/uav_command/stopFollow','POST',_binary '\0',_binary '\0','2024-07-04 09:27:51',1,'2024-11-12 03:56:12'),(4386,'API_387df2d183b47e6832fd676e9ef0ab13','开始跟踪','','cmii-uav-surveillance','/surveillance/uav_command/startFollow','POST',_binary '\0',_binary '\0','2024-07-04 09:27:52',1,'2024-11-12 03:56:09'),(4387,'API_c939c6015fd8c0437a828e1db0f5e7a8','更新跟踪','','cmii-uav-surveillance','/surveillance/uav_command/updateFollow','POST',_binary '\0',_binary '\0','2024-07-04 09:27:54',1,'2024-11-12 03:56:04'),(4388,'API_0ec400e8a7d35aa8ef0f4aafb6613e8a','导入光电摄像头','导入光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/importCameras','POST',_binary '\0',_binary '\0','2024-07-08 07:34:02',1,'2024-11-13 12:23:31'),(4389,'API_d907a5e34ec45f206cf744faad53d827','下载光电摄像头导入模板','下载光电摄像头导入模板','cmii-uav-industrial-portfolio','/photoelectric/camera/downloadCameraTemplate','GET',_binary '\0',_binary '\0','2024-07-08 07:34:02',1,'2024-11-13 12:23:27'),(4390,'API_5e4e1b7451169c59c0e74ced9825ac5b','分页查询光电摄像头','分页查询光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/queryPage','POST',_binary '\0',_binary '\0','2024-07-08 07:34:03',1,'2024-11-13 12:23:31'),(4391,'API_8829f78cbb19cfc094117e59632922b5','查询光电摄像头详情','查询光电摄像头详情','cmii-uav-industrial-portfolio','/photoelectric/camera/queryDetail','POST',_binary '\0',_binary '\0','2024-07-08 07:34:06',1,'2024-11-13 12:23:36'),(4392,'API_4601785c5dedc833ecd2e2396f7a6042','导出光电摄像头','导出光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/exportCameras','POST',_binary '\0',_binary '\0','2024-07-08 07:34:06',1,'2024-11-13 12:23:35'),(4393,'API_62366cfa0a5a5938351dd885247e08be','批量删除光电摄像头','删除光电摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/deleteCameras','POST',_binary '\0',_binary '\0','2024-07-08 07:34:07',1,'2024-11-13 12:23:35'),(4394,'API_86002a50bb6e7e3119993392f83c8685','校验兴趣点类型是否重复','校验兴趣点类型是否重复','cmii-uav-gis-server','/poi/checkTypeExist','GET',_binary '\0',_binary '\0','2024-07-10 01:50:59',1,'2024-10-23 08:39:49'),(4395,'API_eb9ba157a5e057e01fa9a55e715068e1','上报干扰设备模式指令的响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/jam/mode/response','POST',_binary '\0',_binary '\0','2024-07-12 07:37:59',1,'2024-11-13 12:23:29'),(4396,'API_9c36819beb2b811da6fcbbbd52b9e30d','模糊查询包括子公司的载荷编码列表','','cmii-uav-device','/api/uav/load/cam/queryCamCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:42',1,'2024-11-07 09:01:50'),(4397,'API_9417f3f0f1f8561c3cace109b462dd5d','是否存储批量修改','','cmii-uav-device','/api/uav/load/cam/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:43',1,'2024-11-07 09:01:57'),(4398,'API_628a811f079baa456196dbab75ea5e4d','模糊查询本公司机库编码列表','','cmii-uav-device','/api/uav/hangar/queryHngCode','GET',_binary '\0',_binary '\0','2024-07-18 09:19:43',1,'2024-11-07 09:01:44'),(4399,'API_1faf25df1faabd41f19f26738670a3cf','模糊查询包括子公司的载荷名称列表','','cmii-uav-device','/api/uav/load/cam/queryCamName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:45',1,'2024-11-07 09:01:52'),(4400,'API_d99d1f966d6d75d2be4be65d7f13b88d','分页查询机库信息','','cmii-uav-device','/api/uav/hangar/queryHngPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:47',1,'2024-11-07 09:01:54'),(4401,'API_1f263ce73f00b6292804c0cda06ff4d9','是否存储批量修改','','cmii-uav-device','/api/uav/hangar/storageBatchUpdate','POST',_binary '\0',_binary '\0','2024-07-18 09:19:47',1,'2024-11-07 09:01:54'),(4402,'API_e8114a3b7c4b3a6d0dd766ea46c220a5','分页查询摄像头载荷信息','','cmii-uav-device','/api/uav/load/cam/queryCamPage','POST',_binary '\0',_binary '\0','2024-07-18 09:19:49',1,'2024-11-07 09:01:57'),(4403,'API_ef77b8da8ee48a98679033e3d78702a6','模糊查询本公司机库名称列表','','cmii-uav-device','/api/uav/hangar/queryHngName','GET',_binary '\0',_binary '\0','2024-07-18 09:19:51',1,'2024-11-07 09:01:55'),(4404,'API_20d6915b2a18307a2b6aa36899b050d2','存储空间管理-视频-删除/批量删除','','cmii-uav-gis-server','/gis/videoDelete','DELETE',_binary '\0',_binary '\0','2024-07-18 09:22:45',1,'2024-10-23 08:39:51'),(4405,'API_ab9f869bce31d9d46e04873bf6f4e6ed','存储空间管理-视频-列表查詢','','cmii-uav-gis-server','/gis/gisVideoStorageList','POST',_binary '\0',_binary '\0','2024-07-18 09:22:46',1,'2024-10-23 08:39:50'),(4406,'API_079ea2745628d50155622fffb6f2fc8c','存储空间管理-模型-删除/批量删除','','cmii-uav-gis-server','/gis/delete','DELETE',_binary '\0',_binary '\0','2024-07-18 09:22:46',1,'2024-10-23 08:39:49'),(4407,'API_a234549533461cfdc32aba27689b8fcd','存储空间管理-图片-删除/批量删除','','cmii-uav-gis-server','/gis/imageDelete','DELETE',_binary '\0',_binary '\0','2024-07-18 09:22:47',1,'2024-10-23 08:39:49'),(4408,'API_74de085500217ab973056b46a7d18cbe','存储空间管理-模型-列表查询','','cmii-uav-gis-server','/gis/gisStorageList','POST',_binary '\0',_binary '\0','2024-07-18 09:22:47',1,'2024-10-23 08:39:49'),(4409,'API_cb837b477245917ea04da5b1afa61138','存储空间管理-图片-列表查询','','cmii-uav-gis-server','/gis/gisImageStorageList','POST',_binary '\0',_binary '\0','2024-07-18 09:22:48',1,'2024-10-23 08:39:49'),(4410,'API_db57bd25938d601de682233d9cbcfe2e','告警回放-包含摄像头告警数据','','cmii-uav-industrial-portfolio','/photoelectric/alarm/queryAlarmByTime','POST',_binary '\0',_binary '\0','2024-07-18 09:22:49',1,'2024-11-13 12:23:32'),(4411,'API_beac7757a64a5dca77cfc02155970471','获取引导的摄像头','获取引导的摄像头','cmii-uav-industrial-portfolio','/photoelectric/camera/guidingCamera','GET',_binary '\0',_binary '\0','2024-07-18 09:22:50',1,'2024-11-13 12:23:31'),(4412,'API_d271e8ac37526681f779c06cd78db725','删除告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitaryAlarm/delete','POST',_binary '\0',_binary '\0','2024-07-18 09:22:52',1,'2024-11-13 12:23:28'),(4413,'API_86276f7e39b46e5c8fd005642945673b','获取个人配置的设置参数','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/get_configs','POST',_binary '\0',_binary '\0','2024-07-18 09:22:53',1,'2024-11-13 12:23:30'),(4414,'API_d9ff093b83f1e7a86075b96c2b879a89','保存目标轨迹保留时长配置信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/save_configs','POST',_binary '\0',_binary '\0','2024-07-18 09:22:54',1,'2024-11-13 12:23:31'),(4415,'API_e095e1d597b057617dd6862c7b47e959','删除基站','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/multi/bts_data_delete_batch','POST',_binary '\0',_binary '\0','2024-07-18 09:22:54',1,'2024-11-13 12:23:31'),(4416,'API_c38cfbddc92b9fb9615b5282794e9bcc','视频文件数据来源-获取载荷名称列表','视频文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-11-14 02:02:37'),(4417,'API_98c1122b10415f0dec6189333760f547','ts文件数据来源-获取记录列表','ts文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoSegmentList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:22',1,'2024-11-14 02:02:42'),(4418,'API_44cb968928087b3f967a70520ff59363','ts文件数据来源-回放视频封面','ts文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getTsSegmentCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:23',1,'2024-11-14 02:02:43'),(4419,'API_907518793367054d69d3150a4ac8f826','视频文件数据来源-回放视频封面','视频文件数据来源-回放视频封面','cmii-uav-cloud-live','/video/storage/manage/getMergeVideoFileCover','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-11-14 02:02:36'),(4420,'API_ec28da84b512c2cbbc3e2cdbaed2e0a4','ts文件数据来源-播放M3U8文件','ts文件数据来源-播放M3U8文件','cmii-uav-cloud-live','/video/storage/manage/playM3u8','GET',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-11-14 02:02:37'),(4421,'API_feef712791bf923d14c608e01932550e','视频文件数据来源-获取视频文件记录列表','视频文件数据来源-获取记录列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileList','POST',_binary '\0',_binary '\0','2024-07-18 09:23:24',1,'2024-11-14 02:02:37'),(4422,'API_68464c2e0f1c8eacca6720c4bbe4a726','删除单个合成视频文件','删除单个合成视频文件','cmii-uav-cloud-live','/client/video/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:37'),(4423,'API_4addc921e4951c0df245aab31f587d73','删除合成视频文件','删除合成视频文件','cmii-uav-cloud-live','/client/video/deleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:41'),(4424,'API_331b402b2e51817b8d98d84bbae519cb','ts文件数据来源-删除视频片段','ts文件数据来源-删除视频片段','cmii-uav-cloud-live','/video/storage/manage/deleteOneSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:38'),(4425,'API_92c8cd586c9d981a0e0623d340f18d2f','更新设备视频保存状态','更新设备视频保存状态','cmii-uav-cloud-live','/client/live/stream/updateDeviceVideoStatus','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:43'),(4426,'API_018859c01d82db3a53dce1c26960d158','视频文件登记','视频文件登记','cmii-uav-cloud-live','/client/video/registerVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:25',1,'2024-11-14 02:02:39'),(4427,'API_0bf71a6bb6a12e61a6c15155f94027bb','ts文件数据来源-获取载荷ID列表','ts文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:39'),(4428,'API_94f0aedf71430a12b6854a3844f20288','视频文件数据来源-触发1条老数据修复(调试)','视频文件数据来源-触发1条老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairOneVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:43'),(4429,'API_bfe6e994058029cb7f91a84d9654e8a9','视频文件数据来源-删除视频文件','视频文件数据来源-删除视频文件','cmii-uav-cloud-live','/video/storage/manage/deleteOneVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:37'),(4430,'API_fd7d2db05a5cdecc4295e465a9c3cbe8','ts文件数据来源-视频下载','ts文件数据来源-视频下载','cmii-uav-cloud-live','/video/storage/manage/download','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:39'),(4431,'API_e183e5a0cea8c2b6faf23532924f7464','ts文件数据来源-获取载荷名称列表','ts文件数据来源-获取载荷名称列表','cmii-uav-cloud-live','/video/storage/manage/getDeviceNameList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:26',1,'2024-11-14 02:02:37'),(4432,'API_7d103b4d606da0093251d04eb272586a','ts文件数据来源-触发老数据文件大小字段修复(调试)','ts文件数据来源-触发老数据文件大小字段修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairTsSegmentFileSize','GET',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-11-14 02:02:41'),(4433,'API_de25611ea380c123af7a1ad22ea516b5','ts文件数据来源-批量删除视频片段','ts文件数据来源-批量删除视频片段','cmii-uav-cloud-live','/video/storage/manage/batchDeleteSegment','POST',_binary '\0',_binary '\0','2024-07-18 09:23:28',1,'2024-11-14 02:02:37'),(4434,'API_4698e84e7aa12ccecf4bcc61213840ce','视频文件数据来源-触发部分老数据修复(调试)','视频文件数据来源-触发部分老数据修复(调试)','cmii-uav-cloud-live','/video/storage/manage/repairSomeVideoFile','GET',_binary '\0',_binary '\0','2024-07-18 09:23:29',1,'2024-11-14 02:02:40'),(4435,'API_2f7d245e3a311dad0dc361f0ddc80c3c','视频文件数据来源-获取载荷ID列表','视频文件数据来源-获取载荷ID列表','cmii-uav-cloud-live','/video/storage/manage/getVideoFileDeviceIdList','GET',_binary '\0',_binary '\0','2024-07-18 09:23:30',1,'2024-11-14 02:02:44'),(4436,'API_6ea8bbd872a1a8a93b2296474efdbb1b','ts文件数据来源-通过id获取回放Token','ts文件数据来源-通过id获取回放Token','cmii-uav-cloud-live','/video/storage/manage/createToken','GET',_binary '\0',_binary '\0','2024-07-18 09:23:31',1,'2024-11-14 02:02:39'),(4437,'API_ca5c86faab31a2ba429413bde4747319','视频文件数据来源-批量删除视频文件','视频文件数据来源-批量删除视频文件','cmii-uav-cloud-live','/video/storage/manage/batchDeleteVideoFile','POST',_binary '\0',_binary '\0','2024-07-18 09:23:33',1,'2024-11-14 02:02:42'),(4438,'API_aeb339d8a5e7c7ddf64fdf8cf0242177','批量删除作业派发任务','','cmii-uav-mission','/zjjt/delete_task','POST',_binary '\0',_binary '\0','2024-07-21 07:24:01',1,'2024-08-03 03:06:37'),(4439,'API_674fa7f21bbad1a4e0261eaf637bb9e6','创建新的作业派发任务','','cmii-uav-mission','/zjjt/create_task','POST',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:37'),(4440,'API_436d88b7132e19d83a2f43ac37478a00','查询作业派发任务','','cmii-uav-mission','/zjjt/query_task','POST',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:36'),(4441,'API_6a2ce044d2e4bed0ca2f4a353ff03386','视频截图接口,提供参数,不是最后实现接口','','cmii-uav-mission','/zjjt/get_video_stream_pic','GET',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:36'),(4442,'API_1d0299e80d7bcf172d93ad5000c11188','更新作业信息','','cmii-uav-mission','/zjjt/update_mission','POST',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:35'),(4443,'API_d47b08d1323691f17a37bc0264364128','通过作业id查询作业关联的照片,并返回照片的临时地址','header IS_SYSTEM_ADMIN:true 设置管理员权限','cmii-uav-mission','/zjjt/get_mission_pics','GET',_binary '\0',_binary '\0','2024-07-21 07:24:02',1,'2024-08-03 03:06:35'),(4444,'API_320a6684510dbb91a85c40b4f94cd7d5','查询没有在执行任务的在线无人机(不包括机库在线但是无人机不在线的情况)','','cmii-uav-mission','/zjjt/get_online_uav','GET',_binary '\0',_binary '\0','2024-07-21 07:24:03',1,'2024-08-03 03:06:38'),(4445,'API_a9604882ce3502c42265d7c35ab0da6c','查询没有在执行任务的在线无人机和离线无人机(但是机库在线)','','cmii-uav-mission','/zjjt/get_online_device','GET',_binary '\0',_binary '\0','2024-07-21 07:24:04',1,'2024-08-03 03:06:37'),(4446,'API_d52cc036bcd7d1847405a14fe4ae054e','引导光电设备-用合作无人机','引导光电设备-用合作无人机','cmii-uav-industrial-portfolio','/photoelectric/camera/guideCameraWithUAV','POST',_binary '\0',_binary '\0','2024-07-21 15:05:54',1,'2024-11-13 12:23:30'),(4447,'API_795dc5d9304aac0e0808791eb6a8f467','获取跳转地址','','cmii-uav-mqtthandler','/uav_fly_command/getJumpUrlForDetection','GET',_binary '\0',_binary '\0','2024-07-22 14:34:07',1,'2024-11-07 08:51:30'),(4448,'API_11b72c2bf2e51317eba9a6419d0def51','停止引导光电设备-用合作无人机','停止引导光电设备-用合作无人机','cmii-uav-industrial-portfolio','/photoelectric/camera/stopGuideCameraWithUAV','POST',_binary '\0',_binary '\0','2024-07-23 02:07:55',1,'2024-11-13 12:23:33'),(4449,'API_2cd07947253752d3f03a75cc51fb7536','查询无人机 字符串叠加视频流地址','','cmii-uav-mission','/zjjt/get_uav_string_video','GET',_binary '\0',_binary '\0','2024-07-24 01:33:29',1,'2024-08-03 03:06:36'),(4450,'API_729985be1bc42ff134920574e0de3c03','模拟调用定时任务','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/civilMilitary/advanced5GSync','POST',_binary '\0',_binary '\0','2024-07-30 03:35:35',1,'2024-11-13 12:23:28'),(4451,'API_23b72e1121709fdbff39f61006d6d53a','机库详细数据','机库详细数据','cmii-uav-mqtthandler','/oapi/uav/hangar/getHangarDetail','GET',_binary '\0',_binary '\0','2024-08-13 07:41:40',1,'2024-11-07 08:51:29'),(4452,'API_e8dd5bcc7e1a27eed56adaeee36ac9d6','检测目标上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/detectedTarget','POST',_binary '\0',_binary '\0','2024-08-14 09:28:20',1,'2024-11-13 12:23:32'),(4453,'API_d372cc461bc24b981f0dbe56654ef5dc','追踪目标上报','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/photoelectricity/tracedTarget','POST',_binary '\0',_binary '\0','2024-08-14 09:28:21',1,'2024-11-13 12:23:32'),(4454,'API_7d91ca39e7a94086bb768f1eca6e49a5','重置探测目标上报标识(用于测试)','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/photoelectricity/detectionFlagReset','POST',_binary '\0',_binary '\0','2024-08-14 09:28:21',1,'2024-11-13 12:23:34'),(4455,'API_5b2389bcbcd4e036cee92262be7d3ff5','停止 AI 检测','','cmii-uav-mission','/api/uav/mission/ai/stopAIDetection','POST',_binary '\0',_binary '\0','2024-08-15 03:45:42',1,'2024-11-12 01:20:35'),(4456,'API_e66a16c26aea1a91b0c1b90fd459ed25','开始 AI 检测','','cmii-uav-mission','/api/uav/mission/ai/switchAIDetection','POST',_binary '\0',_binary '\0','2024-08-15 03:45:42',1,'2024-11-12 01:20:40'),(4457,'API_71d869467078025b6219ffc8f61c367e','获取 AI 检测结果','','cmii-uav-mission','/api/uav/mission/ai/getAIResult','POST',_binary '\0',_binary '\0','2024-08-15 03:45:44',1,'2024-11-12 01:20:34'),(4458,'API_b5a7f14153b7231270f84bdead91dac4','根据机库名称模糊查询机库信息【机库名称和机库编号】','','cmii-uav-device','/api/uav/hangar/queryHangarListByName','POST',_binary '\0',_binary '\0','2024-08-22 09:33:30',1,'2024-11-07 09:01:50'),(4459,'API_6b96e4cf6e1492b7ed8181658b07b0fa','查询定时任务统计信息for智慧交通','','cmii-uav-mission','/api/uav/mission/traffic/get_timed_mission_total','POST',_binary '\0',_binary '\0','2024-08-22 09:35:33',1,'2024-11-12 01:20:37'),(4460,'API_ffec3da6b0ecbecc693cba4f02e63be0','智慧机场获取告警信息','根据 GPS 显示在地图上,并且根据 invaderId 缓存轨迹','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/map/warn','GET',_binary '\0',_binary '\0','2024-08-22 09:36:02',1,'2024-11-13 12:23:27'),(4461,'API_9008a0fcb4c5c88c834f240e1bf9f699','删除航班信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/delete','POST',_binary '\0',_binary '\0','2024-08-22 09:36:03',1,'2024-11-13 12:23:32'),(4462,'API_deca7946eb3b3d5eebb1572ef3c77bc9','处理探测告警','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/warn/handle','POST',_binary '\0',_binary '\0','2024-08-22 09:36:03',1,'2024-11-13 12:23:35'),(4463,'API_fe1d6c4c50730d55ed7a877a2f41e8f9','下载跑道导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/template/download','GET',_binary '\0',_binary '\0','2024-08-22 09:36:03',1,'2024-11-13 12:23:27'),(4464,'API_484da1af6e5afb6e1f75ca7484cfeb2d','下载航班导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/template/download','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-11-13 12:23:27'),(4465,'API_506d24e9d83dc42198264ccf7b89588e','下载导入模板文件','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/all/template/download','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-11-13 12:23:29'),(4466,'API_cad90868c4c06aa37e35492fbc5c5914','获取机场探测统计概览信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/overview','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-11-13 12:23:33'),(4467,'API_87f82b62fd3e48ded6adc7f3fe396426','获取跑道信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/list','GET',_binary '\0',_binary '\0','2024-08-22 09:36:04',1,'2024-11-13 12:23:30'),(4468,'API_fcde3f53cc89a742d185a80d15141a57','导入机场列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/airport/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:05',1,'2024-11-13 12:23:28'),(4469,'API_62eaae53821d8df80d18caf3fa034d5c','删除基站信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/delete','POST',_binary '\0',_binary '\0','2024-08-22 09:36:05',1,'2024-11-13 12:23:29'),(4470,'API_5e0ad78f5e789a6e8c3c44e43ed8ac85','获取航班信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/list','POST',_binary '\0',_binary '\0','2024-08-22 09:36:05',1,'2024-11-13 12:23:29'),(4471,'API_e44a3472be3b5aaa4ff293f8af90aa4a','导入全部数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/all/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:06',1,'2024-11-13 12:23:28'),(4472,'API_e33ed2786feb00cfb0a7aacd1cd10681','导入航班列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:06',1,'2024-11-13 12:23:36'),(4473,'API_e5ae7dbf8b2ee5b76c153f3f12bf3100','删除跑道信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/delete','POST',_binary '\0',_binary '\0','2024-08-22 09:36:06',1,'2024-11-13 12:23:28'),(4474,'API_67d63dd2cf9936e4780559c1f0e2fa95','导出基站信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/export','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-11-13 12:23:27'),(4475,'API_72d4d37c30cd2cfca405857077728cb5','导出跑道信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/runway/export','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-11-13 12:23:34'),(4476,'API_df0a641d5e5f064f86ba1d94284af0b6','导入基站列表数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/import','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-11-13 12:23:31'),(4477,'API_470a0c33862e0a8c8db626905f082b9a','获取基站信息列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/station/list','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-11-13 12:23:30'),(4478,'API_24c54c7f2e789206a1039140a4092b8b','导出航班信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/flight/export','POST',_binary '\0',_binary '\0','2024-08-22 09:36:08',1,'2024-11-13 12:23:29'),(4479,'API_209b2be43d76dd9f948e3c73e949ad9e','获取探测告警列表','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/smart/airport/warn/page','POST',_binary '\0',_binary '\0','2024-08-22 09:36:09',1,'2024-11-13 12:23:28'),(4480,'API_22b970a07bc7f9b858d0c3ec9fc19ebc','同步公司无人机到监管平台-用于接口测试调用','','cmii-uav-device','/api/uav/plane/syncCompanyUAV','GET',_binary '\0',_binary '\0','2024-08-26 06:56:44',1,'2024-11-07 09:01:44'),(4481,'API_9948c5fb3ae6171384f848a639d85260','应用信息接口统计查询','','cmii-uav-device','/open/interface/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4482,'API_a997f0624ff6072968c99157ea4a5529','手机验证码登录','','cmii-uav-device','/code/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4483,'API_667852302f77fa35e495e2817cbb171f','hello服务接口','hello','cmii-uav-device','/oapi/test/test2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4484,'API_b3454b99b39819b7162228f7f4c472b5','查询所有的开发者','','cmii-uav-device','/api/uav/developer/queryAll','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4485,'API_6a47476f83ae858ba6316011ab7edde3','删除开发者','','cmii-uav-device','/admin/developer/deleteDeveloper','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4486,'API_5c0d18ee137d4c9583aad7ceccf15893','上传航线航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:28',1,NULL),(4487,'API_084c7c2455fda374a82e8bbdab2dda6d','生成接口版本的语言示例代码','','cmii-uav-device','/admin/interfaceVersion/buildLanguageSample','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4488,'API_43afe3fcf0ea9b7bd472182946fe67cf','查询应用日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppLog','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4489,'API_65abfaf6ea956fe99501de108f032df9','更新开发者的接口额度','','cmii-uav-device','/admin/appInterface/updateDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4490,'API_964ddda94b02c71f20ef2d7f65b5f141','批量删除实体','','cmii-uav-device','/admin/model/deleteBatch','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4491,'API_e3a6636fffe617d5cb77ee97c09dec68','结束火警信息','','cmii-uav-device','/oapi/mission/caseinfo/newcase/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4492,'API_5e88132853982d0096d42c51453b571c','过期接口查询','','cmii-uav-device','/open/appInterface/expire','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4493,'API_5158b08718bc40c8aec2f55cf1d8ba28','查询无人机分布情况','查询无人机分布情况','cmii-uav-device','/oapi/device/uav/plane/area/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4494,'API_249926bac448fc996928b30d903a79b2','发送找回密码验证码','','cmii-uav-device','/verifyCode/sendResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4495,'API_5ec9f1123a2ce15ec6712d015449deef','获取公司','获取公司','cmii-uav-device','/oapi/test/company_get','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4496,'API_0f4f05991657fe4123357a2d1b075990','找回密码','','cmii-uav-device','/profile/findPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4497,'API_7ecadfd54c5a99c0a7af577477fdb18b','开发者状态设置','','cmii-uav-device','/admin/developer/updateDeveloperStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4498,'API_7df3d8f845a62481658467566aa78a76','单个应用日志查询','','cmii-uav-device','/open/appInterfaceLog/queryById/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4499,'API_eb5384f8fe480bdb7db33bd69cd7c698','hello服务接口','hello','cmii-uav-device','/oapi/test/hello2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4500,'API_06f99998367e82c923ea4369de701750','获取接口类型列表','','cmii-uav-device','/admin/interface/getInfTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4501,'API_90cdfb0f6d907b78b7c568d502f21262','超额接口查询','','cmii-uav-device','/open/appInterface/exceed','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4502,'API_215139419d712ca0567579b61c32421e','查询开发者应用的接口列表','','cmii-uav-device','/admin/appInterface/queryDeveloperAppInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4503,'API_0ee1db5e3a71ef9bf55d059915617a7b','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody2.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4504,'API_e3d56348564e21431b37396391acf92c','测试的一个接口','','cmii-uav-device','/open/developer/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4505,'API_1547ffe370a00802b6bdd73197ec55dc','根据参数的请求类型,获取参数支持的属性类型','','cmii-uav-device','/admin/params/getTypesByParamType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4506,'API_cfd3c4e00d7e8e050f669f9bc718a2bb','模糊查詢有效的公司列表','','cmii-uav-device','/admin/app/queryCompanyList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4507,'API_be962a97ca8f557646ed5408639926d4','发送注册验证码','','cmii-uav-device','/verifyCode/sendRegisty','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4508,'API_d291d930c2c5c58e5673e2e9a2f51655','账号手机号密码登录','','cmii-uav-device','/login','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4509,'API_23b7e96bf71e175a28462a6ac809a72f','公司配置','','cmii-uav-device','/admin/app/updateAppCompany','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4510,'API_57f9358a01b1441985d52921ce078163','应用日志查询','','cmii-uav-device','/open/appInterfaceLog/query/appLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4511,'API_dd79c51369092a266474139a145fa500','删除一个接口','','cmii-uav-device','/api/uav/developer/resource/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4512,'API_617a542e7348e0aca4666f17fa0bcf5a','更新开放的接口','','cmii-uav-device','/admin/interface/updateOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4513,'API_1956520eab23482aac79172610537e70','通过应用ID查询接口信息','','cmii-uav-device','/open/interface/queryBy/appId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4514,'API_0a8af1319e8a427f411b1fa17a09c7db','检测找回密码验证码','','cmii-uav-device','/verifyCode/checkResetPassword','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4515,'API_d55e68dda9d4833d4c8caf9a29bd4e22','查询支持的文件类型','','cmii-uav-device','/admin/params/getFileTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4516,'API_4330bd915aea75efff5a0ddcaffd5231','获取接口的示例语言','','cmii-uav-device','/admin/interface/querySampleLanguages','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4517,'API_f7e55608958c5b4f5ee37c5972944d04','接口状态设置','','cmii-uav-device','/admin/interface/v2/updateInfStat','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4518,'API_d6fae1606aa882168a06b75b20c6707d','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/batchUploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4519,'API_3851413d9e7715457b3c22bae556e89c','申请更新邮箱','','cmii-uav-device','/profile/updateEmail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4520,'API_1f4d61fddddb8c628c1e25c913669529','获取单个接口文档','','cmii-uav-device','/docs/getDoc','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4521,'API_08a69a85e4030ba975f338a46e03df30','接口版本状态设置','','cmii-uav-device','/admin/interface/updateInfOpenStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4522,'API_9322d1fcfbb3d492cae05b5e91e095e1','获取限制类型列表','','cmii-uav-device','/admin/interface/getLimitTypeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4523,'API_f92c106b9fcd8d0e4678fd1e428af613','查询内部接口标识','','cmii-uav-device','/admin/interface/v2/infCodeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4524,'API_182ad6f50aa498e7232b57f96b2b39de','配置接口','','cmii-uav-device','/admin/params/configInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4525,'API_4cbfe07c0c6d3317e3a7da21f32b7981','添加公司','添加公司秒速','cmii-uav-device','/oapi/test/company_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4526,'API_b6c94ebb46a0ca789c544ae91af45c49','应用中心重置秘钥','','cmii-uav-device','/open/app/reset/appSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4527,'API_45af1b3851683703872fabf203301f4f','list文档','','cmii-uav-device','/docs/docList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4528,'API_8e1caaaf63c47de0420d8f350b477f8d','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4529,'API_94833b0c5a16a4aadc8db39f19804138','查询接口默认额度','','cmii-uav-device','/admin/interface/queryInterfaceQuota','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4530,'API_61eeb6a7981ff281a90ae07d183fcdaf','接口日志查询','','cmii-uav-device','/open/appInterfaceLog/query/interfaceLog','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4531,'API_6c7fd1ff0f0cf24883c098d236f9ed66','注册一个开发者','','cmii-uav-device','/registry-for-test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4532,'API_aea6d823f58266b1e0d9e7a96b52a381','删除(测试接口),不暴露','','cmii-uav-device','/profile/test/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4533,'API_57eb200269325e96ecd3d49e69696c92','查询公司下所有无人机7日内作业记录','查询公司下所有无人机7日内作业记录','cmii-uav-device','/oapi/surveillance/fly/history/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4534,'API_290b6f946d70c7bc7f96323eaf3afb1e','获取请求结果列表','','cmii-uav-device','/admin/appInterfaceLog/getReqResultList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4535,'API_59fd6d5d10bbc98f7fb6faaa3e14cf6d','获取版本列表','','cmii-uav-device','/admin/interface/getVerFilterOpenInf','GET',_binary '\0',_binary '\0','2024-08-26 07:07:29',1,NULL),(4536,'API_2e8d996d698e153301438ee698b4e627','公司所属无人机分页查询','公司所属无人机分页查询','cmii-uav-device','/oapi/device/uav/page/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4537,'API_1f417c4d49600c9483c26fc44cc8654f','检测登录图片验证码','','cmii-uav-device','/verifyCode/checkImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4538,'API_04bcf6e5551f577342654d27996ec763','查询单个飞机在线的历史航迹,包含态势数据','','cmii-uav-device','/oapi/surveillance/querySinglePlaneTrack/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4539,'API_3138ed368dbf92beb2904cc3e6c81354','查询支持的接口','','cmii-uav-device','/open/interface/querySupported','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4540,'API_dbaa1a31266af22e41348daa7bf42ee0','上传多架次无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4541,'API_0478002407683222df2b890bdcf7c577','查询公司下所有无人机7日内作业记录','','cmii-uav-device','/oapi/surveillance/queryHistoryTotal/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4542,'API_cbce3c99940cb8c36137c28d815e055a','应用中心编辑应用','','cmii-uav-device','/open/app/edit/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4543,'API_1a6e3330342f300451a2ca19b6fb2513','查询开发者应用详情','','cmii-uav-device','/admin/app/queryDeveloperAppDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4544,'API_d5b644994336696a14e561410caaf16b','删除实体','','cmii-uav-device','/admin/model/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4545,'API_68f3605a5fb03293cc8147b5d25bc597','创建密钥','','cmii-uav-device','/api/uav/developer/createSecret','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4546,'API_ca231a76d69dd9151e05cf6dbad453fc','查询公司/所属机构获取无人机数量','','cmii-uav-device','/oapi/uav/queryUavCountByCompanyId/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4547,'API_57aaa50997a152d2ab2b53af43cf0ac1','发送解绑手机号验证码','','cmii-uav-device','/verifyCode/sendUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4548,'API_419fddfa8659237fe5d0a6015f193483','添加或更新多语言示例代码','','cmii-uav-device','/admin/interface/mergeSampleCodes','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4549,'API_88cdad8f212950e48e1bce48e8e0f3af','查询脱敏规则','','cmii-uav-device','/admin/params/getBlurRuleList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4550,'API_be1c37552263d701e4f4b1e1ac019c53','hello服务接口','hello','cmii-uav-device','/oapi/test/hello','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4551,'API_58a2231d464838aac14ca5325102967a','复亚作业上传文件','复亚作业上传文件','cmii-uav-device','/oapi/mission/oss/foiaUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4552,'API_a0d06c67145fd7c5347108a33a935d36','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/flight/uploadDefault/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4553,'API_86bb29e0a43436c7775ffd7397ce66fa','获取接口所属列表','','cmii-uav-device','/admin/interface/getInfGroupList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4554,'API_6624b2af0d7d230e55fde0589b97249a','查询单个飞机目前最新航迹数据','','cmii-uav-device','/oapi/surveillance/queryRealTimeInfo/v1','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4555,'API_4044b84853cf230b988b4216b86373b2','更新实体','','cmii-uav-device','/admin/model/update','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4556,'API_6a941df64620f5947280e8376401a1e4','删除一个开发者','','cmii-uav-device','/api/uav/developer/delete','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4557,'API_f4a88485785f26734cc7769cf0557fd4','查询平台基础指标接口','查询平台基础指标接口','cmii-uav-device','/oapi/basic/plat/bizInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4558,'API_0adc74bc22df384c8cbc7860d39bacf0','查询开发者应用接口日志','','cmii-uav-device','/admin/appInterfaceLog/queryAppInfLogDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4559,'API_6cd3022a793bfbb30583fcb6857025f5','通过接口ID查询接口版本信息','','cmii-uav-device','/open/interface/queryVersion/interfaceId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4560,'API_ff7c0d84e8d20076bea4dd8d16d624d6','查询开发者应用列表','','cmii-uav-device','/admin/app/queryDeveloperAppList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4561,'API_03cd27281db8be928edf69ce4764ae08','查询开发者详情','','cmii-uav-device','/admin/developer/queryDeveloperDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4562,'API_b428c978248f4a35dc65b982ca3060b3','应用中心删除应用','','cmii-uav-device','/open/app/delete/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4563,'API_a52e2468f4666472e5ed608e73498fda','查询应用接口列表','','cmii-uav-device','/admin/appInterface/queryAppInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4564,'API_107fe2718678b900c70e70706b7168b7','发送绑定手机号验证码','','cmii-uav-device','/verifyCode/sendBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4565,'API_574b9ba5c6559cc5452fb297020bc4ce','应用中心主页查询','','cmii-uav-device','/open/app/homePage','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4566,'API_a6eca5f755ce833a55eb230a7d277793','查询接口服务信息','','cmii-uav-device','/admin/interface/queryInfServie','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4567,'API_077fd0ba780ca05a543a225aaa355cf6','验证token','','cmii-uav-device','/checkToken','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4568,'API_dd0a4000f702b4537ba4106e1d0751fc','通过设备号查询公司ID接口','通过设备号查询公司ID接口','cmii-uav-device','/oapi/device/uav/company/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4569,'API_f02f16bb0651b443a899a92b0e675172','应用中心设置回调地址','','cmii-uav-device','/open/app/redirect/setUrl','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4570,'API_a08fd7df587042c50e561f4c2610601a','根据token获取用户基本信息-敏感信息脱敏','','cmii-uav-device','/profile/getMyDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4571,'API_edcac3127696bb31f63d6a31eb1c4d20','查询接口列表V2','','cmii-uav-device','/admin/interface/v2/openInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4572,'API_fd403b4f0b3b815118d05f4fd62df9f8','全局统计本公司设备在线及简略详情','全局统计本公司设备在线及简略详情','cmii-uav-device','/oapi/surveillance/fly/total/1.0','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4573,'API_6b420b6cd90702af273ec1f8a75cc754','hello服务接口','hello','cmii-uav-device','/oapi/test/hello3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4574,'API_dfeb0c082537aa219d044ce2b4607b91','应用中心应用详情查询','','cmii-uav-device','/open/app/queryAppById','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4575,'API_57ffc88565558b5ad16ac821349ecc64','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImgCode','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4576,'API_72660c97aa4955edbe48e7bc1b166ee5','应用中心配置应用接口','','cmii-uav-device','/open/appInterface/configure/appInterface','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4577,'API_fa4138e3f7b8fc64fefca8100f95f2a7','删除接口','','cmii-uav-device','/admin/interface/v2/deleteInf','DELETE',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4578,'API_141cb2eeccd77d098fd5defcf046e4da','获取接口选择列表','','cmii-uav-device','/admin/appInterface/getInterfaceList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4579,'API_666076e8389d8bdb9c1673c2c66995e2','设备统计接口','设备统计接口','cmii-uav-device','/oapi/device/uav/count/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4580,'API_0b79665ae2e017fbd6a8dd0bea0d6ea0','发送登陆验证码','','cmii-uav-device','/verifyCode/sendLogin','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4581,'API_facecd2ba5889dc8f012224a8d8234e4','更新接口缓存数据','','cmii-uav-device','/admin/interface/refresh','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4582,'API_75d46dc0c40249362c4a7a9d750313b1','通过设备号列表查询绑定信息接口','通过设备号列表查询绑定信息接口','cmii-uav-device','/oapi/device/uav/bound/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4583,'API_7c8bebce400bda4312128cf6a07efdf0','collect服务接口','collect','cmii-uav-device','/oapi/test/collect','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4584,'API_69c4c6b204d9ec3e4e3d23fa2f88a8f0','实体分页查询','','cmii-uav-device','/admin/model/query','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4585,'API_65f4debbcec32e3b76225066fcd395c6','查询开发者可用的开放接口','','cmii-uav-device','/api/uav/developer/resource/queryOpenApi','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4586,'API_5be9648ee4af6d39697fdc9fce4702c5','查询接口详情v2','','cmii-uav-device','/admin/interface/v2/interfaceDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4587,'API_98ee25c6c10aa7d7775f5f9e368ea825','查询所有实体','','cmii-uav-device','/admin/model/all','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4588,'API_558992bed1b604511d4f03c37a31d12e','上传无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/upload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4589,'API_a37243e55e41dc730532965f8ea0e0db','上传单架次无人机飞行态势数据','上传单架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/info/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4590,'API_9474d172fa5449a6373893f4c21e7bd2','应用中心单接口详情及调用情况查询','','cmii-uav-device','/open/appInterface/query/oneInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4591,'API_c8f089c2a0bc50504970a3eec1d4b628','添加实体','','cmii-uav-device','/admin/model/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4592,'API_76af8ca82ed6daea77d94dee396cf470','开发者应用接口调用统计表查询','','cmii-uav-device','/open/interface/invoke/statistic','GET',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4593,'API_2638542b36b1e79f635028b7b8503256','接口详情,版本列表V2','','cmii-uav-device','/admin/interface/v2/infVersionList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:30',1,NULL),(4594,'API_d89dfeb204b75dc3ddbea4d424465a8b','检查是否有访问权限','','cmii-uav-device','/api/uav/developer/resource/check','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4595,'API_db42b753da1547e145568f76d32e7577','重新绑定手机','','cmii-uav-device','/profile/updateTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4596,'API_0da68f2090fe13d30d43e470830c7b8e','设置接口版本号','','cmii-uav-device','/admin/interfaceVersion/updateInfVersion','PUT',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4597,'API_3d77798a4f897b5eb5e974a341b222af','根据接口版本ID,获取接口配置','','cmii-uav-device','/admin/params/getParamsConfigByVerId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4598,'API_a53b23499e23989701754474456da617','设置开放接口的默认额度','','cmii-uav-device','/admin/interface/updateInfDefaultQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4599,'API_ade56e487532d8f58e2bbca8cabe7992','即将过期接口查询','','cmii-uav-device','/open/appInterface/expire/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4600,'API_cc2499648f3e7cf3410f318672e47ddb','公司添加用户','公司添加用户描述','cmii-uav-device','/oapi/test/company_user_add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4601,'API_58e2816541204276dd819cf50e48a005','冻结(测试接口),不暴露','','cmii-uav-device','/profile/test/freeze','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4602,'API_30b8d48a7181f95801420c96991132e5','执行更新邮箱','','cmii-uav-device','/profile/doUpdateEmail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4603,'API_6920952f4d8d1e20ae2c52e26956c877','上传无人机飞行态势数据','同时上传多架次无人机飞行数据,每秒传一次','cmii-uav-device','/oapi/flight/batchUpload/v1','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4604,'API_aeb24ce0709bc05e10d9a9a020f94790','按条件分页查询开发者应用接口信息','','cmii-uav-device','/admin/appInterface/queryDevAppInfPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4605,'API_9693a020cdda953697c9526e27d908dd','查询接口详情','','cmii-uav-device','/admin/interface/queryInterfaceDetail','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4606,'API_2863e39bfc4c9983f727eb909d6bfbbc','查询每款无人机对应作业执行次数','查询每款无人机对应作业执行次数','cmii-uav-device','/oapi/mission/job/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4607,'API_dae39585a67460f1ea5e78172f5a98f0','查询单个飞机最新数据','','cmii-uav-device','/oapi/surveillance/info/realtimeInfo/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4608,'API_369a429da33cdcf0c5b944e5d86ad256','查询平台最近12月每月无人机作业执行次数','查询平台最近12月每月无人机作业执行次数','cmii-uav-device','/oapi/mission/job/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4609,'API_f532af8b9e2300d0fda0f3f43ebf3c64','普通作业上传文件','普通作业上传文件','cmii-uav-device','/oapi/mission/oss/normalUpload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4610,'API_7bb67cee83c0b28bf7d50a945166a27b','开发者应用状态设置','','cmii-uav-device','/admin/app/updateDeveloperAppStat','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4611,'API_a7acb49b27405d143a0766afe9ca9935','即将超额接口查询','','cmii-uav-device','/open/appInterface/exceed/soon','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4612,'API_000d992a047736227893c569eb107c5e','按限制类型查询接口列表','','cmii-uav-device','/admin/interface/queryOpenInfListByLimit','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4613,'API_e77aa6d23dee04357b75babccf53f363','hellobody服务接口','hello','cmii-uav-device','/oapi/test/hellobody3.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4614,'API_0b7f303c7b319864441f89c29f8ff65c','根据属性类型,获取属性的限制类型','','cmii-uav-device','/admin/params/getLimitsByPropertyType','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4615,'API_4d28d8d160204f57a5aefe7a776e422d','验证绑定手机号验证码','','cmii-uav-device','/verifyCode/checkBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4616,'API_1d02a19252314b9bbcc15a7ea200db7b','新建接口V2','','cmii-uav-device','/admin/interface/v2/createOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4617,'API_07ee41af1d7978077c6977bcd6f117dd','获取应用对应的所有接口列表','','cmii-uav-device','/admin/appInterface/getAllInfListByAppId','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4618,'API_8c0e1ae161f2d9bef3ecb8e984a22039','应用中心接口管理','','cmii-uav-device','/open/appInterface/query/allInterface','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4619,'API_301c7f177ab9c38c5b3d430142388a51','查询开放的接口列表','','cmii-uav-device','/admin/interface/queryOpenInfList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4620,'API_80314e58c1bb6473f7199fd222de701e','查询无人机实例总数接口','设备统计接口','cmii-uav-device','/oapi/device/uav/plane/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4621,'API_3f0ebc815624b71bb8726ea7650263c0','根据图片id获取图片code','','cmii-uav-device','/verifyCode/get_image_code_by_image_id','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4622,'API_b729b2523556e6da46748f44c6ed3984','接口版本列表','','cmii-uav-device','/admin/interfaceVersion/infVersionList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4623,'API_e94fed089656866dcdae8f87d94accac','获取所有接口列表','','cmii-uav-device','/admin/interface/getAllInfList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4624,'API_1753b15cadbc575ce733685f83e25737','hello服务接口','hello','cmii-uav-device','/oapi/test/test','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4625,'API_68027d93c4eff7b794fce78cc9261d4d','helloOMS服务接口','hello','cmii-uav-device','/oapi/test/helloOMS','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4626,'API_6d41da958445233eca23fd7d4f3d2db9','分组获取接口','','cmii-uav-device','/docs/list','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4627,'API_344e5ebde3c1d23eb02b8d0c7febe2d2','创建接口版本','','cmii-uav-device','/admin/interfaceVersion/createInfVersion','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4628,'API_f3d0bd6377aa1f6f940409f38e7029a6','账号退出登录','','cmii-uav-device','/logout','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4629,'API_027faf38a5d543ccdca02f0f3b38cd8e','上传火警信息','','cmii-uav-device','/oapi/mission/caseinfo/casefinish/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4630,'API_700a6eaf2e9f6bf64cfa7d6c6e0236ac','查询无人机的拉流信息','','cmii-uav-device','/oapi/surveillance/uav/steamAddrs/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4631,'API_6fa75f9f4c4a56ad7e558c9fb24a5595','获取实体详细信息','','cmii-uav-device','/admin/model/getModelDetail','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4632,'API_73fed1e2e520d4a3593413261db71207','查询开发者的接口额度','','cmii-uav-device','/admin/appInterface/queryDevAppInfQuality','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4633,'API_f1bb25873aea6fd9710d3be0fd9923da','创建一个开发者','','cmii-uav-device','/api/uav/developer/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4634,'API_3320a6b862ea0c70e0126ea0b2a23e99','查询单个飞机在线的历史航迹,包含态势数据','查询单个飞机在线的历史航迹,包含态势数据','cmii-uav-device','/oapi/surveillance/plane/single/allTrack/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4635,'API_ba5b76f97ca1946575fb0cbf9c279c33','批量上传飞行态势数据(无飞行架次)','同时上传多架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/batchupload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4636,'API_5defc8e579529b73bed6cd688849d067','应用中心新建应用','','cmii-uav-device','/open/app/add/oneApp','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4637,'API_37ef71f7f83115cf3b2c3c04d5090270','验证解绑手机号验证码','','cmii-uav-device','/verifyCode/checkUnBindTelephone','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4638,'API_7a3b0d70e39d59f8884bf15dc92dc237','接口文档接口','','cmii-uav-device','/docs/queryList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4639,'API_890cfe8d41a7d4ccffc05653ab7b63b0','获取接口未开放的版本列表','','cmii-uav-device','/admin/interface/','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4640,'API_4826824bb07036b1b994c3419353422a','查询平台最近12月每月飞行时长接口','查询平台最近12月每月飞行时长接口','cmii-uav-device','/oapi/mission/fly_duration/month/summary/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4641,'API_84c536e250cf8d28129590b1f31fdf34','按条件分页查询开发者信息','','cmii-uav-device','/admin/developer/queryDeveloperPage','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4642,'API_e107149bf123ce8fae306122785fe216','获取接口的版本列表','','cmii-uav-device','/admin/interface/queryInfVerList','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4643,'API_4a796da93b623f3b3fb5b3b050a5f73b','获取登录图片验证码','','cmii-uav-device','/verifyCode/getImageCode','GET,POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4644,'API_c4508c515401c20f7e49d6b9d83eab3e','重置密码','','cmii-uav-device','/profile/resetPwd','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4645,'API_34216cbf1fc376288c076b8ebbf7c580','上传飞行态势数据(无飞行架次)','上传单架次无人机飞行态势数据,每秒上传一次(没有飞行架次的概念)','cmii-uav-device','/oapi/device/default/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4646,'API_f226d4e60a81b0ba1584037cc5b339fd','开发者应用接口仓库查询','','cmii-uav-device','/open/interface/query/repository','GET',_binary '\0',_binary '\0','2024-08-26 07:07:31',1,NULL),(4647,'API_362c273fc0a25bf8a014159397bc22d5','注册一个开发者','','cmii-uav-device','/registry','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4648,'API_4584464031bc7c9bfc12836342976df0','获取请求时间列表','','cmii-uav-device','/admin/appInterfaceLog/getReqTimeList','GET',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4649,'API_5446128d9ace9120cb0c76c2529458d4','添加一个接口','','cmii-uav-device','/api/uav/developer/resource/add','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4650,'API_dd7ff9e5ee3e2b503df0161c5243a5a5','上传航点数据','上传单架次无人机航线航点数据','cmii-uav-device','/oapi/waypoint/airline/upload/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4651,'API_15e65be6ad22938f6546cc5b554b19fd','新建开放的接口','','cmii-uav-device','/admin/interface/addOpenInf','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4652,'API_23257b48677554f4bd76ec1940a90ed7','删除开放的接口版本','','cmii-uav-device','/admin/interface/deleteInfVer','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4653,'API_7364627a9d0eec31410c0f407da6cfb7','查询无人机视频回放','查询无人机视频回放','cmii-uav-device','/oapi/mission/uav/video/1.0','POST',_binary '\0',_binary '\0','2024-08-26 07:07:32',1,NULL),(4654,'API_c06fc8c98a9b177248f2360856bb119b','上报诱骗设备指定位置诱骗响应结果','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/detection/report/induce/cmd/locationInduce/response','POST',_binary '\0',_binary '\0','2024-08-28 01:24:48',1,'2024-11-13 12:23:30'),(4655,'API_2dd7bde6ba81cc05d89d405cfc22999f','queryHistoryVagueByCId','','cmii-uav-user','/user/queryHistoryVagueByCId/namePhone','GET',_binary '\0',_binary '\0','2024-09-09 09:07:10',1,'2024-11-06 12:16:21'),(4656,'API_43c829294d1b39258e962f3e4ba3a034','新建','','cmii-uav-emergency','/event/save','POST',_binary '\0',_binary '\0','2024-09-09 09:07:23',1,'2024-10-20 12:54:31'),(4657,'API_7b31c02cffc3e5ea412110a0ca3491a7','灾害次数统计','灾害次数统计','cmii-uav-emergency','/event/stats','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:32'),(4658,'API_391253cdb694e78845e9cba15a8b58f3','关联飞行记录','关联飞行记录','cmii-uav-emergency','/event/conn','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:31'),(4659,'API_dafffc66add49b0a88e209df76845bed','值班信息详情-不加密','不加密','cmii-uav-emergency','/duty/detailNoEncrypt','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:32'),(4660,'API_33918ed8739f49d91f4b25283ff9bec7','通信保障-设置救援点','通信保障-设置救援点','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/setPoint','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:32'),(4661,'API_810529670bd64d4193fcbe828d9c6620','通信保障-获取救援点','通信保障-获取救援点','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPoint','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:31'),(4662,'API_0dc5be8beda0ff97ce4712bf0a00046f','通信保障-获取无人机轨迹','通信保障-获取无人机轨迹','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPlaneTrack','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:31'),(4663,'API_b89ddd5147ed5a2f1b5de1e3911b958d','通信保障-获取通信情况','通信保障-获取通信情况','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getCommInfo','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:31'),(4664,'API_3cf5d25ef3002709242e76f5df7fae78','分页查询','','cmii-uav-emergency','/event/query','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:32'),(4665,'API_aa8c19db0afc381d6d1af3ac9bc79efc','值班信息详情','加密','cmii-uav-emergency','/duty/detail','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:31'),(4666,'API_ee01c005c4d8692268d801acb58ff631','通信保障-获取无人机视频流','通信保障-获取无人机视频流','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPlaneVideoInfo','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:33'),(4667,'API_cd09b17fd0a5706583b5ba0002c0a54c','值班信息填写','','cmii-uav-emergency','/duty/save','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:31'),(4668,'API_acc9aab10ec6f3d8b36b5faadc2832aa','日历查询','','cmii-uav-emergency','/duty/query','POST',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:32'),(4669,'API_3a86668c969685c0f6a5de6d05e9c85b','ai推荐','ai推荐','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/computeAiInfo','GET',_binary '\0',_binary '\0','2024-09-09 09:07:24',1,'2024-10-20 12:54:33'),(4670,'API_1c1f2a4cd38884d796d28f1d40b4bbb1','编辑成员','传入区域json字符串,需要有主键','cmii-uav-emergency','/event/edit','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4671,'API_b0a57127e1639b09309b59276da70ba9','日报填写','有id编辑,无id新增','cmii-uav-emergency','/duty/dailyEdit','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4672,'API_69a2e7d51a5c978c9d9ef53558622d84','获取灾害年份','获取灾害年份','cmii-uav-emergency','/event/years','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4673,'API_e9a42d6bdc44391570bdf50ea979423a','改变事件状态','改变事件状态','cmii-uav-emergency','/event/del','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4674,'API_932e3007107566b7a459e490d8d57a4e','获取事件详情','传入主键','cmii-uav-emergency','/event/detail','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4675,'API_764d7f3c8d41d9d3aaad120e577d82b5','批量删除','传入主键','cmii-uav-emergency','/event/delete','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4676,'API_ed80c920bee8ae360b3b64167761d64b','通信保障-分享-获取页面分享码&提取码','监通信保障-分享-获取页面分享码&提取码','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/shareCode','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4677,'API_cf0f2699785777a94fdb6891d2f9ae92','通信保障-关闭通信作业','通信保障-关闭通信作业','cmii-uav-emergency','/client/industrial/emergency/stopJob','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4678,'API_db1f163cecd0a0616d85d13ea17ad2cc','通信保障-开启通信作业请求','通信保障-开启通信作业请求','cmii-uav-emergency','/client/industrial/emergency/startJob','POST',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:33'),(4679,'API_524399ddc44884356d49a91e8db2efa6','通信保障-在线无人机列表','通信保障-在线无人机列表','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/onlinePlanes','GET',_binary '\0',_binary '\0','2024-09-09 09:07:25',1,'2024-10-20 12:54:32'),(4680,'API_add1eddd551500b56fbf88c5adaf0f40','统计查询','','cmii-uav-emergency','/duty/queryCount','POST',_binary '\0',_binary '\0','2024-09-09 09:07:26',1,'2024-10-20 12:54:31'),(4681,'API_988a11a0b1bc78a12d2e4b3f5306f41f','通信保障-获取无人机设备情况及覆盖范围','通信保障-获取无人机设备情况及覆盖范围','cmii-uav-emergency','/api/uav/industrial/emergency/commSupport/getPlaneInfoCoverage','GET',_binary '\0',_binary '\0','2024-09-09 09:07:26',1,'2024-10-20 12:54:32'),(4682,'API_65738049923989e46d11f1fbd777588c','值班信息编辑','','cmii-uav-emergency','/duty/edit','POST',_binary '\0',_binary '\0','2024-09-09 09:07:26',1,'2024-10-20 12:54:31'),(4683,'API_80fd400b18240c230596a361e327c623','获取机场区域以及禁飞区 Wgs84','','cmii-admin-data','/api/admin/arealimit/queryWgs84ZydAreaLimitByJouav.do','GET',_binary '\0',_binary '\0','2024-09-09 09:07:32',1,'2024-11-06 12:16:52'),(4684,'API_edd1f20c8423bc5ebabdf422f6dd2a00','从Redis获取类型对应的有效字典明细的K-V','从Redis获取类型对应的有效字典明细的K-V','cmii-admin-data','/api/admin/dictionary/getValKeyMapFromRedisByType','GET',_binary '\0',_binary '\0','2024-09-09 09:07:32',1,'2024-11-06 12:16:52'),(4685,'API_93245a10b22a387e990be87793651f08','电子围栏列表','','cmii-uav-airspace','/efence_airspace/efence_info_List','POST',_binary '\0',_binary '\0','2024-09-09 09:09:09',1,'2024-11-14 03:10:22'),(4686,'API_0fab114d29ab09bf0bb243525258e689','查询告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmDetail','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:17'),(4687,'API_cfab17a872576434e2d085792b4340b6','通过事件ID处理告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmIdNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:19'),(4688,'API_195fb5899fa1e35092ee71e52c3e7c6a','查询自己公司及子公司告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:19'),(4689,'API_3fba2693af9291a6434d9078de761854','上报安全告警事件','','cmii-uav-alarm','/api/uav/alarm/event/reportSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:17'),(4690,'API_5768fa4743b4961fe3aa36fdaa178ee1','查询自己公司及子公司所属的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:17'),(4691,'API_43f719feec3fa832bf1d4c8b37856292','查询在线告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:19'),(4692,'API_fb37e608252a8178582d9a851e8f5066','查询所有指定AlarmID的告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecByAlarmIdNoCompany','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:16'),(4693,'API_4d29e7f6ae861cb0f3d883f2df4e5b88','查询告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/queryConSecAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:19'),(4694,'API_454ec5c7dafd9ebf2956ba61b37624bc','查询指定对象的告警事件详情','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByObj','GET',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:18'),(4695,'API_9b65820af66004d1b5a76b17fa416eab','管理告警配置-管理端','','cmii-uav-alarm','/api/uav/alarm/controlSecAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:16'),(4696,'API_9038b1b0cc36168f7f707b131cbb49c4','通过事件ID处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByAlarmId','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:18'),(4697,'API_4a17d58452a19cfaafe2575f3e3ab059','查询所有告警事件详情-管理端','','cmii-uav-alarm','/api/uav/alarm/event/querySecDetailNoCompany','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:16'),(4698,'API_2c3693e478d3f4576bec2aced8c6f8cd','查询所有在线告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOnLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:18'),(4699,'API_f6b91968d821c1c4413f36482e025ec1','编辑告警配置','','cmii-uav-alarm','/api/uav/alarm/update/secAlarmConf','POST',_binary '\0',_binary '\0','2024-09-09 09:24:57',1,'2024-10-22 12:07:18'),(4700,'API_6eac0d1829f778b3eab0436a28b6fdcb','查询自己公司及子公司所属的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18'),(4701,'API_8ebb3db40953c69121e1ab9c0bc8d0a3','查询指定AlarmID的告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmByAlarmId','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18'),(4702,'API_253ff22d71d81bf89c929b75769b63c2','无人机下线之后处理告警事件','','cmii-uav-alarm','/api/uav/alarm/event/cancelSecAlarmByObj','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17'),(4703,'API_00419b2f3d3e1e9d0acb7c8c94e41658','查询所有的告警ID列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmIdList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17'),(4704,'API_f3eedbc9d0a83ab0fc5258a87f2f0c0d','查询历史告警事件','','cmii-uav-alarm','/api/uav/alarm/event/querySecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17'),(4705,'API_8956785199d26bb5c70a942651140cdf','查询所有历史告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmOffLine','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17'),(4706,'API_f062d3477042153e6e64d388dc5d86d3','一键处理所有告警事件-管理端','','cmii-uav-alarm','/api/uav/alarm/event/cancelAllSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18'),(4707,'API_3580cc836a060f01471c090f239b1baf','新增告警事件','','cmii-uav-alarm','/api/uav/alarm/event/addSecAlarm','POST',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:16'),(4708,'API_8d77d76663433f4fa4a5731580119573','查询所有告警数量统计信息','','cmii-uav-alarm','/api/uav/alarm/event/queryAllSecAlarmStats','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17'),(4709,'API_c4c8dbafb227cdb2aaf70a68db26eb6b','查询所有的告警类型列表','','cmii-uav-alarm','/api/uav/alarm/event/queryAllAlarmTypeList','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:18'),(4710,'API_9c51a35849a0e91613cb2cad5eb3eeff','查询告警配置','','cmii-uav-alarm','/api/uav/alarm/query/secAlarmConf','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:16'),(4711,'API_2d6f18e63183a9836589fff31c76d25d','提供类型查询告警配置','','cmii-uav-alarm','/api/uav/alarm/querySecAlarmConfByType','GET',_binary '\0',_binary '\0','2024-09-09 09:24:58',1,'2024-10-22 12:07:17'),(4712,'API_da13587c03b1247baa362d8b46aa3b9f','迅蚁无人机飞行数据接收,1s 一次','','cmii-uav-integration','/antwork/uav/flight/data/receive','POST',_binary '\0',_binary '\0','2024-09-10 02:08:50',1,'2024-10-22 06:16:05'),(4713,'API_61f5c6be2235cb2c305e51830b511984','开启方向诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openDirectionInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:33',1,'2024-11-13 12:23:31'),(4714,'API_eb1c430ad37726c3907360c15c11233d','关闭诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-11-13 12:23:29'),(4715,'API_12300f505903b50ff92cd3e9f8980139','开启角度诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openAngleInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-11-13 12:23:29'),(4716,'API_958e4192ccff58fc175ae0f66658739d','关闭无线电探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/aoa/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-11-13 12:23:34'),(4717,'API_8eaff52b5cbedbbeaabd1a1e8f5f91f0','开启干扰','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/jam/open','POST',_binary '\0',_binary '\0','2024-09-12 02:33:34',1,'2024-11-13 12:23:27'),(4718,'API_6836672234d2faf86ca6bda3a53c6572','开启位置诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openLocationInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:35',1,'2024-11-13 12:23:27'),(4719,'API_20e8081fb2fb87f9dfad7ddeb4c1a81f','关闭TDOA探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/tdoa/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:36',1,'2024-11-13 12:23:33'),(4720,'API_0c41725fe87ee2b410b252a272e59de2','开启TDOA探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/tdoa/open','POST',_binary '\0',_binary '\0','2024-09-12 02:33:36',1,'2024-11-13 12:23:29'),(4721,'API_a8370e3dc6f74e5e3199e863cd539806','关闭干扰','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/jam/close','POST',_binary '\0',_binary '\0','2024-09-12 02:33:37',1,'2024-11-13 12:23:34'),(4722,'API_7ff630be72a0af3b0f87db6c5871dc71','开启导航屏蔽','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openGNSSInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:38',1,'2024-11-13 12:23:27'),(4723,'API_e97d4e9715f2df434361a1bf42463114','查询指定类型的设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/device/listByTypes','POST',_binary '\0',_binary '\0','2024-09-12 02:33:38',1,'2024-11-13 12:23:34'),(4724,'API_57532ac848a7bb6a27cc7572feb3a5fe','开启无线电探测','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/aoa/open','POST',_binary '\0',_binary '\0','2024-09-12 02:33:39',1,'2024-11-13 12:23:34'),(4725,'API_79e656b2ef4efc417c0017ac74bd351f','开启模式诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openModeInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:39',1,'2024-11-13 12:23:32'),(4726,'API_108c86fb146467d0bf00fd5644cf2778','开启轨迹诱骗','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/induce/openTrackInduce','POST',_binary '\0',_binary '\0','2024-09-12 02:33:39',1,'2024-11-13 12:23:36'),(4727,'API_def82b89add8732951e698588c382eb2','通过excel模拟探测数据','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/mock/mockRadarDatasFromExcel','POST',_binary '\0',_binary '\0','2024-09-13 07:32:59',1,'2024-11-13 12:23:29'),(4728,'API_014fb4cafa5cd839ff461e54d899ea11','查询emqx连接参数','','cmii-uav-integration','/dji_cloud/pilot/query_mqtt_config','GET',_binary '\0',_binary '\0','2024-09-23 05:52:11',1,'2024-10-22 06:16:04'),(4729,'API_f7747a26085eb3afb8802fba36691b5d','查询无人机和绑定的机库,设备号全等,不是模糊','以无人机为准,如果符合条件的多个需要调用方筛选','cmii-uav-device','/api/device/mqtt/query_uav_dock','GET',_binary '\0',_binary '\0','2024-09-24 02:50:40',1,'2024-11-07 09:01:49'),(4730,'API_c971d6e99e558df153baecadea62a7bb','删除某一个设备','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/universalDetectionAndCounter/device/delete','POST',_binary '\0',_binary '\0','2024-09-24 08:22:57',1,'2024-11-13 12:23:36'),(4731,'API_34a053ad88b46d23d2ee3e1ffebae8e0','获取某个用户ws的相关信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/mock/getSenseDataWSInfo','POST',_binary '\0',_binary '\0','2024-09-26 03:32:20',1,'2024-11-13 12:23:34'),(4732,'API_f7ab9ea940fc95e1760f92ff2c39d96a','获取某个雷达id的相关ws信息','','cmii-uav-industrial-portfolio','/api/uav/industrial/portfolio/IntegratedSensingAndCommunication/mock/getSenseDataWSInfoByRadarId','POST',_binary '\0',_binary '\0','2024-09-26 03:32:24',1,'2024-11-13 12:23:32'),(4733,'API_5601ed1929f0119f639b047c97bd1753','h5新建','','cmii-uav-emergency','/event/h5/save','POST',_binary '\0',_binary '\0','2024-09-29 02:02:52',1,'2024-10-20 12:54:31'),(4734,'API_570acf71ae3cad3038570f9e7d26b520','H5端业务上传,需业务后端确认','','cmii-uav-material-warehouse','/api/v1/warehouse/project/h5/putObject','POST',_binary '\0',_binary '\0','2024-09-30 04:25:51',1,'2024-11-11 11:46:08'),(4735,'API_3f8d9de49ffffd50bc821e8fbafe1fa7','通过文件id删除照片','','cmii-uav-mission','/picture/del_pics_by_file_id','POST',_binary '\0',_binary '\0','2024-09-30 06:25:02',1,'2024-11-12 01:20:39'),(4736,'API_0f63406d6838e3afef97418c3ecd0895','查询航线信息统计','','cmii-uav-mission','/api/uav/mission/szga/line/stat','GET',_binary '\0',_binary '\0','2024-10-10 06:26:56',1,'2024-10-10 06:29:22'),(4737,'API_57cf7f66bcdfb432f15902c628c24a3d','通过无人机id 查询 照片信息','','cmii-uav-mission','/picture/query_uav_pics','POST',_binary '\0',_binary '\0','2024-10-10 06:27:01',1,'2024-10-10 06:29:22'),(4738,'API_77c2c4d9467be1f4f6786ca42ee474eb','更新任务类型','更新作业的任务类型','cmii-uav-mission','/api/uav/mission/mission_info/update_task_type','POST',_binary '\0',_binary '\0','2024-10-10 06:27:01',1,'2024-10-10 06:29:18'),(4739,'API_e98e1acb7cca3f6218f19b0cf091a6cb','查询任务信息统计','','cmii-uav-mission','/api/uav/mission/szga/mission/stat','GET',_binary '\0',_binary '\0','2024-10-10 06:27:01',1,'2024-10-10 06:29:19'),(4740,'API_c83f9ca3c66a53a980c79d6f1b6169cc','查询设备在线离线统计','','cmii-uav-mission','/api/uav/mission/szga/device/stat','GET',_binary '\0',_binary '\0','2024-10-10 06:27:02',1,'2024-10-10 06:29:17'),(4741,'API_6ef29cd831fa845c82c2abbdd1eb22da','通过航线ID创建快速作业','返回作业id','cmii-uav-mission','/api/uav/mission/mission_info/create_fast_mission_start_with_line','POST',_binary '\0',_binary '\0','2024-10-10 06:27:02',1,'2024-11-12 01:20:36'),(4742,'API_2389db5db7fdcf27e22719438f40d42c','下载检测文件是否存在','下载检测文件是否存在','cmii-uav-material-warehouse','/api/v1/warehouse/project/check','GET',_binary '\0',_binary '\0','2024-10-10 08:57:30',1,'2024-11-11 11:46:07'),(4743,'API_7c28d6eadadf46a8acdf7d7cb40e717e','生成告警事件ID','','cmii-uav-alarm','/api/uav/alarm/event/getEventId','GET',_binary '\0',_binary '\0','2024-10-11 01:31:41',1,'2024-10-22 12:07:19'),(4744,'API_702c8ddee6da0a9dcd8e36be11f64747','查询自己公司及子公司告警指标统计信息','附带告警无人机统计Map<\"uasId\", count>','cmii-uav-alarm','/api/uav/alarm/event/queryAlarmIndexCountAddUav','GET',_binary '\0',_binary '\0','2024-10-11 01:31:44',1,'2024-10-22 12:07:19'),(4745,'API_cb4b0cb23f92f145e54d962085186016','aggregation','','cmii-uav-kpi-monitor','/uav/data/aggregation','POST',_binary '\0',_binary '\0','2024-10-11 01:37:35',1,'2024-11-06 12:16:59'),(4746,'API_25269ec39b0142c36c8b3cad9253b5df','uiConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/ui','GET',_binary '\0',_binary '\0','2024-10-11 01:37:35',1,'2024-11-06 12:16:59'),(4747,'API_0322e5121b244a203dcea6cd6ffd6294','getDocumentation','','cmii-uav-kpi-monitor','/v3/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:16:58'),(4748,'API_c9970b8a7739b6447de97aba48dae12f','securityConfiguration','','cmii-uav-kpi-monitor','/swagger-resources/configuration/security','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:17:00'),(4749,'API_d9863c5d9b91c22fdc6bba2bba3f42cb','createRSA','','cmii-uav-kpi-monitor','/cmii/createRSA','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:16:58'),(4750,'API_1de7a19a944d9c35111646d62956fe9b','swaggerResources','','cmii-uav-kpi-monitor','/swagger-resources','GET',_binary '\0',_binary '\0','2024-10-11 01:37:36',1,'2024-11-06 12:16:58'),(4751,'API_2fd6f4fc2e7777e66783708968c99038','getDocumentation','','cmii-uav-kpi-monitor','/v2/api-docs','GET',_binary '\0',_binary '\0','2024-10-11 01:37:37',1,'2024-11-06 12:16:59'),(4752,'API_22a6a60092fe6af14cb3692fc7c5538c','加密邮箱服务器密码','加密邮箱服务器密码','cmii-uav-notice','/mail/provider/encryptEmailServerPwd','GET',_binary '\0',_binary '\0','2024-10-11 08:15:37',1,'2024-11-13 08:59:09'),(4753,'API_5413171c324da2fadfe4d6e3d5c43bed','通过航线id 和无人机型号生成 kmz 素材仓库id, 每次调用新生成文件','','cmii-uav-waypoint','/api/uav/waypoint/for_sur/get_line_kmz_object_id_ftp','POST',_binary '\0',_binary '\0','2024-11-06 11:28:11',1,'2024-11-12 03:52:42'),(4754,'API_622756aa512256ff01c6447090266ca4','手动触发清理','手动触发清理','cmii-uav-material-warehouse','/api/v1/warehouse/recycle/clear','GET',_binary '\0',_binary '\0','2024-11-11 09:53:12',1,'2024-11-11 11:46:08'); /*!40000 ALTER TABLE `sys_resource_api` ENABLE KEYS */; UNLOCK TABLES; @@ -52,7 +52,7 @@ UNLOCK TABLES; LOCK TABLES `sys_resource_attr` WRITE; /*!40000 ALTER TABLE `sys_resource_attr` DISABLE KEYS */; -INSERT INTO `sys_resource_attr` VALUES (7,NULL,NULL,'MENU_ACCOUNT','zh_CN','用户服务',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(8,NULL,NULL,'MENU_ACCOUNT','zh_TW','用戶服務',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(9,NULL,NULL,'MENU_ACCOUNT','en_US','User service',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(10,NULL,24,'MENU_ACCOUNT_CONSUMER','zh_CN','用户管理',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(11,NULL,24,'MENU_ACCOUNT_CONSUMER','zh_TW','用戶管理',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(12,NULL,24,'MENU_ACCOUNT_CONSUMER','en_US','User management',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(13,NULL,25,'ACTION_ACCOUNT_CONSUMER_SEARCH','zh_CN','查询',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(14,NULL,25,'ACTION_ACCOUNT_CONSUMER_SEARCH','zh_TW','查詢',_binary '\0','2020-10-09 09:38:01','1','2021-01-29 09:48:32','1'),(15,NULL,25,'ACTION_ACCOUNT_CONSUMER_SEARCH','en_US','Search',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(16,NULL,25,'MENU_ACCOUNT_CONSUMER_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(17,NULL,25,'MENU_ACCOUNT_CONSUMER_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(18,NULL,25,'MENU_ACCOUNT_CONSUMER_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(19,NULL,54,'ACTION_ACCOUNT_CONSUMER_UPDATE','zh_CN','更新',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(20,NULL,54,'ACTION_ACCOUNT_CONSUMER_UPDATE','zh_TW','更新',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(21,NULL,54,'ACTION_ACCOUNT_CONSUMER_UPDATE','en_US','Update',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(22,NULL,54,'ACTION_ACCOUNT_CONSUMER_RESET','zh_CN','重置密码',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(23,NULL,54,'ACTION_ACCOUNT_CONSUMER_RESET','zh_TW','重置密碼',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:32','1'),(24,NULL,54,'ACTION_ACCOUNT_CONSUMER_RESET','en_US','Reset password',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:32','1'),(25,NULL,25,'MENU_ACCOUNT_CONSUMER_CHECK','zh_CN','详情',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(26,NULL,25,'MENU_ACCOUNT_CONSUMER_CHECK','zh_TW','詳情',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(27,NULL,25,'MENU_ACCOUNT_CONSUMER_CHECK','en_US','Detail',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(28,NULL,55,'ACTION_ACCOUNT_CONSUMER_CHECK','zh_CN','查看',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(29,NULL,55,'ACTION_ACCOUNT_CONSUMER_CHECK','zh_TW','查看',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(30,NULL,55,'ACTION_ACCOUNT_CONSUMER_CHECK','en_US','View',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:33','1'),(31,NULL,25,'ACTION_ACCOUNT_CONSUMER_UPLOAD','zh_CN','批量上传',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(32,NULL,25,'ACTION_ACCOUNT_CONSUMER_UPLOAD','zh_TW','批量上傳',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:33','1'),(33,NULL,25,'ACTION_ACCOUNT_CONSUMER_UPLOAD','en_US','Batch upload',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:33','1'),(34,NULL,25,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','zh_CN','模版下载',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(35,NULL,25,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','zh_TW','模板下載',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(36,NULL,25,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','en_US','Template download',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(37,NULL,25,'ACTION_ACCOUNT_CONSUMER_INVITE','zh_CN','邀请注册',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(38,NULL,25,'ACTION_ACCOUNT_CONSUMER_INVITE','zh_TW','邀請註冊',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(39,NULL,25,'ACTION_ACCOUNT_CONSUMER_INVITE','en_US','Invite to register',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(40,NULL,25,'MENU_ACCOUNT_CONSUMER_ADD','zh_CN','新建用户',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(41,NULL,25,'MENU_ACCOUNT_CONSUMER_ADD','zh_TW','新建用戶',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(42,NULL,25,'MENU_ACCOUNT_CONSUMER_ADD','en_US','New user',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(43,NULL,189,'ACTION_ACCOUNT_CONSUMER_ADD','zh_CN','新增',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(44,NULL,189,'ACTION_ACCOUNT_CONSUMER_ADD','zh_TW','新增',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(45,NULL,189,'ACTION_ACCOUNT_CONSUMER_ADD','en_US','New',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(58,NULL,24,'MENU_ACCOUNT_ROLE','zh_CN','角色管理',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(59,NULL,24,'MENU_ACCOUNT_ROLE','zh_TW','角色管理',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(60,NULL,24,'MENU_ACCOUNT_ROLE','en_US','Role management',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(61,NULL,27,'ACTION_ACCOUNT_ROLE_SEARCH','zh_CN','查询',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(62,NULL,27,'ACTION_ACCOUNT_ROLE_SEARCH','zh_TW','查詢',_binary '\0','2020-10-09 09:38:04','1','2021-01-29 09:48:33','1'),(63,NULL,27,'ACTION_ACCOUNT_ROLE_SEARCH','en_US','Search',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(64,NULL,27,'MENU_ACCOUNT_ROLE_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(65,NULL,27,'MENU_ACCOUNT_ROLE_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(66,NULL,27,'MENU_ACCOUNT_ROLE_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(67,NULL,51,'ACTION_ACCOUNT_ROLE_UPDATE','zh_CN','更新',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(68,NULL,51,'ACTION_ACCOUNT_ROLE_UPDATE','zh_TW','更新',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(69,NULL,51,'ACTION_ACCOUNT_ROLE_UPDATE','en_US','Update',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(70,NULL,27,'MENU_ACCOUNT_ROLE_CHECK','zh_CN','详情',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(71,NULL,27,'MENU_ACCOUNT_ROLE_CHECK','zh_TW','詳情',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(72,NULL,27,'MENU_ACCOUNT_ROLE_CHECK','en_US','Detail',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(73,NULL,78,'ACTION_ACCOUNT_ROLE_CHECK','zh_CN','查看',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(74,NULL,78,'ACTION_ACCOUNT_ROLE_CHECK','zh_TW','查看',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(75,NULL,78,'ACTION_ACCOUNT_ROLE_CHECK','en_US','View',_binary '\0','2020-10-09 09:38:04','1','2021-01-29 09:48:33','1'),(76,NULL,27,'MENU_ACCOUNT_ROLE_ADD','zh_CN','新建角色',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(77,NULL,27,'MENU_ACCOUNT_ROLE_ADD','zh_TW','新建角色',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(78,NULL,27,'MENU_ACCOUNT_ROLE_ADD','en_US','New role',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(79,NULL,184,'ACTION_ACCOUNT_ROLE_ADD','zh_CN','新增',_binary '\0','2020-10-09 09:38:04','1','2022-07-25 08:30:45','1'),(80,NULL,184,'ACTION_ACCOUNT_ROLE_ADD','zh_TW','新增',_binary '\0','2020-10-09 09:38:04','1','2022-07-25 08:30:45','1'),(81,NULL,184,'ACTION_ACCOUNT_ROLE_ADD','en_US','New',_binary '\0','2020-10-09 09:38:04','1','2022-07-25 08:30:45','1'),(115,NULL,24,'MENU_ACCOUNT_FLYER_INDEX','zh_CN','飞手管理',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(116,NULL,24,'MENU_ACCOUNT_FLYER_INDEX','zh_TW','飛手管理',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(117,NULL,24,'MENU_ACCOUNT_FLYER_INDEX','en_US','Pilot management',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(136,NULL,NULL,'MENU_AIRSPACE','zh_CN','空域服务',_binary '\0','2020-10-09 09:38:06','1','2020-11-11 08:49:33','1'),(137,NULL,NULL,'MENU_AIRSPACE','zh_TW','空域服務',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(138,NULL,NULL,'MENU_AIRSPACE','en_US','Airspace area service',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(139,NULL,62,'MENU_AIRSPACE_APPLY','zh_CN','空域申请',_binary '\0','2020-10-09 09:38:06','1','2020-11-11 08:49:33','1'),(140,NULL,62,'MENU_AIRSPACE_APPLY','zh_TW','空域申請',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(141,NULL,62,'MENU_AIRSPACE_APPLY','en_US','Application of airspace area ',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(142,NULL,63,'ACTION_AIRSPACE_APPLY_RESET','zh_CN','重置',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(143,NULL,63,'ACTION_AIRSPACE_APPLY_RESET','zh_TW','重置',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(144,NULL,63,'ACTION_AIRSPACE_APPLY_RESET','en_US','Reset',_binary '\0','2020-10-09 09:38:07','1','2021-01-29 09:48:33','1'),(145,NULL,63,'ACTION_AIRSPACE_APPLY_DEL','zh_CN','空域删除',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(146,NULL,63,'ACTION_AIRSPACE_APPLY_DEL','zh_TW','空域刪除',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(147,NULL,63,'ACTION_AIRSPACE_APPLY_DEL','en_US','Airspace area deletion',_binary '\0','2020-10-09 09:38:07','1','2021-01-29 09:48:33','1'),(148,NULL,63,'ACTION_AIRSPACE_APPLY_DOWNLOAD','zh_CN','下载模板',_binary '\0','2020-10-09 09:38:07','1','2022-01-18 11:23:28','1'),(149,NULL,63,'ACTION_AIRSPACE_APPLY_DOWNLOAD','zh_TW','下載模板',_binary '\0','2020-10-09 09:38:07','1','2022-01-18 11:23:28','1'),(150,NULL,63,'ACTION_AIRSPACE_APPLY_DOWNLOAD','en_US','Download Doc',_binary '\0','2020-10-09 09:38:07','1','2022-01-18 11:23:28','1'),(151,NULL,63,'MENU_AIRSPACE_APPLY_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(152,NULL,63,'MENU_AIRSPACE_APPLY_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(153,NULL,63,'MENU_AIRSPACE_APPLY_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:07','1','2020-12-28 08:04:01','1'),(154,NULL,304,'ACTION_AIRSPACE_APPLY_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(155,NULL,304,'ACTION_AIRSPACE_APPLY_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(156,NULL,304,'ACTION_AIRSPACE_APPLY_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(157,NULL,63,'ACTION_AIRSAPCE_AREANAME','zh_CN','查询空域名称',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(158,NULL,63,'ACTION_AIRSAPCE_AREANAME','zh_TW','查詢空域名稱',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(159,NULL,63,'ACTION_AIRSAPCE_AREANAME','en_US','Query airspace area',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(160,NULL,63,'MENU_AIRSPACE_ADD','zh_CN','新建空域申请',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(161,NULL,63,'MENU_AIRSPACE_ADD','zh_TW','新建空域申請',_binary '\0','2020-10-09 09:38:08','1','2020-12-28 08:04:01','1'),(162,NULL,63,'MENU_AIRSPACE_ADD','en_US','New application of airspace area',_binary '\0','2020-10-09 09:38:08','1','2020-12-28 08:04:01','1'),(163,NULL,174,'ACTION_AIRSPACE_APPLY_ADD','zh_CN','新增',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(164,NULL,174,'ACTION_AIRSPACE_APPLY_ADD','zh_TW','新增',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(165,NULL,174,'ACTION_AIRSPACE_APPLY_ADD','en_US','New',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(166,NULL,174,'ACTION_AIRSPACE_OVERLAP_QUERY','zh_CN','查询交叉空域',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(167,NULL,174,'ACTION_AIRSPACE_OVERLAP_QUERY','zh_TW','查詢交叉空域',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(168,NULL,174,'ACTION_AIRSPACE_OVERLAP_QUERY','en_US','Query cross airspace area',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(169,NULL,63,'ACTION_AIRSPACE_APPLY_SEARCH','zh_CN','空域查询',_binary '\0','2020-10-09 09:38:08','1','2020-12-28 08:04:01','1'),(170,NULL,63,'ACTION_AIRSPACE_APPLY_SEARCH','zh_TW','空域查詢',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(171,NULL,63,'ACTION_AIRSPACE_APPLY_SEARCH','en_US','Airspace area query',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(172,NULL,63,'MENU_AIRSPACE_DETAIL','zh_CN','详情',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(173,NULL,63,'MENU_AIRSPACE_DETAIL','zh_TW','詳情',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(174,NULL,63,'MENU_AIRSPACE_DETAIL','en_US','Detail',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(175,NULL,236,'ACTION_AIRSPACE_DETAIL','zh_CN','查看详情',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(176,NULL,236,'ACTION_AIRSPACE_DETAIL','zh_TW','查看詳情',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(177,NULL,236,'ACTION_AIRSPACE_DETAIL','en_US','View detail',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(193,NULL,62,'MENU_AIRSPACE_QUERY','zh_CN','空域查询',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(194,NULL,62,'MENU_AIRSPACE_QUERY','zh_TW','空域查詢',_binary '\0','2020-10-09 09:38:09','1','2020-12-28 08:04:01','1'),(195,NULL,62,'MENU_AIRSPACE_QUERY','en_US','Airspace area query',_binary '\0','2020-10-09 09:38:09','1','2020-12-28 08:04:01','1'),(196,NULL,65,'ACTION_AIRSPACE_QUERY_5KM','zh_CN','5km内空域',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(197,NULL,65,'ACTION_AIRSPACE_QUERY_5KM','zh_TW','5km內空域',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(198,NULL,65,'ACTION_AIRSPACE_QUERY_5KM','en_US','Airspace area information in the 5km range',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(199,NULL,65,'ACTION_AIRSPACE_QUERY_QUERY','zh_CN','查询',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:49:34','1'),(200,NULL,65,'ACTION_AIRSPACE_QUERY_QUERY','zh_TW','查詢',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(201,NULL,65,'ACTION_AIRSPACE_QUERY_QUERY','en_US','Query',_binary '\0','2020-10-09 09:38:10','1','2020-12-28 08:04:01','1'),(202,NULL,65,'ACTION_AIRSPACE_NOW_QUERY','zh_CN','查询当前空域',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:49:34','1'),(203,NULL,65,'ACTION_AIRSPACE_NOW_QUERY','zh_TW','查詢當前空域',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(204,NULL,65,'ACTION_AIRSPACE_NOW_QUERY','en_US','Query current airspace area',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(205,NULL,65,'ACTION_AIRSPACE_AIRPORT_QUERY','zh_CN','查询机场',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:49:34','1'),(206,NULL,65,'ACTION_AIRSPACE_AIRPORT_QUERY','zh_TW','查詢機場',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(207,NULL,65,'ACTION_AIRSPACE_AIRPORT_QUERY','en_US','Query airport',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(208,NULL,62,'ACTION_AIRSPACE_SAME_AREANAME','zh_CN','空域名重复否',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:33','1'),(209,NULL,62,'ACTION_AIRSPACE_SAME_AREANAME','zh_TW','空域名重複否',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:33','1'),(210,NULL,62,'ACTION_AIRSPACE_SAME_AREANAME','en_US','Whether the airspace area name is conflict',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:33','1'),(211,NULL,NULL,'MENU_DEVICE','zh_CN','设备管理',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:47','1'),(212,NULL,NULL,'MENU_DEVICE','zh_TW','設備管理',_binary '\0','2020-10-09 09:38:10','1','2020-12-28 08:04:01','1'),(213,NULL,NULL,'MENU_DEVICE','en_US','Device management',_binary '\0','2020-10-09 09:38:10','1','2020-12-28 08:04:01','1'),(214,NULL,80,'MENU_DEVICE_HANGAR','zh_CN','机库管理',_binary '\0','2020-10-09 09:38:10','1','2023-09-27 10:02:37','1'),(215,NULL,80,'MENU_DEVICE_HANGAR','zh_TW','機庫管理',_binary '\0','2020-10-09 09:38:10','1','2023-09-27 10:02:37','1'),(216,NULL,80,'MENU_DEVICE_HANGAR','en_US','Box management',_binary '\0','2020-10-09 09:38:10','1','2023-09-27 10:02:37','1'),(217,NULL,310,'ACTION_DEVICE_HANGAR_FETCH_LIST','zh_CN','查询按钮',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:48','1'),(218,NULL,310,'ACTION_DEVICE_HANGAR_FETCH_LIST','zh_TW','查詢按鈕',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(219,NULL,310,'ACTION_DEVICE_HANGAR_FETCH_LIST','en_US','Query button',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(220,NULL,310,'ACTION_DEVICE_HANGAR_RESET_LIST','zh_CN','重置按钮',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:48','1'),(221,NULL,310,'ACTION_DEVICE_HANGAR_RESET_LIST','zh_TW','重置按钮',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:48','1'),(222,NULL,310,'ACTION_DEVICE_HANGAR_RESET_LIST','en_US','Reset button',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(223,NULL,310,'MENU_DEVICE_HANGAR_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(224,NULL,310,'MENU_DEVICE_HANGAR_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(225,NULL,310,'MENU_DEVICE_HANGAR_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(226,NULL,313,'ACTION_DEVICE_HANGAR_DETAIL','zh_CN','详情按钮',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(227,NULL,313,'ACTION_DEVICE_HANGAR_DETAIL','zh_TW','詳情按鈕',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(228,NULL,313,'ACTION_DEVICE_HANGAR_DETAIL','en_US','Detail button',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(229,NULL,310,'MENU_DEVICE_HANGAR_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(230,NULL,310,'MENU_DEVICE_HANGAR_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(231,NULL,310,'MENU_DEVICE_HANGAR_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(232,NULL,315,'ACTION_DEVICE_HANGAR_EDIT','zh_CN','编辑按钮',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(233,NULL,315,'ACTION_DEVICE_HANGAR_EDIT','zh_TW','編輯按鈕',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(234,NULL,315,'ACTION_DEVICE_HANGAR_EDIT','en_US','Edit button',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(235,NULL,310,'ACTION_DEVICE_HANGAR_DELETE','zh_CN','删除',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(236,NULL,310,'ACTION_DEVICE_HANGAR_DELETE','zh_TW','刪除',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(237,NULL,310,'ACTION_DEVICE_HANGAR_DELETE','en_US','Delete',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(238,NULL,310,'MENU_DEVICE_HANGAR_UAV','zh_CN','无人机',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(239,NULL,310,'MENU_DEVICE_HANGAR_UAV','zh_TW','無人機',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(240,NULL,310,'MENU_DEVICE_HANGAR_UAV','en_US','UAV',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(241,NULL,318,'ACTION_DEVICE_HANGAR_UAV_TIE','zh_CN','绑定无人机',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(242,NULL,318,'ACTION_DEVICE_HANGAR_UAV_TIE','zh_TW','綁定無人機',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(243,NULL,318,'ACTION_DEVICE_HANGAR_UAV_TIE','en_US','Bind UAV',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(244,NULL,318,'ACTION_DEVICE_HANGAR_UAV_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(245,NULL,318,'ACTION_DEVICE_HANGAR_UAV_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(246,NULL,318,'ACTION_DEVICE_HANGAR_UAV_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(247,NULL,318,'ACTION_DEVICE_HANGAR_UAV_UNTIE','zh_CN','解绑',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(248,NULL,318,'ACTION_DEVICE_HANGAR_UAV_UNTIE','zh_TW','解綁',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(249,NULL,318,'ACTION_DEVICE_HANGAR_UAV_UNTIE','en_US','Unbind',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(250,NULL,318,'ACTION_DEVICE_HANGAR_UAV_LIST','zh_CN','列表',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(251,NULL,318,'ACTION_DEVICE_HANGAR_UAV_LIST','zh_TW','列表',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(252,NULL,318,'ACTION_DEVICE_HANGAR_UAV_LIST','en_US','List',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(253,NULL,310,'ACTION_DEVICE_HANGAR_DELETE_BULK','zh_CN','批量删除',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(254,NULL,310,'ACTION_DEVICE_HANGAR_DELETE_BULK','zh_TW','批量刪除',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(255,NULL,310,'ACTION_DEVICE_HANGAR_DELETE_BULK','en_US','Batch deletion',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(256,NULL,310,'MENU_DEVICE_HANGAR_ADD','zh_CN','新建机库',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(257,NULL,310,'MENU_DEVICE_HANGAR_ADD','zh_TW','新建機庫',_binary '\0','2020-10-09 09:38:12','1','2020-12-28 08:04:02','1'),(258,NULL,310,'MENU_DEVICE_HANGAR_ADD','en_US','New box',_binary '\0','2020-10-09 09:38:12','1','2020-12-28 08:04:02','1'),(259,NULL,324,'ACTION_DEVICE_HANGAR_ADD','zh_CN','新建机库按钮',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(260,NULL,324,'ACTION_DEVICE_HANGAR_ADD','zh_TW','新建機庫按鈕',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(261,NULL,324,'ACTION_DEVICE_HANGAR_ADD','en_US','New box button',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(262,NULL,310,'MENU_DEVICE_HANGAR_UAV_DETAIL','zh_CN','无人机详情',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(263,NULL,310,'MENU_DEVICE_HANGAR_UAV_DETAIL','zh_TW','無人機詳情',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(264,NULL,310,'MENU_DEVICE_HANGAR_UAV_DETAIL','en_US','UAV detail',_binary '\0','2020-10-09 09:38:12','1','2020-12-28 08:04:02','1'),(265,NULL,80,'MENU_DEVICE_PAYLOAD','zh_CN','载荷管理',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(266,NULL,80,'MENU_DEVICE_PAYLOAD','zh_TW','載荷管理',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(267,NULL,80,'MENU_DEVICE_PAYLOAD','en_US','Payload management',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(268,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','zh_CN','批量删除',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(269,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','zh_TW','批量刪除',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(270,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','en_US','Batch deletion',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(271,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','zh_CN','单个删除',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(272,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','zh_TW','單個刪除',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(273,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','en_US','Single deletion',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(274,NULL,81,'MENU_DEVICE_PAYLOAD_ADD','zh_CN','新建载荷',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(275,NULL,81,'MENU_DEVICE_PAYLOAD_ADD','zh_TW','新建載荷',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(276,NULL,81,'MENU_DEVICE_PAYLOAD_ADD','en_US','New payload',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(277,NULL,95,'ACTION_DEVICE_PAYLOAD_ADD','zh_CN','新增载荷按钮',_binary '\0','2020-10-09 09:38:13','1','2023-09-27 10:02:35','1'),(278,NULL,95,'ACTION_DEVICE_PAYLOAD_ADD','zh_TW','新增載荷按鈕',_binary '\0','2020-10-09 09:38:13','1','2023-09-27 10:02:35','1'),(279,NULL,95,'ACTION_DEVICE_PAYLOAD_ADD','en_US','New payload button',_binary '\0','2020-10-09 09:38:13','1','2023-09-27 10:02:35','1'),(280,NULL,81,'MENU_DEVICE_PAYLOAD_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(281,NULL,81,'MENU_DEVICE_PAYLOAD_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(282,NULL,81,'MENU_DEVICE_PAYLOAD_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(283,NULL,96,'ACTION_DEVICE_PAYLOAD_VIEW','zh_CN','查看详情按钮',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(284,NULL,96,'ACTION_DEVICE_PAYLOAD_VIEW','zh_TW','查看詳情按鈕',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(285,NULL,96,'ACTION_DEVICE_PAYLOAD_VIEW','en_US','View detail button',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(286,NULL,81,'MENU_DEVICE_PAYLOAD_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(287,NULL,81,'MENU_DEVICE_PAYLOAD_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(288,NULL,81,'MENU_DEVICE_PAYLOAD_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(289,NULL,97,'ACTION_DEVICE_PAYLOAD_EDIT','zh_CN','编辑载荷按钮',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(290,NULL,97,'ACTION_DEVICE_PAYLOAD_EDIT','zh_TW','編輯載荷按鈕',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(291,NULL,97,'ACTION_DEVICE_PAYLOAD_EDIT','en_US','Edit payload button',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(292,NULL,81,'MENU_DEVICE_PAYLOAD_LIST','zh_CN','载荷管理列表',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(293,NULL,81,'MENU_DEVICE_PAYLOAD_LIST','zh_TW','載荷管理列表',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(294,NULL,81,'MENU_DEVICE_PAYLOAD_LIST','en_US','Payload list',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(295,NULL,81,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','zh_CN','查询按钮',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(296,NULL,81,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','zh_TW','查詢按鈕',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(297,NULL,81,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','en_US','Search button',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(298,NULL,81,'ACTION_DEVICE_PAYLOAD_RESET_LIST','zh_CN','重置按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(299,NULL,81,'ACTION_DEVICE_PAYLOAD_RESET_LIST','zh_TW','重置按鈕',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(300,NULL,81,'ACTION_DEVICE_PAYLOAD_RESET_LIST','en_US','Reset button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(301,NULL,81,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','zh_CN','跳转无人机',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(302,NULL,81,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','zh_TW','跳轉無人機按',_binary '\0','2020-10-09 09:38:14','1','2021-03-19 06:27:43','1'),(303,NULL,81,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','en_US','Jump to UAV detail page',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(304,NULL,80,'MENU_DEVICE_UAV','zh_CN','无人机管理',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(305,NULL,80,'MENU_DEVICE_UAV','zh_TW','無人機管理',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(306,NULL,80,'MENU_DEVICE_UAV','en_US','UAV management',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(307,NULL,90,'MENU_DEVICE_LIST','zh_CN','查询列表',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(308,NULL,90,'MENU_DEVICE_LIST','zh_TW','查詢列表',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(309,NULL,90,'MENU_DEVICE_LIST','en_US','Uav list',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(310,NULL,258,'ACTION_DEVICE_CODE_TYPE_LIST','zh_CN','编码型号列表',_binary '\0','2020-10-09 09:38:14','1','2023-02-09 06:07:14','1'),(311,NULL,258,'ACTION_DEVICE_CODE_TYPE_LIST','zh_TW','編碼型號列表',_binary '\0','2020-10-09 09:38:14','1','2023-02-09 06:07:14','1'),(312,NULL,258,'ACTION_DEVICE_CODE_TYPE_LIST','en_US','Code model list',_binary '\0','2020-10-09 09:38:14','1','2023-02-09 06:07:14','1'),(313,NULL,90,'ACTION_DEVICE_UAV_JUMP_HANGAR','zh_CN','跳转机库详情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(314,NULL,90,'ACTION_DEVICE_UAV_JUMP_HANGAR','zh_TW','跳轉機庫詳情',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(315,NULL,90,'ACTION_DEVICE_UAV_JUMP_HANGAR','en_US','Jump to box detail page',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(316,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','zh_CN','载荷详情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(317,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','zh_TW','載荷詳情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(318,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','en_US','Payload detail',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(319,NULL,106,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','zh_CN','载荷详情按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(320,NULL,106,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','zh_TW','載荷詳情按鈕',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(321,NULL,106,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','en_US','Payload detail button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:36','1'),(322,NULL,90,'MENU_DEVICE_UVA_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(323,NULL,90,'MENU_DEVICE_UVA_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(324,NULL,90,'MENU_DEVICE_UVA_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(325,NULL,102,'ACTION_DEVEICE_UVA_VIEW','zh_CN','查看详情按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(326,NULL,102,'ACTION_DEVEICE_UVA_VIEW','zh_TW','查看詳情按鈕',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(327,NULL,102,'ACTION_DEVEICE_UVA_VIEW','en_US','View detail button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(328,NULL,90,'MENU_DEVICE_UVA_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(329,NULL,90,'MENU_DEVICE_UVA_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(330,NULL,90,'MENU_DEVICE_UVA_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(331,NULL,103,'ACTION_DEVICE_UVA_EDIT','zh_CN','编辑按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(332,NULL,103,'ACTION_DEVICE_UVA_EDIT','zh_TW','編輯按鈕',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(333,NULL,103,'ACTION_DEVICE_UVA_EDIT','en_US','Edit button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(334,NULL,90,'MENU_DEVICE_UVA_ADD','zh_CN','新建无人机',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(335,NULL,90,'MENU_DEVICE_UVA_ADD','zh_TW','新建無人機',_binary '\0','2020-10-09 09:38:15','1','2020-12-28 08:04:02','1'),(336,NULL,90,'MENU_DEVICE_UVA_ADD','en_US','New UAV',_binary '\0','2020-10-09 09:38:15','1','2020-12-28 08:04:02','1'),(337,NULL,104,'ACTION_DEVICE_UVA_ADD','zh_CN','新建按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(338,NULL,104,'ACTION_DEVICE_UVA_ADD','zh_TW','新建按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(339,NULL,104,'ACTION_DEVICE_UVA_ADD','en_US','New button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(340,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_LIST','zh_CN','载荷',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(341,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_LIST','zh_TW','載荷',_binary '\0','2020-10-09 09:38:15','1','2020-12-28 08:04:02','1'),(342,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_LIST','en_US','Payload',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(343,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_LIST','zh_CN','载荷按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(344,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_LIST','zh_TW','載荷按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(345,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_LIST','en_US','Payload button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(346,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_TIE','zh_CN','绑定载荷',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(347,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_TIE','zh_TW','綁定載荷',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(348,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_TIE','en_US','Bind payload',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(349,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','zh_CN','解绑载荷',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(350,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','zh_TW','解綁載荷',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(351,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','en_US','Unbind payload',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(352,NULL,90,'ACTION_DEVICE_UVA_FETCH_LIST','zh_CN','查询列表按钮',_binary '\0','2020-10-09 09:38:15','1','2024-02-21 09:07:50','89730635001757696'),(353,NULL,90,'ACTION_DEVICE_UVA_FETCH_LIST','zh_TW','查詢列表按鈕',_binary '\0','2020-10-09 09:38:15','1','2024-02-21 09:07:50','89730635001757696'),(354,NULL,90,'ACTION_DEVICE_UVA_FETCH_LIST','en_US','Search list button',_binary '\0','2020-10-09 09:38:15','1','2024-02-21 09:07:50','89730635001757696'),(355,NULL,90,'ACTION_DEVICE_UVA_RESET','zh_CN','重置按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(356,NULL,90,'ACTION_DEVICE_UVA_RESET','zh_TW','重製按鈕',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(357,NULL,90,'ACTION_DEVICE_UVA_RESET','en_US','Reset button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(358,NULL,90,'ACTION_DEVICE_UVA_BULK_DELETE','zh_CN','批量删除按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(359,NULL,90,'ACTION_DEVICE_UVA_BULK_DELETE','zh_TW','批量刪除按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(360,NULL,90,'ACTION_DEVICE_UVA_BULK_DELETE','en_US','Batch deletion button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(361,NULL,90,'ACTION_DIVICE_UVA_DELETE_SINGLE','zh_CN','删除按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(362,NULL,90,'ACTION_DIVICE_UVA_DELETE_SINGLE','zh_TW','刪除按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(363,NULL,90,'ACTION_DIVICE_UVA_DELETE_SINGLE','en_US','Delete button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(364,NULL,NULL,'MENU_AIRLINE','zh_CN','航线管理',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(365,NULL,NULL,'MENU_AIRLINE','zh_TW','航線管理',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:02','1'),(366,NULL,NULL,'MENU_AIRLINE','en_US','Flight route management',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:02','1'),(367,NULL,125,'MENU_AIRLINE_CREATE','zh_CN','新建航线',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(368,NULL,125,'MENU_AIRLINE_CREATE','zh_TW','新建航線',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:03','1'),(369,NULL,125,'MENU_AIRLINE_CREATE','en_US','New flight route',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:03','1'),(370,NULL,239,'ACTION_AIRLINE_SAVE','zh_CN','保存航线',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(371,NULL,239,'ACTION_AIRLINE_SAVE','zh_TW','保存航線',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(372,NULL,239,'ACTION_AIRLINE_SAVE','en_US','Save flight route',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(373,NULL,239,'ACTION_AIRLINE_UAV_LIST','zh_CN','无人机列表',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(374,NULL,239,'ACTION_AIRLINE_UAV_LIST','zh_TW','無人機列表',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(375,NULL,239,'ACTION_AIRLINE_UAV_LIST','en_US','UAV list',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(376,NULL,239,'ACTION_AIRLINE_CHECK_AIRLINE_NAME','zh_CN','校验航线名称',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(377,NULL,239,'ACTION_AIRLINE_CHECK_AIRLINE_NAME','zh_TW','校驗航線名稱',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(378,NULL,239,'ACTION_AIRLINE_CHECK_AIRLINE_NAME','en_US','Check route name',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(382,NULL,124,'MENU_AIRLINE_MAP','zh_CN','航线绘制',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(383,NULL,124,'MENU_AIRLINE_MAP','zh_TW','航線繪製',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:36','1'),(384,NULL,124,'MENU_AIRLINE_MAP','en_US','Flight route plot',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:02','1'),(385,NULL,331,'ACTION_AIRLINE_ACTIONLIST','zh_CN','查询动作列表',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(386,NULL,331,'ACTION_AIRLINE_ACTIONLIST','zh_TW','查詢動作列表',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(387,NULL,331,'ACTION_AIRLINE_ACTIONLIST','en_US','Query action list',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(388,NULL,331,'ACTION_AIRLINE_SAVE_POINTS','zh_CN','保存航点',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(389,NULL,331,'ACTION_AIRLINE_SAVE_POINTS','zh_TW','保存航點',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(390,NULL,331,'ACTION_AIRLINE_SAVE_POINTS','en_US','Save waypoint',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(391,NULL,331,'ACTION_AIRLINE_GET_POINTS','zh_CN','查询航点',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:24','1'),(392,NULL,331,'ACTION_AIRLINE_GET_POINTS','zh_TW','查詢航點',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(393,NULL,331,'ACTION_AIRLINE_GET_POINTS','en_US','Query waypoint',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(394,NULL,331,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL','zh_CN','摄像头详情',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(395,NULL,331,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL','zh_TW','攝像頭詳情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(396,NULL,331,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL','en_US','Camera detail',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(397,NULL,331,'ACTION_AIRLINE_UAVMODEL_DETAIL','zh_CN','无人机类型',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(398,NULL,331,'ACTION_AIRLINE_UAVMODEL_DETAIL','zh_TW','無人機類型',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(399,NULL,331,'ACTION_AIRLINE_UAVMODEL_DETAIL','en_US','UAV model',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(400,NULL,331,'ACTION_AIRLINE_BLOCKED','zh_CN','封存航线详情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(401,NULL,331,'ACTION_AIRLINE_BLOCKED','zh_TW','封存航線詳情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(402,NULL,331,'ACTION_AIRLINE_BLOCKED','en_US','Sealed route detail',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(403,NULL,125,'MENU_AIRLINE_DETAIL','zh_CN','详情',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(404,NULL,125,'MENU_AIRLINE_DETAIL','zh_TW','詳情',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(405,NULL,125,'MENU_AIRLINE_DETAIL','en_US','Detail',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(406,NULL,125,'MENU_AIRLINE_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(407,NULL,125,'MENU_AIRLINE_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(408,NULL,125,'MENU_AIRLINE_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(409,NULL,240,'ACTION_AIRLINE_UPDATE','zh_CN','更新航线信息',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(410,NULL,240,'ACTION_AIRLINE_UPDATE','zh_TW','更新航線信息',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(411,NULL,240,'ACTION_AIRLINE_UPDATE','en_US','Update flight route information',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(415,NULL,125,'ACTION_AIRLINE_COPY','zh_CN','复制航线',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(416,NULL,125,'ACTION_AIRLINE_COPY','zh_TW','複製航線',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(417,NULL,125,'ACTION_AIRLINE_COPY','en_US','Copy flight route',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(418,NULL,125,'ACTION_AIRLINE_DEL','zh_CN','删除航线',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(419,NULL,125,'ACTION_AIRLINE_DEL','zh_TW','刪除航線',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(420,NULL,125,'ACTION_AIRLINE_DEL','en_US','Delete flight route',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(421,NULL,238,'ACTION_AIRLINE_DETAIL','zh_CN','航线详情',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(422,NULL,238,'ACTION_AIRLINE_DETAIL','zh_TW','航線詳情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(423,NULL,238,'ACTION_AIRLINE_DETAIL','en_US','Flight route detail',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(424,NULL,125,'ACTION_AIRLINE_FILTER','zh_CN','查询条件筛选',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(425,NULL,125,'ACTION_AIRLINE_FILTER','zh_TW','查詢條件篩選',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(426,NULL,125,'ACTION_AIRLINE_FILTER','en_US','Query criteria filtering',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(427,NULL,125,'ACTION_AIRLINE_BULK_DEL','zh_CN','批量删除航线',_binary '\0','2020-10-09 09:38:18','1','2020-11-11 10:04:24','1'),(428,NULL,125,'ACTION_AIRLINE_BULK_DEL','zh_TW','批量刪除航線',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(429,NULL,125,'ACTION_AIRLINE_BULK_DEL','en_US','Batch delete flight route',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(430,NULL,125,'ACTION_AIRLINE_LIST','zh_CN','查询航线列表',_binary '\0','2020-10-09 09:38:18','1','2020-11-11 10:04:24','1'),(431,NULL,125,'ACTION_AIRLINE_LIST','zh_TW','查詢航線列表',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(432,NULL,125,'ACTION_AIRLINE_LIST','en_US','Query flight route list',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(502,NULL,NULL,'MENU_FLIGHTMONITOR','zh_CN','飞行监视',_binary '\0','2020-10-09 09:38:20','1','2024-06-18 10:42:07','188243415207510016'),(503,NULL,NULL,'MENU_FLIGHTMONITOR','zh_TW','飛行監視',_binary '\0','2020-10-09 09:38:20','1','2024-06-18 10:42:07','188243415207510016'),(504,NULL,NULL,'MENU_FLIGHTMONITOR','en_US','Flight monitor',_binary '\0','2020-10-09 09:38:20','1','2024-06-18 10:42:07','188243415207510016'),(505,NULL,358,'ACTION_MISSION_STATUS_EDIT','zh_CN','修改任务状态',_binary '\0','2020-10-09 09:38:20','1','2020-12-28 08:04:02','1'),(506,NULL,358,'ACTION_MISSION_STATUS_EDIT','zh_TW','修改任務狀態',_binary '\0','2020-10-09 09:38:20','1','2020-12-28 08:04:02','1'),(507,NULL,358,'ACTION_MISSION_STATUS_EDIT','en_US','Modify task status',_binary '\0','2020-10-09 09:38:20','1','2021-01-29 09:48:36','1'),(532,NULL,NULL,'MENU_APPROVAL','zh_CN','审批系统',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(533,NULL,NULL,'MENU_APPROVAL','zh_TW','審批系統',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(534,NULL,NULL,'MENU_APPROVAL','en_US','Approval system',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(535,NULL,366,'MENU_APPROVAL_MANAGER','zh_CN','审批管理',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(536,NULL,366,'MENU_APPROVAL_MANAGER','zh_TW','審批管理',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(537,NULL,366,'MENU_APPROVAL_MANAGER','en_US','Approval management',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(538,NULL,367,'ACTION_APPROVAL_MANAGE_SEARCH','zh_CN','配置流程列表',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(539,NULL,367,'ACTION_APPROVAL_MANAGE_SEARCH','zh_TW','配置流程列表',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(540,NULL,367,'ACTION_APPROVAL_MANAGE_SEARCH','en_US','Configure list of process',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(541,NULL,367,'ACTION_APPROVAL_MANAGE_EDITINFO','zh_CN','编辑信息',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(542,NULL,367,'ACTION_APPROVAL_MANAGE_EDITINFO','zh_TW','編輯信息',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(543,NULL,367,'ACTION_APPROVAL_MANAGE_EDITINFO','en_US','Edit Information',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(544,NULL,367,'MENU_APPROVAL_EDITPROCESS','zh_CN','编辑流程',_binary '\0','2020-11-11 07:06:08','1','2021-03-19 06:27:44','1'),(545,NULL,367,'MENU_APPROVAL_EDITPROCESS','zh_TW','編輯流程',_binary '\0','2020-11-11 07:06:08','1','2021-03-19 06:27:44','1'),(546,NULL,367,'MENU_APPROVAL_EDITPROCESS','en_US','Editing process',_binary '\0','2020-11-11 07:06:08','1','2021-03-19 06:27:44','1'),(547,NULL,370,'ACTION_APPROVAL_MANAGE_EDITPROCESS','zh_CN','编辑流程',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(548,NULL,370,'ACTION_APPROVAL_MANAGE_EDITPROCESS','zh_TW','編輯流程',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(549,NULL,370,'ACTION_APPROVAL_MANAGE_EDITPROCESS','en_US','Edit process',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(550,NULL,366,'MENU_APPROVAL_LIST_ADMIN','zh_CN','审批列表',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(551,NULL,366,'MENU_APPROVAL_LIST_ADMIN','zh_TW','審批列表',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(552,NULL,366,'MENU_APPROVAL_LIST_ADMIN','en_US','Approval list',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(553,NULL,372,'ACTION_APPROVAL_LIST_SEARCH_ADMIN','zh_CN','查询',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(554,NULL,372,'ACTION_APPROVAL_LIST_SEARCH_ADMIN','zh_TW','查詢',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(555,NULL,372,'ACTION_APPROVAL_LIST_SEARCH_ADMIN','en_US','Search',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(556,NULL,372,'MENU_APPROVAL_DETAIL_ADMIN','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(557,NULL,372,'MENU_APPROVAL_DETAIL_ADMIN','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(558,NULL,372,'MENU_APPROVAL_DETAIL_ADMIN','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(559,NULL,374,'ACTION_APPROVAL_LIST_DETAIL_ADMIN','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(560,NULL,374,'ACTION_APPROVAL_LIST_DETAIL_ADMIN','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(561,NULL,374,'ACTION_APPROVAL_LIST_DETAIL_ADMIN','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(562,NULL,366,'MENU_APPROVAL_LIST','zh_CN','我的审批',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(563,NULL,366,'MENU_APPROVAL_LIST','zh_TW','我的審批',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(564,NULL,366,'MENU_APPROVAL_LIST','en_US','My approval list',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(565,NULL,376,'ACTION_APPROVAL_LIST_SEARCH','zh_CN','查询',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(566,NULL,376,'ACTION_APPROVAL_LIST_SEARCH','zh_TW','查詢',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(567,NULL,376,'ACTION_APPROVAL_LIST_SEARCH','en_US','Search',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(568,NULL,376,'MENU_APPROVAL_DETAIL','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(569,NULL,376,'MENU_APPROVAL_DETAIL','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(570,NULL,376,'MENU_APPROVAL_DETAIL','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(571,NULL,378,'ACTION_APPROVAL_LIST_DETAIL','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(572,NULL,378,'ACTION_APPROVAL_LIST_DETAIL','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(573,NULL,378,'ACTION_APPROVAL_LIST_DETAIL','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(577,NULL,63,'MENU_AIRSPACE_APPROVAL','zh_CN','审批进度',_binary '\0','2020-11-11 08:49:33','1','2022-01-18 11:23:28','1'),(578,NULL,63,'MENU_AIRSPACE_APPROVAL','zh_TW','審批進度',_binary '\0','2020-11-11 08:49:33','1','2022-01-18 11:23:28','1'),(579,NULL,63,'MENU_AIRSPACE_APPROVAL','en_US','Approval progress',_binary '\0','2020-11-11 08:49:33','1','2022-01-18 11:23:28','1'),(580,NULL,381,'ACTION_AIRSPACE_APPLY_APPROVAL','zh_CN','审批',_binary '\0','2020-11-11 08:49:33','1','2020-12-28 08:04:01','1'),(581,NULL,381,'ACTION_AIRSPACE_APPLY_APPROVAL','zh_TW','審批',_binary '\0','2020-11-11 08:49:33','1','2020-12-28 08:04:01','1'),(582,NULL,381,'ACTION_AIRSPACE_APPLY_APPROVAL','en_US','Approval',_binary '\0','2020-11-11 08:49:33','1','2021-01-29 09:48:34','1'),(583,NULL,239,'ACTION_AIRLINE_UAV_MODEL_LIST','zh_CN','无人机类型列',_binary '\0','2020-11-11 10:04:23','1','2020-12-28 08:04:03','1'),(584,NULL,239,'ACTION_AIRLINE_UAV_MODEL_LIST','zh_TW','無人機類型列',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(585,NULL,239,'ACTION_AIRLINE_UAV_MODEL_LIST','en_US','UAV model column',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(586,NULL,239,'ACTION_AIRLINE_LOAD_AND_HANGER','zh_CN','载荷和机库',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(587,NULL,239,'ACTION_AIRLINE_LOAD_AND_HANGER','zh_TW','載荷和機庫',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(588,NULL,239,'ACTION_AIRLINE_LOAD_AND_HANGER','en_US','Payload and box',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(589,NULL,331,'ACTION_AIRLINE_IMPORT_KML','zh_CN','KML导入',_binary '\0','2020-11-11 10:04:24','1','2020-12-28 08:04:03','1'),(590,NULL,331,'ACTION_AIRLINE_IMPORT_KML','zh_TW','KML導入',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(591,NULL,331,'ACTION_AIRLINE_IMPORT_KML','en_US','Import KML',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(592,NULL,238,'ACTION_AIRLINE_EXPORT_KML','zh_CN','导出KML',_binary '\0','2020-11-11 10:04:24','1','2020-12-28 08:04:03','1'),(593,NULL,238,'ACTION_AIRLINE_EXPORT_KML','zh_TW','導出KML',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(594,NULL,238,'ACTION_AIRLINE_EXPORT_KML','en_US','Export KML',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(595,NULL,62,'ACTION_UPLOAD','zh_CN','发起审批',_binary '\0','2020-12-28 08:04:01','1','2021-01-29 09:48:34','1'),(596,NULL,62,'ACTION_UPLOAD','zh_TW','發起審批',_binary '\0','2020-12-28 08:04:01','1','2021-01-29 09:48:34','1'),(597,NULL,62,'ACTION_UPLOAD','en_US','Start approval',_binary '\0','2020-12-28 08:04:01','1','2021-01-29 09:48:34','1'),(598,NULL,NULL,'MENU_SIMULATION','zh_CN','仿真规划',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(599,NULL,NULL,'MENU_SIMULATION','zh_TW','仿真規劃',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(600,NULL,NULL,'MENU_SIMULATION','en_US','Signal simulation',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:37','1'),(601,NULL,388,'ACTION_simulation','zh_CN','仿真规划',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(602,NULL,388,'ACTION_simulation','zh_TW','仿真規劃',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(603,NULL,388,'ACTION_simulation','en_US','Signal simulation',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:37','1'),(604,NULL,NULL,'MENU_AUDIT','zh_CN','审核系统',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(605,NULL,NULL,'MENU_AUDIT','zh_TW','審核系統',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(606,NULL,NULL,'MENU_AUDIT','en_US','Audit system',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(607,NULL,171,'MENU_AUDIT_MANAGER','zh_CN','审核系统',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(608,NULL,171,'MENU_AUDIT_MANAGER','zh_TW','審核系統',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(609,NULL,171,'MENU_AUDIT_MANAGER','en_US','Audit system',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(616,51694469166137344,NULL,'MENU_WAREHOUSE_MANAGE','en_US','Material management',_binary '\0','2020-12-31 02:59:51','1','2022-10-13 07:15:44','1'),(617,51694469166137344,NULL,'MENU_WAREHOUSE_MANAGE','zh_CN','素材管理',_binary '\0','2020-12-31 02:59:51','1','2021-03-19 06:32:34','1'),(618,51694469166137344,NULL,'MENU_WAREHOUSE_MANAGE','zh_TW','素材管理',_binary '\0','2020-12-31 02:59:51','1','2021-03-19 06:32:34','1'),(619,NULL,NULL,'MENU_SCREEN','zh_CN','通用数据大屏',_binary '\0','2021-01-29 10:20:33','1','2023-02-08 09:38:05','1'),(620,NULL,NULL,'MENU_SCREEN','zh_TW','通用數據大屏',_binary '\0','2021-01-29 10:20:33','1','2023-02-08 09:38:05','1'),(621,NULL,NULL,'MENU_SCREEN','en_US','Common data screen',_binary '\0','2021-01-29 10:20:33','1','2023-02-08 09:38:05','1'),(625,51700779089657856,NULL,'MENU_IMAGE_TECH','en_US','Image technology',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(626,51700779089657856,NULL,'MENU_IMAGE_TECH','zh_CN','图像技术',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(627,51700779089657856,NULL,'MENU_IMAGE_TECH','zh_TW','圖像技術',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(628,51700779089657856,395,'MENU_IMAGE_VEHICLE','en_US','Vehicle analysis',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(629,51700779089657856,395,'MENU_IMAGE_VEHICLE','zh_CN','车辆分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(630,51700779089657856,395,'MENU_IMAGE_VEHICLE','zh_TW','車輛分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(631,51700779089657856,395,'MENU_IMAGE_HANDLE','en_US','Image processing',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(632,51700779089657856,395,'MENU_IMAGE_HANDLE','zh_CN','图像处理',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(633,51700779089657856,395,'MENU_IMAGE_HANDLE','zh_TW','圖像處理',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(634,51700779089657856,397,'MENU_IMAGE_SAFETYHAT','en_US','Helmet recognition',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(635,51700779089657856,397,'MENU_IMAGE_SAFETYHAT','zh_CN','安全帽识别',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(636,51700779089657856,397,'MENU_IMAGE_SAFETYHAT','zh_TW','安全帽識別',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(637,51700779089657856,397,'MENU_IMAGE_ROADSEG','en_US','Road segmentation',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(638,51700779089657856,397,'MENU_IMAGE_ROADSEG','zh_CN','道路分割',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(639,51700779089657856,397,'MENU_IMAGE_ROADSEG','zh_TW','道路分割',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(640,51700779089657856,395,'MENU_IMAGE_ENHANCE','en_US','Image enhancement',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(641,51700779089657856,395,'MENU_IMAGE_ENHANCE','zh_CN','图像增强',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(642,51700779089657856,395,'MENU_IMAGE_ENHANCE','zh_TW','圖像增強',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(643,51700779089657856,400,'MENU_IMAGE_DEFOGGING','en_US','Image dehazing',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(644,51700779089657856,400,'MENU_IMAGE_DEFOGGING','zh_CN','图像去雾',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(645,51700779089657856,400,'MENU_IMAGE_DEFOGGING','zh_TW','圖像去霧',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(646,51700779089657856,395,'MENU_IMAGE_BODY','en_US','Body analysis',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(647,51700779089657856,395,'MENU_IMAGE_BODY','zh_CN','人体分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(648,51700779089657856,395,'MENU_IMAGE_BODY','zh_TW','人體分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(649,51700779089657856,402,'MENU_IMAGE_DENSITY','en_US','Flow density',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(650,51700779089657856,402,'MENU_IMAGE_DENSITY','zh_CN','人流量统计',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(651,51700779089657856,402,'MENU_IMAGE_DENSITY','zh_TW','人流量統計',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(652,51700779089657856,NULL,'MENU_VIDEO_TECH','en_US','Video technology',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(653,51700779089657856,NULL,'MENU_VIDEO_TECH','zh_CN','视频技术',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(654,51700779089657856,NULL,'MENU_VIDEO_TECH','zh_TW','視頻技術',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(667,NULL,239,'ACTION_AIRLINE_CHECK_QUOTA','zh_CN','校验配额',_binary '\0','2021-03-19 06:27:45','1','2021-04-20 09:53:00','1'),(668,NULL,239,'ACTION_AIRLINE_CHECK_QUOTA','zh_TW','校驗配額',_binary '\0','2021-03-19 06:27:45','1','2021-04-20 09:53:00','1'),(669,NULL,239,'ACTION_AIRLINE_CHECK_QUOTA','en_US','Check the quota',_binary '\0','2021-03-19 06:27:45','1','2021-04-20 09:53:00','1'),(673,51700779089657856,396,'ACTION_IMAGE_VEHICLE','en_US','显示车辆分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(674,51700779089657856,396,'ACTION_IMAGE_VEHICLE','zh_CN','显示车辆分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(675,51700779089657856,396,'ACTION_IMAGE_VEHICLE','zh_TW','显示车辆分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(676,51700779089657856,397,'ACTION_IMAGE_HANDLE','en_US','显示图像处理',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(677,51700779089657856,397,'ACTION_IMAGE_HANDLE','zh_CN','显示图像处理',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(678,51700779089657856,397,'ACTION_IMAGE_HANDLE','zh_TW','显示图像处理',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(679,51700779089657856,400,'ACTION_IMAGE_ENHANCE','en_US','显示图像增强',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(680,51700779089657856,400,'ACTION_IMAGE_ENHANCE','zh_CN','显示图像增强',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(681,51700779089657856,400,'ACTION_IMAGE_ENHANCE','zh_TW','显示图像增强',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(682,51700779089657856,402,'ACTION_IMAGE_BODY','en_US','显示人体分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:45','1'),(683,51700779089657856,402,'ACTION_IMAGE_BODY','zh_CN','显示人体分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:45','1'),(684,51700779089657856,402,'ACTION_IMAGE_BODY','zh_TW','显示人体分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:45','1'),(727,51694469166137344,NULL,'MENU_WAREHOUSE','en_US','Warehouse',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(728,51694469166137344,NULL,'MENU_WAREHOUSE','zh_CN','素材库',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(729,51694469166137344,NULL,'MENU_WAREHOUSE','zh_TW','素材庫',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(733,51694469166137344,392,'MENU_WAREHOUSE_MANAGE_INDEX','en_US','Material management',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(734,51694469166137344,392,'MENU_WAREHOUSE_MANAGE_INDEX','zh_CN','素材管理',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(735,51694469166137344,392,'MENU_WAREHOUSE_MANAGE_INDEX','zh_TW','素材管理',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(736,51694469166137344,429,'MENU_WAREHOUSE_INDEX','zh_CN','素材仓库',_binary '\0','2021-03-19 07:03:55','87912590847508480','2022-10-13 07:15:44','1'),(737,51694469166137344,429,'MENU_WAREHOUSE_INDEX','zh_TW','素材倉庫',_binary '\0','2021-03-19 07:03:55','87912590847508480','2022-10-13 07:15:44','1'),(738,51694469166137344,429,'MENU_WAREHOUSE_INDEX','en_US','Warehouse',_binary '\0','2021-03-19 07:03:55','87912590847508480','2022-10-13 07:15:44','1'),(739,51694469166137344,432,'MENU_WAREHOUSE_DETAIL','zh_CN','素材详情',_binary '\0','2021-03-19 07:04:10','87912590847508480','2022-10-13 07:15:44','1'),(740,51694469166137344,432,'MENU_WAREHOUSE_DETAIL','zh_TW','素材詳情',_binary '\0','2021-03-19 07:04:10','87912590847508480','2022-10-13 07:15:44','1'),(741,51694469166137344,432,'MENU_WAREHOUSE_DETAIL','en_US','Detail',_binary '\0','2021-03-19 07:04:10','87912590847508480','2022-10-13 07:15:44','1'),(742,51694469166137344,NULL,'MENU_TASK_MONITOR','zh_CN','任务监控',_binary '\0','2021-03-19 07:04:28','87912590847508480','2022-10-13 07:15:44','1'),(743,51694469166137344,NULL,'MENU_TASK_MONITOR','zh_TW','任務監控',_binary '\0','2021-03-19 07:04:28','87912590847508480','2022-10-13 07:15:44','1'),(744,51694469166137344,NULL,'MENU_TASK_MONITOR','en_US','Tack monitoring',_binary '\0','2021-03-19 07:04:28','87912590847508480','2022-10-13 07:15:44','1'),(745,51694469166137344,391,'MENU_TASK_MONITOR_INDEX','zh_CN','任务监控',_binary '\0','2021-03-19 07:04:41','87912590847508480','2022-10-13 07:15:44','1'),(746,51694469166137344,391,'MENU_TASK_MONITOR_INDEX','zh_TW','任務監控',_binary '\0','2021-03-19 07:04:41','87912590847508480','2022-10-13 07:15:44','1'),(747,51694469166137344,391,'MENU_TASK_MONITOR_INDEX','en_US','Tack monitoring',_binary '\0','2021-03-19 07:04:41','87912590847508480','2022-10-13 07:15:44','1'),(748,92183251954696192,NULL,'MENU_APP','en_US','Product Result',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(749,92183251954696192,NULL,'MENU_APP','zh_CN','产品检索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(750,92183251954696192,NULL,'MENU_APP','zh_TW','產品檢索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(751,92183251954696192,435,'MENU_APP_RESULT','en_US','Product Result',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(752,92183251954696192,435,'MENU_APP_RESULT','zh_CN','产品检索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(753,92183251954696192,435,'MENU_APP_RESULT','zh_TW','產品檢索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(754,92183251954696192,NULL,'MENU_DATA','en_US','Data Manage',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(755,92183251954696192,NULL,'MENU_DATA','zh_CN','数据管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(756,92183251954696192,NULL,'MENU_DATA','zh_TW','數據管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(757,92183251954696192,437,'MENU_DATA_MANAGE','en_US','Data Manage',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(758,92183251954696192,437,'MENU_DATA_MANAGE','zh_CN','数据管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(759,92183251954696192,437,'MENU_DATA_MANAGE','zh_TW','數據管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(796,51701172477624320,NULL,'MENU_','en_US','gaoguangpu',_binary '\0','2021-04-20 09:44:32','1',NULL,NULL),(797,51701172477624320,NULL,'MENU_','zh_CN','高光谱摇感',_binary '\0','2021-04-20 09:44:32','1',NULL,NULL),(798,51701172477624320,NULL,'MENU_','zh_TW','高光谱摇感',_binary '\0','2021-04-20 09:44:32','1',NULL,NULL),(799,51700961512521728,NULL,'MENU_SIMULATION_LIST','en_US','list',_binary '\0','2021-04-20 09:45:11','1',NULL,NULL),(800,51700961512521728,NULL,'MENU_SIMULATION_LIST','zh_CN','列表',_binary '\0','2021-04-20 09:45:11','1',NULL,NULL),(801,51700961512521728,NULL,'MENU_SIMULATION_LIST','zh_TW','列表',_binary '\0','2021-04-20 09:45:11','1',NULL,NULL),(802,51700779089657856,396,'MENU_IMAGE_LICENSEPLATE','en_US','License plate recognition',_binary '\0','2021-04-20 09:45:44','1','2021-07-06 06:48:40','1'),(803,51700779089657856,396,'MENU_IMAGE_LICENSEPLATE','zh_CN','车牌识别',_binary '\0','2021-04-20 09:45:44','1','2021-07-06 06:48:40','1'),(804,51700779089657856,396,'MENU_IMAGE_LICENSEPLATE','zh_TW','車牌識別',_binary '\0','2021-04-20 09:45:44','1','2021-07-06 06:48:40','1'),(808,NULL,358,'ACTION_MULTIMONITOR_VIDEO','zh_CN','多机监视',_binary '\0','2021-04-20 09:48:46','1','2021-06-16 07:50:15','1'),(809,NULL,358,'ACTION_MULTIMONITOR_VIDEO','zh_TW','多机监视',_binary '\0','2021-04-20 09:48:46','1','2021-06-16 07:50:15','1'),(810,NULL,358,'ACTION_MULTIMONITOR_VIDEO','en_US','多机监视',_binary '\0','2021-04-20 09:48:46','1','2021-06-16 07:50:15','1'),(814,NULL,124,'MENU_AIRLINE_SYSTEM_MANAGEMENT','zh_CN','系统航线管理',_binary '\0','2021-04-20 09:51:10','291','2021-04-20 09:53:00','1'),(815,NULL,124,'MENU_AIRLINE_SYSTEM_MANAGEMENT','zh_TW','系統航線管理',_binary '\0','2021-04-20 09:51:10','291','2021-04-20 09:53:00','1'),(816,NULL,124,'MENU_AIRLINE_SYSTEM_MANAGEMENT','en_US','System flight management',_binary '\0','2021-04-20 09:51:10','291','2021-04-20 09:53:00','1'),(820,NULL,331,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT','zh_CN','空域和机场',_binary '\0','2021-04-20 09:53:00','1','2021-05-26 03:24:13','1'),(821,NULL,331,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT','zh_TW','空域和機場',_binary '\0','2021-04-20 09:53:00','1','2021-05-26 03:24:13','1'),(822,NULL,331,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT','en_US','Airspace and airport',_binary '\0','2021-04-20 09:53:00','1','2021-05-26 03:24:13','1'),(823,NULL,124,'MENU_AIRLINE_MAP_DETAIL','zh_CN','航线地图详情',_binary '\0','2021-04-20 09:53:00','1','2022-06-30 07:57:53','1'),(824,NULL,124,'MENU_AIRLINE_MAP_DETAIL','zh_TW','航綫地圖詳情',_binary '\0','2021-04-20 09:53:00','1','2022-06-30 07:57:53','1'),(825,NULL,124,'MENU_AIRLINE_MAP_DETAIL','en_US','Flight route map detail',_binary '\0','2021-04-20 09:53:00','1','2022-06-30 07:57:53','1'),(841,NULL,NULL,'MENU_MISSION','zh_CN','作业管理',_binary '\0','2021-05-12 07:09:20','1','2023-09-27 10:02:47','1'),(842,NULL,NULL,'MENU_MISSION','zh_TW','作業管理',_binary '\0','2021-05-12 07:09:20','1','2023-09-27 10:02:47','1'),(843,NULL,NULL,'MENU_MISSION','en_US','Mission management',_binary '\0','2021-05-12 07:09:20','1','2023-09-27 10:02:47','1'),(844,NULL,463,'MENU_TIMING_MISSION','zh_CN','定时作业',_binary '\0','2021-05-12 07:09:20','1','2021-05-12 07:40:01','1'),(845,NULL,463,'MENU_TIMING_MISSION','zh_TW','定時作業',_binary '\0','2021-05-12 07:09:20','1','2021-05-12 07:40:01','1'),(846,NULL,463,'MENU_TIMING_MISSION','en_US','timing mission',_binary '\0','2021-05-12 07:09:20','1','2021-05-12 07:40:01','1'),(901,NULL,463,'ACTION_MISSION_SEARCH','zh_CN','查询作业列表',_binary '\0','2021-05-12 07:37:20','89730635001757696','2022-09-20 08:30:51','1'),(902,NULL,463,'ACTION_MISSION_SEARCH','zh_TW','查詢作業列表',_binary '\0','2021-05-12 07:37:20','89730635001757696','2022-09-20 08:30:51','1'),(903,NULL,463,'ACTION_MISSION_SEARCH','en_US','Query mission list',_binary '\0','2021-05-12 07:37:20','89730635001757696','2022-09-20 08:30:51','1'),(925,NULL,463,'ACTION_MISSON_FILTER','zh_CN','下拉框筛选',_binary '\0','2021-05-12 07:38:05','89730635001757696','2021-05-12 07:40:01','1'),(926,NULL,463,'ACTION_MISSON_FILTER','zh_TW','下拉框篩選',_binary '\0','2021-05-12 07:38:05','89730635001757696','2021-05-12 07:40:01','1'),(927,NULL,463,'ACTION_MISSON_FILTER','en_US','Drop down box filter',_binary '\0','2021-05-12 07:38:05','89730635001757696','2021-05-12 07:40:01','1'),(949,NULL,463,'ACTION_MISSION_BULKDEL','zh_CN','批量删除作业',_binary '\0','2021-05-12 07:38:45','89730635001757696','2021-05-12 07:40:01','1'),(950,NULL,463,'ACTION_MISSION_BULKDEL','zh_TW','批量刪除作業',_binary '\0','2021-05-12 07:38:45','89730635001757696','2021-05-12 07:40:01','1'),(951,NULL,463,'ACTION_MISSION_BULKDEL','en_US','Batch delete mission',_binary '\0','2021-05-12 07:38:45','89730635001757696','2021-05-12 07:40:01','1'),(964,NULL,463,'ACTION_MISSION_CLONE','zh_CN','复制作业',_binary '\0','2021-05-12 07:39:16','89730635001757696','2021-05-12 07:40:01','1'),(965,NULL,463,'ACTION_MISSION_CLONE','zh_TW','複製作業',_binary '\0','2021-05-12 07:39:16','89730635001757696','2021-05-12 07:40:01','1'),(966,NULL,463,'ACTION_MISSION_CLONE','en_US','Copy mission',_binary '\0','2021-05-12 07:39:16','89730635001757696','2021-05-12 07:40:01','1'),(967,NULL,464,'MENU_TIMING_MISSION_ADD','zh_CN','新建作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(968,NULL,464,'MENU_TIMING_MISSION_ADD','zh_TW','新建作業',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(969,NULL,464,'MENU_TIMING_MISSION_ADD','en_US','add timing mission',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(970,NULL,471,'ACTION_ADD_TIMING_MISSION','zh_CN','新建定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(971,NULL,471,'ACTION_ADD_TIMING_MISSION','zh_TW','新建定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(972,NULL,471,'ACTION_ADD_TIMING_MISSION','en_US','新建定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(973,NULL,471,'ACTION_UPDATE_TIMING_MISSION','zh_CN','更新定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(974,NULL,471,'ACTION_UPDATE_TIMING_MISSION','zh_TW','更新定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(975,NULL,471,'ACTION_UPDATE_TIMING_MISSION','en_US','Update timing mission',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(976,NULL,464,'MENU_TIMING_MISSION_LIST','zh_CN','定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(977,NULL,464,'MENU_TIMING_MISSION_LIST','zh_TW','定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(978,NULL,464,'MENU_TIMING_MISSION_LIST','en_US','timing mission list',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(979,NULL,474,'ACTION_TIMING_MISSION_LIST','zh_CN','定时列表',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(980,NULL,474,'ACTION_TIMING_MISSION_LIST','zh_TW','定时列表',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(981,NULL,474,'ACTION_TIMING_MISSION_LIST','en_US','Timing mission list',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(982,NULL,474,'ACTION_TIMING_MISSION_DELETE','zh_CN','删除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(983,NULL,474,'ACTION_TIMING_MISSION_DELETE','zh_TW','刪除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(984,NULL,474,'ACTION_TIMING_MISSION_DELETE','en_US','Delete',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(985,NULL,474,'ACTION_TIMING_MISSION_BULK_DELETE','zh_CN','批量删除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(986,NULL,474,'ACTION_TIMING_MISSION_BULK_DELETE','zh_TW','批量刪除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(987,NULL,474,'ACTION_TIMING_MISSION_BULK_DELETE','en_US','Bulk delete',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(991,NULL,464,'MENU_TIMING_MISSION_DETAIL','zh_CN','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(992,NULL,464,'MENU_TIMING_MISSION_DETAIL','zh_TW','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(993,NULL,464,'MENU_TIMING_MISSION_DETAIL','en_US','Detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(994,NULL,479,'ACTION_TIMING_MISSION_DETAIL','zh_CN','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(995,NULL,479,'ACTION_TIMING_MISSION_DETAIL','zh_TW','詳情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(996,NULL,479,'ACTION_TIMING_MISSION_DETAIL','en_US','Detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(997,NULL,464,'MENU_TIMING_MISSION_EDIT','zh_CN','编辑',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(998,NULL,464,'MENU_TIMING_MISSION_EDIT','zh_TW','编辑',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(999,NULL,464,'MENU_TIMING_MISSION_EDIT','en_US','Edit',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1000,NULL,463,'MENU_MISSION_EDIT','zh_CN','编辑',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1001,NULL,463,'MENU_MISSION_EDIT','zh_TW','編輯',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1002,NULL,463,'MENU_MISSION_EDIT','en_US','Edit',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1003,NULL,463,'ACTION_MISSION_DEL','zh_CN','删除作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1004,NULL,463,'ACTION_MISSION_DEL','zh_TW','刪除作業',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1005,NULL,463,'ACTION_MISSION_DEL','en_US','Delete mission',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1006,NULL,463,'MENU_MISSION_REPLAY','zh_CN','作业回放',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1007,NULL,463,'MENU_MISSION_REPLAY','zh_TW','作業回放',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1008,NULL,463,'MENU_MISSION_REPLAY','en_US','Mission replay',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1009,NULL,484,'ACTION_MISSION_REPLAY_DATA','zh_CN','作业回放数据',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1010,NULL,484,'ACTION_MISSION_REPLAY_DATA','zh_TW','作業回放數據',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1011,NULL,484,'ACTION_MISSION_REPLAY_DATA','en_US','Mission replay data',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1012,NULL,463,'MENU_MISSION_DETAIL','zh_CN','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1013,NULL,463,'MENU_MISSION_DETAIL','zh_TW','詳情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1014,NULL,463,'MENU_MISSION_DETAIL','en_US','Detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1015,NULL,486,'ACTION_MISSION_DETAIL','zh_CN','查看作业详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1016,NULL,486,'ACTION_MISSION_DETAIL','zh_TW','查看作業詳情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1017,NULL,486,'ACTION_MISSION_DETAIL','en_US','View mission detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1018,NULL,486,'ACTION_SUBTASK_DELETE','zh_CN','删除子作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1019,NULL,486,'ACTION_SUBTASK_DELETE','zh_TW','刪除子作業',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1020,NULL,486,'ACTION_SUBTASK_DELETE','en_US','Delete subtask',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1021,NULL,463,'MENU_MISSION_ADD','zh_CN','新建作业',_binary '\0','2021-05-12 07:40:01','1','2022-06-08 05:49:07','1'),(1022,NULL,463,'MENU_MISSION_ADD','zh_TW','新建作業',_binary '\0','2021-05-12 07:40:01','1','2022-06-08 05:49:07','1'),(1023,NULL,463,'MENU_MISSION_ADD','en_US','New mission',_binary '\0','2021-05-12 07:40:01','1','2022-06-08 05:49:07','1'),(1024,NULL,489,'ACTION_MISSION_CHECK_MISSION_NAME','zh_CN','作业名称验重',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1025,NULL,489,'ACTION_MISSION_CHECK_MISSION_NAME','zh_TW','作業名稱驗重',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1026,NULL,489,'ACTION_MISSION_CHECK_MISSION_NAME','en_US','Check mission name conflict',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1027,NULL,489,'ACTION_MISSION_APPLY_APPROVAL','zh_CN','作业审批',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1028,NULL,489,'ACTION_MISSION_APPLY_APPROVAL','zh_TW','作業審批',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1029,NULL,489,'ACTION_MISSION_APPLY_APPROVAL','en_US','Mission approval',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1030,NULL,489,'ACTION_MISSION_CHECK_QUOTA','zh_CN','校验配额',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1031,NULL,489,'ACTION_MISSION_CHECK_QUOTA','zh_TW','校驗配額',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1032,NULL,489,'ACTION_MISSION_CHECK_QUOTA','en_US','Check the quota',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1033,NULL,489,'ACTION_MISSION_GET_HANGAR_INSTANCE','zh_CN','获取机库实例',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1034,NULL,489,'ACTION_MISSION_GET_HANGAR_INSTANCE','zh_TW','獲取機庫實例',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1035,NULL,489,'ACTION_MISSION_GET_HANGAR_INSTANCE','en_US','Get box instance',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1036,NULL,489,'ACTION_MISSION_GET_UAV_INSTANCE','zh_CN','取无人机实例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1037,NULL,489,'ACTION_MISSION_GET_UAV_INSTANCE','zh_TW','取無人機實例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1038,NULL,489,'ACTION_MISSION_GET_UAV_INSTANCE','en_US','Get UAV instance',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1039,NULL,489,'ACTION_MISSION_GET_LOAD_INSTANCE','zh_CN','获取载荷实例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1040,NULL,489,'ACTION_MISSION_GET_LOAD_INSTANCE','zh_TW','獲取載荷實例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1041,NULL,489,'ACTION_MISSION_GET_LOAD_INSTANCE','en_US','Get payload instance',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1042,NULL,489,'ACTION_MISSION_SAVE','zh_CN','保存作业',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1043,NULL,489,'ACTION_MISSION_SAVE','zh_TW','保存作業',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1044,NULL,489,'ACTION_MISSION_SAVE','en_US','Save mission',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1045,NULL,489,'ACTION_MISSION_GET_AIRLINE_LIST','zh_CN','获取航线列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1046,NULL,489,'ACTION_MISSION_GET_AIRLINE_LIST','zh_TW','獲取航線列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1047,NULL,489,'ACTION_MISSION_GET_AIRLINE_LIST','en_US','Get flight route list',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1048,NULL,489,'ACTION_MISSION_EXECUTOR_LIST','zh_CN','取执行人列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1049,NULL,489,'ACTION_MISSION_EXECUTOR_LIST','zh_TW','取執行人列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1050,NULL,489,'ACTION_MISSION_EXECUTOR_LIST','en_US','Get executor list',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1051,NULL,124,'MENU_AIRLINE_KML_LIST','zh_CN','KML航线管理',_binary '\0','2021-05-26 03:24:13','1','2024-08-23 02:06:47','1'),(1052,NULL,124,'MENU_AIRLINE_KML_LIST','zh_TW','KML航線管理',_binary '\0','2021-05-26 03:24:13','1','2024-08-23 02:06:47','1'),(1053,NULL,124,'MENU_AIRLINE_KML_LIST','en_US','KML flight manage',_binary '\0','2021-05-26 03:24:13','1','2024-08-23 02:06:47','1'),(1054,NULL,499,'MENU_AIRLINE_KML_IMPORT','zh_CN','导入航线',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1055,NULL,499,'MENU_AIRLINE_KML_IMPORT','zh_TW','導入航線',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1056,NULL,499,'MENU_AIRLINE_KML_IMPORT','en_US','Import routes',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1057,NULL,500,'ACTION_AIRLINE_KML_IMPORT','zh_CN','导入航线',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1058,NULL,500,'ACTION_AIRLINE_KML_IMPORT','zh_TW','導入航線',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1059,NULL,500,'ACTION_AIRLINE_KML_IMPORT','en_US','Import routes',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1060,NULL,499,'ACTION_AIRLINE_KML_LIST','zh_CN','查询KML列表',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1061,NULL,499,'ACTION_AIRLINE_KML_LIST','zh_TW','查詢KML列表',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1062,NULL,499,'ACTION_AIRLINE_KML_LIST','en_US','Search KML list',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1063,NULL,499,'ACTION_AIRLINE_KML_LIST_OPTIONS','zh_CN','列表查询下拉',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1064,NULL,499,'ACTION_AIRLINE_KML_LIST_OPTIONS','zh_TW','列表查詢下拉',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1065,NULL,499,'ACTION_AIRLINE_KML_LIST_OPTIONS','en_US','List search options',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1066,NULL,499,'ACTION_AIRLINE_KML_DELETE','zh_CN','删除',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1067,NULL,499,'ACTION_AIRLINE_KML_DELETE','zh_TW','刪除',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1068,NULL,499,'ACTION_AIRLINE_KML_DELETE','en_US','Delete',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1072,51700961512521728,452,'ACTION_SIMULATION_BTN','zh_CN','按钮',_binary '\0','2021-05-26 07:02:48','89730635001757696','2021-05-26 07:11:57','89730635001757696'),(1073,51700961512521728,452,'ACTION_SIMULATION_BTN','zh_TW','按钮',_binary '\0','2021-05-26 07:02:48','89730635001757696','2021-05-26 07:11:57','89730635001757696'),(1074,51700961512521728,452,'ACTION_SIMULATION_BTN','en_US','按钮',_binary '\0','2021-05-26 07:02:48','89730635001757696','2021-05-26 07:11:57','89730635001757696'),(1078,NULL,331,'ACTION_AIRLINE_GET_STRAP_LINE','zh_CN','带状航线',_binary '\0','2021-06-01 10:04:14','1','2021-06-16 02:50:39','1'),(1079,NULL,331,'ACTION_AIRLINE_GET_STRAP_LINE','zh_TW','带状航线',_binary '\0','2021-06-01 10:04:14','1','2021-06-16 02:50:39','1'),(1080,NULL,331,'ACTION_AIRLINE_GET_STRAP_LINE','en_US','STRAPLINE',_binary '\0','2021-06-01 10:04:14','1','2021-06-16 02:50:39','1'),(1081,51694291109543936,NULL,'MENU_INDEX','zh_CN','首页',_binary '\0','2021-06-09 07:53:41','1',NULL,NULL),(1082,51694291109543936,NULL,'MENU_INDEX','zh_TW','首页',_binary '\0','2021-06-09 07:53:41','1',NULL,NULL),(1083,51694291109543936,NULL,'MENU_INDEX','en_US','首页',_binary '\0','2021-06-09 07:53:41','1',NULL,NULL),(1087,51693429796634624,NULL,'MENU_TRAFFIC','zh_CN','交通管理权限',_binary '\0','2021-06-23 09:43:08','89730635001757696',NULL,NULL),(1088,51693429796634624,NULL,'MENU_TRAFFIC','zh_TW','交通管理权限',_binary '\0','2021-06-23 09:43:08','89730635001757696',NULL,NULL),(1089,51693429796634624,NULL,'MENU_TRAFFIC','en_US','交通管理权限',_binary '\0','2021-06-23 09:43:08','89730635001757696',NULL,NULL),(1096,NULL,474,'ACTION_MISSION_ENABLE','zh_CN','编辑启用状态',_binary '\0','2021-07-06 07:49:39','1','2021-07-30 09:57:50','1'),(1097,NULL,474,'ACTION_MISSION_ENABLE','zh_TW','編輯啟用狀態',_binary '\0','2021-07-06 07:49:39','1','2021-07-30 09:57:50','1'),(1098,NULL,474,'ACTION_MISSION_ENABLE','en_US','Edit enable status',_binary '\0','2021-07-06 07:49:39','1','2021-07-30 09:57:50','1'),(1099,NULL,65,'ACTION_EFENCE_ENABLE_SWITCH','zh_CN','启禁用电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1100,NULL,65,'ACTION_EFENCE_ENABLE_SWITCH','zh_TW','启禁用电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1101,NULL,65,'ACTION_EFENCE_ENABLE_SWITCH','en_US','Efence enable',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1102,NULL,65,'ACTION_CREAT_EFENCE_INFO','zh_CN','创建编辑电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1103,NULL,65,'ACTION_CREAT_EFENCE_INFO','zh_TW','创建编辑电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1104,NULL,65,'ACTION_CREAT_EFENCE_INFO','en_US','Create Efence',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1105,NULL,65,'ACTION_DEL_EFENCE','zh_CN','删除电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1106,NULL,65,'ACTION_DEL_EFENCE','zh_TW','删除电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1107,NULL,65,'ACTION_DEL_EFENCE','en_US','Delete Efence',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1108,NULL,65,'ACTION_EFENCE_DETAI_INFO','zh_CN','电子围栏详情',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1109,NULL,65,'ACTION_EFENCE_DETAI_INFO','zh_TW','电子围栏详情',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1110,NULL,65,'ACTION_EFENCE_DETAI_INFO','en_US','Efence info',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1111,NULL,65,'ACTION_EFENCE_LIST','zh_CN','查询电子围栏列表',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1112,NULL,65,'ACTION_EFENCE_LIST','zh_TW','查询电子围栏列表',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1113,NULL,65,'ACTION_EFENCE_LIST','en_US','Query Efence list',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1114,NULL,65,'ACTION_EFENCE_PAGE_FILTER','zh_CN','模糊搜索电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1115,NULL,65,'ACTION_EFENCE_PAGE_FILTER','zh_TW','模糊搜索电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1116,NULL,65,'ACTION_EFENCE_PAGE_FILTER','en_US','Efence filter',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1117,NULL,65,'ACTION_CHECK_EFENCE_NAME','zh_CN','校验围栏名称重复',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1118,NULL,65,'ACTION_CHECK_EFENCE_NAME','zh_TW','校验围栏名称重复',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1119,NULL,65,'ACTION_CHECK_EFENCE_NAME','en_US','Check Efence name',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1120,NULL,358,'ACTION_MULTIMONITOR_FINDDEVICES','zh_CN','查找设备',_binary '\0','2021-07-30 09:58:33','1','2024-06-18 11:03:48','188243415207510016'),(1121,NULL,358,'ACTION_MULTIMONITOR_FINDDEVICES','zh_TW','查找設備',_binary '\0','2021-07-30 09:58:33','1','2024-06-18 11:03:48','188243415207510016'),(1122,NULL,358,'ACTION_MULTIMONITOR_FINDDEVICES','en_US','Find devices',_binary '\0','2021-07-30 09:58:33','1','2024-06-18 11:03:48','188243415207510016'),(1129,51695802510213120,NULL,'MENU_PRODUCE','en_US','Produce Manage',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1130,51695802510213120,NULL,'MENU_PRODUCE','zh_CN','生产管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1131,51695802510213120,NULL,'MENU_PRODUCE','zh_TW','生產管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1132,51695802510213120,524,'MENU_PRODUCE_LIST','en_US','Produce Manage',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1133,51695802510213120,524,'MENU_PRODUCE_LIST','zh_CN','生产管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1134,51695802510213120,524,'MENU_PRODUCE_LIST','zh_TW','生產管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1135,51695802510213120,525,'ACTION_PRODUCE_LIST_BULKDEL','en_US','Bulk Delete',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1136,51695802510213120,525,'ACTION_PRODUCE_LIST_BULKDEL','zh_CN','批量删除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1137,51695802510213120,525,'ACTION_PRODUCE_LIST_BULKDEL','zh_TW','批量刪除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1138,51695802510213120,525,'MENU_PRODUCE_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1139,51695802510213120,525,'MENU_PRODUCE_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1140,51695802510213120,525,'MENU_PRODUCE_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1141,51695802510213120,527,'ACTION_PRODUCE_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1142,51695802510213120,527,'ACTION_PRODUCE_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1143,51695802510213120,527,'ACTION_PRODUCE_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1144,51695802510213120,525,'ACTION_PRODUCE_LIST_SEARCH','en_US','Search',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1145,51695802510213120,525,'ACTION_PRODUCE_LIST_SEARCH','zh_CN','查询',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1146,51695802510213120,525,'ACTION_PRODUCE_LIST_SEARCH','zh_TW','查詢',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1147,51695802510213120,525,'ACTION_PRODUCT_LIST_START','en_US','StartRebuildCancel',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1148,51695802510213120,525,'ACTION_PRODUCT_LIST_START','zh_CN','开始重建取消',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1149,51695802510213120,525,'ACTION_PRODUCT_LIST_START','zh_TW','開始重建取消',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1150,51695802510213120,525,'MENU_PRODUCE_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1151,51695802510213120,525,'MENU_PRODUCE_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1152,51695802510213120,525,'MENU_PRODUCE_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1153,51695802510213120,531,'ACTION_PRODUCE_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1154,51695802510213120,531,'ACTION_PRODUCE_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1155,51695802510213120,531,'ACTION_PRODUCE_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1156,51695802510213120,525,'ACTION_PRODUCE_LIST_DEL','en_US','Delete',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1157,51695802510213120,525,'ACTION_PRODUCE_LIST_DEL','zh_CN','删除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1158,51695802510213120,525,'ACTION_PRODUCE_LIST_DEL','zh_TW','刪除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1159,51695802510213120,525,'MENU_PRODUCE_ADD','en_US','Add Mission',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1160,51695802510213120,525,'MENU_PRODUCE_ADD','zh_CN','新建任务',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1161,51695802510213120,525,'MENU_PRODUCE_ADD','zh_TW','新建任务',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1162,51695802510213120,534,'ACTION_PRODUCE_ADD','en_US','Add',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1163,51695802510213120,534,'ACTION_PRODUCE_ADD','zh_CN','新建',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1164,51695802510213120,534,'ACTION_PRODUCE_ADD','zh_TW','新建',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1165,51695802510213120,NULL,'MENU_RESULT','en_US','resultView',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1166,51695802510213120,NULL,'MENU_RESULT','zh_CN','成果展示',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1167,51695802510213120,NULL,'MENU_RESULT','zh_TW','成果展示',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1168,51695802510213120,536,'MENU_RESULT_VISUALIZATION','en_US','Visualization',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1169,51695802510213120,536,'MENU_RESULT_VISUALIZATION','zh_CN','可视化',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1170,51695802510213120,536,'MENU_RESULT_VISUALIZATION','zh_TW','可視化',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1171,51695802510213120,536,'MENU_RESULT_MANAGE','en_US','resultManage',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1172,51695802510213120,536,'MENU_RESULT_MANAGE','zh_CN','成果管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1173,51695802510213120,536,'MENU_RESULT_MANAGE','zh_TW','成果管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1174,51695802510213120,538,'ACTION_RESULT_LIST_DEL','en_US','Delete',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1175,51695802510213120,538,'ACTION_RESULT_LIST_DEL','zh_CN','删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1176,51695802510213120,538,'ACTION_RESULT_LIST_DEL','zh_TW','删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1177,51695802510213120,538,'ACTION_RESULT_BULKDEL','en_US','Bulk Delete',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1178,51695802510213120,538,'ACTION_RESULT_BULKDEL','zh_CN','批量删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1179,51695802510213120,538,'ACTION_RESULT_BULKDEL','zh_TW','批量刪除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1180,51695802510213120,538,'ACTION_RESULT_LIST_SEARCH','en_US','Search',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1181,51695802510213120,538,'ACTION_RESULT_LIST_SEARCH','zh_CN','查询',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1182,51695802510213120,538,'ACTION_RESULT_LIST_SEARCH','zh_TW','查詢',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1183,51695802510213120,538,'ACTION_RESULT_DOWNLOAD','en_US','Download',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1184,51695802510213120,538,'ACTION_RESULT_DOWNLOAD','zh_CN','下载',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1185,51695802510213120,538,'ACTION_RESULT_DOWNLOAD','zh_TW','下載',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1186,51695802510213120,538,'ACTION_RESULT_LIST_PUBLISH','en_US','Publish',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1187,51695802510213120,538,'ACTION_RESULT_LIST_PUBLISH','zh_CN','发布取消发布',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1188,51695802510213120,538,'ACTION_RESULT_LIST_PUBLISH','zh_TW','發佈取消發佈',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1189,51695802510213120,538,'MENU_RESULT_MANAGE_ADD','en_US','addResult',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1190,51695802510213120,538,'MENU_RESULT_MANAGE_ADD','zh_CN','新建产品',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1191,51695802510213120,538,'MENU_RESULT_MANAGE_ADD','zh_TW','新建產品',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1192,51695802510213120,544,'ACTION_RESULT_ADD','en_US','Add',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1193,51695802510213120,544,'ACTION_RESULT_ADD','zh_CN','新建',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1194,51695802510213120,544,'ACTION_RESULT_ADD','zh_TW','新建',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1195,51695802510213120,538,'MENU_RESULT_MANAGE_EDIT','en_US','editResult',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1196,51695802510213120,538,'MENU_RESULT_MANAGE_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1197,51695802510213120,538,'MENU_RESULT_MANAGE_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1198,51695802510213120,546,'ACTION_RESULT_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1199,51695802510213120,546,'ACTION_RESULT_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1200,51695802510213120,546,'ACTION_RESULT_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1201,51695802510213120,538,'MENU_RESULT_MANAGE_DETAIL','en_US','detailResult',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1202,51695802510213120,538,'MENU_RESULT_MANAGE_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1203,51695802510213120,538,'MENU_RESULT_MANAGE_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1204,51695802510213120,548,'ACTION_RESULT_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1205,51695802510213120,548,'ACTION_RESULT_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1206,51695802510213120,548,'ACTION_RESULT_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1207,51695802510213120,NULL,'MENU_DATA_MA','en_US','dataManage',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1208,51695802510213120,NULL,'MENU_DATA_MA','zh_CN','数据管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1209,51695802510213120,NULL,'MENU_DATA_MA','zh_TW','數據管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1210,51695802510213120,550,'MENU_DATA_MA_LIST','en_US','dataManage',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1211,51695802510213120,550,'MENU_DATA_MA_LIST','zh_CN','数据管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1212,51695802510213120,550,'MENU_DATA_MA_LIST','zh_TW','數據管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1213,51695802510213120,551,'ACTION_DATA_DELETE','en_US','delete',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1214,51695802510213120,551,'ACTION_DATA_DELETE','zh_CN','删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1215,51695802510213120,551,'ACTION_DATA_DELETE','zh_TW','刪除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1216,51695802510213120,551,'ACTION_DATA_LIST_SEARCH','en_US','Search',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1217,51695802510213120,551,'ACTION_DATA_LIST_SEARCH','zh_CN','查詢',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1218,51695802510213120,551,'ACTION_DATA_LIST_SEARCH','zh_TW','查询',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1219,51695802510213120,551,'MENU_DATA_MA_EDIT','en_US','editDataset',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1220,51695802510213120,551,'MENU_DATA_MA_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1221,51695802510213120,551,'MENU_DATA_MA_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1222,51695802510213120,554,'ACTION_DATA_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1223,51695802510213120,554,'ACTION_DATA_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1224,51695802510213120,554,'ACTION_DATA_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1225,51695802510213120,551,'MENU_DATA_MA_DETAIL','en_US','datasetDetail',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1226,51695802510213120,551,'MENU_DATA_MA_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1227,51695802510213120,551,'MENU_DATA_MA_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1228,51695802510213120,556,'ACTION_DATA_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1229,51695802510213120,556,'ACTION_DATA_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1230,51695802510213120,556,'ACTION_DATA_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1231,51695802510213120,551,'MENU_DATA_MA_ADD','en_US','dataset',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1232,51695802510213120,551,'MENU_DATA_MA_ADD','zh_CN','新建数据集',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1233,51695802510213120,551,'MENU_DATA_MA_ADD','zh_TW','新建數據集',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1234,51695802510213120,558,'ACTION_DATA_ADD','en_US','Add',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1235,51695802510213120,558,'ACTION_DATA_ADD','zh_CN','新建',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1236,51695802510213120,558,'ACTION_DATA_ADD','zh_TW','新建',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1237,51695802510213120,551,'ACTION_DATA_BULKDEL','en_US','Bulk Delete',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1238,51695802510213120,551,'ACTION_DATA_BULKDEL','zh_CN','批量刪除',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1239,51695802510213120,551,'ACTION_DATA_BULKDEL','zh_TW','批量删除',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1240,NULL,486,'ACTION_BATCH_DOWNLOAD','zh_CN','批量下载',_binary '\0','2021-08-12 02:19:01','1','2021-11-05 10:29:40','1'),(1241,NULL,486,'ACTION_BATCH_DOWNLOAD','zh_TW','批量下载',_binary '\0','2021-08-12 02:19:01','1','2021-11-05 10:29:40','1'),(1242,NULL,486,'ACTION_BATCH_DOWNLOAD','en_US','Batch download',_binary '\0','2021-08-12 02:19:01','1','2021-11-05 10:29:40','1'),(1243,NULL,124,'ACTION_FLIGHT_TO_3D_ROUTE','zh_CN','三维视角',_binary '\0','2021-11-05 10:29:25','1','2022-06-30 07:57:53','1'),(1244,NULL,124,'ACTION_FLIGHT_TO_3D_ROUTE','zh_TW','三維視角',_binary '\0','2021-11-05 10:29:25','1','2022-06-30 07:57:53','1'),(1245,NULL,124,'ACTION_FLIGHT_TO_3D_ROUTE','en_US','Three dimensional perspective',_binary '\0','2021-11-05 10:29:25','1','2022-06-30 07:57:53','1'),(1246,NULL,NULL,'MENU_ALARM','zh_CN','告警管理',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1247,NULL,NULL,'MENU_ALARM','zh_TW','告警管理',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1248,NULL,NULL,'MENU_ALARM','en_US','Alarm management',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1249,NULL,563,'MENU_ALARM_STATISTIC','zh_CN','告警统计',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1250,NULL,563,'MENU_ALARM_STATISTIC','zh_TW','告警統計',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1251,NULL,563,'MENU_ALARM_STATISTIC','en_US','Alarm statistics',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1252,NULL,564,'MENU_ALARM_STATISTIC_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1253,NULL,564,'MENU_ALARM_STATISTIC_DETAIL','zh_TW','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1254,NULL,564,'MENU_ALARM_STATISTIC_DETAIL','en_US','detail',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1255,NULL,565,'ACTION_ALARM_STATISTIC_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1256,NULL,565,'ACTION_ALARM_STATISTIC_DETAIL','zh_TW','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1257,NULL,565,'ACTION_ALARM_STATISTIC_DETAIL','en_US','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1258,NULL,564,'ACTION_ALARM_STATISTIC_LIST','zh_CN','查询告警列表',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1259,NULL,564,'ACTION_ALARM_STATISTIC_LIST','zh_TW','查询告警列表',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1260,NULL,564,'ACTION_ALARM_STATISTIC_LIST','en_US','list',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1261,NULL,564,'ACTION_ALARM_QUERY_STATIC','zh_CN','统计信息',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1262,NULL,564,'ACTION_ALARM_QUERY_STATIC','zh_TW','统计信息',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1263,NULL,564,'ACTION_ALARM_QUERY_STATIC','en_US','STATIC INFO',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1264,NULL,563,'MENU_ALARM_CONFIG','zh_CN','告警配置',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1265,NULL,563,'MENU_ALARM_CONFIG','zh_TW','告警配置',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1266,NULL,563,'MENU_ALARM_CONFIG','en_US','Alarm configuration',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1267,NULL,569,'MENU_ALARM_CONFIG_ADD','zh_CN','新建告警',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1268,NULL,569,'MENU_ALARM_CONFIG_ADD','zh_TW','新建告警',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1269,NULL,569,'MENU_ALARM_CONFIG_ADD','en_US','New alarm',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1270,NULL,570,'ACTION_ALARM_CONFIG_ADD','zh_CN','新增',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1271,NULL,570,'ACTION_ALARM_CONFIG_ADD','zh_TW','新增',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1272,NULL,570,'ACTION_ALARM_CONFIG_ADD','en_US','Add',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1273,NULL,569,'MENU_ALARM_CONFIG_EDIT','zh_CN','编辑',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1274,NULL,569,'MENU_ALARM_CONFIG_EDIT','zh_TW','編輯',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1275,NULL,569,'MENU_ALARM_CONFIG_EDIT','en_US','Edit',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1276,NULL,572,'ACTION_ALARM_CONFIG_EDIT','zh_CN','编辑',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1277,NULL,572,'ACTION_ALARM_CONFIG_EDIT','zh_TW','編輯',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1278,NULL,572,'ACTION_ALARM_CONFIG_EDIT','en_US','Edit',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1279,NULL,569,'MENU_ALARM_CONFIG_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1280,NULL,569,'MENU_ALARM_CONFIG_DETAIL','zh_TW','詳情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1281,NULL,569,'MENU_ALARM_CONFIG_DETAIL','en_US','Detail',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1282,NULL,574,'ACTION_ALARM_CONFIG_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1283,NULL,574,'ACTION_ALARM_CONFIG_DETAIL','zh_TW','詳情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1284,NULL,574,'ACTION_ALARM_CONFIG_DETAIL','en_US','Detail',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1285,NULL,569,'ACTION_ALARM_CONFIG_DELETE','zh_CN','删除',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1286,NULL,569,'ACTION_ALARM_CONFIG_DELETE','zh_TW','删除',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1287,NULL,569,'ACTION_ALARM_CONFIG_DELETE','en_US','delete',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1288,NULL,569,'ACTION_ALARM_CONFIG_ONOFF','zh_CN','启用禁用',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1289,NULL,569,'ACTION_ALARM_CONFIG_ONOFF','zh_TW','启用禁用',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1290,NULL,569,'ACTION_ALARM_CONFIG_ONOFF','en_US','onoff',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1291,NULL,569,'MENU_ALARM_CONFIG_LIST','zh_CN','列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1292,NULL,569,'MENU_ALARM_CONFIG_LIST','zh_TW','列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1293,NULL,569,'MENU_ALARM_CONFIG_LIST','en_US','list',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1294,NULL,578,'ACTION_ALARM_CONFIG_SEARCHOPTION','zh_CN','查询下拉选项',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1295,NULL,578,'ACTION_ALARM_CONFIG_SEARCHOPTION','zh_TW','查询下拉选项',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1296,NULL,578,'ACTION_ALARM_CONFIG_SEARCHOPTION','en_US','searchOptions',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1297,NULL,578,'ACTION_ALARM_CONFIG_SEARCHLIST','zh_CN','查询告警列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1298,NULL,578,'ACTION_ALARM_CONFIG_SEARCHLIST','zh_TW','查询告警列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1299,NULL,578,'ACTION_ALARM_CONFIG_SEARCHLIST','en_US','searchList',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1300,NULL,358,'MENU_FLIGHTMONITOR_FIRE_ALERT','zh_CN','火情告警功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1301,NULL,358,'MENU_FLIGHTMONITOR_FIRE_ALERT','zh_TW','火情告警功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1302,NULL,358,'MENU_FLIGHTMONITOR_FIRE_ALERT','en_US','火情告警功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1303,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST','zh_CN','火情列表',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1304,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST','zh_TW','火情列表',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1305,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST','en_US','火情列表',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1306,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND','zh_CN','火情出警',_binary '\0','2021-11-05 10:30:18','1','2023-09-12 01:19:34','1'),(1307,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND','zh_TW','火情出警',_binary '\0','2021-11-05 10:30:18','1','2023-09-12 01:19:34','1'),(1308,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND','en_US','火情出警',_binary '\0','2021-11-05 10:30:18','1','2023-09-12 01:19:34','1'),(1309,NULL,358,'MENU_UAV_BPERM','zh_CN','飞行控制',_binary '\0','2021-11-05 10:30:18','1','2024-10-11 09:06:56','1'),(1310,NULL,358,'MENU_UAV_BPERM','zh_TW','飛行控製',_binary '\0','2021-11-05 10:30:18','1','2024-10-11 09:06:56','1'),(1311,NULL,358,'MENU_UAV_BPERM','en_US','flight control',_binary '\0','2021-11-05 10:30:18','1','2024-10-11 09:06:56','1'),(1312,NULL,584,'ACTION_UAV_BPERM','zh_CN','基础控制',_binary '\0','2021-11-05 10:30:18','1','2024-02-23 09:38:55','89730635001757696'),(1313,NULL,584,'ACTION_UAV_BPERM','zh_TW','基礎控製',_binary '\0','2021-11-05 10:30:18','1','2024-02-23 09:38:55','89730635001757696'),(1314,NULL,584,'ACTION_UAV_BPERM','en_US','basic control',_binary '\0','2021-11-05 10:30:18','1','2024-02-23 09:38:55','89730635001757696'),(1315,NULL,584,'ACTION_UAV_STK_BPERM','zh_CN','摇杆功能',_binary '\0','2021-11-05 10:30:18','1','2024-04-17 01:51:23','89730635001757696'),(1316,NULL,584,'ACTION_UAV_STK_BPERM','zh_TW','搖桿功能',_binary '\0','2021-11-05 10:30:18','1','2024-04-17 01:51:23','89730635001757696'),(1317,NULL,584,'ACTION_UAV_STK_BPERM','en_US','joystick',_binary '\0','2021-11-05 10:30:18','1','2024-04-17 01:51:23','89730635001757696'),(1318,NULL,358,'MENU_LOAD_BPERM','zh_CN','载荷控制',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1319,NULL,358,'MENU_LOAD_BPERM','zh_TW','載荷控製',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1320,NULL,358,'MENU_LOAD_BPERM','en_US','load control',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1321,NULL,587,'MENU_CAM_BPERM','zh_CN','摄像头',_binary '\0','2021-11-05 10:30:18','1','2024-06-17 12:01:17','1'),(1322,NULL,587,'MENU_CAM_BPERM','zh_TW','攝像頭',_binary '\0','2021-11-05 10:30:18','1','2024-06-17 12:01:17','1'),(1323,NULL,587,'MENU_CAM_BPERM','en_US','camera',_binary '\0','2021-11-05 10:30:18','1','2024-06-17 12:01:17','1'),(1324,NULL,588,'ACTION_CAM_BPERM','zh_CN','拍照功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1325,NULL,588,'ACTION_CAM_BPERM','zh_TW','拍照功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1326,NULL,588,'ACTION_CAM_BPERM','en_US','Take picture',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1327,NULL,588,'ACTION_CAM_HEAT_BPERM','zh_CN','热成像',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1328,NULL,588,'ACTION_CAM_HEAT_BPERM','zh_TW','熱成像',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1329,NULL,588,'ACTION_CAM_HEAT_BPERM','en_US','Thermal Imaging',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1330,NULL,587,'MENU_MEG_BPERM','zh_CN','喊话器',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1331,NULL,587,'MENU_MEG_BPERM','zh_TW','喊話器',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1332,NULL,587,'MENU_MEG_BPERM','en_US','megaphone',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1333,NULL,591,'ACTION_MEG_BPERM','zh_CN','喊话功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1334,NULL,591,'ACTION_MEG_BPERM','zh_TW','喊話功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1335,NULL,591,'ACTION_MEG_BPERM','en_US','megaphone',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1336,NULL,587,'MENU_SPR_BPERM','zh_CN','农业器具',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1337,NULL,587,'MENU_SPR_BPERM','zh_TW','農業器具',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1338,NULL,587,'MENU_SPR_BPERM','en_US','agricultural equipment',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1339,NULL,593,'ACTION_SPR_BPERM','zh_CN','喷洒功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1340,NULL,593,'ACTION_SPR_BPERM','zh_TW','噴灑功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1341,NULL,593,'ACTION_SPR_BPERM','en_US','spary',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1342,NULL,358,'MENU_AI_BPERM','zh_CN','智能辅助',_binary '\0','2021-11-05 10:30:19','1','2024-04-25 02:58:10','89730635001757696'),(1343,NULL,358,'MENU_AI_BPERM','zh_TW','智能輔助',_binary '\0','2021-11-05 10:30:19','1','2024-04-25 02:58:10','89730635001757696'),(1344,NULL,358,'MENU_AI_BPERM','en_US','AI',_binary '\0','2021-11-05 10:30:19','1','2024-04-25 02:58:10','89730635001757696'),(1345,NULL,595,'MENU_AI_VSTITCH_BPERM','zh_CN','实时快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1346,NULL,595,'MENU_AI_VSTITCH_BPERM','zh_TW','实时快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1347,NULL,595,'MENU_AI_VSTITCH_BPERM','en_US','realtime stitch',_binary '\0','2021-11-05 10:30:19','1','2022-01-18 11:23:37','1'),(1348,NULL,596,'ACTION_VIDEO_VSTITCH_BPERM','zh_CN','视频快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1349,NULL,596,'ACTION_VIDEO_VSTITCH_BPERM','zh_TW','视频快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1350,NULL,596,'ACTION_VIDEO_VSTITCH_BPERM','en_US','video stitch',_binary '\0','2021-11-05 10:30:19','1','2022-01-18 11:23:37','1'),(1351,NULL,595,'MENU_AI_CAR_BPERM','zh_CN','车辆分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1352,NULL,595,'MENU_AI_CAR_BPERM','zh_TW','車輛分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1353,NULL,595,'MENU_AI_CAR_BPERM','en_US','Car analysis',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1354,NULL,598,'ACTION_AI_CAR_BPERM','zh_CN','车流量统计',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1355,NULL,598,'ACTION_AI_CAR_BPERM','zh_TW','車流量統計',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1356,NULL,598,'ACTION_AI_CAR_BPERM','en_US','Traffic statistics',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1357,NULL,598,'ACTION_AI_CARTRACK_BPERM','zh_CN','车辆跟踪',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1358,NULL,598,'ACTION_AI_CARTRACK_BPERM','zh_TW','車輛跟蹤',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1359,NULL,598,'ACTION_AI_CARTRACK_BPERM','en_US','Car track',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1366,NULL,595,'MENU_AI_PER_BPERM','zh_CN','人体分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1367,NULL,595,'MENU_AI_PER_BPERM','zh_TW','人體分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1368,NULL,595,'MENU_AI_PER_BPERM','en_US','Human analysis',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1369,NULL,603,'ACTION_AI_PER_BPERM','zh_CN','人流量统计',_binary '\0','2021-11-05 10:30:19','1','2024-02-22 08:23:55','1'),(1370,NULL,603,'ACTION_AI_PER_BPERM','zh_TW','人流量統計',_binary '\0','2021-11-05 10:30:19','1','2024-02-22 08:23:55','1'),(1371,NULL,603,'ACTION_AI_PER_BPERM','en_US','human count',_binary '\0','2021-11-05 10:30:19','1','2024-02-22 08:23:55','1'),(1372,NULL,358,'MENU_HGR_BPERM','zh_CN','机库功能',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1373,NULL,358,'MENU_HGR_BPERM','zh_TW','機庫功能',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1374,NULL,358,'MENU_HGR_BPERM','en_US','hangar',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1375,NULL,605,'ACTION_HGR_BPERM','zh_CN','机库控制',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1376,NULL,605,'ACTION_HGR_BPERM','zh_TW','機庫控製',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1377,NULL,605,'ACTION_HGR_BPERM','en_US','hangar control',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1378,NULL,605,'ACTION_HGR_EMG_BPERM','zh_CN','紧急操作',_binary '\0','2021-11-05 10:30:19','1','2023-09-12 01:19:34','1'),(1379,NULL,605,'ACTION_HGR_EMG_BPERM','zh_TW','緊急操作',_binary '\0','2021-11-05 10:30:19','1','2023-09-12 01:19:34','1'),(1380,NULL,605,'ACTION_HGR_EMG_BPERM','en_US','Emergency operation',_binary '\0','2021-11-05 10:30:19','1','2023-09-12 01:19:34','1'),(1381,NULL,358,'ACTION_MUTI_CONTROL','zh_CN','多机控制',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1382,NULL,358,'ACTION_MUTI_CONTROL','zh_TW','多機控製',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1383,NULL,358,'ACTION_MUTI_CONTROL','en_US','multidrone control',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1384,NULL,NULL,'MENU_FLIGHTSERVICE','zh_CN','飞行服务',_binary '\0','2021-11-05 10:30:44','1','2024-06-21 08:27:20','1'),(1385,NULL,NULL,'MENU_FLIGHTSERVICE','zh_TW','飛行服務',_binary '\0','2021-11-05 10:30:44','1','2024-06-21 08:27:20','1'),(1386,NULL,NULL,'MENU_FLIGHTSERVICE','en_US','Flight Service',_binary '\0','2021-11-05 10:30:44','1','2024-06-21 08:27:20','1'),(1387,NULL,NULL,'MENU_INDUSTRIALAPP','zh_CN','数据应用',_binary '\0','2021-11-05 10:30:47','1','2022-05-26 06:46:51','199120334480211968'),(1388,NULL,NULL,'MENU_INDUSTRIALAPP','zh_TW','數據應用',_binary '\0','2021-11-05 10:30:47','1','2022-05-26 06:46:51','199120334480211968'),(1389,NULL,NULL,'MENU_INDUSTRIALAPP','en_US','Data Applications',_binary '\0','2021-11-05 10:30:47','1','2022-05-26 06:46:51','199120334480211968'),(1390,NULL,NULL,'MENU_VALUE_ADDED_SERVICE','zh_CN','增值服务',_binary '\0','2021-11-05 10:30:49','1',NULL,NULL),(1391,NULL,NULL,'MENU_VALUE_ADDED_SERVICE','zh_TW','增值服務',_binary '\0','2021-11-05 10:30:49','1',NULL,NULL),(1392,NULL,NULL,'MENU_VALUE_ADDED_SERVICE','en_US','Value Added Service',_binary '\0','2021-11-05 10:30:49','1',NULL,NULL),(1393,171690764403736576,NULL,'MENU_FLIGHT','en_US','flightline',_binary '\0','2021-11-05 10:38:09','1',NULL,NULL),(1394,171690764403736576,NULL,'MENU_FLIGHT','zh_CN','航线',_binary '\0','2021-11-05 10:38:09','1',NULL,NULL),(1395,171690764403736576,NULL,'MENU_FLIGHT','zh_TW','航綫',_binary '\0','2021-11-05 10:38:09','1',NULL,NULL),(1396,171689982405115904,NULL,'MENU_TOWER','en_US','Tower inspection',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1397,171689982405115904,NULL,'MENU_TOWER','zh_CN','杆塔巡检',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1398,171689982405115904,NULL,'MENU_TOWER','zh_TW','桿塔巡檢',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1399,171689982405115904,613,'MENU_TOWER_LEDGER','en_US','Tower Ledger',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1400,171689982405115904,613,'MENU_TOWER_LEDGER','zh_CN','杆塔台账',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1401,171689982405115904,613,'MENU_TOWER_LEDGER','zh_TW','桿塔台賬',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1402,171689982405115904,614,'ACTION_TOWER_IMPORT_FILE','en_US','Import the tower file',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1403,171689982405115904,614,'ACTION_TOWER_IMPORT_FILE','zh_CN','导入杆塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1404,171689982405115904,614,'ACTION_TOWER_IMPORT_FILE','zh_TW','導入桿塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1405,171689982405115904,614,'ACTION_TOWER_DELETE_LINE','en_US','Delete line',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1406,171689982405115904,614,'ACTION_TOWER_DELETE_LINE','zh_CN','删除线路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1407,171689982405115904,614,'ACTION_TOWER_DELETE_LINE','zh_TW','刪除線路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1408,171689982405115904,614,'ACTION_TOWER_EDIT_ROUTE_NAME','en_US','Modify line name',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1409,171689982405115904,614,'ACTION_TOWER_EDIT_ROUTE_NAME','zh_CN','修改线路名称',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1410,171689982405115904,614,'ACTION_TOWER_EDIT_ROUTE_NAME','zh_TW','修改線路名稱',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1411,171689982405115904,614,'ACTION_TOWER_DOWNLOAD_TEMPLATE','en_US','Download the template file',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1412,171689982405115904,614,'ACTION_TOWER_DOWNLOAD_TEMPLATE','zh_CN','下载模板文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1413,171689982405115904,614,'ACTION_TOWER_DOWNLOAD_TEMPLATE','zh_TW','下載模板文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1414,171689982405115904,614,'ACTION_TOWER_DELETE_TOWER','en_US','Delete tower',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1415,171689982405115904,614,'ACTION_TOWER_DELETE_TOWER','zh_CN','删除杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1416,171689982405115904,614,'ACTION_TOWER_DELETE_TOWER','zh_TW','刪除桿塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1417,171689982405115904,614,'ACTION_TOWER_CHANGE_ORDER','en_US','Modify the order of towers',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1418,171689982405115904,614,'ACTION_TOWER_CHANGE_ORDER','zh_CN','修改杆塔顺序',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1419,171689982405115904,614,'ACTION_TOWER_CHANGE_ORDER','zh_TW','修改桿塔順序',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1420,171689982405115904,614,'ACTION_TOWER_NEW','en_US','new tower',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1421,171689982405115904,614,'ACTION_TOWER_NEW','zh_CN','新建杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1422,171689982405115904,614,'ACTION_TOWER_NEW','zh_TW','新建杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1423,171689982405115904,614,'ACTION_TOWER_MODIFY','en_US','modify tower',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1424,171689982405115904,614,'ACTION_TOWER_MODIFY','zh_CN','修改杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1425,171689982405115904,614,'ACTION_TOWER_MODIFY','zh_TW','修改杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1426,171689982405115904,614,'ACTION_TOWER_DETAIL','en_US','tower detail',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1427,171689982405115904,614,'ACTION_TOWER_DETAIL','zh_CN','杆塔详情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1428,171689982405115904,614,'ACTION_TOWER_DETAIL','zh_TW','杆塔详情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1429,171689982405115904,614,'ACTION_TOWER_TOWERLIST','en_US','List',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1430,171689982405115904,614,'ACTION_TOWER_TOWERLIST','zh_CN','列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1431,171689982405115904,614,'ACTION_TOWER_TOWERLIST','zh_TW','列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1432,171689982405115904,614,'ACTION_TOWER_ADD_ROUTE','en_US','Add line',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1433,171689982405115904,614,'ACTION_TOWER_ADD_ROUTE','zh_CN','添加线路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1434,171689982405115904,614,'ACTION_TOWER_ADD_ROUTE','zh_TW','添加線路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1435,171689982405115904,614,'ACTION_TOWER_EXPORT_TOWER','en_US','Export tower file',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1436,171689982405115904,614,'ACTION_TOWER_EXPORT_TOWER','zh_CN','导出杆塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1437,171689982405115904,614,'ACTION_TOWER_EXPORT_TOWER','zh_TW','導出桿塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1438,171689982405115904,613,'MENU_TOWER_PHOTO','en_US','Inspection photos',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1439,171689982405115904,613,'MENU_TOWER_PHOTO','zh_CN','巡检照片',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1440,171689982405115904,613,'MENU_TOWER_PHOTO','zh_TW','巡檢照片',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1441,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_LIST','en_US','Inspection photo list',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1442,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_LIST','zh_CN','巡检照片列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1443,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_LIST','zh_TW','巡檢照片列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1444,171689982405115904,627,'ACTION_TOWER_DELETE_INSPECTION_PHOTO','en_US','Delete',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1445,171689982405115904,627,'ACTION_TOWER_DELETE_INSPECTION_PHOTO','zh_CN','删除',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1446,171689982405115904,627,'ACTION_TOWER_DELETE_INSPECTION_PHOTO','zh_TW','刪除',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1447,171689982405115904,627,'ACTION_TOWER_MOVE_PHOTO','en_US','Move',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1448,171689982405115904,627,'ACTION_TOWER_MOVE_PHOTO','zh_CN','移动',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1449,171689982405115904,627,'ACTION_TOWER_MOVE_PHOTO','zh_TW','移動',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1450,171689982405115904,627,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO','en_US','Upload',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1451,171689982405115904,627,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO','zh_CN','上传',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1452,171689982405115904,627,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO','zh_TW','上傳',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1453,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL','en_US','Details',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1454,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1455,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL','zh_TW','詳情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1456,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO','en_US','Download single photo',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1457,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO','zh_CN','下载单张照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1458,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO','zh_TW','下載單張照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1459,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO','en_US','Download photos in bulk',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1460,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO','zh_CN','批量下载照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1461,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO','zh_TW','批量下載照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1462,171689982405115904,627,'ACTION_TOWER_MODIFY_DEFECT_LIST','en_US','Modify the defect list',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1463,171689982405115904,627,'ACTION_TOWER_MODIFY_DEFECT_LIST','zh_CN','修改缺陷列表',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1464,171689982405115904,627,'ACTION_TOWER_MODIFY_DEFECT_LIST','zh_TW','修改缺陷列表',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1465,171689982405115904,613,'MENU_TOWER_ROUTE','en_US','Inspection route',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1466,171689982405115904,613,'MENU_TOWER_ROUTE','zh_CN','巡检航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1467,171689982405115904,613,'MENU_TOWER_ROUTE','zh_TW','巡檢航線',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1468,171689982405115904,636,'ACTION_TOWER_LINECONNECT','en_US','关联航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1469,171689982405115904,636,'ACTION_TOWER_LINECONNECT','zh_CN','关联航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1470,171689982405115904,636,'ACTION_TOWER_LINECONNECT','zh_TW','关联航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1471,171689982405115904,636,'ACTION_TOWER_UNCONNECT','en_US','取消关联',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1472,171689982405115904,636,'ACTION_TOWER_UNCONNECT','zh_CN','取消关联',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1473,171689982405115904,636,'ACTION_TOWER_UNCONNECT','zh_TW','取消关联',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1474,171689982405115904,636,'ACTION_TOWER_CONNECTDETAIL','en_US','线路关联航线详情',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1475,171689982405115904,636,'ACTION_TOWER_CONNECTDETAIL','zh_CN','线路关联航线详情',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1476,171689982405115904,636,'ACTION_TOWER_CONNECTDETAIL','zh_TW','线路关联航线详情',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1480,194515901263904768,NULL,'MENU_LOW_DET','en_US','低空探测',_binary '\0','2022-01-18 11:17:19','1',NULL,NULL),(1481,194515901263904768,NULL,'MENU_LOW_DET','zh_CN','低空探测',_binary '\0','2022-01-18 11:17:19','1',NULL,NULL),(1482,194515901263904768,NULL,'MENU_LOW_DET','zh_TW','低空探测',_binary '\0','2022-01-18 11:17:19','1',NULL,NULL),(1489,NULL,NULL,'MENU_LOG','zh_CN','日志管理',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1490,NULL,NULL,'MENU_LOG','zh_TW','日誌管理',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1491,NULL,NULL,'MENU_LOG','en_US','Log manage',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1492,NULL,644,'ACTION_LOG_OPTION_TYPE','zh_CN','查询操作类型下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1493,NULL,644,'ACTION_LOG_OPTION_TYPE','zh_TW','查询操作类型下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1494,NULL,644,'ACTION_LOG_OPTION_TYPE','en_US','查询操作类型下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1495,NULL,644,'MENU_FLIGHTLOG','zh_CN','飞行日志',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1496,NULL,644,'MENU_FLIGHTLOG','zh_TW','飛行日誌',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1497,NULL,644,'MENU_FLIGHTLOG','en_US','Flight log',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1498,NULL,646,'ACTION_LOG_FLIGHTLOGLIST','zh_CN','飞行日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1499,NULL,646,'ACTION_LOG_FLIGHTLOGLIST','zh_TW','飞行日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1500,NULL,646,'ACTION_LOG_FLIGHTLOGLIST','en_US','flight log list',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1501,NULL,644,'ACTION_LOG_LOGLIST','zh_CN','日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1502,NULL,644,'ACTION_LOG_LOGLIST','zh_TW','日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1503,NULL,644,'ACTION_LOG_LOGLIST','en_US','Log List',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1504,NULL,644,'ACTION_LOG_USERLIST','zh_CN','查询用户下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1505,NULL,644,'ACTION_LOG_USERLIST','zh_TW','查询用户下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1506,NULL,644,'ACTION_LOG_USERLIST','en_US','Search User',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1507,NULL,644,'ACTION_LOG_DEVICELIST','zh_CN','查询设备下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1508,NULL,644,'ACTION_LOG_DEVICELIST','zh_TW','查询设备下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1509,NULL,644,'ACTION_LOG_DEVICELIST','en_US','Search Dev',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1510,NULL,63,'ACTION_AIRSPACE_GET_DICT','zh_CN','查询数据字典',_binary '\0','2022-01-18 11:23:29','1','2024-02-21 09:55:11','1'),(1511,NULL,63,'ACTION_AIRSPACE_GET_DICT','zh_TW','查询数据字典',_binary '\0','2022-01-18 11:23:29','1','2024-02-21 09:55:11','1'),(1512,NULL,63,'ACTION_AIRSPACE_GET_DICT','en_US','get dict',_binary '\0','2022-01-18 11:23:29','1','2024-02-21 09:55:11','1'),(1513,NULL,358,'ACTION_AI_SEND_SMS','zh_CN','手动发送短信',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:53','1'),(1514,NULL,358,'ACTION_AI_SEND_SMS','zh_TW','手動發送短信',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:53','1'),(1515,NULL,358,'ACTION_AI_SEND_SMS','en_US','Send SMS manually',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:53','1'),(1516,NULL,595,'MENU_AI_FIRE_BPERM','zh_CN','火情分析',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1517,NULL,595,'MENU_AI_FIRE_BPERM','zh_TW','火情分析',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1518,NULL,595,'MENU_AI_FIRE_BPERM','en_US','Fire analysis',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1519,NULL,653,'ACTION_AI_FIRE_BPERM','zh_CN','火情识别',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1520,NULL,653,'ACTION_AI_FIRE_BPERM','zh_TW','火情識別',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1521,NULL,653,'ACTION_AI_FIRE_BPERM','en_US','Fire identification',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1522,NULL,486,'ACTION_MISSION_SEND_SMS','zh_CN','发送短信',_binary '\0','2022-01-18 11:23:44','1','2022-03-30 09:01:57','1'),(1523,NULL,486,'ACTION_MISSION_SEND_SMS','zh_TW','發送短信',_binary '\0','2022-01-18 11:23:44','1','2022-03-30 09:01:57','1'),(1524,NULL,486,'ACTION_MISSION_SEND_SMS','en_US','Send SMS',_binary '\0','2022-01-18 11:23:44','1','2022-03-30 09:01:57','1'),(1525,51695802510213120,551,'MENU_DATA_MWA_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1526,51695802510213120,551,'MENU_DATA_MWA_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1527,51695802510213120,551,'MENU_DATA_MWA_IMAGE','en_US','MwsSelect',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1528,51695802510213120,656,'ACTION_DATA_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1529,51695802510213120,656,'ACTION_DATA_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1530,51695802510213120,656,'ACTION_DATA_IMAGE','en_US','MwsSelect',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1531,51695802510213120,554,'MENU_DATA_MWA_EDIT_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1532,51695802510213120,554,'MENU_DATA_MWA_EDIT_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1533,51695802510213120,554,'MENU_DATA_MWA_EDIT_IMAGE','en_US','mwsSelectEdit',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1534,51695802510213120,558,'MENU_DATA_MWA_ADD_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1535,51695802510213120,558,'MENU_DATA_MWA_ADD_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1536,51695802510213120,558,'MENU_DATA_MWA_ADD_IMAGE','en_US','mwsSelect',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1543,216936325675220992,NULL,'MENU_MONITOR_MEDICAL','en_US','monitor',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1544,216936325675220992,NULL,'MENU_MONITOR_MEDICAL','zh_CN','监控页面',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1545,216936325675220992,NULL,'MENU_MONITOR_MEDICAL','zh_TW','監控頁面',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1546,216936325675220992,NULL,'MENU_GENERAL_SERVICE','en_US','general Service',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1547,216936325675220992,NULL,'MENU_GENERAL_SERVICE','zh_CN','综合服务',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1548,216936325675220992,NULL,'MENU_GENERAL_SERVICE','zh_TW','綜合服務',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1549,NULL,90,'MENU_DEVICE_SIMULATED_UAV','zh_CN','设置',_binary '\0','2022-03-14 01:55:55','1','2022-03-30 07:02:18','1'),(1550,NULL,90,'MENU_DEVICE_SIMULATED_UAV','zh_TW','設置',_binary '\0','2022-03-14 01:55:55','1','2022-03-30 07:02:18','1'),(1551,NULL,90,'MENU_DEVICE_SIMULATED_UAV','en_US','Set up',_binary '\0','2022-03-14 01:55:55','1','2022-03-30 07:02:18','1'),(1561,217309254481084416,NULL,'MENU_VISITOR','en_US','基础版',_binary '\0','2022-03-30 02:02:43','1',NULL,NULL),(1562,217309254481084416,NULL,'MENU_VISITOR','zh_CN','基础版',_binary '\0','2022-03-30 02:02:43','1',NULL,NULL),(1563,217309254481084416,NULL,'MENU_VISITOR','zh_TW','基础版',_binary '\0','2022-03-30 02:02:43','1',NULL,NULL),(1567,NULL,358,'ACTION_ONEKEYFLY','zh_CN','一键起飞',_binary '\0','2022-03-31 07:04:49','1','2022-04-01 09:04:18','1'),(1568,NULL,358,'ACTION_ONEKEYFLY','zh_TW','一鍵起飛',_binary '\0','2022-03-31 07:04:49','1','2022-04-01 09:04:18','1'),(1569,NULL,358,'ACTION_ONEKEYFLY','en_US','onekeyfly',_binary '\0','2022-03-31 07:04:49','1','2022-04-01 09:04:18','1'),(1573,NULL,595,'MENU_AI_SMOG_BPERM','zh_CN','烟雾识别',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1574,NULL,595,'MENU_AI_SMOG_BPERM','zh_TW','煙霧識別',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1575,NULL,595,'MENU_AI_SMOG_BPERM','en_US','Smoke recognition',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1576,NULL,672,'ACTION_AI_SMOG_BPERM','zh_CN','烟雾识别',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1577,NULL,672,'ACTION_AI_SMOG_BPERM','zh_TW','煙霧識別',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1578,NULL,672,'ACTION_AI_SMOG_BPERM','en_US','Smoke recognition',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1579,NULL,24,'MENU_COMPANY','zh_CN','组织管理',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1580,NULL,24,'MENU_COMPANY','zh_TW','組織管理',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1581,NULL,24,'MENU_COMPANY','en_US','Company Management',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1582,NULL,674,'MENU_COMPANY_EDIT','zh_CN','编辑',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1583,NULL,674,'MENU_COMPANY_EDIT','zh_TW','編輯',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1584,NULL,674,'MENU_COMPANY_EDIT','en_US','Edit',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1585,NULL,675,'ACTION_COMPANY_ENABLE','zh_CN','启用公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1586,NULL,675,'ACTION_COMPANY_ENABLE','zh_TW','啟用公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1587,NULL,675,'ACTION_COMPANY_ENABLE','en_US','EnableCompany',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1588,NULL,675,'ACTION_COMPANY_DISABLE','zh_CN','关停公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1589,NULL,675,'ACTION_COMPANY_DISABLE','zh_TW','關停公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1590,NULL,675,'ACTION_COMPANY_DISABLE','en_US','DisableCompany',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1591,NULL,675,'ACTION_COMPANY_RESET','zh_CN','重置密码',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1592,NULL,675,'ACTION_COMPANY_RESET','zh_TW','重置密碼',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1593,NULL,675,'ACTION_COMPANY_RESET','en_US','Reset password',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1594,NULL,674,'MENU_COMPANY_ADD','zh_CN','新建',_binary '\0','2022-04-27 03:29:09','1','2024-03-19 08:09:19','1'),(1595,NULL,674,'MENU_COMPANY_ADD','zh_TW','新建',_binary '\0','2022-04-27 03:29:09','1','2024-03-19 08:09:19','1'),(1596,NULL,674,'MENU_COMPANY_ADD','en_US','Add',_binary '\0','2022-04-27 03:29:09','1','2024-03-19 08:09:19','1'),(1597,NULL,674,'MENU_COMPANY_CHECK','zh_CN','详情',_binary '\0','2022-04-27 03:29:09','1','2024-04-29 07:02:34','89730635001757696'),(1598,NULL,674,'MENU_COMPANY_CHECK','zh_TW','詳情',_binary '\0','2022-04-27 03:29:09','1','2024-04-29 07:02:34','89730635001757696'),(1599,NULL,674,'MENU_COMPANY_CHECK','en_US','Detail',_binary '\0','2022-04-27 03:29:09','1','2024-04-29 07:02:34','89730635001757696'),(1600,NULL,674,'ACTION_COMPANY_SEARCH','zh_CN','查询',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1601,NULL,674,'ACTION_COMPANY_SEARCH','zh_TW','查詢',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1602,NULL,674,'ACTION_COMPANY_SEARCH','en_US','Search',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1603,NULL,80,'MENU_DEVICE_WAREHOUSE','zh_CN','仓库管理',_binary '\0','2022-04-27 03:29:17','1','2022-05-25 09:47:25','1'),(1604,NULL,80,'MENU_DEVICE_WAREHOUSE','zh_TW','倉庫管理',_binary '\0','2022-04-27 03:29:17','1','2022-05-25 09:47:25','1'),(1605,NULL,80,'MENU_DEVICE_WAREHOUSE','en_US','Warehouse Management',_binary '\0','2022-04-27 03:29:17','1','2022-05-25 09:47:25','1'),(1606,NULL,595,'MENU_AI_MUTI_BPERM','zh_CN','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1607,NULL,595,'MENU_AI_MUTI_BPERM','zh_TW','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1608,NULL,595,'MENU_AI_MUTI_BPERM','en_US','Multimodel analysis',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1609,NULL,683,'ACTION_AI_MUTI_BPERM','zh_CN','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1610,NULL,683,'ACTION_AI_MUTI_BPERM','zh_TW','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1611,NULL,683,'ACTION_AI_MUTI_BPERM','en_US','Multimodel analysis',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1612,NULL,358,'MENU_FLIGHT_MONITOR_TETHERED','zh_CN','通信数据',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1613,NULL,358,'MENU_FLIGHT_MONITOR_TETHERED','zh_TW','通信數據',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1614,NULL,358,'MENU_FLIGHT_MONITOR_TETHERED','en_US','Communication data',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1615,NULL,358,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG','zh_CN','发送分享链接短信',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1616,NULL,358,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG','zh_TW','發送分享鏈接短信',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1617,NULL,358,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG','en_US','Send share link SMS',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1618,224558648645386240,NULL,'MENU_INSPECTION_SCREEN','zh_CN','热成像巡检',_binary '\0','2022-04-27 06:11:06','188243415207510016','2022-04-27 08:44:40','89730635001757696'),(1619,224558648645386240,NULL,'MENU_INSPECTION_SCREEN','zh_TW','热成像巡检',_binary '\0','2022-04-27 06:11:06','188243415207510016','2022-04-27 08:44:40','89730635001757696'),(1620,224558648645386240,NULL,'MENU_INSPECTION_SCREEN','en_US','Hot imaging inspection',_binary '\0','2022-04-27 06:11:06','188243415207510016','2022-04-27 08:44:40','89730635001757696'),(1624,218767711973408768,NULL,'MENU_GREEN_SCREEN','zh_CN','智慧环保',_binary '\0','2022-04-27 06:12:17','188243415207510016','2023-03-30 07:33:20','89730635001757696'),(1625,218767711973408768,NULL,'MENU_GREEN_SCREEN','zh_TW','智慧环保',_binary '\0','2022-04-27 06:12:17','188243415207510016','2023-03-30 07:33:20','89730635001757696'),(1626,218767711973408768,NULL,'MENU_GREEN_SCREEN','en_US','ENVIRONMENT',_binary '\0','2022-04-27 06:12:17','188243415207510016','2023-03-30 07:33:20','89730635001757696'),(1627,239746594734342144,NULL,'MENU_tlcp_index','zh_CN','首页',_binary '\0','2022-05-12 05:48:05','188243415207510016',NULL,NULL),(1628,239746594734342144,NULL,'MENU_tlcp_index','zh_TW','首页',_binary '\0','2022-05-12 05:48:05','188243415207510016',NULL,NULL),(1629,239746594734342144,NULL,'MENU_tlcp_index','en_US','首页',_binary '\0','2022-05-12 05:48:05','188243415207510016',NULL,NULL),(1630,NULL,393,'ACTION_OPTIMIZATION_VERSION','zh_CN','平台使用情况统计',_binary '\0','2022-05-13 02:13:57','1','2023-02-08 09:38:05','1'),(1631,NULL,393,'ACTION_OPTIMIZATION_VERSION','zh_TW','平臺使用情况統計',_binary '\0','2022-05-13 02:13:57','1','2023-02-08 09:38:05','1'),(1632,NULL,393,'ACTION_OPTIMIZATION_VERSION','en_US','Platform usage statistics',_binary '\0','2022-05-13 02:13:57','1','2023-02-08 09:38:05','1'),(1636,NULL,689,'MENU_POI_CHANGE_TYPE','zh_CN','编辑或新增类型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1637,NULL,689,'MENU_POI_CHANGE_TYPE','zh_TW','編輯或新增類型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1638,NULL,689,'MENU_POI_CHANGE_TYPE','en_US','Edit or add types',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1639,NULL,689,'ACTION_POI_DELETE_POINT','zh_CN','删除兴趣点',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1640,NULL,689,'ACTION_POI_DELETE_POINT','zh_TW','刪除興趣點',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1641,NULL,689,'ACTION_POI_DELETE_POINT','en_US','Delete POI',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1642,NULL,689,'ACTION_POI_ADD_EDIT_POI','zh_CN','新建或编辑兴趣点',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1643,NULL,689,'ACTION_POI_ADD_EDIT_POI','zh_TW','新建或編輯興趣點',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1644,NULL,689,'ACTION_POI_ADD_EDIT_POI','en_US','Create or edit a POI',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1645,NULL,689,'ACTION_POI_DELETE_TYPE','zh_CN','删除类型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1646,NULL,689,'ACTION_POI_DELETE_TYPE','zh_TW','刪除類型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1647,NULL,689,'ACTION_POI_DELETE_TYPE','en_US','Delete type',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1648,NULL,689,'ACTION_POI_IMPORT_POINTS','zh_CN','导入兴趣点',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1649,NULL,689,'ACTION_POI_IMPORT_POINTS','zh_TW','導入興趣點',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1650,NULL,689,'ACTION_POI_IMPORT_POINTS','en_US','Import points of interest',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1651,NULL,689,'ACTION_POI_DOWNLOAD_TEMPLATE','zh_CN','下载类型模板文件',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1652,NULL,689,'ACTION_POI_DOWNLOAD_TEMPLATE','zh_TW','下載類型模板文件',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1653,NULL,689,'ACTION_POI_DOWNLOAD_TEMPLATE','en_US','Download type template file',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1654,244750226999476224,NULL,'MENU_PARK_SCREEN','en_US','Park',_binary '\0','2022-05-26 01:10:40','1','2022-06-23 03:05:35','188243415207510016'),(1655,244750226999476224,NULL,'MENU_PARK_SCREEN','zh_CN','园区巡检',_binary '\0','2022-05-26 01:10:40','1','2022-06-23 03:05:35','188243415207510016'),(1656,244750226999476224,NULL,'MENU_PARK_SCREEN','zh_TW','園區巡檢',_binary '\0','2022-05-26 01:10:40','1','2022-06-23 03:05:35','188243415207510016'),(1657,NULL,NULL,'MENU_PLAYBACK','zh_CN','数据回放',_binary '\0','2022-05-26 01:15:48','1','2024-04-30 07:19:55','89730635001757696'),(1658,NULL,NULL,'MENU_PLAYBACK','zh_TW','數據回放',_binary '\0','2022-05-26 01:15:48','1','2024-04-30 07:19:55','89730635001757696'),(1659,NULL,NULL,'MENU_PLAYBACK','en_US','Data playback',_binary '\0','2022-05-26 01:15:48','1','2024-04-30 07:19:55','89730635001757696'),(1660,245144849337024512,NULL,'MENU_TDOA','zh_CN','tdoa',_binary '\0','2022-05-27 03:51:17','188243415207510016',NULL,NULL),(1661,245144849337024512,NULL,'MENU_TDOA','zh_TW','tdoa',_binary '\0','2022-05-27 03:51:17','188243415207510016',NULL,NULL),(1662,245144849337024512,NULL,'MENU_TDOA','en_US','tdoa',_binary '\0','2022-05-27 03:51:17','188243415207510016',NULL,NULL),(1663,NULL,598,'ACTION_AI_CARNUMBER_BPERM','zh_CN','车牌查找',_binary '\0','2022-06-08 05:48:52','1','2022-07-08 06:54:57','1'),(1664,NULL,598,'ACTION_AI_CARNUMBER_BPERM','zh_TW','車牌查找',_binary '\0','2022-06-08 05:48:52','1','2022-07-08 06:54:57','1'),(1665,NULL,598,'ACTION_AI_CARNUMBER_BPERM','en_US','License plate search',_binary '\0','2022-06-08 05:48:52','1','2022-07-08 06:54:57','1'),(1666,NULL,486,'ACTION_3D_HISTORY_TRACK','zh_CN','三维航线历史轨迹',_binary '\0','2022-06-09 01:21:55','1','2022-06-09 05:45:07','1'),(1667,NULL,486,'ACTION_3D_HISTORY_TRACK','zh_TW','三位航綫歷史軌跡',_binary '\0','2022-06-09 01:21:55','1','2022-06-09 05:45:07','1'),(1668,NULL,486,'ACTION_3D_HISTORY_TRACK','en_US','3DHistoryTrack',_binary '\0','2022-06-09 01:21:55','1','2022-06-09 05:45:07','1'),(1669,249904145316708352,NULL,'MENU_risk_index','zh_CN','首页',_binary '\0','2022-06-09 06:30:32','188243415207510016',NULL,NULL),(1670,249904145316708352,NULL,'MENU_risk_index','zh_TW','首页',_binary '\0','2022-06-09 06:30:32','188243415207510016',NULL,NULL),(1671,249904145316708352,NULL,'MENU_risk_index','en_US','首页',_binary '\0','2022-06-09 06:30:32','188243415207510016',NULL,NULL),(1672,51700779089657856,395,'MENU_IMAGE_BRIDGE','en_US','Bridge Analysis',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1673,51700779089657856,395,'MENU_IMAGE_BRIDGE','zh_CN','桥梁分析',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1674,51700779089657856,395,'MENU_IMAGE_BRIDGE','zh_TW','橋梁分析',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1675,51700779089657856,702,'MENU_IMAGE_BRIDGE_SLOPE','en_US','Slope detection',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:33','1'),(1676,51700779089657856,702,'MENU_IMAGE_BRIDGE_SLOPE','zh_CN','边坡缺陷检测',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:33','1'),(1677,51700779089657856,702,'MENU_IMAGE_BRIDGE_SLOPE','zh_TW','邊坡缺陷檢測',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:33','1'),(1678,51700779089657856,702,'MENU_IMAGE_BRIDGE_UNDER','en_US','Under bridge inspection',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1679,51700779089657856,702,'MENU_IMAGE_BRIDGE_UNDER','zh_CN','桥下空间违章识别',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1680,51700779089657856,702,'MENU_IMAGE_BRIDGE_UNDER','zh_TW','橋下空間違章識別',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1681,51700779089657856,702,'MENU_IMAGE_BRIDGE_JOINT','en_US','Expansion joint detection',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1682,51700779089657856,702,'MENU_IMAGE_BRIDGE_JOINT','zh_CN','伸缩缝缺陷检测',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1683,51700779089657856,702,'MENU_IMAGE_BRIDGE_JOINT','zh_TW','伸縮縫缺陷檢測',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1684,224170096870817792,669,'MENU_AIRSPACE_PLAN','en_US','Airspace plann',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1685,224170096870817792,669,'MENU_AIRSPACE_PLAN','zh_CN','空域规划',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1686,224170096870817792,669,'MENU_AIRSPACE_PLAN','zh_TW','空域規劃',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1687,224170096870817792,706,'MENU_AIRSPACE_PLAN_APPROVAL','en_US','Plan approval',_binary '\0','2022-06-22 07:54:11','1','2023-05-19 03:35:23','188243415207510016'),(1688,224170096870817792,706,'MENU_AIRSPACE_PLAN_APPROVAL','zh_CN','计划审批',_binary '\0','2022-06-22 07:54:11','1','2023-05-19 03:35:23','188243415207510016'),(1689,224170096870817792,706,'MENU_AIRSPACE_PLAN_APPROVAL','zh_TW','計劃審批',_binary '\0','2022-06-22 07:54:11','1','2023-05-19 03:35:23','188243415207510016'),(1690,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_EDIT','en_US','Approval',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1691,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_EDIT','zh_CN','审批',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1692,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_EDIT','zh_TW','審批',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1693,224170096870817792,706,'MENU_SUPERVISION_AIRSPACE_QUERY','en_US','Airspace application',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1694,224170096870817792,706,'MENU_SUPERVISION_AIRSPACE_QUERY','zh_CN','空域申请',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1695,224170096870817792,706,'MENU_SUPERVISION_AIRSPACE_QUERY','zh_TW','空域申請',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1696,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT','en_US','AddEdit',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1697,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT','zh_CN','新建编辑',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1698,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT','zh_TW','新建編輯',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1699,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_DELETE','en_US','Delete',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1700,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_DELETE','zh_CN','删除',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1701,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_DELETE','zh_TW','刪除',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1702,224170096870817792,706,'MENU_SUPERVISION_REGION','en_US','Regional Plan',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1703,224170096870817792,706,'MENU_SUPERVISION_REGION','zh_CN','区域规划',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1704,224170096870817792,706,'MENU_SUPERVISION_REGION','zh_TW','區域規劃',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1705,224170096870817792,712,'ACTION_SUPERVISION_REGION_ADD_EDIT','en_US','AddEdit',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1706,224170096870817792,712,'ACTION_SUPERVISION_REGION_ADD_EDIT','zh_CN','新建编辑',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1707,224170096870817792,712,'ACTION_SUPERVISION_REGION_ADD_EDIT','zh_TW','新建編輯',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1708,224170096870817792,712,'ACTION_SUPERVISION_REGION_DELETE','en_US','Delete',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1709,224170096870817792,712,'ACTION_SUPERVISION_REGION_DELETE','zh_CN','删除',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1710,224170096870817792,712,'ACTION_SUPERVISION_REGION_DELETE','zh_TW','刪除',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1711,254659367012401152,NULL,'MENU_INDEX_5G','zh_CN','首页',_binary '\0','2022-06-22 09:32:12','188243415207510016',NULL,NULL),(1712,254659367012401152,NULL,'MENU_INDEX_5G','zh_TW','首页',_binary '\0','2022-06-22 09:32:12','188243415207510016',NULL,NULL),(1713,254659367012401152,NULL,'MENU_INDEX_5G','en_US','首页',_binary '\0','2022-06-22 09:32:12','188243415207510016',NULL,NULL),(1717,257530550208692224,NULL,'MENU_COMMUNICATION_SCREEN','en_US','应急保障',_binary '\0','2022-06-30 09:22:07','1','2024-09-29 02:10:12','1'),(1718,257530550208692224,NULL,'MENU_COMMUNICATION_SCREEN','zh_CN','应急保障',_binary '\0','2022-06-30 09:22:07','1','2024-09-29 02:10:12','1'),(1719,257530550208692224,NULL,'MENU_COMMUNICATION_SCREEN','zh_TW','应急保障',_binary '\0','2022-06-30 09:22:07','1','2024-09-29 02:10:12','1'),(1720,NULL,NULL,'MENU_PILOT','zh_CN','飞手管理',_binary '\0','2022-07-08 06:50:58','188243415207510016','2022-07-08 06:51:10','1'),(1721,NULL,NULL,'MENU_PILOT','zh_TW','飛手管理',_binary '\0','2022-07-08 06:50:58','188243415207510016','2022-07-08 06:51:10','1'),(1722,NULL,NULL,'MENU_PILOT','en_US','Pilot management',_binary '\0','2022-07-08 06:50:58','188243415207510016','2022-07-08 06:51:10','1'),(1723,NULL,170,'MENU_PILOT_MESSAGE_SEARCH','zh_CN','飞手信息查询',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1724,NULL,170,'MENU_PILOT_MESSAGE_SEARCH','zh_TW','飛手信息查詢',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1725,NULL,170,'MENU_PILOT_MESSAGE_SEARCH','en_US','Pilot message search',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1726,NULL,718,'ACTION_PILOT_MESSAGE_LIST','zh_CN','飞手信息查询',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1727,NULL,718,'ACTION_PILOT_MESSAGE_LIST','zh_TW','飛手信息查詢',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1728,NULL,718,'ACTION_PILOT_MESSAGE_LIST','en_US','Pilot message info',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1729,NULL,718,'ACTION_PILOT_MESSAGE_AUDIT','zh_CN','飞手信息审核',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1730,NULL,718,'ACTION_PILOT_MESSAGE_AUDIT','zh_TW','飛手信息審核',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1731,NULL,718,'ACTION_PILOT_MESSAGE_AUDIT','en_US','Pilot message audit',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1732,NULL,718,'MENU__PILOT_ADD','zh_CN','新建飞手',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1733,NULL,718,'MENU__PILOT_ADD','zh_TW','新建飛手',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1734,NULL,718,'MENU__PILOT_ADD','en_US','addPilot',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1735,NULL,718,'MENU_PILOT_EDIT','zh_CN','编辑',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1736,NULL,718,'MENU_PILOT_EDIT','zh_TW','編輯',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1737,NULL,718,'MENU_PILOT_EDIT','en_US','editPilot',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1738,NULL,718,'MENU_PILOT_DETAIL','zh_CN','详情',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1739,NULL,718,'MENU_PILOT_DETAIL','zh_TW','詳情',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1740,NULL,718,'MENU_PILOT_DETAIL','en_US','detailPilot',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1741,51693249240236032,NULL,'MENU_EMERGENCY_SCREEN','en_US','应急保障',_binary '\0','2022-07-08 06:53:54','1','2022-07-25 08:30:07','1'),(1742,51693249240236032,NULL,'MENU_EMERGENCY_SCREEN','zh_CN','应急保障',_binary '\0','2022-07-08 06:53:54','1','2022-07-25 08:30:07','1'),(1743,51693249240236032,NULL,'MENU_EMERGENCY_SCREEN','zh_TW','应急保障',_binary '\0','2022-07-08 06:53:54','1','2022-07-25 08:30:07','1'),(1744,262610103520198656,NULL,'MENU_fire_emergency','zh_CN','防火应急',_binary '\0','2022-07-14 08:02:49','188243415207510016',NULL,NULL),(1745,262610103520198656,NULL,'MENU_fire_emergency','zh_TW','防火应急',_binary '\0','2022-07-14 08:02:49','188243415207510016',NULL,NULL),(1746,262610103520198656,NULL,'MENU_fire_emergency','en_US','防火应急',_binary '\0','2022-07-14 08:02:49','188243415207510016',NULL,NULL),(1747,266603863711154176,NULL,'MENU_INFRASTRUCTURE_SCREEN','en_US','screen',_binary '\0','2022-07-25 08:29:07','1','2022-07-27 09:24:40','1'),(1748,266603863711154176,NULL,'MENU_INFRASTRUCTURE_SCREEN','zh_CN','数据大屏',_binary '\0','2022-07-25 08:29:07','1','2022-07-27 09:24:40','1'),(1749,266603863711154176,NULL,'MENU_INFRASTRUCTURE_SCREEN','zh_TW','数据大屏',_binary '\0','2022-07-25 08:29:07','1','2022-07-27 09:24:40','1'),(1753,266603863711154176,NULL,'MENU_INFRASTRUCTURE_BOOK','en_US','Standing book',_binary '\0','2022-07-27 09:25:35','1',NULL,NULL),(1754,266603863711154176,NULL,'MENU_INFRASTRUCTURE_BOOK','zh_CN','设施台账',_binary '\0','2022-07-27 09:25:35','1',NULL,NULL),(1755,266603863711154176,NULL,'MENU_INFRASTRUCTURE_BOOK','zh_TW','設施臺賬',_binary '\0','2022-07-27 09:25:35','1',NULL,NULL),(1756,NULL,NULL,'MENU_SCENE_SIMULATION','zh_CN','场景模拟',_binary '\0','2022-08-04 10:54:23','1','2022-10-13 02:35:22','1'),(1757,NULL,NULL,'MENU_SCENE_SIMULATION','zh_TW','場景模擬',_binary '\0','2022-08-04 10:54:23','1','2022-10-13 02:35:22','1'),(1758,NULL,NULL,'MENU_SCENE_SIMULATION','en_US','scene Simulation',_binary '\0','2022-08-04 10:54:23','1','2022-10-13 02:35:22','1'),(1759,273132440472518656,NULL,'MENU_nematode','zh_CN','首页',_binary '\0','2022-08-12 08:53:23','188243415207510016',NULL,NULL),(1760,273132440472518656,NULL,'MENU_nematode','zh_TW','首页',_binary '\0','2022-08-12 08:53:23','188243415207510016',NULL,NULL),(1761,273132440472518656,NULL,'MENU_nematode','en_US','首页',_binary '\0','2022-08-12 08:53:23','188243415207510016',NULL,NULL),(1762,275322748887105536,NULL,'MENU_hub','zh_CN','哈勃首页',_binary '\0','2022-08-19 01:30:53','188243415207510016',NULL,NULL),(1763,275322748887105536,NULL,'MENU_hub','zh_TW','哈勃首页',_binary '\0','2022-08-19 01:30:53','188243415207510016',NULL,NULL),(1764,275322748887105536,NULL,'MENU_hub','en_US','哈勃首页',_binary '\0','2022-08-19 01:30:53','188243415207510016',NULL,NULL),(1765,275323102710202368,NULL,'MENU_latn','zh_CN','天巡',_binary '\0','2022-08-19 01:31:39','188243415207510016',NULL,NULL),(1766,275323102710202368,NULL,'MENU_latn','zh_TW','天巡',_binary '\0','2022-08-19 01:31:39','188243415207510016',NULL,NULL),(1767,275323102710202368,NULL,'MENU_latn','en_US','天巡',_binary '\0','2022-08-19 01:31:39','188243415207510016',NULL,NULL),(1768,279567198865850368,NULL,'MENU_VIDEO_PROCESS_CHOREOGRAPHER','en_US','Process choreographer',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1769,279567198865850368,NULL,'MENU_VIDEO_PROCESS_CHOREOGRAPHER','zh_CN','流程编排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1770,279567198865850368,NULL,'MENU_VIDEO_PROCESS_CHOREOGRAPHER','zh_TW','流程編排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1771,279567198865850368,735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST','en_US','Process Choreographer',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1772,279567198865850368,735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST','zh_CN','流程编排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1773,279567198865850368,735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST','zh_TW','流程編排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1774,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH','en_US','Search',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1775,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH','zh_CN','查询',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1776,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH','zh_TW','查詢',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1777,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD','en_US','Add',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1778,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD','zh_CN','新建流程',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1779,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD','zh_TW','新建流程',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1780,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1781,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1782,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE','zh_TW','批量刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1783,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL','en_US','Detail',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1784,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL','zh_CN','详情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1785,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL','zh_TW','詳情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1786,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT','en_US','Edit',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1787,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT','zh_CN','编辑',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1788,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT','zh_TW','編輯',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1789,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE','en_US','Delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1790,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE','zh_CN','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1791,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE','zh_TW','刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1792,279567198865850368,NULL,'MENU_VIDEO_PROCESS_MANAGE','en_US','Process task management',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1793,279567198865850368,NULL,'MENU_VIDEO_PROCESS_MANAGE','zh_CN','流程任务管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1794,279567198865850368,NULL,'MENU_VIDEO_PROCESS_MANAGE','zh_TW','流程任務管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1795,279567198865850368,743,'MENU_VIDEO_PROCESS_MANAGE_LIST','en_US','Process task management',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1796,279567198865850368,743,'MENU_VIDEO_PROCESS_MANAGE_LIST','zh_CN','流程任务管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1797,279567198865850368,743,'MENU_VIDEO_PROCESS_MANAGE_LIST','zh_TW','流程任務管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1798,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH','en_US','Search',_binary '\0','2022-08-30 03:01:04','1','2023-04-04 08:44:36','188243415207510016'),(1799,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH','zh_CN','查询',_binary '\0','2022-08-30 03:01:04','1','2023-04-04 08:44:36','188243415207510016'),(1800,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH','zh_TW','查詢',_binary '\0','2022-08-30 03:01:04','1','2023-04-04 08:44:36','188243415207510016'),(1801,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1802,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1803,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE','zh_TW','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1804,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_DELETE','en_US','Delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1805,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_DELETE','zh_CN','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1806,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_DELETE','zh_TW','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1807,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION','en_US','Start stop operation',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1808,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION','zh_CN','启动停止运行',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1809,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION','zh_TW','啟動停止運行',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1810,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_ADD','en_US','Add',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1811,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_ADD','zh_CN','新建任务',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1812,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_ADD','zh_TW','新建任务',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1813,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_DETAIL','en_US','Detail',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1814,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_DETAIL','zh_CN','详情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1815,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_DETAIL','zh_TW','詳情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1816,279567198865850368,NULL,'MENU_VIDEO_OPEN_INTERFACE','en_US','Open interface',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1817,279567198865850368,NULL,'MENU_VIDEO_OPEN_INTERFACE','zh_CN','开放接口',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1818,279567198865850368,NULL,'MENU_VIDEO_OPEN_INTERFACE','zh_TW','開放接口',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1819,279567198865850368,NULL,'MENU_VIDEO_DEVICE','en_US','Video device manage',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1820,279567198865850368,NULL,'MENU_VIDEO_DEVICE','zh_CN','视频设备管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1821,279567198865850368,NULL,'MENU_VIDEO_DEVICE','zh_TW','視頻設備管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1822,279567198865850368,752,'MENU_VIDEO_DEVICE_MANAGE','en_US','Video device manage',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1823,279567198865850368,752,'MENU_VIDEO_DEVICE_MANAGE','zh_CN','视频设备管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1824,279567198865850368,752,'MENU_VIDEO_DEVICE_MANAGE','zh_TW','視頻設備管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1825,279567198865850368,753,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH','en_US','Search',_binary '\0','2022-08-30 03:01:04','1','2023-03-27 07:57:09','89730635001757696'),(1826,279567198865850368,753,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH','zh_CN','查询',_binary '\0','2022-08-30 03:01:04','1','2023-03-27 07:57:09','89730635001757696'),(1827,279567198865850368,753,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH','zh_TW','查詢',_binary '\0','2022-08-30 03:01:04','1','2023-03-27 07:57:09','89730635001757696'),(1828,279567198865850368,753,'MENU_VIDEO_DEVICE_DETAIL','en_US','Detail',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1829,279567198865850368,753,'MENU_VIDEO_DEVICE_DETAIL','zh_CN','详情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1830,279567198865850368,753,'MENU_VIDEO_DEVICE_DETAIL','zh_TW','詳情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1831,279567198865850368,753,'ACTION_VIDEO_MANAGE_PLAYBACK','en_US','Video play back',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1832,279567198865850368,753,'ACTION_VIDEO_MANAGE_PLAYBACK','zh_CN','视频回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1833,279567198865850368,753,'ACTION_VIDEO_MANAGE_PLAYBACK','zh_TW','視頻回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1834,279567198865850368,753,'ACTION_VIDEO_MANAGE_DELETE','en_US','Delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1835,279567198865850368,753,'ACTION_VIDEO_MANAGE_DELETE','zh_CN','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1836,279567198865850368,753,'ACTION_VIDEO_MANAGE_DELETE','zh_TW','刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1837,279567198865850368,753,'MENU_VIDEO_DEVICE_EDIT','en_US','Edit',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1838,279567198865850368,753,'MENU_VIDEO_DEVICE_EDIT','zh_CN','编辑',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1839,279567198865850368,753,'MENU_VIDEO_DEVICE_EDIT','zh_TW','編輯',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1840,279567198865850368,753,'ACTION_VIDEO_MANAGE_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1841,279567198865850368,753,'ACTION_VIDEO_MANAGE_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1842,279567198865850368,753,'ACTION_VIDEO_MANAGE_BATCH_DELETE','zh_TW','批量刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1843,279567198865850368,753,'MENU_VIDEO_DEVICE_ADD','en_US','Add',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1844,279567198865850368,753,'MENU_VIDEO_DEVICE_ADD','zh_CN','新建设备',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1845,279567198865850368,753,'MENU_VIDEO_DEVICE_ADD','zh_TW','新建设备',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1846,279567198865850368,NULL,'MENU_VIDEO_PLAYBACK','en_US','Video play back',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1847,279567198865850368,NULL,'MENU_VIDEO_PLAYBACK','zh_CN','视频回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1848,279567198865850368,NULL,'MENU_VIDEO_PLAYBACK','zh_TW','視頻回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1849,279567198865850368,761,'MENU_VIDEO_PLAYBACK_INDEX','en_US','Video play back',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1850,279567198865850368,761,'MENU_VIDEO_PLAYBACK_INDEX','zh_CN','视频回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1851,279567198865850368,761,'MENU_VIDEO_PLAYBACK_INDEX','zh_TW','視頻回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1852,NULL,NULL,'MENU_FLIGHT_RECORDS','zh_CN','飞行记录',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1853,NULL,NULL,'MENU_FLIGHT_RECORDS','zh_TW','飛行記錄',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1854,NULL,NULL,'MENU_FLIGHT_RECORDS','en_US','Flight records',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1855,NULL,763,'MENU_FLIGHT_RECORDS_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1856,NULL,763,'MENU_FLIGHT_RECORDS_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1857,NULL,763,'MENU_FLIGHT_RECORDS_DETAIL','en_US','Detai',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1858,NULL,764,'ACTION_FLIGHT_RECORDS_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1859,NULL,764,'ACTION_FLIGHT_RECORDS_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1860,NULL,764,'ACTION_FLIGHT_RECORDS_DETAIL','en_US','Detail',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1861,NULL,764,'ACTION_FLIGHT_RECORDS_EXPORT','zh_CN','导出通信名单',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1862,NULL,764,'ACTION_FLIGHT_RECORDS_EXPORT','zh_TW','导出通信名单',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1863,NULL,764,'ACTION_FLIGHT_RECORDS_EXPORT','en_US','export',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1864,NULL,763,'ACTION_FLIGHT_RECORDS_SEARCH','zh_CN','查询',_binary '\0','2022-09-20 08:30:36','1','2023-09-08 02:25:47','199120334480211968'),(1865,NULL,763,'ACTION_FLIGHT_RECORDS_SEARCH','zh_TW','查询',_binary '\0','2022-09-20 08:30:36','1','2023-09-08 02:25:47','199120334480211968'),(1866,NULL,763,'ACTION_FLIGHT_RECORDS_SEARCH','en_US','search',_binary '\0','2022-09-20 08:30:36','1','2023-09-08 02:25:47','199120334480211968'),(1867,NULL,763,'ACTION_FLIGHT_RECORDS_DELETE','zh_CN','删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1868,NULL,763,'ACTION_FLIGHT_RECORDS_DELETE','zh_TW','删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1869,NULL,763,'ACTION_FLIGHT_RECORDS_DELETE','en_US','delete',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1870,NULL,763,'ACTION_FLIGHT_RECORDS_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1871,NULL,763,'ACTION_FLIGHT_RECORDS_BATCH_DELETE','zh_TW','批量删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1872,NULL,763,'ACTION_FLIGHT_RECORDS_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1873,NULL,486,'ACTION_MISSION_FILE_UPLOAD','zh_CN','文件上传',_binary '\0','2022-09-20 08:30:52','1','2022-09-21 03:12:16','1'),(1874,NULL,486,'ACTION_MISSION_FILE_UPLOAD','zh_TW','文件上傳',_binary '\0','2022-09-20 08:30:52','1','2022-09-21 03:12:16','1'),(1875,NULL,486,'ACTION_MISSION_FILE_UPLOAD','en_US','upload',_binary '\0','2022-09-20 08:30:52','1','2022-09-21 03:12:16','1'),(1876,NULL,NULL,'MENU_MISSION_DISPATCH','zh_CN','任务派发管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1877,NULL,NULL,'MENU_MISSION_DISPATCH','zh_TW','任務派發管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1878,NULL,NULL,'MENU_MISSION_DISPATCH','en_US','Mission dispatch management',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1879,NULL,771,'MENU_MISSION_DISPATCH_MY_AGENT','zh_CN','我的待办',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1880,NULL,771,'MENU_MISSION_DISPATCH_MY_AGENT','zh_TW','我的待辦',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1881,NULL,771,'MENU_MISSION_DISPATCH_MY_AGENT','en_US','My todo',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1882,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1883,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1884,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL','en_US','Detail',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1885,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_LIST','zh_CN','列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1886,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_LIST','zh_TW','列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1887,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_LIST','en_US','List',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1888,NULL,771,'MENU_MISSION_DISPATCH_SETTING','zh_CN','配置管理',_binary '\0','2022-09-20 08:32:50','1','2022-11-03 08:57:05','188243415207510016'),(1889,NULL,771,'MENU_MISSION_DISPATCH_SETTING','zh_TW','配置管理',_binary '\0','2022-09-20 08:32:50','1','2022-11-03 08:57:05','188243415207510016'),(1890,NULL,771,'MENU_MISSION_DISPATCH_SETTING','en_US','ConfigurationManagement',_binary '\0','2022-09-20 08:32:50','1','2022-11-03 08:57:05','188243415207510016'),(1891,NULL,775,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL','zh_CN','接口人配置列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1892,NULL,775,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL','zh_TW','接口人配置列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1893,NULL,775,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL','en_US','Interface Setting List',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1894,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT','zh_CN','接口人编辑',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1895,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT','zh_TW','接口人編輯',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1896,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT','en_US','Interface Edit',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1897,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT','zh_CN','任务类型编辑',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1898,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT','zh_TW','任務類型編輯',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1899,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT','en_US','Mission Edit',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1900,NULL,775,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL','zh_CN','任务类型列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1901,NULL,775,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL','zh_TW','任務類型列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1902,NULL,775,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL','en_US','Mission Type List',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1903,NULL,771,'MENU_MISSION_DISPATCH_MY_TASK','zh_CN','任务管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1904,NULL,771,'MENU_MISSION_DISPATCH_MY_TASK','zh_TW','任務管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1905,NULL,771,'MENU_MISSION_DISPATCH_MY_TASK','en_US','Task management',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1906,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_ADD','zh_CN','新建任务',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1907,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_ADD','zh_TW','新建任務',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1908,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_ADD','en_US','New task',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1909,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1910,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1911,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL','en_US','Detail',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1912,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_LIST','zh_CN','列表',_binary '\0','2022-09-20 08:32:51','1','2022-10-25 09:52:50','1'),(1913,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_LIST','zh_TW','列表',_binary '\0','2022-09-20 08:32:51','1','2022-10-25 09:52:50','1'),(1914,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_LIST','en_US','List',_binary '\0','2022-09-20 08:32:51','1','2022-10-25 09:52:50','1'),(1915,257530550208692224,NULL,'MENU_COMMUNICATION_NAME_LIST','en_US','Name List',_binary '\0','2022-09-20 08:33:32','1','2022-11-09 08:57:37','1'),(1916,257530550208692224,NULL,'MENU_COMMUNICATION_NAME_LIST','zh_CN','名单管理',_binary '\0','2022-09-20 08:33:32','1','2022-11-09 08:57:37','1'),(1917,257530550208692224,NULL,'MENU_COMMUNICATION_NAME_LIST','zh_TW','名單管理',_binary '\0','2022-09-20 08:33:32','1','2022-11-09 08:57:37','1'),(1918,224170096870817792,NULL,'MENU_SUPERVISION','zh_CN','低空空域监管平台',_binary '\0','2022-09-20 08:37:25','188243415207510016','2022-09-20 08:37:43','1'),(1919,224170096870817792,NULL,'MENU_SUPERVISION','zh_TW','低空空域監管平台',_binary '\0','2022-09-20 08:37:25','188243415207510016','2022-09-20 08:37:43','1'),(1920,224170096870817792,NULL,'MENU_SUPERVISION','en_US','Lowaltitude airspace supervision platform',_binary '\0','2022-09-20 08:37:25','188243415207510016','2022-09-20 08:37:43','1'),(1921,224170096870817792,669,'MENU_SUPERVISION_FLIGHT','en_US','Flight safety supervision',_binary '\0','2022-09-20 08:37:43','1','2023-04-12 08:00:50','1'),(1922,224170096870817792,669,'MENU_SUPERVISION_FLIGHT','zh_CN','飞行安全监管',_binary '\0','2022-09-20 08:37:43','1','2023-04-12 08:00:50','1'),(1923,224170096870817792,669,'MENU_SUPERVISION_FLIGHT','zh_TW','飛行安全監管',_binary '\0','2022-09-20 08:37:43','1','2023-04-12 08:00:50','1'),(1924,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_MONITOR','en_US','Flight monitor',_binary '\0','2022-09-20 08:37:43','1','2024-02-22 08:35:11','89730635001757696'),(1925,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_MONITOR','zh_CN','三维监视',_binary '\0','2022-09-20 08:37:43','1','2024-02-22 08:35:11','89730635001757696'),(1926,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_MONITOR','zh_TW','三維監視',_binary '\0','2022-09-20 08:37:43','1','2024-02-22 08:35:11','89730635001757696'),(1927,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_CONFLICT','en_US','flight conflict judgment',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1928,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_CONFLICT','zh_CN','飞行冲突判断',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1929,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_CONFLICT','zh_TW','飛行沖突判斷',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1930,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_ANALYSIS','en_US','flight analysis',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1931,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_ANALYSIS','zh_CN','飞行分析',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1932,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_ANALYSIS','zh_TW','飛行分析',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1933,224170096870817792,669,'MENU_SUPERVISION_SCREEN','en_US','Big data screen',_binary '\0','2022-09-20 08:37:44','1','2023-05-04 09:43:01','1'),(1934,224170096870817792,669,'MENU_SUPERVISION_SCREEN','zh_CN','数据大屏',_binary '\0','2022-09-20 08:37:44','1','2023-05-04 09:43:01','1'),(1935,224170096870817792,669,'MENU_SUPERVISION_SCREEN','zh_TW','數據大屏',_binary '\0','2022-09-20 08:37:44','1','2023-05-04 09:43:01','1'),(1936,224170096870817792,669,'MENU_SUPERVISION_COUNTER','en_US','Monitoring countermeasures',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1937,224170096870817792,669,'MENU_SUPERVISION_COUNTER','zh_CN','监控反制',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1938,224170096870817792,669,'MENU_SUPERVISION_COUNTER','zh_TW','監控反制',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1939,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-09-08 02:39:07','199120334480211968'),(1940,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-09-08 02:39:07','199120334480211968'),(1941,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-09-08 02:39:07','199120334480211968'),(1942,224170096870817792,709,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-12-26 08:17:04','89730635001757696'),(1943,224170096870817792,709,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-12-26 08:17:04','89730635001757696'),(1944,224170096870817792,709,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-12-26 08:17:04','89730635001757696'),(1945,224170096870817792,712,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1946,224170096870817792,712,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1947,224170096870817792,712,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1948,224170096870817792,669,'MENU_SUPERVISION_CUSTOMER','en_US','Customer management',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1949,224170096870817792,669,'MENU_SUPERVISION_CUSTOMER','zh_CN','客户管理',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1950,224170096870817792,669,'MENU_SUPERVISION_CUSTOMER','zh_TW','客戶管理',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1951,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1952,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1953,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1954,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_EDIT','en_US','Edit',_binary '\0','2022-09-20 08:37:44','1','2023-08-17 09:21:26','188243415207510016'),(1955,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_EDIT','zh_CN','编辑',_binary '\0','2022-09-20 08:37:44','1','2023-08-17 09:21:26','188243415207510016'),(1956,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_EDIT','zh_TW','編輯',_binary '\0','2022-09-20 08:37:44','1','2023-08-17 09:21:26','188243415207510016'),(1957,NULL,595,'MENU_AI_TRANSMISSION_BPERM','zh_CN','输电识别',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1958,NULL,595,'MENU_AI_TRANSMISSION_BPERM','zh_TW','輸電識別',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1959,NULL,595,'MENU_AI_TRANSMISSION_BPERM','en_US','Transmission identification',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1960,NULL,800,'ACTION_AI_TRANSMISSION_BPERM','zh_CN','输电识别',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1961,NULL,800,'ACTION_AI_TRANSMISSION_BPERM','zh_TW','輸電識別',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1962,NULL,800,'ACTION_AI_TRANSMISSION_BPERM','en_US','Transmission identification',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1963,256733978294222848,NULL,'MENU_tudou_sensing','zh_CN','智能遥感',_binary '\0','2022-09-22 01:31:25','188243415207510016',NULL,NULL),(1964,256733978294222848,NULL,'MENU_tudou_sensing','zh_TW','智能遙感',_binary '\0','2022-09-22 01:31:25','188243415207510016',NULL,NULL),(1965,256733978294222848,NULL,'MENU_tudou_sensing','en_US','Intelligent remote sens',_binary '\0','2022-09-22 01:31:25','188243415207510016',NULL,NULL),(1966,287875985993367552,NULL,'MENU_tudou_3d','zh_CN','实景三维',_binary '\0','2022-09-22 01:32:09','188243415207510016',NULL,NULL),(1967,287875985993367552,NULL,'MENU_tudou_3d','zh_TW','實景三維',_binary '\0','2022-09-22 01:32:09','188243415207510016',NULL,NULL),(1968,287875985993367552,NULL,'MENU_tudou_3d','en_US','Reality 3D',_binary '\0','2022-09-22 01:32:09','188243415207510016',NULL,NULL),(1969,NULL,486,'MENU_SUB_MISSION_DETAIL','zh_CN','子作业详情',_binary '\0','2022-10-13 02:35:32','1','2022-10-25 09:52:22','1'),(1970,NULL,486,'MENU_SUB_MISSION_DETAIL','zh_TW','子工作詳情',_binary '\0','2022-10-13 02:35:32','1','2022-10-25 09:52:22','1'),(1971,NULL,486,'MENU_SUB_MISSION_DETAIL','en_US','Sub job details',_binary '\0','2022-10-13 02:35:32','1','2022-10-25 09:52:22','1'),(1972,NULL,486,'ACTION_MISSION_FILE_DELETE','zh_CN','文件删除',_binary '\0','2022-10-13 02:35:32','1','2023-09-27 10:02:48','1'),(1973,NULL,486,'ACTION_MISSION_FILE_DELETE','zh_TW','文件刪除',_binary '\0','2022-10-13 02:35:32','1','2023-09-27 10:02:48','1'),(1974,NULL,486,'ACTION_MISSION_FILE_DELETE','en_US','delete file',_binary '\0','2022-10-13 02:35:32','1','2023-09-27 10:02:48','1'),(1975,51700779089657856,397,'MENU_IMAGE_POSTURE','en_US','Posture detection',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1976,51700779089657856,397,'MENU_IMAGE_POSTURE','zh_CN','人体姿态行为检测',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1977,51700779089657856,397,'MENU_IMAGE_POSTURE','zh_TW','人體姿態行爲檢測',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1978,51700779089657856,397,'MENU_IMAGE_COMMON','en_US','Common Capability',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1979,51700779089657856,397,'MENU_IMAGE_COMMON','zh_CN','通用能力识别',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1980,51700779089657856,397,'MENU_IMAGE_COMMON','zh_TW','通用能力識別',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1981,51700779089657856,395,'MENU_IMAGE_DEBRIS_FLOW','en_US','Debris flow',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1982,51700779089657856,395,'MENU_IMAGE_DEBRIS_FLOW','zh_CN','泥石流识别',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1983,51700779089657856,395,'MENU_IMAGE_DEBRIS_FLOW','zh_TW','泥石流識別',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1984,51700779089657856,807,'MENU_IMAGE_DEBRIS_FLOW_DETAIL','en_US','Debris flow identification',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1985,51700779089657856,807,'MENU_IMAGE_DEBRIS_FLOW_DETAIL','zh_CN','泥石流识别',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1986,51700779089657856,807,'MENU_IMAGE_DEBRIS_FLOW_DETAIL','zh_TW','泥石流識別',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1987,279567198865850368,NULL,'MENU_VIDEO_SYSTEM_MANAGE','en_US','System Manage',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1988,279567198865850368,NULL,'MENU_VIDEO_SYSTEM_MANAGE','zh_CN','系统管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1989,279567198865850368,NULL,'MENU_VIDEO_SYSTEM_MANAGE','zh_TW','系統管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1990,279567198865850368,809,'MENU_VIDEO_SYSTEM_MANAGE_LIST','en_US','System Manage',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1991,279567198865850368,809,'MENU_VIDEO_SYSTEM_MANAGE_LIST','zh_CN','系统管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1992,279567198865850368,809,'MENU_VIDEO_SYSTEM_MANAGE_LIST','zh_TW','系統管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1993,279567198865850368,810,'ACTION_VIDEO_COMPOSE_SEARCH','en_US','视频合成任务查询',_binary '\0','2022-10-27 08:10:11','1','2023-04-04 08:45:03','188243415207510016'),(1994,279567198865850368,810,'ACTION_VIDEO_COMPOSE_SEARCH','zh_CN','视频合成任务查询',_binary '\0','2022-10-27 08:10:11','1','2023-04-04 08:45:03','188243415207510016'),(1995,279567198865850368,810,'ACTION_VIDEO_COMPOSE_SEARCH','zh_TW','视频合成任务查询',_binary '\0','2022-10-27 08:10:11','1','2023-04-04 08:45:03','188243415207510016'),(1996,279567198865850368,810,'ACTION_VIDEO_COMPOSE_MERGE','en_US','合成任务',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1997,279567198865850368,810,'ACTION_VIDEO_COMPOSE_MERGE','zh_CN','合成任务',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1998,279567198865850368,810,'ACTION_VIDEO_COMPOSE_MERGE','zh_TW','合成任务',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1999,279567198865850368,810,'ACTION_VIDEO_COMPOSE_DEL','en_US','视频合成任务删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2000,279567198865850368,810,'ACTION_VIDEO_COMPOSE_DEL','zh_CN','视频合成任务删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2001,279567198865850368,810,'ACTION_VIDEO_COMPOSE_DEL','zh_TW','视频合成任务删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2002,279567198865850368,810,'ACTION_VIDEO_SLICE_SEARCH','en_US','视频分片管理查询',_binary '\0','2022-10-27 08:10:12','1','2023-02-15 06:17:31','89730635001757696'),(2003,279567198865850368,810,'ACTION_VIDEO_SLICE_SEARCH','zh_CN','视频分片管理查询',_binary '\0','2022-10-27 08:10:12','1','2023-02-15 06:17:31','89730635001757696'),(2004,279567198865850368,810,'ACTION_VIDEO_SLICE_SEARCH','zh_TW','视频分片管理查询',_binary '\0','2022-10-27 08:10:12','1','2023-02-15 06:17:31','89730635001757696'),(2005,279567198865850368,810,'ACTION_VIDEO_SLICE_DEL','en_US','视频分片管理删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2006,279567198865850368,810,'ACTION_VIDEO_SLICE_DEL','zh_CN','视频分片管理删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2007,279567198865850368,810,'ACTION_VIDEO_SLICE_DEL','zh_TW','视频分片管理删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2008,279567198865850368,NULL,'MENU_VIDEO_LIVE_MANAGE','en_US','Live broadcast management',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2009,279567198865850368,NULL,'MENU_VIDEO_LIVE_MANAGE','zh_CN','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2010,279567198865850368,NULL,'MENU_VIDEO_LIVE_MANAGE','zh_TW','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2011,279567198865850368,816,'MENU_VIDEO_LIVE_MANAGE_LIST','en_US','Live broadcast management',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2012,279567198865850368,816,'MENU_VIDEO_LIVE_MANAGE_LIST','zh_CN','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2013,279567198865850368,816,'MENU_VIDEO_LIVE_MANAGE_LIST','zh_TW','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2014,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SEARCH','en_US','Search',_binary '\0','2022-10-27 08:10:12','1','2023-04-04 08:44:16','188243415207510016'),(2015,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SEARCH','zh_CN','查询',_binary '\0','2022-10-27 08:10:12','1','2023-04-04 08:44:16','188243415207510016'),(2016,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SEARCH','zh_TW','查詢',_binary '\0','2022-10-27 08:10:12','1','2023-04-04 08:44:16','188243415207510016'),(2017,279567198865850368,817,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2018,279567198865850368,817,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2019,279567198865850368,817,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE','zh_TW','批量删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2020,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_DELETE','en_US','Delete',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2021,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_DELETE','zh_CN','删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2022,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_DELETE','zh_TW','删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2023,279567198865850368,817,'MENU_VIDEO_LIVE_MANAGE_ADD','en_US','Add',_binary '\0','2022-10-27 08:10:12','1','2023-04-03 09:43:05','188243415207510016'),(2024,279567198865850368,817,'MENU_VIDEO_LIVE_MANAGE_ADD','zh_CN','新建直播',_binary '\0','2022-10-27 08:10:12','1','2023-04-03 09:43:05','188243415207510016'),(2025,279567198865850368,817,'MENU_VIDEO_LIVE_MANAGE_ADD','zh_TW','新建直播',_binary '\0','2022-10-27 08:10:12','1','2023-04-03 09:43:05','188243415207510016'),(2026,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE','en_US','Enter live',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2027,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE','zh_CN','进入直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2028,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE','zh_TW','進入直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2029,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK','en_US','Playback',_binary '\0','2022-10-27 08:10:12','1','2023-03-27 07:38:41','89730635001757696'),(2030,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK','zh_CN','回放',_binary '\0','2022-10-27 08:10:12','1','2023-03-27 07:38:41','89730635001757696'),(2031,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK','zh_TW','重播',_binary '\0','2022-10-27 08:10:12','1','2023-03-27 07:38:41','89730635001757696'),(2032,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SHARE','en_US','Share',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2033,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SHARE','zh_CN','分享',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2034,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SHARE','zh_TW','分享',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2035,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_END','en_US','End live',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2036,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_END','zh_CN','结束直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2037,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_END','zh_TW','結束直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2038,NULL,358,'ACTION_CONTROL_MANAGE','zh_CN','控制权管理',_binary '\0','2022-11-09 09:00:33','1','2022-11-17 02:57:42','1'),(2039,NULL,358,'ACTION_CONTROL_MANAGE','zh_TW','控制權管理',_binary '\0','2022-11-09 09:00:33','1','2022-11-17 02:57:42','1'),(2040,NULL,358,'ACTION_CONTROL_MANAGE','en_US','Control management',_binary '\0','2022-11-09 09:00:33','1','2022-11-17 02:57:42','1'),(2041,51693249240236032,NULL,'MENU_EMERGENCY_RESOURCE_SHOW','zh_CN','资源展示',_binary '\0','2022-12-02 03:02:25','188243415207510016','2022-12-08 09:58:01','1'),(2042,51693249240236032,NULL,'MENU_EMERGENCY_RESOURCE_SHOW','zh_TW','資源展示',_binary '\0','2022-12-02 03:02:25','188243415207510016','2022-12-08 09:58:01','1'),(2043,51693249240236032,NULL,'MENU_EMERGENCY_RESOURCE_SHOW','en_US','Resource show',_binary '\0','2022-12-02 03:02:25','188243415207510016','2022-12-08 09:58:01','1'),(2044,NULL,674,'MENU_COMPANY_MAP','zh_CN','地图设置',_binary '\0','2023-01-17 08:08:25','1','2024-03-19 08:09:19','1'),(2045,NULL,674,'MENU_COMPANY_MAP','zh_TW','地圖設置',_binary '\0','2023-01-17 08:08:25','1','2024-03-19 08:09:19','1'),(2046,NULL,674,'MENU_COMPANY_MAP','en_US','Map Setting',_binary '\0','2023-01-17 08:08:25','1','2024-03-19 08:09:19','1'),(2047,51700779089657856,396,'MENU_IMAGE_VEHICLE_INDENTIFY','en_US','Vehicle identification',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2048,51700779089657856,396,'MENU_IMAGE_VEHICLE_INDENTIFY','zh_CN','车辆识别',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2049,51700779089657856,396,'MENU_IMAGE_VEHICLE_INDENTIFY','zh_TW','車輛識別',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2050,51700779089657856,402,'MENU_IMAGE_BODY_DETECTION','en_US','Human detection',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2051,51700779089657856,402,'MENU_IMAGE_BODY_DETECTION','zh_CN','人体检测',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2052,51700779089657856,402,'MENU_IMAGE_BODY_DETECTION','zh_TW','人體檢測',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2053,51700779089657856,402,'MENU_IMAGE_CROWD_COUNT','en_US','Crowd count',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2054,51700779089657856,402,'MENU_IMAGE_CROWD_COUNT','zh_CN','人群计数',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2055,51700779089657856,402,'MENU_IMAGE_CROWD_COUNT','zh_TW','人群計數',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2056,51700779089657856,402,'MENU_IMAGE_PEDESTRIAN','en_US','Pedestrian cognition',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2057,51700779089657856,402,'MENU_IMAGE_PEDESTRIAN','zh_CN','行人认知',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2058,51700779089657856,402,'MENU_IMAGE_PEDESTRIAN','zh_TW','行人認知',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2062,NULL,833,'MENU_ACHIEVEMENT_2D','zh_CN','二维视图',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2063,NULL,833,'MENU_ACHIEVEMENT_2D','zh_TW','二維視圖',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2064,NULL,833,'MENU_ACHIEVEMENT_2D','en_US','2D View',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2065,NULL,834,'MENU_ACHIEVEMENT_2D_LIST','zh_CN','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2066,NULL,834,'MENU_ACHIEVEMENT_2D_LIST','zh_TW','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2067,NULL,834,'MENU_ACHIEVEMENT_2D_LIST','en_US','List',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2068,NULL,834,'ACTION_ACHIEVEMENT_2D_DELETE','zh_CN','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2069,NULL,834,'ACTION_ACHIEVEMENT_2D_DELETE','zh_TW','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2070,NULL,834,'ACTION_ACHIEVEMENT_2D_DELETE','en_US','Delete',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2071,NULL,834,'MENU_ACHIEVEMENT_2D_EDIT','zh_CN','编辑',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2072,NULL,834,'MENU_ACHIEVEMENT_2D_EDIT','zh_TW','編輯',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2073,NULL,834,'MENU_ACHIEVEMENT_2D_EDIT','en_US','Edit',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2074,NULL,834,'MENU_ACHIEVEMENT_2D_DETAIL','zh_CN','详情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2075,NULL,834,'MENU_ACHIEVEMENT_2D_DETAIL','zh_TW','詳情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2076,NULL,834,'MENU_ACHIEVEMENT_2D_DETAIL','en_US','Detail',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2077,NULL,834,'MENU_ACHIEVEMENT_2D_CONTRAST','zh_CN','对比',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2078,NULL,834,'MENU_ACHIEVEMENT_2D_CONTRAST','zh_TW','對比',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2079,NULL,834,'MENU_ACHIEVEMENT_2D_CONTRAST','en_US','Contrast',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2080,NULL,834,'MENU_ACHIEVEMENT_2D_ADD','zh_CN','新建视图',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2081,NULL,834,'MENU_ACHIEVEMENT_2D_ADD','zh_TW','新建視圖',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2082,NULL,834,'MENU_ACHIEVEMENT_2D_ADD','en_US','New View',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2083,NULL,833,'MENU_ACHIEVEMENT_3D','zh_CN','三维视图',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2084,NULL,833,'MENU_ACHIEVEMENT_3D','zh_TW','三維視圖',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2085,NULL,833,'MENU_ACHIEVEMENT_3D','en_US','3D View',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2086,NULL,841,'MENU_ACHIEVEMENT_3D_LIST','zh_CN','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2087,NULL,841,'MENU_ACHIEVEMENT_3D_LIST','zh_TW','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2088,NULL,841,'MENU_ACHIEVEMENT_3D_LIST','en_US','List',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2089,NULL,841,'ACTION_ACHIEVEMENT_3D_DELETE','zh_CN','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2090,NULL,841,'ACTION_ACHIEVEMENT_3D_DELETE','zh_TW','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2091,NULL,841,'ACTION_ACHIEVEMENT_3D_DELETE','en_US','Delete',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2092,NULL,841,'MENU_ACHIEVEMENT_3D_EDIT','zh_CN','编辑',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2093,NULL,841,'MENU_ACHIEVEMENT_3D_EDIT','zh_TW','編輯',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2094,NULL,841,'MENU_ACHIEVEMENT_3D_EDIT','en_US','Edit',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2095,NULL,841,'MENU_ACHIEVEMENT_3D_DETAIL','zh_CN','详情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2096,NULL,841,'MENU_ACHIEVEMENT_3D_DETAIL','zh_TW','詳情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2097,NULL,841,'MENU_ACHIEVEMENT_3D_DETAIL','en_US','Detail',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2098,NULL,841,'MENU_ACHIEVEMENT_3D_CONTRAST','zh_CN','对比',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2099,NULL,841,'MENU_ACHIEVEMENT_3D_CONTRAST','zh_TW','對比',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2100,NULL,841,'MENU_ACHIEVEMENT_3D_CONTRAST','en_US','Contrast',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2101,NULL,841,'MENU_ACHIEVEMENT_3D_ADD','zh_CN','新建视图',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2102,NULL,841,'MENU_ACHIEVEMENT_3D_ADD','zh_TW','新建視圖',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2103,NULL,841,'MENU_ACHIEVEMENT_3D_ADD','en_US','New View',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2104,NULL,833,'MENU_ACHIEVEMENT_RETURN_IMG','zh_CN','回传影像',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2105,NULL,833,'MENU_ACHIEVEMENT_RETURN_IMG','zh_TW','回傳影像',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2106,NULL,833,'MENU_ACHIEVEMENT_RETURN_IMG','en_US','Retrieving image',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2107,NULL,833,'MENU_ACHIEVEMENT_PANORAMIC_IMG','zh_CN','全景照片',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2108,NULL,833,'MENU_ACHIEVEMENT_PANORAMIC_IMG','zh_TW','全景照片',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2109,NULL,833,'MENU_ACHIEVEMENT_PANORAMIC_IMG','en_US','Panoramic image',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2113,NULL,393,'MENU_COMMOM_SCREEN','zh_CN','数据大屏',_binary '\0','2023-02-08 09:38:05','1','2023-09-08 09:29:51','188243415207510016'),(2114,NULL,393,'MENU_COMMOM_SCREEN','zh_TW','數據大屏',_binary '\0','2023-02-08 09:38:05','1','2023-09-08 09:29:51','188243415207510016'),(2115,NULL,393,'MENU_COMMOM_SCREEN','en_US','Large screen of data',_binary '\0','2023-02-08 09:38:05','1','2023-09-08 09:29:51','188243415207510016'),(2119,NULL,595,'MENU_AI_EXCAVATOR_BPERM','zh_CN','挖掘机识别',_binary '\0','2023-02-09 01:20:47','188243415207510016','2023-09-12 01:19:32','1'),(2120,NULL,595,'MENU_AI_EXCAVATOR_BPERM','zh_TW','挖掘機識別',_binary '\0','2023-02-09 01:20:47','188243415207510016','2023-09-12 01:19:32','1'),(2121,NULL,595,'MENU_AI_EXCAVATOR_BPERM','en_US','Excavator Identification',_binary '\0','2023-02-09 01:20:47','188243415207510016','2023-09-12 01:19:32','1'),(2122,NULL,595,'MENU_AI_SAFEHAT_BPERM','zh_CN','安全帽识别',_binary '\0','2023-02-09 01:21:57','188243415207510016','2023-09-12 01:19:32','1'),(2123,NULL,595,'MENU_AI_SAFEHAT_BPERM','zh_TW','安全帽识别',_binary '\0','2023-02-09 01:21:57','188243415207510016','2023-09-12 01:19:32','1'),(2124,NULL,595,'MENU_AI_SAFEHAT_BPERM','en_US','Helmet Identification',_binary '\0','2023-02-09 01:21:57','188243415207510016','2023-09-12 01:19:32','1'),(2125,NULL,682,'ACTION_DEVICE_WAREHOUSE_EDIT','zh_CN','编辑新增',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2126,NULL,682,'ACTION_DEVICE_WAREHOUSE_EDIT','zh_TW','編輯新增',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2127,NULL,682,'ACTION_DEVICE_WAREHOUSE_EDIT','en_US','Edit and add',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2128,NULL,682,'ACTION_DEVICE_WAREHOUSE_CHECK','zh_CN','查看',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2129,NULL,682,'ACTION_DEVICE_WAREHOUSE_CHECK','zh_TW','查看',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2130,NULL,682,'ACTION_DEVICE_WAREHOUSE_CHECK','en_US','Check',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2131,218767711973408768,NULL,'MENU_DATA_STATISTIC','en_US','Data Statistics',_binary '\0','2023-03-29 09:38:33','1',NULL,NULL),(2132,218767711973408768,NULL,'MENU_DATA_STATISTIC','zh_CN','数据统计',_binary '\0','2023-03-29 09:38:33','1',NULL,NULL),(2133,218767711973408768,NULL,'MENU_DATA_STATISTIC','zh_TW','數據統計',_binary '\0','2023-03-29 09:38:33','1',NULL,NULL),(2134,NULL,NULL,'MENU_FLIGHT_PLAN','zh_CN','飞行计划',_binary '\0','2023-04-12 08:00:31','1','2023-05-05 09:28:07','1'),(2135,NULL,NULL,'MENU_FLIGHT_PLAN','zh_TW','飛行計劃',_binary '\0','2023-04-12 08:00:31','1','2023-05-05 09:28:07','1'),(2136,NULL,NULL,'MENU_FLIGHT_PLAN','en_US','Flight plan application',_binary '\0','2023-04-12 08:00:31','1','2023-05-05 09:28:07','1'),(2137,NULL,858,'MENU_FLIGHT_PLAN_CREATE','zh_CN','飞行申请',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2138,NULL,858,'MENU_FLIGHT_PLAN_CREATE','zh_TW','飛行申請',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2139,NULL,858,'MENU_FLIGHT_PLAN_CREATE','en_US','Create flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2140,NULL,859,'ACTION_FLIGHT_PLAN_SAVE','zh_CN','保存',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2141,NULL,859,'ACTION_FLIGHT_PLAN_SAVE','zh_TW','保存',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2142,NULL,859,'ACTION_FLIGHT_PLAN_SAVE','en_US','Save fligth plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2143,NULL,858,'MENU_FLIGHT_PLAN_EDIT','zh_CN','编辑飞行申请',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2144,NULL,858,'MENU_FLIGHT_PLAN_EDIT','zh_TW','編輯飛行申請',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2145,NULL,858,'MENU_FLIGHT_PLAN_EDIT','en_US','Flight plan edit',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2146,NULL,858,'ACTION_FLIGHT_PLAN_EDIT','zh_CN','编辑',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2147,NULL,858,'ACTION_FLIGHT_PLAN_EDIT','zh_TW','編輯',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2148,NULL,858,'ACTION_FLIGHT_PLAN_EDIT','en_US','Edit flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2149,NULL,858,'ACTION_FLIGHT_PLAN_SEARCH','zh_CN','查询',_binary '\0','2023-04-12 08:00:31','1','2023-09-08 02:38:16','199120334480211968'),(2150,NULL,858,'ACTION_FLIGHT_PLAN_SEARCH','zh_TW','查詢',_binary '\0','2023-04-12 08:00:31','1','2023-09-08 02:38:16','199120334480211968'),(2151,NULL,858,'ACTION_FLIGHT_PLAN_SEARCH','en_US','Query flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-09-08 02:38:16','199120334480211968'),(2152,NULL,858,'ACTION_FLIGHT_PLAN_DEL','zh_CN','删除',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2153,NULL,858,'ACTION_FLIGHT_PLAN_DEL','zh_TW','刪除',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2154,NULL,858,'ACTION_FLIGHT_PLAN_DEL','en_US','Delete flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2155,365173608686157824,NULL,'MENU_runtoint_index','zh_CN','润图智能',_binary '\0','2023-04-23 08:47:55','188243415207510016',NULL,NULL),(2156,365173608686157824,NULL,'MENU_runtoint_index','zh_TW','润图智能',_binary '\0','2023-04-23 08:47:55','188243415207510016',NULL,NULL),(2157,365173608686157824,NULL,'MENU_runtoint_index','en_US','润图智能',_binary '\0','2023-04-23 08:47:55','188243415207510016',NULL,NULL),(2158,224170096870817792,789,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING','en_US','Set conflict alarm detection parameters',_binary '\0','2023-05-04 09:43:01','1','2023-05-05 09:26:34','1'),(2159,224170096870817792,789,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING','zh_CN','设置冲突预警检测参数',_binary '\0','2023-05-04 09:43:01','1','2023-05-05 09:26:34','1'),(2160,224170096870817792,789,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING','zh_TW','設置衝突預警檢測參數',_binary '\0','2023-05-04 09:43:01','1','2023-05-05 09:26:34','1'),(2161,51694103410245632,NULL,'MENU_SECURITY_H5','en_US','Investigator H5',_binary '\0','2023-05-04 09:43:49','1','2024-03-19 03:49:30','188243415207510016'),(2162,51694103410245632,NULL,'MENU_SECURITY_H5','zh_CN','侦查员H5',_binary '\0','2023-05-04 09:43:49','1','2024-03-19 03:49:30','188243415207510016'),(2163,51694103410245632,NULL,'MENU_SECURITY_H5','zh_TW','偵查員H5',_binary '\0','2023-05-04 09:43:49','1','2024-03-19 03:49:30','188243415207510016'),(2164,51694103410245632,NULL,'MENU_POLICE_MULTIPLE_MONITOR','en_US','Multiple monitor',_binary '\0','2023-05-04 09:43:49','1',NULL,NULL),(2165,51694103410245632,NULL,'MENU_POLICE_MULTIPLE_MONITOR','zh_CN','多机监视',_binary '\0','2023-05-04 09:43:49','1',NULL,NULL),(2166,51694103410245632,NULL,'MENU_POLICE_MULTIPLE_MONITOR','zh_TW','多機監視',_binary '\0','2023-05-04 09:43:49','1',NULL,NULL),(2167,51694103410245632,NULL,'MENU_POLICE_GLOBAL_MONITOR','en_US','Global monitor',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2168,51694103410245632,NULL,'MENU_POLICE_GLOBAL_MONITOR','zh_CN','全局监视',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2169,51694103410245632,NULL,'MENU_POLICE_GLOBAL_MONITOR','zh_TW','全局監視',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2170,51694103410245632,NULL,'MENU_POLICE_SINGLE_MONITOR','en_US','Single monitor',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2171,51694103410245632,NULL,'MENU_POLICE_SINGLE_MONITOR','zh_CN','单机监视',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2172,51694103410245632,NULL,'MENU_POLICE_SINGLE_MONITOR','zh_TW','單機監視',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2173,51694103410245632,NULL,'MENU_SECURITY_SCREEN','en_US','Monitor Screen',_binary '\0','2023-05-04 09:43:50','1','2024-05-14 07:56:01','89730635001757696'),(2174,51694103410245632,NULL,'MENU_SECURITY_SCREEN','zh_CN','监控大屏',_binary '\0','2023-05-04 09:43:50','1','2024-05-14 07:56:01','89730635001757696'),(2175,51694103410245632,NULL,'MENU_SECURITY_SCREEN','zh_TW','監控大屏',_binary '\0','2023-05-04 09:43:50','1','2024-05-14 07:56:01','89730635001757696'),(2176,NULL,858,'MENU_FLIGHT_PLAN_DETAIL','zh_CN','详情',_binary '\0','2023-05-05 09:28:07','1',NULL,NULL),(2177,NULL,858,'MENU_FLIGHT_PLAN_DETAIL','zh_TW','詳情',_binary '\0','2023-05-05 09:28:07','1',NULL,NULL),(2178,NULL,858,'MENU_FLIGHT_PLAN_DETAIL','en_US','Detail',_binary '\0','2023-05-05 09:28:07','1',NULL,NULL),(2179,51693429796634624,NULL,'MENU_TRAFFIC_WAREHOUSE_DETAIL','en_US','素材库详情',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2180,51693429796634624,NULL,'MENU_TRAFFIC_WAREHOUSE_DETAIL','zh_CN','素材库详情',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2181,51693429796634624,NULL,'MENU_TRAFFIC_WAREHOUSE_DETAIL','zh_TW','素材库详情',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2182,51693429796634624,NULL,'MENU_TRAFFIC_SCREEN','en_US','首页大屏',_binary '\0','2023-05-18 10:07:48','1','2024-09-09 03:33:39','89730635001757696'),(2183,51693429796634624,NULL,'MENU_TRAFFIC_SCREEN','zh_CN','首页大屏',_binary '\0','2023-05-18 10:07:48','1','2024-09-09 03:33:39','89730635001757696'),(2184,51693429796634624,NULL,'MENU_TRAFFIC_SCREEN','zh_TW','首页大屏',_binary '\0','2023-05-18 10:07:48','1','2024-09-09 03:33:39','89730635001757696'),(2185,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_SCREEN','en_US','交通引导',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2186,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_SCREEN','zh_CN','交通引导',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2187,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_SCREEN','zh_TW','交通引导',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2188,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN','en_US','违停取证',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2189,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN','zh_CN','违停取证',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2190,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN','zh_TW','违停取证',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2191,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE','en_US','违停取证素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2192,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE','zh_CN','违停取证素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2193,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE','zh_TW','违停取证素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2194,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_WAREHOUSE','en_US','交通引导素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2195,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_WAREHOUSE','zh_CN','交通引导素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2196,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_WAREHOUSE','zh_TW','交通引导素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2197,374257704400846848,NULL,'MENU_PILOT_SCOUTING','en_US','Pilot Scouting',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2198,374257704400846848,NULL,'MENU_PILOT_SCOUTING','zh_CN','飞手侦察',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2199,374257704400846848,NULL,'MENU_PILOT_SCOUTING','zh_TW','飛手偵察',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2200,374257704400846848,NULL,'MENU_flyer_basic','en_US','Fly Basic',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2201,374257704400846848,NULL,'MENU_flyer_basic','zh_CN','基础飞行',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2202,374257704400846848,NULL,'MENU_flyer_basic','zh_TW','基礎飛行',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2203,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCYMAP','en_US','应急一张图',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2204,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCYMAP','zh_CN','应急一张图',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2205,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCYMAP','zh_TW','应急一张图',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2206,257530550208692224,NULL,'MENU_COMMUNICATION_DATAMANAGE','en_US','自然灾害数据管理',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2207,257530550208692224,NULL,'MENU_COMMUNICATION_DATAMANAGE','zh_CN','自然灾害数据管理',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2208,257530550208692224,NULL,'MENU_COMMUNICATION_DATAMANAGE','zh_TW','自然灾害数据管理',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2209,257530550208692224,882,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL','en_US','查看',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2210,257530550208692224,882,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL','zh_CN','查看',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2211,257530550208692224,882,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL','zh_TW','查看',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2212,257530550208692224,882,'ACTION_COMMUNICATION_ADD','en_US','新建',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2213,257530550208692224,882,'ACTION_COMMUNICATION_ADD','zh_CN','新建',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2214,257530550208692224,882,'ACTION_COMMUNICATION_ADD','zh_TW','新建',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2215,257530550208692224,882,'ACTION_COMMUNICATION_EDIT','en_US','编辑',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2216,257530550208692224,882,'ACTION_COMMUNICATION_EDIT','zh_CN','编辑',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2217,257530550208692224,882,'ACTION_COMMUNICATION_EDIT','zh_TW','编辑',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2218,257530550208692224,882,'ACTION_COMMUNICATION_DELETE','en_US','删除',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2219,257530550208692224,882,'ACTION_COMMUNICATION_DELETE','zh_CN','删除',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2220,257530550208692224,882,'ACTION_COMMUNICATION_DELETE','zh_TW','删除',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2221,375599197049585664,NULL,'MENU_FIRE_RESCUE_SCREEN','en_US','城市运营',_binary '\0','2023-05-22 02:57:12','1','2024-01-05 01:57:04','188243415207510016'),(2222,375599197049585664,NULL,'MENU_FIRE_RESCUE_SCREEN','zh_CN','城市运营',_binary '\0','2023-05-22 02:57:12','1','2024-01-05 01:57:04','188243415207510016'),(2223,375599197049585664,NULL,'MENU_FIRE_RESCUE_SCREEN','zh_TW','城市运营',_binary '\0','2023-05-22 02:57:12','1','2024-01-05 01:57:04','188243415207510016'),(2224,375599197049585664,NULL,'MENU_FIRE_RESCUE_MONITOR','en_US','消防单机监视',_binary '\0','2023-05-22 02:57:12','1','2023-07-07 06:29:03','1'),(2225,375599197049585664,NULL,'MENU_FIRE_RESCUE_MONITOR','zh_CN','消防单机监视',_binary '\0','2023-05-22 02:57:12','1','2023-07-07 06:29:03','1'),(2226,375599197049585664,NULL,'MENU_FIRE_RESCUE_MONITOR','zh_TW','消防单机监视',_binary '\0','2023-05-22 02:57:12','1','2023-07-07 06:29:03','1'),(2227,375599197049585664,NULL,'MENU_FIRE_RESCUE_MULTI_MONITOR','en_US','Fire multiengine monitoring',_binary '\0','2023-05-22 02:57:12','1','2023-06-16 09:14:32','1'),(2228,375599197049585664,NULL,'MENU_FIRE_RESCUE_MULTI_MONITOR','zh_CN','消防多机监视',_binary '\0','2023-05-22 02:57:12','1','2023-06-16 09:14:32','1'),(2229,375599197049585664,NULL,'MENU_FIRE_RESCUE_MULTI_MONITOR','zh_TW','消防多機監視',_binary '\0','2023-05-22 02:57:12','1','2023-06-16 09:14:32','1'),(2230,NULL,NULL,'MENU_GEO','zh_CN','地图数据管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2231,NULL,NULL,'MENU_GEO','zh_TW','地圖數據管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2232,NULL,NULL,'MENU_GEO','en_US','Geographic Data Management',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2233,NULL,890,'MENU_GEO_POI','zh_CN','POI管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2234,NULL,890,'MENU_GEO_POI','zh_TW','POI管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2235,NULL,890,'MENU_GEO_POI','en_US','POI Management',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2236,NULL,891,'MENU_GEO_POI_TYPE','zh_CN','兴趣点类型',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2237,NULL,891,'MENU_GEO_POI_TYPE','zh_TW','興趣點類型',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2238,NULL,891,'MENU_GEO_POI_TYPE','en_US','POI Type',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2239,NULL,892,'ACTION_GEO_POI_TYPE_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:01','1','2024-07-11 05:46:29','416525856201375744'),(2240,NULL,892,'ACTION_GEO_POI_TYPE_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:01','1','2024-07-11 05:46:29','416525856201375744'),(2241,NULL,892,'ACTION_GEO_POI_TYPE_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:01','1','2024-07-11 05:46:29','416525856201375744'),(2242,NULL,892,'ACTION_GEO_POI_TYPE_ADD','zh_CN','新增',_binary '\0','2023-06-14 10:06:02','1','2024-07-11 05:46:44','416525856201375744'),(2243,NULL,892,'ACTION_GEO_POI_TYPE_ADD','zh_TW','新增',_binary '\0','2023-06-14 10:06:02','1','2024-07-11 05:46:44','416525856201375744'),(2244,NULL,892,'ACTION_GEO_POI_TYPE_ADD','en_US','Add',_binary '\0','2023-06-14 10:06:02','1','2024-07-11 05:46:44','416525856201375744'),(2245,NULL,892,'ACTION_GEO_POI_TYPE_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2246,NULL,892,'ACTION_GEO_POI_TYPE_DELETE','zh_TW','刪除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2247,NULL,892,'ACTION_GEO_POI_TYPE_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2248,NULL,891,'MENU_GEO_POI_POINT','zh_CN','兴趣点',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2249,NULL,891,'MENU_GEO_POI_POINT','zh_TW','興趣點',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2250,NULL,891,'MENU_GEO_POI_POINT','en_US','POI',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2251,NULL,896,'ACTION_GEO_POI_POINT_ADD','zh_CN','新增',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2252,NULL,896,'ACTION_GEO_POI_POINT_ADD','zh_TW','新增',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2253,NULL,896,'ACTION_GEO_POI_POINT_ADD','en_US','Add',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2254,NULL,896,'ACTION_GEO_POI_POINT_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2255,NULL,896,'ACTION_GEO_POI_POINT_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2256,NULL,896,'ACTION_GEO_POI_POINT_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2257,NULL,896,'ACTION_GEO_POI_POINT_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2258,NULL,896,'ACTION_GEO_POI_POINT_DELETE','zh_TW','刪除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2259,NULL,896,'ACTION_GEO_POI_POINT_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2260,NULL,896,'ACTION_GEO_POI_POINT_PUBLISH','zh_CN','发布',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2261,NULL,896,'ACTION_GEO_POI_POINT_PUBLISH','zh_TW','發佈',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2262,NULL,896,'ACTION_GEO_POI_POINT_PUBLISH','en_US','Publish',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2263,NULL,890,'MENU_GEO_MODEL_2D','zh_CN','二维模型管理',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2264,NULL,890,'MENU_GEO_MODEL_2D','zh_TW','二維模型管理',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2265,NULL,890,'MENU_GEO_MODEL_2D','en_US','2D Model Management',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2266,NULL,901,'MENU_GEO_MODEL_2D_ADD','zh_CN','上传文件',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2267,NULL,901,'MENU_GEO_MODEL_2D_ADD','zh_TW','上傳文件',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2268,NULL,901,'MENU_GEO_MODEL_2D_ADD','en_US','Upload',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2269,NULL,901,'MENU_GEO_MODEL_2D_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2270,NULL,901,'MENU_GEO_MODEL_2D_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2271,NULL,901,'MENU_GEO_MODEL_2D_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2272,NULL,901,'ACTION_GEO_MODEL_2D_PUBLISH','zh_CN','图层发布',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2273,NULL,901,'ACTION_GEO_MODEL_2D_PUBLISH','zh_TW','圖層發佈',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2274,NULL,901,'ACTION_GEO_MODEL_2D_PUBLISH','en_US','Publish',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2275,NULL,901,'ACTION_GEO_MODEL_2D_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2276,NULL,901,'ACTION_GEO_MODEL_2D_DELETE','zh_TW','刪除',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2277,NULL,901,'ACTION_GEO_MODEL_2D_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2278,NULL,890,'MENU_GEO_MODEL_3D','zh_CN','三维模型管理',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2279,NULL,890,'MENU_GEO_MODEL_3D','zh_TW','三維模型管理',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2280,NULL,890,'MENU_GEO_MODEL_3D','en_US','3D Model Management',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2281,NULL,906,'MENU_GEO_MODEL_3D_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2282,NULL,906,'MENU_GEO_MODEL_3D_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2283,NULL,906,'MENU_GEO_MODEL_3D_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2284,NULL,906,'MENU_GEO_MODEL_3D_ADD','zh_CN','上传文件',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2285,NULL,906,'MENU_GEO_MODEL_3D_ADD','zh_TW','上傳文件',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2286,NULL,906,'MENU_GEO_MODEL_3D_ADD','en_US','Upload',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2287,NULL,906,'ACTION_GEO_MODEL_3D_PUBLISH','zh_CN','图层发布',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2288,NULL,906,'ACTION_GEO_MODEL_3D_PUBLISH','zh_TW','圖層發佈',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2289,NULL,906,'ACTION_GEO_MODEL_3D_PUBLISH','en_US','Publish',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2290,NULL,906,'ACTION_GEO_MODEL_3D_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2291,NULL,906,'ACTION_GEO_MODEL_3D_DELETE','zh_TW','删除',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2292,NULL,906,'ACTION_GEO_MODEL_3D_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2293,NULL,890,'MENU_GEO_RETURN_IMG','zh_CN','回传影像管理',_binary '\0','2023-06-14 10:06:04','1','2023-06-20 06:37:26','188243415207510016'),(2294,NULL,890,'MENU_GEO_RETURN_IMG','zh_TW','回傳影像管理',_binary '\0','2023-06-14 10:06:04','1','2023-06-20 06:37:26','188243415207510016'),(2295,NULL,890,'MENU_GEO_RETURN_IMG','en_US','Retrieving image',_binary '\0','2023-06-14 10:06:04','1','2023-06-20 06:37:26','188243415207510016'),(2296,NULL,890,'MENU_GEO_PANORAMIC_IMG','zh_CN','全景照片管理',_binary '\0','2023-06-14 10:06:04','1','2023-09-28 05:47:59','188243415207510016'),(2297,NULL,890,'MENU_GEO_PANORAMIC_IMG','zh_TW','全景照片管理',_binary '\0','2023-06-14 10:06:04','1','2023-09-28 05:47:59','188243415207510016'),(2298,NULL,890,'MENU_GEO_PANORAMIC_IMG','en_US','Panoramic image',_binary '\0','2023-06-14 10:06:04','1','2023-09-28 05:47:59','188243415207510016'),(2299,NULL,NULL,'MENU_POI_BAK','zh_CN','地图服务',_binary '\0','2023-06-14 10:07:58','188243415207510016',NULL,NULL),(2300,NULL,NULL,'MENU_POI_BAK','zh_TW','地圖服務',_binary '\0','2023-06-14 10:07:58','188243415207510016',NULL,NULL),(2301,NULL,NULL,'MENU_POI_BAK','en_US','Map Service',_binary '\0','2023-06-14 10:07:58','188243415207510016',NULL,NULL),(2302,NULL,NULL,'MENU_ACHIEVEMENT_BAK','zh_CN','成果展示',_binary '\0','2023-06-15 06:54:21','188243415207510016',NULL,NULL),(2303,NULL,NULL,'MENU_ACHIEVEMENT_BAK','zh_TW','成果展示',_binary '\0','2023-06-15 06:54:21','188243415207510016',NULL,NULL),(2304,NULL,NULL,'MENU_ACHIEVEMENT_BAK','en_US','Achievement display',_binary '\0','2023-06-15 06:54:21','188243415207510016',NULL,NULL),(2305,NULL,NULL,'MENU_COMMON_TOOL','zh_CN','通用模块工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2306,NULL,NULL,'MENU_COMMON_TOOL','zh_TW','通用模塊工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2307,NULL,NULL,'MENU_COMMON_TOOL','en_US','commonTool',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2308,NULL,913,'MENU_GEO_LAYER','zh_CN','图层',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2309,NULL,913,'MENU_GEO_LAYER','zh_TW','圖層',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2310,NULL,913,'MENU_GEO_LAYER','en_US','GeoLayer',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2311,NULL,914,'ACTION_GEO_LAYER_2D','zh_CN','二维图层',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2312,NULL,914,'ACTION_GEO_LAYER_2D','zh_TW','二維圖層',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2313,NULL,914,'ACTION_GEO_LAYER_2D','en_US','geoLayer2d',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2314,NULL,914,'ACTION_GEO_LAYER_3D','zh_CN','三维图层',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2315,NULL,914,'ACTION_GEO_LAYER_3D','zh_TW','三維圖層',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2316,NULL,914,'ACTION_GEO_LAYER_3D','en_US','GeoLayer3d',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2317,NULL,914,'ACTION_GEO_LAYER_POI','zh_CN','POI管理',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2318,NULL,914,'ACTION_GEO_LAYER_POI','zh_TW','POI管理',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2319,NULL,914,'ACTION_GEO_LAYER_POI','en_US','geoLayerPoi',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2320,NULL,913,'MENU_AIRSPACE_TOOLS','zh_CN','空域管理工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2321,NULL,913,'MENU_AIRSPACE_TOOLS','zh_TW','空域管理工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2322,NULL,913,'MENU_AIRSPACE_TOOLS','en_US','airspaceTools',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2323,NULL,913,'MENU_COMPARE','zh_CN','对比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2324,NULL,913,'MENU_COMPARE','zh_TW','對比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2325,NULL,913,'MENU_COMPARE','en_US','compare',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2326,NULL,919,'ACTION_COMPARE_ROLL','zh_CN','卷帘对比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2327,NULL,919,'ACTION_COMPARE_ROLL','zh_TW','卷簾對比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2328,NULL,919,'ACTION_COMPARE_ROLL','en_US','comareRoll',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2329,NULL,919,'ACTION_COMPARE_SPLIT','zh_CN','分屏对比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2330,NULL,919,'ACTION_COMPARE_SPLIT','zh_TW','分屏對比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2331,NULL,919,'ACTION_COMPARE_SPLIT','en_US','compareSplit',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2332,NULL,393,'MENU_ZIGONG_SCREEN_BAK','zh_CN','自贡应急管理大屏',_binary '\0','2023-06-27 08:33:59','188243415207510016',NULL,NULL),(2333,NULL,393,'MENU_ZIGONG_SCREEN_BAK','zh_TW','自貢應急管理大屏',_binary '\0','2023-06-27 08:33:59','188243415207510016',NULL,NULL),(2334,NULL,393,'MENU_ZIGONG_SCREEN_BAK','en_US','Zigong Emergency Screen',_binary '\0','2023-06-27 08:33:59','188243415207510016',NULL,NULL),(2386,NULL,NULL,'MENU_BASESTATION_MANAGEMENT','zh_CN','基站信息维护',_binary '\0','2023-08-07 07:24:42','89730635001757696','2023-08-07 07:49:51','89730635001757696'),(2387,NULL,NULL,'MENU_BASESTATION_MANAGEMENT','zh_TW','基站信息维护',_binary '\0','2023-08-07 07:24:42','89730635001757696','2023-08-07 07:49:51','89730635001757696'),(2388,NULL,NULL,'MENU_BASESTATION_MANAGEMENT','en_US','基站信息维护',_binary '\0','2023-08-07 07:24:42','89730635001757696','2023-08-07 07:49:51','89730635001757696'),(2389,NULL,939,'MENU_BASESTATION_SEARCH','zh_CN','基站信息查询',_binary '\0','2023-08-07 07:25:19','89730635001757696','2023-08-07 07:50:02','89730635001757696'),(2390,NULL,939,'MENU_BASESTATION_SEARCH','zh_TW','基站信息查询',_binary '\0','2023-08-07 07:25:19','89730635001757696','2023-08-07 07:50:02','89730635001757696'),(2391,NULL,939,'MENU_BASESTATION_SEARCH','en_US','基站信息查询',_binary '\0','2023-08-07 07:25:19','89730635001757696','2023-08-07 07:50:02','89730635001757696'),(2392,NULL,939,'MENU_BASESTATION_IMPORT','zh_CN','基站信息导入',_binary '\0','2023-08-07 07:26:12','89730635001757696','2023-08-07 07:50:13','89730635001757696'),(2393,NULL,939,'MENU_BASESTATION_IMPORT','zh_TW','基站信息导入',_binary '\0','2023-08-07 07:26:12','89730635001757696','2023-08-07 07:50:13','89730635001757696'),(2394,NULL,939,'MENU_BASESTATION_IMPORT','en_US','基站信息导入',_binary '\0','2023-08-07 07:26:12','89730635001757696','2023-08-07 07:50:13','89730635001757696'),(2395,NULL,939,'MENU_BASESTATION_EDIT','zh_CN','编辑基站信息',_binary '\0','2023-08-07 07:37:32','89730635001757696','2023-08-07 07:50:23','89730635001757696'),(2396,NULL,939,'MENU_BASESTATION_EDIT','zh_TW','编辑基站信息',_binary '\0','2023-08-07 07:37:32','89730635001757696','2023-08-07 07:50:23','89730635001757696'),(2397,NULL,939,'MENU_BASESTATION_EDIT','en_US','编辑基站信息',_binary '\0','2023-08-07 07:37:32','89730635001757696','2023-08-07 07:50:23','89730635001757696'),(2398,NULL,939,'MENU_BASESTATION_ADD','zh_CN','新增基站信息',_binary '\0','2023-08-07 07:38:32','89730635001757696','2023-08-07 07:56:41','89730635001757696'),(2399,NULL,939,'MENU_BASESTATION_ADD','zh_TW','新增基站信息',_binary '\0','2023-08-07 07:38:32','89730635001757696','2023-08-07 07:56:41','89730635001757696'),(2400,NULL,939,'MENU_BASESTATION_ADD','en_US','新增基站信息',_binary '\0','2023-08-07 07:38:32','89730635001757696','2023-08-07 07:56:41','89730635001757696'),(2401,NULL,939,'MENU_BASESTATION_DETAIL','zh_CN','查看基站详情',_binary '\0','2023-08-07 07:38:56','89730635001757696','2023-08-07 07:56:58','89730635001757696'),(2402,NULL,939,'MENU_BASESTATION_DETAIL','zh_TW','查看基站详情',_binary '\0','2023-08-07 07:38:56','89730635001757696','2023-08-07 07:56:58','89730635001757696'),(2403,NULL,939,'MENU_BASESTATION_DETAIL','en_US','查看基站详情',_binary '\0','2023-08-07 07:38:56','89730635001757696','2023-08-07 07:56:58','89730635001757696'),(2404,NULL,NULL,'MENU_PERSONNELINFO_MANAGEMENT','zh_CN','人员信息管理',_binary '\0','2023-08-07 07:41:41','89730635001757696','2023-08-07 07:57:08','89730635001757696'),(2405,NULL,NULL,'MENU_PERSONNELINFO_MANAGEMENT','zh_TW','人员信息管理',_binary '\0','2023-08-07 07:41:41','89730635001757696','2023-08-07 07:57:08','89730635001757696'),(2406,NULL,NULL,'MENU_PERSONNELINFO_MANAGEMENT','en_US','人员信息管理',_binary '\0','2023-08-07 07:41:41','89730635001757696','2023-08-07 07:57:08','89730635001757696'),(2407,NULL,945,'MENU_PERSONNELINFO_IMPORT','zh_CN','用户信息导入',_binary '\0','2023-08-07 07:42:31','89730635001757696','2023-08-07 07:57:18','89730635001757696'),(2408,NULL,945,'MENU_PERSONNELINFO_IMPORT','zh_TW','用户信息导入',_binary '\0','2023-08-07 07:42:31','89730635001757696','2023-08-07 07:57:18','89730635001757696'),(2409,NULL,945,'MENU_PERSONNELINFO_IMPORT','en_US','用户信息导入',_binary '\0','2023-08-07 07:42:31','89730635001757696','2023-08-07 07:57:18','89730635001757696'),(2410,NULL,NULL,'MENU_QUALITYCONTROL_MANAGEMENT','zh_CN','质检任务管理',_binary '\0','2023-08-07 07:43:20','89730635001757696',NULL,NULL),(2411,NULL,NULL,'MENU_QUALITYCONTROL_MANAGEMENT','zh_TW','质检任务管理',_binary '\0','2023-08-07 07:43:20','89730635001757696',NULL,NULL),(2412,NULL,NULL,'MENU_QUALITYCONTROL_MANAGEMENT','en_US','质检任务管理',_binary '\0','2023-08-07 07:43:20','89730635001757696',NULL,NULL),(2413,NULL,947,'MENU_QUALITYCONTROL_CREATE','zh_CN','创建质检工单',_binary '\0','2023-08-07 07:44:16','89730635001757696','2024-03-01 06:43:39','89730635001757696'),(2414,NULL,947,'MENU_QUALITYCONTROL_CREATE','zh_TW','创建质检工单',_binary '\0','2023-08-07 07:44:16','89730635001757696','2024-03-01 06:43:39','89730635001757696'),(2415,NULL,947,'MENU_QUALITYCONTROL_CREATE','en_US','创建质检工单',_binary '\0','2023-08-07 07:44:16','89730635001757696','2024-03-01 06:43:39','89730635001757696'),(2416,NULL,947,'MENU_QUALITYCONTROL_DETAIL','zh_CN','查看质检详情',_binary '\0','2023-08-07 07:47:13','89730635001757696',NULL,NULL),(2417,NULL,947,'MENU_QUALITYCONTROL_DETAIL','zh_TW','查看质检详情',_binary '\0','2023-08-07 07:47:13','89730635001757696',NULL,NULL),(2418,NULL,947,'MENU_QUALITYCONTROL_DETAIL','en_US','查看质检详情',_binary '\0','2023-08-07 07:47:13','89730635001757696',NULL,NULL),(2419,403580659618807808,NULL,'MENU_HEILONGJIANGTIETA','zh_CN','test',_binary '\0','2023-08-07 08:07:29','89730635001757696',NULL,NULL),(2420,403580659618807808,NULL,'MENU_HEILONGJIANGTIETA','zh_TW','test',_binary '\0','2023-08-07 08:07:29','89730635001757696',NULL,NULL),(2421,403580659618807808,NULL,'MENU_HEILONGJIANGTIETA','en_US','test',_binary '\0','2023-08-07 08:07:29','89730635001757696',NULL,NULL),(2422,NULL,595,'ACTION_YAW_WARNING','zh_CN','偏航预警',_binary '\0','2023-08-28 05:57:06','188243415207510016','2023-09-18 06:34:22','188243415207510016'),(2423,NULL,595,'ACTION_YAW_WARNING','zh_TW','偏航預警',_binary '\0','2023-08-28 05:57:06','188243415207510016','2023-09-18 06:34:22','188243415207510016'),(2424,NULL,595,'ACTION_YAW_WARNING','en_US','Yaw warning',_binary '\0','2023-08-28 05:57:06','188243415207510016','2023-09-18 06:34:22','188243415207510016'),(2425,NULL,358,'ACTION_MULTIMONITOR_MODEL_LAYER','zh_CN','图层',_binary '\0','2023-09-12 01:19:30','1',NULL,NULL),(2426,NULL,358,'ACTION_MULTIMONITOR_MODEL_LAYER','zh_TW','圖層',_binary '\0','2023-09-12 01:19:30','1',NULL,NULL),(2427,NULL,358,'ACTION_MULTIMONITOR_MODEL_LAYER','en_US','Model layer',_binary '\0','2023-09-12 01:19:30','1',NULL,NULL),(2428,NULL,587,'MENU_GAS_BPERM','zh_CN','气体检测仪',_binary '\0','2023-09-12 01:19:31','1','2023-11-29 09:46:32','1'),(2429,NULL,587,'MENU_GAS_BPERM','zh_TW','氣體檢測儀',_binary '\0','2023-09-12 01:19:31','1','2023-11-29 09:46:32','1'),(2430,NULL,587,'MENU_GAS_BPERM','en_US','Gas',_binary '\0','2023-09-12 01:19:31','1','2024-02-22 08:23:55','1'),(2431,NULL,595,'MENU_AI_CROWD','zh_CN','人群密集检测',_binary '\0','2023-09-12 01:19:32','1','2023-12-19 07:44:08','89730635001757696'),(2432,NULL,595,'MENU_AI_CROWD','zh_TW','人群密集檢測',_binary '\0','2023-09-12 01:19:32','1','2023-12-19 07:44:08','89730635001757696'),(2433,NULL,595,'MENU_AI_CROWD','en_US','Crowd density',_binary '\0','2023-09-12 01:19:32','1','2023-12-19 07:44:08','89730635001757696'),(2434,NULL,595,'MENU_AI_HIGHWAY','zh_CN','高速路检测',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2435,NULL,595,'MENU_AI_HIGHWAY','zh_TW','高速路檢測',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2436,NULL,595,'MENU_AI_HIGHWAY','en_US','Highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2437,NULL,955,'ACTION_AI_HIGHWAY_OBSTACLES','zh_CN','高速路障碍物检测',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2438,NULL,955,'ACTION_AI_HIGHWAY_OBSTACLES','zh_TW','高速路障礙物檢測',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2439,NULL,955,'ACTION_AI_HIGHWAY_OBSTACLES','en_US','Obstacles on highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2440,NULL,955,'ACTION_AI_HIGHWAY_PEDESTRIANS','zh_CN','高速路行人检测',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2441,NULL,955,'ACTION_AI_HIGHWAY_PEDESTRIANS','zh_TW','高速路行人檢測',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2442,NULL,955,'ACTION_AI_HIGHWAY_PEDESTRIANS','en_US','Pedestrians on highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2443,NULL,955,'ACTION_AI_HIGHWAY_CONGESTION','zh_CN','高速路车辆拥挤度识别',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2444,NULL,955,'ACTION_AI_HIGHWAY_CONGESTION','zh_TW','高速路車輛擁擠度識別',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2445,NULL,955,'ACTION_AI_HIGHWAY_CONGESTION','en_US','Congestion of vehicles on highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2446,NULL,372,'ACTION_process-delete','zh_CN','删除审批流程',_binary '\0','2023-09-27 10:02:57','1',NULL,NULL),(2447,NULL,372,'ACTION_process-delete','zh_TW','删除审批流程',_binary '\0','2023-09-27 10:02:57','1',NULL,NULL),(2448,NULL,372,'ACTION_process-delete','en_US','删除审批流程',_binary '\0','2023-09-27 10:02:57','1',NULL,NULL),(2452,439357001011167232,NULL,'MENU_THREED_SIMULATION','zh_CN','数据管理',_binary '\0','2023-11-14 08:03:06','188243415207510016','2023-11-14 08:42:43','188243415207510016'),(2453,439357001011167232,NULL,'MENU_THREED_SIMULATION','zh_TW','數據管理',_binary '\0','2023-11-14 08:03:06','188243415207510016','2023-11-14 08:42:43','188243415207510016'),(2454,439357001011167232,NULL,'MENU_THREED_SIMULATION','en_US','Data manage',_binary '\0','2023-11-14 08:03:06','188243415207510016','2023-11-14 08:42:43','188243415207510016'),(2455,NULL,358,'ACTION_FLIGHTMONITOR_USERGUIDE','zh_CN','单机监视新手引导',_binary '\0','2023-11-29 09:46:31','1','2024-02-22 08:23:56','1'),(2456,NULL,358,'ACTION_FLIGHTMONITOR_USERGUIDE','zh_TW','單機監視新手引導',_binary '\0','2023-11-29 09:46:31','1','2024-02-22 08:23:56','1'),(2457,NULL,358,'ACTION_FLIGHTMONITOR_USERGUIDE','en_US','Guidance',_binary '\0','2023-11-29 09:46:31','1','2024-02-22 08:23:56','1'),(2458,NULL,953,'ACTION_GAS_PIC_SET','zh_CN','问题标注功能',_binary '\0','2023-11-29 09:46:32','1','2024-02-22 08:23:55','1'),(2459,NULL,953,'ACTION_GAS_PIC_SET','zh_TW','問題標註功能',_binary '\0','2023-11-29 09:46:32','1','2024-02-22 08:23:55','1'),(2460,NULL,953,'ACTION_GAS_PIC_SET','en_US','Problem annotation function',_binary '\0','2023-11-29 09:46:32','1','2024-02-22 08:23:55','1'),(2461,NULL,358,'ACTION_UAV_NETWORKLINK_BPERM','zh_CN','网络链路',_binary '\0','2024-02-22 08:23:56','1','2024-02-23 01:17:12','1'),(2462,NULL,358,'ACTION_UAV_NETWORKLINK_BPERM','zh_TW','網絡連結',_binary '\0','2024-02-22 08:23:56','1','2024-02-23 01:17:12','1'),(2463,NULL,358,'ACTION_UAV_NETWORKLINK_BPERM','en_US','Network link',_binary '\0','2024-02-22 08:23:56','1','2024-02-23 01:17:12','1'),(2464,NULL,595,'MENU_AI_PEO_VEH','zh_CN','人车识别',_binary '\0','2024-02-23 01:57:25','1',NULL,NULL),(2465,NULL,595,'MENU_AI_PEO_VEH','zh_TW','人車識別',_binary '\0','2024-02-23 01:57:25','1',NULL,NULL),(2466,NULL,595,'MENU_AI_PEO_VEH','en_US','People vehicle detection',_binary '\0','2024-02-23 01:57:25','1',NULL,NULL),(2467,257530550208692224,NULL,'MENU_COMMUNICATION_DECISION','en_US','Command decisions',_binary '\0','2024-04-01 06:25:37','1','2024-04-01 06:42:09','1'),(2468,257530550208692224,NULL,'MENU_COMMUNICATION_DECISION','zh_CN','通信覆盖参数配置',_binary '\0','2024-04-01 06:25:37','1','2024-04-01 06:42:09','1'),(2469,257530550208692224,NULL,'MENU_COMMUNICATION_DECISION','zh_TW','通信覆盖参数配置',_binary '\0','2024-04-01 06:25:37','1','2024-04-01 06:42:09','1'),(2479,51694103410245632,NULL,'MENU_SECURITY_DETECTION','zh_CN','探测反制',_binary '\0','2024-05-29 02:31:11','89730635001757696','2024-07-03 08:08:25','1'),(2480,51694103410245632,NULL,'MENU_SECURITY_DETECTION','zh_TW','探測反制',_binary '\0','2024-05-29 02:31:11','89730635001757696','2024-07-03 08:08:25','1'),(2481,51694103410245632,NULL,'MENU_SECURITY_DETECTION','en_US','Detection counter',_binary '\0','2024-05-29 02:31:11','89730635001757696','2024-07-03 08:08:25','1'),(2482,NULL,595,'MENU_AI_COMPASS','zh_CN','周界入侵告警',_binary '\0','2024-06-14 08:41:59','89730635001757696','2024-06-14 09:20:45','89730635001757696'),(2483,NULL,595,'MENU_AI_COMPASS','zh_TW','周界入侵告警',_binary '\0','2024-06-14 08:41:59','89730635001757696','2024-06-14 09:20:45','89730635001757696'),(2484,NULL,595,'MENU_AI_COMPASS','en_US','Surrounding intrusion alarm',_binary '\0','2024-06-14 08:41:59','89730635001757696','2024-06-14 09:20:45','89730635001757696'),(2506,NULL,595,'MENU_AI_CAR_FOLLOW','zh_CN','车辆跟踪',_binary '\0','2024-06-21 08:35:59','1','2024-07-05 01:25:34','89730635001757696'),(2507,NULL,595,'MENU_AI_CAR_FOLLOW','zh_TW','車輛跟踪',_binary '\0','2024-06-21 08:35:59','1','2024-07-05 01:25:34','89730635001757696'),(2508,NULL,595,'MENU_AI_CAR_FOLLOW','en_US','Vehicle tracking',_binary '\0','2024-06-21 08:35:59','1','2024-07-05 01:25:34','89730635001757696'),(2509,NULL,595,'MENU_AI_UAV','zh_CN','空中目标检测',_binary '\0','2024-06-21 08:37:10','1',NULL,NULL),(2510,NULL,595,'MENU_AI_UAV','zh_TW','空中目標检测',_binary '\0','2024-06-21 08:37:10','1',NULL,NULL),(2511,NULL,595,'MENU_AI_UAV','en_US','Air target detection',_binary '\0','2024-06-21 08:37:10','1',NULL,NULL),(2512,NULL,595,'MENU_AI_INFRARED','zh_CN','红外行人检测',_binary '\0','2024-06-21 08:37:32','1',NULL,NULL),(2513,NULL,595,'MENU_AI_INFRARED','zh_TW','紅外行人檢測',_binary '\0','2024-06-21 08:37:32','1',NULL,NULL),(2514,NULL,595,'MENU_AI_INFRARED','en_US','Infrared pedestrian',_binary '\0','2024-06-21 08:37:32','1',NULL,NULL),(2515,NULL,595,'MENU_AI_SEA_HUMAN','zh_CN','海上人员救援',_binary '\0','2024-06-21 08:37:53','1',NULL,NULL),(2516,NULL,595,'MENU_AI_SEA_HUMAN','zh_TW','海上人員救援',_binary '\0','2024-06-21 08:37:53','1',NULL,NULL),(2517,NULL,595,'MENU_AI_SEA_HUMAN','en_US','Rescue of people at sea',_binary '\0','2024-06-21 08:37:53','1',NULL,NULL),(2518,NULL,595,'MENU_AI_SEA_BOAT','zh_CN','船只检测',_binary '\0','2024-06-21 08:38:12','1',NULL,NULL),(2519,NULL,595,'MENU_AI_SEA_BOAT','zh_TW','船隻檢測',_binary '\0','2024-06-21 08:38:12','1',NULL,NULL),(2520,NULL,595,'MENU_AI_SEA_BOAT','en_US','Ship detection',_binary '\0','2024-06-21 08:38:12','1',NULL,NULL),(2521,NULL,NULL,'MENU_STORAGE','zh_CN','存储空间管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2522,NULL,NULL,'MENU_STORAGE','zh_TW','存储空间管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2523,NULL,NULL,'MENU_STORAGE','en_US','存储空间管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2524,NULL,987,'MENU_STORAGE_INDEX','zh_CN','概览',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2525,NULL,987,'MENU_STORAGE_INDEX','zh_TW','概览',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2526,NULL,987,'MENU_STORAGE_INDEX','en_US','概览',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2527,NULL,987,'MENU_STORAGE_VIDEO','zh_CN','视频文件管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2528,NULL,987,'MENU_STORAGE_VIDEO','zh_TW','视频文件管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2529,NULL,987,'MENU_STORAGE_VIDEO','en_US','视频文件管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2530,NULL,987,'MENU_STORAGE_IMG','zh_CN','图片文件管理',_binary '\0','2024-07-18 09:27:07','1',NULL,NULL),(2531,NULL,987,'MENU_STORAGE_IMG','zh_TW','图片文件管理',_binary '\0','2024-07-18 09:27:07','1',NULL,NULL),(2532,NULL,987,'MENU_STORAGE_IMG','en_US','图片文件管理',_binary '\0','2024-07-18 09:27:07','1',NULL,NULL),(2533,NULL,987,'MENU_STORAGE_MODEL','zh_CN','模型数据文件管理',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2534,NULL,987,'MENU_STORAGE_MODEL','zh_TW','模型数据文件管理',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2535,NULL,987,'MENU_STORAGE_MODEL','en_US','模型数据文件管理',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2536,NULL,987,'MENU_STORAGE_SETTING','zh_CN','存储设置',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2537,NULL,987,'MENU_STORAGE_SETTING','zh_TW','存储设置',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2538,NULL,987,'MENU_STORAGE_SETTING','en_US','存储设置',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2539,389735663221211136,NULL,'MENU_5G_A','en_US','5GA低空监管系统',_binary '\0','2024-07-18 09:31:14','1',NULL,NULL),(2540,389735663221211136,NULL,'MENU_5G_A','zh_CN','5GA低空监管系统',_binary '\0','2024-07-18 09:31:14','1',NULL,NULL),(2541,389735663221211136,NULL,'MENU_5G_A','zh_TW','5GA低空监管系统',_binary '\0','2024-07-18 09:31:14','1',NULL,NULL),(2542,389735663221211136,993,'MENU_5G_A_FLIGHT_SERVICES','en_US','飞行服务',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2543,389735663221211136,993,'MENU_5G_A_FLIGHT_SERVICES','zh_CN','飞行服务',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2544,389735663221211136,993,'MENU_5G_A_FLIGHT_SERVICES','zh_TW','飞行服务',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2545,389735663221211136,993,'MENU_5G_A_PERMISSIONS','en_US','功能权限',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2546,389735663221211136,993,'MENU_5G_A_PERMISSIONS','zh_CN','功能权限',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2547,389735663221211136,993,'MENU_5G_A_PERMISSIONS','zh_TW','功能权限',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2548,389735663221211136,995,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD','en_US','数据下载',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2549,389735663221211136,995,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD','zh_CN','数据下载',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2550,389735663221211136,995,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD','zh_TW','数据下载',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2551,389735663221211136,995,'MENU_5G_A_FLIGHT_STATION_COUNT','en_US','基站统计',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2552,389735663221211136,995,'MENU_5G_A_FLIGHT_STATION_COUNT','zh_CN','基站统计',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2553,389735663221211136,995,'MENU_5G_A_FLIGHT_STATION_COUNT','zh_TW','基站统计',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2554,389735663221211136,995,'ACTION_5G_A_DETECTION_TRACK','en_US','雷视联动',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2555,389735663221211136,995,'ACTION_5G_A_DETECTION_TRACK','zh_CN','雷视联动',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2556,389735663221211136,995,'ACTION_5G_A_DETECTION_TRACK','zh_TW','雷视联动',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2557,389735663221211136,995,'ACTION_5G_A_DETECTION_TOOL_WEATHER','en_US','降水量',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2558,389735663221211136,995,'ACTION_5G_A_DETECTION_TOOL_WEATHER','zh_CN','降水量',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2559,389735663221211136,995,'ACTION_5G_A_DETECTION_TOOL_WEATHER','zh_TW','降水量',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2560,389735663221211136,993,'MENU_5G_A_DETECTION','en_US','低空探测',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2561,389735663221211136,993,'MENU_5G_A_DETECTION','zh_CN','低空探测',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2562,389735663221211136,993,'MENU_5G_A_DETECTION','zh_TW','低空探测',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2563,389735663221211136,1000,'MENU_5G_A_DETECTION_ANALYSE','en_US','精度分析',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2564,389735663221211136,1000,'MENU_5G_A_DETECTION_ANALYSE','zh_CN','精度分析',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2565,389735663221211136,1000,'MENU_5G_A_DETECTION_ANALYSE','zh_TW','精度分析',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2566,389735663221211136,1000,'MENU_5G_A_DETECTION_ALARM','en_US','告警记录',_binary '\0','2024-07-18 09:31:17','1',NULL,NULL),(2567,389735663221211136,1000,'MENU_5G_A_DETECTION_ALARM','zh_CN','告警记录',_binary '\0','2024-07-18 09:31:17','1',NULL,NULL),(2568,389735663221211136,1000,'MENU_5G_A_DETECTION_ALARM','zh_TW','告警记录',_binary '\0','2024-07-18 09:31:17','1',NULL,NULL),(2569,389735663221211136,1000,'MENU_5G_A_DETECTION_HOME','en_US','首页',_binary '\0','2024-07-18 09:31:17','1','2024-07-23 03:11:19','89730635001757696'),(2570,389735663221211136,1000,'MENU_5G_A_DETECTION_HOME','zh_CN','首页',_binary '\0','2024-07-18 09:31:17','1','2024-07-23 03:11:19','89730635001757696'),(2571,389735663221211136,1000,'MENU_5G_A_DETECTION_HOME','zh_TW','首页',_binary '\0','2024-07-18 09:31:17','1','2024-07-23 03:11:19','89730635001757696'),(2572,389735663221211136,1000,'MENU_5G_A_DETECTION_REPLAY','en_US','数据回放',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2573,389735663221211136,1000,'MENU_5G_A_DETECTION_REPLAY','zh_CN','数据回放',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2574,389735663221211136,1000,'MENU_5G_A_DETECTION_REPLAY','zh_TW','数据回放',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2575,389735663221211136,993,'MENU_5G_A_SETTING','en_US','配置管理',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2576,389735663221211136,993,'MENU_5G_A_SETTING','zh_CN','配置管理',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2577,389735663221211136,993,'MENU_5G_A_SETTING','zh_TW','配置管理',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2578,389735663221211136,1005,'MENU_5G_A_SETTING_REGION_PLAN','en_US','区域规划',_binary '\0','2024-07-18 09:31:18','1','2024-07-19 02:31:22','188243415207510016'),(2579,389735663221211136,1005,'MENU_5G_A_SETTING_REGION_PLAN','zh_CN','区域规划',_binary '\0','2024-07-18 09:31:18','1','2024-07-19 02:31:22','188243415207510016'),(2580,389735663221211136,1005,'MENU_5G_A_SETTING_REGION_PLAN','zh_TW','区域规划',_binary '\0','2024-07-18 09:31:18','1','2024-07-19 02:31:22','188243415207510016'),(2581,389735663221211136,1005,'MENU_5G_A_SETTING_DEVICE','en_US','设备管理',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2582,389735663221211136,1005,'MENU_5G_A_SETTING_DEVICE','zh_CN','设备管理',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2583,389735663221211136,1005,'MENU_5G_A_SETTING_DEVICE','zh_TW','设备管理',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2584,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL','en_US','基站详情',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2585,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL','zh_CN','基站详情',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2586,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL','zh_TW','基站详情',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2587,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL','en_US','摄像头详情',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2588,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL','zh_CN','摄像头详情',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2589,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL','zh_TW','摄像头详情',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2590,389735663221211136,1005,'MENU_5G_A_SETTING_STORY','en_US','故事管理',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2591,389735663221211136,1005,'MENU_5G_A_SETTING_STORY','zh_CN','故事管理',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2592,389735663221211136,1005,'MENU_5G_A_SETTING_STORY','zh_TW','故事管理',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2593,389735663221211136,993,'MENU_5G_A_MONITOR','en_US','运行监视',_binary '\0','2024-07-18 09:31:20','1','2024-09-12 02:46:10','188243415207510016'),(2594,389735663221211136,993,'MENU_5G_A_MONITOR','zh_CN','运行监视',_binary '\0','2024-07-18 09:31:20','1','2024-09-12 02:46:10','188243415207510016'),(2595,389735663221211136,993,'MENU_5G_A_MONITOR','zh_TW','运行监视',_binary '\0','2024-07-18 09:31:20','1','2024-09-12 02:46:10','188243415207510016'),(2596,NULL,125,'ACTION_AIRLINE_TRANSLATION','zh_CN','航线平移旋转',_binary '\0','2024-08-22 02:06:19','89730635001757696','2024-08-23 02:07:01','1'),(2597,NULL,125,'ACTION_AIRLINE_TRANSLATION','zh_TW','航線平移旋轉',_binary '\0','2024-08-22 02:06:19','89730635001757696','2024-08-23 02:07:01','1'),(2598,NULL,125,'ACTION_AIRLINE_TRANSLATION','en_US','Flight translation and rotation',_binary '\0','2024-08-22 02:06:19','89730635001757696','2024-08-23 02:07:01','1'),(2599,NULL,358,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD','zh_CN','pilot上云',_binary '\0','2024-08-22 02:13:09','188243415207510016','2024-09-23 05:56:08','188243415207510016'),(2600,NULL,358,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD','zh_TW','pilot上雲',_binary '\0','2024-08-22 02:13:09','188243415207510016','2024-09-23 05:56:08','188243415207510016'),(2601,NULL,358,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD','en_US','Pilot to cloud',_binary '\0','2024-08-22 02:13:09','188243415207510016','2024-09-23 05:56:08','188243415207510016'),(2602,51693429796634624,NULL,'MENU_TRAFFIC_AIRPORT_SCREEN','en_US','智慧机场',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2603,51693429796634624,NULL,'MENU_TRAFFIC_AIRPORT_SCREEN','zh_CN','智慧机场',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2604,51693429796634624,NULL,'MENU_TRAFFIC_AIRPORT_SCREEN','zh_TW','智慧机场',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2605,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_SCREEN','en_US','高速巡检',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2606,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_SCREEN','zh_CN','高速巡检',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2607,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_SCREEN','zh_TW','高速巡检',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2608,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE','en_US','高速巡检素材库',_binary '\0','2024-08-23 02:32:35','1',NULL,NULL),(2609,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE','zh_CN','高速巡检素材库',_binary '\0','2024-08-23 02:32:35','1',NULL,NULL),(2610,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE','zh_TW','高速巡检素材库',_binary '\0','2024-08-23 02:32:35','1',NULL,NULL),(2611,389735663221211136,1005,'MENU_5G_A_SETTING_PERCEPTTASK','zh_CN','感知任务管理',_binary '\0','2024-08-27 01:56:07','89730635001757696',NULL,NULL),(2612,389735663221211136,1005,'MENU_5G_A_SETTING_PERCEPTTASK','zh_TW','感知任务管理',_binary '\0','2024-08-27 01:56:07','89730635001757696',NULL,NULL),(2613,389735663221211136,1005,'MENU_5G_A_SETTING_PERCEPTTASK','en_US','感知任务管理',_binary '\0','2024-08-27 01:56:07','89730635001757696',NULL,NULL),(2614,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE','zh_CN','SF创建',_binary '\0','2024-08-27 01:57:12','89730635001757696',NULL,NULL),(2615,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE','zh_TW','SF创建',_binary '\0','2024-08-27 01:57:12','89730635001757696',NULL,NULL),(2616,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE','en_US','SF创建',_binary '\0','2024-08-27 01:57:12','89730635001757696',NULL,NULL),(2617,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL','zh_CN','SF详情',_binary '\0','2024-08-27 01:58:14','89730635001757696',NULL,NULL),(2618,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL','zh_TW','SF详情',_binary '\0','2024-08-27 01:58:14','89730635001757696',NULL,NULL),(2619,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL','en_US','SF详情',_binary '\0','2024-08-27 01:58:14','89730635001757696',NULL,NULL),(2620,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL','zh_CN','感知任务详情',_binary '\0','2024-08-27 01:58:34','89730635001757696',NULL,NULL),(2621,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL','zh_TW','感知任务详情',_binary '\0','2024-08-27 01:58:34','89730635001757696',NULL,NULL),(2622,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL','en_US','感知任务详情',_binary '\0','2024-08-27 01:58:34','89730635001757696',NULL,NULL),(2623,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE','zh_CN','感知任务创建',_binary '\0','2024-08-27 01:58:57','89730635001757696',NULL,NULL),(2624,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE','zh_TW','感知任务创建',_binary '\0','2024-08-27 01:58:57','89730635001757696',NULL,NULL),(2625,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE','en_US','感知任务创建',_binary '\0','2024-08-27 01:58:57','89730635001757696',NULL,NULL),(2626,NULL,563,'MENU_SECURITY_ALERTS','zh_CN','安全告警',_binary '\0','2024-09-10 01:46:27','1',NULL,NULL),(2627,NULL,563,'MENU_SECURITY_ALERTS','zh_TW','安全告警',_binary '\0','2024-09-10 01:46:27','1',NULL,NULL),(2628,NULL,563,'MENU_SECURITY_ALERTS','en_US','security alerts',_binary '\0','2024-09-10 01:46:27','1',NULL,NULL),(2629,NULL,1022,'MENU_SECURITY_ALERTS_DETAIL','zh_CN','详情',_binary '\0','2024-09-10 01:46:28','1',NULL,NULL),(2630,NULL,1022,'MENU_SECURITY_ALERTS_DETAIL','zh_TW','详情',_binary '\0','2024-09-10 01:46:28','1',NULL,NULL),(2631,NULL,1022,'MENU_SECURITY_ALERTS_DETAIL','en_US','detail',_binary '\0','2024-09-10 01:46:28','1',NULL,NULL),(2632,257530550208692224,NULL,'MENU_COMMUNICATION_EVENTS_REPORT','en_US','应急事件上报',_binary '\0','2024-09-29 02:10:12','1',NULL,NULL),(2633,257530550208692224,NULL,'MENU_COMMUNICATION_EVENTS_REPORT','zh_CN','应急事件上报',_binary '\0','2024-09-29 02:10:12','1',NULL,NULL),(2634,257530550208692224,NULL,'MENU_COMMUNICATION_EVENTS_REPORT','zh_TW','应急事件上报',_binary '\0','2024-09-29 02:10:12','1',NULL,NULL),(2635,257530550208692224,NULL,'MENU_COMMUNICATION_DATA','en_US','communication data',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2636,257530550208692224,NULL,'MENU_COMMUNICATION_DATA','zh_CN','通信数据',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2637,257530550208692224,NULL,'MENU_COMMUNICATION_DATA','zh_TW','通信數據',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2638,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_EVENTS','en_US','应急事件',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2639,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_EVENTS','zh_CN','应急事件',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2640,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_EVENTS','zh_TW','应急事件',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2641,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE','en_US','应急事件管理',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2642,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE','zh_CN','应急事件管理',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2643,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE','zh_TW','应急事件管理',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2644,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_DETAIL','en_US','详情',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2645,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_DETAIL','zh_CN','详情',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2646,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_DETAIL','zh_TW','详情',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2647,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_ADD','en_US','新建',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2648,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_ADD','zh_CN','新建',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2649,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_ADD','zh_TW','新建',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2650,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_EDIT','en_US','编辑',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2651,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_EDIT','zh_CN','编辑',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2652,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_EDIT','zh_TW','编辑',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2653,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC','en_US','应急事件统计',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2654,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC','zh_CN','应急事件统计',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2655,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC','zh_TW','应急事件统计',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2656,257530550208692224,NULL,'MENU_COMMUNICATION_PROCESS','en_US','二维建图与三维建模',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2657,257530550208692224,NULL,'MENU_COMMUNICATION_PROCESS','zh_CN','二维建图与三维建模',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2658,257530550208692224,NULL,'MENU_COMMUNICATION_PROCESS','zh_TW','二维建图与三维建模',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2659,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_DUTY','en_US','排班日历',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2660,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_DUTY','zh_CN','排班日历',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2661,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_DUTY','zh_TW','排班日历',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2662,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_STATISTICS','en_US','排班统计',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2663,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_STATISTICS','zh_CN','排班统计',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2664,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_STATISTICS','zh_TW','排班统计',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL); +INSERT INTO `sys_resource_attr` VALUES (7,NULL,NULL,'MENU_ACCOUNT','zh_CN','用户服务',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(8,NULL,NULL,'MENU_ACCOUNT','zh_TW','用戶服務',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(9,NULL,NULL,'MENU_ACCOUNT','en_US','User service',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(10,NULL,24,'MENU_ACCOUNT_CONSUMER','zh_CN','用户管理',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(11,NULL,24,'MENU_ACCOUNT_CONSUMER','zh_TW','用戶管理',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(12,NULL,24,'MENU_ACCOUNT_CONSUMER','en_US','User management',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(13,NULL,25,'ACTION_ACCOUNT_CONSUMER_SEARCH','zh_CN','查询',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(14,NULL,25,'ACTION_ACCOUNT_CONSUMER_SEARCH','zh_TW','查詢',_binary '\0','2020-10-09 09:38:01','1','2021-01-29 09:48:32','1'),(15,NULL,25,'ACTION_ACCOUNT_CONSUMER_SEARCH','en_US','Search',_binary '\0','2020-10-09 09:38:01','1','2020-12-28 08:04:00','1'),(16,NULL,25,'MENU_ACCOUNT_CONSUMER_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(17,NULL,25,'MENU_ACCOUNT_CONSUMER_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(18,NULL,25,'MENU_ACCOUNT_CONSUMER_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(19,NULL,54,'ACTION_ACCOUNT_CONSUMER_UPDATE','zh_CN','更新',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(20,NULL,54,'ACTION_ACCOUNT_CONSUMER_UPDATE','zh_TW','更新',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(21,NULL,54,'ACTION_ACCOUNT_CONSUMER_UPDATE','en_US','Update',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(22,NULL,54,'ACTION_ACCOUNT_CONSUMER_RESET','zh_CN','重置密码',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(23,NULL,54,'ACTION_ACCOUNT_CONSUMER_RESET','zh_TW','重置密碼',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:32','1'),(24,NULL,54,'ACTION_ACCOUNT_CONSUMER_RESET','en_US','Reset password',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:32','1'),(25,NULL,25,'MENU_ACCOUNT_CONSUMER_CHECK','zh_CN','详情',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(26,NULL,25,'MENU_ACCOUNT_CONSUMER_CHECK','zh_TW','詳情',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(27,NULL,25,'MENU_ACCOUNT_CONSUMER_CHECK','en_US','Detail',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(28,NULL,55,'ACTION_ACCOUNT_CONSUMER_CHECK','zh_CN','查看',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(29,NULL,55,'ACTION_ACCOUNT_CONSUMER_CHECK','zh_TW','查看',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(30,NULL,55,'ACTION_ACCOUNT_CONSUMER_CHECK','en_US','View',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:33','1'),(31,NULL,25,'ACTION_ACCOUNT_CONSUMER_UPLOAD','zh_CN','批量上传',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(32,NULL,25,'ACTION_ACCOUNT_CONSUMER_UPLOAD','zh_TW','批量上傳',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:33','1'),(33,NULL,25,'ACTION_ACCOUNT_CONSUMER_UPLOAD','en_US','Batch upload',_binary '\0','2020-10-09 09:38:02','1','2021-01-29 09:48:33','1'),(34,NULL,25,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','zh_CN','模版下载',_binary '\0','2020-10-09 09:38:02','1','2020-12-28 08:04:00','1'),(35,NULL,25,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','zh_TW','模板下載',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(36,NULL,25,'ACTION_ACCOUNT_CONSUMER_DOWNLOAD','en_US','Template download',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(37,NULL,25,'ACTION_ACCOUNT_CONSUMER_INVITE','zh_CN','邀请注册',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(38,NULL,25,'ACTION_ACCOUNT_CONSUMER_INVITE','zh_TW','邀請註冊',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(39,NULL,25,'ACTION_ACCOUNT_CONSUMER_INVITE','en_US','Invite to register',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(40,NULL,25,'MENU_ACCOUNT_CONSUMER_ADD','zh_CN','新建用户',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(41,NULL,25,'MENU_ACCOUNT_CONSUMER_ADD','zh_TW','新建用戶',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(42,NULL,25,'MENU_ACCOUNT_CONSUMER_ADD','en_US','New user',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(43,NULL,189,'ACTION_ACCOUNT_CONSUMER_ADD','zh_CN','新增',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(44,NULL,189,'ACTION_ACCOUNT_CONSUMER_ADD','zh_TW','新增',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(45,NULL,189,'ACTION_ACCOUNT_CONSUMER_ADD','en_US','New',_binary '\0','2020-10-09 09:38:03','1','2021-01-29 09:48:33','1'),(58,NULL,24,'MENU_ACCOUNT_ROLE','zh_CN','角色管理',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(59,NULL,24,'MENU_ACCOUNT_ROLE','zh_TW','角色管理',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(60,NULL,24,'MENU_ACCOUNT_ROLE','en_US','Role management',_binary '\0','2020-10-09 09:38:03','1','2020-12-28 08:04:00','1'),(61,NULL,27,'ACTION_ACCOUNT_ROLE_SEARCH','zh_CN','查询',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(62,NULL,27,'ACTION_ACCOUNT_ROLE_SEARCH','zh_TW','查詢',_binary '\0','2020-10-09 09:38:04','1','2021-01-29 09:48:33','1'),(63,NULL,27,'ACTION_ACCOUNT_ROLE_SEARCH','en_US','Search',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(64,NULL,27,'MENU_ACCOUNT_ROLE_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(65,NULL,27,'MENU_ACCOUNT_ROLE_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(66,NULL,27,'MENU_ACCOUNT_ROLE_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(67,NULL,51,'ACTION_ACCOUNT_ROLE_UPDATE','zh_CN','更新',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(68,NULL,51,'ACTION_ACCOUNT_ROLE_UPDATE','zh_TW','更新',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(69,NULL,51,'ACTION_ACCOUNT_ROLE_UPDATE','en_US','Update',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:00','1'),(70,NULL,27,'MENU_ACCOUNT_ROLE_CHECK','zh_CN','详情',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(71,NULL,27,'MENU_ACCOUNT_ROLE_CHECK','zh_TW','詳情',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(72,NULL,27,'MENU_ACCOUNT_ROLE_CHECK','en_US','Detail',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(73,NULL,78,'ACTION_ACCOUNT_ROLE_CHECK','zh_CN','查看',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(74,NULL,78,'ACTION_ACCOUNT_ROLE_CHECK','zh_TW','查看',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(75,NULL,78,'ACTION_ACCOUNT_ROLE_CHECK','en_US','View',_binary '\0','2020-10-09 09:38:04','1','2021-01-29 09:48:33','1'),(76,NULL,27,'MENU_ACCOUNT_ROLE_ADD','zh_CN','新建角色',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(77,NULL,27,'MENU_ACCOUNT_ROLE_ADD','zh_TW','新建角色',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(78,NULL,27,'MENU_ACCOUNT_ROLE_ADD','en_US','New role',_binary '\0','2020-10-09 09:38:04','1','2020-12-28 08:04:01','1'),(79,NULL,184,'ACTION_ACCOUNT_ROLE_ADD','zh_CN','新增',_binary '\0','2020-10-09 09:38:04','1','2022-07-25 08:30:45','1'),(80,NULL,184,'ACTION_ACCOUNT_ROLE_ADD','zh_TW','新增',_binary '\0','2020-10-09 09:38:04','1','2022-07-25 08:30:45','1'),(81,NULL,184,'ACTION_ACCOUNT_ROLE_ADD','en_US','New',_binary '\0','2020-10-09 09:38:04','1','2022-07-25 08:30:45','1'),(115,NULL,24,'MENU_ACCOUNT_FLYER_INDEX','zh_CN','飞手管理',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(116,NULL,24,'MENU_ACCOUNT_FLYER_INDEX','zh_TW','飛手管理',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(117,NULL,24,'MENU_ACCOUNT_FLYER_INDEX','en_US','Pilot management',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(136,NULL,NULL,'MENU_AIRSPACE','zh_CN','空域服务',_binary '\0','2020-10-09 09:38:06','1','2020-11-11 08:49:33','1'),(137,NULL,NULL,'MENU_AIRSPACE','zh_TW','空域服務',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(138,NULL,NULL,'MENU_AIRSPACE','en_US','Airspace area service',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(139,NULL,62,'MENU_AIRSPACE_APPLY','zh_CN','空域申请',_binary '\0','2020-10-09 09:38:06','1','2020-11-11 08:49:33','1'),(140,NULL,62,'MENU_AIRSPACE_APPLY','zh_TW','空域申請',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(141,NULL,62,'MENU_AIRSPACE_APPLY','en_US','Application of airspace area ',_binary '\0','2020-10-09 09:38:06','1','2020-12-28 08:04:01','1'),(142,NULL,63,'ACTION_AIRSPACE_APPLY_RESET','zh_CN','重置',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(143,NULL,63,'ACTION_AIRSPACE_APPLY_RESET','zh_TW','重置',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(144,NULL,63,'ACTION_AIRSPACE_APPLY_RESET','en_US','Reset',_binary '\0','2020-10-09 09:38:07','1','2021-01-29 09:48:33','1'),(145,NULL,63,'ACTION_AIRSPACE_APPLY_DEL','zh_CN','空域删除',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(146,NULL,63,'ACTION_AIRSPACE_APPLY_DEL','zh_TW','空域刪除',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(147,NULL,63,'ACTION_AIRSPACE_APPLY_DEL','en_US','Airspace area deletion',_binary '\0','2020-10-09 09:38:07','1','2021-01-29 09:48:33','1'),(148,NULL,63,'ACTION_AIRSPACE_APPLY_DOWNLOAD','zh_CN','下载模板',_binary '\0','2020-10-09 09:38:07','1','2022-01-18 11:23:28','1'),(149,NULL,63,'ACTION_AIRSPACE_APPLY_DOWNLOAD','zh_TW','下載模板',_binary '\0','2020-10-09 09:38:07','1','2022-01-18 11:23:28','1'),(150,NULL,63,'ACTION_AIRSPACE_APPLY_DOWNLOAD','en_US','Download Doc',_binary '\0','2020-10-09 09:38:07','1','2022-01-18 11:23:28','1'),(151,NULL,63,'MENU_AIRSPACE_APPLY_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(152,NULL,63,'MENU_AIRSPACE_APPLY_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(153,NULL,63,'MENU_AIRSPACE_APPLY_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:07','1','2020-12-28 08:04:01','1'),(154,NULL,304,'ACTION_AIRSPACE_APPLY_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:07','1','2020-11-11 08:49:33','1'),(155,NULL,304,'ACTION_AIRSPACE_APPLY_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(156,NULL,304,'ACTION_AIRSPACE_APPLY_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(157,NULL,63,'ACTION_AIRSAPCE_AREANAME','zh_CN','查询空域名称',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(158,NULL,63,'ACTION_AIRSAPCE_AREANAME','zh_TW','查詢空域名稱',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(159,NULL,63,'ACTION_AIRSAPCE_AREANAME','en_US','Query airspace area',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(160,NULL,63,'MENU_AIRSPACE_ADD','zh_CN','新建空域申请',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(161,NULL,63,'MENU_AIRSPACE_ADD','zh_TW','新建空域申請',_binary '\0','2020-10-09 09:38:08','1','2020-12-28 08:04:01','1'),(162,NULL,63,'MENU_AIRSPACE_ADD','en_US','New application of airspace area',_binary '\0','2020-10-09 09:38:08','1','2020-12-28 08:04:01','1'),(163,NULL,174,'ACTION_AIRSPACE_APPLY_ADD','zh_CN','新增',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(164,NULL,174,'ACTION_AIRSPACE_APPLY_ADD','zh_TW','新增',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(165,NULL,174,'ACTION_AIRSPACE_APPLY_ADD','en_US','New',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(166,NULL,174,'ACTION_AIRSPACE_OVERLAP_QUERY','zh_CN','查询交叉空域',_binary '\0','2020-10-09 09:38:08','1','2020-11-11 08:49:33','1'),(167,NULL,174,'ACTION_AIRSPACE_OVERLAP_QUERY','zh_TW','查詢交叉空域',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(168,NULL,174,'ACTION_AIRSPACE_OVERLAP_QUERY','en_US','Query cross airspace area',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(169,NULL,63,'ACTION_AIRSPACE_APPLY_SEARCH','zh_CN','空域查询',_binary '\0','2020-10-09 09:38:08','1','2020-12-28 08:04:01','1'),(170,NULL,63,'ACTION_AIRSPACE_APPLY_SEARCH','zh_TW','空域查詢',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(171,NULL,63,'ACTION_AIRSPACE_APPLY_SEARCH','en_US','Airspace area query',_binary '\0','2020-10-09 09:38:08','1','2021-01-29 09:48:34','1'),(172,NULL,63,'MENU_AIRSPACE_DETAIL','zh_CN','详情',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(173,NULL,63,'MENU_AIRSPACE_DETAIL','zh_TW','詳情',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(174,NULL,63,'MENU_AIRSPACE_DETAIL','en_US','Detail',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(175,NULL,236,'ACTION_AIRSPACE_DETAIL','zh_CN','查看详情',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(176,NULL,236,'ACTION_AIRSPACE_DETAIL','zh_TW','查看詳情',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(177,NULL,236,'ACTION_AIRSPACE_DETAIL','en_US','View detail',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(193,NULL,62,'MENU_AIRSPACE_QUERY','zh_CN','空域查询',_binary '\0','2020-10-09 09:38:09','1','2020-11-11 08:49:33','1'),(194,NULL,62,'MENU_AIRSPACE_QUERY','zh_TW','空域查詢',_binary '\0','2020-10-09 09:38:09','1','2020-12-28 08:04:01','1'),(195,NULL,62,'MENU_AIRSPACE_QUERY','en_US','Airspace area query',_binary '\0','2020-10-09 09:38:09','1','2020-12-28 08:04:01','1'),(196,NULL,65,'ACTION_AIRSPACE_QUERY_5KM','zh_CN','5km内空域',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(197,NULL,65,'ACTION_AIRSPACE_QUERY_5KM','zh_TW','5km內空域',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(198,NULL,65,'ACTION_AIRSPACE_QUERY_5KM','en_US','Airspace area information in the 5km range',_binary '\0','2020-10-09 09:38:09','1','2021-01-29 09:48:34','1'),(199,NULL,65,'ACTION_AIRSPACE_QUERY_QUERY','zh_CN','查询',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:49:34','1'),(200,NULL,65,'ACTION_AIRSPACE_QUERY_QUERY','zh_TW','查詢',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(201,NULL,65,'ACTION_AIRSPACE_QUERY_QUERY','en_US','Query',_binary '\0','2020-10-09 09:38:10','1','2020-12-28 08:04:01','1'),(202,NULL,65,'ACTION_AIRSPACE_NOW_QUERY','zh_CN','查询当前空域',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:49:34','1'),(203,NULL,65,'ACTION_AIRSPACE_NOW_QUERY','zh_TW','查詢當前空域',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(204,NULL,65,'ACTION_AIRSPACE_NOW_QUERY','en_US','Query current airspace area',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(205,NULL,65,'ACTION_AIRSPACE_AIRPORT_QUERY','zh_CN','查询机场',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:49:34','1'),(206,NULL,65,'ACTION_AIRSPACE_AIRPORT_QUERY','zh_TW','查詢機場',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(207,NULL,65,'ACTION_AIRSPACE_AIRPORT_QUERY','en_US','Query airport',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(208,NULL,62,'ACTION_AIRSPACE_SAME_AREANAME','zh_CN','空域名重复否',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:33','1'),(209,NULL,62,'ACTION_AIRSPACE_SAME_AREANAME','zh_TW','空域名重複否',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:33','1'),(210,NULL,62,'ACTION_AIRSPACE_SAME_AREANAME','en_US','Whether the airspace area name is conflict',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:33','1'),(211,NULL,NULL,'MENU_DEVICE','zh_CN','设备管理',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:47','1'),(212,NULL,NULL,'MENU_DEVICE','zh_TW','設備管理',_binary '\0','2020-10-09 09:38:10','1','2020-12-28 08:04:01','1'),(213,NULL,NULL,'MENU_DEVICE','en_US','Device management',_binary '\0','2020-10-09 09:38:10','1','2020-12-28 08:04:01','1'),(214,NULL,80,'MENU_DEVICE_HANGAR','zh_CN','机库管理',_binary '\0','2020-10-09 09:38:10','1','2023-09-27 10:02:37','1'),(215,NULL,80,'MENU_DEVICE_HANGAR','zh_TW','機庫管理',_binary '\0','2020-10-09 09:38:10','1','2023-09-27 10:02:37','1'),(216,NULL,80,'MENU_DEVICE_HANGAR','en_US','Box management',_binary '\0','2020-10-09 09:38:10','1','2023-09-27 10:02:37','1'),(217,NULL,310,'ACTION_DEVICE_HANGAR_FETCH_LIST','zh_CN','查询按钮',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:48','1'),(218,NULL,310,'ACTION_DEVICE_HANGAR_FETCH_LIST','zh_TW','查詢按鈕',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(219,NULL,310,'ACTION_DEVICE_HANGAR_FETCH_LIST','en_US','Query button',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(220,NULL,310,'ACTION_DEVICE_HANGAR_RESET_LIST','zh_CN','重置按钮',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:48','1'),(221,NULL,310,'ACTION_DEVICE_HANGAR_RESET_LIST','zh_TW','重置按钮',_binary '\0','2020-10-09 09:38:10','1','2020-11-11 08:56:48','1'),(222,NULL,310,'ACTION_DEVICE_HANGAR_RESET_LIST','en_US','Reset button',_binary '\0','2020-10-09 09:38:10','1','2021-01-29 09:48:34','1'),(223,NULL,310,'MENU_DEVICE_HANGAR_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(224,NULL,310,'MENU_DEVICE_HANGAR_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(225,NULL,310,'MENU_DEVICE_HANGAR_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(226,NULL,313,'ACTION_DEVICE_HANGAR_DETAIL','zh_CN','详情按钮',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(227,NULL,313,'ACTION_DEVICE_HANGAR_DETAIL','zh_TW','詳情按鈕',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(228,NULL,313,'ACTION_DEVICE_HANGAR_DETAIL','en_US','Detail button',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(229,NULL,310,'MENU_DEVICE_HANGAR_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(230,NULL,310,'MENU_DEVICE_HANGAR_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(231,NULL,310,'MENU_DEVICE_HANGAR_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(232,NULL,315,'ACTION_DEVICE_HANGAR_EDIT','zh_CN','编辑按钮',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(233,NULL,315,'ACTION_DEVICE_HANGAR_EDIT','zh_TW','編輯按鈕',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(234,NULL,315,'ACTION_DEVICE_HANGAR_EDIT','en_US','Edit button',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(235,NULL,310,'ACTION_DEVICE_HANGAR_DELETE','zh_CN','删除',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(236,NULL,310,'ACTION_DEVICE_HANGAR_DELETE','zh_TW','刪除',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(237,NULL,310,'ACTION_DEVICE_HANGAR_DELETE','en_US','Delete',_binary '\0','2020-10-09 09:38:11','1','2021-01-29 09:48:34','1'),(238,NULL,310,'MENU_DEVICE_HANGAR_UAV','zh_CN','无人机',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(239,NULL,310,'MENU_DEVICE_HANGAR_UAV','zh_TW','無人機',_binary '\0','2020-10-09 09:38:11','1','2020-12-28 08:04:01','1'),(240,NULL,310,'MENU_DEVICE_HANGAR_UAV','en_US','UAV',_binary '\0','2020-10-09 09:38:11','1','2020-11-11 08:56:48','1'),(241,NULL,318,'ACTION_DEVICE_HANGAR_UAV_TIE','zh_CN','绑定无人机',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(242,NULL,318,'ACTION_DEVICE_HANGAR_UAV_TIE','zh_TW','綁定無人機',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(243,NULL,318,'ACTION_DEVICE_HANGAR_UAV_TIE','en_US','Bind UAV',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(244,NULL,318,'ACTION_DEVICE_HANGAR_UAV_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(245,NULL,318,'ACTION_DEVICE_HANGAR_UAV_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(246,NULL,318,'ACTION_DEVICE_HANGAR_UAV_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(247,NULL,318,'ACTION_DEVICE_HANGAR_UAV_UNTIE','zh_CN','解绑',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(248,NULL,318,'ACTION_DEVICE_HANGAR_UAV_UNTIE','zh_TW','解綁',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(249,NULL,318,'ACTION_DEVICE_HANGAR_UAV_UNTIE','en_US','Unbind',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(250,NULL,318,'ACTION_DEVICE_HANGAR_UAV_LIST','zh_CN','列表',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(251,NULL,318,'ACTION_DEVICE_HANGAR_UAV_LIST','zh_TW','列表',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(252,NULL,318,'ACTION_DEVICE_HANGAR_UAV_LIST','en_US','List',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(253,NULL,310,'ACTION_DEVICE_HANGAR_DELETE_BULK','zh_CN','批量删除',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(254,NULL,310,'ACTION_DEVICE_HANGAR_DELETE_BULK','zh_TW','批量刪除',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(255,NULL,310,'ACTION_DEVICE_HANGAR_DELETE_BULK','en_US','Batch deletion',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(256,NULL,310,'MENU_DEVICE_HANGAR_ADD','zh_CN','新建机库',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(257,NULL,310,'MENU_DEVICE_HANGAR_ADD','zh_TW','新建機庫',_binary '\0','2020-10-09 09:38:12','1','2020-12-28 08:04:02','1'),(258,NULL,310,'MENU_DEVICE_HANGAR_ADD','en_US','New box',_binary '\0','2020-10-09 09:38:12','1','2020-12-28 08:04:02','1'),(259,NULL,324,'ACTION_DEVICE_HANGAR_ADD','zh_CN','新建机库按钮',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(260,NULL,324,'ACTION_DEVICE_HANGAR_ADD','zh_TW','新建機庫按鈕',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(261,NULL,324,'ACTION_DEVICE_HANGAR_ADD','en_US','New box button',_binary '\0','2020-10-09 09:38:12','1','2021-01-29 09:48:35','1'),(262,NULL,310,'MENU_DEVICE_HANGAR_UAV_DETAIL','zh_CN','无人机详情',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(263,NULL,310,'MENU_DEVICE_HANGAR_UAV_DETAIL','zh_TW','無人機詳情',_binary '\0','2020-10-09 09:38:12','1','2020-11-11 08:56:48','1'),(264,NULL,310,'MENU_DEVICE_HANGAR_UAV_DETAIL','en_US','UAV detail',_binary '\0','2020-10-09 09:38:12','1','2020-12-28 08:04:02','1'),(265,NULL,80,'MENU_DEVICE_PAYLOAD','zh_CN','载荷管理',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(266,NULL,80,'MENU_DEVICE_PAYLOAD','zh_TW','載荷管理',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(267,NULL,80,'MENU_DEVICE_PAYLOAD','en_US','Payload management',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(268,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','zh_CN','批量删除',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(269,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','zh_TW','批量刪除',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(270,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_BULK','en_US','Batch deletion',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(271,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','zh_CN','单个删除',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(272,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','zh_TW','單個刪除',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(273,NULL,81,'ACTION_DEVICE_PAYLOAD_DELETE_SINGLE','en_US','Single deletion',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(274,NULL,81,'MENU_DEVICE_PAYLOAD_ADD','zh_CN','新建载荷',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(275,NULL,81,'MENU_DEVICE_PAYLOAD_ADD','zh_TW','新建載荷',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(276,NULL,81,'MENU_DEVICE_PAYLOAD_ADD','en_US','New payload',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(277,NULL,95,'ACTION_DEVICE_PAYLOAD_ADD','zh_CN','新增载荷按钮',_binary '\0','2020-10-09 09:38:13','1','2023-09-27 10:02:35','1'),(278,NULL,95,'ACTION_DEVICE_PAYLOAD_ADD','zh_TW','新增載荷按鈕',_binary '\0','2020-10-09 09:38:13','1','2023-09-27 10:02:35','1'),(279,NULL,95,'ACTION_DEVICE_PAYLOAD_ADD','en_US','New payload button',_binary '\0','2020-10-09 09:38:13','1','2023-09-27 10:02:35','1'),(280,NULL,81,'MENU_DEVICE_PAYLOAD_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(281,NULL,81,'MENU_DEVICE_PAYLOAD_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(282,NULL,81,'MENU_DEVICE_PAYLOAD_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(283,NULL,96,'ACTION_DEVICE_PAYLOAD_VIEW','zh_CN','查看详情按钮',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(284,NULL,96,'ACTION_DEVICE_PAYLOAD_VIEW','zh_TW','查看詳情按鈕',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(285,NULL,96,'ACTION_DEVICE_PAYLOAD_VIEW','en_US','View detail button',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(286,NULL,81,'MENU_DEVICE_PAYLOAD_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(287,NULL,81,'MENU_DEVICE_PAYLOAD_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(288,NULL,81,'MENU_DEVICE_PAYLOAD_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(289,NULL,97,'ACTION_DEVICE_PAYLOAD_EDIT','zh_CN','编辑载荷按钮',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(290,NULL,97,'ACTION_DEVICE_PAYLOAD_EDIT','zh_TW','編輯載荷按鈕',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(291,NULL,97,'ACTION_DEVICE_PAYLOAD_EDIT','en_US','Edit payload button',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(292,NULL,81,'MENU_DEVICE_PAYLOAD_LIST','zh_CN','载荷管理列表',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(293,NULL,81,'MENU_DEVICE_PAYLOAD_LIST','zh_TW','載荷管理列表',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(294,NULL,81,'MENU_DEVICE_PAYLOAD_LIST','en_US','Payload list',_binary '\0','2020-10-09 09:38:13','1','2020-12-28 08:04:02','1'),(295,NULL,81,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','zh_CN','查询按钮',_binary '\0','2020-10-09 09:38:13','1','2020-11-11 08:56:48','1'),(296,NULL,81,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','zh_TW','查詢按鈕',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(297,NULL,81,'ACTION_DEVICE_PAYLOAD_FETCH_LIST','en_US','Search button',_binary '\0','2020-10-09 09:38:13','1','2021-01-29 09:48:35','1'),(298,NULL,81,'ACTION_DEVICE_PAYLOAD_RESET_LIST','zh_CN','重置按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(299,NULL,81,'ACTION_DEVICE_PAYLOAD_RESET_LIST','zh_TW','重置按鈕',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(300,NULL,81,'ACTION_DEVICE_PAYLOAD_RESET_LIST','en_US','Reset button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(301,NULL,81,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','zh_CN','跳转无人机',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(302,NULL,81,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','zh_TW','跳轉無人機按',_binary '\0','2020-10-09 09:38:14','1','2021-03-19 06:27:43','1'),(303,NULL,81,'ACTION_DEVICE_PAYLOAD_JUMP_UVA','en_US','Jump to UAV detail page',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(304,NULL,80,'MENU_DEVICE_UAV','zh_CN','无人机管理',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(305,NULL,80,'MENU_DEVICE_UAV','zh_TW','無人機管理',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(306,NULL,80,'MENU_DEVICE_UAV','en_US','UAV management',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(307,NULL,90,'MENU_DEVICE_LIST','zh_CN','查询列表',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(308,NULL,90,'MENU_DEVICE_LIST','zh_TW','查詢列表',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(309,NULL,90,'MENU_DEVICE_LIST','en_US','Uav list',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(310,NULL,258,'ACTION_DEVICE_CODE_TYPE_LIST','zh_CN','编码型号列表',_binary '\0','2020-10-09 09:38:14','1','2023-02-09 06:07:14','1'),(311,NULL,258,'ACTION_DEVICE_CODE_TYPE_LIST','zh_TW','編碼型號列表',_binary '\0','2020-10-09 09:38:14','1','2023-02-09 06:07:14','1'),(312,NULL,258,'ACTION_DEVICE_CODE_TYPE_LIST','en_US','Code model list',_binary '\0','2020-10-09 09:38:14','1','2023-02-09 06:07:14','1'),(313,NULL,90,'ACTION_DEVICE_UAV_JUMP_HANGAR','zh_CN','跳转机库详情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(314,NULL,90,'ACTION_DEVICE_UAV_JUMP_HANGAR','zh_TW','跳轉機庫詳情',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(315,NULL,90,'ACTION_DEVICE_UAV_JUMP_HANGAR','en_US','Jump to box detail page',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(316,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','zh_CN','载荷详情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(317,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','zh_TW','載荷詳情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(318,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_DETAIL','en_US','Payload detail',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(319,NULL,106,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','zh_CN','载荷详情按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(320,NULL,106,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','zh_TW','載荷詳情按鈕',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(321,NULL,106,'ACTION_DEVICE_UVA_PAYLOAD_VIEW','en_US','Payload detail button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:36','1'),(322,NULL,90,'MENU_DEVICE_UVA_VIEW','zh_CN','详情',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(323,NULL,90,'MENU_DEVICE_UVA_VIEW','zh_TW','詳情',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(324,NULL,90,'MENU_DEVICE_UVA_VIEW','en_US','Detail',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(325,NULL,102,'ACTION_DEVEICE_UVA_VIEW','zh_CN','查看详情按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(326,NULL,102,'ACTION_DEVEICE_UVA_VIEW','zh_TW','查看詳情按鈕',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(327,NULL,102,'ACTION_DEVEICE_UVA_VIEW','en_US','View detail button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(328,NULL,90,'MENU_DEVICE_UVA_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(329,NULL,90,'MENU_DEVICE_UVA_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(330,NULL,90,'MENU_DEVICE_UVA_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:14','1','2020-12-28 08:04:02','1'),(331,NULL,103,'ACTION_DEVICE_UVA_EDIT','zh_CN','编辑按钮',_binary '\0','2020-10-09 09:38:14','1','2020-11-11 08:56:48','1'),(332,NULL,103,'ACTION_DEVICE_UVA_EDIT','zh_TW','編輯按鈕',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(333,NULL,103,'ACTION_DEVICE_UVA_EDIT','en_US','Edit button',_binary '\0','2020-10-09 09:38:14','1','2021-01-29 09:48:35','1'),(334,NULL,90,'MENU_DEVICE_UVA_ADD','zh_CN','新建无人机',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(335,NULL,90,'MENU_DEVICE_UVA_ADD','zh_TW','新建無人機',_binary '\0','2020-10-09 09:38:15','1','2020-12-28 08:04:02','1'),(336,NULL,90,'MENU_DEVICE_UVA_ADD','en_US','New UAV',_binary '\0','2020-10-09 09:38:15','1','2020-12-28 08:04:02','1'),(337,NULL,104,'ACTION_DEVICE_UVA_ADD','zh_CN','新建按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(338,NULL,104,'ACTION_DEVICE_UVA_ADD','zh_TW','新建按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(339,NULL,104,'ACTION_DEVICE_UVA_ADD','en_US','New button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(340,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_LIST','zh_CN','载荷',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(341,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_LIST','zh_TW','載荷',_binary '\0','2020-10-09 09:38:15','1','2020-12-28 08:04:02','1'),(342,NULL,90,'MENU_DEVICE_UVA_PAYLOAD_LIST','en_US','Payload',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(343,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_LIST','zh_CN','载荷按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(344,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_LIST','zh_TW','載荷按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(345,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_LIST','en_US','Payload button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(346,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_TIE','zh_CN','绑定载荷',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(347,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_TIE','zh_TW','綁定載荷',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(348,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_TIE','en_US','Bind payload',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(349,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','zh_CN','解绑载荷',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(350,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','zh_TW','解綁載荷',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(351,NULL,105,'ACTION_DEVICE_UVA_PAYLOAD_UNTIE','en_US','Unbind payload',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(352,NULL,90,'ACTION_DEVICE_UVA_FETCH_LIST','zh_CN','查询列表按钮',_binary '\0','2020-10-09 09:38:15','1','2024-02-21 09:07:50','89730635001757696'),(353,NULL,90,'ACTION_DEVICE_UVA_FETCH_LIST','zh_TW','查詢列表按鈕',_binary '\0','2020-10-09 09:38:15','1','2024-02-21 09:07:50','89730635001757696'),(354,NULL,90,'ACTION_DEVICE_UVA_FETCH_LIST','en_US','Search list button',_binary '\0','2020-10-09 09:38:15','1','2024-02-21 09:07:50','89730635001757696'),(355,NULL,90,'ACTION_DEVICE_UVA_RESET','zh_CN','重置按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(356,NULL,90,'ACTION_DEVICE_UVA_RESET','zh_TW','重製按鈕',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(357,NULL,90,'ACTION_DEVICE_UVA_RESET','en_US','Reset button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(358,NULL,90,'ACTION_DEVICE_UVA_BULK_DELETE','zh_CN','批量删除按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(359,NULL,90,'ACTION_DEVICE_UVA_BULK_DELETE','zh_TW','批量刪除按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(360,NULL,90,'ACTION_DEVICE_UVA_BULK_DELETE','en_US','Batch deletion button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(361,NULL,90,'ACTION_DIVICE_UVA_DELETE_SINGLE','zh_CN','删除按钮',_binary '\0','2020-10-09 09:38:15','1','2020-11-11 08:56:48','1'),(362,NULL,90,'ACTION_DIVICE_UVA_DELETE_SINGLE','zh_TW','刪除按鈕',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(363,NULL,90,'ACTION_DIVICE_UVA_DELETE_SINGLE','en_US','Delete button',_binary '\0','2020-10-09 09:38:15','1','2021-01-29 09:48:36','1'),(364,NULL,NULL,'MENU_AIRLINE','zh_CN','航线管理',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(365,NULL,NULL,'MENU_AIRLINE','zh_TW','航線管理',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:02','1'),(366,NULL,NULL,'MENU_AIRLINE','en_US','Flight route management',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:02','1'),(367,NULL,125,'MENU_AIRLINE_CREATE','zh_CN','新建航线',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(368,NULL,125,'MENU_AIRLINE_CREATE','zh_TW','新建航線',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:03','1'),(369,NULL,125,'MENU_AIRLINE_CREATE','en_US','New flight route',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:03','1'),(370,NULL,239,'ACTION_AIRLINE_SAVE','zh_CN','保存航线',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(371,NULL,239,'ACTION_AIRLINE_SAVE','zh_TW','保存航線',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(372,NULL,239,'ACTION_AIRLINE_SAVE','en_US','Save flight route',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(373,NULL,239,'ACTION_AIRLINE_UAV_LIST','zh_CN','无人机列表',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(374,NULL,239,'ACTION_AIRLINE_UAV_LIST','zh_TW','無人機列表',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(375,NULL,239,'ACTION_AIRLINE_UAV_LIST','en_US','UAV list',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(376,NULL,239,'ACTION_AIRLINE_CHECK_AIRLINE_NAME','zh_CN','校验航线名称',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(377,NULL,239,'ACTION_AIRLINE_CHECK_AIRLINE_NAME','zh_TW','校驗航線名稱',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(378,NULL,239,'ACTION_AIRLINE_CHECK_AIRLINE_NAME','en_US','Check route name',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(382,NULL,124,'MENU_AIRLINE_MAP','zh_CN','航线绘制',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(383,NULL,124,'MENU_AIRLINE_MAP','zh_TW','航線繪製',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:36','1'),(384,NULL,124,'MENU_AIRLINE_MAP','en_US','Flight route plot',_binary '\0','2020-10-09 09:38:16','1','2020-12-28 08:04:02','1'),(385,NULL,331,'ACTION_AIRLINE_ACTIONLIST','zh_CN','查询动作列表',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(386,NULL,331,'ACTION_AIRLINE_ACTIONLIST','zh_TW','查詢動作列表',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(387,NULL,331,'ACTION_AIRLINE_ACTIONLIST','en_US','Query action list',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(388,NULL,331,'ACTION_AIRLINE_SAVE_POINTS','zh_CN','保存航点',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:23','1'),(389,NULL,331,'ACTION_AIRLINE_SAVE_POINTS','zh_TW','保存航點',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(390,NULL,331,'ACTION_AIRLINE_SAVE_POINTS','en_US','Save waypoint',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(391,NULL,331,'ACTION_AIRLINE_GET_POINTS','zh_CN','查询航点',_binary '\0','2020-10-09 09:38:16','1','2020-11-11 10:04:24','1'),(392,NULL,331,'ACTION_AIRLINE_GET_POINTS','zh_TW','查詢航點',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(393,NULL,331,'ACTION_AIRLINE_GET_POINTS','en_US','Query waypoint',_binary '\0','2020-10-09 09:38:16','1','2021-01-29 09:48:37','1'),(394,NULL,331,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL','zh_CN','摄像头详情',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(395,NULL,331,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL','zh_TW','攝像頭詳情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(396,NULL,331,'ACTION_AIRLINE_UAV_LOAD_CAM_DETAIL','en_US','Camera detail',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(397,NULL,331,'ACTION_AIRLINE_UAVMODEL_DETAIL','zh_CN','无人机类型',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(398,NULL,331,'ACTION_AIRLINE_UAVMODEL_DETAIL','zh_TW','無人機類型',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(399,NULL,331,'ACTION_AIRLINE_UAVMODEL_DETAIL','en_US','UAV model',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(400,NULL,331,'ACTION_AIRLINE_BLOCKED','zh_CN','封存航线详情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(401,NULL,331,'ACTION_AIRLINE_BLOCKED','zh_TW','封存航線詳情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(402,NULL,331,'ACTION_AIRLINE_BLOCKED','en_US','Sealed route detail',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(403,NULL,125,'MENU_AIRLINE_DETAIL','zh_CN','详情',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(404,NULL,125,'MENU_AIRLINE_DETAIL','zh_TW','詳情',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(405,NULL,125,'MENU_AIRLINE_DETAIL','en_US','Detail',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(406,NULL,125,'MENU_AIRLINE_EDIT','zh_CN','编辑',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(407,NULL,125,'MENU_AIRLINE_EDIT','zh_TW','編輯',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(408,NULL,125,'MENU_AIRLINE_EDIT','en_US','Edit',_binary '\0','2020-10-09 09:38:17','1','2020-12-28 08:04:03','1'),(409,NULL,240,'ACTION_AIRLINE_UPDATE','zh_CN','更新航线信息',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(410,NULL,240,'ACTION_AIRLINE_UPDATE','zh_TW','更新航線信息',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(411,NULL,240,'ACTION_AIRLINE_UPDATE','en_US','Update flight route information',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(415,NULL,125,'ACTION_AIRLINE_COPY','zh_CN','复制航线',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(416,NULL,125,'ACTION_AIRLINE_COPY','zh_TW','複製航線',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(417,NULL,125,'ACTION_AIRLINE_COPY','en_US','Copy flight route',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(418,NULL,125,'ACTION_AIRLINE_DEL','zh_CN','删除航线',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(419,NULL,125,'ACTION_AIRLINE_DEL','zh_TW','刪除航線',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(420,NULL,125,'ACTION_AIRLINE_DEL','en_US','Delete flight route',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(421,NULL,238,'ACTION_AIRLINE_DETAIL','zh_CN','航线详情',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(422,NULL,238,'ACTION_AIRLINE_DETAIL','zh_TW','航線詳情',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(423,NULL,238,'ACTION_AIRLINE_DETAIL','en_US','Flight route detail',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(424,NULL,125,'ACTION_AIRLINE_FILTER','zh_CN','查询条件筛选',_binary '\0','2020-10-09 09:38:17','1','2020-11-11 10:04:24','1'),(425,NULL,125,'ACTION_AIRLINE_FILTER','zh_TW','查詢條件篩選',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(426,NULL,125,'ACTION_AIRLINE_FILTER','en_US','Query criteria filtering',_binary '\0','2020-10-09 09:38:17','1','2021-01-29 09:48:37','1'),(427,NULL,125,'ACTION_AIRLINE_BULK_DEL','zh_CN','批量删除航线',_binary '\0','2020-10-09 09:38:18','1','2020-11-11 10:04:24','1'),(428,NULL,125,'ACTION_AIRLINE_BULK_DEL','zh_TW','批量刪除航線',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(429,NULL,125,'ACTION_AIRLINE_BULK_DEL','en_US','Batch delete flight route',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(430,NULL,125,'ACTION_AIRLINE_LIST','zh_CN','查询航线列表',_binary '\0','2020-10-09 09:38:18','1','2020-11-11 10:04:24','1'),(431,NULL,125,'ACTION_AIRLINE_LIST','zh_TW','查詢航線列表',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(432,NULL,125,'ACTION_AIRLINE_LIST','en_US','Query flight route list',_binary '\0','2020-10-09 09:38:18','1','2021-01-29 09:48:37','1'),(502,NULL,NULL,'MENU_FLIGHTMONITOR','zh_CN','飞行监视',_binary '\0','2020-10-09 09:38:20','1','2024-06-18 10:42:07','188243415207510016'),(503,NULL,NULL,'MENU_FLIGHTMONITOR','zh_TW','飛行監視',_binary '\0','2020-10-09 09:38:20','1','2024-06-18 10:42:07','188243415207510016'),(504,NULL,NULL,'MENU_FLIGHTMONITOR','en_US','Flight monitor',_binary '\0','2020-10-09 09:38:20','1','2024-06-18 10:42:07','188243415207510016'),(505,NULL,358,'ACTION_MISSION_STATUS_EDIT','zh_CN','修改任务状态',_binary '\0','2020-10-09 09:38:20','1','2020-12-28 08:04:02','1'),(506,NULL,358,'ACTION_MISSION_STATUS_EDIT','zh_TW','修改任務狀態',_binary '\0','2020-10-09 09:38:20','1','2020-12-28 08:04:02','1'),(507,NULL,358,'ACTION_MISSION_STATUS_EDIT','en_US','Modify task status',_binary '\0','2020-10-09 09:38:20','1','2021-01-29 09:48:36','1'),(532,NULL,NULL,'MENU_APPROVAL','zh_CN','审批系统',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(533,NULL,NULL,'MENU_APPROVAL','zh_TW','審批系統',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(534,NULL,NULL,'MENU_APPROVAL','en_US','Approval system',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(535,NULL,366,'MENU_APPROVAL_MANAGER','zh_CN','审批管理',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(536,NULL,366,'MENU_APPROVAL_MANAGER','zh_TW','審批管理',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(537,NULL,366,'MENU_APPROVAL_MANAGER','en_US','Approval management',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(538,NULL,367,'ACTION_APPROVAL_MANAGE_SEARCH','zh_CN','配置流程列表',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(539,NULL,367,'ACTION_APPROVAL_MANAGE_SEARCH','zh_TW','配置流程列表',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(540,NULL,367,'ACTION_APPROVAL_MANAGE_SEARCH','en_US','Configure list of process',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(541,NULL,367,'ACTION_APPROVAL_MANAGE_EDITINFO','zh_CN','编辑信息',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(542,NULL,367,'ACTION_APPROVAL_MANAGE_EDITINFO','zh_TW','編輯信息',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(543,NULL,367,'ACTION_APPROVAL_MANAGE_EDITINFO','en_US','Edit Information',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(544,NULL,367,'MENU_APPROVAL_EDITPROCESS','zh_CN','编辑流程',_binary '\0','2020-11-11 07:06:08','1','2021-03-19 06:27:44','1'),(545,NULL,367,'MENU_APPROVAL_EDITPROCESS','zh_TW','編輯流程',_binary '\0','2020-11-11 07:06:08','1','2021-03-19 06:27:44','1'),(546,NULL,367,'MENU_APPROVAL_EDITPROCESS','en_US','Editing process',_binary '\0','2020-11-11 07:06:08','1','2021-03-19 06:27:44','1'),(547,NULL,370,'ACTION_APPROVAL_MANAGE_EDITPROCESS','zh_CN','编辑流程',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(548,NULL,370,'ACTION_APPROVAL_MANAGE_EDITPROCESS','zh_TW','編輯流程',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(549,NULL,370,'ACTION_APPROVAL_MANAGE_EDITPROCESS','en_US','Edit process',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(550,NULL,366,'MENU_APPROVAL_LIST_ADMIN','zh_CN','审批列表',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(551,NULL,366,'MENU_APPROVAL_LIST_ADMIN','zh_TW','審批列表',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(552,NULL,366,'MENU_APPROVAL_LIST_ADMIN','en_US','Approval list',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(553,NULL,372,'ACTION_APPROVAL_LIST_SEARCH_ADMIN','zh_CN','查询',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(554,NULL,372,'ACTION_APPROVAL_LIST_SEARCH_ADMIN','zh_TW','查詢',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(555,NULL,372,'ACTION_APPROVAL_LIST_SEARCH_ADMIN','en_US','Search',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(556,NULL,372,'MENU_APPROVAL_DETAIL_ADMIN','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(557,NULL,372,'MENU_APPROVAL_DETAIL_ADMIN','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(558,NULL,372,'MENU_APPROVAL_DETAIL_ADMIN','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(559,NULL,374,'ACTION_APPROVAL_LIST_DETAIL_ADMIN','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(560,NULL,374,'ACTION_APPROVAL_LIST_DETAIL_ADMIN','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(561,NULL,374,'ACTION_APPROVAL_LIST_DETAIL_ADMIN','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(562,NULL,366,'MENU_APPROVAL_LIST','zh_CN','我的审批',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(563,NULL,366,'MENU_APPROVAL_LIST','zh_TW','我的審批',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(564,NULL,366,'MENU_APPROVAL_LIST','en_US','My approval list',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(565,NULL,376,'ACTION_APPROVAL_LIST_SEARCH','zh_CN','查询',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(566,NULL,376,'ACTION_APPROVAL_LIST_SEARCH','zh_TW','查詢',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(567,NULL,376,'ACTION_APPROVAL_LIST_SEARCH','en_US','Search',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(568,NULL,376,'MENU_APPROVAL_DETAIL','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(569,NULL,376,'MENU_APPROVAL_DETAIL','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(570,NULL,376,'MENU_APPROVAL_DETAIL','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(571,NULL,378,'ACTION_APPROVAL_LIST_DETAIL','zh_CN','详情',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(572,NULL,378,'ACTION_APPROVAL_LIST_DETAIL','zh_TW','詳情',_binary '\0','2020-11-11 07:06:08','1','2021-01-29 09:48:36','1'),(573,NULL,378,'ACTION_APPROVAL_LIST_DETAIL','en_US','Detail',_binary '\0','2020-11-11 07:06:08','1','2020-12-28 08:04:02','1'),(577,NULL,63,'MENU_AIRSPACE_APPROVAL','zh_CN','审批进度',_binary '\0','2020-11-11 08:49:33','1','2022-01-18 11:23:28','1'),(578,NULL,63,'MENU_AIRSPACE_APPROVAL','zh_TW','審批進度',_binary '\0','2020-11-11 08:49:33','1','2022-01-18 11:23:28','1'),(579,NULL,63,'MENU_AIRSPACE_APPROVAL','en_US','Approval progress',_binary '\0','2020-11-11 08:49:33','1','2022-01-18 11:23:28','1'),(580,NULL,381,'ACTION_AIRSPACE_APPLY_APPROVAL','zh_CN','审批',_binary '\0','2020-11-11 08:49:33','1','2020-12-28 08:04:01','1'),(581,NULL,381,'ACTION_AIRSPACE_APPLY_APPROVAL','zh_TW','審批',_binary '\0','2020-11-11 08:49:33','1','2020-12-28 08:04:01','1'),(582,NULL,381,'ACTION_AIRSPACE_APPLY_APPROVAL','en_US','Approval',_binary '\0','2020-11-11 08:49:33','1','2021-01-29 09:48:34','1'),(583,NULL,239,'ACTION_AIRLINE_UAV_MODEL_LIST','zh_CN','无人机类型列',_binary '\0','2020-11-11 10:04:23','1','2020-12-28 08:04:03','1'),(584,NULL,239,'ACTION_AIRLINE_UAV_MODEL_LIST','zh_TW','無人機類型列',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(585,NULL,239,'ACTION_AIRLINE_UAV_MODEL_LIST','en_US','UAV model column',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(586,NULL,239,'ACTION_AIRLINE_LOAD_AND_HANGER','zh_CN','载荷和机库',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(587,NULL,239,'ACTION_AIRLINE_LOAD_AND_HANGER','zh_TW','載荷和機庫',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(588,NULL,239,'ACTION_AIRLINE_LOAD_AND_HANGER','en_US','Payload and box',_binary '\0','2020-11-11 10:04:23','1','2021-01-29 09:48:37','1'),(589,NULL,331,'ACTION_AIRLINE_IMPORT_KML','zh_CN','KML导入',_binary '\0','2020-11-11 10:04:24','1','2020-12-28 08:04:03','1'),(590,NULL,331,'ACTION_AIRLINE_IMPORT_KML','zh_TW','KML導入',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(591,NULL,331,'ACTION_AIRLINE_IMPORT_KML','en_US','Import KML',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(592,NULL,238,'ACTION_AIRLINE_EXPORT_KML','zh_CN','导出KML',_binary '\0','2020-11-11 10:04:24','1','2020-12-28 08:04:03','1'),(593,NULL,238,'ACTION_AIRLINE_EXPORT_KML','zh_TW','導出KML',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(594,NULL,238,'ACTION_AIRLINE_EXPORT_KML','en_US','Export KML',_binary '\0','2020-11-11 10:04:24','1','2021-01-29 09:48:37','1'),(595,NULL,62,'ACTION_UPLOAD','zh_CN','发起审批',_binary '\0','2020-12-28 08:04:01','1','2021-01-29 09:48:34','1'),(596,NULL,62,'ACTION_UPLOAD','zh_TW','發起審批',_binary '\0','2020-12-28 08:04:01','1','2021-01-29 09:48:34','1'),(597,NULL,62,'ACTION_UPLOAD','en_US','Start approval',_binary '\0','2020-12-28 08:04:01','1','2021-01-29 09:48:34','1'),(598,NULL,NULL,'MENU_SIMULATION','zh_CN','仿真规划',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(599,NULL,NULL,'MENU_SIMULATION','zh_TW','仿真規劃',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(600,NULL,NULL,'MENU_SIMULATION','en_US','Signal simulation',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:37','1'),(601,NULL,388,'ACTION_simulation','zh_CN','仿真规划',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(602,NULL,388,'ACTION_simulation','zh_TW','仿真規劃',_binary '\0','2020-12-28 08:04:03','1','2021-11-05 10:30:34','1'),(603,NULL,388,'ACTION_simulation','en_US','Signal simulation',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:37','1'),(604,NULL,NULL,'MENU_AUDIT','zh_CN','审核系统',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(605,NULL,NULL,'MENU_AUDIT','zh_TW','審核系統',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(606,NULL,NULL,'MENU_AUDIT','en_US','Audit system',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(607,NULL,171,'MENU_AUDIT_MANAGER','zh_CN','审核系统',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(608,NULL,171,'MENU_AUDIT_MANAGER','zh_TW','審核系統',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(609,NULL,171,'MENU_AUDIT_MANAGER','en_US','Audit system',_binary '\0','2020-12-28 08:04:03','1','2021-01-29 09:48:38','1'),(616,51694469166137344,NULL,'MENU_WAREHOUSE_MANAGE','en_US','Material management',_binary '\0','2020-12-31 02:59:51','1','2022-10-13 07:15:44','1'),(617,51694469166137344,NULL,'MENU_WAREHOUSE_MANAGE','zh_CN','素材管理',_binary '\0','2020-12-31 02:59:51','1','2021-03-19 06:32:34','1'),(618,51694469166137344,NULL,'MENU_WAREHOUSE_MANAGE','zh_TW','素材管理',_binary '\0','2020-12-31 02:59:51','1','2021-03-19 06:32:34','1'),(619,NULL,NULL,'MENU_SCREEN','zh_CN','通用数据大屏',_binary '\0','2021-01-29 10:20:33','1','2023-02-08 09:38:05','1'),(620,NULL,NULL,'MENU_SCREEN','zh_TW','通用數據大屏',_binary '\0','2021-01-29 10:20:33','1','2023-02-08 09:38:05','1'),(621,NULL,NULL,'MENU_SCREEN','en_US','Common data screen',_binary '\0','2021-01-29 10:20:33','1','2023-02-08 09:38:05','1'),(625,51700779089657856,NULL,'MENU_IMAGE_TECH','en_US','Image technology',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(626,51700779089657856,NULL,'MENU_IMAGE_TECH','zh_CN','图像技术',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(627,51700779089657856,NULL,'MENU_IMAGE_TECH','zh_TW','圖像技術',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(628,51700779089657856,395,'MENU_IMAGE_VEHICLE','en_US','Vehicle analysis',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(629,51700779089657856,395,'MENU_IMAGE_VEHICLE','zh_CN','车辆分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(630,51700779089657856,395,'MENU_IMAGE_VEHICLE','zh_TW','車輛分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:44','1'),(631,51700779089657856,395,'MENU_IMAGE_HANDLE','en_US','Image processing',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(632,51700779089657856,395,'MENU_IMAGE_HANDLE','zh_CN','图像处理',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(633,51700779089657856,395,'MENU_IMAGE_HANDLE','zh_TW','圖像處理',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(634,51700779089657856,397,'MENU_IMAGE_SAFETYHAT','en_US','Helmet recognition',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(635,51700779089657856,397,'MENU_IMAGE_SAFETYHAT','zh_CN','安全帽识别',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(636,51700779089657856,397,'MENU_IMAGE_SAFETYHAT','zh_TW','安全帽識別',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(637,51700779089657856,397,'MENU_IMAGE_ROADSEG','en_US','Road segmentation',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(638,51700779089657856,397,'MENU_IMAGE_ROADSEG','zh_CN','道路分割',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(639,51700779089657856,397,'MENU_IMAGE_ROADSEG','zh_TW','道路分割',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(640,51700779089657856,395,'MENU_IMAGE_ENHANCE','en_US','Image enhancement',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(641,51700779089657856,395,'MENU_IMAGE_ENHANCE','zh_CN','图像增强',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(642,51700779089657856,395,'MENU_IMAGE_ENHANCE','zh_TW','圖像增強',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(643,51700779089657856,400,'MENU_IMAGE_DEFOGGING','en_US','Image dehazing',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(644,51700779089657856,400,'MENU_IMAGE_DEFOGGING','zh_CN','图像去雾',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(645,51700779089657856,400,'MENU_IMAGE_DEFOGGING','zh_TW','圖像去霧',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(646,51700779089657856,395,'MENU_IMAGE_BODY','en_US','Body analysis',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(647,51700779089657856,395,'MENU_IMAGE_BODY','zh_CN','人体分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(648,51700779089657856,395,'MENU_IMAGE_BODY','zh_TW','人體分析',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(649,51700779089657856,402,'MENU_IMAGE_DENSITY','en_US','Flow density',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(650,51700779089657856,402,'MENU_IMAGE_DENSITY','zh_CN','人流量统计',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(651,51700779089657856,402,'MENU_IMAGE_DENSITY','zh_TW','人流量統計',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(652,51700779089657856,NULL,'MENU_VIDEO_TECH','en_US','Video technology',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(653,51700779089657856,NULL,'MENU_VIDEO_TECH','zh_CN','视频技术',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(654,51700779089657856,NULL,'MENU_VIDEO_TECH','zh_TW','視頻技術',_binary '\0','2021-02-01 06:36:26','1','2021-03-19 06:28:45','1'),(667,NULL,239,'ACTION_AIRLINE_CHECK_QUOTA','zh_CN','校验配额',_binary '\0','2021-03-19 06:27:45','1','2021-04-20 09:53:00','1'),(668,NULL,239,'ACTION_AIRLINE_CHECK_QUOTA','zh_TW','校驗配額',_binary '\0','2021-03-19 06:27:45','1','2021-04-20 09:53:00','1'),(669,NULL,239,'ACTION_AIRLINE_CHECK_QUOTA','en_US','Check the quota',_binary '\0','2021-03-19 06:27:45','1','2021-04-20 09:53:00','1'),(673,51700779089657856,396,'ACTION_IMAGE_VEHICLE','en_US','显示车辆分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(674,51700779089657856,396,'ACTION_IMAGE_VEHICLE','zh_CN','显示车辆分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(675,51700779089657856,396,'ACTION_IMAGE_VEHICLE','zh_TW','显示车辆分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(676,51700779089657856,397,'ACTION_IMAGE_HANDLE','en_US','显示图像处理',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(677,51700779089657856,397,'ACTION_IMAGE_HANDLE','zh_CN','显示图像处理',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(678,51700779089657856,397,'ACTION_IMAGE_HANDLE','zh_TW','显示图像处理',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(679,51700779089657856,400,'ACTION_IMAGE_ENHANCE','en_US','显示图像增强',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(680,51700779089657856,400,'ACTION_IMAGE_ENHANCE','zh_CN','显示图像增强',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(681,51700779089657856,400,'ACTION_IMAGE_ENHANCE','zh_TW','显示图像增强',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:44','1'),(682,51700779089657856,402,'ACTION_IMAGE_BODY','en_US','显示人体分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:45','1'),(683,51700779089657856,402,'ACTION_IMAGE_BODY','zh_CN','显示人体分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:45','1'),(684,51700779089657856,402,'ACTION_IMAGE_BODY','zh_TW','显示人体分析',_binary '\0','2021-03-19 06:28:45','1','2021-04-20 09:45:45','1'),(727,51694469166137344,NULL,'MENU_WAREHOUSE','en_US','Warehouse',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(728,51694469166137344,NULL,'MENU_WAREHOUSE','zh_CN','素材库',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(729,51694469166137344,NULL,'MENU_WAREHOUSE','zh_TW','素材庫',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(733,51694469166137344,392,'MENU_WAREHOUSE_MANAGE_INDEX','en_US','Material management',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(734,51694469166137344,392,'MENU_WAREHOUSE_MANAGE_INDEX','zh_CN','素材管理',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(735,51694469166137344,392,'MENU_WAREHOUSE_MANAGE_INDEX','zh_TW','素材管理',_binary '\0','2021-03-19 06:32:34','1','2022-10-13 07:15:44','1'),(736,51694469166137344,429,'MENU_WAREHOUSE_INDEX','zh_CN','素材仓库',_binary '\0','2021-03-19 07:03:55','87912590847508480','2022-10-13 07:15:44','1'),(737,51694469166137344,429,'MENU_WAREHOUSE_INDEX','zh_TW','素材倉庫',_binary '\0','2021-03-19 07:03:55','87912590847508480','2022-10-13 07:15:44','1'),(738,51694469166137344,429,'MENU_WAREHOUSE_INDEX','en_US','Warehouse',_binary '\0','2021-03-19 07:03:55','87912590847508480','2022-10-13 07:15:44','1'),(739,51694469166137344,432,'MENU_WAREHOUSE_DETAIL','zh_CN','素材详情',_binary '\0','2021-03-19 07:04:10','87912590847508480','2022-10-13 07:15:44','1'),(740,51694469166137344,432,'MENU_WAREHOUSE_DETAIL','zh_TW','素材詳情',_binary '\0','2021-03-19 07:04:10','87912590847508480','2022-10-13 07:15:44','1'),(741,51694469166137344,432,'MENU_WAREHOUSE_DETAIL','en_US','Detail',_binary '\0','2021-03-19 07:04:10','87912590847508480','2022-10-13 07:15:44','1'),(742,51694469166137344,NULL,'MENU_TASK_MONITOR','zh_CN','任务监控',_binary '\0','2021-03-19 07:04:28','87912590847508480','2022-10-13 07:15:44','1'),(743,51694469166137344,NULL,'MENU_TASK_MONITOR','zh_TW','任務監控',_binary '\0','2021-03-19 07:04:28','87912590847508480','2022-10-13 07:15:44','1'),(744,51694469166137344,NULL,'MENU_TASK_MONITOR','en_US','Tack monitoring',_binary '\0','2021-03-19 07:04:28','87912590847508480','2022-10-13 07:15:44','1'),(745,51694469166137344,391,'MENU_TASK_MONITOR_INDEX','zh_CN','任务监控',_binary '\0','2021-03-19 07:04:41','87912590847508480','2022-10-13 07:15:44','1'),(746,51694469166137344,391,'MENU_TASK_MONITOR_INDEX','zh_TW','任務監控',_binary '\0','2021-03-19 07:04:41','87912590847508480','2022-10-13 07:15:44','1'),(747,51694469166137344,391,'MENU_TASK_MONITOR_INDEX','en_US','Tack monitoring',_binary '\0','2021-03-19 07:04:41','87912590847508480','2022-10-13 07:15:44','1'),(748,92183251954696192,NULL,'MENU_APP','en_US','Product Result',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(749,92183251954696192,NULL,'MENU_APP','zh_CN','产品检索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(750,92183251954696192,NULL,'MENU_APP','zh_TW','產品檢索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(751,92183251954696192,435,'MENU_APP_RESULT','en_US','Product Result',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(752,92183251954696192,435,'MENU_APP_RESULT','zh_CN','产品检索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(753,92183251954696192,435,'MENU_APP_RESULT','zh_TW','產品檢索',_binary '\0','2021-03-31 09:30:46','1',NULL,NULL),(754,92183251954696192,NULL,'MENU_DATA','en_US','Data Manage',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(755,92183251954696192,NULL,'MENU_DATA','zh_CN','数据管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(756,92183251954696192,NULL,'MENU_DATA','zh_TW','數據管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(757,92183251954696192,437,'MENU_DATA_MANAGE','en_US','Data Manage',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(758,92183251954696192,437,'MENU_DATA_MANAGE','zh_CN','数据管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(759,92183251954696192,437,'MENU_DATA_MANAGE','zh_TW','數據管理',_binary '\0','2021-03-31 09:30:47','1',NULL,NULL),(796,51701172477624320,NULL,'MENU_','en_US','gaoguangpu',_binary '\0','2021-04-20 09:44:32','1',NULL,NULL),(797,51701172477624320,NULL,'MENU_','zh_CN','高光谱摇感',_binary '\0','2021-04-20 09:44:32','1',NULL,NULL),(798,51701172477624320,NULL,'MENU_','zh_TW','高光谱摇感',_binary '\0','2021-04-20 09:44:32','1',NULL,NULL),(799,51700961512521728,NULL,'MENU_SIMULATION_LIST','en_US','list',_binary '\0','2021-04-20 09:45:11','1',NULL,NULL),(800,51700961512521728,NULL,'MENU_SIMULATION_LIST','zh_CN','列表',_binary '\0','2021-04-20 09:45:11','1',NULL,NULL),(801,51700961512521728,NULL,'MENU_SIMULATION_LIST','zh_TW','列表',_binary '\0','2021-04-20 09:45:11','1',NULL,NULL),(802,51700779089657856,396,'MENU_IMAGE_LICENSEPLATE','en_US','License plate recognition',_binary '\0','2021-04-20 09:45:44','1','2021-07-06 06:48:40','1'),(803,51700779089657856,396,'MENU_IMAGE_LICENSEPLATE','zh_CN','车牌识别',_binary '\0','2021-04-20 09:45:44','1','2021-07-06 06:48:40','1'),(804,51700779089657856,396,'MENU_IMAGE_LICENSEPLATE','zh_TW','車牌識別',_binary '\0','2021-04-20 09:45:44','1','2021-07-06 06:48:40','1'),(808,NULL,358,'ACTION_MULTIMONITOR_VIDEO','zh_CN','多机监视',_binary '\0','2021-04-20 09:48:46','1','2021-06-16 07:50:15','1'),(809,NULL,358,'ACTION_MULTIMONITOR_VIDEO','zh_TW','多机监视',_binary '\0','2021-04-20 09:48:46','1','2021-06-16 07:50:15','1'),(810,NULL,358,'ACTION_MULTIMONITOR_VIDEO','en_US','多机监视',_binary '\0','2021-04-20 09:48:46','1','2021-06-16 07:50:15','1'),(814,NULL,124,'MENU_AIRLINE_SYSTEM_MANAGEMENT','zh_CN','系统航线管理',_binary '\0','2021-04-20 09:51:10','291','2021-04-20 09:53:00','1'),(815,NULL,124,'MENU_AIRLINE_SYSTEM_MANAGEMENT','zh_TW','系統航線管理',_binary '\0','2021-04-20 09:51:10','291','2021-04-20 09:53:00','1'),(816,NULL,124,'MENU_AIRLINE_SYSTEM_MANAGEMENT','en_US','System flight management',_binary '\0','2021-04-20 09:51:10','291','2021-04-20 09:53:00','1'),(820,NULL,331,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT','zh_CN','空域和机场',_binary '\0','2021-04-20 09:53:00','1','2021-05-26 03:24:13','1'),(821,NULL,331,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT','zh_TW','空域和機場',_binary '\0','2021-04-20 09:53:00','1','2021-05-26 03:24:13','1'),(822,NULL,331,'ACTION_AIRLINE_QUERY_AIRSPACE_AIRPORT','en_US','Airspace and airport',_binary '\0','2021-04-20 09:53:00','1','2021-05-26 03:24:13','1'),(823,NULL,124,'MENU_AIRLINE_MAP_DETAIL','zh_CN','航线地图详情',_binary '\0','2021-04-20 09:53:00','1','2022-06-30 07:57:53','1'),(824,NULL,124,'MENU_AIRLINE_MAP_DETAIL','zh_TW','航綫地圖詳情',_binary '\0','2021-04-20 09:53:00','1','2022-06-30 07:57:53','1'),(825,NULL,124,'MENU_AIRLINE_MAP_DETAIL','en_US','Flight route map detail',_binary '\0','2021-04-20 09:53:00','1','2022-06-30 07:57:53','1'),(841,NULL,NULL,'MENU_MISSION','zh_CN','作业管理',_binary '\0','2021-05-12 07:09:20','1','2023-09-27 10:02:47','1'),(842,NULL,NULL,'MENU_MISSION','zh_TW','作業管理',_binary '\0','2021-05-12 07:09:20','1','2023-09-27 10:02:47','1'),(843,NULL,NULL,'MENU_MISSION','en_US','Mission management',_binary '\0','2021-05-12 07:09:20','1','2023-09-27 10:02:47','1'),(844,NULL,463,'MENU_TIMING_MISSION','zh_CN','定时作业',_binary '\0','2021-05-12 07:09:20','1','2021-05-12 07:40:01','1'),(845,NULL,463,'MENU_TIMING_MISSION','zh_TW','定時作業',_binary '\0','2021-05-12 07:09:20','1','2021-05-12 07:40:01','1'),(846,NULL,463,'MENU_TIMING_MISSION','en_US','timing mission',_binary '\0','2021-05-12 07:09:20','1','2021-05-12 07:40:01','1'),(901,NULL,463,'ACTION_MISSION_SEARCH','zh_CN','查询作业列表',_binary '\0','2021-05-12 07:37:20','89730635001757696','2022-09-20 08:30:51','1'),(902,NULL,463,'ACTION_MISSION_SEARCH','zh_TW','查詢作業列表',_binary '\0','2021-05-12 07:37:20','89730635001757696','2022-09-20 08:30:51','1'),(903,NULL,463,'ACTION_MISSION_SEARCH','en_US','Query mission list',_binary '\0','2021-05-12 07:37:20','89730635001757696','2022-09-20 08:30:51','1'),(925,NULL,463,'ACTION_MISSON_FILTER','zh_CN','下拉框筛选',_binary '\0','2021-05-12 07:38:05','89730635001757696','2021-05-12 07:40:01','1'),(926,NULL,463,'ACTION_MISSON_FILTER','zh_TW','下拉框篩選',_binary '\0','2021-05-12 07:38:05','89730635001757696','2021-05-12 07:40:01','1'),(927,NULL,463,'ACTION_MISSON_FILTER','en_US','Drop down box filter',_binary '\0','2021-05-12 07:38:05','89730635001757696','2021-05-12 07:40:01','1'),(949,NULL,463,'ACTION_MISSION_BULKDEL','zh_CN','批量删除作业',_binary '\0','2021-05-12 07:38:45','89730635001757696','2021-05-12 07:40:01','1'),(950,NULL,463,'ACTION_MISSION_BULKDEL','zh_TW','批量刪除作業',_binary '\0','2021-05-12 07:38:45','89730635001757696','2021-05-12 07:40:01','1'),(951,NULL,463,'ACTION_MISSION_BULKDEL','en_US','Batch delete mission',_binary '\0','2021-05-12 07:38:45','89730635001757696','2021-05-12 07:40:01','1'),(964,NULL,463,'ACTION_MISSION_CLONE','zh_CN','复制作业',_binary '\0','2021-05-12 07:39:16','89730635001757696','2021-05-12 07:40:01','1'),(965,NULL,463,'ACTION_MISSION_CLONE','zh_TW','複製作業',_binary '\0','2021-05-12 07:39:16','89730635001757696','2021-05-12 07:40:01','1'),(966,NULL,463,'ACTION_MISSION_CLONE','en_US','Copy mission',_binary '\0','2021-05-12 07:39:16','89730635001757696','2021-05-12 07:40:01','1'),(967,NULL,464,'MENU_TIMING_MISSION_ADD','zh_CN','新建作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(968,NULL,464,'MENU_TIMING_MISSION_ADD','zh_TW','新建作業',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(969,NULL,464,'MENU_TIMING_MISSION_ADD','en_US','add timing mission',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(970,NULL,471,'ACTION_ADD_TIMING_MISSION','zh_CN','新建定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(971,NULL,471,'ACTION_ADD_TIMING_MISSION','zh_TW','新建定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(972,NULL,471,'ACTION_ADD_TIMING_MISSION','en_US','新建定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(973,NULL,471,'ACTION_UPDATE_TIMING_MISSION','zh_CN','更新定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(974,NULL,471,'ACTION_UPDATE_TIMING_MISSION','zh_TW','更新定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(975,NULL,471,'ACTION_UPDATE_TIMING_MISSION','en_US','Update timing mission',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(976,NULL,464,'MENU_TIMING_MISSION_LIST','zh_CN','定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(977,NULL,464,'MENU_TIMING_MISSION_LIST','zh_TW','定时作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(978,NULL,464,'MENU_TIMING_MISSION_LIST','en_US','timing mission list',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(979,NULL,474,'ACTION_TIMING_MISSION_LIST','zh_CN','定时列表',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(980,NULL,474,'ACTION_TIMING_MISSION_LIST','zh_TW','定时列表',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(981,NULL,474,'ACTION_TIMING_MISSION_LIST','en_US','Timing mission list',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(982,NULL,474,'ACTION_TIMING_MISSION_DELETE','zh_CN','删除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(983,NULL,474,'ACTION_TIMING_MISSION_DELETE','zh_TW','刪除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(984,NULL,474,'ACTION_TIMING_MISSION_DELETE','en_US','Delete',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(985,NULL,474,'ACTION_TIMING_MISSION_BULK_DELETE','zh_CN','批量删除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(986,NULL,474,'ACTION_TIMING_MISSION_BULK_DELETE','zh_TW','批量刪除',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(987,NULL,474,'ACTION_TIMING_MISSION_BULK_DELETE','en_US','Bulk delete',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(991,NULL,464,'MENU_TIMING_MISSION_DETAIL','zh_CN','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(992,NULL,464,'MENU_TIMING_MISSION_DETAIL','zh_TW','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(993,NULL,464,'MENU_TIMING_MISSION_DETAIL','en_US','Detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(994,NULL,479,'ACTION_TIMING_MISSION_DETAIL','zh_CN','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(995,NULL,479,'ACTION_TIMING_MISSION_DETAIL','zh_TW','詳情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(996,NULL,479,'ACTION_TIMING_MISSION_DETAIL','en_US','Detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(997,NULL,464,'MENU_TIMING_MISSION_EDIT','zh_CN','编辑',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(998,NULL,464,'MENU_TIMING_MISSION_EDIT','zh_TW','编辑',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(999,NULL,464,'MENU_TIMING_MISSION_EDIT','en_US','Edit',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1000,NULL,463,'MENU_MISSION_EDIT','zh_CN','编辑',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1001,NULL,463,'MENU_MISSION_EDIT','zh_TW','編輯',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1002,NULL,463,'MENU_MISSION_EDIT','en_US','Edit',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1003,NULL,463,'ACTION_MISSION_DEL','zh_CN','删除作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1004,NULL,463,'ACTION_MISSION_DEL','zh_TW','刪除作業',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1005,NULL,463,'ACTION_MISSION_DEL','en_US','Delete mission',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1006,NULL,463,'MENU_MISSION_REPLAY','zh_CN','作业回放',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1007,NULL,463,'MENU_MISSION_REPLAY','zh_TW','作業回放',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1008,NULL,463,'MENU_MISSION_REPLAY','en_US','Mission replay',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1009,NULL,484,'ACTION_MISSION_REPLAY_DATA','zh_CN','作业回放数据',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1010,NULL,484,'ACTION_MISSION_REPLAY_DATA','zh_TW','作業回放數據',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1011,NULL,484,'ACTION_MISSION_REPLAY_DATA','en_US','Mission replay data',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1012,NULL,463,'MENU_MISSION_DETAIL','zh_CN','详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1013,NULL,463,'MENU_MISSION_DETAIL','zh_TW','詳情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1014,NULL,463,'MENU_MISSION_DETAIL','en_US','Detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1015,NULL,486,'ACTION_MISSION_DETAIL','zh_CN','查看作业详情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1016,NULL,486,'ACTION_MISSION_DETAIL','zh_TW','查看作業詳情',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1017,NULL,486,'ACTION_MISSION_DETAIL','en_US','View mission detail',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1018,NULL,486,'ACTION_SUBTASK_DELETE','zh_CN','删除子作业',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1019,NULL,486,'ACTION_SUBTASK_DELETE','zh_TW','刪除子作業',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1020,NULL,486,'ACTION_SUBTASK_DELETE','en_US','Delete subtask',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1021,NULL,463,'MENU_MISSION_ADD','zh_CN','新建作业',_binary '\0','2021-05-12 07:40:01','1','2022-06-08 05:49:07','1'),(1022,NULL,463,'MENU_MISSION_ADD','zh_TW','新建作業',_binary '\0','2021-05-12 07:40:01','1','2022-06-08 05:49:07','1'),(1023,NULL,463,'MENU_MISSION_ADD','en_US','New mission',_binary '\0','2021-05-12 07:40:01','1','2022-06-08 05:49:07','1'),(1024,NULL,489,'ACTION_MISSION_CHECK_MISSION_NAME','zh_CN','作业名称验重',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1025,NULL,489,'ACTION_MISSION_CHECK_MISSION_NAME','zh_TW','作業名稱驗重',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1026,NULL,489,'ACTION_MISSION_CHECK_MISSION_NAME','en_US','Check mission name conflict',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1027,NULL,489,'ACTION_MISSION_APPLY_APPROVAL','zh_CN','作业审批',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1028,NULL,489,'ACTION_MISSION_APPLY_APPROVAL','zh_TW','作業審批',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1029,NULL,489,'ACTION_MISSION_APPLY_APPROVAL','en_US','Mission approval',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1030,NULL,489,'ACTION_MISSION_CHECK_QUOTA','zh_CN','校验配额',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1031,NULL,489,'ACTION_MISSION_CHECK_QUOTA','zh_TW','校驗配額',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1032,NULL,489,'ACTION_MISSION_CHECK_QUOTA','en_US','Check the quota',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1033,NULL,489,'ACTION_MISSION_GET_HANGAR_INSTANCE','zh_CN','获取机库实例',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1034,NULL,489,'ACTION_MISSION_GET_HANGAR_INSTANCE','zh_TW','獲取機庫實例',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1035,NULL,489,'ACTION_MISSION_GET_HANGAR_INSTANCE','en_US','Get box instance',_binary '\0','2021-05-12 07:40:01','1','2021-07-06 06:47:46','1'),(1036,NULL,489,'ACTION_MISSION_GET_UAV_INSTANCE','zh_CN','取无人机实例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1037,NULL,489,'ACTION_MISSION_GET_UAV_INSTANCE','zh_TW','取無人機實例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1038,NULL,489,'ACTION_MISSION_GET_UAV_INSTANCE','en_US','Get UAV instance',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1039,NULL,489,'ACTION_MISSION_GET_LOAD_INSTANCE','zh_CN','获取载荷实例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1040,NULL,489,'ACTION_MISSION_GET_LOAD_INSTANCE','zh_TW','獲取載荷實例',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1041,NULL,489,'ACTION_MISSION_GET_LOAD_INSTANCE','en_US','Get payload instance',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1042,NULL,489,'ACTION_MISSION_SAVE','zh_CN','保存作业',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1043,NULL,489,'ACTION_MISSION_SAVE','zh_TW','保存作業',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1044,NULL,489,'ACTION_MISSION_SAVE','en_US','Save mission',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1045,NULL,489,'ACTION_MISSION_GET_AIRLINE_LIST','zh_CN','获取航线列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1046,NULL,489,'ACTION_MISSION_GET_AIRLINE_LIST','zh_TW','獲取航線列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1047,NULL,489,'ACTION_MISSION_GET_AIRLINE_LIST','en_US','Get flight route list',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1048,NULL,489,'ACTION_MISSION_EXECUTOR_LIST','zh_CN','取执行人列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1049,NULL,489,'ACTION_MISSION_EXECUTOR_LIST','zh_TW','取執行人列表',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1050,NULL,489,'ACTION_MISSION_EXECUTOR_LIST','en_US','Get executor list',_binary '\0','2021-05-12 07:40:02','1','2021-07-06 06:47:46','1'),(1051,NULL,124,'MENU_AIRLINE_KML_LIST','zh_CN','KML航线管理',_binary '\0','2021-05-26 03:24:13','1','2024-08-23 02:06:47','1'),(1052,NULL,124,'MENU_AIRLINE_KML_LIST','zh_TW','KML航線管理',_binary '\0','2021-05-26 03:24:13','1','2024-08-23 02:06:47','1'),(1053,NULL,124,'MENU_AIRLINE_KML_LIST','en_US','KML flight manage',_binary '\0','2021-05-26 03:24:13','1','2024-08-23 02:06:47','1'),(1054,NULL,499,'MENU_AIRLINE_KML_IMPORT','zh_CN','导入航线',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1055,NULL,499,'MENU_AIRLINE_KML_IMPORT','zh_TW','導入航線',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1056,NULL,499,'MENU_AIRLINE_KML_IMPORT','en_US','Import routes',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1057,NULL,500,'ACTION_AIRLINE_KML_IMPORT','zh_CN','导入航线',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1058,NULL,500,'ACTION_AIRLINE_KML_IMPORT','zh_TW','導入航線',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1059,NULL,500,'ACTION_AIRLINE_KML_IMPORT','en_US','Import routes',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1060,NULL,499,'ACTION_AIRLINE_KML_LIST','zh_CN','查询KML列表',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1061,NULL,499,'ACTION_AIRLINE_KML_LIST','zh_TW','查詢KML列表',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1062,NULL,499,'ACTION_AIRLINE_KML_LIST','en_US','Search KML list',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:13','1'),(1063,NULL,499,'ACTION_AIRLINE_KML_LIST_OPTIONS','zh_CN','列表查询下拉',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1064,NULL,499,'ACTION_AIRLINE_KML_LIST_OPTIONS','zh_TW','列表查詢下拉',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1065,NULL,499,'ACTION_AIRLINE_KML_LIST_OPTIONS','en_US','List search options',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1066,NULL,499,'ACTION_AIRLINE_KML_DELETE','zh_CN','删除',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1067,NULL,499,'ACTION_AIRLINE_KML_DELETE','zh_TW','刪除',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1068,NULL,499,'ACTION_AIRLINE_KML_DELETE','en_US','Delete',_binary '\0','2021-05-26 03:24:13','1','2021-06-01 10:04:14','1'),(1072,51700961512521728,452,'ACTION_SIMULATION_BTN','zh_CN','按钮',_binary '\0','2021-05-26 07:02:48','89730635001757696','2021-05-26 07:11:57','89730635001757696'),(1073,51700961512521728,452,'ACTION_SIMULATION_BTN','zh_TW','按钮',_binary '\0','2021-05-26 07:02:48','89730635001757696','2021-05-26 07:11:57','89730635001757696'),(1074,51700961512521728,452,'ACTION_SIMULATION_BTN','en_US','按钮',_binary '\0','2021-05-26 07:02:48','89730635001757696','2021-05-26 07:11:57','89730635001757696'),(1078,NULL,331,'ACTION_AIRLINE_GET_STRAP_LINE','zh_CN','带状航线',_binary '\0','2021-06-01 10:04:14','1','2021-06-16 02:50:39','1'),(1079,NULL,331,'ACTION_AIRLINE_GET_STRAP_LINE','zh_TW','带状航线',_binary '\0','2021-06-01 10:04:14','1','2021-06-16 02:50:39','1'),(1080,NULL,331,'ACTION_AIRLINE_GET_STRAP_LINE','en_US','STRAPLINE',_binary '\0','2021-06-01 10:04:14','1','2021-06-16 02:50:39','1'),(1081,51694291109543936,NULL,'MENU_INDEX','zh_CN','首页',_binary '\0','2021-06-09 07:53:41','1',NULL,NULL),(1082,51694291109543936,NULL,'MENU_INDEX','zh_TW','首页',_binary '\0','2021-06-09 07:53:41','1',NULL,NULL),(1083,51694291109543936,NULL,'MENU_INDEX','en_US','首页',_binary '\0','2021-06-09 07:53:41','1',NULL,NULL),(1087,51693429796634624,NULL,'MENU_TRAFFIC','zh_CN','交通管理权限',_binary '\0','2021-06-23 09:43:08','89730635001757696',NULL,NULL),(1088,51693429796634624,NULL,'MENU_TRAFFIC','zh_TW','交通管理权限',_binary '\0','2021-06-23 09:43:08','89730635001757696',NULL,NULL),(1089,51693429796634624,NULL,'MENU_TRAFFIC','en_US','交通管理权限',_binary '\0','2021-06-23 09:43:08','89730635001757696',NULL,NULL),(1096,NULL,474,'ACTION_MISSION_ENABLE','zh_CN','编辑启用状态',_binary '\0','2021-07-06 07:49:39','1','2021-07-30 09:57:50','1'),(1097,NULL,474,'ACTION_MISSION_ENABLE','zh_TW','編輯啟用狀態',_binary '\0','2021-07-06 07:49:39','1','2021-07-30 09:57:50','1'),(1098,NULL,474,'ACTION_MISSION_ENABLE','en_US','Edit enable status',_binary '\0','2021-07-06 07:49:39','1','2021-07-30 09:57:50','1'),(1099,NULL,65,'ACTION_EFENCE_ENABLE_SWITCH','zh_CN','启禁用电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1100,NULL,65,'ACTION_EFENCE_ENABLE_SWITCH','zh_TW','启禁用电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1101,NULL,65,'ACTION_EFENCE_ENABLE_SWITCH','en_US','Efence enable',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1102,NULL,65,'ACTION_CREAT_EFENCE_INFO','zh_CN','创建编辑电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1103,NULL,65,'ACTION_CREAT_EFENCE_INFO','zh_TW','创建编辑电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:49','1'),(1104,NULL,65,'ACTION_CREAT_EFENCE_INFO','en_US','Create Efence',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1105,NULL,65,'ACTION_DEL_EFENCE','zh_CN','删除电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1106,NULL,65,'ACTION_DEL_EFENCE','zh_TW','删除电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1107,NULL,65,'ACTION_DEL_EFENCE','en_US','Delete Efence',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1108,NULL,65,'ACTION_EFENCE_DETAI_INFO','zh_CN','电子围栏详情',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1109,NULL,65,'ACTION_EFENCE_DETAI_INFO','zh_TW','电子围栏详情',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1110,NULL,65,'ACTION_EFENCE_DETAI_INFO','en_US','Efence info',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1111,NULL,65,'ACTION_EFENCE_LIST','zh_CN','查询电子围栏列表',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1112,NULL,65,'ACTION_EFENCE_LIST','zh_TW','查询电子围栏列表',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1113,NULL,65,'ACTION_EFENCE_LIST','en_US','Query Efence list',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1114,NULL,65,'ACTION_EFENCE_PAGE_FILTER','zh_CN','模糊搜索电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1115,NULL,65,'ACTION_EFENCE_PAGE_FILTER','zh_TW','模糊搜索电子围栏',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1116,NULL,65,'ACTION_EFENCE_PAGE_FILTER','en_US','Efence filter',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1117,NULL,65,'ACTION_CHECK_EFENCE_NAME','zh_CN','校验围栏名称重复',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1118,NULL,65,'ACTION_CHECK_EFENCE_NAME','zh_TW','校验围栏名称重复',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1119,NULL,65,'ACTION_CHECK_EFENCE_NAME','en_US','Check Efence name',_binary '\0','2021-07-30 09:57:04','1','2021-07-30 10:13:50','1'),(1120,NULL,358,'ACTION_MULTIMONITOR_FINDDEVICES','zh_CN','查找设备',_binary '\0','2021-07-30 09:58:33','1','2024-06-18 11:03:48','188243415207510016'),(1121,NULL,358,'ACTION_MULTIMONITOR_FINDDEVICES','zh_TW','查找設備',_binary '\0','2021-07-30 09:58:33','1','2024-06-18 11:03:48','188243415207510016'),(1122,NULL,358,'ACTION_MULTIMONITOR_FINDDEVICES','en_US','Find devices',_binary '\0','2021-07-30 09:58:33','1','2024-06-18 11:03:48','188243415207510016'),(1129,51695802510213120,NULL,'MENU_PRODUCE','en_US','Produce Manage',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1130,51695802510213120,NULL,'MENU_PRODUCE','zh_CN','生产管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1131,51695802510213120,NULL,'MENU_PRODUCE','zh_TW','生產管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1132,51695802510213120,524,'MENU_PRODUCE_LIST','en_US','Produce Manage',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1133,51695802510213120,524,'MENU_PRODUCE_LIST','zh_CN','生产管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1134,51695802510213120,524,'MENU_PRODUCE_LIST','zh_TW','生產管理',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1135,51695802510213120,525,'ACTION_PRODUCE_LIST_BULKDEL','en_US','Bulk Delete',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1136,51695802510213120,525,'ACTION_PRODUCE_LIST_BULKDEL','zh_CN','批量删除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1137,51695802510213120,525,'ACTION_PRODUCE_LIST_BULKDEL','zh_TW','批量刪除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1138,51695802510213120,525,'MENU_PRODUCE_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1139,51695802510213120,525,'MENU_PRODUCE_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1140,51695802510213120,525,'MENU_PRODUCE_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1141,51695802510213120,527,'ACTION_PRODUCE_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1142,51695802510213120,527,'ACTION_PRODUCE_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1143,51695802510213120,527,'ACTION_PRODUCE_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1144,51695802510213120,525,'ACTION_PRODUCE_LIST_SEARCH','en_US','Search',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1145,51695802510213120,525,'ACTION_PRODUCE_LIST_SEARCH','zh_CN','查询',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1146,51695802510213120,525,'ACTION_PRODUCE_LIST_SEARCH','zh_TW','查詢',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1147,51695802510213120,525,'ACTION_PRODUCT_LIST_START','en_US','StartRebuildCancel',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1148,51695802510213120,525,'ACTION_PRODUCT_LIST_START','zh_CN','开始重建取消',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1149,51695802510213120,525,'ACTION_PRODUCT_LIST_START','zh_TW','開始重建取消',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1150,51695802510213120,525,'MENU_PRODUCE_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1151,51695802510213120,525,'MENU_PRODUCE_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1152,51695802510213120,525,'MENU_PRODUCE_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:28','1'),(1153,51695802510213120,531,'ACTION_PRODUCE_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1154,51695802510213120,531,'ACTION_PRODUCE_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1155,51695802510213120,531,'ACTION_PRODUCE_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1156,51695802510213120,525,'ACTION_PRODUCE_LIST_DEL','en_US','Delete',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1157,51695802510213120,525,'ACTION_PRODUCE_LIST_DEL','zh_CN','删除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1158,51695802510213120,525,'ACTION_PRODUCE_LIST_DEL','zh_TW','刪除',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1159,51695802510213120,525,'MENU_PRODUCE_ADD','en_US','Add Mission',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1160,51695802510213120,525,'MENU_PRODUCE_ADD','zh_CN','新建任务',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1161,51695802510213120,525,'MENU_PRODUCE_ADD','zh_TW','新建任务',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1162,51695802510213120,534,'ACTION_PRODUCE_ADD','en_US','Add',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1163,51695802510213120,534,'ACTION_PRODUCE_ADD','zh_CN','新建',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1164,51695802510213120,534,'ACTION_PRODUCE_ADD','zh_TW','新建',_binary '\0','2021-07-30 10:06:53','1','2022-01-18 11:24:29','1'),(1165,51695802510213120,NULL,'MENU_RESULT','en_US','resultView',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1166,51695802510213120,NULL,'MENU_RESULT','zh_CN','成果展示',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1167,51695802510213120,NULL,'MENU_RESULT','zh_TW','成果展示',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1168,51695802510213120,536,'MENU_RESULT_VISUALIZATION','en_US','Visualization',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1169,51695802510213120,536,'MENU_RESULT_VISUALIZATION','zh_CN','可视化',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1170,51695802510213120,536,'MENU_RESULT_VISUALIZATION','zh_TW','可視化',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1171,51695802510213120,536,'MENU_RESULT_MANAGE','en_US','resultManage',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1172,51695802510213120,536,'MENU_RESULT_MANAGE','zh_CN','成果管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1173,51695802510213120,536,'MENU_RESULT_MANAGE','zh_TW','成果管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1174,51695802510213120,538,'ACTION_RESULT_LIST_DEL','en_US','Delete',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1175,51695802510213120,538,'ACTION_RESULT_LIST_DEL','zh_CN','删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1176,51695802510213120,538,'ACTION_RESULT_LIST_DEL','zh_TW','删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1177,51695802510213120,538,'ACTION_RESULT_BULKDEL','en_US','Bulk Delete',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1178,51695802510213120,538,'ACTION_RESULT_BULKDEL','zh_CN','批量删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1179,51695802510213120,538,'ACTION_RESULT_BULKDEL','zh_TW','批量刪除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1180,51695802510213120,538,'ACTION_RESULT_LIST_SEARCH','en_US','Search',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1181,51695802510213120,538,'ACTION_RESULT_LIST_SEARCH','zh_CN','查询',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1182,51695802510213120,538,'ACTION_RESULT_LIST_SEARCH','zh_TW','查詢',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1183,51695802510213120,538,'ACTION_RESULT_DOWNLOAD','en_US','Download',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1184,51695802510213120,538,'ACTION_RESULT_DOWNLOAD','zh_CN','下载',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1185,51695802510213120,538,'ACTION_RESULT_DOWNLOAD','zh_TW','下載',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1186,51695802510213120,538,'ACTION_RESULT_LIST_PUBLISH','en_US','Publish',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1187,51695802510213120,538,'ACTION_RESULT_LIST_PUBLISH','zh_CN','发布取消发布',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1188,51695802510213120,538,'ACTION_RESULT_LIST_PUBLISH','zh_TW','發佈取消發佈',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1189,51695802510213120,538,'MENU_RESULT_MANAGE_ADD','en_US','addResult',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1190,51695802510213120,538,'MENU_RESULT_MANAGE_ADD','zh_CN','新建产品',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1191,51695802510213120,538,'MENU_RESULT_MANAGE_ADD','zh_TW','新建產品',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1192,51695802510213120,544,'ACTION_RESULT_ADD','en_US','Add',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1193,51695802510213120,544,'ACTION_RESULT_ADD','zh_CN','新建',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1194,51695802510213120,544,'ACTION_RESULT_ADD','zh_TW','新建',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1195,51695802510213120,538,'MENU_RESULT_MANAGE_EDIT','en_US','editResult',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1196,51695802510213120,538,'MENU_RESULT_MANAGE_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1197,51695802510213120,538,'MENU_RESULT_MANAGE_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1198,51695802510213120,546,'ACTION_RESULT_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1199,51695802510213120,546,'ACTION_RESULT_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1200,51695802510213120,546,'ACTION_RESULT_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1201,51695802510213120,538,'MENU_RESULT_MANAGE_DETAIL','en_US','detailResult',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1202,51695802510213120,538,'MENU_RESULT_MANAGE_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1203,51695802510213120,538,'MENU_RESULT_MANAGE_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1204,51695802510213120,548,'ACTION_RESULT_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1205,51695802510213120,548,'ACTION_RESULT_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1206,51695802510213120,548,'ACTION_RESULT_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1207,51695802510213120,NULL,'MENU_DATA_MA','en_US','dataManage',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1208,51695802510213120,NULL,'MENU_DATA_MA','zh_CN','数据管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1209,51695802510213120,NULL,'MENU_DATA_MA','zh_TW','數據管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1210,51695802510213120,550,'MENU_DATA_MA_LIST','en_US','dataManage',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1211,51695802510213120,550,'MENU_DATA_MA_LIST','zh_CN','数据管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1212,51695802510213120,550,'MENU_DATA_MA_LIST','zh_TW','數據管理',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1213,51695802510213120,551,'ACTION_DATA_DELETE','en_US','delete',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1214,51695802510213120,551,'ACTION_DATA_DELETE','zh_CN','删除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1215,51695802510213120,551,'ACTION_DATA_DELETE','zh_TW','刪除',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1216,51695802510213120,551,'ACTION_DATA_LIST_SEARCH','en_US','Search',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1217,51695802510213120,551,'ACTION_DATA_LIST_SEARCH','zh_CN','查詢',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1218,51695802510213120,551,'ACTION_DATA_LIST_SEARCH','zh_TW','查询',_binary '\0','2021-07-30 10:06:54','1','2022-01-18 11:24:28','1'),(1219,51695802510213120,551,'MENU_DATA_MA_EDIT','en_US','editDataset',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1220,51695802510213120,551,'MENU_DATA_MA_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1221,51695802510213120,551,'MENU_DATA_MA_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1222,51695802510213120,554,'ACTION_DATA_EDIT','en_US','Edit',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1223,51695802510213120,554,'ACTION_DATA_EDIT','zh_CN','编辑',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1224,51695802510213120,554,'ACTION_DATA_EDIT','zh_TW','編輯',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1225,51695802510213120,551,'MENU_DATA_MA_DETAIL','en_US','datasetDetail',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1226,51695802510213120,551,'MENU_DATA_MA_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1227,51695802510213120,551,'MENU_DATA_MA_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1228,51695802510213120,556,'ACTION_DATA_DETAIL','en_US','Detail',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1229,51695802510213120,556,'ACTION_DATA_DETAIL','zh_CN','详情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1230,51695802510213120,556,'ACTION_DATA_DETAIL','zh_TW','詳情',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1231,51695802510213120,551,'MENU_DATA_MA_ADD','en_US','dataset',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1232,51695802510213120,551,'MENU_DATA_MA_ADD','zh_CN','新建数据集',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1233,51695802510213120,551,'MENU_DATA_MA_ADD','zh_TW','新建數據集',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1234,51695802510213120,558,'ACTION_DATA_ADD','en_US','Add',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1235,51695802510213120,558,'ACTION_DATA_ADD','zh_CN','新建',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1236,51695802510213120,558,'ACTION_DATA_ADD','zh_TW','新建',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1237,51695802510213120,551,'ACTION_DATA_BULKDEL','en_US','Bulk Delete',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1238,51695802510213120,551,'ACTION_DATA_BULKDEL','zh_CN','批量刪除',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1239,51695802510213120,551,'ACTION_DATA_BULKDEL','zh_TW','批量删除',_binary '\0','2021-07-30 10:06:55','1','2022-01-18 11:24:28','1'),(1240,NULL,486,'ACTION_BATCH_DOWNLOAD','zh_CN','批量下载',_binary '\0','2021-08-12 02:19:01','1','2021-11-05 10:29:40','1'),(1241,NULL,486,'ACTION_BATCH_DOWNLOAD','zh_TW','批量下载',_binary '\0','2021-08-12 02:19:01','1','2021-11-05 10:29:40','1'),(1242,NULL,486,'ACTION_BATCH_DOWNLOAD','en_US','Batch download',_binary '\0','2021-08-12 02:19:01','1','2021-11-05 10:29:40','1'),(1243,NULL,124,'ACTION_FLIGHT_TO_3D_ROUTE','zh_CN','三维视角',_binary '\0','2021-11-05 10:29:25','1','2022-06-30 07:57:53','1'),(1244,NULL,124,'ACTION_FLIGHT_TO_3D_ROUTE','zh_TW','三維視角',_binary '\0','2021-11-05 10:29:25','1','2022-06-30 07:57:53','1'),(1245,NULL,124,'ACTION_FLIGHT_TO_3D_ROUTE','en_US','Three dimensional perspective',_binary '\0','2021-11-05 10:29:25','1','2022-06-30 07:57:53','1'),(1246,NULL,NULL,'MENU_ALARM','zh_CN','告警管理',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1247,NULL,NULL,'MENU_ALARM','zh_TW','告警管理',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1248,NULL,NULL,'MENU_ALARM','en_US','Alarm management',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1249,NULL,563,'MENU_ALARM_STATISTIC','zh_CN','告警统计',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1250,NULL,563,'MENU_ALARM_STATISTIC','zh_TW','告警統計',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1251,NULL,563,'MENU_ALARM_STATISTIC','en_US','Alarm statistics',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1252,NULL,564,'MENU_ALARM_STATISTIC_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1253,NULL,564,'MENU_ALARM_STATISTIC_DETAIL','zh_TW','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1254,NULL,564,'MENU_ALARM_STATISTIC_DETAIL','en_US','detail',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1255,NULL,565,'ACTION_ALARM_STATISTIC_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1256,NULL,565,'ACTION_ALARM_STATISTIC_DETAIL','zh_TW','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1257,NULL,565,'ACTION_ALARM_STATISTIC_DETAIL','en_US','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1258,NULL,564,'ACTION_ALARM_STATISTIC_LIST','zh_CN','查询告警列表',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1259,NULL,564,'ACTION_ALARM_STATISTIC_LIST','zh_TW','查询告警列表',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1260,NULL,564,'ACTION_ALARM_STATISTIC_LIST','en_US','list',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1261,NULL,564,'ACTION_ALARM_QUERY_STATIC','zh_CN','统计信息',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1262,NULL,564,'ACTION_ALARM_QUERY_STATIC','zh_TW','统计信息',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1263,NULL,564,'ACTION_ALARM_QUERY_STATIC','en_US','STATIC INFO',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1264,NULL,563,'MENU_ALARM_CONFIG','zh_CN','告警配置',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1265,NULL,563,'MENU_ALARM_CONFIG','zh_TW','告警配置',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1266,NULL,563,'MENU_ALARM_CONFIG','en_US','Alarm configuration',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1267,NULL,569,'MENU_ALARM_CONFIG_ADD','zh_CN','新建告警',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1268,NULL,569,'MENU_ALARM_CONFIG_ADD','zh_TW','新建告警',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1269,NULL,569,'MENU_ALARM_CONFIG_ADD','en_US','New alarm',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1270,NULL,570,'ACTION_ALARM_CONFIG_ADD','zh_CN','新增',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1271,NULL,570,'ACTION_ALARM_CONFIG_ADD','zh_TW','新增',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1272,NULL,570,'ACTION_ALARM_CONFIG_ADD','en_US','Add',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1273,NULL,569,'MENU_ALARM_CONFIG_EDIT','zh_CN','编辑',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1274,NULL,569,'MENU_ALARM_CONFIG_EDIT','zh_TW','編輯',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1275,NULL,569,'MENU_ALARM_CONFIG_EDIT','en_US','Edit',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1276,NULL,572,'ACTION_ALARM_CONFIG_EDIT','zh_CN','编辑',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1277,NULL,572,'ACTION_ALARM_CONFIG_EDIT','zh_TW','編輯',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1278,NULL,572,'ACTION_ALARM_CONFIG_EDIT','en_US','Edit',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1279,NULL,569,'MENU_ALARM_CONFIG_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1280,NULL,569,'MENU_ALARM_CONFIG_DETAIL','zh_TW','詳情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1281,NULL,569,'MENU_ALARM_CONFIG_DETAIL','en_US','Detail',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1282,NULL,574,'ACTION_ALARM_CONFIG_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1283,NULL,574,'ACTION_ALARM_CONFIG_DETAIL','zh_TW','詳情',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1284,NULL,574,'ACTION_ALARM_CONFIG_DETAIL','en_US','Detail',_binary '\0','2021-11-05 10:29:54','1','2022-05-25 06:36:34','1'),(1285,NULL,569,'ACTION_ALARM_CONFIG_DELETE','zh_CN','删除',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1286,NULL,569,'ACTION_ALARM_CONFIG_DELETE','zh_TW','删除',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1287,NULL,569,'ACTION_ALARM_CONFIG_DELETE','en_US','delete',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1288,NULL,569,'ACTION_ALARM_CONFIG_ONOFF','zh_CN','启用禁用',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1289,NULL,569,'ACTION_ALARM_CONFIG_ONOFF','zh_TW','启用禁用',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1290,NULL,569,'ACTION_ALARM_CONFIG_ONOFF','en_US','onoff',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1291,NULL,569,'MENU_ALARM_CONFIG_LIST','zh_CN','列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1292,NULL,569,'MENU_ALARM_CONFIG_LIST','zh_TW','列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1293,NULL,569,'MENU_ALARM_CONFIG_LIST','en_US','list',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1294,NULL,578,'ACTION_ALARM_CONFIG_SEARCHOPTION','zh_CN','查询下拉选项',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1295,NULL,578,'ACTION_ALARM_CONFIG_SEARCHOPTION','zh_TW','查询下拉选项',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1296,NULL,578,'ACTION_ALARM_CONFIG_SEARCHOPTION','en_US','searchOptions',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1297,NULL,578,'ACTION_ALARM_CONFIG_SEARCHLIST','zh_CN','查询告警列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1298,NULL,578,'ACTION_ALARM_CONFIG_SEARCHLIST','zh_TW','查询告警列表',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1299,NULL,578,'ACTION_ALARM_CONFIG_SEARCHLIST','en_US','searchList',_binary '\0','2021-11-05 10:29:55','1','2022-05-25 06:36:34','1'),(1300,NULL,358,'MENU_FLIGHTMONITOR_FIRE_ALERT','zh_CN','火情告警功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1301,NULL,358,'MENU_FLIGHTMONITOR_FIRE_ALERT','zh_TW','火情告警功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1302,NULL,358,'MENU_FLIGHTMONITOR_FIRE_ALERT','en_US','火情告警功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1303,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST','zh_CN','火情列表',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1304,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST','zh_TW','火情列表',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1305,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_LIST','en_US','火情列表',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1306,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND','zh_CN','火情出警',_binary '\0','2021-11-05 10:30:18','1','2023-09-12 01:19:34','1'),(1307,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND','zh_TW','火情出警',_binary '\0','2021-11-05 10:30:18','1','2023-09-12 01:19:34','1'),(1308,NULL,581,'ACTION_FLIGHTMONITOR_FIRE_ALERT_SEND','en_US','火情出警',_binary '\0','2021-11-05 10:30:18','1','2023-09-12 01:19:34','1'),(1309,NULL,358,'MENU_UAV_BPERM','zh_CN','飞行控制',_binary '\0','2021-11-05 10:30:18','1','2024-10-31 01:29:48','89730635001757696'),(1310,NULL,358,'MENU_UAV_BPERM','zh_TW','飛行控製',_binary '\0','2021-11-05 10:30:18','1','2024-10-31 01:29:48','89730635001757696'),(1311,NULL,358,'MENU_UAV_BPERM','en_US','flight control',_binary '\0','2021-11-05 10:30:18','1','2024-10-31 01:29:48','89730635001757696'),(1312,NULL,584,'ACTION_UAV_BPERM','zh_CN','基础控制',_binary '\0','2021-11-05 10:30:18','1','2024-02-23 09:38:55','89730635001757696'),(1313,NULL,584,'ACTION_UAV_BPERM','zh_TW','基礎控製',_binary '\0','2021-11-05 10:30:18','1','2024-02-23 09:38:55','89730635001757696'),(1314,NULL,584,'ACTION_UAV_BPERM','en_US','basic control',_binary '\0','2021-11-05 10:30:18','1','2024-02-23 09:38:55','89730635001757696'),(1315,NULL,584,'ACTION_UAV_STK_BPERM','zh_CN','摇杆功能',_binary '\0','2021-11-05 10:30:18','1','2024-04-17 01:51:23','89730635001757696'),(1316,NULL,584,'ACTION_UAV_STK_BPERM','zh_TW','搖桿功能',_binary '\0','2021-11-05 10:30:18','1','2024-04-17 01:51:23','89730635001757696'),(1317,NULL,584,'ACTION_UAV_STK_BPERM','en_US','joystick',_binary '\0','2021-11-05 10:30:18','1','2024-04-17 01:51:23','89730635001757696'),(1318,NULL,358,'MENU_LOAD_BPERM','zh_CN','载荷控制',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1319,NULL,358,'MENU_LOAD_BPERM','zh_TW','載荷控製',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1320,NULL,358,'MENU_LOAD_BPERM','en_US','load control',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1321,NULL,587,'MENU_CAM_BPERM','zh_CN','摄像头',_binary '\0','2021-11-05 10:30:18','1','2024-06-17 12:01:17','1'),(1322,NULL,587,'MENU_CAM_BPERM','zh_TW','攝像頭',_binary '\0','2021-11-05 10:30:18','1','2024-06-17 12:01:17','1'),(1323,NULL,587,'MENU_CAM_BPERM','en_US','camera',_binary '\0','2021-11-05 10:30:18','1','2024-06-17 12:01:17','1'),(1324,NULL,588,'ACTION_CAM_BPERM','zh_CN','拍照功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1325,NULL,588,'ACTION_CAM_BPERM','zh_TW','拍照功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1326,NULL,588,'ACTION_CAM_BPERM','en_US','Take picture',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1327,NULL,588,'ACTION_CAM_HEAT_BPERM','zh_CN','热成像',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1328,NULL,588,'ACTION_CAM_HEAT_BPERM','zh_TW','熱成像',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1329,NULL,588,'ACTION_CAM_HEAT_BPERM','en_US','Thermal Imaging',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1330,NULL,587,'MENU_MEG_BPERM','zh_CN','喊话器',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1331,NULL,587,'MENU_MEG_BPERM','zh_TW','喊話器',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1332,NULL,587,'MENU_MEG_BPERM','en_US','megaphone',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1333,NULL,591,'ACTION_MEG_BPERM','zh_CN','喊话功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1334,NULL,591,'ACTION_MEG_BPERM','zh_TW','喊話功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1335,NULL,591,'ACTION_MEG_BPERM','en_US','megaphone',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1336,NULL,587,'MENU_SPR_BPERM','zh_CN','农业器具',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1337,NULL,587,'MENU_SPR_BPERM','zh_TW','農業器具',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1338,NULL,587,'MENU_SPR_BPERM','en_US','agricultural equipment',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1339,NULL,593,'ACTION_SPR_BPERM','zh_CN','喷洒功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1340,NULL,593,'ACTION_SPR_BPERM','zh_TW','噴灑功能',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1341,NULL,593,'ACTION_SPR_BPERM','en_US','spary',_binary '\0','2021-11-05 10:30:18','1','2021-11-09 08:59:01','1'),(1342,NULL,358,'MENU_AI_BPERM','zh_CN','智能辅助',_binary '\0','2021-11-05 10:30:19','1','2024-04-25 02:58:10','89730635001757696'),(1343,NULL,358,'MENU_AI_BPERM','zh_TW','智能輔助',_binary '\0','2021-11-05 10:30:19','1','2024-04-25 02:58:10','89730635001757696'),(1344,NULL,358,'MENU_AI_BPERM','en_US','AI',_binary '\0','2021-11-05 10:30:19','1','2024-04-25 02:58:10','89730635001757696'),(1345,NULL,595,'MENU_AI_VSTITCH_BPERM','zh_CN','实时快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1346,NULL,595,'MENU_AI_VSTITCH_BPERM','zh_TW','实时快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1347,NULL,595,'MENU_AI_VSTITCH_BPERM','en_US','realtime stitch',_binary '\0','2021-11-05 10:30:19','1','2022-01-18 11:23:37','1'),(1348,NULL,596,'ACTION_VIDEO_VSTITCH_BPERM','zh_CN','视频快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1349,NULL,596,'ACTION_VIDEO_VSTITCH_BPERM','zh_TW','视频快拼',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1350,NULL,596,'ACTION_VIDEO_VSTITCH_BPERM','en_US','video stitch',_binary '\0','2021-11-05 10:30:19','1','2022-01-18 11:23:37','1'),(1351,NULL,595,'MENU_AI_CAR_BPERM','zh_CN','车辆分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1352,NULL,595,'MENU_AI_CAR_BPERM','zh_TW','車輛分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1353,NULL,595,'MENU_AI_CAR_BPERM','en_US','Car analysis',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1354,NULL,598,'ACTION_AI_CAR_BPERM','zh_CN','车流量统计',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1355,NULL,598,'ACTION_AI_CAR_BPERM','zh_TW','車流量統計',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1356,NULL,598,'ACTION_AI_CAR_BPERM','en_US','Traffic statistics',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1357,NULL,598,'ACTION_AI_CARTRACK_BPERM','zh_CN','车辆跟踪',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1358,NULL,598,'ACTION_AI_CARTRACK_BPERM','zh_TW','車輛跟蹤',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1359,NULL,598,'ACTION_AI_CARTRACK_BPERM','en_US','Car track',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1366,NULL,595,'MENU_AI_PER_BPERM','zh_CN','人体分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1367,NULL,595,'MENU_AI_PER_BPERM','zh_TW','人體分析',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1368,NULL,595,'MENU_AI_PER_BPERM','en_US','Human analysis',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1369,NULL,603,'ACTION_AI_PER_BPERM','zh_CN','人流量统计',_binary '\0','2021-11-05 10:30:19','1','2024-02-22 08:23:55','1'),(1370,NULL,603,'ACTION_AI_PER_BPERM','zh_TW','人流量統計',_binary '\0','2021-11-05 10:30:19','1','2024-02-22 08:23:55','1'),(1371,NULL,603,'ACTION_AI_PER_BPERM','en_US','human count',_binary '\0','2021-11-05 10:30:19','1','2024-02-22 08:23:55','1'),(1372,NULL,358,'MENU_HGR_BPERM','zh_CN','机库功能',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1373,NULL,358,'MENU_HGR_BPERM','zh_TW','機庫功能',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1374,NULL,358,'MENU_HGR_BPERM','en_US','hangar',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1375,NULL,605,'ACTION_HGR_BPERM','zh_CN','机库控制',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1376,NULL,605,'ACTION_HGR_BPERM','zh_TW','機庫控製',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1377,NULL,605,'ACTION_HGR_BPERM','en_US','hangar control',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1378,NULL,605,'ACTION_HGR_EMG_BPERM','zh_CN','紧急操作',_binary '\0','2021-11-05 10:30:19','1','2023-09-12 01:19:34','1'),(1379,NULL,605,'ACTION_HGR_EMG_BPERM','zh_TW','緊急操作',_binary '\0','2021-11-05 10:30:19','1','2023-09-12 01:19:34','1'),(1380,NULL,605,'ACTION_HGR_EMG_BPERM','en_US','Emergency operation',_binary '\0','2021-11-05 10:30:19','1','2023-09-12 01:19:34','1'),(1381,NULL,358,'ACTION_MUTI_CONTROL','zh_CN','多机控制',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1382,NULL,358,'ACTION_MUTI_CONTROL','zh_TW','多機控製',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1383,NULL,358,'ACTION_MUTI_CONTROL','en_US','multidrone control',_binary '\0','2021-11-05 10:30:19','1','2021-11-09 08:59:02','1'),(1384,NULL,NULL,'MENU_FLIGHTSERVICE','zh_CN','飞行服务',_binary '\0','2021-11-05 10:30:44','1','2024-06-21 08:27:20','1'),(1385,NULL,NULL,'MENU_FLIGHTSERVICE','zh_TW','飛行服務',_binary '\0','2021-11-05 10:30:44','1','2024-06-21 08:27:20','1'),(1386,NULL,NULL,'MENU_FLIGHTSERVICE','en_US','Flight Service',_binary '\0','2021-11-05 10:30:44','1','2024-06-21 08:27:20','1'),(1387,NULL,NULL,'MENU_INDUSTRIALAPP','zh_CN','数据应用',_binary '\0','2021-11-05 10:30:47','1','2022-05-26 06:46:51','199120334480211968'),(1388,NULL,NULL,'MENU_INDUSTRIALAPP','zh_TW','數據應用',_binary '\0','2021-11-05 10:30:47','1','2022-05-26 06:46:51','199120334480211968'),(1389,NULL,NULL,'MENU_INDUSTRIALAPP','en_US','Data Applications',_binary '\0','2021-11-05 10:30:47','1','2022-05-26 06:46:51','199120334480211968'),(1390,NULL,NULL,'MENU_VALUE_ADDED_SERVICE','zh_CN','增值服务',_binary '\0','2021-11-05 10:30:49','1',NULL,NULL),(1391,NULL,NULL,'MENU_VALUE_ADDED_SERVICE','zh_TW','增值服務',_binary '\0','2021-11-05 10:30:49','1',NULL,NULL),(1392,NULL,NULL,'MENU_VALUE_ADDED_SERVICE','en_US','Value Added Service',_binary '\0','2021-11-05 10:30:49','1',NULL,NULL),(1393,171690764403736576,NULL,'MENU_FLIGHT','en_US','flightline',_binary '\0','2021-11-05 10:38:09','1',NULL,NULL),(1394,171690764403736576,NULL,'MENU_FLIGHT','zh_CN','航线',_binary '\0','2021-11-05 10:38:09','1',NULL,NULL),(1395,171690764403736576,NULL,'MENU_FLIGHT','zh_TW','航綫',_binary '\0','2021-11-05 10:38:09','1',NULL,NULL),(1396,171689982405115904,NULL,'MENU_TOWER','en_US','Tower inspection',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1397,171689982405115904,NULL,'MENU_TOWER','zh_CN','杆塔巡检',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1398,171689982405115904,NULL,'MENU_TOWER','zh_TW','桿塔巡檢',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1399,171689982405115904,613,'MENU_TOWER_LEDGER','en_US','Tower Ledger',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1400,171689982405115904,613,'MENU_TOWER_LEDGER','zh_CN','杆塔台账',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1401,171689982405115904,613,'MENU_TOWER_LEDGER','zh_TW','桿塔台賬',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1402,171689982405115904,614,'ACTION_TOWER_IMPORT_FILE','en_US','Import the tower file',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1403,171689982405115904,614,'ACTION_TOWER_IMPORT_FILE','zh_CN','导入杆塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1404,171689982405115904,614,'ACTION_TOWER_IMPORT_FILE','zh_TW','導入桿塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1405,171689982405115904,614,'ACTION_TOWER_DELETE_LINE','en_US','Delete line',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1406,171689982405115904,614,'ACTION_TOWER_DELETE_LINE','zh_CN','删除线路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1407,171689982405115904,614,'ACTION_TOWER_DELETE_LINE','zh_TW','刪除線路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1408,171689982405115904,614,'ACTION_TOWER_EDIT_ROUTE_NAME','en_US','Modify line name',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1409,171689982405115904,614,'ACTION_TOWER_EDIT_ROUTE_NAME','zh_CN','修改线路名称',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1410,171689982405115904,614,'ACTION_TOWER_EDIT_ROUTE_NAME','zh_TW','修改線路名稱',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1411,171689982405115904,614,'ACTION_TOWER_DOWNLOAD_TEMPLATE','en_US','Download the template file',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1412,171689982405115904,614,'ACTION_TOWER_DOWNLOAD_TEMPLATE','zh_CN','下载模板文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1413,171689982405115904,614,'ACTION_TOWER_DOWNLOAD_TEMPLATE','zh_TW','下載模板文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1414,171689982405115904,614,'ACTION_TOWER_DELETE_TOWER','en_US','Delete tower',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1415,171689982405115904,614,'ACTION_TOWER_DELETE_TOWER','zh_CN','删除杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1416,171689982405115904,614,'ACTION_TOWER_DELETE_TOWER','zh_TW','刪除桿塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1417,171689982405115904,614,'ACTION_TOWER_CHANGE_ORDER','en_US','Modify the order of towers',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1418,171689982405115904,614,'ACTION_TOWER_CHANGE_ORDER','zh_CN','修改杆塔顺序',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1419,171689982405115904,614,'ACTION_TOWER_CHANGE_ORDER','zh_TW','修改桿塔順序',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1420,171689982405115904,614,'ACTION_TOWER_NEW','en_US','new tower',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1421,171689982405115904,614,'ACTION_TOWER_NEW','zh_CN','新建杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1422,171689982405115904,614,'ACTION_TOWER_NEW','zh_TW','新建杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1423,171689982405115904,614,'ACTION_TOWER_MODIFY','en_US','modify tower',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1424,171689982405115904,614,'ACTION_TOWER_MODIFY','zh_CN','修改杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1425,171689982405115904,614,'ACTION_TOWER_MODIFY','zh_TW','修改杆塔',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1426,171689982405115904,614,'ACTION_TOWER_DETAIL','en_US','tower detail',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1427,171689982405115904,614,'ACTION_TOWER_DETAIL','zh_CN','杆塔详情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1428,171689982405115904,614,'ACTION_TOWER_DETAIL','zh_TW','杆塔详情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1429,171689982405115904,614,'ACTION_TOWER_TOWERLIST','en_US','List',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1430,171689982405115904,614,'ACTION_TOWER_TOWERLIST','zh_CN','列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1431,171689982405115904,614,'ACTION_TOWER_TOWERLIST','zh_TW','列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1432,171689982405115904,614,'ACTION_TOWER_ADD_ROUTE','en_US','Add line',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1433,171689982405115904,614,'ACTION_TOWER_ADD_ROUTE','zh_CN','添加线路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1434,171689982405115904,614,'ACTION_TOWER_ADD_ROUTE','zh_TW','添加線路',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1435,171689982405115904,614,'ACTION_TOWER_EXPORT_TOWER','en_US','Export tower file',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1436,171689982405115904,614,'ACTION_TOWER_EXPORT_TOWER','zh_CN','导出杆塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1437,171689982405115904,614,'ACTION_TOWER_EXPORT_TOWER','zh_TW','導出桿塔文件',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1438,171689982405115904,613,'MENU_TOWER_PHOTO','en_US','Inspection photos',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1439,171689982405115904,613,'MENU_TOWER_PHOTO','zh_CN','巡检照片',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1440,171689982405115904,613,'MENU_TOWER_PHOTO','zh_TW','巡檢照片',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1441,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_LIST','en_US','Inspection photo list',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1442,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_LIST','zh_CN','巡检照片列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1443,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_LIST','zh_TW','巡檢照片列表',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1444,171689982405115904,627,'ACTION_TOWER_DELETE_INSPECTION_PHOTO','en_US','Delete',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1445,171689982405115904,627,'ACTION_TOWER_DELETE_INSPECTION_PHOTO','zh_CN','删除',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1446,171689982405115904,627,'ACTION_TOWER_DELETE_INSPECTION_PHOTO','zh_TW','刪除',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1447,171689982405115904,627,'ACTION_TOWER_MOVE_PHOTO','en_US','Move',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1448,171689982405115904,627,'ACTION_TOWER_MOVE_PHOTO','zh_CN','移动',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1449,171689982405115904,627,'ACTION_TOWER_MOVE_PHOTO','zh_TW','移動',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1450,171689982405115904,627,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO','en_US','Upload',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:00','1'),(1451,171689982405115904,627,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO','zh_CN','上传',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1452,171689982405115904,627,'ACTION_TOWER_UPLOAD_INSPECTION_PHOTO','zh_TW','上傳',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1453,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL','en_US','Details',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1454,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL','zh_CN','详情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1455,171689982405115904,627,'ACTION_TOWER_INSPECTION_PHOTO_DETAIL','zh_TW','詳情',_binary '\0','2021-11-05 10:45:26','1','2023-08-07 06:51:01','1'),(1456,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO','en_US','Download single photo',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1457,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO','zh_CN','下载单张照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1458,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_SINGLE_INSPECTION_PHOTO','zh_TW','下載單張照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1459,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO','en_US','Download photos in bulk',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1460,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO','zh_CN','批量下载照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1461,171689982405115904,627,'ACTION_TOWER_DOWNLOAD_BATCH_INSPECTION_PHOTO','zh_TW','批量下載照片',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1462,171689982405115904,627,'ACTION_TOWER_MODIFY_DEFECT_LIST','en_US','Modify the defect list',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1463,171689982405115904,627,'ACTION_TOWER_MODIFY_DEFECT_LIST','zh_CN','修改缺陷列表',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1464,171689982405115904,627,'ACTION_TOWER_MODIFY_DEFECT_LIST','zh_TW','修改缺陷列表',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1465,171689982405115904,613,'MENU_TOWER_ROUTE','en_US','Inspection route',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1466,171689982405115904,613,'MENU_TOWER_ROUTE','zh_CN','巡检航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1467,171689982405115904,613,'MENU_TOWER_ROUTE','zh_TW','巡檢航線',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1468,171689982405115904,636,'ACTION_TOWER_LINECONNECT','en_US','关联航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1469,171689982405115904,636,'ACTION_TOWER_LINECONNECT','zh_CN','关联航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1470,171689982405115904,636,'ACTION_TOWER_LINECONNECT','zh_TW','关联航线',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1471,171689982405115904,636,'ACTION_TOWER_UNCONNECT','en_US','取消关联',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1472,171689982405115904,636,'ACTION_TOWER_UNCONNECT','zh_CN','取消关联',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1473,171689982405115904,636,'ACTION_TOWER_UNCONNECT','zh_TW','取消关联',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1474,171689982405115904,636,'ACTION_TOWER_CONNECTDETAIL','en_US','线路关联航线详情',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1475,171689982405115904,636,'ACTION_TOWER_CONNECTDETAIL','zh_CN','线路关联航线详情',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1476,171689982405115904,636,'ACTION_TOWER_CONNECTDETAIL','zh_TW','线路关联航线详情',_binary '\0','2021-11-05 10:45:27','1','2023-08-07 06:51:01','1'),(1480,194515901263904768,NULL,'MENU_LOW_DET','en_US','低空探测',_binary '\0','2022-01-18 11:17:19','1',NULL,NULL),(1481,194515901263904768,NULL,'MENU_LOW_DET','zh_CN','低空探测',_binary '\0','2022-01-18 11:17:19','1',NULL,NULL),(1482,194515901263904768,NULL,'MENU_LOW_DET','zh_TW','低空探测',_binary '\0','2022-01-18 11:17:19','1',NULL,NULL),(1489,NULL,NULL,'MENU_LOG','zh_CN','日志管理',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1490,NULL,NULL,'MENU_LOG','zh_TW','日誌管理',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1491,NULL,NULL,'MENU_LOG','en_US','Log manage',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1492,NULL,644,'ACTION_LOG_OPTION_TYPE','zh_CN','查询操作类型下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1493,NULL,644,'ACTION_LOG_OPTION_TYPE','zh_TW','查询操作类型下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1494,NULL,644,'ACTION_LOG_OPTION_TYPE','en_US','查询操作类型下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1495,NULL,644,'MENU_FLIGHTLOG','zh_CN','飞行日志',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1496,NULL,644,'MENU_FLIGHTLOG','zh_TW','飛行日誌',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1497,NULL,644,'MENU_FLIGHTLOG','en_US','Flight log',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1498,NULL,646,'ACTION_LOG_FLIGHTLOGLIST','zh_CN','飞行日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1499,NULL,646,'ACTION_LOG_FLIGHTLOGLIST','zh_TW','飞行日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1500,NULL,646,'ACTION_LOG_FLIGHTLOGLIST','en_US','flight log list',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1501,NULL,644,'ACTION_LOG_LOGLIST','zh_CN','日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1502,NULL,644,'ACTION_LOG_LOGLIST','zh_TW','日志列表',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1503,NULL,644,'ACTION_LOG_LOGLIST','en_US','Log List',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1504,NULL,644,'ACTION_LOG_USERLIST','zh_CN','查询用户下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1505,NULL,644,'ACTION_LOG_USERLIST','zh_TW','查询用户下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1506,NULL,644,'ACTION_LOG_USERLIST','en_US','Search User',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1507,NULL,644,'ACTION_LOG_DEVICELIST','zh_CN','查询设备下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1508,NULL,644,'ACTION_LOG_DEVICELIST','zh_TW','查询设备下拉选项',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1509,NULL,644,'ACTION_LOG_DEVICELIST','en_US','Search Dev',_binary '\0','2022-01-18 11:23:05','1',NULL,NULL),(1510,NULL,63,'ACTION_AIRSPACE_GET_DICT','zh_CN','查询数据字典',_binary '\0','2022-01-18 11:23:29','1','2024-02-21 09:55:11','1'),(1511,NULL,63,'ACTION_AIRSPACE_GET_DICT','zh_TW','查询数据字典',_binary '\0','2022-01-18 11:23:29','1','2024-02-21 09:55:11','1'),(1512,NULL,63,'ACTION_AIRSPACE_GET_DICT','en_US','get dict',_binary '\0','2022-01-18 11:23:29','1','2024-02-21 09:55:11','1'),(1513,NULL,358,'ACTION_AI_SEND_SMS','zh_CN','手动发送短信',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:53','1'),(1514,NULL,358,'ACTION_AI_SEND_SMS','zh_TW','手動發送短信',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:53','1'),(1515,NULL,358,'ACTION_AI_SEND_SMS','en_US','Send SMS manually',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:53','1'),(1516,NULL,595,'MENU_AI_FIRE_BPERM','zh_CN','火情分析',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1517,NULL,595,'MENU_AI_FIRE_BPERM','zh_TW','火情分析',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1518,NULL,595,'MENU_AI_FIRE_BPERM','en_US','Fire analysis',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1519,NULL,653,'ACTION_AI_FIRE_BPERM','zh_CN','火情识别',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1520,NULL,653,'ACTION_AI_FIRE_BPERM','zh_TW','火情識別',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1521,NULL,653,'ACTION_AI_FIRE_BPERM','en_US','Fire identification',_binary '\0','2022-01-18 11:23:37','1','2022-03-11 05:52:54','1'),(1522,NULL,486,'ACTION_MISSION_SEND_SMS','zh_CN','发送短信',_binary '\0','2022-01-18 11:23:44','1','2022-03-30 09:01:57','1'),(1523,NULL,486,'ACTION_MISSION_SEND_SMS','zh_TW','發送短信',_binary '\0','2022-01-18 11:23:44','1','2022-03-30 09:01:57','1'),(1524,NULL,486,'ACTION_MISSION_SEND_SMS','en_US','Send SMS',_binary '\0','2022-01-18 11:23:44','1','2022-03-30 09:01:57','1'),(1525,51695802510213120,551,'MENU_DATA_MWA_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1526,51695802510213120,551,'MENU_DATA_MWA_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1527,51695802510213120,551,'MENU_DATA_MWA_IMAGE','en_US','MwsSelect',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1528,51695802510213120,656,'ACTION_DATA_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1529,51695802510213120,656,'ACTION_DATA_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1530,51695802510213120,656,'ACTION_DATA_IMAGE','en_US','MwsSelect',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1531,51695802510213120,554,'MENU_DATA_MWA_EDIT_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1532,51695802510213120,554,'MENU_DATA_MWA_EDIT_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1533,51695802510213120,554,'MENU_DATA_MWA_EDIT_IMAGE','en_US','mwsSelectEdit',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1534,51695802510213120,558,'MENU_DATA_MWA_ADD_IMAGE','zh_CN','素材仓库选取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1535,51695802510213120,558,'MENU_DATA_MWA_ADD_IMAGE','zh_TW','素材倉庫選取',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1536,51695802510213120,558,'MENU_DATA_MWA_ADD_IMAGE','en_US','mwsSelect',_binary '\0','2022-01-18 11:24:28','1',NULL,NULL),(1543,216936325675220992,NULL,'MENU_MONITOR_MEDICAL','en_US','monitor',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1544,216936325675220992,NULL,'MENU_MONITOR_MEDICAL','zh_CN','监控页面',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1545,216936325675220992,NULL,'MENU_MONITOR_MEDICAL','zh_TW','監控頁面',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1546,216936325675220992,NULL,'MENU_GENERAL_SERVICE','en_US','general Service',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1547,216936325675220992,NULL,'MENU_GENERAL_SERVICE','zh_CN','综合服务',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1548,216936325675220992,NULL,'MENU_GENERAL_SERVICE','zh_TW','綜合服務',_binary '\0','2022-03-10 07:39:37','1','2022-03-11 05:44:18','1'),(1549,NULL,90,'MENU_DEVICE_SIMULATED_UAV','zh_CN','设置',_binary '\0','2022-03-14 01:55:55','1','2022-03-30 07:02:18','1'),(1550,NULL,90,'MENU_DEVICE_SIMULATED_UAV','zh_TW','設置',_binary '\0','2022-03-14 01:55:55','1','2022-03-30 07:02:18','1'),(1551,NULL,90,'MENU_DEVICE_SIMULATED_UAV','en_US','Set up',_binary '\0','2022-03-14 01:55:55','1','2022-03-30 07:02:18','1'),(1561,217309254481084416,NULL,'MENU_VISITOR','en_US','基础版',_binary '\0','2022-03-30 02:02:43','1',NULL,NULL),(1562,217309254481084416,NULL,'MENU_VISITOR','zh_CN','基础版',_binary '\0','2022-03-30 02:02:43','1',NULL,NULL),(1563,217309254481084416,NULL,'MENU_VISITOR','zh_TW','基础版',_binary '\0','2022-03-30 02:02:43','1',NULL,NULL),(1567,NULL,358,'ACTION_ONEKEYFLY','zh_CN','一键起飞',_binary '\0','2022-03-31 07:04:49','1','2022-04-01 09:04:18','1'),(1568,NULL,358,'ACTION_ONEKEYFLY','zh_TW','一鍵起飛',_binary '\0','2022-03-31 07:04:49','1','2022-04-01 09:04:18','1'),(1569,NULL,358,'ACTION_ONEKEYFLY','en_US','onekeyfly',_binary '\0','2022-03-31 07:04:49','1','2022-04-01 09:04:18','1'),(1573,NULL,595,'MENU_AI_SMOG_BPERM','zh_CN','烟雾识别',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1574,NULL,595,'MENU_AI_SMOG_BPERM','zh_TW','煙霧識別',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1575,NULL,595,'MENU_AI_SMOG_BPERM','en_US','Smoke recognition',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1576,NULL,672,'ACTION_AI_SMOG_BPERM','zh_CN','烟雾识别',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1577,NULL,672,'ACTION_AI_SMOG_BPERM','zh_TW','煙霧識別',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1578,NULL,672,'ACTION_AI_SMOG_BPERM','en_US','Smoke recognition',_binary '\0','2022-04-02 07:37:11','1','2022-04-11 01:41:30','1'),(1579,NULL,24,'MENU_COMPANY','zh_CN','组织管理',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1580,NULL,24,'MENU_COMPANY','zh_TW','組織管理',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1581,NULL,24,'MENU_COMPANY','en_US','Company Management',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1582,NULL,674,'MENU_COMPANY_EDIT','zh_CN','编辑',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1583,NULL,674,'MENU_COMPANY_EDIT','zh_TW','編輯',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1584,NULL,674,'MENU_COMPANY_EDIT','en_US','Edit',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1585,NULL,675,'ACTION_COMPANY_ENABLE','zh_CN','启用公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1586,NULL,675,'ACTION_COMPANY_ENABLE','zh_TW','啟用公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1587,NULL,675,'ACTION_COMPANY_ENABLE','en_US','EnableCompany',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1588,NULL,675,'ACTION_COMPANY_DISABLE','zh_CN','关停公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1589,NULL,675,'ACTION_COMPANY_DISABLE','zh_TW','關停公司',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1590,NULL,675,'ACTION_COMPANY_DISABLE','en_US','DisableCompany',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1591,NULL,675,'ACTION_COMPANY_RESET','zh_CN','重置密码',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1592,NULL,675,'ACTION_COMPANY_RESET','zh_TW','重置密碼',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1593,NULL,675,'ACTION_COMPANY_RESET','en_US','Reset password',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1594,NULL,674,'MENU_COMPANY_ADD','zh_CN','新建',_binary '\0','2022-04-27 03:29:09','1','2024-03-19 08:09:19','1'),(1595,NULL,674,'MENU_COMPANY_ADD','zh_TW','新建',_binary '\0','2022-04-27 03:29:09','1','2024-03-19 08:09:19','1'),(1596,NULL,674,'MENU_COMPANY_ADD','en_US','Add',_binary '\0','2022-04-27 03:29:09','1','2024-03-19 08:09:19','1'),(1597,NULL,674,'MENU_COMPANY_CHECK','zh_CN','详情',_binary '\0','2022-04-27 03:29:09','1','2024-04-29 07:02:34','89730635001757696'),(1598,NULL,674,'MENU_COMPANY_CHECK','zh_TW','詳情',_binary '\0','2022-04-27 03:29:09','1','2024-04-29 07:02:34','89730635001757696'),(1599,NULL,674,'MENU_COMPANY_CHECK','en_US','Detail',_binary '\0','2022-04-27 03:29:09','1','2024-04-29 07:02:34','89730635001757696'),(1600,NULL,674,'ACTION_COMPANY_SEARCH','zh_CN','查询',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1601,NULL,674,'ACTION_COMPANY_SEARCH','zh_TW','查詢',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1602,NULL,674,'ACTION_COMPANY_SEARCH','en_US','Search',_binary '\0','2022-04-27 03:29:09','1','2022-07-25 08:30:45','1'),(1603,NULL,80,'MENU_DEVICE_WAREHOUSE','zh_CN','仓库管理',_binary '\0','2022-04-27 03:29:17','1','2022-05-25 09:47:25','1'),(1604,NULL,80,'MENU_DEVICE_WAREHOUSE','zh_TW','倉庫管理',_binary '\0','2022-04-27 03:29:17','1','2022-05-25 09:47:25','1'),(1605,NULL,80,'MENU_DEVICE_WAREHOUSE','en_US','Warehouse Management',_binary '\0','2022-04-27 03:29:17','1','2022-05-25 09:47:25','1'),(1606,NULL,595,'MENU_AI_MUTI_BPERM','zh_CN','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1607,NULL,595,'MENU_AI_MUTI_BPERM','zh_TW','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1608,NULL,595,'MENU_AI_MUTI_BPERM','en_US','Multimodel analysis',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1609,NULL,683,'ACTION_AI_MUTI_BPERM','zh_CN','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1610,NULL,683,'ACTION_AI_MUTI_BPERM','zh_TW','多模型分析',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1611,NULL,683,'ACTION_AI_MUTI_BPERM','en_US','Multimodel analysis',_binary '\0','2022-04-27 03:29:24','1','2022-04-27 03:40:41','1'),(1612,NULL,358,'MENU_FLIGHT_MONITOR_TETHERED','zh_CN','通信数据',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1613,NULL,358,'MENU_FLIGHT_MONITOR_TETHERED','zh_TW','通信數據',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1614,NULL,358,'MENU_FLIGHT_MONITOR_TETHERED','en_US','Communication data',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1615,NULL,358,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG','zh_CN','发送分享链接短信',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1616,NULL,358,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG','zh_TW','發送分享鏈接短信',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1617,NULL,358,'ACTION_FLIGHT_MONITOR_SHARE_LINK_MSG','en_US','Send share link SMS',_binary '\0','2022-04-27 03:43:03','1','2022-06-08 05:48:51','1'),(1618,224558648645386240,NULL,'MENU_INSPECTION_SCREEN','zh_CN','热成像巡检',_binary '\0','2022-04-27 06:11:06','188243415207510016','2022-04-27 08:44:40','89730635001757696'),(1619,224558648645386240,NULL,'MENU_INSPECTION_SCREEN','zh_TW','热成像巡检',_binary '\0','2022-04-27 06:11:06','188243415207510016','2022-04-27 08:44:40','89730635001757696'),(1620,224558648645386240,NULL,'MENU_INSPECTION_SCREEN','en_US','Hot imaging inspection',_binary '\0','2022-04-27 06:11:06','188243415207510016','2022-04-27 08:44:40','89730635001757696'),(1624,218767711973408768,NULL,'MENU_GREEN_SCREEN','zh_CN','智慧环保',_binary '\0','2022-04-27 06:12:17','188243415207510016','2023-03-30 07:33:20','89730635001757696'),(1625,218767711973408768,NULL,'MENU_GREEN_SCREEN','zh_TW','智慧环保',_binary '\0','2022-04-27 06:12:17','188243415207510016','2023-03-30 07:33:20','89730635001757696'),(1626,218767711973408768,NULL,'MENU_GREEN_SCREEN','en_US','ENVIRONMENT',_binary '\0','2022-04-27 06:12:17','188243415207510016','2023-03-30 07:33:20','89730635001757696'),(1627,239746594734342144,NULL,'MENU_tlcp_index','zh_CN','首页',_binary '\0','2022-05-12 05:48:05','188243415207510016',NULL,NULL),(1628,239746594734342144,NULL,'MENU_tlcp_index','zh_TW','首页',_binary '\0','2022-05-12 05:48:05','188243415207510016',NULL,NULL),(1629,239746594734342144,NULL,'MENU_tlcp_index','en_US','首页',_binary '\0','2022-05-12 05:48:05','188243415207510016',NULL,NULL),(1630,NULL,393,'ACTION_OPTIMIZATION_VERSION','zh_CN','平台使用情况统计',_binary '\0','2022-05-13 02:13:57','1','2023-02-08 09:38:05','1'),(1631,NULL,393,'ACTION_OPTIMIZATION_VERSION','zh_TW','平臺使用情况統計',_binary '\0','2022-05-13 02:13:57','1','2023-02-08 09:38:05','1'),(1632,NULL,393,'ACTION_OPTIMIZATION_VERSION','en_US','Platform usage statistics',_binary '\0','2022-05-13 02:13:57','1','2023-02-08 09:38:05','1'),(1636,NULL,689,'MENU_POI_CHANGE_TYPE','zh_CN','编辑或新增类型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1637,NULL,689,'MENU_POI_CHANGE_TYPE','zh_TW','編輯或新增類型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1638,NULL,689,'MENU_POI_CHANGE_TYPE','en_US','Edit or add types',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1639,NULL,689,'ACTION_POI_DELETE_POINT','zh_CN','删除兴趣点',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1640,NULL,689,'ACTION_POI_DELETE_POINT','zh_TW','刪除興趣點',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1641,NULL,689,'ACTION_POI_DELETE_POINT','en_US','Delete POI',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1642,NULL,689,'ACTION_POI_ADD_EDIT_POI','zh_CN','新建或编辑兴趣点',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1643,NULL,689,'ACTION_POI_ADD_EDIT_POI','zh_TW','新建或編輯興趣點',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1644,NULL,689,'ACTION_POI_ADD_EDIT_POI','en_US','Create or edit a POI',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1645,NULL,689,'ACTION_POI_DELETE_TYPE','zh_CN','删除类型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1646,NULL,689,'ACTION_POI_DELETE_TYPE','zh_TW','刪除類型',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1647,NULL,689,'ACTION_POI_DELETE_TYPE','en_US','Delete type',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1648,NULL,689,'ACTION_POI_IMPORT_POINTS','zh_CN','导入兴趣点',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1649,NULL,689,'ACTION_POI_IMPORT_POINTS','zh_TW','導入興趣點',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1650,NULL,689,'ACTION_POI_IMPORT_POINTS','en_US','Import points of interest',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1651,NULL,689,'ACTION_POI_DOWNLOAD_TEMPLATE','zh_CN','下载类型模板文件',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1652,NULL,689,'ACTION_POI_DOWNLOAD_TEMPLATE','zh_TW','下載類型模板文件',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1653,NULL,689,'ACTION_POI_DOWNLOAD_TEMPLATE','en_US','Download type template file',_binary '\0','2022-05-25 09:56:08','1','2022-06-08 05:52:26','1'),(1654,244750226999476224,NULL,'MENU_PARK_SCREEN','en_US','Park',_binary '\0','2022-05-26 01:10:40','1','2022-06-23 03:05:35','188243415207510016'),(1655,244750226999476224,NULL,'MENU_PARK_SCREEN','zh_CN','园区巡检',_binary '\0','2022-05-26 01:10:40','1','2022-06-23 03:05:35','188243415207510016'),(1656,244750226999476224,NULL,'MENU_PARK_SCREEN','zh_TW','園區巡檢',_binary '\0','2022-05-26 01:10:40','1','2022-06-23 03:05:35','188243415207510016'),(1657,NULL,NULL,'MENU_PLAYBACK','zh_CN','数据回放',_binary '\0','2022-05-26 01:15:48','1','2024-04-30 07:19:55','89730635001757696'),(1658,NULL,NULL,'MENU_PLAYBACK','zh_TW','數據回放',_binary '\0','2022-05-26 01:15:48','1','2024-04-30 07:19:55','89730635001757696'),(1659,NULL,NULL,'MENU_PLAYBACK','en_US','Data playback',_binary '\0','2022-05-26 01:15:48','1','2024-04-30 07:19:55','89730635001757696'),(1660,245144849337024512,NULL,'MENU_TDOA','zh_CN','tdoa',_binary '\0','2022-05-27 03:51:17','188243415207510016',NULL,NULL),(1661,245144849337024512,NULL,'MENU_TDOA','zh_TW','tdoa',_binary '\0','2022-05-27 03:51:17','188243415207510016',NULL,NULL),(1662,245144849337024512,NULL,'MENU_TDOA','en_US','tdoa',_binary '\0','2022-05-27 03:51:17','188243415207510016',NULL,NULL),(1663,NULL,598,'ACTION_AI_CARNUMBER_BPERM','zh_CN','车牌查找',_binary '\0','2022-06-08 05:48:52','1','2022-07-08 06:54:57','1'),(1664,NULL,598,'ACTION_AI_CARNUMBER_BPERM','zh_TW','車牌查找',_binary '\0','2022-06-08 05:48:52','1','2022-07-08 06:54:57','1'),(1665,NULL,598,'ACTION_AI_CARNUMBER_BPERM','en_US','License plate search',_binary '\0','2022-06-08 05:48:52','1','2022-07-08 06:54:57','1'),(1666,NULL,486,'ACTION_3D_HISTORY_TRACK','zh_CN','三维航线历史轨迹',_binary '\0','2022-06-09 01:21:55','1','2022-06-09 05:45:07','1'),(1667,NULL,486,'ACTION_3D_HISTORY_TRACK','zh_TW','三位航綫歷史軌跡',_binary '\0','2022-06-09 01:21:55','1','2022-06-09 05:45:07','1'),(1668,NULL,486,'ACTION_3D_HISTORY_TRACK','en_US','3DHistoryTrack',_binary '\0','2022-06-09 01:21:55','1','2022-06-09 05:45:07','1'),(1669,249904145316708352,NULL,'MENU_risk_index','zh_CN','首页',_binary '\0','2022-06-09 06:30:32','188243415207510016',NULL,NULL),(1670,249904145316708352,NULL,'MENU_risk_index','zh_TW','首页',_binary '\0','2022-06-09 06:30:32','188243415207510016',NULL,NULL),(1671,249904145316708352,NULL,'MENU_risk_index','en_US','首页',_binary '\0','2022-06-09 06:30:32','188243415207510016',NULL,NULL),(1672,51700779089657856,395,'MENU_IMAGE_BRIDGE','en_US','Bridge Analysis',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1673,51700779089657856,395,'MENU_IMAGE_BRIDGE','zh_CN','桥梁分析',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1674,51700779089657856,395,'MENU_IMAGE_BRIDGE','zh_TW','橋梁分析',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1675,51700779089657856,702,'MENU_IMAGE_BRIDGE_SLOPE','en_US','Slope detection',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:33','1'),(1676,51700779089657856,702,'MENU_IMAGE_BRIDGE_SLOPE','zh_CN','边坡缺陷检测',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:33','1'),(1677,51700779089657856,702,'MENU_IMAGE_BRIDGE_SLOPE','zh_TW','邊坡缺陷檢測',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:33','1'),(1678,51700779089657856,702,'MENU_IMAGE_BRIDGE_UNDER','en_US','Under bridge inspection',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1679,51700779089657856,702,'MENU_IMAGE_BRIDGE_UNDER','zh_CN','桥下空间违章识别',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1680,51700779089657856,702,'MENU_IMAGE_BRIDGE_UNDER','zh_TW','橋下空間違章識別',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1681,51700779089657856,702,'MENU_IMAGE_BRIDGE_JOINT','en_US','Expansion joint detection',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1682,51700779089657856,702,'MENU_IMAGE_BRIDGE_JOINT','zh_CN','伸缩缝缺陷检测',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1683,51700779089657856,702,'MENU_IMAGE_BRIDGE_JOINT','zh_TW','伸縮縫缺陷檢測',_binary '\0','2022-06-22 07:20:51','1','2022-10-25 09:51:32','1'),(1684,224170096870817792,669,'MENU_AIRSPACE_PLAN','en_US','Airspace plann',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1685,224170096870817792,669,'MENU_AIRSPACE_PLAN','zh_CN','空域规划',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1686,224170096870817792,669,'MENU_AIRSPACE_PLAN','zh_TW','空域規劃',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1687,224170096870817792,706,'MENU_AIRSPACE_PLAN_APPROVAL','en_US','Plan approval',_binary '\0','2022-06-22 07:54:11','1','2023-05-19 03:35:23','188243415207510016'),(1688,224170096870817792,706,'MENU_AIRSPACE_PLAN_APPROVAL','zh_CN','计划审批',_binary '\0','2022-06-22 07:54:11','1','2023-05-19 03:35:23','188243415207510016'),(1689,224170096870817792,706,'MENU_AIRSPACE_PLAN_APPROVAL','zh_TW','計劃審批',_binary '\0','2022-06-22 07:54:11','1','2023-05-19 03:35:23','188243415207510016'),(1690,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_EDIT','en_US','Approval',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1691,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_EDIT','zh_CN','审批',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1692,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_EDIT','zh_TW','審批',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1693,224170096870817792,706,'MENU_SUPERVISION_AIRSPACE_QUERY','en_US','Airspace application',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1694,224170096870817792,706,'MENU_SUPERVISION_AIRSPACE_QUERY','zh_CN','空域申请',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1695,224170096870817792,706,'MENU_SUPERVISION_AIRSPACE_QUERY','zh_TW','空域申請',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1696,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT','en_US','AddEdit',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1697,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT','zh_CN','新建编辑',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1698,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_ADD_EDIT','zh_TW','新建編輯',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1699,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_DELETE','en_US','Delete',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1700,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_DELETE','zh_CN','删除',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1701,224170096870817792,709,'ACTION_SUPERVISION_AIRSPACE_DELETE','zh_TW','刪除',_binary '\0','2022-06-22 07:54:11','1','2022-09-20 08:37:44','1'),(1702,224170096870817792,706,'MENU_SUPERVISION_REGION','en_US','Regional Plan',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1703,224170096870817792,706,'MENU_SUPERVISION_REGION','zh_CN','区域规划',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1704,224170096870817792,706,'MENU_SUPERVISION_REGION','zh_TW','區域規劃',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1705,224170096870817792,712,'ACTION_SUPERVISION_REGION_ADD_EDIT','en_US','AddEdit',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1706,224170096870817792,712,'ACTION_SUPERVISION_REGION_ADD_EDIT','zh_CN','新建编辑',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1707,224170096870817792,712,'ACTION_SUPERVISION_REGION_ADD_EDIT','zh_TW','新建編輯',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1708,224170096870817792,712,'ACTION_SUPERVISION_REGION_DELETE','en_US','Delete',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1709,224170096870817792,712,'ACTION_SUPERVISION_REGION_DELETE','zh_CN','删除',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1710,224170096870817792,712,'ACTION_SUPERVISION_REGION_DELETE','zh_TW','刪除',_binary '\0','2022-06-22 07:54:12','1','2022-09-20 08:37:44','1'),(1711,254659367012401152,NULL,'MENU_INDEX_5G','zh_CN','首页',_binary '\0','2022-06-22 09:32:12','188243415207510016',NULL,NULL),(1712,254659367012401152,NULL,'MENU_INDEX_5G','zh_TW','首页',_binary '\0','2022-06-22 09:32:12','188243415207510016',NULL,NULL),(1713,254659367012401152,NULL,'MENU_INDEX_5G','en_US','首页',_binary '\0','2022-06-22 09:32:12','188243415207510016',NULL,NULL),(1717,257530550208692224,NULL,'MENU_COMMUNICATION_SCREEN','en_US','应急保障',_binary '\0','2022-06-30 09:22:07','1','2024-09-29 02:10:12','1'),(1718,257530550208692224,NULL,'MENU_COMMUNICATION_SCREEN','zh_CN','应急保障',_binary '\0','2022-06-30 09:22:07','1','2024-09-29 02:10:12','1'),(1719,257530550208692224,NULL,'MENU_COMMUNICATION_SCREEN','zh_TW','应急保障',_binary '\0','2022-06-30 09:22:07','1','2024-09-29 02:10:12','1'),(1720,NULL,NULL,'MENU_PILOT','zh_CN','飞手管理',_binary '\0','2022-07-08 06:50:58','188243415207510016','2022-07-08 06:51:10','1'),(1721,NULL,NULL,'MENU_PILOT','zh_TW','飛手管理',_binary '\0','2022-07-08 06:50:58','188243415207510016','2022-07-08 06:51:10','1'),(1722,NULL,NULL,'MENU_PILOT','en_US','Pilot management',_binary '\0','2022-07-08 06:50:58','188243415207510016','2022-07-08 06:51:10','1'),(1723,NULL,170,'MENU_PILOT_MESSAGE_SEARCH','zh_CN','飞手信息查询',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1724,NULL,170,'MENU_PILOT_MESSAGE_SEARCH','zh_TW','飛手信息查詢',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1725,NULL,170,'MENU_PILOT_MESSAGE_SEARCH','en_US','Pilot message search',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1726,NULL,718,'ACTION_PILOT_MESSAGE_LIST','zh_CN','飞手信息查询',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1727,NULL,718,'ACTION_PILOT_MESSAGE_LIST','zh_TW','飛手信息查詢',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1728,NULL,718,'ACTION_PILOT_MESSAGE_LIST','en_US','Pilot message info',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1729,NULL,718,'ACTION_PILOT_MESSAGE_AUDIT','zh_CN','飞手信息审核',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1730,NULL,718,'ACTION_PILOT_MESSAGE_AUDIT','zh_TW','飛手信息審核',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1731,NULL,718,'ACTION_PILOT_MESSAGE_AUDIT','en_US','Pilot message audit',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1732,NULL,718,'MENU__PILOT_ADD','zh_CN','新建飞手',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1733,NULL,718,'MENU__PILOT_ADD','zh_TW','新建飛手',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1734,NULL,718,'MENU__PILOT_ADD','en_US','addPilot',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1735,NULL,718,'MENU_PILOT_EDIT','zh_CN','编辑',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1736,NULL,718,'MENU_PILOT_EDIT','zh_TW','編輯',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1737,NULL,718,'MENU_PILOT_EDIT','en_US','editPilot',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1738,NULL,718,'MENU_PILOT_DETAIL','zh_CN','详情',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1739,NULL,718,'MENU_PILOT_DETAIL','zh_TW','詳情',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1740,NULL,718,'MENU_PILOT_DETAIL','en_US','detailPilot',_binary '\0','2022-07-08 06:51:11','1',NULL,NULL),(1741,51693249240236032,NULL,'MENU_EMERGENCY_SCREEN','en_US','应急保障',_binary '\0','2022-07-08 06:53:54','1','2022-07-25 08:30:07','1'),(1742,51693249240236032,NULL,'MENU_EMERGENCY_SCREEN','zh_CN','应急保障',_binary '\0','2022-07-08 06:53:54','1','2022-07-25 08:30:07','1'),(1743,51693249240236032,NULL,'MENU_EMERGENCY_SCREEN','zh_TW','应急保障',_binary '\0','2022-07-08 06:53:54','1','2022-07-25 08:30:07','1'),(1744,262610103520198656,NULL,'MENU_fire_emergency','zh_CN','防火应急',_binary '\0','2022-07-14 08:02:49','188243415207510016',NULL,NULL),(1745,262610103520198656,NULL,'MENU_fire_emergency','zh_TW','防火应急',_binary '\0','2022-07-14 08:02:49','188243415207510016',NULL,NULL),(1746,262610103520198656,NULL,'MENU_fire_emergency','en_US','防火应急',_binary '\0','2022-07-14 08:02:49','188243415207510016',NULL,NULL),(1747,266603863711154176,NULL,'MENU_INFRASTRUCTURE_SCREEN','en_US','screen',_binary '\0','2022-07-25 08:29:07','1','2022-07-27 09:24:40','1'),(1748,266603863711154176,NULL,'MENU_INFRASTRUCTURE_SCREEN','zh_CN','数据大屏',_binary '\0','2022-07-25 08:29:07','1','2022-07-27 09:24:40','1'),(1749,266603863711154176,NULL,'MENU_INFRASTRUCTURE_SCREEN','zh_TW','数据大屏',_binary '\0','2022-07-25 08:29:07','1','2022-07-27 09:24:40','1'),(1753,266603863711154176,NULL,'MENU_INFRASTRUCTURE_BOOK','en_US','Standing book',_binary '\0','2022-07-27 09:25:35','1',NULL,NULL),(1754,266603863711154176,NULL,'MENU_INFRASTRUCTURE_BOOK','zh_CN','设施台账',_binary '\0','2022-07-27 09:25:35','1',NULL,NULL),(1755,266603863711154176,NULL,'MENU_INFRASTRUCTURE_BOOK','zh_TW','設施臺賬',_binary '\0','2022-07-27 09:25:35','1',NULL,NULL),(1756,NULL,NULL,'MENU_SCENE_SIMULATION','zh_CN','场景模拟',_binary '\0','2022-08-04 10:54:23','1','2022-10-13 02:35:22','1'),(1757,NULL,NULL,'MENU_SCENE_SIMULATION','zh_TW','場景模擬',_binary '\0','2022-08-04 10:54:23','1','2022-10-13 02:35:22','1'),(1758,NULL,NULL,'MENU_SCENE_SIMULATION','en_US','scene Simulation',_binary '\0','2022-08-04 10:54:23','1','2022-10-13 02:35:22','1'),(1759,273132440472518656,NULL,'MENU_nematode','zh_CN','首页',_binary '\0','2022-08-12 08:53:23','188243415207510016',NULL,NULL),(1760,273132440472518656,NULL,'MENU_nematode','zh_TW','首页',_binary '\0','2022-08-12 08:53:23','188243415207510016',NULL,NULL),(1761,273132440472518656,NULL,'MENU_nematode','en_US','首页',_binary '\0','2022-08-12 08:53:23','188243415207510016',NULL,NULL),(1762,275322748887105536,NULL,'MENU_hub','zh_CN','哈勃首页',_binary '\0','2022-08-19 01:30:53','188243415207510016',NULL,NULL),(1763,275322748887105536,NULL,'MENU_hub','zh_TW','哈勃首页',_binary '\0','2022-08-19 01:30:53','188243415207510016',NULL,NULL),(1764,275322748887105536,NULL,'MENU_hub','en_US','哈勃首页',_binary '\0','2022-08-19 01:30:53','188243415207510016',NULL,NULL),(1765,275323102710202368,NULL,'MENU_latn','zh_CN','天巡',_binary '\0','2022-08-19 01:31:39','188243415207510016',NULL,NULL),(1766,275323102710202368,NULL,'MENU_latn','zh_TW','天巡',_binary '\0','2022-08-19 01:31:39','188243415207510016',NULL,NULL),(1767,275323102710202368,NULL,'MENU_latn','en_US','天巡',_binary '\0','2022-08-19 01:31:39','188243415207510016',NULL,NULL),(1768,279567198865850368,NULL,'MENU_VIDEO_PROCESS_CHOREOGRAPHER','en_US','Process choreographer',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1769,279567198865850368,NULL,'MENU_VIDEO_PROCESS_CHOREOGRAPHER','zh_CN','流程编排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1770,279567198865850368,NULL,'MENU_VIDEO_PROCESS_CHOREOGRAPHER','zh_TW','流程編排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1771,279567198865850368,735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST','en_US','Process Choreographer',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1772,279567198865850368,735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST','zh_CN','流程编排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1773,279567198865850368,735,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_LIST','zh_TW','流程編排',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1774,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH','en_US','Search',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1775,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH','zh_CN','查询',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1776,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_SEARCH','zh_TW','查詢',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1777,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD','en_US','Add',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1778,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD','zh_CN','新建流程',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1779,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_ADD','zh_TW','新建流程',_binary '\0','2022-08-30 03:01:03','1','2022-10-27 08:10:12','1'),(1780,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1781,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1782,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_BATCH_DELETE','zh_TW','批量刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1783,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL','en_US','Detail',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1784,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL','zh_CN','详情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1785,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_DETAIL','zh_TW','詳情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1786,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT','en_US','Edit',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1787,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT','zh_CN','编辑',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1788,279567198865850368,736,'MENU_VIDEO_PROCESS_CHOREOGRAPHER_EDIT','zh_TW','編輯',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1789,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE','en_US','Delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1790,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE','zh_CN','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1791,279567198865850368,736,'ACTION_VIDEO_PROCESS_CHOREOGRAPHER_DELETE','zh_TW','刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1792,279567198865850368,NULL,'MENU_VIDEO_PROCESS_MANAGE','en_US','Process task management',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1793,279567198865850368,NULL,'MENU_VIDEO_PROCESS_MANAGE','zh_CN','流程任务管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1794,279567198865850368,NULL,'MENU_VIDEO_PROCESS_MANAGE','zh_TW','流程任務管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1795,279567198865850368,743,'MENU_VIDEO_PROCESS_MANAGE_LIST','en_US','Process task management',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1796,279567198865850368,743,'MENU_VIDEO_PROCESS_MANAGE_LIST','zh_CN','流程任务管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1797,279567198865850368,743,'MENU_VIDEO_PROCESS_MANAGE_LIST','zh_TW','流程任務管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1798,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH','en_US','Search',_binary '\0','2022-08-30 03:01:04','1','2023-04-04 08:44:36','188243415207510016'),(1799,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH','zh_CN','查询',_binary '\0','2022-08-30 03:01:04','1','2023-04-04 08:44:36','188243415207510016'),(1800,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_SEARCH','zh_TW','查詢',_binary '\0','2022-08-30 03:01:04','1','2023-04-04 08:44:36','188243415207510016'),(1801,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1802,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1803,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_BATCH_DELETE','zh_TW','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1804,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_DELETE','en_US','Delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1805,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_DELETE','zh_CN','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1806,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_DELETE','zh_TW','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1807,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION','en_US','Start stop operation',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1808,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION','zh_CN','启动停止运行',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1809,279567198865850368,744,'ACTION_VIDEO_PROCESS_MANAGE_OPERATION','zh_TW','啟動停止運行',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1810,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_ADD','en_US','Add',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1811,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_ADD','zh_CN','新建任务',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1812,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_ADD','zh_TW','新建任务',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1813,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_DETAIL','en_US','Detail',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1814,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_DETAIL','zh_CN','详情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1815,279567198865850368,744,'MENU_VIDEO_PROCESS_MANAGE_DETAIL','zh_TW','詳情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1816,279567198865850368,NULL,'MENU_VIDEO_OPEN_INTERFACE','en_US','Open interface',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1817,279567198865850368,NULL,'MENU_VIDEO_OPEN_INTERFACE','zh_CN','开放接口',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1818,279567198865850368,NULL,'MENU_VIDEO_OPEN_INTERFACE','zh_TW','開放接口',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1819,279567198865850368,NULL,'MENU_VIDEO_DEVICE','en_US','Video device manage',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1820,279567198865850368,NULL,'MENU_VIDEO_DEVICE','zh_CN','视频设备管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1821,279567198865850368,NULL,'MENU_VIDEO_DEVICE','zh_TW','視頻設備管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1822,279567198865850368,752,'MENU_VIDEO_DEVICE_MANAGE','en_US','Video device manage',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1823,279567198865850368,752,'MENU_VIDEO_DEVICE_MANAGE','zh_CN','视频设备管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1824,279567198865850368,752,'MENU_VIDEO_DEVICE_MANAGE','zh_TW','視頻設備管理',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1825,279567198865850368,753,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH','en_US','Search',_binary '\0','2022-08-30 03:01:04','1','2023-03-27 07:57:09','89730635001757696'),(1826,279567198865850368,753,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH','zh_CN','查询',_binary '\0','2022-08-30 03:01:04','1','2023-03-27 07:57:09','89730635001757696'),(1827,279567198865850368,753,'ACTION_VIDEO_DEVICE_MANAGE_SEARCH','zh_TW','查詢',_binary '\0','2022-08-30 03:01:04','1','2023-03-27 07:57:09','89730635001757696'),(1828,279567198865850368,753,'MENU_VIDEO_DEVICE_DETAIL','en_US','Detail',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1829,279567198865850368,753,'MENU_VIDEO_DEVICE_DETAIL','zh_CN','详情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1830,279567198865850368,753,'MENU_VIDEO_DEVICE_DETAIL','zh_TW','詳情',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1831,279567198865850368,753,'ACTION_VIDEO_MANAGE_PLAYBACK','en_US','Video play back',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1832,279567198865850368,753,'ACTION_VIDEO_MANAGE_PLAYBACK','zh_CN','视频回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1833,279567198865850368,753,'ACTION_VIDEO_MANAGE_PLAYBACK','zh_TW','視頻回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1834,279567198865850368,753,'ACTION_VIDEO_MANAGE_DELETE','en_US','Delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1835,279567198865850368,753,'ACTION_VIDEO_MANAGE_DELETE','zh_CN','删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1836,279567198865850368,753,'ACTION_VIDEO_MANAGE_DELETE','zh_TW','刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1837,279567198865850368,753,'MENU_VIDEO_DEVICE_EDIT','en_US','Edit',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1838,279567198865850368,753,'MENU_VIDEO_DEVICE_EDIT','zh_CN','编辑',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1839,279567198865850368,753,'MENU_VIDEO_DEVICE_EDIT','zh_TW','編輯',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1840,279567198865850368,753,'ACTION_VIDEO_MANAGE_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1841,279567198865850368,753,'ACTION_VIDEO_MANAGE_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1842,279567198865850368,753,'ACTION_VIDEO_MANAGE_BATCH_DELETE','zh_TW','批量刪除',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1843,279567198865850368,753,'MENU_VIDEO_DEVICE_ADD','en_US','Add',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1844,279567198865850368,753,'MENU_VIDEO_DEVICE_ADD','zh_CN','新建设备',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1845,279567198865850368,753,'MENU_VIDEO_DEVICE_ADD','zh_TW','新建设备',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:12','1'),(1846,279567198865850368,NULL,'MENU_VIDEO_PLAYBACK','en_US','Video play back',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1847,279567198865850368,NULL,'MENU_VIDEO_PLAYBACK','zh_CN','视频回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1848,279567198865850368,NULL,'MENU_VIDEO_PLAYBACK','zh_TW','視頻回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1849,279567198865850368,761,'MENU_VIDEO_PLAYBACK_INDEX','en_US','Video play back',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1850,279567198865850368,761,'MENU_VIDEO_PLAYBACK_INDEX','zh_CN','视频回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1851,279567198865850368,761,'MENU_VIDEO_PLAYBACK_INDEX','zh_TW','視頻回放',_binary '\0','2022-08-30 03:01:04','1','2022-10-27 08:10:11','1'),(1852,NULL,NULL,'MENU_FLIGHT_RECORDS','zh_CN','飞行记录',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1853,NULL,NULL,'MENU_FLIGHT_RECORDS','zh_TW','飛行記錄',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1854,NULL,NULL,'MENU_FLIGHT_RECORDS','en_US','Flight records',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1855,NULL,763,'MENU_FLIGHT_RECORDS_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1856,NULL,763,'MENU_FLIGHT_RECORDS_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1857,NULL,763,'MENU_FLIGHT_RECORDS_DETAIL','en_US','Detai',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1858,NULL,764,'ACTION_FLIGHT_RECORDS_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1859,NULL,764,'ACTION_FLIGHT_RECORDS_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1860,NULL,764,'ACTION_FLIGHT_RECORDS_DETAIL','en_US','Detail',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1861,NULL,764,'ACTION_FLIGHT_RECORDS_EXPORT','zh_CN','导出通信名单',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1862,NULL,764,'ACTION_FLIGHT_RECORDS_EXPORT','zh_TW','导出通信名单',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1863,NULL,764,'ACTION_FLIGHT_RECORDS_EXPORT','en_US','export',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1864,NULL,763,'ACTION_FLIGHT_RECORDS_SEARCH','zh_CN','查询',_binary '\0','2022-09-20 08:30:36','1','2024-10-23 08:52:40','1'),(1865,NULL,763,'ACTION_FLIGHT_RECORDS_SEARCH','zh_TW','查询',_binary '\0','2022-09-20 08:30:36','1','2024-10-23 08:52:40','1'),(1866,NULL,763,'ACTION_FLIGHT_RECORDS_SEARCH','en_US','search',_binary '\0','2022-09-20 08:30:36','1','2024-10-23 08:52:40','1'),(1867,NULL,763,'ACTION_FLIGHT_RECORDS_DELETE','zh_CN','删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1868,NULL,763,'ACTION_FLIGHT_RECORDS_DELETE','zh_TW','删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1869,NULL,763,'ACTION_FLIGHT_RECORDS_DELETE','en_US','delete',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1870,NULL,763,'ACTION_FLIGHT_RECORDS_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1871,NULL,763,'ACTION_FLIGHT_RECORDS_BATCH_DELETE','zh_TW','批量删除',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1872,NULL,763,'ACTION_FLIGHT_RECORDS_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-09-20 08:30:36','1','2022-10-25 09:53:38','1'),(1873,NULL,486,'ACTION_MISSION_FILE_UPLOAD','zh_CN','文件上传',_binary '\0','2022-09-20 08:30:52','1','2022-09-21 03:12:16','1'),(1874,NULL,486,'ACTION_MISSION_FILE_UPLOAD','zh_TW','文件上傳',_binary '\0','2022-09-20 08:30:52','1','2022-09-21 03:12:16','1'),(1875,NULL,486,'ACTION_MISSION_FILE_UPLOAD','en_US','upload',_binary '\0','2022-09-20 08:30:52','1','2022-09-21 03:12:16','1'),(1876,NULL,NULL,'MENU_MISSION_DISPATCH','zh_CN','任务派发管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1877,NULL,NULL,'MENU_MISSION_DISPATCH','zh_TW','任務派發管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1878,NULL,NULL,'MENU_MISSION_DISPATCH','en_US','Mission dispatch management',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1879,NULL,771,'MENU_MISSION_DISPATCH_MY_AGENT','zh_CN','我的待办',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1880,NULL,771,'MENU_MISSION_DISPATCH_MY_AGENT','zh_TW','我的待辦',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1881,NULL,771,'MENU_MISSION_DISPATCH_MY_AGENT','en_US','My todo',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1882,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1883,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1884,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_DETAIL','en_US','Detail',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1885,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_LIST','zh_CN','列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1886,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_LIST','zh_TW','列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1887,NULL,772,'MENU_MISSION_DISPATCH_MY_AGENT_LIST','en_US','List',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1888,NULL,771,'MENU_MISSION_DISPATCH_SETTING','zh_CN','配置管理',_binary '\0','2022-09-20 08:32:50','1','2022-11-03 08:57:05','188243415207510016'),(1889,NULL,771,'MENU_MISSION_DISPATCH_SETTING','zh_TW','配置管理',_binary '\0','2022-09-20 08:32:50','1','2022-11-03 08:57:05','188243415207510016'),(1890,NULL,771,'MENU_MISSION_DISPATCH_SETTING','en_US','ConfigurationManagement',_binary '\0','2022-09-20 08:32:50','1','2022-11-03 08:57:05','188243415207510016'),(1891,NULL,775,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL','zh_CN','接口人配置列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1892,NULL,775,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL','zh_TW','接口人配置列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1893,NULL,775,'MENU_MISSION_DISPATCH_SETTING_INTERFACE_DETAIL','en_US','Interface Setting List',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1894,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT','zh_CN','接口人编辑',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1895,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT','zh_TW','接口人編輯',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1896,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_INTERFACE_EDIT','en_US','Interface Edit',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1897,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT','zh_CN','任务类型编辑',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1898,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT','zh_TW','任務類型編輯',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1899,NULL,775,'ACTION_MISSION_DISPATCH_SETTING_MISSION_EDIT','en_US','Mission Edit',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:49','1'),(1900,NULL,775,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL','zh_CN','任务类型列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1901,NULL,775,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL','zh_TW','任務類型列表',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1902,NULL,775,'MENU_MISSION_DISPATCH_SETTING_MISSION_DETAIL','en_US','Mission Type List',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1903,NULL,771,'MENU_MISSION_DISPATCH_MY_TASK','zh_CN','任务管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1904,NULL,771,'MENU_MISSION_DISPATCH_MY_TASK','zh_TW','任務管理',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1905,NULL,771,'MENU_MISSION_DISPATCH_MY_TASK','en_US','Task management',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1906,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_ADD','zh_CN','新建任务',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1907,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_ADD','zh_TW','新建任務',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1908,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_ADD','en_US','New task',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1909,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL','zh_CN','详情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1910,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL','zh_TW','詳情',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1911,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_DETAIL','en_US','Detail',_binary '\0','2022-09-20 08:32:50','1','2022-10-25 09:52:50','1'),(1912,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_LIST','zh_CN','列表',_binary '\0','2022-09-20 08:32:51','1','2022-10-25 09:52:50','1'),(1913,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_LIST','zh_TW','列表',_binary '\0','2022-09-20 08:32:51','1','2022-10-25 09:52:50','1'),(1914,NULL,780,'MENU_MISSION_DISPATCH_MY_TASK_LIST','en_US','List',_binary '\0','2022-09-20 08:32:51','1','2022-10-25 09:52:50','1'),(1915,257530550208692224,NULL,'MENU_COMMUNICATION_NAME_LIST','en_US','Name List',_binary '\0','2022-09-20 08:33:32','1','2022-11-09 08:57:37','1'),(1916,257530550208692224,NULL,'MENU_COMMUNICATION_NAME_LIST','zh_CN','名单管理',_binary '\0','2022-09-20 08:33:32','1','2022-11-09 08:57:37','1'),(1917,257530550208692224,NULL,'MENU_COMMUNICATION_NAME_LIST','zh_TW','名單管理',_binary '\0','2022-09-20 08:33:32','1','2022-11-09 08:57:37','1'),(1918,224170096870817792,NULL,'MENU_SUPERVISION','zh_CN','低空空域监管平台',_binary '\0','2022-09-20 08:37:25','188243415207510016','2022-09-20 08:37:43','1'),(1919,224170096870817792,NULL,'MENU_SUPERVISION','zh_TW','低空空域監管平台',_binary '\0','2022-09-20 08:37:25','188243415207510016','2022-09-20 08:37:43','1'),(1920,224170096870817792,NULL,'MENU_SUPERVISION','en_US','Lowaltitude airspace supervision platform',_binary '\0','2022-09-20 08:37:25','188243415207510016','2022-09-20 08:37:43','1'),(1921,224170096870817792,669,'MENU_SUPERVISION_FLIGHT','en_US','Flight safety supervision',_binary '\0','2022-09-20 08:37:43','1','2023-04-12 08:00:50','1'),(1922,224170096870817792,669,'MENU_SUPERVISION_FLIGHT','zh_CN','飞行安全监管',_binary '\0','2022-09-20 08:37:43','1','2023-04-12 08:00:50','1'),(1923,224170096870817792,669,'MENU_SUPERVISION_FLIGHT','zh_TW','飛行安全監管',_binary '\0','2022-09-20 08:37:43','1','2023-04-12 08:00:50','1'),(1924,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_MONITOR','en_US','Flight monitor',_binary '\0','2022-09-20 08:37:43','1','2024-02-22 08:35:11','89730635001757696'),(1925,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_MONITOR','zh_CN','三维监视',_binary '\0','2022-09-20 08:37:43','1','2024-02-22 08:35:11','89730635001757696'),(1926,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_MONITOR','zh_TW','三維監視',_binary '\0','2022-09-20 08:37:43','1','2024-02-22 08:35:11','89730635001757696'),(1927,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_CONFLICT','en_US','flight conflict judgment',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1928,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_CONFLICT','zh_CN','飞行冲突判断',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1929,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_CONFLICT','zh_TW','飛行沖突判斷',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1930,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_ANALYSIS','en_US','flight analysis',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1931,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_ANALYSIS','zh_CN','飞行分析',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1932,224170096870817792,788,'MENU_SUPERVISION_FLIGHT_ANALYSIS','zh_TW','飛行分析',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:50','1'),(1933,224170096870817792,669,'MENU_SUPERVISION_SCREEN','en_US','Big data screen',_binary '\0','2022-09-20 08:37:44','1','2023-05-04 09:43:01','1'),(1934,224170096870817792,669,'MENU_SUPERVISION_SCREEN','zh_CN','数据大屏',_binary '\0','2022-09-20 08:37:44','1','2023-05-04 09:43:01','1'),(1935,224170096870817792,669,'MENU_SUPERVISION_SCREEN','zh_TW','數據大屏',_binary '\0','2022-09-20 08:37:44','1','2023-05-04 09:43:01','1'),(1936,224170096870817792,669,'MENU_SUPERVISION_COUNTER','en_US','Monitoring countermeasures',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1937,224170096870817792,669,'MENU_SUPERVISION_COUNTER','zh_CN','监控反制',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1938,224170096870817792,669,'MENU_SUPERVISION_COUNTER','zh_TW','監控反制',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1939,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-09-08 02:39:07','199120334480211968'),(1940,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-09-08 02:39:07','199120334480211968'),(1941,224170096870817792,707,'ACTION_AIRSPACE_APPROVAL_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-09-08 02:39:07','199120334480211968'),(1942,224170096870817792,709,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-12-26 08:17:04','89730635001757696'),(1943,224170096870817792,709,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-12-26 08:17:04','89730635001757696'),(1944,224170096870817792,709,'MENU_SUPERVISION_AIRSPACE_QUERY_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-12-26 08:17:04','89730635001757696'),(1945,224170096870817792,712,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1946,224170096870817792,712,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1947,224170096870817792,712,'MENU_AIRSPACE_PLAN_APPROVAL_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1948,224170096870817792,669,'MENU_SUPERVISION_CUSTOMER','en_US','Customer management',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1949,224170096870817792,669,'MENU_SUPERVISION_CUSTOMER','zh_CN','客户管理',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1950,224170096870817792,669,'MENU_SUPERVISION_CUSTOMER','zh_TW','客戶管理',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1951,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_VIEW','en_US','View',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1952,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_VIEW','zh_CN','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1953,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_VIEW','zh_TW','查看',_binary '\0','2022-09-20 08:37:44','1','2023-04-12 08:00:51','1'),(1954,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_EDIT','en_US','Edit',_binary '\0','2022-09-20 08:37:44','1','2023-08-17 09:21:26','188243415207510016'),(1955,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_EDIT','zh_CN','编辑',_binary '\0','2022-09-20 08:37:44','1','2023-08-17 09:21:26','188243415207510016'),(1956,224170096870817792,797,'ACTION_SUPERVISION_CUSTOMER_EDIT','zh_TW','編輯',_binary '\0','2022-09-20 08:37:44','1','2023-08-17 09:21:26','188243415207510016'),(1957,NULL,595,'MENU_AI_TRANSMISSION_BPERM','zh_CN','输电识别',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1958,NULL,595,'MENU_AI_TRANSMISSION_BPERM','zh_TW','輸電識別',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1959,NULL,595,'MENU_AI_TRANSMISSION_BPERM','en_US','Transmission identification',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1960,NULL,800,'ACTION_AI_TRANSMISSION_BPERM','zh_CN','输电识别',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1961,NULL,800,'ACTION_AI_TRANSMISSION_BPERM','zh_TW','輸電識別',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1962,NULL,800,'ACTION_AI_TRANSMISSION_BPERM','en_US','Transmission identification',_binary '\0','2022-09-21 03:08:03','1','2022-11-09 09:00:33','1'),(1963,256733978294222848,NULL,'MENU_tudou_sensing','zh_CN','智能遥感',_binary '\0','2022-09-22 01:31:25','188243415207510016',NULL,NULL),(1964,256733978294222848,NULL,'MENU_tudou_sensing','zh_TW','智能遙感',_binary '\0','2022-09-22 01:31:25','188243415207510016',NULL,NULL),(1965,256733978294222848,NULL,'MENU_tudou_sensing','en_US','Intelligent remote sens',_binary '\0','2022-09-22 01:31:25','188243415207510016',NULL,NULL),(1966,287875985993367552,NULL,'MENU_tudou_3d','zh_CN','实景三维',_binary '\0','2022-09-22 01:32:09','188243415207510016',NULL,NULL),(1967,287875985993367552,NULL,'MENU_tudou_3d','zh_TW','實景三維',_binary '\0','2022-09-22 01:32:09','188243415207510016',NULL,NULL),(1968,287875985993367552,NULL,'MENU_tudou_3d','en_US','Reality 3D',_binary '\0','2022-09-22 01:32:09','188243415207510016',NULL,NULL),(1969,NULL,486,'MENU_SUB_MISSION_DETAIL','zh_CN','子作业详情',_binary '\0','2022-10-13 02:35:32','1','2022-10-25 09:52:22','1'),(1970,NULL,486,'MENU_SUB_MISSION_DETAIL','zh_TW','子工作詳情',_binary '\0','2022-10-13 02:35:32','1','2022-10-25 09:52:22','1'),(1971,NULL,486,'MENU_SUB_MISSION_DETAIL','en_US','Sub job details',_binary '\0','2022-10-13 02:35:32','1','2022-10-25 09:52:22','1'),(1972,NULL,486,'ACTION_MISSION_FILE_DELETE','zh_CN','文件删除',_binary '\0','2022-10-13 02:35:32','1','2023-09-27 10:02:48','1'),(1973,NULL,486,'ACTION_MISSION_FILE_DELETE','zh_TW','文件刪除',_binary '\0','2022-10-13 02:35:32','1','2023-09-27 10:02:48','1'),(1974,NULL,486,'ACTION_MISSION_FILE_DELETE','en_US','delete file',_binary '\0','2022-10-13 02:35:32','1','2023-09-27 10:02:48','1'),(1975,51700779089657856,397,'MENU_IMAGE_POSTURE','en_US','Posture detection',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1976,51700779089657856,397,'MENU_IMAGE_POSTURE','zh_CN','人体姿态行为检测',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1977,51700779089657856,397,'MENU_IMAGE_POSTURE','zh_TW','人體姿態行爲檢測',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1978,51700779089657856,397,'MENU_IMAGE_COMMON','en_US','Common Capability',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1979,51700779089657856,397,'MENU_IMAGE_COMMON','zh_CN','通用能力识别',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1980,51700779089657856,397,'MENU_IMAGE_COMMON','zh_TW','通用能力識別',_binary '\0','2022-10-25 09:51:32','1','2023-02-07 06:51:00','1'),(1981,51700779089657856,395,'MENU_IMAGE_DEBRIS_FLOW','en_US','Debris flow',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1982,51700779089657856,395,'MENU_IMAGE_DEBRIS_FLOW','zh_CN','泥石流识别',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1983,51700779089657856,395,'MENU_IMAGE_DEBRIS_FLOW','zh_TW','泥石流識別',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1984,51700779089657856,807,'MENU_IMAGE_DEBRIS_FLOW_DETAIL','en_US','Debris flow identification',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1985,51700779089657856,807,'MENU_IMAGE_DEBRIS_FLOW_DETAIL','zh_CN','泥石流识别',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1986,51700779089657856,807,'MENU_IMAGE_DEBRIS_FLOW_DETAIL','zh_TW','泥石流識別',_binary '\0','2022-10-25 09:51:33','1','2023-02-07 06:51:00','1'),(1987,279567198865850368,NULL,'MENU_VIDEO_SYSTEM_MANAGE','en_US','System Manage',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1988,279567198865850368,NULL,'MENU_VIDEO_SYSTEM_MANAGE','zh_CN','系统管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1989,279567198865850368,NULL,'MENU_VIDEO_SYSTEM_MANAGE','zh_TW','系統管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1990,279567198865850368,809,'MENU_VIDEO_SYSTEM_MANAGE_LIST','en_US','System Manage',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1991,279567198865850368,809,'MENU_VIDEO_SYSTEM_MANAGE_LIST','zh_CN','系统管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1992,279567198865850368,809,'MENU_VIDEO_SYSTEM_MANAGE_LIST','zh_TW','系統管理',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1993,279567198865850368,810,'ACTION_VIDEO_COMPOSE_SEARCH','en_US','视频合成任务查询',_binary '\0','2022-10-27 08:10:11','1','2023-04-04 08:45:03','188243415207510016'),(1994,279567198865850368,810,'ACTION_VIDEO_COMPOSE_SEARCH','zh_CN','视频合成任务查询',_binary '\0','2022-10-27 08:10:11','1','2023-04-04 08:45:03','188243415207510016'),(1995,279567198865850368,810,'ACTION_VIDEO_COMPOSE_SEARCH','zh_TW','视频合成任务查询',_binary '\0','2022-10-27 08:10:11','1','2023-04-04 08:45:03','188243415207510016'),(1996,279567198865850368,810,'ACTION_VIDEO_COMPOSE_MERGE','en_US','合成任务',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1997,279567198865850368,810,'ACTION_VIDEO_COMPOSE_MERGE','zh_CN','合成任务',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1998,279567198865850368,810,'ACTION_VIDEO_COMPOSE_MERGE','zh_TW','合成任务',_binary '\0','2022-10-27 08:10:11','1','2023-02-07 06:51:11','1'),(1999,279567198865850368,810,'ACTION_VIDEO_COMPOSE_DEL','en_US','视频合成任务删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2000,279567198865850368,810,'ACTION_VIDEO_COMPOSE_DEL','zh_CN','视频合成任务删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2001,279567198865850368,810,'ACTION_VIDEO_COMPOSE_DEL','zh_TW','视频合成任务删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2002,279567198865850368,810,'ACTION_VIDEO_SLICE_SEARCH','en_US','视频分片管理查询',_binary '\0','2022-10-27 08:10:12','1','2023-02-15 06:17:31','89730635001757696'),(2003,279567198865850368,810,'ACTION_VIDEO_SLICE_SEARCH','zh_CN','视频分片管理查询',_binary '\0','2022-10-27 08:10:12','1','2023-02-15 06:17:31','89730635001757696'),(2004,279567198865850368,810,'ACTION_VIDEO_SLICE_SEARCH','zh_TW','视频分片管理查询',_binary '\0','2022-10-27 08:10:12','1','2023-02-15 06:17:31','89730635001757696'),(2005,279567198865850368,810,'ACTION_VIDEO_SLICE_DEL','en_US','视频分片管理删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2006,279567198865850368,810,'ACTION_VIDEO_SLICE_DEL','zh_CN','视频分片管理删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2007,279567198865850368,810,'ACTION_VIDEO_SLICE_DEL','zh_TW','视频分片管理删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2008,279567198865850368,NULL,'MENU_VIDEO_LIVE_MANAGE','en_US','Live broadcast management',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2009,279567198865850368,NULL,'MENU_VIDEO_LIVE_MANAGE','zh_CN','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2010,279567198865850368,NULL,'MENU_VIDEO_LIVE_MANAGE','zh_TW','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2011,279567198865850368,816,'MENU_VIDEO_LIVE_MANAGE_LIST','en_US','Live broadcast management',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2012,279567198865850368,816,'MENU_VIDEO_LIVE_MANAGE_LIST','zh_CN','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2013,279567198865850368,816,'MENU_VIDEO_LIVE_MANAGE_LIST','zh_TW','直播管理',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2014,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SEARCH','en_US','Search',_binary '\0','2022-10-27 08:10:12','1','2023-04-04 08:44:16','188243415207510016'),(2015,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SEARCH','zh_CN','查询',_binary '\0','2022-10-27 08:10:12','1','2023-04-04 08:44:16','188243415207510016'),(2016,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SEARCH','zh_TW','查詢',_binary '\0','2022-10-27 08:10:12','1','2023-04-04 08:44:16','188243415207510016'),(2017,279567198865850368,817,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE','en_US','Batch delete',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2018,279567198865850368,817,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE','zh_CN','批量删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2019,279567198865850368,817,'ACTION_VIDEO_PROCESS_LIVE_BATCH_DELETE','zh_TW','批量删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2020,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_DELETE','en_US','Delete',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2021,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_DELETE','zh_CN','删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2022,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_DELETE','zh_TW','删除',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2023,279567198865850368,817,'MENU_VIDEO_LIVE_MANAGE_ADD','en_US','Add',_binary '\0','2022-10-27 08:10:12','1','2023-04-03 09:43:05','188243415207510016'),(2024,279567198865850368,817,'MENU_VIDEO_LIVE_MANAGE_ADD','zh_CN','新建直播',_binary '\0','2022-10-27 08:10:12','1','2023-04-03 09:43:05','188243415207510016'),(2025,279567198865850368,817,'MENU_VIDEO_LIVE_MANAGE_ADD','zh_TW','新建直播',_binary '\0','2022-10-27 08:10:12','1','2023-04-03 09:43:05','188243415207510016'),(2026,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE','en_US','Enter live',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2027,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE','zh_CN','进入直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2028,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_ENTERLIVE','zh_TW','進入直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2029,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK','en_US','Playback',_binary '\0','2022-10-27 08:10:12','1','2023-03-27 07:38:41','89730635001757696'),(2030,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK','zh_CN','回放',_binary '\0','2022-10-27 08:10:12','1','2023-03-27 07:38:41','89730635001757696'),(2031,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_PLAYBACK','zh_TW','重播',_binary '\0','2022-10-27 08:10:12','1','2023-03-27 07:38:41','89730635001757696'),(2032,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SHARE','en_US','Share',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2033,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SHARE','zh_CN','分享',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2034,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_SHARE','zh_TW','分享',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2035,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_END','en_US','End live',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2036,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_END','zh_CN','结束直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2037,279567198865850368,817,'ACTION_VIDEO_LIVE_MANAGE_END','zh_TW','結束直播',_binary '\0','2022-10-27 08:10:12','1','2023-02-07 06:51:11','1'),(2038,NULL,358,'ACTION_CONTROL_MANAGE','zh_CN','控制权管理',_binary '\0','2022-11-09 09:00:33','1','2022-11-17 02:57:42','1'),(2039,NULL,358,'ACTION_CONTROL_MANAGE','zh_TW','控制權管理',_binary '\0','2022-11-09 09:00:33','1','2022-11-17 02:57:42','1'),(2040,NULL,358,'ACTION_CONTROL_MANAGE','en_US','Control management',_binary '\0','2022-11-09 09:00:33','1','2022-11-17 02:57:42','1'),(2041,51693249240236032,NULL,'MENU_EMERGENCY_RESOURCE_SHOW','zh_CN','资源展示',_binary '\0','2022-12-02 03:02:25','188243415207510016','2022-12-08 09:58:01','1'),(2042,51693249240236032,NULL,'MENU_EMERGENCY_RESOURCE_SHOW','zh_TW','資源展示',_binary '\0','2022-12-02 03:02:25','188243415207510016','2022-12-08 09:58:01','1'),(2043,51693249240236032,NULL,'MENU_EMERGENCY_RESOURCE_SHOW','en_US','Resource show',_binary '\0','2022-12-02 03:02:25','188243415207510016','2022-12-08 09:58:01','1'),(2044,NULL,674,'MENU_COMPANY_MAP','zh_CN','地图设置',_binary '\0','2023-01-17 08:08:25','1','2024-03-19 08:09:19','1'),(2045,NULL,674,'MENU_COMPANY_MAP','zh_TW','地圖設置',_binary '\0','2023-01-17 08:08:25','1','2024-03-19 08:09:19','1'),(2046,NULL,674,'MENU_COMPANY_MAP','en_US','Map Setting',_binary '\0','2023-01-17 08:08:25','1','2024-03-19 08:09:19','1'),(2047,51700779089657856,396,'MENU_IMAGE_VEHICLE_INDENTIFY','en_US','Vehicle identification',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2048,51700779089657856,396,'MENU_IMAGE_VEHICLE_INDENTIFY','zh_CN','车辆识别',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2049,51700779089657856,396,'MENU_IMAGE_VEHICLE_INDENTIFY','zh_TW','車輛識別',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2050,51700779089657856,402,'MENU_IMAGE_BODY_DETECTION','en_US','Human detection',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2051,51700779089657856,402,'MENU_IMAGE_BODY_DETECTION','zh_CN','人体检测',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2052,51700779089657856,402,'MENU_IMAGE_BODY_DETECTION','zh_TW','人體檢測',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2053,51700779089657856,402,'MENU_IMAGE_CROWD_COUNT','en_US','Crowd count',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2054,51700779089657856,402,'MENU_IMAGE_CROWD_COUNT','zh_CN','人群计数',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2055,51700779089657856,402,'MENU_IMAGE_CROWD_COUNT','zh_TW','人群計數',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2056,51700779089657856,402,'MENU_IMAGE_PEDESTRIAN','en_US','Pedestrian cognition',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2057,51700779089657856,402,'MENU_IMAGE_PEDESTRIAN','zh_CN','行人认知',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2058,51700779089657856,402,'MENU_IMAGE_PEDESTRIAN','zh_TW','行人認知',_binary '\0','2023-02-07 06:51:00','1',NULL,NULL),(2062,NULL,833,'MENU_ACHIEVEMENT_2D','zh_CN','二维视图',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2063,NULL,833,'MENU_ACHIEVEMENT_2D','zh_TW','二維視圖',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2064,NULL,833,'MENU_ACHIEVEMENT_2D','en_US','2D View',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2065,NULL,834,'MENU_ACHIEVEMENT_2D_LIST','zh_CN','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2066,NULL,834,'MENU_ACHIEVEMENT_2D_LIST','zh_TW','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2067,NULL,834,'MENU_ACHIEVEMENT_2D_LIST','en_US','List',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2068,NULL,834,'ACTION_ACHIEVEMENT_2D_DELETE','zh_CN','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2069,NULL,834,'ACTION_ACHIEVEMENT_2D_DELETE','zh_TW','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2070,NULL,834,'ACTION_ACHIEVEMENT_2D_DELETE','en_US','Delete',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2071,NULL,834,'MENU_ACHIEVEMENT_2D_EDIT','zh_CN','编辑',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2072,NULL,834,'MENU_ACHIEVEMENT_2D_EDIT','zh_TW','編輯',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2073,NULL,834,'MENU_ACHIEVEMENT_2D_EDIT','en_US','Edit',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2074,NULL,834,'MENU_ACHIEVEMENT_2D_DETAIL','zh_CN','详情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2075,NULL,834,'MENU_ACHIEVEMENT_2D_DETAIL','zh_TW','詳情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2076,NULL,834,'MENU_ACHIEVEMENT_2D_DETAIL','en_US','Detail',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2077,NULL,834,'MENU_ACHIEVEMENT_2D_CONTRAST','zh_CN','对比',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2078,NULL,834,'MENU_ACHIEVEMENT_2D_CONTRAST','zh_TW','對比',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2079,NULL,834,'MENU_ACHIEVEMENT_2D_CONTRAST','en_US','Contrast',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2080,NULL,834,'MENU_ACHIEVEMENT_2D_ADD','zh_CN','新建视图',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2081,NULL,834,'MENU_ACHIEVEMENT_2D_ADD','zh_TW','新建視圖',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2082,NULL,834,'MENU_ACHIEVEMENT_2D_ADD','en_US','New View',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2083,NULL,833,'MENU_ACHIEVEMENT_3D','zh_CN','三维视图',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2084,NULL,833,'MENU_ACHIEVEMENT_3D','zh_TW','三維視圖',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2085,NULL,833,'MENU_ACHIEVEMENT_3D','en_US','3D View',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2086,NULL,841,'MENU_ACHIEVEMENT_3D_LIST','zh_CN','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2087,NULL,841,'MENU_ACHIEVEMENT_3D_LIST','zh_TW','列表',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2088,NULL,841,'MENU_ACHIEVEMENT_3D_LIST','en_US','List',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2089,NULL,841,'ACTION_ACHIEVEMENT_3D_DELETE','zh_CN','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2090,NULL,841,'ACTION_ACHIEVEMENT_3D_DELETE','zh_TW','删除',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2091,NULL,841,'ACTION_ACHIEVEMENT_3D_DELETE','en_US','Delete',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2092,NULL,841,'MENU_ACHIEVEMENT_3D_EDIT','zh_CN','编辑',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2093,NULL,841,'MENU_ACHIEVEMENT_3D_EDIT','zh_TW','編輯',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2094,NULL,841,'MENU_ACHIEVEMENT_3D_EDIT','en_US','Edit',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2095,NULL,841,'MENU_ACHIEVEMENT_3D_DETAIL','zh_CN','详情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2096,NULL,841,'MENU_ACHIEVEMENT_3D_DETAIL','zh_TW','詳情',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2097,NULL,841,'MENU_ACHIEVEMENT_3D_DETAIL','en_US','Detail',_binary '\0','2023-02-08 09:29:36','1',NULL,NULL),(2098,NULL,841,'MENU_ACHIEVEMENT_3D_CONTRAST','zh_CN','对比',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2099,NULL,841,'MENU_ACHIEVEMENT_3D_CONTRAST','zh_TW','對比',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2100,NULL,841,'MENU_ACHIEVEMENT_3D_CONTRAST','en_US','Contrast',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2101,NULL,841,'MENU_ACHIEVEMENT_3D_ADD','zh_CN','新建视图',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2102,NULL,841,'MENU_ACHIEVEMENT_3D_ADD','zh_TW','新建視圖',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2103,NULL,841,'MENU_ACHIEVEMENT_3D_ADD','en_US','New View',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2104,NULL,833,'MENU_ACHIEVEMENT_RETURN_IMG','zh_CN','回传影像',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2105,NULL,833,'MENU_ACHIEVEMENT_RETURN_IMG','zh_TW','回傳影像',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2106,NULL,833,'MENU_ACHIEVEMENT_RETURN_IMG','en_US','Retrieving image',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2107,NULL,833,'MENU_ACHIEVEMENT_PANORAMIC_IMG','zh_CN','全景照片',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2108,NULL,833,'MENU_ACHIEVEMENT_PANORAMIC_IMG','zh_TW','全景照片',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2109,NULL,833,'MENU_ACHIEVEMENT_PANORAMIC_IMG','en_US','Panoramic image',_binary '\0','2023-02-08 09:29:37','1',NULL,NULL),(2113,NULL,393,'MENU_COMMOM_SCREEN','zh_CN','数据大屏',_binary '\0','2023-02-08 09:38:05','1','2023-09-08 09:29:51','188243415207510016'),(2114,NULL,393,'MENU_COMMOM_SCREEN','zh_TW','數據大屏',_binary '\0','2023-02-08 09:38:05','1','2023-09-08 09:29:51','188243415207510016'),(2115,NULL,393,'MENU_COMMOM_SCREEN','en_US','Large screen of data',_binary '\0','2023-02-08 09:38:05','1','2023-09-08 09:29:51','188243415207510016'),(2119,NULL,595,'MENU_AI_EXCAVATOR_BPERM','zh_CN','挖掘机识别',_binary '\0','2023-02-09 01:20:47','188243415207510016','2023-09-12 01:19:32','1'),(2120,NULL,595,'MENU_AI_EXCAVATOR_BPERM','zh_TW','挖掘機識別',_binary '\0','2023-02-09 01:20:47','188243415207510016','2023-09-12 01:19:32','1'),(2121,NULL,595,'MENU_AI_EXCAVATOR_BPERM','en_US','Excavator Identification',_binary '\0','2023-02-09 01:20:47','188243415207510016','2023-09-12 01:19:32','1'),(2122,NULL,595,'MENU_AI_SAFEHAT_BPERM','zh_CN','安全帽识别',_binary '\0','2023-02-09 01:21:57','188243415207510016','2023-09-12 01:19:32','1'),(2123,NULL,595,'MENU_AI_SAFEHAT_BPERM','zh_TW','安全帽识别',_binary '\0','2023-02-09 01:21:57','188243415207510016','2023-09-12 01:19:32','1'),(2124,NULL,595,'MENU_AI_SAFEHAT_BPERM','en_US','Helmet Identification',_binary '\0','2023-02-09 01:21:57','188243415207510016','2023-09-12 01:19:32','1'),(2125,NULL,682,'ACTION_DEVICE_WAREHOUSE_EDIT','zh_CN','编辑新增',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2126,NULL,682,'ACTION_DEVICE_WAREHOUSE_EDIT','zh_TW','編輯新增',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2127,NULL,682,'ACTION_DEVICE_WAREHOUSE_EDIT','en_US','Edit and add',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2128,NULL,682,'ACTION_DEVICE_WAREHOUSE_CHECK','zh_CN','查看',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2129,NULL,682,'ACTION_DEVICE_WAREHOUSE_CHECK','zh_TW','查看',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2130,NULL,682,'ACTION_DEVICE_WAREHOUSE_CHECK','en_US','Check',_binary '\0','2023-02-14 05:59:41','1','2023-09-27 10:02:38','1'),(2131,218767711973408768,NULL,'MENU_DATA_STATISTIC','en_US','Data Statistics',_binary '\0','2023-03-29 09:38:33','1',NULL,NULL),(2132,218767711973408768,NULL,'MENU_DATA_STATISTIC','zh_CN','数据统计',_binary '\0','2023-03-29 09:38:33','1',NULL,NULL),(2133,218767711973408768,NULL,'MENU_DATA_STATISTIC','zh_TW','數據統計',_binary '\0','2023-03-29 09:38:33','1',NULL,NULL),(2134,NULL,NULL,'MENU_FLIGHT_PLAN','zh_CN','飞行计划',_binary '\0','2023-04-12 08:00:31','1','2023-05-05 09:28:07','1'),(2135,NULL,NULL,'MENU_FLIGHT_PLAN','zh_TW','飛行計劃',_binary '\0','2023-04-12 08:00:31','1','2023-05-05 09:28:07','1'),(2136,NULL,NULL,'MENU_FLIGHT_PLAN','en_US','Flight plan application',_binary '\0','2023-04-12 08:00:31','1','2023-05-05 09:28:07','1'),(2137,NULL,858,'MENU_FLIGHT_PLAN_CREATE','zh_CN','飞行申请',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2138,NULL,858,'MENU_FLIGHT_PLAN_CREATE','zh_TW','飛行申請',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2139,NULL,858,'MENU_FLIGHT_PLAN_CREATE','en_US','Create flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2140,NULL,859,'ACTION_FLIGHT_PLAN_SAVE','zh_CN','保存',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2141,NULL,859,'ACTION_FLIGHT_PLAN_SAVE','zh_TW','保存',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2142,NULL,859,'ACTION_FLIGHT_PLAN_SAVE','en_US','Save fligth plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2143,NULL,858,'MENU_FLIGHT_PLAN_EDIT','zh_CN','编辑飞行申请',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2144,NULL,858,'MENU_FLIGHT_PLAN_EDIT','zh_TW','編輯飛行申請',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2145,NULL,858,'MENU_FLIGHT_PLAN_EDIT','en_US','Flight plan edit',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2146,NULL,858,'ACTION_FLIGHT_PLAN_EDIT','zh_CN','编辑',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2147,NULL,858,'ACTION_FLIGHT_PLAN_EDIT','zh_TW','編輯',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2148,NULL,858,'ACTION_FLIGHT_PLAN_EDIT','en_US','Edit flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2149,NULL,858,'ACTION_FLIGHT_PLAN_SEARCH','zh_CN','查询',_binary '\0','2023-04-12 08:00:31','1','2023-09-08 02:38:16','199120334480211968'),(2150,NULL,858,'ACTION_FLIGHT_PLAN_SEARCH','zh_TW','查詢',_binary '\0','2023-04-12 08:00:31','1','2023-09-08 02:38:16','199120334480211968'),(2151,NULL,858,'ACTION_FLIGHT_PLAN_SEARCH','en_US','Query flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-09-08 02:38:16','199120334480211968'),(2152,NULL,858,'ACTION_FLIGHT_PLAN_DEL','zh_CN','删除',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2153,NULL,858,'ACTION_FLIGHT_PLAN_DEL','zh_TW','刪除',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2154,NULL,858,'ACTION_FLIGHT_PLAN_DEL','en_US','Delete flight plan',_binary '\0','2023-04-12 08:00:31','1','2023-05-04 09:44:35','1'),(2155,365173608686157824,NULL,'MENU_runtoint_index','zh_CN','润图智能',_binary '\0','2023-04-23 08:47:55','188243415207510016',NULL,NULL),(2156,365173608686157824,NULL,'MENU_runtoint_index','zh_TW','润图智能',_binary '\0','2023-04-23 08:47:55','188243415207510016',NULL,NULL),(2157,365173608686157824,NULL,'MENU_runtoint_index','en_US','润图智能',_binary '\0','2023-04-23 08:47:55','188243415207510016',NULL,NULL),(2158,224170096870817792,789,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING','en_US','Set conflict alarm detection parameters',_binary '\0','2023-05-04 09:43:01','1','2023-05-05 09:26:34','1'),(2159,224170096870817792,789,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING','zh_CN','设置冲突预警检测参数',_binary '\0','2023-05-04 09:43:01','1','2023-05-05 09:26:34','1'),(2160,224170096870817792,789,'MENU_SUPERVISION_FLIGHT_MONITOR_SET_CLASH_SETTING','zh_TW','設置衝突預警檢測參數',_binary '\0','2023-05-04 09:43:01','1','2023-05-05 09:26:34','1'),(2161,51694103410245632,NULL,'MENU_SECURITY_H5','en_US','Investigator H5',_binary '\0','2023-05-04 09:43:49','1','2024-03-19 03:49:30','188243415207510016'),(2162,51694103410245632,NULL,'MENU_SECURITY_H5','zh_CN','侦查员H5',_binary '\0','2023-05-04 09:43:49','1','2024-03-19 03:49:30','188243415207510016'),(2163,51694103410245632,NULL,'MENU_SECURITY_H5','zh_TW','偵查員H5',_binary '\0','2023-05-04 09:43:49','1','2024-03-19 03:49:30','188243415207510016'),(2164,51694103410245632,NULL,'MENU_POLICE_MULTIPLE_MONITOR','en_US','Multiple monitor',_binary '\0','2023-05-04 09:43:49','1',NULL,NULL),(2165,51694103410245632,NULL,'MENU_POLICE_MULTIPLE_MONITOR','zh_CN','多机监视',_binary '\0','2023-05-04 09:43:49','1',NULL,NULL),(2166,51694103410245632,NULL,'MENU_POLICE_MULTIPLE_MONITOR','zh_TW','多機監視',_binary '\0','2023-05-04 09:43:49','1',NULL,NULL),(2167,51694103410245632,NULL,'MENU_POLICE_GLOBAL_MONITOR','en_US','Global monitor',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2168,51694103410245632,NULL,'MENU_POLICE_GLOBAL_MONITOR','zh_CN','全局监视',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2169,51694103410245632,NULL,'MENU_POLICE_GLOBAL_MONITOR','zh_TW','全局監視',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2170,51694103410245632,NULL,'MENU_POLICE_SINGLE_MONITOR','en_US','Single monitor',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2171,51694103410245632,NULL,'MENU_POLICE_SINGLE_MONITOR','zh_CN','单机监视',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2172,51694103410245632,NULL,'MENU_POLICE_SINGLE_MONITOR','zh_TW','單機監視',_binary '\0','2023-05-04 09:43:50','1',NULL,NULL),(2173,51694103410245632,NULL,'MENU_SECURITY_SCREEN','en_US','Monitor Screen',_binary '\0','2023-05-04 09:43:50','1','2024-05-14 07:56:01','89730635001757696'),(2174,51694103410245632,NULL,'MENU_SECURITY_SCREEN','zh_CN','监控大屏',_binary '\0','2023-05-04 09:43:50','1','2024-05-14 07:56:01','89730635001757696'),(2175,51694103410245632,NULL,'MENU_SECURITY_SCREEN','zh_TW','監控大屏',_binary '\0','2023-05-04 09:43:50','1','2024-05-14 07:56:01','89730635001757696'),(2176,NULL,858,'MENU_FLIGHT_PLAN_DETAIL','zh_CN','详情',_binary '\0','2023-05-05 09:28:07','1',NULL,NULL),(2177,NULL,858,'MENU_FLIGHT_PLAN_DETAIL','zh_TW','詳情',_binary '\0','2023-05-05 09:28:07','1',NULL,NULL),(2178,NULL,858,'MENU_FLIGHT_PLAN_DETAIL','en_US','Detail',_binary '\0','2023-05-05 09:28:07','1',NULL,NULL),(2179,51693429796634624,NULL,'MENU_TRAFFIC_WAREHOUSE_DETAIL','en_US','素材库详情',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2180,51693429796634624,NULL,'MENU_TRAFFIC_WAREHOUSE_DETAIL','zh_CN','素材库详情',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2181,51693429796634624,NULL,'MENU_TRAFFIC_WAREHOUSE_DETAIL','zh_TW','素材库详情',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2182,51693429796634624,NULL,'MENU_TRAFFIC_SCREEN','en_US','首页大屏',_binary '\0','2023-05-18 10:07:48','1','2024-09-09 03:33:39','89730635001757696'),(2183,51693429796634624,NULL,'MENU_TRAFFIC_SCREEN','zh_CN','首页大屏',_binary '\0','2023-05-18 10:07:48','1','2024-09-09 03:33:39','89730635001757696'),(2184,51693429796634624,NULL,'MENU_TRAFFIC_SCREEN','zh_TW','首页大屏',_binary '\0','2023-05-18 10:07:48','1','2024-09-09 03:33:39','89730635001757696'),(2185,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_SCREEN','en_US','交通引导',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2186,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_SCREEN','zh_CN','交通引导',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2187,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_SCREEN','zh_TW','交通引导',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2188,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN','en_US','违停取证',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2189,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN','zh_CN','违停取证',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2190,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_SCREEN','zh_TW','违停取证',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2191,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE','en_US','违停取证素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2192,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE','zh_CN','违停取证素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2193,51693429796634624,NULL,'MENU_TRAFFIC_ILLEGALPARKING_WAREHOUSE','zh_TW','违停取证素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2194,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_WAREHOUSE','en_US','交通引导素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2195,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_WAREHOUSE','zh_CN','交通引导素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2196,51693429796634624,NULL,'MENU_TRAFFIC_GUIDE_WAREHOUSE','zh_TW','交通引导素材库',_binary '\0','2023-05-18 10:07:48','1','2023-05-18 10:49:19','1'),(2197,374257704400846848,NULL,'MENU_PILOT_SCOUTING','en_US','Pilot Scouting',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2198,374257704400846848,NULL,'MENU_PILOT_SCOUTING','zh_CN','飞手侦察',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2199,374257704400846848,NULL,'MENU_PILOT_SCOUTING','zh_TW','飛手偵察',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2200,374257704400846848,NULL,'MENU_flyer_basic','en_US','Fly Basic',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2201,374257704400846848,NULL,'MENU_flyer_basic','zh_CN','基础飞行',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2202,374257704400846848,NULL,'MENU_flyer_basic','zh_TW','基礎飛行',_binary '\0','2023-05-18 10:08:00','1',NULL,NULL),(2203,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCYMAP','en_US','应急一张图',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2204,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCYMAP','zh_CN','应急一张图',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2205,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCYMAP','zh_TW','应急一张图',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2206,257530550208692224,NULL,'MENU_COMMUNICATION_DATAMANAGE','en_US','自然灾害数据管理',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2207,257530550208692224,NULL,'MENU_COMMUNICATION_DATAMANAGE','zh_CN','自然灾害数据管理',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2208,257530550208692224,NULL,'MENU_COMMUNICATION_DATAMANAGE','zh_TW','自然灾害数据管理',_binary '\0','2023-05-18 10:49:02','1','2023-10-11 01:31:47','1'),(2209,257530550208692224,882,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL','en_US','查看',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2210,257530550208692224,882,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL','zh_CN','查看',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2211,257530550208692224,882,'ACTION_COMMUNICATION_DATAMANAGE_DETAIL','zh_TW','查看',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2212,257530550208692224,882,'ACTION_COMMUNICATION_ADD','en_US','新建',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2213,257530550208692224,882,'ACTION_COMMUNICATION_ADD','zh_CN','新建',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2214,257530550208692224,882,'ACTION_COMMUNICATION_ADD','zh_TW','新建',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2215,257530550208692224,882,'ACTION_COMMUNICATION_EDIT','en_US','编辑',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2216,257530550208692224,882,'ACTION_COMMUNICATION_EDIT','zh_CN','编辑',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2217,257530550208692224,882,'ACTION_COMMUNICATION_EDIT','zh_TW','编辑',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2218,257530550208692224,882,'ACTION_COMMUNICATION_DELETE','en_US','删除',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2219,257530550208692224,882,'ACTION_COMMUNICATION_DELETE','zh_CN','删除',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2220,257530550208692224,882,'ACTION_COMMUNICATION_DELETE','zh_TW','删除',_binary '\0','2023-05-18 10:49:03','1','2023-10-11 01:31:47','1'),(2221,375599197049585664,NULL,'MENU_FIRE_RESCUE_SCREEN','en_US','城市运营',_binary '\0','2023-05-22 02:57:12','1','2024-01-05 01:57:04','188243415207510016'),(2222,375599197049585664,NULL,'MENU_FIRE_RESCUE_SCREEN','zh_CN','城市运营',_binary '\0','2023-05-22 02:57:12','1','2024-01-05 01:57:04','188243415207510016'),(2223,375599197049585664,NULL,'MENU_FIRE_RESCUE_SCREEN','zh_TW','城市运营',_binary '\0','2023-05-22 02:57:12','1','2024-01-05 01:57:04','188243415207510016'),(2224,375599197049585664,NULL,'MENU_FIRE_RESCUE_MONITOR','en_US','消防单机监视',_binary '\0','2023-05-22 02:57:12','1','2023-07-07 06:29:03','1'),(2225,375599197049585664,NULL,'MENU_FIRE_RESCUE_MONITOR','zh_CN','消防单机监视',_binary '\0','2023-05-22 02:57:12','1','2023-07-07 06:29:03','1'),(2226,375599197049585664,NULL,'MENU_FIRE_RESCUE_MONITOR','zh_TW','消防单机监视',_binary '\0','2023-05-22 02:57:12','1','2023-07-07 06:29:03','1'),(2227,375599197049585664,NULL,'MENU_FIRE_RESCUE_MULTI_MONITOR','en_US','Fire multiengine monitoring',_binary '\0','2023-05-22 02:57:12','1','2023-06-16 09:14:32','1'),(2228,375599197049585664,NULL,'MENU_FIRE_RESCUE_MULTI_MONITOR','zh_CN','消防多机监视',_binary '\0','2023-05-22 02:57:12','1','2023-06-16 09:14:32','1'),(2229,375599197049585664,NULL,'MENU_FIRE_RESCUE_MULTI_MONITOR','zh_TW','消防多機監視',_binary '\0','2023-05-22 02:57:12','1','2023-06-16 09:14:32','1'),(2230,NULL,NULL,'MENU_GEO','zh_CN','地图数据管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2231,NULL,NULL,'MENU_GEO','zh_TW','地圖數據管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2232,NULL,NULL,'MENU_GEO','en_US','Geographic Data Management',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2233,NULL,890,'MENU_GEO_POI','zh_CN','POI管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2234,NULL,890,'MENU_GEO_POI','zh_TW','POI管理',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2235,NULL,890,'MENU_GEO_POI','en_US','POI Management',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2236,NULL,891,'MENU_GEO_POI_TYPE','zh_CN','兴趣点类型',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2237,NULL,891,'MENU_GEO_POI_TYPE','zh_TW','興趣點類型',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2238,NULL,891,'MENU_GEO_POI_TYPE','en_US','POI Type',_binary '\0','2023-06-14 10:06:01','1','2023-06-14 10:18:05','1'),(2239,NULL,892,'ACTION_GEO_POI_TYPE_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:01','1','2024-07-11 05:46:29','416525856201375744'),(2240,NULL,892,'ACTION_GEO_POI_TYPE_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:01','1','2024-07-11 05:46:29','416525856201375744'),(2241,NULL,892,'ACTION_GEO_POI_TYPE_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:01','1','2024-07-11 05:46:29','416525856201375744'),(2242,NULL,892,'ACTION_GEO_POI_TYPE_ADD','zh_CN','新增',_binary '\0','2023-06-14 10:06:02','1','2024-07-11 05:46:44','416525856201375744'),(2243,NULL,892,'ACTION_GEO_POI_TYPE_ADD','zh_TW','新增',_binary '\0','2023-06-14 10:06:02','1','2024-07-11 05:46:44','416525856201375744'),(2244,NULL,892,'ACTION_GEO_POI_TYPE_ADD','en_US','Add',_binary '\0','2023-06-14 10:06:02','1','2024-07-11 05:46:44','416525856201375744'),(2245,NULL,892,'ACTION_GEO_POI_TYPE_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2246,NULL,892,'ACTION_GEO_POI_TYPE_DELETE','zh_TW','刪除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2247,NULL,892,'ACTION_GEO_POI_TYPE_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2248,NULL,891,'MENU_GEO_POI_POINT','zh_CN','兴趣点',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2249,NULL,891,'MENU_GEO_POI_POINT','zh_TW','興趣點',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2250,NULL,891,'MENU_GEO_POI_POINT','en_US','POI',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2251,NULL,896,'ACTION_GEO_POI_POINT_ADD','zh_CN','新增',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2252,NULL,896,'ACTION_GEO_POI_POINT_ADD','zh_TW','新增',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2253,NULL,896,'ACTION_GEO_POI_POINT_ADD','en_US','Add',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2254,NULL,896,'ACTION_GEO_POI_POINT_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2255,NULL,896,'ACTION_GEO_POI_POINT_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2256,NULL,896,'ACTION_GEO_POI_POINT_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:05','1'),(2257,NULL,896,'ACTION_GEO_POI_POINT_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2258,NULL,896,'ACTION_GEO_POI_POINT_DELETE','zh_TW','刪除',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2259,NULL,896,'ACTION_GEO_POI_POINT_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2260,NULL,896,'ACTION_GEO_POI_POINT_PUBLISH','zh_CN','发布',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2261,NULL,896,'ACTION_GEO_POI_POINT_PUBLISH','zh_TW','發佈',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2262,NULL,896,'ACTION_GEO_POI_POINT_PUBLISH','en_US','Publish',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2263,NULL,890,'MENU_GEO_MODEL_2D','zh_CN','二维模型管理',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2264,NULL,890,'MENU_GEO_MODEL_2D','zh_TW','二維模型管理',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2265,NULL,890,'MENU_GEO_MODEL_2D','en_US','2D Model Management',_binary '\0','2023-06-14 10:06:02','1','2023-06-14 10:18:06','1'),(2266,NULL,901,'MENU_GEO_MODEL_2D_ADD','zh_CN','上传文件',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2267,NULL,901,'MENU_GEO_MODEL_2D_ADD','zh_TW','上傳文件',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2268,NULL,901,'MENU_GEO_MODEL_2D_ADD','en_US','Upload',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2269,NULL,901,'MENU_GEO_MODEL_2D_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2270,NULL,901,'MENU_GEO_MODEL_2D_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2271,NULL,901,'MENU_GEO_MODEL_2D_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2272,NULL,901,'ACTION_GEO_MODEL_2D_PUBLISH','zh_CN','图层发布',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2273,NULL,901,'ACTION_GEO_MODEL_2D_PUBLISH','zh_TW','圖層發佈',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2274,NULL,901,'ACTION_GEO_MODEL_2D_PUBLISH','en_US','Publish',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2275,NULL,901,'ACTION_GEO_MODEL_2D_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2276,NULL,901,'ACTION_GEO_MODEL_2D_DELETE','zh_TW','刪除',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2277,NULL,901,'ACTION_GEO_MODEL_2D_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2278,NULL,890,'MENU_GEO_MODEL_3D','zh_CN','三维模型管理',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2279,NULL,890,'MENU_GEO_MODEL_3D','zh_TW','三維模型管理',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2280,NULL,890,'MENU_GEO_MODEL_3D','en_US','3D Model Management',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2281,NULL,906,'MENU_GEO_MODEL_3D_EDIT','zh_CN','编辑',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2282,NULL,906,'MENU_GEO_MODEL_3D_EDIT','zh_TW','編輯',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2283,NULL,906,'MENU_GEO_MODEL_3D_EDIT','en_US','Edit',_binary '\0','2023-06-14 10:06:03','1','2023-06-14 10:18:06','1'),(2284,NULL,906,'MENU_GEO_MODEL_3D_ADD','zh_CN','上传文件',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2285,NULL,906,'MENU_GEO_MODEL_3D_ADD','zh_TW','上傳文件',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2286,NULL,906,'MENU_GEO_MODEL_3D_ADD','en_US','Upload',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2287,NULL,906,'ACTION_GEO_MODEL_3D_PUBLISH','zh_CN','图层发布',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2288,NULL,906,'ACTION_GEO_MODEL_3D_PUBLISH','zh_TW','圖層發佈',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2289,NULL,906,'ACTION_GEO_MODEL_3D_PUBLISH','en_US','Publish',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2290,NULL,906,'ACTION_GEO_MODEL_3D_DELETE','zh_CN','删除',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2291,NULL,906,'ACTION_GEO_MODEL_3D_DELETE','zh_TW','删除',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2292,NULL,906,'ACTION_GEO_MODEL_3D_DELETE','en_US','Delete',_binary '\0','2023-06-14 10:06:04','1','2023-06-14 10:18:06','1'),(2293,NULL,890,'MENU_GEO_RETURN_IMG','zh_CN','回传影像管理',_binary '\0','2023-06-14 10:06:04','1','2023-06-20 06:37:26','188243415207510016'),(2294,NULL,890,'MENU_GEO_RETURN_IMG','zh_TW','回傳影像管理',_binary '\0','2023-06-14 10:06:04','1','2023-06-20 06:37:26','188243415207510016'),(2295,NULL,890,'MENU_GEO_RETURN_IMG','en_US','Retrieving image',_binary '\0','2023-06-14 10:06:04','1','2023-06-20 06:37:26','188243415207510016'),(2296,NULL,890,'MENU_GEO_PANORAMIC_IMG','zh_CN','全景照片管理',_binary '\0','2023-06-14 10:06:04','1','2023-09-28 05:47:59','188243415207510016'),(2297,NULL,890,'MENU_GEO_PANORAMIC_IMG','zh_TW','全景照片管理',_binary '\0','2023-06-14 10:06:04','1','2023-09-28 05:47:59','188243415207510016'),(2298,NULL,890,'MENU_GEO_PANORAMIC_IMG','en_US','Panoramic image',_binary '\0','2023-06-14 10:06:04','1','2023-09-28 05:47:59','188243415207510016'),(2299,NULL,NULL,'MENU_POI_BAK','zh_CN','地图服务',_binary '\0','2023-06-14 10:07:58','188243415207510016',NULL,NULL),(2300,NULL,NULL,'MENU_POI_BAK','zh_TW','地圖服務',_binary '\0','2023-06-14 10:07:58','188243415207510016',NULL,NULL),(2301,NULL,NULL,'MENU_POI_BAK','en_US','Map Service',_binary '\0','2023-06-14 10:07:58','188243415207510016',NULL,NULL),(2302,NULL,NULL,'MENU_ACHIEVEMENT_BAK','zh_CN','成果展示',_binary '\0','2023-06-15 06:54:21','188243415207510016',NULL,NULL),(2303,NULL,NULL,'MENU_ACHIEVEMENT_BAK','zh_TW','成果展示',_binary '\0','2023-06-15 06:54:21','188243415207510016',NULL,NULL),(2304,NULL,NULL,'MENU_ACHIEVEMENT_BAK','en_US','Achievement display',_binary '\0','2023-06-15 06:54:21','188243415207510016',NULL,NULL),(2305,NULL,NULL,'MENU_COMMON_TOOL','zh_CN','通用模块工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2306,NULL,NULL,'MENU_COMMON_TOOL','zh_TW','通用模塊工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2307,NULL,NULL,'MENU_COMMON_TOOL','en_US','commonTool',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2308,NULL,913,'MENU_GEO_LAYER','zh_CN','图层',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2309,NULL,913,'MENU_GEO_LAYER','zh_TW','圖層',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2310,NULL,913,'MENU_GEO_LAYER','en_US','GeoLayer',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2311,NULL,914,'ACTION_GEO_LAYER_2D','zh_CN','二维图层',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2312,NULL,914,'ACTION_GEO_LAYER_2D','zh_TW','二維圖層',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2313,NULL,914,'ACTION_GEO_LAYER_2D','en_US','geoLayer2d',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2314,NULL,914,'ACTION_GEO_LAYER_3D','zh_CN','三维图层',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2315,NULL,914,'ACTION_GEO_LAYER_3D','zh_TW','三維圖層',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2316,NULL,914,'ACTION_GEO_LAYER_3D','en_US','GeoLayer3d',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2317,NULL,914,'ACTION_GEO_LAYER_POI','zh_CN','POI管理',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2318,NULL,914,'ACTION_GEO_LAYER_POI','zh_TW','POI管理',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2319,NULL,914,'ACTION_GEO_LAYER_POI','en_US','geoLayerPoi',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2320,NULL,913,'MENU_AIRSPACE_TOOLS','zh_CN','空域管理工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2321,NULL,913,'MENU_AIRSPACE_TOOLS','zh_TW','空域管理工具',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2322,NULL,913,'MENU_AIRSPACE_TOOLS','en_US','airspaceTools',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2323,NULL,913,'MENU_COMPARE','zh_CN','对比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2324,NULL,913,'MENU_COMPARE','zh_TW','對比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2325,NULL,913,'MENU_COMPARE','en_US','compare',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2326,NULL,919,'ACTION_COMPARE_ROLL','zh_CN','卷帘对比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2327,NULL,919,'ACTION_COMPARE_ROLL','zh_TW','卷簾對比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2328,NULL,919,'ACTION_COMPARE_ROLL','en_US','comareRoll',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2329,NULL,919,'ACTION_COMPARE_SPLIT','zh_CN','分屏对比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2330,NULL,919,'ACTION_COMPARE_SPLIT','zh_TW','分屏對比',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2331,NULL,919,'ACTION_COMPARE_SPLIT','en_US','compareSplit',_binary '\0','2023-06-16 09:16:28','1',NULL,NULL),(2332,NULL,393,'MENU_ZIGONG_SCREEN_BAK','zh_CN','自贡应急管理大屏',_binary '\0','2023-06-27 08:33:59','188243415207510016',NULL,NULL),(2333,NULL,393,'MENU_ZIGONG_SCREEN_BAK','zh_TW','自貢應急管理大屏',_binary '\0','2023-06-27 08:33:59','188243415207510016',NULL,NULL),(2334,NULL,393,'MENU_ZIGONG_SCREEN_BAK','en_US','Zigong Emergency Screen',_binary '\0','2023-06-27 08:33:59','188243415207510016',NULL,NULL),(2386,NULL,NULL,'MENU_BASESTATION_MANAGEMENT','zh_CN','基站信息维护',_binary '\0','2023-08-07 07:24:42','89730635001757696','2023-08-07 07:49:51','89730635001757696'),(2387,NULL,NULL,'MENU_BASESTATION_MANAGEMENT','zh_TW','基站信息维护',_binary '\0','2023-08-07 07:24:42','89730635001757696','2023-08-07 07:49:51','89730635001757696'),(2388,NULL,NULL,'MENU_BASESTATION_MANAGEMENT','en_US','基站信息维护',_binary '\0','2023-08-07 07:24:42','89730635001757696','2023-08-07 07:49:51','89730635001757696'),(2389,NULL,939,'MENU_BASESTATION_SEARCH','zh_CN','基站信息查询',_binary '\0','2023-08-07 07:25:19','89730635001757696','2023-08-07 07:50:02','89730635001757696'),(2390,NULL,939,'MENU_BASESTATION_SEARCH','zh_TW','基站信息查询',_binary '\0','2023-08-07 07:25:19','89730635001757696','2023-08-07 07:50:02','89730635001757696'),(2391,NULL,939,'MENU_BASESTATION_SEARCH','en_US','基站信息查询',_binary '\0','2023-08-07 07:25:19','89730635001757696','2023-08-07 07:50:02','89730635001757696'),(2392,NULL,939,'MENU_BASESTATION_IMPORT','zh_CN','基站信息导入',_binary '\0','2023-08-07 07:26:12','89730635001757696','2023-08-07 07:50:13','89730635001757696'),(2393,NULL,939,'MENU_BASESTATION_IMPORT','zh_TW','基站信息导入',_binary '\0','2023-08-07 07:26:12','89730635001757696','2023-08-07 07:50:13','89730635001757696'),(2394,NULL,939,'MENU_BASESTATION_IMPORT','en_US','基站信息导入',_binary '\0','2023-08-07 07:26:12','89730635001757696','2023-08-07 07:50:13','89730635001757696'),(2395,NULL,939,'MENU_BASESTATION_EDIT','zh_CN','编辑基站信息',_binary '\0','2023-08-07 07:37:32','89730635001757696','2023-08-07 07:50:23','89730635001757696'),(2396,NULL,939,'MENU_BASESTATION_EDIT','zh_TW','编辑基站信息',_binary '\0','2023-08-07 07:37:32','89730635001757696','2023-08-07 07:50:23','89730635001757696'),(2397,NULL,939,'MENU_BASESTATION_EDIT','en_US','编辑基站信息',_binary '\0','2023-08-07 07:37:32','89730635001757696','2023-08-07 07:50:23','89730635001757696'),(2398,NULL,939,'MENU_BASESTATION_ADD','zh_CN','新增基站信息',_binary '\0','2023-08-07 07:38:32','89730635001757696','2023-08-07 07:56:41','89730635001757696'),(2399,NULL,939,'MENU_BASESTATION_ADD','zh_TW','新增基站信息',_binary '\0','2023-08-07 07:38:32','89730635001757696','2023-08-07 07:56:41','89730635001757696'),(2400,NULL,939,'MENU_BASESTATION_ADD','en_US','新增基站信息',_binary '\0','2023-08-07 07:38:32','89730635001757696','2023-08-07 07:56:41','89730635001757696'),(2401,NULL,939,'MENU_BASESTATION_DETAIL','zh_CN','查看基站详情',_binary '\0','2023-08-07 07:38:56','89730635001757696','2023-08-07 07:56:58','89730635001757696'),(2402,NULL,939,'MENU_BASESTATION_DETAIL','zh_TW','查看基站详情',_binary '\0','2023-08-07 07:38:56','89730635001757696','2023-08-07 07:56:58','89730635001757696'),(2403,NULL,939,'MENU_BASESTATION_DETAIL','en_US','查看基站详情',_binary '\0','2023-08-07 07:38:56','89730635001757696','2023-08-07 07:56:58','89730635001757696'),(2404,NULL,NULL,'MENU_PERSONNELINFO_MANAGEMENT','zh_CN','人员信息管理',_binary '\0','2023-08-07 07:41:41','89730635001757696','2023-08-07 07:57:08','89730635001757696'),(2405,NULL,NULL,'MENU_PERSONNELINFO_MANAGEMENT','zh_TW','人员信息管理',_binary '\0','2023-08-07 07:41:41','89730635001757696','2023-08-07 07:57:08','89730635001757696'),(2406,NULL,NULL,'MENU_PERSONNELINFO_MANAGEMENT','en_US','人员信息管理',_binary '\0','2023-08-07 07:41:41','89730635001757696','2023-08-07 07:57:08','89730635001757696'),(2407,NULL,945,'MENU_PERSONNELINFO_IMPORT','zh_CN','用户信息导入',_binary '\0','2023-08-07 07:42:31','89730635001757696','2023-08-07 07:57:18','89730635001757696'),(2408,NULL,945,'MENU_PERSONNELINFO_IMPORT','zh_TW','用户信息导入',_binary '\0','2023-08-07 07:42:31','89730635001757696','2023-08-07 07:57:18','89730635001757696'),(2409,NULL,945,'MENU_PERSONNELINFO_IMPORT','en_US','用户信息导入',_binary '\0','2023-08-07 07:42:31','89730635001757696','2023-08-07 07:57:18','89730635001757696'),(2410,NULL,NULL,'MENU_QUALITYCONTROL_MANAGEMENT','zh_CN','质检任务管理',_binary '\0','2023-08-07 07:43:20','89730635001757696',NULL,NULL),(2411,NULL,NULL,'MENU_QUALITYCONTROL_MANAGEMENT','zh_TW','质检任务管理',_binary '\0','2023-08-07 07:43:20','89730635001757696',NULL,NULL),(2412,NULL,NULL,'MENU_QUALITYCONTROL_MANAGEMENT','en_US','质检任务管理',_binary '\0','2023-08-07 07:43:20','89730635001757696',NULL,NULL),(2413,NULL,947,'MENU_QUALITYCONTROL_CREATE','zh_CN','创建质检工单',_binary '\0','2023-08-07 07:44:16','89730635001757696','2024-03-01 06:43:39','89730635001757696'),(2414,NULL,947,'MENU_QUALITYCONTROL_CREATE','zh_TW','创建质检工单',_binary '\0','2023-08-07 07:44:16','89730635001757696','2024-03-01 06:43:39','89730635001757696'),(2415,NULL,947,'MENU_QUALITYCONTROL_CREATE','en_US','创建质检工单',_binary '\0','2023-08-07 07:44:16','89730635001757696','2024-03-01 06:43:39','89730635001757696'),(2416,NULL,947,'MENU_QUALITYCONTROL_DETAIL','zh_CN','查看质检详情',_binary '\0','2023-08-07 07:47:13','89730635001757696',NULL,NULL),(2417,NULL,947,'MENU_QUALITYCONTROL_DETAIL','zh_TW','查看质检详情',_binary '\0','2023-08-07 07:47:13','89730635001757696',NULL,NULL),(2418,NULL,947,'MENU_QUALITYCONTROL_DETAIL','en_US','查看质检详情',_binary '\0','2023-08-07 07:47:13','89730635001757696',NULL,NULL),(2419,403580659618807808,NULL,'MENU_HEILONGJIANGTIETA','zh_CN','test',_binary '\0','2023-08-07 08:07:29','89730635001757696',NULL,NULL),(2420,403580659618807808,NULL,'MENU_HEILONGJIANGTIETA','zh_TW','test',_binary '\0','2023-08-07 08:07:29','89730635001757696',NULL,NULL),(2421,403580659618807808,NULL,'MENU_HEILONGJIANGTIETA','en_US','test',_binary '\0','2023-08-07 08:07:29','89730635001757696',NULL,NULL),(2422,NULL,595,'ACTION_YAW_WARNING','zh_CN','偏航预警',_binary '\0','2023-08-28 05:57:06','188243415207510016','2023-09-18 06:34:22','188243415207510016'),(2423,NULL,595,'ACTION_YAW_WARNING','zh_TW','偏航預警',_binary '\0','2023-08-28 05:57:06','188243415207510016','2023-09-18 06:34:22','188243415207510016'),(2424,NULL,595,'ACTION_YAW_WARNING','en_US','Yaw warning',_binary '\0','2023-08-28 05:57:06','188243415207510016','2023-09-18 06:34:22','188243415207510016'),(2425,NULL,358,'ACTION_MULTIMONITOR_MODEL_LAYER','zh_CN','图层',_binary '\0','2023-09-12 01:19:30','1',NULL,NULL),(2426,NULL,358,'ACTION_MULTIMONITOR_MODEL_LAYER','zh_TW','圖層',_binary '\0','2023-09-12 01:19:30','1',NULL,NULL),(2427,NULL,358,'ACTION_MULTIMONITOR_MODEL_LAYER','en_US','Model layer',_binary '\0','2023-09-12 01:19:30','1',NULL,NULL),(2428,NULL,587,'MENU_GAS_BPERM','zh_CN','气体检测仪',_binary '\0','2023-09-12 01:19:31','1','2023-11-29 09:46:32','1'),(2429,NULL,587,'MENU_GAS_BPERM','zh_TW','氣體檢測儀',_binary '\0','2023-09-12 01:19:31','1','2023-11-29 09:46:32','1'),(2430,NULL,587,'MENU_GAS_BPERM','en_US','Gas',_binary '\0','2023-09-12 01:19:31','1','2024-02-22 08:23:55','1'),(2431,NULL,595,'MENU_AI_CROWD','zh_CN','人群密集检测',_binary '\0','2023-09-12 01:19:32','1','2023-12-19 07:44:08','89730635001757696'),(2432,NULL,595,'MENU_AI_CROWD','zh_TW','人群密集檢測',_binary '\0','2023-09-12 01:19:32','1','2023-12-19 07:44:08','89730635001757696'),(2433,NULL,595,'MENU_AI_CROWD','en_US','Crowd density',_binary '\0','2023-09-12 01:19:32','1','2023-12-19 07:44:08','89730635001757696'),(2434,NULL,595,'MENU_AI_HIGHWAY','zh_CN','高速路检测',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2435,NULL,595,'MENU_AI_HIGHWAY','zh_TW','高速路檢測',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2436,NULL,595,'MENU_AI_HIGHWAY','en_US','Highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2437,NULL,955,'ACTION_AI_HIGHWAY_OBSTACLES','zh_CN','高速路障碍物检测',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2438,NULL,955,'ACTION_AI_HIGHWAY_OBSTACLES','zh_TW','高速路障礙物檢測',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2439,NULL,955,'ACTION_AI_HIGHWAY_OBSTACLES','en_US','Obstacles on highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2440,NULL,955,'ACTION_AI_HIGHWAY_PEDESTRIANS','zh_CN','高速路行人检测',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2441,NULL,955,'ACTION_AI_HIGHWAY_PEDESTRIANS','zh_TW','高速路行人檢測',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2442,NULL,955,'ACTION_AI_HIGHWAY_PEDESTRIANS','en_US','Pedestrians on highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2443,NULL,955,'ACTION_AI_HIGHWAY_CONGESTION','zh_CN','高速路车辆拥挤度识别',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2444,NULL,955,'ACTION_AI_HIGHWAY_CONGESTION','zh_TW','高速路車輛擁擠度識別',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2445,NULL,955,'ACTION_AI_HIGHWAY_CONGESTION','en_US','Congestion of vehicles on highways',_binary '\0','2023-09-12 01:19:32','1',NULL,NULL),(2446,NULL,372,'ACTION_process-delete','zh_CN','删除审批流程',_binary '\0','2023-09-27 10:02:57','1',NULL,NULL),(2447,NULL,372,'ACTION_process-delete','zh_TW','删除审批流程',_binary '\0','2023-09-27 10:02:57','1',NULL,NULL),(2448,NULL,372,'ACTION_process-delete','en_US','删除审批流程',_binary '\0','2023-09-27 10:02:57','1',NULL,NULL),(2452,439357001011167232,NULL,'MENU_THREED_SIMULATION','zh_CN','数据管理',_binary '\0','2023-11-14 08:03:06','188243415207510016','2023-11-14 08:42:43','188243415207510016'),(2453,439357001011167232,NULL,'MENU_THREED_SIMULATION','zh_TW','數據管理',_binary '\0','2023-11-14 08:03:06','188243415207510016','2023-11-14 08:42:43','188243415207510016'),(2454,439357001011167232,NULL,'MENU_THREED_SIMULATION','en_US','Data manage',_binary '\0','2023-11-14 08:03:06','188243415207510016','2023-11-14 08:42:43','188243415207510016'),(2455,NULL,358,'ACTION_FLIGHTMONITOR_USERGUIDE','zh_CN','单机监视新手引导',_binary '\0','2023-11-29 09:46:31','1','2024-02-22 08:23:56','1'),(2456,NULL,358,'ACTION_FLIGHTMONITOR_USERGUIDE','zh_TW','單機監視新手引導',_binary '\0','2023-11-29 09:46:31','1','2024-02-22 08:23:56','1'),(2457,NULL,358,'ACTION_FLIGHTMONITOR_USERGUIDE','en_US','Guidance',_binary '\0','2023-11-29 09:46:31','1','2024-02-22 08:23:56','1'),(2458,NULL,953,'ACTION_GAS_PIC_SET','zh_CN','问题标注功能',_binary '\0','2023-11-29 09:46:32','1','2024-02-22 08:23:55','1'),(2459,NULL,953,'ACTION_GAS_PIC_SET','zh_TW','問題標註功能',_binary '\0','2023-11-29 09:46:32','1','2024-02-22 08:23:55','1'),(2460,NULL,953,'ACTION_GAS_PIC_SET','en_US','Problem annotation function',_binary '\0','2023-11-29 09:46:32','1','2024-02-22 08:23:55','1'),(2461,NULL,358,'ACTION_UAV_NETWORKLINK_BPERM','zh_CN','网络链路',_binary '\0','2024-02-22 08:23:56','1','2024-02-23 01:17:12','1'),(2462,NULL,358,'ACTION_UAV_NETWORKLINK_BPERM','zh_TW','網絡連結',_binary '\0','2024-02-22 08:23:56','1','2024-02-23 01:17:12','1'),(2463,NULL,358,'ACTION_UAV_NETWORKLINK_BPERM','en_US','Network link',_binary '\0','2024-02-22 08:23:56','1','2024-02-23 01:17:12','1'),(2464,NULL,595,'MENU_AI_PEO_VEH','zh_CN','人车识别',_binary '\0','2024-02-23 01:57:25','1',NULL,NULL),(2465,NULL,595,'MENU_AI_PEO_VEH','zh_TW','人車識別',_binary '\0','2024-02-23 01:57:25','1',NULL,NULL),(2466,NULL,595,'MENU_AI_PEO_VEH','en_US','People vehicle detection',_binary '\0','2024-02-23 01:57:25','1',NULL,NULL),(2467,257530550208692224,NULL,'MENU_COMMUNICATION_DECISION','en_US','Command decisions',_binary '\0','2024-04-01 06:25:37','1','2024-04-01 06:42:09','1'),(2468,257530550208692224,NULL,'MENU_COMMUNICATION_DECISION','zh_CN','通信覆盖参数配置',_binary '\0','2024-04-01 06:25:37','1','2024-04-01 06:42:09','1'),(2469,257530550208692224,NULL,'MENU_COMMUNICATION_DECISION','zh_TW','通信覆盖参数配置',_binary '\0','2024-04-01 06:25:37','1','2024-04-01 06:42:09','1'),(2479,51694103410245632,NULL,'MENU_SECURITY_DETECTION','zh_CN','探测反制',_binary '\0','2024-05-29 02:31:11','89730635001757696','2024-07-03 08:08:25','1'),(2480,51694103410245632,NULL,'MENU_SECURITY_DETECTION','zh_TW','探測反制',_binary '\0','2024-05-29 02:31:11','89730635001757696','2024-07-03 08:08:25','1'),(2481,51694103410245632,NULL,'MENU_SECURITY_DETECTION','en_US','Detection counter',_binary '\0','2024-05-29 02:31:11','89730635001757696','2024-07-03 08:08:25','1'),(2482,NULL,595,'MENU_AI_COMPASS','zh_CN','周界入侵告警',_binary '\0','2024-06-14 08:41:59','89730635001757696','2024-06-14 09:20:45','89730635001757696'),(2483,NULL,595,'MENU_AI_COMPASS','zh_TW','周界入侵告警',_binary '\0','2024-06-14 08:41:59','89730635001757696','2024-06-14 09:20:45','89730635001757696'),(2484,NULL,595,'MENU_AI_COMPASS','en_US','Surrounding intrusion alarm',_binary '\0','2024-06-14 08:41:59','89730635001757696','2024-06-14 09:20:45','89730635001757696'),(2506,NULL,595,'MENU_AI_CAR_FOLLOW','zh_CN','车辆跟踪',_binary '\0','2024-06-21 08:35:59','1','2024-07-05 01:25:34','89730635001757696'),(2507,NULL,595,'MENU_AI_CAR_FOLLOW','zh_TW','車輛跟踪',_binary '\0','2024-06-21 08:35:59','1','2024-07-05 01:25:34','89730635001757696'),(2508,NULL,595,'MENU_AI_CAR_FOLLOW','en_US','Vehicle tracking',_binary '\0','2024-06-21 08:35:59','1','2024-07-05 01:25:34','89730635001757696'),(2509,NULL,595,'MENU_AI_UAV','zh_CN','空中目标检测',_binary '\0','2024-06-21 08:37:10','1',NULL,NULL),(2510,NULL,595,'MENU_AI_UAV','zh_TW','空中目標检测',_binary '\0','2024-06-21 08:37:10','1',NULL,NULL),(2511,NULL,595,'MENU_AI_UAV','en_US','Air target detection',_binary '\0','2024-06-21 08:37:10','1',NULL,NULL),(2512,NULL,595,'MENU_AI_INFRARED','zh_CN','红外行人检测',_binary '\0','2024-06-21 08:37:32','1',NULL,NULL),(2513,NULL,595,'MENU_AI_INFRARED','zh_TW','紅外行人檢測',_binary '\0','2024-06-21 08:37:32','1',NULL,NULL),(2514,NULL,595,'MENU_AI_INFRARED','en_US','Infrared pedestrian',_binary '\0','2024-06-21 08:37:32','1',NULL,NULL),(2515,NULL,595,'MENU_AI_SEA_HUMAN','zh_CN','海上人员救援',_binary '\0','2024-06-21 08:37:53','1',NULL,NULL),(2516,NULL,595,'MENU_AI_SEA_HUMAN','zh_TW','海上人員救援',_binary '\0','2024-06-21 08:37:53','1',NULL,NULL),(2517,NULL,595,'MENU_AI_SEA_HUMAN','en_US','Rescue of people at sea',_binary '\0','2024-06-21 08:37:53','1',NULL,NULL),(2518,NULL,595,'MENU_AI_SEA_BOAT','zh_CN','船只检测',_binary '\0','2024-06-21 08:38:12','1',NULL,NULL),(2519,NULL,595,'MENU_AI_SEA_BOAT','zh_TW','船隻檢測',_binary '\0','2024-06-21 08:38:12','1',NULL,NULL),(2520,NULL,595,'MENU_AI_SEA_BOAT','en_US','Ship detection',_binary '\0','2024-06-21 08:38:12','1',NULL,NULL),(2521,NULL,NULL,'MENU_STORAGE','zh_CN','存储空间管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2522,NULL,NULL,'MENU_STORAGE','zh_TW','存储空间管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2523,NULL,NULL,'MENU_STORAGE','en_US','存储空间管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2524,NULL,987,'MENU_STORAGE_INDEX','zh_CN','概览',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2525,NULL,987,'MENU_STORAGE_INDEX','zh_TW','概览',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2526,NULL,987,'MENU_STORAGE_INDEX','en_US','概览',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2527,NULL,987,'MENU_STORAGE_VIDEO','zh_CN','视频文件管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2528,NULL,987,'MENU_STORAGE_VIDEO','zh_TW','视频文件管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2529,NULL,987,'MENU_STORAGE_VIDEO','en_US','视频文件管理',_binary '\0','2024-07-18 09:27:06','1',NULL,NULL),(2530,NULL,987,'MENU_STORAGE_IMG','zh_CN','图片文件管理',_binary '\0','2024-07-18 09:27:07','1',NULL,NULL),(2531,NULL,987,'MENU_STORAGE_IMG','zh_TW','图片文件管理',_binary '\0','2024-07-18 09:27:07','1',NULL,NULL),(2532,NULL,987,'MENU_STORAGE_IMG','en_US','图片文件管理',_binary '\0','2024-07-18 09:27:07','1',NULL,NULL),(2533,NULL,987,'MENU_STORAGE_MODEL','zh_CN','模型数据文件管理',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2534,NULL,987,'MENU_STORAGE_MODEL','zh_TW','模型数据文件管理',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2535,NULL,987,'MENU_STORAGE_MODEL','en_US','模型数据文件管理',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2536,NULL,987,'MENU_STORAGE_SETTING','zh_CN','存储设置',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2537,NULL,987,'MENU_STORAGE_SETTING','zh_TW','存储设置',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2538,NULL,987,'MENU_STORAGE_SETTING','en_US','存储设置',_binary '\0','2024-07-18 09:27:08','1',NULL,NULL),(2539,389735663221211136,NULL,'MENU_5G_A','en_US','5GA低空监管系统',_binary '\0','2024-07-18 09:31:14','1',NULL,NULL),(2540,389735663221211136,NULL,'MENU_5G_A','zh_CN','5GA低空监管系统',_binary '\0','2024-07-18 09:31:14','1',NULL,NULL),(2541,389735663221211136,NULL,'MENU_5G_A','zh_TW','5GA低空监管系统',_binary '\0','2024-07-18 09:31:14','1',NULL,NULL),(2542,389735663221211136,993,'MENU_5G_A_FLIGHT_SERVICES','en_US','飞行服务',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2543,389735663221211136,993,'MENU_5G_A_FLIGHT_SERVICES','zh_CN','飞行服务',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2544,389735663221211136,993,'MENU_5G_A_FLIGHT_SERVICES','zh_TW','飞行服务',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2545,389735663221211136,993,'MENU_5G_A_PERMISSIONS','en_US','功能权限',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2546,389735663221211136,993,'MENU_5G_A_PERMISSIONS','zh_CN','功能权限',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2547,389735663221211136,993,'MENU_5G_A_PERMISSIONS','zh_TW','功能权限',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2548,389735663221211136,995,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD','en_US','数据下载',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2549,389735663221211136,995,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD','zh_CN','数据下载',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2550,389735663221211136,995,'ACTION_5G_A_DETECTION_REPLAY_DOWNLOAD','zh_TW','数据下载',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2551,389735663221211136,995,'MENU_5G_A_FLIGHT_STATION_COUNT','en_US','基站统计',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2552,389735663221211136,995,'MENU_5G_A_FLIGHT_STATION_COUNT','zh_CN','基站统计',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2553,389735663221211136,995,'MENU_5G_A_FLIGHT_STATION_COUNT','zh_TW','基站统计',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2554,389735663221211136,995,'ACTION_5G_A_DETECTION_TRACK','en_US','雷视联动',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2555,389735663221211136,995,'ACTION_5G_A_DETECTION_TRACK','zh_CN','雷视联动',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2556,389735663221211136,995,'ACTION_5G_A_DETECTION_TRACK','zh_TW','雷视联动',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2557,389735663221211136,995,'ACTION_5G_A_DETECTION_TOOL_WEATHER','en_US','降水量',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2558,389735663221211136,995,'ACTION_5G_A_DETECTION_TOOL_WEATHER','zh_CN','降水量',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2559,389735663221211136,995,'ACTION_5G_A_DETECTION_TOOL_WEATHER','zh_TW','降水量',_binary '\0','2024-07-18 09:31:15','1',NULL,NULL),(2560,389735663221211136,993,'MENU_5G_A_DETECTION','en_US','低空探测',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2561,389735663221211136,993,'MENU_5G_A_DETECTION','zh_CN','低空探测',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2562,389735663221211136,993,'MENU_5G_A_DETECTION','zh_TW','低空探测',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2563,389735663221211136,1000,'MENU_5G_A_DETECTION_ANALYSE','en_US','精度分析',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2564,389735663221211136,1000,'MENU_5G_A_DETECTION_ANALYSE','zh_CN','精度分析',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2565,389735663221211136,1000,'MENU_5G_A_DETECTION_ANALYSE','zh_TW','精度分析',_binary '\0','2024-07-18 09:31:16','1',NULL,NULL),(2566,389735663221211136,1000,'MENU_5G_A_DETECTION_ALARM','en_US','告警记录',_binary '\0','2024-07-18 09:31:17','1',NULL,NULL),(2567,389735663221211136,1000,'MENU_5G_A_DETECTION_ALARM','zh_CN','告警记录',_binary '\0','2024-07-18 09:31:17','1',NULL,NULL),(2568,389735663221211136,1000,'MENU_5G_A_DETECTION_ALARM','zh_TW','告警记录',_binary '\0','2024-07-18 09:31:17','1',NULL,NULL),(2569,389735663221211136,1000,'MENU_5G_A_DETECTION_HOME','en_US','首页',_binary '\0','2024-07-18 09:31:17','1','2024-07-23 03:11:19','89730635001757696'),(2570,389735663221211136,1000,'MENU_5G_A_DETECTION_HOME','zh_CN','首页',_binary '\0','2024-07-18 09:31:17','1','2024-07-23 03:11:19','89730635001757696'),(2571,389735663221211136,1000,'MENU_5G_A_DETECTION_HOME','zh_TW','首页',_binary '\0','2024-07-18 09:31:17','1','2024-07-23 03:11:19','89730635001757696'),(2572,389735663221211136,1000,'MENU_5G_A_DETECTION_REPLAY','en_US','数据回放',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2573,389735663221211136,1000,'MENU_5G_A_DETECTION_REPLAY','zh_CN','数据回放',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2574,389735663221211136,1000,'MENU_5G_A_DETECTION_REPLAY','zh_TW','数据回放',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2575,389735663221211136,993,'MENU_5G_A_SETTING','en_US','配置管理',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2576,389735663221211136,993,'MENU_5G_A_SETTING','zh_CN','配置管理',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2577,389735663221211136,993,'MENU_5G_A_SETTING','zh_TW','配置管理',_binary '\0','2024-07-18 09:31:18','1',NULL,NULL),(2578,389735663221211136,1005,'MENU_5G_A_SETTING_REGION_PLAN','en_US','区域规划',_binary '\0','2024-07-18 09:31:18','1','2024-07-19 02:31:22','188243415207510016'),(2579,389735663221211136,1005,'MENU_5G_A_SETTING_REGION_PLAN','zh_CN','区域规划',_binary '\0','2024-07-18 09:31:18','1','2024-07-19 02:31:22','188243415207510016'),(2580,389735663221211136,1005,'MENU_5G_A_SETTING_REGION_PLAN','zh_TW','区域规划',_binary '\0','2024-07-18 09:31:18','1','2024-07-19 02:31:22','188243415207510016'),(2581,389735663221211136,1005,'MENU_5G_A_SETTING_DEVICE','en_US','设备管理',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2582,389735663221211136,1005,'MENU_5G_A_SETTING_DEVICE','zh_CN','设备管理',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2583,389735663221211136,1005,'MENU_5G_A_SETTING_DEVICE','zh_TW','设备管理',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2584,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL','en_US','基站详情',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2585,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL','zh_CN','基站详情',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2586,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_STATION_DETAIL','zh_TW','基站详情',_binary '\0','2024-07-18 09:31:19','1',NULL,NULL),(2587,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL','en_US','摄像头详情',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2588,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL','zh_CN','摄像头详情',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2589,389735663221211136,1007,'MENU_5G_A_SETTING_DEVICE_CAMERA_DETAIL','zh_TW','摄像头详情',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2590,389735663221211136,1005,'MENU_5G_A_SETTING_STORY','en_US','故事管理',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2591,389735663221211136,1005,'MENU_5G_A_SETTING_STORY','zh_CN','故事管理',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2592,389735663221211136,1005,'MENU_5G_A_SETTING_STORY','zh_TW','故事管理',_binary '\0','2024-07-18 09:31:20','1',NULL,NULL),(2593,389735663221211136,993,'MENU_5G_A_MONITOR','en_US','运行监视',_binary '\0','2024-07-18 09:31:20','1','2024-09-12 02:46:10','188243415207510016'),(2594,389735663221211136,993,'MENU_5G_A_MONITOR','zh_CN','运行监视',_binary '\0','2024-07-18 09:31:20','1','2024-09-12 02:46:10','188243415207510016'),(2595,389735663221211136,993,'MENU_5G_A_MONITOR','zh_TW','运行监视',_binary '\0','2024-07-18 09:31:20','1','2024-09-12 02:46:10','188243415207510016'),(2596,NULL,125,'ACTION_AIRLINE_TRANSLATION','zh_CN','航线平移旋转',_binary '\0','2024-08-22 02:06:19','89730635001757696','2024-08-23 02:07:01','1'),(2597,NULL,125,'ACTION_AIRLINE_TRANSLATION','zh_TW','航線平移旋轉',_binary '\0','2024-08-22 02:06:19','89730635001757696','2024-08-23 02:07:01','1'),(2598,NULL,125,'ACTION_AIRLINE_TRANSLATION','en_US','Flight translation and rotation',_binary '\0','2024-08-22 02:06:19','89730635001757696','2024-08-23 02:07:01','1'),(2599,NULL,358,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD','zh_CN','pilot上云',_binary '\0','2024-08-22 02:13:09','188243415207510016','2024-09-23 05:56:08','188243415207510016'),(2600,NULL,358,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD','zh_TW','pilot上雲',_binary '\0','2024-08-22 02:13:09','188243415207510016','2024-09-23 05:56:08','188243415207510016'),(2601,NULL,358,'MENU_FLIGHTMONITOR_PILOT_TO_CLOUD','en_US','Pilot to cloud',_binary '\0','2024-08-22 02:13:09','188243415207510016','2024-09-23 05:56:08','188243415207510016'),(2602,51693429796634624,NULL,'MENU_TRAFFIC_AIRPORT_SCREEN','en_US','智慧机场',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2603,51693429796634624,NULL,'MENU_TRAFFIC_AIRPORT_SCREEN','zh_CN','智慧机场',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2604,51693429796634624,NULL,'MENU_TRAFFIC_AIRPORT_SCREEN','zh_TW','智慧机场',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2605,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_SCREEN','en_US','高速巡检',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2606,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_SCREEN','zh_CN','高速巡检',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2607,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_SCREEN','zh_TW','高速巡检',_binary '\0','2024-08-23 02:32:34','1',NULL,NULL),(2608,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE','en_US','高速巡检素材库',_binary '\0','2024-08-23 02:32:35','1',NULL,NULL),(2609,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE','zh_CN','高速巡检素材库',_binary '\0','2024-08-23 02:32:35','1',NULL,NULL),(2610,51693429796634624,NULL,'MENU_TRAFFIC_HIGHSPEED_WAREHOUSE','zh_TW','高速巡检素材库',_binary '\0','2024-08-23 02:32:35','1',NULL,NULL),(2611,389735663221211136,1005,'MENU_5G_A_SETTING_PERCEPTTASK','zh_CN','感知任务管理',_binary '\0','2024-08-27 01:56:07','89730635001757696',NULL,NULL),(2612,389735663221211136,1005,'MENU_5G_A_SETTING_PERCEPTTASK','zh_TW','感知任务管理',_binary '\0','2024-08-27 01:56:07','89730635001757696',NULL,NULL),(2613,389735663221211136,1005,'MENU_5G_A_SETTING_PERCEPTTASK','en_US','感知任务管理',_binary '\0','2024-08-27 01:56:07','89730635001757696',NULL,NULL),(2614,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE','zh_CN','SF创建',_binary '\0','2024-08-27 01:57:12','89730635001757696',NULL,NULL),(2615,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE','zh_TW','SF创建',_binary '\0','2024-08-27 01:57:12','89730635001757696',NULL,NULL),(2616,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_CREATE','en_US','SF创建',_binary '\0','2024-08-27 01:57:12','89730635001757696',NULL,NULL),(2617,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL','zh_CN','SF详情',_binary '\0','2024-08-27 01:58:14','89730635001757696',NULL,NULL),(2618,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL','zh_TW','SF详情',_binary '\0','2024-08-27 01:58:14','89730635001757696',NULL,NULL),(2619,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_SF_DETAIL','en_US','SF详情',_binary '\0','2024-08-27 01:58:14','89730635001757696',NULL,NULL),(2620,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL','zh_CN','感知任务详情',_binary '\0','2024-08-27 01:58:34','89730635001757696',NULL,NULL),(2621,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL','zh_TW','感知任务详情',_binary '\0','2024-08-27 01:58:34','89730635001757696',NULL,NULL),(2622,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_DETAIL','en_US','感知任务详情',_binary '\0','2024-08-27 01:58:34','89730635001757696',NULL,NULL),(2623,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE','zh_CN','感知任务创建',_binary '\0','2024-08-27 01:58:57','89730635001757696',NULL,NULL),(2624,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE','zh_TW','感知任务创建',_binary '\0','2024-08-27 01:58:57','89730635001757696',NULL,NULL),(2625,389735663221211136,1017,'MENU_5G_A_SETTING_PERCEPTTASK_PERCEPTTASK_CREATE','en_US','感知任务创建',_binary '\0','2024-08-27 01:58:57','89730635001757696',NULL,NULL),(2626,NULL,563,'MENU_SECURITY_ALERTS','zh_CN','安全告警',_binary '\0','2024-09-10 01:46:27','1',NULL,NULL),(2627,NULL,563,'MENU_SECURITY_ALERTS','zh_TW','安全告警',_binary '\0','2024-09-10 01:46:27','1',NULL,NULL),(2628,NULL,563,'MENU_SECURITY_ALERTS','en_US','security alerts',_binary '\0','2024-09-10 01:46:27','1',NULL,NULL),(2629,NULL,1022,'MENU_SECURITY_ALERTS_DETAIL','zh_CN','详情',_binary '\0','2024-09-10 01:46:28','1',NULL,NULL),(2630,NULL,1022,'MENU_SECURITY_ALERTS_DETAIL','zh_TW','详情',_binary '\0','2024-09-10 01:46:28','1',NULL,NULL),(2631,NULL,1022,'MENU_SECURITY_ALERTS_DETAIL','en_US','detail',_binary '\0','2024-09-10 01:46:28','1',NULL,NULL),(2632,257530550208692224,NULL,'MENU_COMMUNICATION_EVENTS_REPORT','en_US','应急事件上报',_binary '\0','2024-09-29 02:10:12','1',NULL,NULL),(2633,257530550208692224,NULL,'MENU_COMMUNICATION_EVENTS_REPORT','zh_CN','应急事件上报',_binary '\0','2024-09-29 02:10:12','1',NULL,NULL),(2634,257530550208692224,NULL,'MENU_COMMUNICATION_EVENTS_REPORT','zh_TW','应急事件上报',_binary '\0','2024-09-29 02:10:12','1',NULL,NULL),(2635,257530550208692224,NULL,'MENU_COMMUNICATION_DATA','en_US','communication data',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2636,257530550208692224,NULL,'MENU_COMMUNICATION_DATA','zh_CN','通信数据',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2637,257530550208692224,NULL,'MENU_COMMUNICATION_DATA','zh_TW','通信數據',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2638,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_EVENTS','en_US','应急事件',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2639,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_EVENTS','zh_CN','应急事件',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2640,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_EVENTS','zh_TW','应急事件',_binary '\0','2024-09-29 02:10:13','1',NULL,NULL),(2641,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE','en_US','应急事件管理',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2642,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE','zh_CN','应急事件管理',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2643,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_MANAGE','zh_TW','应急事件管理',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2644,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_DETAIL','en_US','详情',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2645,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_DETAIL','zh_CN','详情',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2646,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_DETAIL','zh_TW','详情',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2647,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_ADD','en_US','新建',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2648,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_ADD','zh_CN','新建',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2649,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_ADD','zh_TW','新建',_binary '\0','2024-09-29 02:10:14','1',NULL,NULL),(2650,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_EDIT','en_US','编辑',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2651,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_EDIT','zh_CN','编辑',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2652,257530550208692224,1027,'MENU_COMMUNICATION_EMERGENCY_EDIT','zh_TW','编辑',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2653,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC','en_US','应急事件统计',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2654,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC','zh_CN','应急事件统计',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2655,257530550208692224,1026,'MENU_COMMUNICATION_EMERGENCY_EVENTS_STATISTIC','zh_TW','应急事件统计',_binary '\0','2024-09-29 02:10:15','1',NULL,NULL),(2656,257530550208692224,NULL,'MENU_COMMUNICATION_PROCESS','en_US','二维建图与三维建模',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2657,257530550208692224,NULL,'MENU_COMMUNICATION_PROCESS','zh_CN','二维建图与三维建模',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2658,257530550208692224,NULL,'MENU_COMMUNICATION_PROCESS','zh_TW','二维建图与三维建模',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2659,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_DUTY','en_US','排班日历',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2660,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_DUTY','zh_CN','排班日历',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2661,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_DUTY','zh_TW','排班日历',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2662,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_STATISTICS','en_US','排班统计',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2663,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_STATISTICS','zh_CN','排班统计',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2664,257530550208692224,NULL,'MENU_COMMUNICATION_EMERGENCY_STATISTICS','zh_TW','排班统计',_binary '\0','2024-09-29 02:10:16','1',NULL,NULL),(2665,NULL,588,'ACTION_TEMPERA_BPERM','zh_CN','温度显示',_binary '\0','2024-11-12 06:53:17','89730635001757696',NULL,NULL),(2666,NULL,588,'ACTION_TEMPERA_BPERM','zh_TW','溫度顯示',_binary '\0','2024-11-12 06:53:17','89730635001757696',NULL,NULL),(2667,NULL,588,'ACTION_TEMPERA_BPERM','en_US','Temperature display',_binary '\0','2024-11-12 06:53:17','89730635001757696',NULL,NULL),(2668,NULL,584,'ACTION_SWITCHNETWORK_BPERM','zh_CN','切换蜂窝网',_binary '\0','2024-11-12 06:57:05','89730635001757696',NULL,NULL),(2669,NULL,584,'ACTION_SWITCHNETWORK_BPERM','zh_TW','切換蜂窩網',_binary '\0','2024-11-12 06:57:05','89730635001757696',NULL,NULL),(2670,NULL,584,'ACTION_SWITCHNETWORK_BPERM','en_US','Switch cellular network',_binary '\0','2024-11-12 06:57:05','89730635001757696',NULL,NULL); /*!40000 ALTER TABLE `sys_resource_attr` ENABLE KEYS */; UNLOCK TABLES; @@ -62,7 +62,7 @@ UNLOCK TABLES; LOCK TABLES `sys_action_api` WRITE; /*!40000 ALTER TABLE `sys_action_api` DISABLE KEYS */; -INSERT INTO `sys_action_api` VALUES (29,39,'2020-05-28 06:35:55'),(29,53,'2020-06-05 09:31:53'),(29,2565,'2022-04-27 03:29:09'),(29,2601,'2022-04-27 03:29:09'),(30,5,'2020-05-28 02:39:29'),(30,39,'2020-05-28 06:36:33'),(31,4,'2020-05-28 02:40:08'),(32,51,'2020-05-28 07:38:07'),(32,52,'2020-05-28 07:38:07'),(33,2,'2020-05-28 02:56:52'),(34,18,'2020-06-22 09:44:52'),(34,22,'2020-06-22 06:53:27'),(34,27,'2020-06-22 06:53:27'),(34,32,'2020-06-22 09:49:24'),(34,36,'2020-06-22 09:42:26'),(35,18,'2020-06-22 09:45:18'),(35,23,'2020-05-28 07:35:34'),(35,28,'2020-05-28 07:35:08'),(35,32,'2020-06-22 09:49:38'),(35,36,'2020-06-22 09:42:52'),(36,18,'2020-06-22 09:45:37'),(36,24,'2020-05-28 07:34:02'),(36,30,'2020-05-28 07:34:02'),(36,36,'2020-06-22 09:43:11'),(37,253,'2020-06-22 05:39:09'),(38,37,'2020-05-28 07:32:57'),(39,51,'2020-05-28 07:36:56'),(39,52,'2020-05-28 07:36:56'),(40,38,'2020-05-28 07:32:22'),(41,9,'2020-05-28 07:31:08'),(42,14,'2020-05-28 07:31:20'),(43,10,'2020-06-22 09:53:58'),(44,13,'2020-05-28 07:31:57'),(45,11,'2020-06-01 09:08:42'),(47,9,'2020-06-03 08:37:25'),(49,11,'2020-06-03 11:31:34'),(49,14,'2020-06-03 11:31:34'),(50,11,'2020-06-03 11:32:53'),(52,44,'2020-06-03 12:02:27'),(52,252,'2020-06-22 05:40:14'),(53,1214,'2020-12-28 08:04:01'),(53,1215,'2020-12-28 08:04:01'),(53,2564,'2022-04-27 03:29:09'),(53,2582,'2023-01-17 08:08:25'),(56,49,'2020-06-22 10:07:56'),(57,50,'2020-06-22 10:05:55'),(57,57,'2020-06-22 03:15:43'),(57,1421,'2021-03-19 06:27:41'),(57,1422,'2021-03-19 06:27:41'),(58,57,'2020-06-22 03:15:19'),(58,2573,'2022-04-27 03:29:09'),(60,125,'2020-06-04 09:35:56'),(61,124,'2020-06-04 09:36:42'),(68,262,'2020-06-22 10:19:41'),(69,267,'2020-06-22 10:20:16'),(70,262,'2020-06-22 10:21:19'),(71,265,'2020-06-22 10:22:42'),(72,99,'2020-06-11 09:13:33'),(73,99,'2020-06-11 09:13:33'),(74,99,'2020-06-11 09:13:33'),(79,2573,'2022-04-27 03:29:09'),(82,204,'2020-06-22 09:58:18'),(83,75,'2020-06-22 07:57:15'),(83,203,'2020-06-22 07:57:15'),(84,79,'2020-06-22 08:02:09'),(85,76,'2020-06-22 08:03:45'),(85,79,'2020-06-22 08:03:45'),(86,204,'2020-06-23 01:25:39'),(87,206,'2020-06-23 02:50:49'),(87,237,'2020-06-23 01:26:11'),(88,86,'2020-06-22 08:11:33'),(89,206,'2020-06-23 02:50:33'),(89,236,'2020-06-23 01:27:27'),(91,248,'2020-06-22 10:12:27'),(92,247,'2020-06-22 10:13:17'),(93,54,'2020-06-22 10:18:38'),(94,54,'2020-06-22 10:19:39'),(98,203,'2020-06-23 02:09:44'),(98,234,'2020-06-23 02:09:44'),(99,235,'2020-06-23 02:19:34'),(99,238,'2020-07-01 01:27:12'),(101,238,'2020-06-23 02:23:25'),(107,242,'2020-06-23 02:45:47'),(108,140,'2020-06-23 02:48:36'),(108,205,'2020-06-30 07:11:12'),(108,241,'2020-06-23 02:48:36'),(109,243,'2020-06-23 02:50:02'),(111,297,'2020-06-24 01:35:11'),(111,298,'2020-06-24 01:35:11'),(111,299,'2020-06-24 01:31:40'),(112,296,'2020-06-24 01:32:51'),(113,88,'2020-06-24 02:24:27'),(113,191,'2020-06-28 02:55:56'),(113,193,'2020-06-30 07:10:41'),(114,607,'2021-01-29 09:48:36'),(114,608,'2020-10-09 09:38:15'),(114,755,'2020-10-09 09:38:15'),(114,1187,'2021-01-29 09:48:36'),(114,1188,'2021-01-29 09:48:36'),(114,1194,'2021-01-29 09:48:36'),(114,1195,'2021-01-29 09:48:36'),(114,1196,'2021-01-29 09:48:36'),(114,2330,'2022-03-14 01:55:55'),(114,2495,'2023-02-09 06:07:14'),(114,2709,'2022-05-25 09:47:25'),(114,2712,'2022-05-25 09:47:25'),(114,3291,'2023-09-27 10:02:36'),(114,3406,'2024-02-21 09:07:50'),(115,608,'2020-10-09 09:38:15'),(115,755,'2020-10-09 09:38:15'),(116,177,'2020-06-30 06:41:05'),(117,166,'2020-06-24 02:26:19'),(117,187,'2020-06-30 06:35:42'),(117,228,'2020-06-30 06:35:42'),(117,349,'2020-06-30 07:13:23'),(118,89,'2020-06-24 02:27:11'),(118,166,'2020-06-24 02:27:11'),(118,175,'2020-06-30 06:36:41'),(119,176,'2020-06-30 06:40:25'),(120,283,'2020-06-24 05:35:54'),(120,999,'2020-10-09 09:38:09'),(121,284,'2020-06-24 05:36:53'),(121,997,'2020-10-09 09:38:09'),(122,282,'2020-06-24 05:38:10'),(122,996,'2020-10-09 09:38:09'),(129,424,'2020-07-01 08:49:02'),(132,427,'2020-07-01 08:49:30'),(133,424,'2020-07-01 08:47:54'),(134,436,'2020-07-01 08:50:27'),(144,407,'2020-07-01 08:37:21'),(145,410,'2020-07-01 08:35:40'),(146,454,'2020-07-01 08:38:51'),(147,412,'2020-07-01 08:40:13'),(148,319,'2020-06-30 08:18:39'),(150,421,'2020-07-01 08:41:28'),(151,421,'2020-07-01 08:41:49'),(152,419,'2020-07-01 08:42:43'),(153,422,'2020-07-01 08:43:31'),(154,442,'2020-07-01 08:43:53'),(155,443,'2020-07-01 08:44:10'),(156,309,'2020-06-30 08:27:07'),(157,455,'2020-07-01 08:42:30'),(159,426,'2020-06-30 09:47:56'),(166,434,'2020-07-01 08:51:11'),(177,260,'2020-06-30 06:19:23'),(178,268,'2020-06-30 06:23:57'),(179,287,'2020-06-30 06:28:28'),(179,993,'2020-10-09 09:38:09'),(180,274,'2020-06-30 06:30:44'),(180,1514,'2021-04-20 09:46:45'),(180,1733,'2022-01-18 11:23:29'),(180,2060,'2022-01-18 11:23:29'),(182,273,'2020-06-30 06:33:11'),(183,256,'2020-06-30 06:34:19'),(185,288,'2020-06-30 06:38:03'),(186,304,'2020-06-30 06:42:11'),(187,307,'2020-06-30 06:44:29'),(188,327,'2020-06-30 07:28:01'),(188,329,'2020-06-30 07:26:20'),(191,273,'2020-06-30 07:59:55'),(192,256,'2020-06-30 08:00:41'),(193,327,'2020-06-30 08:25:49'),(193,329,'2020-06-30 08:25:49'),(195,425,'2020-06-30 09:40:35'),(196,238,'2020-07-01 01:26:54'),(197,610,'2020-10-09 09:38:13'),(197,880,'2021-01-29 09:48:35'),(197,1035,'2021-01-29 09:48:35'),(197,1202,'2021-01-29 09:48:35'),(197,1203,'2021-01-29 09:48:35'),(197,1204,'2021-01-29 09:48:35'),(197,1205,'2021-01-29 09:48:35'),(197,2334,'2022-03-14 01:55:54'),(197,4031,'2023-09-27 10:02:36'),(198,610,'2020-10-09 09:38:14'),(199,187,'2020-10-09 09:38:14'),(199,759,'2020-10-09 09:38:14'),(200,242,'2020-07-01 02:02:42'),(200,244,'2020-07-01 02:02:42'),(200,450,'2020-07-01 02:02:42'),(201,238,'2020-07-01 02:11:21'),(213,179,'2021-03-19 06:27:43'),(213,183,'2021-03-19 06:27:43'),(213,234,'2020-07-02 02:10:02'),(213,879,'2020-10-09 09:38:13'),(213,882,'2021-03-19 06:27:43'),(213,883,'2021-03-19 06:27:43'),(213,935,'2021-03-19 06:27:43'),(213,1089,'2021-01-29 09:48:35'),(213,1424,'2021-03-19 06:27:43'),(213,1911,'2022-01-10 03:43:24'),(214,179,'2021-03-19 06:27:43'),(214,183,'2021-03-19 06:27:43'),(214,235,'2020-07-02 02:11:30'),(214,238,'2020-07-02 02:11:30'),(214,882,'2021-03-19 06:27:43'),(214,883,'2021-03-19 06:27:43'),(214,1089,'2021-01-29 09:48:35'),(214,1100,'2020-10-09 09:38:13'),(214,1911,'2022-01-10 03:43:24'),(216,183,'2021-03-19 06:27:43'),(216,238,'2020-07-02 02:12:32'),(216,878,'2020-10-09 09:38:13'),(216,881,'2021-03-19 06:27:43'),(216,882,'2021-03-19 06:27:43'),(216,883,'2021-03-19 06:27:43'),(217,179,'2021-03-19 06:27:43'),(217,180,'2021-03-19 06:27:43'),(217,183,'2021-03-19 06:27:43'),(217,187,'2020-07-02 02:14:15'),(217,753,'2021-03-19 06:27:43'),(217,754,'2021-03-19 06:27:43'),(217,759,'2020-10-09 09:38:14'),(217,1258,'2021-01-29 09:48:35'),(217,1578,'2022-04-27 03:29:17'),(217,1579,'2022-04-27 03:29:17'),(217,3403,'2023-02-09 06:07:14'),(220,175,'2020-07-02 02:16:19'),(220,179,'2021-03-19 06:27:43'),(220,180,'2021-03-19 06:27:43'),(220,183,'2021-03-19 06:27:43'),(220,187,'2020-07-02 02:16:19'),(220,759,'2020-10-09 09:38:15'),(220,884,'2020-10-09 09:38:15'),(220,1100,'2020-10-09 09:38:15'),(220,3403,'2023-02-09 06:07:14'),(221,183,'2021-03-19 06:27:43'),(221,191,'2020-07-02 02:17:42'),(221,193,'2020-07-02 02:17:42'),(221,754,'2021-03-19 06:27:43'),(221,884,'2020-10-09 09:38:15'),(221,1424,'2021-03-19 06:27:43'),(221,3403,'2023-02-09 06:07:14'),(222,242,'2020-07-02 02:19:34'),(222,244,'2020-07-02 02:19:34'),(222,450,'2020-07-02 02:19:34'),(222,876,'2020-10-09 09:38:15'),(222,1106,'2020-11-11 08:56:48'),(224,238,'2020-07-02 02:41:33'),(224,878,'2020-10-09 09:38:14'),(225,205,'2020-07-02 02:53:32'),(225,510,'2020-10-09 09:38:15'),(225,512,'2020-07-08 05:03:12'),(225,612,'2020-10-09 09:38:15'),(227,243,'2020-07-02 02:54:23'),(227,512,'2020-07-08 05:03:34'),(232,304,'2020-07-02 03:33:06'),(233,307,'2020-07-02 03:34:36'),(235,424,'2020-07-02 05:53:05'),(237,425,'2020-07-02 06:32:54'),(237,479,'2020-07-02 06:32:54'),(239,1600,'2023-03-29 08:53:26'),(240,1600,'2024-08-23 02:07:02'),(243,727,'2020-10-09 09:38:16'),(243,1037,'2021-01-29 09:48:37'),(243,1514,'2021-04-20 09:53:00'),(243,1547,'2021-04-20 09:53:00'),(246,725,'2020-10-09 09:38:17'),(246,787,'2022-06-30 07:57:53'),(248,306,'2020-07-02 06:42:51'),(248,308,'2020-07-02 06:42:51'),(248,449,'2020-07-02 06:42:51'),(248,505,'2020-07-02 06:42:51'),(252,434,'2020-07-03 01:34:38'),(252,487,'2020-07-03 01:34:38'),(257,436,'2020-07-02 06:54:41'),(257,490,'2020-07-02 06:54:41'),(259,11,'2020-11-11 08:56:48'),(259,178,'2020-07-02 07:00:20'),(259,180,'2020-07-02 07:00:20'),(259,305,'2020-07-02 07:00:20'),(259,306,'2020-07-02 07:00:20'),(259,308,'2020-07-02 07:00:20'),(259,449,'2020-07-02 07:00:20'),(259,505,'2020-07-02 07:00:20'),(259,1052,'2020-11-11 08:56:48'),(259,1130,'2020-11-11 08:56:48'),(259,2495,'2022-11-17 07:01:40'),(261,407,'2020-07-02 07:10:12'),(261,459,'2020-07-02 07:10:12'),(262,454,'2020-07-02 07:29:46'),(262,460,'2020-07-02 07:29:46'),(263,306,'2020-07-02 08:26:04'),(263,308,'2020-07-02 08:26:04'),(263,412,'2020-07-02 07:31:06'),(263,449,'2020-07-02 08:26:04'),(263,469,'2020-07-02 07:31:06'),(263,505,'2020-07-02 08:26:04'),(264,421,'2020-07-02 07:32:54'),(264,475,'2020-07-02 07:32:54'),(266,421,'2020-07-02 07:43:04'),(266,475,'2020-07-02 07:43:04'),(267,419,'2020-07-02 07:44:21'),(267,472,'2020-07-02 07:44:21'),(268,422,'2020-07-02 07:45:21'),(268,476,'2020-07-02 07:45:21'),(269,442,'2020-07-02 07:46:43'),(269,497,'2020-07-02 07:46:43'),(270,406,'2020-07-07 09:28:22'),(270,443,'2020-07-02 07:47:40'),(270,458,'2020-07-07 09:28:22'),(270,496,'2020-07-02 07:47:40'),(271,405,'2020-07-02 07:48:39'),(271,457,'2020-07-02 07:48:39'),(272,455,'2020-07-02 07:49:39'),(272,473,'2020-07-02 07:49:39'),(273,413,'2020-07-02 08:08:41'),(273,467,'2020-07-02 08:08:41'),(274,414,'2020-07-02 08:11:11'),(274,464,'2020-07-02 08:11:11'),(275,415,'2020-07-02 08:12:40'),(275,470,'2020-07-02 08:12:40'),(276,408,'2020-07-02 08:14:11'),(276,461,'2020-07-02 08:14:11'),(277,417,'2020-07-13 05:05:35'),(277,418,'2020-07-02 08:15:32'),(277,466,'2020-07-02 08:15:32'),(278,416,'2020-07-02 08:16:49'),(278,468,'2020-07-02 08:16:49'),(279,427,'2020-07-02 09:57:28'),(279,480,'2020-07-02 09:57:28'),(284,39,'2022-04-27 03:29:09'),(284,49,'2020-07-06 01:23:40'),(284,1424,'2021-03-19 06:27:41'),(285,2566,'2022-04-27 03:29:09'),(285,2576,'2022-04-28 05:59:45'),(285,2612,'2022-04-28 05:58:52'),(286,9,'2020-07-06 01:27:25'),(287,262,'2020-07-07 01:27:58'),(288,262,'2020-07-07 02:50:22'),(288,1039,'2021-03-19 06:27:42'),(288,1194,'2022-01-18 11:23:28'),(288,1195,'2022-01-18 11:23:28'),(288,1424,'2021-03-19 06:27:42'),(288,2055,'2022-01-18 11:23:28'),(288,2057,'2022-01-18 11:23:28'),(289,267,'2020-07-07 02:52:10'),(289,2058,'2022-01-18 11:23:28'),(290,262,'2020-07-07 02:53:51'),(295,187,'2020-07-24 02:33:45'),(295,228,'2020-07-24 02:33:45'),(295,426,'2020-07-24 02:33:45'),(295,451,'2020-07-24 02:33:45'),(295,481,'2020-07-24 02:33:45'),(295,499,'2020-07-24 02:33:45'),(296,242,'2020-07-24 02:34:32'),(296,244,'2020-07-24 02:34:32'),(296,450,'2020-07-24 02:34:32'),(296,498,'2020-07-24 02:34:32'),(302,265,'2020-10-09 09:38:07'),(302,1558,'2021-11-05 10:28:57'),(303,978,'2020-10-09 09:38:07'),(305,264,'2020-10-09 09:38:08'),(305,1000,'2022-01-18 11:23:28'),(305,1039,'2021-03-19 06:27:42'),(305,1147,'2022-01-18 11:23:28'),(305,1416,'2021-03-19 06:27:42'),(305,2056,'2022-01-18 11:23:28'),(306,975,'2020-10-09 09:38:08'),(307,260,'2020-10-09 09:38:08'),(307,2054,'2022-01-18 11:23:28'),(308,1071,'2020-10-09 09:38:09'),(309,1026,'2020-10-09 09:38:10'),(311,862,'2021-01-29 09:48:34'),(311,1197,'2021-01-29 09:48:34'),(311,1198,'2021-01-29 09:48:34'),(311,1199,'2021-01-29 09:48:34'),(311,1200,'2020-12-28 08:04:01'),(311,1201,'2021-01-29 09:48:34'),(311,2337,'2022-03-14 01:55:55'),(311,4030,'2023-09-27 10:02:37'),(311,4032,'2023-09-27 10:02:37'),(314,183,'2021-03-19 06:27:42'),(314,780,'2021-03-19 06:27:42'),(314,859,'2021-03-19 06:27:42'),(314,863,'2021-03-19 06:27:42'),(314,866,'2020-10-09 09:38:11'),(316,183,'2021-03-19 06:27:43'),(316,772,'2020-10-09 09:38:11'),(316,778,'2020-10-09 09:38:11'),(316,786,'2020-10-09 09:38:11'),(316,859,'2021-03-19 06:27:43'),(316,866,'2020-10-09 09:38:11'),(316,1089,'2021-01-29 09:48:34'),(316,1100,'2020-10-09 09:38:11'),(316,1511,'2021-03-19 06:46:59'),(317,775,'2020-10-09 09:38:11'),(319,764,'2020-10-09 09:38:12'),(319,932,'2020-10-09 09:38:12'),(320,187,'2020-10-09 09:38:12'),(320,759,'2020-10-09 09:38:12'),(321,959,'2020-10-09 09:38:12'),(322,933,'2020-10-09 09:38:12'),(323,767,'2020-10-09 09:38:12'),(325,176,'2021-03-19 06:27:43'),(325,183,'2021-03-19 06:27:43'),(325,770,'2020-10-09 09:38:12'),(325,771,'2020-10-09 09:38:12'),(325,786,'2020-10-09 09:38:12'),(325,859,'2021-03-19 06:27:43'),(325,863,'2021-03-19 06:27:43'),(325,1089,'2021-01-29 09:48:35'),(325,1424,'2021-03-19 06:27:43'),(325,1511,'2021-03-19 06:47:00'),(327,866,'2020-10-09 09:38:14'),(328,1039,'2020-10-09 09:38:16'),(329,1094,'2020-10-09 09:38:16'),(330,1052,'2020-10-09 09:38:16'),(332,804,'2024-08-23 02:07:02'),(332,897,'2020-10-09 09:38:16'),(332,1025,'2020-10-09 09:38:16'),(333,740,'2020-10-09 09:38:16'),(333,741,'2020-10-09 09:38:16'),(334,787,'2020-10-09 09:38:16'),(335,911,'2020-10-09 09:38:17'),(336,884,'2020-11-11 10:04:24'),(337,983,'2020-10-09 09:38:17'),(337,984,'2020-10-09 09:38:17'),(338,727,'2020-10-09 09:38:17'),(338,1037,'2021-01-29 09:48:37'),(338,1514,'2021-04-20 09:53:00'),(338,1546,'2021-04-20 09:53:00'),(339,729,'2020-10-09 09:38:17'),(340,722,'2020-10-09 09:38:17'),(341,750,'2021-04-20 09:53:00'),(341,751,'2020-10-09 09:38:17'),(342,722,'2020-10-09 09:38:18'),(343,747,'2020-10-09 09:38:18'),(358,222,'2022-04-28 06:48:22'),(358,256,'2024-06-18 10:42:07'),(358,274,'2024-06-18 10:42:07'),(358,1732,'2024-06-18 10:42:07'),(358,2292,'2022-03-11 05:52:53'),(358,4078,'2024-02-26 03:04:45'),(358,4143,'2024-02-23 02:17:22'),(358,4169,'2024-02-23 01:57:24'),(359,1095,'2020-10-09 09:38:20'),(359,1096,'2020-10-09 09:38:20'),(368,1139,'2020-11-11 07:06:08'),(369,1141,'2020-11-11 07:06:08'),(371,1140,'2020-11-11 07:06:08'),(371,1142,'2020-11-11 07:06:08'),(373,1138,'2020-11-11 07:06:08'),(375,1146,'2020-11-11 07:06:08'),(375,1147,'2020-11-11 07:06:08'),(377,1137,'2020-11-11 07:06:08'),(379,1146,'2020-11-11 07:06:08'),(379,1147,'2020-11-11 07:06:08'),(382,1000,'2020-11-11 08:49:33'),(382,1147,'2022-01-18 11:23:28'),(382,2056,'2022-01-18 11:23:28'),(383,1130,'2020-11-11 10:04:23'),(384,1052,'2020-11-11 10:04:23'),(385,1109,'2021-11-05 10:29:25'),(385,1600,'2024-08-23 02:07:02'),(385,1628,'2021-06-01 10:04:15'),(386,1597,'2021-05-26 03:24:13'),(387,1000,'2020-12-28 08:04:01'),(387,1139,'2022-01-18 11:23:29'),(389,1112,'2020-12-28 08:04:03'),(389,1113,'2020-12-28 08:04:03'),(389,1114,'2020-12-28 08:04:03'),(389,1115,'2020-12-28 08:04:03'),(389,1116,'2020-12-28 08:04:03'),(389,1117,'2020-12-28 08:04:03'),(389,1118,'2020-12-28 08:04:03'),(389,1119,'2020-12-28 08:04:03'),(389,1120,'2020-12-28 08:04:03'),(389,1121,'2020-12-28 08:04:03'),(389,1122,'2020-12-28 08:04:03'),(389,1123,'2020-12-28 08:04:03'),(389,1124,'2020-12-28 08:04:03'),(389,1164,'2020-12-28 08:04:03'),(389,1165,'2020-12-28 08:04:03'),(389,1209,'2021-01-29 09:48:37'),(395,2890,'2022-10-25 09:51:32'),(395,2894,'2022-10-25 09:51:32'),(395,2895,'2022-10-25 09:51:32'),(409,1424,'2021-03-19 06:27:45'),(455,1560,'2021-04-20 09:48:46'),(455,1561,'2021-04-20 09:48:46'),(455,1562,'2021-04-20 09:48:46'),(455,1563,'2021-04-20 09:48:46'),(455,1564,'2021-04-20 09:48:46'),(455,1565,'2021-04-20 09:48:46'),(455,1566,'2021-04-20 09:48:46'),(455,1567,'2021-04-20 09:48:46'),(455,1568,'2021-04-20 09:48:46'),(455,1569,'2021-04-20 09:48:46'),(457,274,'2021-04-20 09:53:00'),(457,1514,'2021-04-20 09:53:00'),(458,255,'2022-04-28 02:57:21'),(458,519,'2022-04-28 02:57:21'),(463,1096,'2022-04-28 07:03:05'),(463,1887,'2022-04-28 07:02:34'),(467,961,'2022-04-28 06:45:07'),(467,986,'2021-05-12 07:37:20'),(467,1163,'2021-05-12 07:37:20'),(467,1408,'2021-05-12 07:37:20'),(467,1410,'2021-05-12 07:37:20'),(467,3189,'2022-09-20 08:30:51'),(467,3191,'2022-09-20 08:30:51'),(467,3302,'2023-09-27 10:02:48'),(468,987,'2021-05-12 07:38:05'),(469,989,'2021-05-12 07:38:45'),(470,990,'2021-05-12 07:39:16'),(472,1523,'2021-05-12 07:40:01'),(473,1521,'2021-05-12 07:40:01'),(475,1528,'2021-05-12 07:40:01'),(476,989,'2021-05-12 07:40:01'),(477,989,'2021-05-12 07:40:01'),(478,1530,'2021-05-12 07:40:01'),(480,983,'2021-05-12 07:40:01'),(480,984,'2021-05-12 07:40:01'),(480,988,'2021-05-12 07:40:01'),(480,1067,'2021-05-12 07:40:01'),(480,1524,'2021-05-12 07:40:01'),(483,989,'2021-05-12 07:40:01'),(485,1067,'2021-05-12 07:40:01'),(485,1609,'2022-06-08 05:49:07'),(485,1725,'2021-11-05 10:29:40'),(487,407,'2021-05-12 07:40:01'),(487,459,'2021-05-12 07:40:01'),(487,983,'2021-05-12 07:40:01'),(487,984,'2021-05-12 07:40:01'),(487,988,'2021-05-12 07:40:01'),(487,1067,'2021-05-12 07:40:01'),(487,1511,'2023-09-27 10:02:48'),(487,1524,'2021-05-12 07:40:01'),(487,1585,'2021-05-12 07:40:01'),(487,1586,'2021-05-12 07:40:01'),(487,1686,'2021-07-06 06:47:46'),(487,1687,'2021-07-06 06:47:46'),(487,2085,'2022-01-18 11:23:44'),(487,2090,'2022-01-18 11:23:44'),(487,2552,'2022-04-01 02:53:08'),(487,2553,'2022-04-01 02:53:08'),(487,2562,'2022-04-11 01:41:09'),(487,2715,'2022-06-08 05:49:07'),(487,2860,'2022-06-08 05:49:07'),(487,3228,'2022-09-20 08:30:52'),(487,3229,'2022-09-20 08:30:52'),(488,989,'2021-05-12 07:40:01'),(489,274,'2022-04-28 06:43:17'),(489,1095,'2022-04-28 06:43:17'),(489,3166,'2022-10-25 09:52:22'),(489,3237,'2022-10-25 09:52:22'),(489,3273,'2022-10-25 09:52:22'),(490,1057,'2021-05-12 07:40:01'),(491,1161,'2021-05-12 07:40:01'),(491,2078,'2022-04-01 02:53:08'),(491,2079,'2022-06-09 05:45:07'),(492,1424,'2021-05-12 07:40:01'),(493,1013,'2021-05-12 07:40:01'),(494,1021,'2021-05-12 07:40:02'),(495,1020,'2021-05-12 07:40:02'),(496,981,'2021-05-12 07:40:02'),(496,982,'2021-05-12 07:40:02'),(497,985,'2021-05-12 07:40:02'),(498,980,'2021-05-12 07:40:02'),(498,1408,'2021-05-12 07:40:02'),(501,1581,'2021-05-26 03:24:13'),(501,1582,'2021-05-26 03:24:13'),(501,1600,'2021-05-26 03:24:13'),(502,1583,'2021-05-26 03:24:13'),(503,1598,'2021-05-26 03:24:13'),(503,1599,'2021-05-26 03:24:13'),(504,722,'2021-05-26 03:24:13'),(506,1112,'2021-05-26 07:02:48'),(506,1113,'2021-05-26 07:02:48'),(506,1114,'2021-05-26 07:02:48'),(506,1115,'2021-05-26 07:02:48'),(506,1116,'2021-05-26 07:02:48'),(506,1117,'2021-05-26 07:02:48'),(506,1118,'2021-05-26 07:02:48'),(506,1119,'2021-05-26 07:02:48'),(506,1120,'2021-05-26 07:11:57'),(506,1121,'2021-05-26 07:11:57'),(506,1122,'2021-05-26 07:11:57'),(506,1123,'2021-05-26 07:11:57'),(506,1124,'2021-05-26 07:11:57'),(506,1164,'2021-05-26 07:11:57'),(506,1165,'2021-05-26 07:11:57'),(506,1209,'2021-05-26 07:11:57'),(508,1627,'2021-06-01 10:04:14'),(514,1730,'2021-07-30 09:57:04'),(515,1736,'2021-07-30 09:57:04'),(515,1738,'2021-07-30 09:57:04'),(515,4177,'2024-02-21 09:55:12'),(515,4179,'2024-02-21 09:55:12'),(516,1737,'2021-07-30 09:57:04'),(517,1731,'2021-07-30 09:57:04'),(519,1732,'2021-07-30 09:57:04'),(520,1735,'2021-07-30 09:57:04'),(521,1086,'2023-02-08 09:41:24'),(521,1325,'2021-07-30 09:58:33'),(521,2326,'2022-04-01 09:04:18'),(521,2442,'2022-04-27 08:56:20'),(521,2659,'2022-04-27 03:29:23'),(521,2661,'2022-04-27 03:29:23'),(521,2666,'2022-04-27 03:29:23'),(539,1769,'2021-07-30 10:06:54'),(561,1724,'2021-08-12 02:19:01'),(561,2538,'2022-03-30 09:01:57'),(563,1852,'2022-05-25 06:36:34'),(563,1854,'2022-05-25 06:36:34'),(563,1856,'2022-05-25 06:36:34'),(563,1857,'2022-05-25 06:36:34'),(563,1858,'2022-05-25 06:36:34'),(563,1859,'2022-05-25 06:36:34'),(563,1862,'2022-05-25 06:36:34'),(563,1876,'2022-05-25 06:36:34'),(566,1853,'2021-11-05 10:29:54'),(567,1860,'2021-11-05 10:29:54'),(567,1861,'2021-11-05 10:29:54'),(568,1850,'2021-11-05 10:29:54'),(571,1734,'2021-11-05 10:29:54'),(571,1865,'2021-11-05 10:29:54'),(571,1872,'2021-11-05 10:29:54'),(571,1873,'2021-11-05 10:29:54'),(571,1875,'2021-11-05 10:29:54'),(573,1734,'2021-11-05 10:29:54'),(573,1863,'2021-11-05 10:29:54'),(573,1866,'2021-11-05 10:29:54'),(573,1872,'2021-11-05 10:29:54'),(573,1873,'2021-11-05 10:29:54'),(573,1875,'2021-11-05 10:29:54'),(575,1734,'2021-11-05 10:29:55'),(575,1863,'2021-11-05 10:29:55'),(575,1872,'2021-11-05 10:29:55'),(576,1877,'2021-11-05 10:29:55'),(577,1874,'2021-11-05 10:29:55'),(579,1867,'2021-11-05 10:29:55'),(579,1868,'2021-11-05 10:29:55'),(579,1869,'2021-11-05 10:29:55'),(580,1870,'2021-11-05 10:29:55'),(582,1899,'2021-11-09 08:59:01'),(583,2081,'2022-01-18 11:23:37'),(584,222,'2022-04-02 07:37:11'),(584,246,'2022-04-02 07:37:11'),(584,255,'2022-04-02 07:37:11'),(584,518,'2022-04-02 07:37:11'),(584,519,'2022-04-02 07:37:11'),(584,949,'2022-04-02 07:37:11'),(584,1045,'2022-04-02 07:37:11'),(584,1053,'2022-04-02 07:37:11'),(584,1647,'2022-04-02 07:37:11'),(584,1887,'2022-04-02 07:37:11'),(584,1890,'2022-04-02 07:37:11'),(584,2240,'2022-04-02 07:37:11'),(584,2429,'2022-04-02 07:37:11'),(584,2430,'2022-04-27 03:29:23'),(584,2855,'2022-06-08 05:48:51'),(584,2856,'2022-06-08 05:48:51'),(584,2857,'2022-06-08 05:48:51'),(584,2858,'2022-06-08 05:48:51'),(584,4143,'2024-02-23 02:13:19'),(584,4741,'2024-10-11 09:06:56'),(585,1019,'2022-11-14 01:48:00'),(585,1029,'2021-11-05 10:30:18'),(585,1047,'2021-11-05 10:30:18'),(585,1049,'2021-11-05 10:30:18'),(585,1054,'2021-11-05 10:30:18'),(585,1055,'2021-11-05 10:30:18'),(585,1072,'2021-11-05 10:30:18'),(585,1540,'2021-11-05 10:30:18'),(585,1578,'2022-04-02 01:24:57'),(585,1579,'2022-04-27 09:09:08'),(585,1603,'2021-11-05 10:30:18'),(585,1726,'2022-11-17 02:57:42'),(585,2431,'2022-04-02 07:37:11'),(585,2432,'2022-04-02 07:37:11'),(585,2433,'2022-04-02 07:37:11'),(585,2434,'2022-04-02 07:37:11'),(585,2435,'2022-04-02 07:37:11'),(585,2436,'2022-04-27 03:29:23'),(585,2437,'2022-04-02 07:37:11'),(585,2440,'2022-04-27 09:09:08'),(585,2446,'2022-04-27 09:09:08'),(585,2458,'2022-04-27 09:09:08'),(585,2460,'2022-11-17 02:57:42'),(585,2488,'2022-11-17 02:57:42'),(585,2490,'2022-11-17 02:57:42'),(585,3329,'2022-12-09 08:10:47'),(585,3330,'2022-12-09 08:10:47'),(585,3487,'2024-03-12 07:40:46'),(585,3657,'2023-07-05 08:04:20'),(585,3658,'2023-05-09 09:16:31'),(585,3732,'2023-09-12 01:19:31'),(585,3778,'2023-06-16 09:17:34'),(585,3779,'2023-06-16 09:17:34'),(585,3818,'2023-07-07 01:51:24'),(585,3819,'2023-07-07 01:51:24'),(585,4144,'2024-02-23 09:38:55'),(586,2438,'2022-04-27 03:29:23'),(586,2439,'2022-04-27 03:29:23'),(586,4275,'2024-04-17 01:51:23'),(588,3956,'2024-06-17 12:01:17'),(588,4145,'2024-02-23 09:36:10'),(588,4146,'2024-02-23 09:36:10'),(588,4171,'2024-02-23 01:57:25'),(589,1006,'2021-11-05 10:30:18'),(589,1007,'2021-11-05 10:30:18'),(589,1008,'2021-11-05 10:30:18'),(589,1014,'2021-11-05 10:30:18'),(589,1015,'2021-11-05 10:30:18'),(589,1016,'2021-11-05 10:30:18'),(589,1017,'2021-11-05 10:30:18'),(589,1018,'2021-11-05 10:30:18'),(589,1019,'2021-11-05 10:30:18'),(589,1726,'2021-11-05 10:30:18'),(589,2447,'2023-09-12 01:19:31'),(589,2453,'2022-04-27 03:29:23'),(589,2454,'2022-04-27 03:29:23'),(589,2455,'2022-04-27 03:29:23'),(589,2457,'2022-04-27 03:29:23'),(589,2458,'2022-04-27 03:29:23'),(589,2459,'2022-04-27 03:29:23'),(589,2460,'2022-04-27 03:29:23'),(590,1301,'2021-11-05 10:30:18'),(590,2447,'2022-04-27 03:29:23'),(592,1298,'2021-11-05 10:30:18'),(592,1299,'2021-11-05 10:30:18'),(592,1300,'2021-11-05 10:30:18'),(592,1415,'2021-11-05 10:30:18'),(592,1705,'2021-11-05 10:30:18'),(592,1706,'2021-11-05 10:30:18'),(592,1707,'2021-11-05 10:30:18'),(592,1708,'2021-11-05 10:30:18'),(592,1709,'2021-11-05 10:30:18'),(592,1710,'2021-11-05 10:30:18'),(592,2448,'2022-04-27 03:29:23'),(592,2449,'2022-04-27 03:29:23'),(592,2450,'2022-04-27 03:29:23'),(592,2451,'2022-04-27 03:29:23'),(592,2452,'2022-04-27 03:29:23'),(594,1458,'2021-11-05 10:30:18'),(594,1459,'2021-11-05 10:30:18'),(594,2456,'2022-04-27 03:29:23'),(595,2293,'2022-04-02 07:37:11'),(595,2561,'2022-04-11 01:41:30'),(595,4156,'2024-04-25 02:58:10'),(595,4455,'2024-08-15 07:29:46'),(595,4456,'2024-08-15 07:29:46'),(595,4457,'2024-08-15 07:29:46'),(597,1888,'2022-04-01 09:04:19'),(597,1889,'2022-04-01 09:04:19'),(599,1685,'2021-11-05 10:30:19'),(599,2074,'2022-01-18 11:23:37'),(600,1684,'2021-11-05 10:30:19'),(600,2074,'2022-01-18 11:23:37'),(604,1685,'2021-11-05 10:30:19'),(604,2074,'2022-01-18 11:23:37'),(604,4156,'2024-02-23 01:57:25'),(606,1266,'2021-11-05 10:30:19'),(606,1678,'2021-11-05 10:30:19'),(606,1729,'2021-11-05 10:30:19'),(606,3420,'2023-09-12 01:19:34'),(606,3421,'2023-09-12 01:19:34'),(606,3426,'2023-09-12 01:19:34'),(606,3427,'2023-09-12 01:19:34'),(606,3432,'2023-09-12 01:19:34'),(606,3433,'2023-09-12 01:19:34'),(607,1264,'2021-11-05 10:30:19'),(607,1265,'2021-11-05 10:30:19'),(607,1727,'2021-11-05 10:30:19'),(607,1728,'2021-11-05 10:30:19'),(607,3275,'2022-11-10 06:27:00'),(607,3276,'2022-11-10 06:27:00'),(608,1891,'2021-11-09 08:59:02'),(608,1892,'2021-11-09 08:59:02'),(608,1893,'2021-11-09 08:59:02'),(608,1894,'2021-11-09 08:59:02'),(608,1895,'2021-11-09 08:59:02'),(608,1896,'2021-11-09 08:59:02'),(608,3287,'2022-11-09 09:00:33'),(615,1808,'2021-11-05 10:45:26'),(615,1809,'2021-11-05 10:45:26'),(616,1798,'2021-11-05 10:45:26'),(617,1812,'2021-11-05 10:45:26'),(618,1809,'2021-11-05 10:45:26'),(619,1806,'2021-11-05 10:45:26'),(620,1811,'2021-11-05 10:45:26'),(621,1802,'2021-11-05 10:45:26'),(621,1804,'2021-11-05 10:45:26'),(621,1807,'2021-11-05 10:45:26'),(622,1802,'2021-11-05 10:45:26'),(622,1805,'2021-11-05 10:45:26'),(622,1807,'2021-11-05 10:45:26'),(623,1807,'2021-11-05 10:45:26'),(624,1800,'2021-11-05 10:45:26'),(624,1803,'2021-11-05 10:45:26'),(625,1801,'2021-11-05 10:45:26'),(626,1810,'2021-11-05 10:45:26'),(628,1791,'2021-11-05 10:45:26'),(629,1790,'2021-11-05 10:45:26'),(630,1794,'2021-11-05 10:45:26'),(631,1795,'2021-11-05 10:45:26'),(632,1793,'2021-11-05 10:45:26'),(634,1792,'2021-11-05 10:45:27'),(635,1796,'2021-11-05 10:45:27'),(637,1814,'2021-11-05 10:45:27'),(637,1815,'2021-11-05 10:45:27'),(638,1814,'2021-11-05 10:45:27'),(638,1815,'2021-11-05 10:45:27'),(639,1814,'2021-11-05 10:45:27'),(639,1816,'2021-11-05 10:45:27'),(641,1914,'2022-01-18 11:17:19'),(641,1916,'2022-01-18 11:17:19'),(641,1917,'2022-01-18 11:17:19'),(641,1918,'2022-01-18 11:17:19'),(641,1919,'2022-01-18 11:17:19'),(641,1920,'2022-01-18 11:17:19'),(641,1922,'2022-01-18 11:17:19'),(641,1923,'2022-01-18 11:17:19'),(641,1924,'2022-01-18 11:17:19'),(645,1994,'2022-01-18 11:23:05'),(647,1991,'2022-01-18 11:23:05'),(648,1990,'2022-01-18 11:23:05'),(649,1992,'2022-01-18 11:23:05'),(650,1993,'2022-01-18 11:23:05'),(651,2055,'2022-01-18 11:23:29'),(652,2070,'2022-01-18 11:23:37'),(654,2074,'2022-01-18 11:23:37'),(654,2076,'2022-01-18 11:23:37'),(655,2073,'2022-01-18 11:23:44'),(655,3958,'2023-09-27 10:02:48'),(662,2115,'2022-03-10 07:39:37'),(662,2116,'2022-03-10 07:39:37'),(662,2123,'2022-03-10 07:39:37'),(663,725,'2022-03-10 07:39:37'),(663,750,'2022-03-10 07:39:37'),(663,751,'2022-03-10 07:39:37'),(663,787,'2022-03-10 07:39:37'),(663,2108,'2022-03-10 07:39:37'),(663,2109,'2022-03-10 07:39:37'),(663,2110,'2022-03-10 07:39:37'),(663,2111,'2022-03-10 07:39:37'),(663,2112,'2022-06-27 02:53:02'),(663,2113,'2022-03-10 07:39:37'),(663,2114,'2022-03-10 07:39:37'),(663,2120,'2022-03-10 07:39:37'),(663,2121,'2022-03-10 07:39:37'),(663,2124,'2022-03-10 07:39:37'),(663,2125,'2022-03-10 07:39:37'),(663,2126,'2022-03-10 07:39:37'),(663,2127,'2022-03-10 07:39:37'),(663,2129,'2022-03-10 07:39:37'),(663,2308,'2022-03-11 05:44:18'),(664,2426,'2022-03-14 01:55:55'),(664,2427,'2022-03-14 01:55:55'),(664,2428,'2022-03-14 01:55:55'),(667,518,'2022-04-28 07:01:02'),(667,1095,'2022-04-28 06:40:43'),(667,1258,'2022-03-30 06:26:16'),(667,2499,'2022-03-30 06:26:16'),(667,2501,'2022-03-30 06:26:16'),(667,2502,'2022-03-30 06:26:16'),(667,2503,'2022-03-30 06:26:16'),(667,2504,'2022-03-30 06:26:16'),(667,2505,'2022-03-30 06:26:16'),(667,2507,'2023-03-31 02:00:54'),(667,2663,'2022-04-27 08:56:09'),(667,2684,'2022-04-28 06:39:01'),(667,2699,'2022-05-30 06:38:44'),(667,2852,'2022-06-08 05:48:00'),(667,2853,'2022-06-08 05:48:00'),(667,2854,'2022-06-08 05:48:00'),(667,2859,'2022-06-08 05:48:00'),(667,3291,'2023-03-30 07:45:08'),(667,3302,'2023-03-30 07:40:55'),(668,256,'2022-03-30 02:02:43'),(668,274,'2022-03-30 02:02:43'),(668,1514,'2022-03-30 02:02:43'),(671,787,'2022-04-27 06:11:06'),(671,1056,'2022-04-28 02:00:46'),(671,1095,'2022-04-28 02:00:46'),(671,1096,'2022-04-28 02:51:24'),(671,1560,'2022-04-27 08:44:40'),(671,1887,'2022-04-28 02:49:16'),(671,2292,'2022-04-28 02:15:44'),(671,2502,'2022-04-27 08:44:40'),(671,2504,'2022-03-31 07:56:28'),(671,2673,'2022-04-28 01:57:54'),(671,2674,'2022-04-27 08:44:40'),(671,2675,'2022-04-28 01:58:38'),(671,2676,'2022-04-28 01:57:54'),(671,2677,'2022-04-28 01:50:23'),(671,2678,'2022-04-27 08:47:33'),(671,2679,'2022-04-27 08:47:33'),(671,2684,'2022-04-28 01:57:54'),(671,2685,'2022-04-27 08:44:40'),(673,2074,'2022-04-02 07:37:11'),(675,14,'2022-04-27 03:29:09'),(675,1420,'2022-04-27 03:29:09'),(675,2602,'2022-04-27 03:29:09'),(676,247,'2022-04-27 03:29:09'),(677,248,'2022-04-27 03:29:09'),(678,54,'2022-04-27 03:29:09'),(679,9,'2022-04-27 03:29:09'),(679,2576,'2022-04-27 03:29:09'),(679,2579,'2022-04-27 03:29:09'),(679,2952,'2022-07-25 08:30:45'),(680,11,'2022-04-27 03:29:09'),(680,2011,'2022-04-27 03:29:09'),(680,2581,'2022-04-27 03:29:09'),(680,4033,'2024-04-29 07:03:10'),(680,4035,'2024-04-29 07:02:34'),(681,2580,'2022-04-27 03:29:09'),(681,2582,'2022-04-27 03:29:09'),(682,2657,'2022-04-27 03:29:17'),(682,2658,'2022-04-27 03:29:17'),(682,2659,'2022-04-27 03:29:17'),(682,2660,'2022-04-27 03:29:17'),(682,2661,'2022-04-27 03:29:17'),(682,2662,'2022-04-27 03:29:17'),(682,2665,'2022-04-27 03:29:17'),(682,2667,'2022-04-27 03:29:17'),(684,1684,'2022-04-27 03:29:24'),(684,1685,'2022-04-27 03:29:24'),(684,2074,'2022-04-27 03:29:24'),(685,1560,'2022-04-27 03:43:03'),(686,2683,'2022-04-27 03:43:03'),(689,2739,'2022-05-25 09:56:08'),(689,2743,'2022-05-25 09:56:08'),(689,2746,'2022-05-25 09:56:08'),(690,2740,'2022-05-25 09:56:08'),(690,2741,'2022-05-25 09:56:08'),(690,2744,'2022-05-25 09:56:08'),(691,2750,'2022-05-25 09:56:08'),(692,2747,'2022-05-25 09:56:08'),(692,2748,'2022-05-25 09:56:08'),(692,2749,'2022-05-25 09:56:08'),(693,2742,'2022-05-25 09:56:08'),(694,2751,'2022-05-25 09:56:08'),(695,2752,'2022-05-25 09:56:08'),(696,787,'2022-05-26 01:10:40'),(696,988,'2022-05-26 01:10:40'),(696,989,'2022-05-26 01:10:40'),(696,1095,'2022-05-26 01:10:40'),(696,1096,'2022-05-26 01:10:40'),(696,1725,'2022-05-26 01:10:40'),(696,2499,'2022-06-23 03:05:35'),(696,2501,'2022-05-26 01:10:40'),(696,2502,'2022-05-26 01:10:40'),(696,2503,'2022-05-26 01:10:40'),(696,2504,'2022-05-26 01:10:40'),(696,2507,'2022-05-26 01:10:40'),(696,2674,'2022-05-26 01:10:40'),(696,2675,'2022-05-26 01:10:40'),(696,2676,'2022-05-26 01:10:40'),(696,2677,'2022-05-26 01:10:40'),(696,2678,'2022-05-26 01:10:40'),(696,2679,'2022-06-08 09:31:48'),(696,2684,'2022-05-26 01:10:40'),(696,2726,'2022-05-26 01:10:40'),(696,2727,'2022-05-26 01:10:40'),(696,2728,'2022-05-26 01:10:40'),(697,2716,'2022-05-26 01:15:48'),(697,2719,'2022-05-26 01:15:48'),(697,2720,'2022-05-26 01:15:48'),(697,2721,'2022-05-26 01:15:48'),(697,2722,'2022-05-26 01:15:48'),(697,2732,'2022-05-26 01:15:48'),(697,2735,'2022-05-26 01:15:48'),(697,2738,'2022-05-26 01:15:48'),(697,2849,'2022-06-08 05:52:19'),(697,2850,'2022-06-08 05:52:19'),(697,3252,'2024-04-30 07:19:55'),(697,3753,'2023-12-31 08:27:20'),(697,4083,'2023-11-09 09:38:13'),(697,4084,'2023-11-09 10:21:28'),(699,2074,'2022-06-08 05:48:52'),(699,2076,'2022-06-08 05:48:52'),(707,2869,'2022-06-22 07:54:11'),(707,2886,'2022-06-22 07:54:11'),(707,3534,'2023-05-04 09:43:02'),(707,3705,'2023-05-19 03:35:23'),(708,2884,'2022-06-22 07:54:11'),(708,3092,'2022-09-20 08:37:44'),(709,2171,'2022-06-22 07:54:11'),(709,2173,'2022-06-22 07:54:11'),(709,2816,'2022-06-22 07:54:11'),(709,2817,'2022-06-22 07:54:11'),(709,2819,'2022-06-22 07:54:11'),(709,2826,'2022-06-22 07:54:11'),(709,2828,'2022-06-22 07:54:11'),(709,2831,'2022-09-20 08:37:44'),(709,2832,'2022-06-22 07:54:11'),(709,2834,'2022-06-22 07:54:11'),(709,2835,'2022-06-22 07:54:11'),(710,2175,'2022-06-22 07:54:11'),(710,2821,'2022-06-22 07:54:11'),(710,2822,'2022-06-22 07:54:11'),(710,2823,'2022-06-22 07:54:11'),(710,2827,'2022-06-22 07:54:11'),(710,2829,'2022-06-22 07:54:11'),(710,2830,'2022-06-22 07:54:11'),(710,2833,'2022-06-22 07:54:11'),(711,2824,'2022-06-22 07:54:11'),(712,2828,'2022-06-22 07:54:12'),(712,2864,'2022-06-22 07:54:12'),(712,2882,'2022-06-22 07:54:12'),(713,2862,'2022-06-22 07:54:12'),(713,2863,'2022-06-22 07:54:12'),(713,2866,'2022-06-22 07:54:12'),(713,2881,'2022-06-22 07:54:12'),(714,2865,'2022-06-22 07:54:12'),(717,456,'2022-06-30 09:22:07'),(717,1106,'2024-09-29 02:10:12'),(717,2906,'2022-09-20 08:33:32'),(717,2907,'2022-07-01 08:33:55'),(717,2909,'2022-07-01 08:33:55'),(717,2912,'2022-07-01 08:33:55'),(717,3069,'2022-09-20 08:33:32'),(717,3318,'2023-05-18 10:49:02'),(717,3319,'2023-05-18 10:49:02'),(717,3322,'2023-05-18 10:49:02'),(717,3323,'2023-05-18 10:49:02'),(717,3324,'2023-05-18 10:49:02'),(717,3688,'2023-05-18 10:49:02'),(717,4068,'2024-04-19 02:45:18'),(717,4071,'2024-09-29 02:10:12'),(717,4073,'2024-04-19 02:45:53'),(717,4074,'2024-06-17 07:53:17'),(717,4660,'2024-09-29 02:10:12'),(717,4661,'2024-09-29 02:10:12'),(717,4662,'2024-09-29 02:10:12'),(717,4663,'2024-09-29 02:10:12'),(717,4666,'2024-09-29 02:10:12'),(717,4669,'2024-09-29 02:10:12'),(717,4679,'2024-09-28 04:57:00'),(717,4681,'2024-09-29 02:10:12'),(717,4733,'2024-09-29 02:10:12'),(719,2937,'2022-07-08 06:51:11'),(719,2939,'2022-07-08 06:51:11'),(719,2943,'2022-07-08 06:51:11'),(719,2944,'2022-07-08 06:51:11'),(720,2938,'2022-07-08 06:51:11'),(720,2942,'2022-07-08 06:51:11'),(721,2935,'2022-07-08 06:51:11'),(722,2936,'2022-07-08 06:51:11'),(723,2939,'2022-07-08 06:51:11'),(723,2943,'2022-07-08 06:51:11'),(723,2944,'2022-07-08 06:51:11'),(726,53,'2022-07-08 06:53:54'),(726,787,'2022-07-08 06:53:54'),(726,2075,'2022-07-08 06:53:54'),(726,2923,'2022-07-08 06:53:54'),(726,2924,'2022-07-08 06:53:54'),(726,2925,'2022-07-08 06:53:54'),(726,2926,'2022-07-08 06:53:54'),(726,2927,'2022-07-08 06:53:54'),(726,2928,'2022-07-08 06:53:54'),(726,2929,'2022-07-08 06:53:54'),(726,2931,'2022-07-08 06:53:54'),(726,2932,'2022-07-08 06:53:54'),(726,2933,'2022-07-08 06:53:54'),(726,3318,'2022-12-08 09:58:01'),(726,3319,'2022-12-08 09:58:01'),(726,3322,'2022-12-08 09:58:01'),(726,3323,'2022-12-08 09:58:01'),(726,3324,'2022-12-08 09:58:01'),(728,1790,'2022-07-25 08:29:07'),(728,1791,'2022-07-25 08:29:07'),(728,1792,'2022-07-25 08:29:07'),(728,1793,'2022-07-25 08:29:07'),(728,1794,'2022-07-25 08:29:07'),(728,1795,'2022-07-25 08:29:07'),(728,1796,'2022-07-25 08:29:07'),(728,1798,'2022-07-25 08:29:07'),(728,1800,'2022-07-25 08:29:07'),(728,1801,'2022-07-25 08:29:07'),(728,1802,'2022-07-25 08:29:07'),(728,1803,'2022-07-25 08:29:07'),(728,1804,'2022-07-25 08:29:07'),(728,1805,'2022-07-25 08:29:07'),(728,1806,'2022-07-25 08:29:07'),(728,1807,'2022-07-25 08:29:07'),(728,1808,'2022-07-25 08:29:07'),(728,1809,'2022-07-25 08:29:07'),(728,1810,'2022-07-25 08:29:07'),(728,1811,'2022-07-25 08:29:07'),(728,1812,'2022-07-25 08:29:07'),(728,1814,'2022-07-25 08:29:07'),(728,1815,'2022-07-25 08:29:07'),(728,1816,'2022-07-25 08:29:07'),(728,2202,'2022-07-25 08:29:07'),(728,2663,'2022-07-25 08:29:07'),(728,2955,'2022-07-25 08:29:07'),(728,2963,'2022-07-25 08:29:07'),(730,1790,'2022-07-27 09:25:35'),(730,1791,'2022-07-27 09:25:35'),(730,1792,'2022-07-27 09:25:35'),(730,1793,'2022-07-27 09:25:35'),(730,1794,'2022-07-27 09:25:35'),(730,1795,'2022-07-27 09:25:35'),(730,1796,'2022-07-27 09:25:35'),(730,1798,'2022-07-27 09:25:35'),(730,1800,'2022-07-27 09:25:35'),(730,1801,'2022-07-27 09:25:35'),(730,1802,'2022-07-27 09:25:35'),(730,1803,'2022-07-27 09:25:35'),(730,1804,'2022-07-27 09:25:35'),(730,1805,'2022-07-27 09:25:35'),(730,1806,'2022-07-27 09:25:35'),(730,1807,'2022-07-27 09:25:35'),(730,1808,'2022-07-27 09:25:35'),(730,1809,'2022-07-27 09:25:35'),(730,1810,'2022-07-27 09:25:35'),(730,1811,'2022-07-27 09:25:35'),(730,1812,'2022-07-27 09:25:35'),(730,1814,'2022-07-27 09:25:35'),(730,1815,'2022-07-27 09:25:35'),(730,1816,'2022-07-27 09:25:35'),(730,2202,'2022-07-27 09:25:35'),(730,2663,'2022-07-27 09:25:35'),(731,608,'2022-08-04 10:54:23'),(731,985,'2022-08-04 10:54:23'),(731,1021,'2022-08-04 10:54:23'),(731,2964,'2022-08-04 10:54:23'),(731,2965,'2022-08-04 10:54:23'),(731,2966,'2022-08-04 10:54:23'),(731,2967,'2022-08-04 10:54:23'),(731,2969,'2022-08-04 10:54:23'),(731,2970,'2022-08-04 10:54:23'),(731,2972,'2022-08-04 10:54:23'),(731,2974,'2022-08-04 10:54:23'),(731,3156,'2022-10-13 02:35:22'),(737,2414,'2022-08-30 03:01:03'),(737,2417,'2022-08-30 03:01:03'),(737,2997,'2022-08-30 03:01:03'),(737,2999,'2022-08-30 03:01:03'),(738,2412,'2022-08-30 03:01:04'),(738,2996,'2022-08-30 03:01:04'),(740,3000,'2022-08-30 03:01:04'),(741,2413,'2022-08-30 03:01:04'),(742,2998,'2022-08-30 03:01:04'),(745,3007,'2022-08-30 03:01:04'),(745,3015,'2022-08-30 03:01:04'),(745,3016,'2022-08-30 03:01:04'),(745,3017,'2022-08-30 03:01:04'),(745,3035,'2023-04-04 08:44:36'),(746,3010,'2022-08-30 03:01:04'),(747,3010,'2022-08-30 03:01:04'),(748,3006,'2022-08-30 03:01:04'),(748,3011,'2022-08-30 03:01:04'),(749,2417,'2023-02-07 06:51:12'),(749,2999,'2022-08-30 03:01:04'),(749,3014,'2022-08-30 03:01:04'),(749,3018,'2022-08-30 03:01:04'),(749,3028,'2022-08-30 03:01:04'),(750,3008,'2022-08-30 03:01:04'),(750,3009,'2022-08-30 03:01:04'),(750,3012,'2022-08-30 03:01:04'),(750,3013,'2022-08-30 03:01:04'),(754,3028,'2022-08-30 03:01:04'),(754,3029,'2022-08-30 03:01:04'),(754,3031,'2022-08-30 03:01:04'),(754,3032,'2023-03-27 07:57:09'),(755,3035,'2022-08-30 03:01:04'),(757,3027,'2022-08-30 03:01:04'),(758,3034,'2022-08-30 03:01:04'),(759,3036,'2022-08-30 03:01:04'),(760,3033,'2022-08-30 03:01:04'),(762,3019,'2022-08-30 03:01:04'),(762,3020,'2022-08-30 03:01:04'),(762,3023,'2022-08-30 03:01:04'),(762,3024,'2022-08-30 03:01:04'),(762,3025,'2022-08-30 03:01:04'),(762,3026,'2022-08-30 03:01:04'),(765,2720,'2022-09-20 08:30:36'),(765,3167,'2022-09-20 08:30:36'),(765,3170,'2022-09-20 08:30:36'),(766,3168,'2022-09-20 08:30:36'),(767,3166,'2022-09-20 08:30:36'),(768,3169,'2022-09-20 08:30:36'),(769,3169,'2022-09-20 08:30:36'),(770,3250,'2022-10-27 06:49:34'),(773,3182,'2022-09-20 08:32:50'),(773,3183,'2022-09-20 08:32:50'),(773,3184,'2022-09-20 08:32:50'),(773,3185,'2022-09-20 08:32:50'),(773,3192,'2022-09-20 08:32:50'),(773,3205,'2022-09-20 08:32:50'),(773,3206,'2022-09-20 08:32:50'),(773,3207,'2022-09-20 08:32:50'),(773,3208,'2022-09-20 08:32:50'),(773,3210,'2022-09-20 08:32:50'),(773,3211,'2022-09-20 08:32:50'),(773,3212,'2022-09-20 08:32:50'),(774,3179,'2022-09-20 08:32:50'),(774,3181,'2022-09-20 08:32:50'),(774,3202,'2022-09-20 08:32:50'),(774,3203,'2022-09-20 08:32:50'),(774,3204,'2022-09-20 08:32:50'),(776,3195,'2022-09-20 08:32:50'),(777,3194,'2022-09-20 08:32:50'),(777,3196,'2022-09-20 08:32:50'),(777,3197,'2022-09-20 08:32:50'),(777,3198,'2022-09-20 08:32:50'),(778,3201,'2022-09-20 08:32:50'),(779,3193,'2022-09-20 08:32:50'),(779,3199,'2022-09-20 08:32:50'),(779,3200,'2022-09-20 08:32:50'),(781,2171,'2022-09-20 08:32:50'),(781,2175,'2022-09-20 08:32:50'),(781,3175,'2022-09-20 08:32:50'),(781,3176,'2022-09-20 08:32:50'),(781,3177,'2022-09-20 08:32:50'),(781,3178,'2022-09-20 08:32:50'),(781,3187,'2022-09-20 08:32:50'),(781,3209,'2022-09-20 08:32:50'),(782,3182,'2022-09-20 08:32:50'),(782,3183,'2022-09-20 08:32:50'),(782,3184,'2022-09-20 08:32:50'),(782,3185,'2022-09-20 08:32:50'),(782,3186,'2022-09-20 08:32:50'),(782,3192,'2022-09-20 08:32:50'),(782,3205,'2022-09-20 08:32:50'),(782,3206,'2022-09-20 08:32:50'),(782,3207,'2022-09-20 08:32:50'),(782,3208,'2022-09-20 08:32:50'),(782,3210,'2022-09-20 08:32:50'),(782,3211,'2022-09-20 08:32:50'),(782,3212,'2022-09-20 08:32:50'),(783,3177,'2022-09-20 08:32:51'),(783,3178,'2022-09-20 08:32:51'),(783,3179,'2022-09-20 08:32:51'),(783,3180,'2022-09-20 08:32:51'),(783,3181,'2022-09-20 08:32:51'),(783,3188,'2022-09-20 08:32:51'),(785,2907,'2023-05-18 10:49:02'),(785,2908,'2022-09-20 08:33:32'),(785,2910,'2022-09-20 08:33:32'),(785,2911,'2022-09-20 08:33:32'),(785,2912,'2022-09-20 08:33:32'),(785,3067,'2022-09-20 08:33:32'),(785,3070,'2022-09-20 08:33:32'),(785,3071,'2022-09-20 08:33:32'),(785,3072,'2022-09-20 08:33:32'),(785,3073,'2022-09-20 08:33:32'),(785,3074,'2022-09-20 08:33:32'),(785,3075,'2022-09-20 08:33:32'),(789,3093,'2023-05-04 09:43:01'),(789,3508,'2023-05-04 09:43:01'),(789,3525,'2023-05-04 09:43:01'),(789,3526,'2023-05-04 09:43:01'),(789,3537,'2023-05-04 09:43:01'),(789,3556,'2023-05-04 09:43:01'),(789,3601,'2023-05-04 09:43:01'),(789,3611,'2023-05-04 09:43:01'),(789,3645,'2023-05-05 09:26:34'),(789,4159,'2024-02-22 08:35:11'),(790,3514,'2023-05-04 09:43:01'),(792,1296,'2024-04-26 02:24:46'),(792,2663,'2024-04-26 02:23:29'),(792,3094,'2022-11-14 09:01:32'),(792,3955,'2024-04-26 02:25:11'),(794,2869,'2022-09-20 08:37:44'),(794,2886,'2022-09-20 08:37:44'),(794,3514,'2023-09-08 02:41:16'),(794,3537,'2023-09-08 02:39:07'),(795,2171,'2022-09-20 08:37:44'),(795,2173,'2022-09-20 08:37:44'),(795,2816,'2022-09-20 08:37:44'),(795,2817,'2022-09-20 08:37:44'),(795,2819,'2022-09-20 08:37:44'),(795,2826,'2022-09-20 08:37:44'),(795,2828,'2022-09-20 08:37:44'),(795,2832,'2022-09-20 08:37:44'),(795,2834,'2022-09-20 08:37:44'),(795,2835,'2022-09-20 08:37:44'),(795,3636,'2023-12-26 08:17:04'),(795,4153,'2023-12-27 06:11:54'),(796,2828,'2022-09-20 08:37:44'),(796,2864,'2022-09-20 08:37:44'),(796,2882,'2022-09-20 08:37:44'),(797,3148,'2023-05-04 09:43:02'),(798,3146,'2023-05-04 09:43:02'),(798,3149,'2023-05-04 09:43:02'),(798,3150,'2023-05-04 09:43:02'),(798,3152,'2023-05-04 09:43:02'),(799,54,'2023-05-04 09:43:02'),(799,3143,'2022-09-20 08:37:44'),(799,3145,'2022-09-20 08:37:44'),(799,3147,'2023-08-17 09:21:26'),(799,3148,'2022-09-20 08:37:44'),(804,3248,'2022-10-27 07:06:00'),(811,3017,'2022-10-27 08:10:11'),(811,3032,'2022-10-27 08:10:11'),(811,3035,'2023-04-04 08:45:03'),(811,3253,'2022-10-27 08:10:11'),(812,3255,'2022-10-27 08:10:11'),(813,3252,'2022-10-27 08:10:12'),(814,3004,'2022-10-27 08:10:12'),(814,3005,'2022-10-27 08:10:12'),(814,3254,'2022-10-27 08:10:12'),(814,3257,'2023-02-15 06:17:31'),(815,3003,'2022-10-27 08:10:12'),(818,3035,'2023-04-04 08:44:16'),(818,3261,'2022-10-27 08:10:12'),(818,3265,'2022-10-27 08:10:12'),(818,3266,'2022-10-27 08:10:12'),(818,3269,'2023-03-27 07:49:56'),(819,3267,'2022-10-27 08:10:12'),(820,3267,'2022-10-27 08:10:12'),(821,3031,'2022-10-27 08:10:12'),(821,3035,'2023-04-03 09:43:05'),(821,3259,'2022-10-27 08:10:12'),(821,3271,'2022-10-27 08:10:12'),(823,3021,'2022-10-27 08:10:12'),(823,3272,'2023-03-27 07:38:41'),(824,3262,'2022-10-27 08:10:12'),(825,3258,'2022-10-27 08:10:12'),(826,1873,'2022-11-09 09:00:33'),(826,3279,'2022-11-09 09:00:33'),(826,3280,'2022-11-09 09:00:33'),(826,3281,'2022-11-09 09:00:33'),(826,3282,'2022-11-09 09:00:33'),(826,3283,'2022-11-09 09:00:33'),(826,3286,'2022-11-09 09:00:33'),(826,3292,'2022-11-09 09:00:33'),(826,3293,'2022-11-09 09:00:33'),(828,3342,'2023-01-17 08:08:25'),(828,3343,'2024-03-19 08:09:19'),(828,3344,'2023-01-17 08:08:25'),(834,3377,'2023-02-08 09:29:36'),(835,3381,'2023-02-08 09:29:36'),(835,3383,'2023-02-08 09:29:36'),(836,3374,'2023-02-08 09:29:36'),(837,3376,'2023-02-08 09:29:36'),(837,3378,'2023-02-08 09:29:36'),(837,3380,'2023-02-08 09:29:36'),(837,3385,'2023-02-08 09:29:36'),(837,3386,'2023-02-08 09:29:36'),(838,3382,'2023-02-08 09:29:36'),(839,3384,'2023-02-08 09:29:36'),(840,3375,'2023-02-08 09:29:36'),(841,3364,'2023-02-08 09:29:36'),(842,3367,'2023-02-08 09:29:36'),(842,3369,'2023-02-08 09:29:36'),(843,3361,'2023-02-08 09:29:36'),(844,3363,'2023-02-08 09:29:36'),(844,3365,'2023-02-08 09:29:36'),(844,3370,'2023-02-08 09:29:36'),(844,3372,'2023-02-08 09:29:36'),(844,3373,'2023-02-08 09:29:36'),(845,3368,'2023-02-08 09:29:36'),(846,3364,'2023-02-08 09:29:37'),(846,3371,'2023-02-08 09:29:37'),(847,3362,'2023-02-08 09:29:37'),(848,3355,'2023-02-08 09:29:37'),(848,3356,'2023-02-08 09:29:37'),(848,3357,'2023-02-08 09:29:37'),(848,3358,'2023-02-08 09:29:37'),(848,3359,'2023-02-08 09:29:37'),(848,3360,'2023-02-08 09:29:37'),(849,3349,'2023-02-08 09:29:37'),(849,3350,'2023-02-08 09:29:37'),(849,3351,'2023-02-08 09:29:37'),(849,3352,'2023-02-08 09:29:37'),(849,3353,'2023-02-08 09:29:37'),(849,3354,'2023-02-08 09:29:37'),(851,223,'2023-02-08 09:38:05'),(851,1045,'2023-02-08 09:38:05'),(851,1258,'2023-02-08 09:38:05'),(851,1296,'2023-02-08 09:38:05'),(851,1297,'2023-02-08 09:38:05'),(851,2663,'2023-02-08 09:38:05'),(851,3955,'2023-09-08 09:29:51'),(852,961,'2023-02-08 09:38:06'),(852,1297,'2023-02-08 09:38:06'),(852,2663,'2023-02-08 09:38:06'),(852,2852,'2023-02-08 09:38:06'),(852,2853,'2023-02-08 09:38:06'),(852,3394,'2023-02-08 09:38:06'),(853,2074,'2023-02-09 01:20:47'),(854,2074,'2023-02-09 01:21:57'),(857,3405,'2023-03-29 09:38:33'),(857,3406,'2023-03-29 09:38:33'),(857,3409,'2023-03-29 09:38:33'),(857,3410,'2023-03-29 09:38:33'),(858,8,'2023-05-05 09:28:07'),(858,9,'2023-05-05 09:28:07'),(858,2813,'2023-05-05 09:28:07'),(858,2828,'2023-05-05 09:28:07'),(858,2867,'2023-04-12 08:00:31'),(858,2868,'2023-04-12 08:00:31'),(858,2869,'2023-04-12 08:00:31'),(858,2870,'2023-04-12 08:00:31'),(858,2871,'2023-04-12 08:00:31'),(858,2883,'2023-04-12 08:00:31'),(858,2884,'2023-04-12 08:00:31'),(858,2885,'2023-04-12 08:00:31'),(858,2886,'2023-04-12 08:00:31'),(858,3091,'2023-04-12 08:00:31'),(858,3092,'2023-04-12 08:00:31'),(858,3094,'2023-04-12 08:00:31'),(858,3525,'2023-05-05 09:28:07'),(858,3528,'2023-05-05 09:28:07'),(858,3605,'2023-05-05 09:28:07'),(858,3633,'2023-05-05 09:28:07'),(858,3637,'2023-05-05 09:28:07'),(861,3634,'2023-05-05 09:28:08'),(863,3508,'2023-09-08 04:26:00'),(863,3526,'2023-09-08 02:38:16'),(866,3700,'2023-05-19 01:16:33'),(866,3701,'2023-05-19 01:16:33'),(866,3702,'2023-05-19 03:13:47'),(867,3610,'2023-05-04 09:43:49'),(867,3614,'2023-05-04 09:43:49'),(867,3616,'2023-05-04 09:43:49'),(867,3621,'2023-05-04 09:43:49'),(867,3623,'2023-05-04 09:43:49'),(867,3766,'2024-03-19 03:49:30'),(868,1560,'2023-05-04 09:43:49'),(868,1561,'2023-05-04 09:43:49'),(868,1562,'2023-05-04 09:43:49'),(868,1563,'2023-05-04 09:43:49'),(868,1564,'2023-05-04 09:43:49'),(868,1565,'2023-05-04 09:43:49'),(868,1566,'2023-05-04 09:43:49'),(868,1567,'2023-05-04 09:43:49'),(868,1568,'2023-05-04 09:43:49'),(868,1569,'2023-05-04 09:43:49'),(869,1579,'2023-05-04 09:43:50'),(869,1925,'2023-05-04 09:43:50'),(869,1926,'2023-05-04 09:43:50'),(869,1927,'2023-05-04 09:43:50'),(869,1934,'2023-05-04 09:43:50'),(869,1935,'2023-05-04 09:43:50'),(869,1936,'2023-05-04 09:43:50'),(869,2077,'2023-05-04 09:43:50'),(870,14,'2023-05-04 09:43:50'),(870,1014,'2023-05-04 09:43:50'),(870,1016,'2023-05-04 09:43:50'),(870,1029,'2023-05-04 09:43:50'),(870,1047,'2023-05-04 09:43:50'),(870,1049,'2023-05-04 09:43:50'),(870,1054,'2023-05-04 09:43:50'),(870,1055,'2023-05-04 09:43:50'),(870,1072,'2023-05-04 09:43:50'),(870,1415,'2023-05-04 09:43:50'),(870,1539,'2023-05-04 09:43:50'),(870,1579,'2023-05-04 09:43:50'),(870,1705,'2023-05-04 09:43:50'),(870,1706,'2023-05-04 09:43:50'),(870,1707,'2023-05-04 09:43:50'),(870,1708,'2023-05-04 09:43:50'),(870,1709,'2023-05-04 09:43:50'),(870,1710,'2023-05-04 09:43:50'),(870,1726,'2023-05-04 09:43:50'),(870,1935,'2023-05-04 09:43:50'),(870,2074,'2023-05-04 09:43:50'),(870,2076,'2023-05-04 09:43:50'),(870,2077,'2023-05-04 09:43:50'),(871,1938,'2024-05-14 07:56:01'),(871,2661,'2023-05-04 09:43:50'),(871,2828,'2023-05-04 10:17:08'),(871,3094,'2023-05-08 07:01:28'),(871,3600,'2023-05-04 09:43:50'),(871,3603,'2023-05-04 09:43:50'),(871,3606,'2023-05-04 09:43:50'),(871,3607,'2023-05-04 09:43:50'),(871,3609,'2023-05-04 09:43:50'),(871,3612,'2023-05-04 09:43:50'),(871,3617,'2023-05-04 09:43:50'),(871,3619,'2023-05-04 09:43:50'),(871,3620,'2023-05-04 09:43:50'),(871,3624,'2023-05-04 09:43:50'),(871,3627,'2023-05-04 09:43:50'),(871,3637,'2023-05-05 01:35:05'),(871,3692,'2023-07-04 07:01:29'),(871,4344,'2024-05-14 07:56:01'),(872,2869,'2023-05-05 09:28:07'),(873,1405,'2023-05-18 10:07:48'),(873,2199,'2023-05-18 10:07:48'),(873,2200,'2023-05-18 10:07:48'),(873,2206,'2023-05-18 10:07:48'),(873,2208,'2023-05-18 10:07:48'),(873,2209,'2023-05-18 10:07:48'),(873,2210,'2023-05-18 10:07:48'),(873,2215,'2023-05-18 10:07:48'),(873,2221,'2023-05-18 10:07:48'),(873,2387,'2023-05-18 10:07:48'),(873,2388,'2023-05-18 10:07:48'),(873,2389,'2023-05-18 10:07:48'),(873,2391,'2023-05-18 10:07:48'),(873,2395,'2023-05-18 10:07:48'),(874,3199,'2024-09-09 03:33:39'),(874,3695,'2023-05-18 10:49:19'),(875,3693,'2023-05-18 10:49:19'),(875,3694,'2023-05-18 10:49:19'),(876,3694,'2023-05-18 10:49:19'),(877,2216,'2023-05-18 10:07:48'),(877,2224,'2023-05-18 10:07:48'),(877,2225,'2023-05-18 10:07:48'),(877,2373,'2023-05-18 10:07:48'),(877,2377,'2023-05-18 10:07:48'),(877,2390,'2023-05-18 10:07:48'),(877,2396,'2023-05-18 10:07:48'),(879,3599,'2023-05-18 10:08:00'),(879,3609,'2023-05-18 10:08:00'),(879,3627,'2023-05-18 10:08:00'),(882,2743,'2023-05-18 10:49:02'),(882,2746,'2023-05-18 10:49:02'),(882,2748,'2024-09-29 02:10:15'),(882,2749,'2024-09-29 02:10:15'),(882,2750,'2024-09-29 02:10:15'),(882,3689,'2024-09-29 02:10:15'),(882,3690,'2023-05-18 10:49:02'),(883,3689,'2023-05-18 10:49:03'),(884,2748,'2023-05-18 10:49:03'),(884,3689,'2023-05-18 10:49:03'),(885,2749,'2023-05-18 10:49:03'),(885,3689,'2023-05-18 10:49:03'),(886,2750,'2023-05-18 10:49:03'),(887,1899,'2023-05-22 02:57:12'),(887,2081,'2023-05-22 02:57:12'),(887,2844,'2023-05-22 02:57:12'),(887,3504,'2023-05-22 02:57:12'),(887,3657,'2023-07-07 06:29:03'),(887,3658,'2023-07-07 06:29:03'),(887,3754,'2023-06-16 09:14:32'),(887,3871,'2023-07-28 07:33:38'),(888,3732,'2023-07-05 08:09:18'),(888,3735,'2023-07-05 08:07:35'),(890,3756,'2023-06-14 10:06:01'),(890,3760,'2023-06-14 10:06:01'),(890,3766,'2023-06-14 10:06:01'),(892,2739,'2023-06-14 10:06:01'),(892,2743,'2023-06-14 10:06:01'),(892,2744,'2023-06-14 10:06:01'),(892,3758,'2023-06-14 10:06:01'),(893,2741,'2023-06-14 10:06:01'),(893,4394,'2024-07-11 05:46:29'),(894,2740,'2023-06-14 10:06:02'),(894,4394,'2024-07-11 05:46:44'),(895,2742,'2023-06-14 10:06:02'),(896,2746,'2023-06-14 10:06:02'),(896,2747,'2023-06-14 10:06:02'),(896,3762,'2023-06-14 10:06:02'),(896,3769,'2023-06-14 10:06:02'),(896,3771,'2023-06-14 10:06:02'),(897,2748,'2023-06-14 10:06:02'),(897,2751,'2023-06-14 10:06:02'),(897,2752,'2023-06-14 10:06:02'),(898,2749,'2023-06-14 10:06:02'),(899,2750,'2023-06-14 10:06:02'),(900,3757,'2023-06-14 10:06:02'),(900,3764,'2023-06-14 10:06:02'),(901,3377,'2023-06-16 09:17:18'),(901,3380,'2023-06-16 09:17:18'),(901,3381,'2023-06-14 10:29:03'),(901,3382,'2023-06-16 09:17:18'),(901,3383,'2023-06-14 10:06:02'),(901,3384,'2023-06-16 09:17:18'),(902,3375,'2023-06-14 10:06:03'),(902,3378,'2023-06-14 10:06:03'),(902,3385,'2023-06-14 10:06:03'),(902,3386,'2023-06-14 10:06:03'),(903,3376,'2023-06-14 10:06:03'),(903,3378,'2023-06-14 10:06:03'),(903,3385,'2023-06-14 10:06:03'),(903,3386,'2023-06-14 10:06:03'),(904,3759,'2023-06-14 10:06:03'),(904,3770,'2023-06-14 10:06:03'),(905,3374,'2023-06-14 10:06:03'),(906,3364,'2023-06-14 10:29:03'),(906,3367,'2023-06-14 10:06:03'),(906,3368,'2023-06-14 10:06:03'),(906,3369,'2023-06-14 10:06:03'),(907,3362,'2023-06-14 10:06:04'),(907,3363,'2023-06-14 10:06:04'),(907,3768,'2023-06-14 10:06:04'),(907,3772,'2023-06-14 10:06:04'),(908,3365,'2023-06-14 10:06:04'),(908,3372,'2023-06-14 10:06:04'),(908,3373,'2023-06-14 10:06:04'),(909,3761,'2023-06-14 10:06:04'),(909,3765,'2023-06-14 10:06:04'),(910,3361,'2023-06-14 10:06:04'),(911,3355,'2023-06-14 10:29:03'),(911,3356,'2023-06-14 10:29:03'),(911,3357,'2023-06-14 10:29:03'),(911,3358,'2023-06-20 06:37:26'),(911,3359,'2023-06-14 10:29:03'),(911,3360,'2023-06-14 10:29:03'),(911,3364,'2023-06-14 10:29:03'),(912,3349,'2023-06-14 10:29:03'),(912,3350,'2023-06-14 10:29:03'),(912,3352,'2023-06-14 10:29:03'),(912,3353,'2023-06-14 10:29:03'),(912,3961,'2023-09-28 05:47:59'),(914,3756,'2023-06-16 09:16:28'),(914,3760,'2023-06-16 09:16:28'),(914,3766,'2023-06-16 09:16:28'),(917,3769,'2023-06-16 09:16:28'),(919,3756,'2023-06-16 09:16:28'),(940,3880,'2023-08-07 07:25:19'),(941,3898,'2023-08-07 07:26:12'),(941,3910,'2023-08-07 07:26:12'),(941,3914,'2023-08-07 07:26:12'),(942,3894,'2023-08-07 07:37:32'),(943,3892,'2023-08-07 07:38:32'),(943,3909,'2023-08-07 07:38:32'),(945,3915,'2023-08-07 07:41:41'),(945,3916,'2023-08-07 07:41:41'),(945,3917,'2023-08-07 07:41:41'),(945,3918,'2023-08-07 07:41:41'),(945,3919,'2023-08-07 07:41:41'),(945,3920,'2023-08-07 07:41:41'),(945,3921,'2023-08-07 07:41:41'),(945,3922,'2023-08-07 07:41:41'),(945,3924,'2023-08-07 07:41:41'),(945,3925,'2023-08-07 07:41:41'),(945,3926,'2023-08-07 07:41:41'),(946,3915,'2023-08-07 07:42:31'),(946,3920,'2023-08-07 07:42:31'),(947,3893,'2023-08-07 07:43:20'),(947,3900,'2023-08-07 07:43:20'),(948,3877,'2023-08-07 07:44:16'),(948,3885,'2023-08-07 07:44:16'),(948,3923,'2023-08-07 07:44:16'),(948,3926,'2023-08-07 07:44:16'),(948,4216,'2024-03-01 06:43:39'),(949,3890,'2023-08-07 07:47:13'),(949,3895,'2023-08-07 07:47:13'),(949,3896,'2023-08-07 07:47:13'),(949,3905,'2023-08-07 07:47:13'),(951,3931,'2023-08-28 05:57:06'),(951,3936,'2023-09-12 01:19:32'),(951,3957,'2023-09-18 06:34:22'),(954,3489,'2023-12-19 07:44:08'),(954,3491,'2024-02-23 02:16:40'),(954,3493,'2023-12-27 03:43:17'),(954,3942,'2024-02-23 02:15:46'),(954,4160,'2024-02-10 12:47:48'),(959,1544,'2023-09-27 10:02:57'),(961,4087,'2023-11-14 08:03:06'),(961,4088,'2023-11-15 02:41:34'),(961,4090,'2023-11-14 08:03:06'),(961,4095,'2023-11-15 02:41:34'),(961,4096,'2023-11-14 08:42:43'),(961,4098,'2023-11-15 02:41:34'),(961,4099,'2023-11-14 08:43:00'),(961,4101,'2023-11-15 02:41:34'),(961,4103,'2023-11-15 02:41:34'),(961,4106,'2023-11-15 02:41:34'),(963,2856,'2023-11-29 09:46:32'),(964,4193,'2024-02-23 01:17:12'),(964,4199,'2024-02-23 01:17:12'),(964,4205,'2024-02-23 01:17:12'),(965,2074,'2024-02-23 01:57:25'),(966,4232,'2024-04-01 06:51:48'),(966,4233,'2024-04-01 06:45:57'),(966,4234,'2024-04-01 06:51:48'),(966,4235,'2024-04-01 06:51:48'),(966,4236,'2024-04-01 06:42:09'),(966,4237,'2024-04-01 06:42:09'),(966,4238,'2024-04-01 06:44:13'),(966,4239,'2024-04-01 07:19:45'),(970,4314,'2024-05-30 03:25:29'),(970,4315,'2024-05-30 03:25:29'),(970,4316,'2024-05-30 03:25:29'),(970,4317,'2024-05-30 03:25:29'),(970,4319,'2024-05-30 03:25:29'),(970,4320,'2024-05-30 03:25:29'),(970,4321,'2024-05-30 03:25:29'),(970,4323,'2024-05-30 03:25:29'),(970,4325,'2024-05-30 03:25:29'),(970,4337,'2024-05-30 03:25:29'),(970,4338,'2024-05-30 03:25:29'),(970,4339,'2024-05-30 03:25:29'),(970,4340,'2024-05-30 03:25:29'),(970,4341,'2024-05-30 03:25:29'),(970,4345,'2024-05-30 03:25:29'),(970,4349,'2024-05-30 03:25:29'),(970,4352,'2024-06-04 06:21:29'),(970,4353,'2024-06-05 01:38:00'),(970,4372,'2024-07-03 08:08:25'),(970,4373,'2024-07-03 08:08:25'),(970,4379,'2024-07-03 08:08:25'),(971,4357,'2024-06-14 08:41:59'),(982,4385,'2024-07-05 01:25:34'),(982,4386,'2024-07-05 01:25:34'),(982,4387,'2024-07-05 01:25:34'),(989,2697,'2024-07-18 09:27:06'),(989,4381,'2024-07-18 09:27:06'),(989,4404,'2024-07-18 09:27:06'),(989,4405,'2024-07-18 09:27:06'),(989,4416,'2024-07-18 09:27:06'),(989,4417,'2024-07-18 09:27:06'),(989,4418,'2024-07-18 09:27:06'),(989,4419,'2024-07-18 09:27:06'),(989,4420,'2024-07-18 09:27:06'),(989,4421,'2024-07-18 09:27:06'),(989,4424,'2024-07-18 09:27:06'),(989,4427,'2024-07-18 09:27:06'),(989,4429,'2024-07-18 09:27:06'),(989,4430,'2024-07-18 09:27:06'),(989,4431,'2024-07-18 09:27:06'),(989,4433,'2024-07-18 09:27:06'),(989,4435,'2024-07-18 09:27:06'),(989,4436,'2024-07-18 09:27:06'),(989,4437,'2024-07-18 09:27:06'),(990,3248,'2024-07-18 09:27:07'),(990,4381,'2024-07-18 09:27:07'),(990,4407,'2024-07-18 09:27:07'),(990,4409,'2024-07-18 09:27:07'),(991,4406,'2024-07-18 09:27:08'),(991,4408,'2024-07-18 09:27:08'),(992,4396,'2024-07-18 09:27:08'),(992,4397,'2024-07-18 09:27:08'),(992,4398,'2024-07-18 09:27:08'),(992,4399,'2024-07-18 09:27:08'),(992,4400,'2024-07-18 09:27:08'),(992,4401,'2024-07-18 09:27:08'),(992,4402,'2024-07-18 09:27:08'),(992,4403,'2024-07-18 09:27:08'),(993,3942,'2024-07-18 09:31:14'),(993,3945,'2024-07-18 09:31:14'),(993,4132,'2024-07-18 09:31:14'),(993,4244,'2024-07-18 09:31:14'),(993,4413,'2024-07-18 09:31:14'),(993,4414,'2024-07-18 09:31:14'),(994,4269,'2024-07-18 09:31:15'),(996,4305,'2024-07-18 09:31:15'),(998,4411,'2024-07-18 09:31:15'),(999,3319,'2024-07-18 09:31:15'),(999,3322,'2024-07-18 09:31:15'),(999,3323,'2024-07-18 09:31:15'),(1000,2816,'2024-07-18 09:31:16'),(1000,3094,'2024-07-18 09:31:16'),(1000,3526,'2024-07-18 09:31:16'),(1000,3537,'2024-07-18 09:31:16'),(1000,3790,'2024-07-18 09:31:16'),(1000,3791,'2024-07-18 09:31:16'),(1000,3793,'2024-07-18 09:31:16'),(1000,3795,'2024-07-18 09:31:16'),(1000,3800,'2024-07-18 09:31:16'),(1000,3801,'2024-07-18 09:31:16'),(1000,3803,'2024-07-18 09:31:16'),(1000,3815,'2024-07-18 09:31:16'),(1000,3816,'2024-07-18 09:31:16'),(1000,4132,'2024-07-18 09:31:16'),(1000,4271,'2024-07-18 09:31:16'),(1000,4272,'2024-07-18 09:31:16'),(1001,3166,'2024-07-18 09:31:16'),(1001,4240,'2024-07-18 09:31:16'),(1001,4256,'2024-07-18 09:31:16'),(1001,4257,'2024-07-18 09:31:16'),(1001,4258,'2024-07-18 09:31:16'),(1002,3785,'2024-07-18 09:31:17'),(1002,3799,'2024-07-18 09:31:17'),(1002,4410,'2024-07-18 09:31:17'),(1002,4412,'2024-07-18 09:31:17'),(1003,608,'2024-07-18 09:31:17'),(1003,747,'2024-07-18 09:31:17'),(1003,3805,'2024-07-18 09:31:17'),(1003,3945,'2024-07-18 09:31:17'),(1003,4122,'2024-07-18 09:31:17'),(1003,4124,'2024-07-18 09:31:17'),(1003,4133,'2024-07-18 09:31:17'),(1003,4134,'2024-07-18 09:31:17'),(1003,4272,'2024-07-18 09:31:17'),(1003,4446,'2024-07-23 03:11:19'),(1003,4448,'2024-07-23 03:11:19'),(1004,4131,'2024-07-18 09:31:18'),(1006,3637,'2024-07-19 02:32:05'),(1006,3804,'2024-07-18 09:31:18'),(1006,3806,'2024-07-18 09:31:18'),(1006,3807,'2024-07-18 09:31:18'),(1006,3809,'2024-07-18 09:31:18'),(1006,3810,'2024-07-18 09:31:18'),(1006,3813,'2024-07-18 09:31:18'),(1007,4117,'2024-07-18 09:31:19'),(1007,4118,'2024-07-18 09:31:19'),(1007,4120,'2024-07-18 09:31:19'),(1007,4126,'2024-07-18 09:31:19'),(1007,4127,'2024-07-18 09:31:19'),(1007,4132,'2024-07-18 09:31:19'),(1007,4135,'2024-07-18 09:31:19'),(1007,4244,'2024-07-18 09:31:19'),(1007,4388,'2024-07-18 09:31:19'),(1007,4389,'2024-07-18 09:31:19'),(1007,4390,'2024-07-18 09:31:19'),(1007,4391,'2024-07-18 09:31:19'),(1007,4392,'2024-07-18 09:31:19'),(1007,4393,'2024-07-18 09:31:19'),(1007,4415,'2024-07-18 09:31:19'),(1008,4118,'2024-07-18 09:31:19'),(1009,4391,'2024-07-18 09:31:20'),(1010,608,'2024-07-18 09:31:20'),(1010,747,'2024-07-18 09:31:20'),(1010,3945,'2024-07-18 09:31:20'),(1010,4264,'2024-07-18 09:31:20'),(1010,4265,'2024-07-18 09:31:20'),(1010,4266,'2024-07-18 09:31:20'),(1010,4267,'2024-07-18 09:31:20'),(1010,4270,'2024-07-18 09:31:20'),(1011,4268,'2024-07-18 09:31:20'),(1011,4269,'2024-07-18 09:31:20'),(1011,4713,'2024-09-12 02:46:10'),(1011,4714,'2024-09-12 02:46:10'),(1011,4715,'2024-09-12 02:46:10'),(1011,4716,'2024-09-12 02:46:10'),(1011,4717,'2024-09-12 02:46:10'),(1011,4718,'2024-09-12 02:46:10'),(1011,4719,'2024-09-12 02:46:10'),(1011,4720,'2024-09-12 02:46:10'),(1011,4721,'2024-09-12 02:46:10'),(1011,4722,'2024-09-12 02:46:10'),(1011,4723,'2024-09-12 02:46:10'),(1011,4724,'2024-09-12 02:46:10'),(1011,4725,'2024-09-12 02:46:10'),(1011,4726,'2024-09-12 02:46:10'),(1013,3416,'2024-09-23 05:56:08'),(1013,3870,'2024-09-23 05:56:08'),(1013,4728,'2024-09-23 05:56:40'),(1014,3788,'2024-08-23 02:32:34'),(1014,3798,'2024-08-23 02:32:34'),(1014,4460,'2024-08-23 02:32:34'),(1014,4461,'2024-08-23 02:32:34'),(1014,4462,'2024-08-23 02:32:34'),(1014,4463,'2024-08-23 02:32:34'),(1014,4464,'2024-08-23 02:32:34'),(1014,4465,'2024-08-23 02:32:34'),(1014,4466,'2024-08-23 02:32:34'),(1014,4467,'2024-08-23 02:32:34'),(1014,4468,'2024-08-23 02:32:34'),(1014,4469,'2024-08-23 02:32:34'),(1014,4470,'2024-08-23 02:32:34'),(1014,4471,'2024-08-23 02:32:34'),(1014,4472,'2024-08-23 02:32:34'),(1014,4473,'2024-08-23 02:32:34'),(1014,4474,'2024-08-23 02:32:34'),(1014,4475,'2024-08-23 02:32:34'),(1014,4476,'2024-08-23 02:32:34'),(1014,4477,'2024-08-23 02:32:34'),(1014,4478,'2024-08-23 02:32:34'),(1014,4479,'2024-08-23 02:32:34'),(1015,4458,'2024-08-23 02:32:34'),(1022,1872,'2024-09-10 01:46:27'),(1022,4686,'2024-09-10 01:46:27'),(1022,4688,'2024-09-10 01:46:27'),(1022,4689,'2024-09-10 01:46:27'),(1022,4690,'2024-09-10 01:46:27'),(1022,4691,'2024-09-10 01:46:27'),(1022,4694,'2024-09-10 01:46:27'),(1022,4696,'2024-09-10 01:46:27'),(1022,4699,'2024-09-10 01:46:27'),(1022,4700,'2024-09-10 01:46:27'),(1022,4701,'2024-09-10 01:46:27'),(1022,4702,'2024-09-10 01:46:27'),(1022,4704,'2024-09-10 01:46:27'),(1022,4707,'2024-09-10 01:46:27'),(1022,4710,'2024-09-10 01:46:27'),(1022,4711,'2024-09-10 01:46:27'),(1024,4659,'2024-09-29 02:10:12'),(1025,4073,'2024-09-29 02:10:13'),(1026,4658,'2024-09-29 02:10:13'),(1026,4664,'2024-09-29 02:10:13'),(1026,4673,'2024-09-29 02:10:13'),(1026,4675,'2024-09-29 02:10:13'),(1027,4658,'2024-09-29 02:10:14'),(1027,4664,'2024-09-29 02:10:14'),(1027,4668,'2024-09-29 02:10:14'),(1027,4673,'2024-09-29 02:10:14'),(1027,4675,'2024-09-29 02:10:14'),(1027,4733,'2024-09-29 02:10:14'),(1028,4674,'2024-09-29 02:10:14'),(1029,4656,'2024-09-29 02:10:14'),(1030,4670,'2024-09-29 02:10:15'),(1031,4657,'2024-09-29 02:10:15'),(1031,4672,'2024-09-29 02:10:15'),(1033,4665,'2024-09-29 02:10:16'),(1033,4667,'2024-09-29 02:10:16'),(1033,4668,'2024-09-29 02:10:16'),(1033,4671,'2024-09-29 02:10:16'),(1033,4682,'2024-09-29 02:10:16'),(1034,4680,'2024-09-29 02:10:16'); +INSERT INTO `sys_action_api` VALUES (29,39,'2020-05-28 06:35:55'),(29,53,'2020-06-05 09:31:53'),(29,2565,'2022-04-27 03:29:09'),(29,2601,'2022-04-27 03:29:09'),(30,5,'2020-05-28 02:39:29'),(30,39,'2020-05-28 06:36:33'),(31,4,'2020-05-28 02:40:08'),(32,51,'2020-05-28 07:38:07'),(32,52,'2020-05-28 07:38:07'),(33,2,'2020-05-28 02:56:52'),(34,18,'2020-06-22 09:44:52'),(34,22,'2020-06-22 06:53:27'),(34,27,'2020-06-22 06:53:27'),(34,32,'2020-06-22 09:49:24'),(34,36,'2020-06-22 09:42:26'),(35,18,'2020-06-22 09:45:18'),(35,23,'2020-05-28 07:35:34'),(35,28,'2020-05-28 07:35:08'),(35,32,'2020-06-22 09:49:38'),(35,36,'2020-06-22 09:42:52'),(36,18,'2020-06-22 09:45:37'),(36,24,'2020-05-28 07:34:02'),(36,30,'2020-05-28 07:34:02'),(36,36,'2020-06-22 09:43:11'),(37,253,'2020-06-22 05:39:09'),(38,37,'2020-05-28 07:32:57'),(39,51,'2020-05-28 07:36:56'),(39,52,'2020-05-28 07:36:56'),(40,38,'2020-05-28 07:32:22'),(41,9,'2020-05-28 07:31:08'),(42,14,'2020-05-28 07:31:20'),(43,10,'2020-06-22 09:53:58'),(44,13,'2020-05-28 07:31:57'),(45,11,'2020-06-01 09:08:42'),(47,9,'2020-06-03 08:37:25'),(49,11,'2020-06-03 11:31:34'),(49,14,'2020-06-03 11:31:34'),(50,11,'2020-06-03 11:32:53'),(52,44,'2020-06-03 12:02:27'),(52,252,'2020-06-22 05:40:14'),(53,1214,'2020-12-28 08:04:01'),(53,1215,'2020-12-28 08:04:01'),(53,2564,'2022-04-27 03:29:09'),(53,2582,'2023-01-17 08:08:25'),(56,49,'2020-06-22 10:07:56'),(57,50,'2020-06-22 10:05:55'),(57,57,'2020-06-22 03:15:43'),(57,1421,'2021-03-19 06:27:41'),(57,1422,'2021-03-19 06:27:41'),(58,57,'2020-06-22 03:15:19'),(58,2573,'2022-04-27 03:29:09'),(60,125,'2020-06-04 09:35:56'),(61,124,'2020-06-04 09:36:42'),(68,262,'2020-06-22 10:19:41'),(69,267,'2020-06-22 10:20:16'),(70,262,'2020-06-22 10:21:19'),(71,265,'2020-06-22 10:22:42'),(72,99,'2020-06-11 09:13:33'),(73,99,'2020-06-11 09:13:33'),(74,99,'2020-06-11 09:13:33'),(79,2573,'2022-04-27 03:29:09'),(82,204,'2020-06-22 09:58:18'),(83,75,'2020-06-22 07:57:15'),(83,203,'2020-06-22 07:57:15'),(84,79,'2020-06-22 08:02:09'),(85,76,'2020-06-22 08:03:45'),(85,79,'2020-06-22 08:03:45'),(86,204,'2020-06-23 01:25:39'),(87,206,'2020-06-23 02:50:49'),(87,237,'2020-06-23 01:26:11'),(88,86,'2020-06-22 08:11:33'),(89,206,'2020-06-23 02:50:33'),(89,236,'2020-06-23 01:27:27'),(91,248,'2020-06-22 10:12:27'),(92,247,'2020-06-22 10:13:17'),(93,54,'2020-06-22 10:18:38'),(94,54,'2020-06-22 10:19:39'),(98,203,'2020-06-23 02:09:44'),(98,234,'2020-06-23 02:09:44'),(99,235,'2020-06-23 02:19:34'),(99,238,'2020-07-01 01:27:12'),(101,238,'2020-06-23 02:23:25'),(107,242,'2020-06-23 02:45:47'),(108,140,'2020-06-23 02:48:36'),(108,205,'2020-06-30 07:11:12'),(108,241,'2020-06-23 02:48:36'),(109,243,'2020-06-23 02:50:02'),(111,297,'2020-06-24 01:35:11'),(111,298,'2020-06-24 01:35:11'),(111,299,'2020-06-24 01:31:40'),(112,296,'2020-06-24 01:32:51'),(113,88,'2020-06-24 02:24:27'),(113,191,'2020-06-28 02:55:56'),(113,193,'2020-06-30 07:10:41'),(114,607,'2021-01-29 09:48:36'),(114,608,'2020-10-09 09:38:15'),(114,755,'2020-10-09 09:38:15'),(114,1187,'2021-01-29 09:48:36'),(114,1188,'2021-01-29 09:48:36'),(114,1194,'2021-01-29 09:48:36'),(114,1195,'2021-01-29 09:48:36'),(114,1196,'2021-01-29 09:48:36'),(114,2330,'2022-03-14 01:55:55'),(114,2495,'2023-02-09 06:07:14'),(114,2709,'2022-05-25 09:47:25'),(114,2712,'2022-05-25 09:47:25'),(114,3291,'2023-09-27 10:02:36'),(114,3406,'2024-02-21 09:07:50'),(115,608,'2020-10-09 09:38:15'),(115,755,'2020-10-09 09:38:15'),(116,177,'2020-06-30 06:41:05'),(117,166,'2020-06-24 02:26:19'),(117,187,'2020-06-30 06:35:42'),(117,228,'2020-06-30 06:35:42'),(117,349,'2020-06-30 07:13:23'),(118,89,'2020-06-24 02:27:11'),(118,166,'2020-06-24 02:27:11'),(118,175,'2020-06-30 06:36:41'),(119,176,'2020-06-30 06:40:25'),(120,283,'2020-06-24 05:35:54'),(120,999,'2020-10-09 09:38:09'),(121,284,'2020-06-24 05:36:53'),(121,997,'2020-10-09 09:38:09'),(122,282,'2020-06-24 05:38:10'),(122,996,'2020-10-09 09:38:09'),(129,424,'2020-07-01 08:49:02'),(132,427,'2020-07-01 08:49:30'),(133,424,'2020-07-01 08:47:54'),(134,436,'2020-07-01 08:50:27'),(144,407,'2020-07-01 08:37:21'),(145,410,'2020-07-01 08:35:40'),(146,454,'2020-07-01 08:38:51'),(147,412,'2020-07-01 08:40:13'),(148,319,'2020-06-30 08:18:39'),(150,421,'2020-07-01 08:41:28'),(151,421,'2020-07-01 08:41:49'),(152,419,'2020-07-01 08:42:43'),(153,422,'2020-07-01 08:43:31'),(154,442,'2020-07-01 08:43:53'),(155,443,'2020-07-01 08:44:10'),(156,309,'2020-06-30 08:27:07'),(157,455,'2020-07-01 08:42:30'),(159,426,'2020-06-30 09:47:56'),(166,434,'2020-07-01 08:51:11'),(177,260,'2020-06-30 06:19:23'),(178,268,'2020-06-30 06:23:57'),(179,287,'2020-06-30 06:28:28'),(179,993,'2020-10-09 09:38:09'),(180,274,'2020-06-30 06:30:44'),(180,1514,'2021-04-20 09:46:45'),(180,1733,'2022-01-18 11:23:29'),(180,2060,'2022-01-18 11:23:29'),(182,273,'2020-06-30 06:33:11'),(183,256,'2020-06-30 06:34:19'),(185,288,'2020-06-30 06:38:03'),(186,304,'2020-06-30 06:42:11'),(187,307,'2020-06-30 06:44:29'),(188,327,'2020-06-30 07:28:01'),(188,329,'2020-06-30 07:26:20'),(191,273,'2020-06-30 07:59:55'),(192,256,'2020-06-30 08:00:41'),(193,327,'2020-06-30 08:25:49'),(193,329,'2020-06-30 08:25:49'),(195,425,'2020-06-30 09:40:35'),(196,238,'2020-07-01 01:26:54'),(197,610,'2020-10-09 09:38:13'),(197,880,'2021-01-29 09:48:35'),(197,1035,'2021-01-29 09:48:35'),(197,1202,'2021-01-29 09:48:35'),(197,1203,'2021-01-29 09:48:35'),(197,1204,'2021-01-29 09:48:35'),(197,1205,'2021-01-29 09:48:35'),(197,2334,'2022-03-14 01:55:54'),(197,4031,'2023-09-27 10:02:36'),(198,610,'2020-10-09 09:38:14'),(199,187,'2020-10-09 09:38:14'),(199,759,'2020-10-09 09:38:14'),(200,242,'2020-07-01 02:02:42'),(200,244,'2020-07-01 02:02:42'),(200,450,'2020-07-01 02:02:42'),(201,238,'2020-07-01 02:11:21'),(213,179,'2021-03-19 06:27:43'),(213,183,'2021-03-19 06:27:43'),(213,234,'2020-07-02 02:10:02'),(213,879,'2020-10-09 09:38:13'),(213,882,'2021-03-19 06:27:43'),(213,883,'2021-03-19 06:27:43'),(213,935,'2021-03-19 06:27:43'),(213,1089,'2021-01-29 09:48:35'),(213,1424,'2021-03-19 06:27:43'),(213,1911,'2022-01-10 03:43:24'),(214,179,'2021-03-19 06:27:43'),(214,183,'2021-03-19 06:27:43'),(214,235,'2020-07-02 02:11:30'),(214,238,'2020-07-02 02:11:30'),(214,882,'2021-03-19 06:27:43'),(214,883,'2021-03-19 06:27:43'),(214,1089,'2021-01-29 09:48:35'),(214,1100,'2020-10-09 09:38:13'),(214,1911,'2022-01-10 03:43:24'),(216,183,'2021-03-19 06:27:43'),(216,238,'2020-07-02 02:12:32'),(216,878,'2020-10-09 09:38:13'),(216,881,'2021-03-19 06:27:43'),(216,882,'2021-03-19 06:27:43'),(216,883,'2021-03-19 06:27:43'),(217,179,'2021-03-19 06:27:43'),(217,180,'2021-03-19 06:27:43'),(217,183,'2021-03-19 06:27:43'),(217,187,'2020-07-02 02:14:15'),(217,753,'2021-03-19 06:27:43'),(217,754,'2021-03-19 06:27:43'),(217,759,'2020-10-09 09:38:14'),(217,1258,'2021-01-29 09:48:35'),(217,1578,'2022-04-27 03:29:17'),(217,1579,'2022-04-27 03:29:17'),(217,3403,'2023-02-09 06:07:14'),(220,175,'2020-07-02 02:16:19'),(220,179,'2021-03-19 06:27:43'),(220,180,'2021-03-19 06:27:43'),(220,183,'2021-03-19 06:27:43'),(220,187,'2020-07-02 02:16:19'),(220,759,'2020-10-09 09:38:15'),(220,884,'2020-10-09 09:38:15'),(220,1100,'2020-10-09 09:38:15'),(220,3403,'2023-02-09 06:07:14'),(221,183,'2021-03-19 06:27:43'),(221,191,'2020-07-02 02:17:42'),(221,193,'2020-07-02 02:17:42'),(221,754,'2021-03-19 06:27:43'),(221,884,'2020-10-09 09:38:15'),(221,1424,'2021-03-19 06:27:43'),(221,3403,'2023-02-09 06:07:14'),(222,242,'2020-07-02 02:19:34'),(222,244,'2020-07-02 02:19:34'),(222,450,'2020-07-02 02:19:34'),(222,876,'2020-10-09 09:38:15'),(222,1106,'2020-11-11 08:56:48'),(224,238,'2020-07-02 02:41:33'),(224,878,'2020-10-09 09:38:14'),(225,205,'2020-07-02 02:53:32'),(225,510,'2020-10-09 09:38:15'),(225,512,'2020-07-08 05:03:12'),(225,612,'2020-10-09 09:38:15'),(227,243,'2020-07-02 02:54:23'),(227,512,'2020-07-08 05:03:34'),(232,304,'2020-07-02 03:33:06'),(233,307,'2020-07-02 03:34:36'),(235,424,'2020-07-02 05:53:05'),(237,425,'2020-07-02 06:32:54'),(237,479,'2020-07-02 06:32:54'),(239,1600,'2023-03-29 08:53:26'),(240,1600,'2024-08-23 02:07:02'),(243,727,'2020-10-09 09:38:16'),(243,1037,'2021-01-29 09:48:37'),(243,1514,'2021-04-20 09:53:00'),(243,1547,'2021-04-20 09:53:00'),(246,725,'2020-10-09 09:38:17'),(246,787,'2022-06-30 07:57:53'),(248,306,'2020-07-02 06:42:51'),(248,308,'2020-07-02 06:42:51'),(248,449,'2020-07-02 06:42:51'),(248,505,'2020-07-02 06:42:51'),(252,434,'2020-07-03 01:34:38'),(252,487,'2020-07-03 01:34:38'),(257,436,'2020-07-02 06:54:41'),(257,490,'2020-07-02 06:54:41'),(259,11,'2020-11-11 08:56:48'),(259,178,'2020-07-02 07:00:20'),(259,180,'2020-07-02 07:00:20'),(259,305,'2020-07-02 07:00:20'),(259,306,'2020-07-02 07:00:20'),(259,308,'2020-07-02 07:00:20'),(259,449,'2020-07-02 07:00:20'),(259,505,'2020-07-02 07:00:20'),(259,1052,'2020-11-11 08:56:48'),(259,1130,'2020-11-11 08:56:48'),(259,2495,'2022-11-17 07:01:40'),(261,407,'2020-07-02 07:10:12'),(261,459,'2020-07-02 07:10:12'),(262,454,'2020-07-02 07:29:46'),(262,460,'2020-07-02 07:29:46'),(263,306,'2020-07-02 08:26:04'),(263,308,'2020-07-02 08:26:04'),(263,412,'2020-07-02 07:31:06'),(263,449,'2020-07-02 08:26:04'),(263,469,'2020-07-02 07:31:06'),(263,505,'2020-07-02 08:26:04'),(264,421,'2020-07-02 07:32:54'),(264,475,'2020-07-02 07:32:54'),(266,421,'2020-07-02 07:43:04'),(266,475,'2020-07-02 07:43:04'),(267,419,'2020-07-02 07:44:21'),(267,472,'2020-07-02 07:44:21'),(268,422,'2020-07-02 07:45:21'),(268,476,'2020-07-02 07:45:21'),(269,442,'2020-07-02 07:46:43'),(269,497,'2020-07-02 07:46:43'),(270,406,'2020-07-07 09:28:22'),(270,443,'2020-07-02 07:47:40'),(270,458,'2020-07-07 09:28:22'),(270,496,'2020-07-02 07:47:40'),(271,405,'2020-07-02 07:48:39'),(271,457,'2020-07-02 07:48:39'),(272,455,'2020-07-02 07:49:39'),(272,473,'2020-07-02 07:49:39'),(273,413,'2020-07-02 08:08:41'),(273,467,'2020-07-02 08:08:41'),(274,414,'2020-07-02 08:11:11'),(274,464,'2020-07-02 08:11:11'),(275,415,'2020-07-02 08:12:40'),(275,470,'2020-07-02 08:12:40'),(276,408,'2020-07-02 08:14:11'),(276,461,'2020-07-02 08:14:11'),(277,417,'2020-07-13 05:05:35'),(277,418,'2020-07-02 08:15:32'),(277,466,'2020-07-02 08:15:32'),(278,416,'2020-07-02 08:16:49'),(278,468,'2020-07-02 08:16:49'),(279,427,'2020-07-02 09:57:28'),(279,480,'2020-07-02 09:57:28'),(284,39,'2022-04-27 03:29:09'),(284,49,'2020-07-06 01:23:40'),(284,1424,'2021-03-19 06:27:41'),(285,2566,'2022-04-27 03:29:09'),(285,2576,'2022-04-28 05:59:45'),(285,2612,'2022-04-28 05:58:52'),(286,9,'2020-07-06 01:27:25'),(287,262,'2020-07-07 01:27:58'),(288,262,'2020-07-07 02:50:22'),(288,1039,'2021-03-19 06:27:42'),(288,1194,'2022-01-18 11:23:28'),(288,1195,'2022-01-18 11:23:28'),(288,1424,'2021-03-19 06:27:42'),(288,2055,'2022-01-18 11:23:28'),(288,2057,'2022-01-18 11:23:28'),(289,267,'2020-07-07 02:52:10'),(289,2058,'2022-01-18 11:23:28'),(290,262,'2020-07-07 02:53:51'),(295,187,'2020-07-24 02:33:45'),(295,228,'2020-07-24 02:33:45'),(295,426,'2020-07-24 02:33:45'),(295,451,'2020-07-24 02:33:45'),(295,481,'2020-07-24 02:33:45'),(295,499,'2020-07-24 02:33:45'),(296,242,'2020-07-24 02:34:32'),(296,244,'2020-07-24 02:34:32'),(296,450,'2020-07-24 02:34:32'),(296,498,'2020-07-24 02:34:32'),(302,265,'2020-10-09 09:38:07'),(302,1558,'2021-11-05 10:28:57'),(303,978,'2020-10-09 09:38:07'),(305,264,'2020-10-09 09:38:08'),(305,1000,'2022-01-18 11:23:28'),(305,1039,'2021-03-19 06:27:42'),(305,1147,'2022-01-18 11:23:28'),(305,1416,'2021-03-19 06:27:42'),(305,2056,'2022-01-18 11:23:28'),(306,975,'2020-10-09 09:38:08'),(307,260,'2020-10-09 09:38:08'),(307,2054,'2022-01-18 11:23:28'),(308,1071,'2020-10-09 09:38:09'),(309,1026,'2020-10-09 09:38:10'),(311,862,'2021-01-29 09:48:34'),(311,1197,'2021-01-29 09:48:34'),(311,1198,'2021-01-29 09:48:34'),(311,1199,'2021-01-29 09:48:34'),(311,1200,'2020-12-28 08:04:01'),(311,1201,'2021-01-29 09:48:34'),(311,2337,'2022-03-14 01:55:55'),(311,4030,'2023-09-27 10:02:37'),(311,4032,'2023-09-27 10:02:37'),(314,183,'2021-03-19 06:27:42'),(314,780,'2021-03-19 06:27:42'),(314,859,'2021-03-19 06:27:42'),(314,863,'2021-03-19 06:27:42'),(314,866,'2020-10-09 09:38:11'),(316,183,'2021-03-19 06:27:43'),(316,772,'2020-10-09 09:38:11'),(316,778,'2020-10-09 09:38:11'),(316,786,'2020-10-09 09:38:11'),(316,859,'2021-03-19 06:27:43'),(316,866,'2020-10-09 09:38:11'),(316,1089,'2021-01-29 09:48:34'),(316,1100,'2020-10-09 09:38:11'),(316,1511,'2021-03-19 06:46:59'),(317,775,'2020-10-09 09:38:11'),(319,764,'2020-10-09 09:38:12'),(319,932,'2020-10-09 09:38:12'),(320,187,'2020-10-09 09:38:12'),(320,759,'2020-10-09 09:38:12'),(321,959,'2020-10-09 09:38:12'),(322,933,'2020-10-09 09:38:12'),(323,767,'2020-10-09 09:38:12'),(325,176,'2021-03-19 06:27:43'),(325,183,'2021-03-19 06:27:43'),(325,770,'2020-10-09 09:38:12'),(325,771,'2020-10-09 09:38:12'),(325,786,'2020-10-09 09:38:12'),(325,859,'2021-03-19 06:27:43'),(325,863,'2021-03-19 06:27:43'),(325,1089,'2021-01-29 09:48:35'),(325,1424,'2021-03-19 06:27:43'),(325,1511,'2021-03-19 06:47:00'),(327,866,'2020-10-09 09:38:14'),(328,1039,'2020-10-09 09:38:16'),(329,1094,'2020-10-09 09:38:16'),(330,1052,'2020-10-09 09:38:16'),(332,804,'2024-08-23 02:07:02'),(332,897,'2020-10-09 09:38:16'),(332,1025,'2020-10-09 09:38:16'),(333,740,'2020-10-09 09:38:16'),(333,741,'2020-10-09 09:38:16'),(334,787,'2020-10-09 09:38:16'),(335,911,'2020-10-09 09:38:17'),(336,884,'2020-11-11 10:04:24'),(337,983,'2020-10-09 09:38:17'),(337,984,'2020-10-09 09:38:17'),(338,727,'2020-10-09 09:38:17'),(338,1037,'2021-01-29 09:48:37'),(338,1514,'2021-04-20 09:53:00'),(338,1546,'2021-04-20 09:53:00'),(339,729,'2020-10-09 09:38:17'),(340,722,'2020-10-09 09:38:17'),(341,750,'2021-04-20 09:53:00'),(341,751,'2020-10-09 09:38:17'),(342,722,'2020-10-09 09:38:18'),(343,747,'2020-10-09 09:38:18'),(358,222,'2022-04-28 06:48:22'),(358,256,'2024-06-18 10:42:07'),(358,274,'2024-06-18 10:42:07'),(358,1732,'2024-06-18 10:42:07'),(358,2292,'2022-03-11 05:52:53'),(358,4078,'2024-02-26 03:04:45'),(358,4143,'2024-02-23 02:17:22'),(358,4169,'2024-02-23 01:57:24'),(359,1095,'2020-10-09 09:38:20'),(359,1096,'2020-10-09 09:38:20'),(368,1139,'2020-11-11 07:06:08'),(369,1141,'2020-11-11 07:06:08'),(371,1140,'2020-11-11 07:06:08'),(371,1142,'2020-11-11 07:06:08'),(373,1138,'2020-11-11 07:06:08'),(375,1146,'2020-11-11 07:06:08'),(375,1147,'2020-11-11 07:06:08'),(377,1137,'2020-11-11 07:06:08'),(379,1146,'2020-11-11 07:06:08'),(379,1147,'2020-11-11 07:06:08'),(382,1000,'2020-11-11 08:49:33'),(382,1147,'2022-01-18 11:23:28'),(382,2056,'2022-01-18 11:23:28'),(383,1130,'2020-11-11 10:04:23'),(384,1052,'2020-11-11 10:04:23'),(385,1109,'2021-11-05 10:29:25'),(385,1600,'2024-08-23 02:07:02'),(385,1628,'2021-06-01 10:04:15'),(386,1597,'2021-05-26 03:24:13'),(387,1000,'2020-12-28 08:04:01'),(387,1139,'2022-01-18 11:23:29'),(389,1112,'2020-12-28 08:04:03'),(389,1113,'2020-12-28 08:04:03'),(389,1114,'2020-12-28 08:04:03'),(389,1115,'2020-12-28 08:04:03'),(389,1116,'2020-12-28 08:04:03'),(389,1117,'2020-12-28 08:04:03'),(389,1118,'2020-12-28 08:04:03'),(389,1119,'2020-12-28 08:04:03'),(389,1120,'2020-12-28 08:04:03'),(389,1121,'2020-12-28 08:04:03'),(389,1122,'2020-12-28 08:04:03'),(389,1123,'2020-12-28 08:04:03'),(389,1124,'2020-12-28 08:04:03'),(389,1164,'2020-12-28 08:04:03'),(389,1165,'2020-12-28 08:04:03'),(389,1209,'2021-01-29 09:48:37'),(395,2890,'2022-10-25 09:51:32'),(395,2894,'2022-10-25 09:51:32'),(395,2895,'2022-10-25 09:51:32'),(409,1424,'2021-03-19 06:27:45'),(455,1560,'2021-04-20 09:48:46'),(455,1561,'2021-04-20 09:48:46'),(455,1562,'2021-04-20 09:48:46'),(455,1563,'2021-04-20 09:48:46'),(455,1564,'2021-04-20 09:48:46'),(455,1565,'2021-04-20 09:48:46'),(455,1566,'2021-04-20 09:48:46'),(455,1567,'2021-04-20 09:48:46'),(455,1568,'2021-04-20 09:48:46'),(455,1569,'2021-04-20 09:48:46'),(457,274,'2021-04-20 09:53:00'),(457,1514,'2021-04-20 09:53:00'),(458,255,'2022-04-28 02:57:21'),(458,519,'2022-04-28 02:57:21'),(463,1096,'2022-04-28 07:03:05'),(463,1887,'2022-04-28 07:02:34'),(467,961,'2022-04-28 06:45:07'),(467,986,'2021-05-12 07:37:20'),(467,1163,'2021-05-12 07:37:20'),(467,1408,'2021-05-12 07:37:20'),(467,1410,'2021-05-12 07:37:20'),(467,3189,'2022-09-20 08:30:51'),(467,3191,'2022-09-20 08:30:51'),(467,3302,'2023-09-27 10:02:48'),(468,987,'2021-05-12 07:38:05'),(469,989,'2021-05-12 07:38:45'),(470,990,'2021-05-12 07:39:16'),(472,1523,'2021-05-12 07:40:01'),(473,1521,'2021-05-12 07:40:01'),(475,1528,'2021-05-12 07:40:01'),(476,989,'2021-05-12 07:40:01'),(477,989,'2021-05-12 07:40:01'),(478,1530,'2021-05-12 07:40:01'),(480,983,'2021-05-12 07:40:01'),(480,984,'2021-05-12 07:40:01'),(480,988,'2021-05-12 07:40:01'),(480,1067,'2021-05-12 07:40:01'),(480,1524,'2021-05-12 07:40:01'),(483,989,'2021-05-12 07:40:01'),(485,1067,'2021-05-12 07:40:01'),(485,1609,'2022-06-08 05:49:07'),(485,1725,'2021-11-05 10:29:40'),(487,407,'2021-05-12 07:40:01'),(487,459,'2021-05-12 07:40:01'),(487,983,'2021-05-12 07:40:01'),(487,984,'2021-05-12 07:40:01'),(487,988,'2021-05-12 07:40:01'),(487,1067,'2021-05-12 07:40:01'),(487,1511,'2023-09-27 10:02:48'),(487,1524,'2021-05-12 07:40:01'),(487,1585,'2021-05-12 07:40:01'),(487,1586,'2021-05-12 07:40:01'),(487,1686,'2021-07-06 06:47:46'),(487,1687,'2021-07-06 06:47:46'),(487,2085,'2022-01-18 11:23:44'),(487,2090,'2022-01-18 11:23:44'),(487,2552,'2022-04-01 02:53:08'),(487,2553,'2022-04-01 02:53:08'),(487,2562,'2022-04-11 01:41:09'),(487,2715,'2022-06-08 05:49:07'),(487,2860,'2022-06-08 05:49:07'),(487,3228,'2022-09-20 08:30:52'),(487,3229,'2022-09-20 08:30:52'),(488,989,'2021-05-12 07:40:01'),(489,274,'2022-04-28 06:43:17'),(489,1095,'2022-04-28 06:43:17'),(489,3166,'2022-10-25 09:52:22'),(489,3237,'2022-10-25 09:52:22'),(489,3273,'2022-10-25 09:52:22'),(490,1057,'2021-05-12 07:40:01'),(491,1161,'2021-05-12 07:40:01'),(491,2078,'2022-04-01 02:53:08'),(491,2079,'2022-06-09 05:45:07'),(492,1424,'2021-05-12 07:40:01'),(493,1013,'2021-05-12 07:40:01'),(494,1021,'2021-05-12 07:40:02'),(495,1020,'2021-05-12 07:40:02'),(496,981,'2021-05-12 07:40:02'),(496,982,'2021-05-12 07:40:02'),(497,985,'2021-05-12 07:40:02'),(498,980,'2021-05-12 07:40:02'),(498,1408,'2021-05-12 07:40:02'),(501,1581,'2021-05-26 03:24:13'),(501,1582,'2021-05-26 03:24:13'),(501,1600,'2021-05-26 03:24:13'),(502,1583,'2021-05-26 03:24:13'),(503,1598,'2021-05-26 03:24:13'),(503,1599,'2021-05-26 03:24:13'),(504,722,'2021-05-26 03:24:13'),(506,1112,'2021-05-26 07:02:48'),(506,1113,'2021-05-26 07:02:48'),(506,1114,'2021-05-26 07:02:48'),(506,1115,'2021-05-26 07:02:48'),(506,1116,'2021-05-26 07:02:48'),(506,1117,'2021-05-26 07:02:48'),(506,1118,'2021-05-26 07:02:48'),(506,1119,'2021-05-26 07:02:48'),(506,1120,'2021-05-26 07:11:57'),(506,1121,'2021-05-26 07:11:57'),(506,1122,'2021-05-26 07:11:57'),(506,1123,'2021-05-26 07:11:57'),(506,1124,'2021-05-26 07:11:57'),(506,1164,'2021-05-26 07:11:57'),(506,1165,'2021-05-26 07:11:57'),(506,1209,'2021-05-26 07:11:57'),(508,1627,'2021-06-01 10:04:14'),(514,1730,'2021-07-30 09:57:04'),(515,1736,'2021-07-30 09:57:04'),(515,1738,'2021-07-30 09:57:04'),(515,4177,'2024-02-21 09:55:12'),(515,4179,'2024-02-21 09:55:12'),(516,1737,'2021-07-30 09:57:04'),(517,1731,'2021-07-30 09:57:04'),(519,1732,'2021-07-30 09:57:04'),(520,1735,'2021-07-30 09:57:04'),(521,1086,'2023-02-08 09:41:24'),(521,1325,'2021-07-30 09:58:33'),(521,2326,'2022-04-01 09:04:18'),(521,2442,'2022-04-27 08:56:20'),(521,2659,'2022-04-27 03:29:23'),(521,2661,'2022-04-27 03:29:23'),(521,2666,'2022-04-27 03:29:23'),(539,1769,'2021-07-30 10:06:54'),(561,1724,'2021-08-12 02:19:01'),(561,2538,'2022-03-30 09:01:57'),(563,1852,'2022-05-25 06:36:34'),(563,1854,'2022-05-25 06:36:34'),(563,1856,'2022-05-25 06:36:34'),(563,1857,'2022-05-25 06:36:34'),(563,1858,'2022-05-25 06:36:34'),(563,1859,'2022-05-25 06:36:34'),(563,1862,'2022-05-25 06:36:34'),(563,1876,'2022-05-25 06:36:34'),(566,1853,'2021-11-05 10:29:54'),(567,1860,'2021-11-05 10:29:54'),(567,1861,'2021-11-05 10:29:54'),(568,1850,'2021-11-05 10:29:54'),(571,1734,'2021-11-05 10:29:54'),(571,1865,'2021-11-05 10:29:54'),(571,1872,'2021-11-05 10:29:54'),(571,1873,'2021-11-05 10:29:54'),(571,1875,'2021-11-05 10:29:54'),(573,1734,'2021-11-05 10:29:54'),(573,1863,'2021-11-05 10:29:54'),(573,1866,'2021-11-05 10:29:54'),(573,1872,'2021-11-05 10:29:54'),(573,1873,'2021-11-05 10:29:54'),(573,1875,'2021-11-05 10:29:54'),(575,1734,'2021-11-05 10:29:55'),(575,1863,'2021-11-05 10:29:55'),(575,1872,'2021-11-05 10:29:55'),(576,1877,'2021-11-05 10:29:55'),(577,1874,'2021-11-05 10:29:55'),(579,1867,'2021-11-05 10:29:55'),(579,1868,'2021-11-05 10:29:55'),(579,1869,'2021-11-05 10:29:55'),(580,1870,'2021-11-05 10:29:55'),(582,1899,'2021-11-09 08:59:01'),(583,2081,'2022-01-18 11:23:37'),(584,222,'2022-04-02 07:37:11'),(584,246,'2022-04-02 07:37:11'),(584,255,'2022-04-02 07:37:11'),(584,518,'2022-04-02 07:37:11'),(584,519,'2022-04-02 07:37:11'),(584,949,'2022-04-02 07:37:11'),(584,1045,'2022-04-02 07:37:11'),(584,1053,'2022-04-02 07:37:11'),(584,1647,'2022-04-02 07:37:11'),(584,1887,'2022-04-02 07:37:11'),(584,1890,'2022-04-02 07:37:11'),(584,2240,'2022-04-02 07:37:11'),(584,2325,'2024-10-31 01:29:48'),(584,2429,'2022-04-02 07:37:11'),(584,2430,'2022-04-27 03:29:23'),(584,2855,'2022-06-08 05:48:51'),(584,2856,'2022-06-08 05:48:51'),(584,2857,'2022-06-08 05:48:51'),(584,2858,'2022-06-08 05:48:51'),(584,3238,'2024-10-31 01:29:48'),(584,3869,'2024-10-31 01:29:48'),(584,3870,'2024-10-31 01:29:48'),(584,4143,'2024-02-23 02:13:19'),(584,4741,'2024-10-11 09:06:56'),(585,1019,'2022-11-14 01:48:00'),(585,1029,'2021-11-05 10:30:18'),(585,1047,'2021-11-05 10:30:18'),(585,1049,'2021-11-05 10:30:18'),(585,1054,'2021-11-05 10:30:18'),(585,1055,'2021-11-05 10:30:18'),(585,1072,'2021-11-05 10:30:18'),(585,1540,'2021-11-05 10:30:18'),(585,1578,'2022-04-02 01:24:57'),(585,1579,'2022-04-27 09:09:08'),(585,1603,'2021-11-05 10:30:18'),(585,1726,'2022-11-17 02:57:42'),(585,2431,'2022-04-02 07:37:11'),(585,2432,'2022-04-02 07:37:11'),(585,2433,'2022-04-02 07:37:11'),(585,2434,'2022-04-02 07:37:11'),(585,2435,'2022-04-02 07:37:11'),(585,2436,'2022-04-27 03:29:23'),(585,2437,'2022-04-02 07:37:11'),(585,2440,'2022-04-27 09:09:08'),(585,2446,'2022-04-27 09:09:08'),(585,2458,'2022-04-27 09:09:08'),(585,2460,'2022-11-17 02:57:42'),(585,2488,'2022-11-17 02:57:42'),(585,2490,'2022-11-17 02:57:42'),(585,3329,'2022-12-09 08:10:47'),(585,3330,'2022-12-09 08:10:47'),(585,3487,'2024-03-12 07:40:46'),(585,3657,'2023-07-05 08:04:20'),(585,3658,'2023-05-09 09:16:31'),(585,3732,'2023-09-12 01:19:31'),(585,3778,'2023-06-16 09:17:34'),(585,3779,'2023-06-16 09:17:34'),(585,3818,'2023-07-07 01:51:24'),(585,3819,'2023-07-07 01:51:24'),(585,4144,'2024-02-23 09:38:55'),(586,2438,'2022-04-27 03:29:23'),(586,2439,'2022-04-27 03:29:23'),(586,4275,'2024-04-17 01:51:23'),(588,3956,'2024-06-17 12:01:17'),(588,4145,'2024-02-23 09:36:10'),(588,4146,'2024-02-23 09:36:10'),(588,4171,'2024-02-23 01:57:25'),(589,1006,'2021-11-05 10:30:18'),(589,1007,'2021-11-05 10:30:18'),(589,1008,'2021-11-05 10:30:18'),(589,1014,'2021-11-05 10:30:18'),(589,1015,'2021-11-05 10:30:18'),(589,1016,'2021-11-05 10:30:18'),(589,1017,'2021-11-05 10:30:18'),(589,1018,'2021-11-05 10:30:18'),(589,1019,'2021-11-05 10:30:18'),(589,1726,'2021-11-05 10:30:18'),(589,2447,'2023-09-12 01:19:31'),(589,2453,'2022-04-27 03:29:23'),(589,2454,'2022-04-27 03:29:23'),(589,2455,'2022-04-27 03:29:23'),(589,2457,'2022-04-27 03:29:23'),(589,2458,'2022-04-27 03:29:23'),(589,2459,'2022-04-27 03:29:23'),(589,2460,'2022-04-27 03:29:23'),(590,1301,'2021-11-05 10:30:18'),(590,2447,'2022-04-27 03:29:23'),(592,1298,'2021-11-05 10:30:18'),(592,1299,'2021-11-05 10:30:18'),(592,1300,'2021-11-05 10:30:18'),(592,1415,'2021-11-05 10:30:18'),(592,1705,'2021-11-05 10:30:18'),(592,1706,'2021-11-05 10:30:18'),(592,1707,'2021-11-05 10:30:18'),(592,1708,'2021-11-05 10:30:18'),(592,1709,'2021-11-05 10:30:18'),(592,1710,'2021-11-05 10:30:18'),(592,2448,'2022-04-27 03:29:23'),(592,2449,'2022-04-27 03:29:23'),(592,2450,'2022-04-27 03:29:23'),(592,2451,'2022-04-27 03:29:23'),(592,2452,'2022-04-27 03:29:23'),(594,1458,'2021-11-05 10:30:18'),(594,1459,'2021-11-05 10:30:18'),(594,2456,'2022-04-27 03:29:23'),(595,2293,'2022-04-02 07:37:11'),(595,2561,'2022-04-11 01:41:30'),(595,4156,'2024-04-25 02:58:10'),(595,4455,'2024-08-15 07:29:46'),(595,4456,'2024-08-15 07:29:46'),(595,4457,'2024-08-15 07:29:46'),(597,1888,'2022-04-01 09:04:19'),(597,1889,'2022-04-01 09:04:19'),(599,1685,'2021-11-05 10:30:19'),(599,2074,'2022-01-18 11:23:37'),(600,1684,'2021-11-05 10:30:19'),(600,2074,'2022-01-18 11:23:37'),(604,1685,'2021-11-05 10:30:19'),(604,2074,'2022-01-18 11:23:37'),(604,4156,'2024-02-23 01:57:25'),(606,1266,'2021-11-05 10:30:19'),(606,1678,'2021-11-05 10:30:19'),(606,1729,'2021-11-05 10:30:19'),(606,3420,'2023-09-12 01:19:34'),(606,3421,'2023-09-12 01:19:34'),(606,3426,'2023-09-12 01:19:34'),(606,3427,'2023-09-12 01:19:34'),(606,3432,'2023-09-12 01:19:34'),(606,3433,'2023-09-12 01:19:34'),(607,1264,'2021-11-05 10:30:19'),(607,1265,'2021-11-05 10:30:19'),(607,1727,'2021-11-05 10:30:19'),(607,1728,'2021-11-05 10:30:19'),(607,3275,'2022-11-10 06:27:00'),(607,3276,'2022-11-10 06:27:00'),(608,1891,'2021-11-09 08:59:02'),(608,1892,'2021-11-09 08:59:02'),(608,1893,'2021-11-09 08:59:02'),(608,1894,'2021-11-09 08:59:02'),(608,1895,'2021-11-09 08:59:02'),(608,1896,'2021-11-09 08:59:02'),(608,3287,'2022-11-09 09:00:33'),(615,1808,'2021-11-05 10:45:26'),(615,1809,'2021-11-05 10:45:26'),(616,1798,'2021-11-05 10:45:26'),(617,1812,'2021-11-05 10:45:26'),(618,1809,'2021-11-05 10:45:26'),(619,1806,'2021-11-05 10:45:26'),(620,1811,'2021-11-05 10:45:26'),(621,1802,'2021-11-05 10:45:26'),(621,1804,'2021-11-05 10:45:26'),(621,1807,'2021-11-05 10:45:26'),(622,1802,'2021-11-05 10:45:26'),(622,1805,'2021-11-05 10:45:26'),(622,1807,'2021-11-05 10:45:26'),(623,1807,'2021-11-05 10:45:26'),(624,1800,'2021-11-05 10:45:26'),(624,1803,'2021-11-05 10:45:26'),(625,1801,'2021-11-05 10:45:26'),(626,1810,'2021-11-05 10:45:26'),(628,1791,'2021-11-05 10:45:26'),(629,1790,'2021-11-05 10:45:26'),(630,1794,'2021-11-05 10:45:26'),(631,1795,'2021-11-05 10:45:26'),(632,1793,'2021-11-05 10:45:26'),(634,1792,'2021-11-05 10:45:27'),(635,1796,'2021-11-05 10:45:27'),(637,1814,'2021-11-05 10:45:27'),(637,1815,'2021-11-05 10:45:27'),(638,1814,'2021-11-05 10:45:27'),(638,1815,'2021-11-05 10:45:27'),(639,1814,'2021-11-05 10:45:27'),(639,1816,'2021-11-05 10:45:27'),(641,1914,'2022-01-18 11:17:19'),(641,1916,'2022-01-18 11:17:19'),(641,1917,'2022-01-18 11:17:19'),(641,1918,'2022-01-18 11:17:19'),(641,1919,'2022-01-18 11:17:19'),(641,1920,'2022-01-18 11:17:19'),(641,1922,'2022-01-18 11:17:19'),(641,1923,'2022-01-18 11:17:19'),(641,1924,'2022-01-18 11:17:19'),(645,1994,'2022-01-18 11:23:05'),(647,1991,'2022-01-18 11:23:05'),(648,1990,'2022-01-18 11:23:05'),(649,1992,'2022-01-18 11:23:05'),(650,1993,'2022-01-18 11:23:05'),(651,2055,'2022-01-18 11:23:29'),(652,2070,'2022-01-18 11:23:37'),(654,2074,'2022-01-18 11:23:37'),(654,2076,'2022-01-18 11:23:37'),(655,2073,'2022-01-18 11:23:44'),(655,3958,'2023-09-27 10:02:48'),(662,2115,'2022-03-10 07:39:37'),(662,2116,'2022-03-10 07:39:37'),(662,2123,'2022-03-10 07:39:37'),(663,725,'2022-03-10 07:39:37'),(663,750,'2022-03-10 07:39:37'),(663,751,'2022-03-10 07:39:37'),(663,787,'2022-03-10 07:39:37'),(663,2108,'2022-03-10 07:39:37'),(663,2109,'2022-03-10 07:39:37'),(663,2110,'2022-03-10 07:39:37'),(663,2111,'2022-03-10 07:39:37'),(663,2112,'2022-06-27 02:53:02'),(663,2113,'2022-03-10 07:39:37'),(663,2114,'2022-03-10 07:39:37'),(663,2120,'2022-03-10 07:39:37'),(663,2121,'2022-03-10 07:39:37'),(663,2124,'2022-03-10 07:39:37'),(663,2125,'2022-03-10 07:39:37'),(663,2126,'2022-03-10 07:39:37'),(663,2127,'2022-03-10 07:39:37'),(663,2129,'2022-03-10 07:39:37'),(663,2308,'2022-03-11 05:44:18'),(664,2426,'2022-03-14 01:55:55'),(664,2427,'2022-03-14 01:55:55'),(664,2428,'2022-03-14 01:55:55'),(667,518,'2022-04-28 07:01:02'),(667,1095,'2022-04-28 06:40:43'),(667,1258,'2022-03-30 06:26:16'),(667,2499,'2022-03-30 06:26:16'),(667,2501,'2022-03-30 06:26:16'),(667,2502,'2022-03-30 06:26:16'),(667,2503,'2022-03-30 06:26:16'),(667,2504,'2022-03-30 06:26:16'),(667,2505,'2022-03-30 06:26:16'),(667,2507,'2023-03-31 02:00:54'),(667,2663,'2022-04-27 08:56:09'),(667,2684,'2022-04-28 06:39:01'),(667,2699,'2022-05-30 06:38:44'),(667,2852,'2022-06-08 05:48:00'),(667,2853,'2022-06-08 05:48:00'),(667,2854,'2022-06-08 05:48:00'),(667,2859,'2022-06-08 05:48:00'),(667,3291,'2023-03-30 07:45:08'),(667,3302,'2023-03-30 07:40:55'),(668,256,'2022-03-30 02:02:43'),(668,274,'2022-03-30 02:02:43'),(668,1514,'2022-03-30 02:02:43'),(671,787,'2022-04-27 06:11:06'),(671,1056,'2022-04-28 02:00:46'),(671,1095,'2022-04-28 02:00:46'),(671,1096,'2022-04-28 02:51:24'),(671,1560,'2022-04-27 08:44:40'),(671,1887,'2022-04-28 02:49:16'),(671,2292,'2022-04-28 02:15:44'),(671,2502,'2022-04-27 08:44:40'),(671,2504,'2022-03-31 07:56:28'),(671,2673,'2022-04-28 01:57:54'),(671,2674,'2022-04-27 08:44:40'),(671,2675,'2022-04-28 01:58:38'),(671,2676,'2022-04-28 01:57:54'),(671,2677,'2022-04-28 01:50:23'),(671,2678,'2022-04-27 08:47:33'),(671,2679,'2022-04-27 08:47:33'),(671,2684,'2022-04-28 01:57:54'),(671,2685,'2022-04-27 08:44:40'),(673,2074,'2022-04-02 07:37:11'),(675,14,'2022-04-27 03:29:09'),(675,1420,'2022-04-27 03:29:09'),(675,2602,'2022-04-27 03:29:09'),(676,247,'2022-04-27 03:29:09'),(677,248,'2022-04-27 03:29:09'),(678,54,'2022-04-27 03:29:09'),(679,9,'2022-04-27 03:29:09'),(679,2576,'2022-04-27 03:29:09'),(679,2579,'2022-04-27 03:29:09'),(679,2952,'2022-07-25 08:30:45'),(680,11,'2022-04-27 03:29:09'),(680,2011,'2022-04-27 03:29:09'),(680,2581,'2022-04-27 03:29:09'),(680,4033,'2024-04-29 07:03:10'),(680,4035,'2024-04-29 07:02:34'),(681,2580,'2022-04-27 03:29:09'),(681,2582,'2022-04-27 03:29:09'),(682,2657,'2022-04-27 03:29:17'),(682,2658,'2022-04-27 03:29:17'),(682,2659,'2022-04-27 03:29:17'),(682,2660,'2022-04-27 03:29:17'),(682,2661,'2022-04-27 03:29:17'),(682,2662,'2022-04-27 03:29:17'),(682,2665,'2022-04-27 03:29:17'),(682,2667,'2022-04-27 03:29:17'),(684,1684,'2022-04-27 03:29:24'),(684,1685,'2022-04-27 03:29:24'),(684,2074,'2022-04-27 03:29:24'),(685,1560,'2022-04-27 03:43:03'),(686,2683,'2022-04-27 03:43:03'),(689,2739,'2022-05-25 09:56:08'),(689,2743,'2022-05-25 09:56:08'),(689,2746,'2022-05-25 09:56:08'),(690,2740,'2022-05-25 09:56:08'),(690,2741,'2022-05-25 09:56:08'),(690,2744,'2022-05-25 09:56:08'),(691,2750,'2022-05-25 09:56:08'),(692,2747,'2022-05-25 09:56:08'),(692,2748,'2022-05-25 09:56:08'),(692,2749,'2022-05-25 09:56:08'),(693,2742,'2022-05-25 09:56:08'),(694,2751,'2022-05-25 09:56:08'),(695,2752,'2022-05-25 09:56:08'),(696,787,'2022-05-26 01:10:40'),(696,988,'2022-05-26 01:10:40'),(696,989,'2022-05-26 01:10:40'),(696,1095,'2022-05-26 01:10:40'),(696,1096,'2022-05-26 01:10:40'),(696,1725,'2022-05-26 01:10:40'),(696,2499,'2022-06-23 03:05:35'),(696,2501,'2022-05-26 01:10:40'),(696,2502,'2022-05-26 01:10:40'),(696,2503,'2022-05-26 01:10:40'),(696,2504,'2022-05-26 01:10:40'),(696,2507,'2022-05-26 01:10:40'),(696,2674,'2022-05-26 01:10:40'),(696,2675,'2022-05-26 01:10:40'),(696,2676,'2022-05-26 01:10:40'),(696,2677,'2022-05-26 01:10:40'),(696,2678,'2022-05-26 01:10:40'),(696,2679,'2022-06-08 09:31:48'),(696,2684,'2022-05-26 01:10:40'),(696,2726,'2022-05-26 01:10:40'),(696,2727,'2022-05-26 01:10:40'),(696,2728,'2022-05-26 01:10:40'),(697,2716,'2022-05-26 01:15:48'),(697,2719,'2022-05-26 01:15:48'),(697,2720,'2022-05-26 01:15:48'),(697,2721,'2022-05-26 01:15:48'),(697,2722,'2022-05-26 01:15:48'),(697,2732,'2022-05-26 01:15:48'),(697,2735,'2022-05-26 01:15:48'),(697,2738,'2022-05-26 01:15:48'),(697,2849,'2022-06-08 05:52:19'),(697,2850,'2022-06-08 05:52:19'),(697,3252,'2024-04-30 07:19:55'),(697,3753,'2023-12-31 08:27:20'),(697,4083,'2023-11-09 09:38:13'),(697,4084,'2023-11-09 10:21:28'),(699,2074,'2022-06-08 05:48:52'),(699,2076,'2022-06-08 05:48:52'),(707,2869,'2022-06-22 07:54:11'),(707,2886,'2022-06-22 07:54:11'),(707,3534,'2023-05-04 09:43:02'),(707,3705,'2023-05-19 03:35:23'),(708,2884,'2022-06-22 07:54:11'),(708,3092,'2022-09-20 08:37:44'),(709,2171,'2022-06-22 07:54:11'),(709,2173,'2022-06-22 07:54:11'),(709,2816,'2022-06-22 07:54:11'),(709,2817,'2022-06-22 07:54:11'),(709,2819,'2022-06-22 07:54:11'),(709,2826,'2022-06-22 07:54:11'),(709,2828,'2022-06-22 07:54:11'),(709,2831,'2022-09-20 08:37:44'),(709,2832,'2022-06-22 07:54:11'),(709,2834,'2022-06-22 07:54:11'),(709,2835,'2022-06-22 07:54:11'),(710,2175,'2022-06-22 07:54:11'),(710,2821,'2022-06-22 07:54:11'),(710,2822,'2022-06-22 07:54:11'),(710,2823,'2022-06-22 07:54:11'),(710,2827,'2022-06-22 07:54:11'),(710,2829,'2022-06-22 07:54:11'),(710,2830,'2022-06-22 07:54:11'),(710,2833,'2022-06-22 07:54:11'),(711,2824,'2022-06-22 07:54:11'),(712,2828,'2022-06-22 07:54:12'),(712,2864,'2022-06-22 07:54:12'),(712,2882,'2022-06-22 07:54:12'),(713,2862,'2022-06-22 07:54:12'),(713,2863,'2022-06-22 07:54:12'),(713,2866,'2022-06-22 07:54:12'),(713,2881,'2022-06-22 07:54:12'),(714,2865,'2022-06-22 07:54:12'),(717,456,'2022-06-30 09:22:07'),(717,1106,'2024-09-29 02:10:12'),(717,2906,'2022-09-20 08:33:32'),(717,2907,'2022-07-01 08:33:55'),(717,2909,'2022-07-01 08:33:55'),(717,2912,'2022-07-01 08:33:55'),(717,3069,'2022-09-20 08:33:32'),(717,3318,'2023-05-18 10:49:02'),(717,3319,'2023-05-18 10:49:02'),(717,3322,'2023-05-18 10:49:02'),(717,3323,'2023-05-18 10:49:02'),(717,3324,'2023-05-18 10:49:02'),(717,3688,'2023-05-18 10:49:02'),(717,4068,'2024-04-19 02:45:18'),(717,4071,'2024-09-29 02:10:12'),(717,4073,'2024-04-19 02:45:53'),(717,4074,'2024-06-17 07:53:17'),(717,4660,'2024-09-29 02:10:12'),(717,4661,'2024-09-29 02:10:12'),(717,4662,'2024-09-29 02:10:12'),(717,4663,'2024-09-29 02:10:12'),(717,4666,'2024-09-29 02:10:12'),(717,4669,'2024-09-29 02:10:12'),(717,4679,'2024-09-28 04:57:00'),(717,4681,'2024-09-29 02:10:12'),(717,4733,'2024-09-29 02:10:12'),(719,2937,'2022-07-08 06:51:11'),(719,2939,'2022-07-08 06:51:11'),(719,2943,'2022-07-08 06:51:11'),(719,2944,'2022-07-08 06:51:11'),(720,2938,'2022-07-08 06:51:11'),(720,2942,'2022-07-08 06:51:11'),(721,2935,'2022-07-08 06:51:11'),(722,2936,'2022-07-08 06:51:11'),(723,2939,'2022-07-08 06:51:11'),(723,2943,'2022-07-08 06:51:11'),(723,2944,'2022-07-08 06:51:11'),(726,53,'2022-07-08 06:53:54'),(726,787,'2022-07-08 06:53:54'),(726,2075,'2022-07-08 06:53:54'),(726,2923,'2022-07-08 06:53:54'),(726,2924,'2022-07-08 06:53:54'),(726,2925,'2022-07-08 06:53:54'),(726,2926,'2022-07-08 06:53:54'),(726,2927,'2022-07-08 06:53:54'),(726,2928,'2022-07-08 06:53:54'),(726,2929,'2022-07-08 06:53:54'),(726,2931,'2022-07-08 06:53:54'),(726,2932,'2022-07-08 06:53:54'),(726,2933,'2022-07-08 06:53:54'),(726,3318,'2022-12-08 09:58:01'),(726,3319,'2022-12-08 09:58:01'),(726,3322,'2022-12-08 09:58:01'),(726,3323,'2022-12-08 09:58:01'),(726,3324,'2022-12-08 09:58:01'),(728,1790,'2022-07-25 08:29:07'),(728,1791,'2022-07-25 08:29:07'),(728,1792,'2022-07-25 08:29:07'),(728,1793,'2022-07-25 08:29:07'),(728,1794,'2022-07-25 08:29:07'),(728,1795,'2022-07-25 08:29:07'),(728,1796,'2022-07-25 08:29:07'),(728,1798,'2022-07-25 08:29:07'),(728,1800,'2022-07-25 08:29:07'),(728,1801,'2022-07-25 08:29:07'),(728,1802,'2022-07-25 08:29:07'),(728,1803,'2022-07-25 08:29:07'),(728,1804,'2022-07-25 08:29:07'),(728,1805,'2022-07-25 08:29:07'),(728,1806,'2022-07-25 08:29:07'),(728,1807,'2022-07-25 08:29:07'),(728,1808,'2022-07-25 08:29:07'),(728,1809,'2022-07-25 08:29:07'),(728,1810,'2022-07-25 08:29:07'),(728,1811,'2022-07-25 08:29:07'),(728,1812,'2022-07-25 08:29:07'),(728,1814,'2022-07-25 08:29:07'),(728,1815,'2022-07-25 08:29:07'),(728,1816,'2022-07-25 08:29:07'),(728,2202,'2022-07-25 08:29:07'),(728,2663,'2022-07-25 08:29:07'),(728,2955,'2022-07-25 08:29:07'),(728,2963,'2022-07-25 08:29:07'),(730,1790,'2022-07-27 09:25:35'),(730,1791,'2022-07-27 09:25:35'),(730,1792,'2022-07-27 09:25:35'),(730,1793,'2022-07-27 09:25:35'),(730,1794,'2022-07-27 09:25:35'),(730,1795,'2022-07-27 09:25:35'),(730,1796,'2022-07-27 09:25:35'),(730,1798,'2022-07-27 09:25:35'),(730,1800,'2022-07-27 09:25:35'),(730,1801,'2022-07-27 09:25:35'),(730,1802,'2022-07-27 09:25:35'),(730,1803,'2022-07-27 09:25:35'),(730,1804,'2022-07-27 09:25:35'),(730,1805,'2022-07-27 09:25:35'),(730,1806,'2022-07-27 09:25:35'),(730,1807,'2022-07-27 09:25:35'),(730,1808,'2022-07-27 09:25:35'),(730,1809,'2022-07-27 09:25:35'),(730,1810,'2022-07-27 09:25:35'),(730,1811,'2022-07-27 09:25:35'),(730,1812,'2022-07-27 09:25:35'),(730,1814,'2022-07-27 09:25:35'),(730,1815,'2022-07-27 09:25:35'),(730,1816,'2022-07-27 09:25:35'),(730,2202,'2022-07-27 09:25:35'),(730,2663,'2022-07-27 09:25:35'),(731,608,'2022-08-04 10:54:23'),(731,985,'2022-08-04 10:54:23'),(731,1021,'2022-08-04 10:54:23'),(731,2964,'2022-08-04 10:54:23'),(731,2965,'2022-08-04 10:54:23'),(731,2966,'2022-08-04 10:54:23'),(731,2967,'2022-08-04 10:54:23'),(731,2969,'2022-08-04 10:54:23'),(731,2970,'2022-08-04 10:54:23'),(731,2972,'2022-08-04 10:54:23'),(731,2974,'2022-08-04 10:54:23'),(731,3156,'2022-10-13 02:35:22'),(737,2414,'2022-08-30 03:01:03'),(737,2417,'2022-08-30 03:01:03'),(737,2997,'2022-08-30 03:01:03'),(737,2999,'2022-08-30 03:01:03'),(738,2412,'2022-08-30 03:01:04'),(738,2996,'2022-08-30 03:01:04'),(740,3000,'2022-08-30 03:01:04'),(741,2413,'2022-08-30 03:01:04'),(742,2998,'2022-08-30 03:01:04'),(745,3007,'2022-08-30 03:01:04'),(745,3015,'2022-08-30 03:01:04'),(745,3016,'2022-08-30 03:01:04'),(745,3017,'2022-08-30 03:01:04'),(745,3035,'2023-04-04 08:44:36'),(746,3010,'2022-08-30 03:01:04'),(747,3010,'2022-08-30 03:01:04'),(748,3006,'2022-08-30 03:01:04'),(748,3011,'2022-08-30 03:01:04'),(749,2417,'2023-02-07 06:51:12'),(749,2999,'2022-08-30 03:01:04'),(749,3014,'2022-08-30 03:01:04'),(749,3018,'2022-08-30 03:01:04'),(749,3028,'2022-08-30 03:01:04'),(750,3008,'2022-08-30 03:01:04'),(750,3009,'2022-08-30 03:01:04'),(750,3012,'2022-08-30 03:01:04'),(750,3013,'2022-08-30 03:01:04'),(754,3028,'2022-08-30 03:01:04'),(754,3029,'2022-08-30 03:01:04'),(754,3031,'2022-08-30 03:01:04'),(754,3032,'2023-03-27 07:57:09'),(755,3035,'2022-08-30 03:01:04'),(757,3027,'2022-08-30 03:01:04'),(758,3034,'2022-08-30 03:01:04'),(759,3036,'2022-08-30 03:01:04'),(760,3033,'2022-08-30 03:01:04'),(762,3019,'2022-08-30 03:01:04'),(762,3020,'2022-08-30 03:01:04'),(762,3023,'2022-08-30 03:01:04'),(762,3024,'2022-08-30 03:01:04'),(762,3025,'2022-08-30 03:01:04'),(762,3026,'2022-08-30 03:01:04'),(765,2720,'2022-09-20 08:30:36'),(765,3167,'2022-09-20 08:30:36'),(765,3170,'2022-09-20 08:30:36'),(766,3168,'2022-09-20 08:30:36'),(767,3023,'2024-10-23 08:52:40'),(767,3024,'2024-10-23 08:53:44'),(767,3166,'2022-09-20 08:30:36'),(768,3169,'2022-09-20 08:30:36'),(769,3169,'2022-09-20 08:30:36'),(770,3250,'2022-10-27 06:49:34'),(773,3182,'2022-09-20 08:32:50'),(773,3183,'2022-09-20 08:32:50'),(773,3184,'2022-09-20 08:32:50'),(773,3185,'2022-09-20 08:32:50'),(773,3192,'2022-09-20 08:32:50'),(773,3205,'2022-09-20 08:32:50'),(773,3206,'2022-09-20 08:32:50'),(773,3207,'2022-09-20 08:32:50'),(773,3208,'2022-09-20 08:32:50'),(773,3210,'2022-09-20 08:32:50'),(773,3211,'2022-09-20 08:32:50'),(773,3212,'2022-09-20 08:32:50'),(774,3179,'2022-09-20 08:32:50'),(774,3181,'2022-09-20 08:32:50'),(774,3202,'2022-09-20 08:32:50'),(774,3203,'2022-09-20 08:32:50'),(774,3204,'2022-09-20 08:32:50'),(776,3195,'2022-09-20 08:32:50'),(777,3194,'2022-09-20 08:32:50'),(777,3196,'2022-09-20 08:32:50'),(777,3197,'2022-09-20 08:32:50'),(777,3198,'2022-09-20 08:32:50'),(778,3201,'2022-09-20 08:32:50'),(779,3193,'2022-09-20 08:32:50'),(779,3199,'2022-09-20 08:32:50'),(779,3200,'2022-09-20 08:32:50'),(781,2171,'2022-09-20 08:32:50'),(781,2175,'2022-09-20 08:32:50'),(781,3175,'2022-09-20 08:32:50'),(781,3176,'2022-09-20 08:32:50'),(781,3177,'2022-09-20 08:32:50'),(781,3178,'2022-09-20 08:32:50'),(781,3187,'2022-09-20 08:32:50'),(781,3209,'2022-09-20 08:32:50'),(782,3182,'2022-09-20 08:32:50'),(782,3183,'2022-09-20 08:32:50'),(782,3184,'2022-09-20 08:32:50'),(782,3185,'2022-09-20 08:32:50'),(782,3186,'2022-09-20 08:32:50'),(782,3192,'2022-09-20 08:32:50'),(782,3205,'2022-09-20 08:32:50'),(782,3206,'2022-09-20 08:32:50'),(782,3207,'2022-09-20 08:32:50'),(782,3208,'2022-09-20 08:32:50'),(782,3210,'2022-09-20 08:32:50'),(782,3211,'2022-09-20 08:32:50'),(782,3212,'2022-09-20 08:32:50'),(783,3177,'2022-09-20 08:32:51'),(783,3178,'2022-09-20 08:32:51'),(783,3179,'2022-09-20 08:32:51'),(783,3180,'2022-09-20 08:32:51'),(783,3181,'2022-09-20 08:32:51'),(783,3188,'2022-09-20 08:32:51'),(785,2907,'2023-05-18 10:49:02'),(785,2908,'2022-09-20 08:33:32'),(785,2910,'2022-09-20 08:33:32'),(785,2911,'2022-09-20 08:33:32'),(785,2912,'2022-09-20 08:33:32'),(785,3067,'2022-09-20 08:33:32'),(785,3070,'2022-09-20 08:33:32'),(785,3071,'2022-09-20 08:33:32'),(785,3072,'2022-09-20 08:33:32'),(785,3073,'2022-09-20 08:33:32'),(785,3074,'2022-09-20 08:33:32'),(785,3075,'2022-09-20 08:33:32'),(789,3093,'2023-05-04 09:43:01'),(789,3508,'2023-05-04 09:43:01'),(789,3525,'2023-05-04 09:43:01'),(789,3526,'2023-05-04 09:43:01'),(789,3537,'2023-05-04 09:43:01'),(789,3556,'2023-05-04 09:43:01'),(789,3601,'2023-05-04 09:43:01'),(789,3611,'2023-05-04 09:43:01'),(789,3645,'2023-05-05 09:26:34'),(789,4159,'2024-02-22 08:35:11'),(790,3514,'2023-05-04 09:43:01'),(792,1296,'2024-04-26 02:24:46'),(792,2663,'2024-04-26 02:23:29'),(792,3094,'2022-11-14 09:01:32'),(792,3955,'2024-04-26 02:25:11'),(794,2869,'2022-09-20 08:37:44'),(794,2886,'2022-09-20 08:37:44'),(794,3514,'2023-09-08 02:41:16'),(794,3537,'2023-09-08 02:39:07'),(795,2171,'2022-09-20 08:37:44'),(795,2173,'2022-09-20 08:37:44'),(795,2816,'2022-09-20 08:37:44'),(795,2817,'2022-09-20 08:37:44'),(795,2819,'2022-09-20 08:37:44'),(795,2826,'2022-09-20 08:37:44'),(795,2828,'2022-09-20 08:37:44'),(795,2832,'2022-09-20 08:37:44'),(795,2834,'2022-09-20 08:37:44'),(795,2835,'2022-09-20 08:37:44'),(795,3636,'2023-12-26 08:17:04'),(795,4153,'2023-12-27 06:11:54'),(796,2828,'2022-09-20 08:37:44'),(796,2864,'2022-09-20 08:37:44'),(796,2882,'2022-09-20 08:37:44'),(797,3148,'2023-05-04 09:43:02'),(798,3146,'2023-05-04 09:43:02'),(798,3149,'2023-05-04 09:43:02'),(798,3150,'2023-05-04 09:43:02'),(798,3152,'2023-05-04 09:43:02'),(799,54,'2023-05-04 09:43:02'),(799,3143,'2022-09-20 08:37:44'),(799,3145,'2022-09-20 08:37:44'),(799,3147,'2023-08-17 09:21:26'),(799,3148,'2022-09-20 08:37:44'),(804,3248,'2022-10-27 07:06:00'),(811,3017,'2022-10-27 08:10:11'),(811,3032,'2022-10-27 08:10:11'),(811,3035,'2023-04-04 08:45:03'),(811,3253,'2022-10-27 08:10:11'),(812,3255,'2022-10-27 08:10:11'),(813,3252,'2022-10-27 08:10:12'),(814,3004,'2022-10-27 08:10:12'),(814,3005,'2022-10-27 08:10:12'),(814,3254,'2022-10-27 08:10:12'),(814,3257,'2023-02-15 06:17:31'),(815,3003,'2022-10-27 08:10:12'),(818,3035,'2023-04-04 08:44:16'),(818,3261,'2022-10-27 08:10:12'),(818,3265,'2022-10-27 08:10:12'),(818,3266,'2022-10-27 08:10:12'),(818,3269,'2023-03-27 07:49:56'),(819,3267,'2022-10-27 08:10:12'),(820,3267,'2022-10-27 08:10:12'),(821,3031,'2022-10-27 08:10:12'),(821,3035,'2023-04-03 09:43:05'),(821,3259,'2022-10-27 08:10:12'),(821,3271,'2022-10-27 08:10:12'),(823,3021,'2022-10-27 08:10:12'),(823,3272,'2023-03-27 07:38:41'),(824,3262,'2022-10-27 08:10:12'),(825,3258,'2022-10-27 08:10:12'),(826,1873,'2022-11-09 09:00:33'),(826,3279,'2022-11-09 09:00:33'),(826,3280,'2022-11-09 09:00:33'),(826,3281,'2022-11-09 09:00:33'),(826,3282,'2022-11-09 09:00:33'),(826,3283,'2022-11-09 09:00:33'),(826,3286,'2022-11-09 09:00:33'),(826,3292,'2022-11-09 09:00:33'),(826,3293,'2022-11-09 09:00:33'),(828,3342,'2023-01-17 08:08:25'),(828,3343,'2024-03-19 08:09:19'),(828,3344,'2023-01-17 08:08:25'),(834,3377,'2023-02-08 09:29:36'),(835,3381,'2023-02-08 09:29:36'),(835,3383,'2023-02-08 09:29:36'),(836,3374,'2023-02-08 09:29:36'),(837,3376,'2023-02-08 09:29:36'),(837,3378,'2023-02-08 09:29:36'),(837,3380,'2023-02-08 09:29:36'),(837,3385,'2023-02-08 09:29:36'),(837,3386,'2023-02-08 09:29:36'),(838,3382,'2023-02-08 09:29:36'),(839,3384,'2023-02-08 09:29:36'),(840,3375,'2023-02-08 09:29:36'),(841,3364,'2023-02-08 09:29:36'),(842,3367,'2023-02-08 09:29:36'),(842,3369,'2023-02-08 09:29:36'),(843,3361,'2023-02-08 09:29:36'),(844,3363,'2023-02-08 09:29:36'),(844,3365,'2023-02-08 09:29:36'),(844,3370,'2023-02-08 09:29:36'),(844,3372,'2023-02-08 09:29:36'),(844,3373,'2023-02-08 09:29:36'),(845,3368,'2023-02-08 09:29:36'),(846,3364,'2023-02-08 09:29:37'),(846,3371,'2023-02-08 09:29:37'),(847,3362,'2023-02-08 09:29:37'),(848,3355,'2023-02-08 09:29:37'),(848,3356,'2023-02-08 09:29:37'),(848,3357,'2023-02-08 09:29:37'),(848,3358,'2023-02-08 09:29:37'),(848,3359,'2023-02-08 09:29:37'),(848,3360,'2023-02-08 09:29:37'),(849,3349,'2023-02-08 09:29:37'),(849,3350,'2023-02-08 09:29:37'),(849,3351,'2023-02-08 09:29:37'),(849,3352,'2023-02-08 09:29:37'),(849,3353,'2023-02-08 09:29:37'),(849,3354,'2023-02-08 09:29:37'),(851,223,'2023-02-08 09:38:05'),(851,1045,'2023-02-08 09:38:05'),(851,1258,'2023-02-08 09:38:05'),(851,1296,'2023-02-08 09:38:05'),(851,1297,'2023-02-08 09:38:05'),(851,2663,'2023-02-08 09:38:05'),(851,3955,'2023-09-08 09:29:51'),(852,961,'2023-02-08 09:38:06'),(852,1297,'2023-02-08 09:38:06'),(852,2663,'2023-02-08 09:38:06'),(852,2852,'2023-02-08 09:38:06'),(852,2853,'2023-02-08 09:38:06'),(852,3394,'2023-02-08 09:38:06'),(853,2074,'2023-02-09 01:20:47'),(854,2074,'2023-02-09 01:21:57'),(857,3405,'2023-03-29 09:38:33'),(857,3406,'2023-03-29 09:38:33'),(857,3409,'2023-03-29 09:38:33'),(857,3410,'2023-03-29 09:38:33'),(858,8,'2023-05-05 09:28:07'),(858,9,'2023-05-05 09:28:07'),(858,2813,'2023-05-05 09:28:07'),(858,2828,'2023-05-05 09:28:07'),(858,2867,'2023-04-12 08:00:31'),(858,2868,'2023-04-12 08:00:31'),(858,2869,'2023-04-12 08:00:31'),(858,2870,'2023-04-12 08:00:31'),(858,2871,'2023-04-12 08:00:31'),(858,2883,'2023-04-12 08:00:31'),(858,2884,'2023-04-12 08:00:31'),(858,2885,'2023-04-12 08:00:31'),(858,2886,'2023-04-12 08:00:31'),(858,3091,'2023-04-12 08:00:31'),(858,3092,'2023-04-12 08:00:31'),(858,3094,'2023-04-12 08:00:31'),(858,3525,'2023-05-05 09:28:07'),(858,3528,'2023-05-05 09:28:07'),(858,3605,'2023-05-05 09:28:07'),(858,3633,'2023-05-05 09:28:07'),(858,3637,'2023-05-05 09:28:07'),(861,3634,'2023-05-05 09:28:08'),(863,3508,'2023-09-08 04:26:00'),(863,3526,'2023-09-08 02:38:16'),(866,3700,'2023-05-19 01:16:33'),(866,3701,'2023-05-19 01:16:33'),(866,3702,'2023-05-19 03:13:47'),(867,3610,'2023-05-04 09:43:49'),(867,3614,'2023-05-04 09:43:49'),(867,3616,'2023-05-04 09:43:49'),(867,3621,'2023-05-04 09:43:49'),(867,3623,'2023-05-04 09:43:49'),(867,3766,'2024-03-19 03:49:30'),(868,1560,'2023-05-04 09:43:49'),(868,1561,'2023-05-04 09:43:49'),(868,1562,'2023-05-04 09:43:49'),(868,1563,'2023-05-04 09:43:49'),(868,1564,'2023-05-04 09:43:49'),(868,1565,'2023-05-04 09:43:49'),(868,1566,'2023-05-04 09:43:49'),(868,1567,'2023-05-04 09:43:49'),(868,1568,'2023-05-04 09:43:49'),(868,1569,'2023-05-04 09:43:49'),(869,1579,'2023-05-04 09:43:50'),(869,1925,'2023-05-04 09:43:50'),(869,1926,'2023-05-04 09:43:50'),(869,1927,'2023-05-04 09:43:50'),(869,1934,'2023-05-04 09:43:50'),(869,1935,'2023-05-04 09:43:50'),(869,1936,'2023-05-04 09:43:50'),(869,2077,'2023-05-04 09:43:50'),(870,14,'2023-05-04 09:43:50'),(870,1014,'2023-05-04 09:43:50'),(870,1016,'2023-05-04 09:43:50'),(870,1029,'2023-05-04 09:43:50'),(870,1047,'2023-05-04 09:43:50'),(870,1049,'2023-05-04 09:43:50'),(870,1054,'2023-05-04 09:43:50'),(870,1055,'2023-05-04 09:43:50'),(870,1072,'2023-05-04 09:43:50'),(870,1415,'2023-05-04 09:43:50'),(870,1539,'2023-05-04 09:43:50'),(870,1579,'2023-05-04 09:43:50'),(870,1705,'2023-05-04 09:43:50'),(870,1706,'2023-05-04 09:43:50'),(870,1707,'2023-05-04 09:43:50'),(870,1708,'2023-05-04 09:43:50'),(870,1709,'2023-05-04 09:43:50'),(870,1710,'2023-05-04 09:43:50'),(870,1726,'2023-05-04 09:43:50'),(870,1935,'2023-05-04 09:43:50'),(870,2074,'2023-05-04 09:43:50'),(870,2076,'2023-05-04 09:43:50'),(870,2077,'2023-05-04 09:43:50'),(871,1938,'2024-05-14 07:56:01'),(871,2661,'2023-05-04 09:43:50'),(871,2828,'2023-05-04 10:17:08'),(871,3094,'2023-05-08 07:01:28'),(871,3600,'2023-05-04 09:43:50'),(871,3603,'2023-05-04 09:43:50'),(871,3606,'2023-05-04 09:43:50'),(871,3607,'2023-05-04 09:43:50'),(871,3609,'2023-05-04 09:43:50'),(871,3612,'2023-05-04 09:43:50'),(871,3617,'2023-05-04 09:43:50'),(871,3619,'2023-05-04 09:43:50'),(871,3620,'2023-05-04 09:43:50'),(871,3624,'2023-05-04 09:43:50'),(871,3627,'2023-05-04 09:43:50'),(871,3637,'2023-05-05 01:35:05'),(871,3692,'2023-07-04 07:01:29'),(871,4344,'2024-05-14 07:56:01'),(872,2869,'2023-05-05 09:28:07'),(873,1405,'2023-05-18 10:07:48'),(873,2199,'2023-05-18 10:07:48'),(873,2200,'2023-05-18 10:07:48'),(873,2206,'2023-05-18 10:07:48'),(873,2208,'2023-05-18 10:07:48'),(873,2209,'2023-05-18 10:07:48'),(873,2210,'2023-05-18 10:07:48'),(873,2215,'2023-05-18 10:07:48'),(873,2221,'2023-05-18 10:07:48'),(873,2387,'2023-05-18 10:07:48'),(873,2388,'2023-05-18 10:07:48'),(873,2389,'2023-05-18 10:07:48'),(873,2391,'2023-05-18 10:07:48'),(873,2395,'2023-05-18 10:07:48'),(874,3199,'2024-09-09 03:33:39'),(874,3695,'2023-05-18 10:49:19'),(875,3693,'2023-05-18 10:49:19'),(875,3694,'2023-05-18 10:49:19'),(876,3694,'2023-05-18 10:49:19'),(877,2216,'2023-05-18 10:07:48'),(877,2224,'2023-05-18 10:07:48'),(877,2225,'2023-05-18 10:07:48'),(877,2373,'2023-05-18 10:07:48'),(877,2377,'2023-05-18 10:07:48'),(877,2390,'2023-05-18 10:07:48'),(877,2396,'2023-05-18 10:07:48'),(879,3599,'2023-05-18 10:08:00'),(879,3609,'2023-05-18 10:08:00'),(879,3627,'2023-05-18 10:08:00'),(882,2743,'2023-05-18 10:49:02'),(882,2746,'2023-05-18 10:49:02'),(882,2748,'2024-09-29 02:10:15'),(882,2749,'2024-09-29 02:10:15'),(882,2750,'2024-09-29 02:10:15'),(882,3689,'2024-09-29 02:10:15'),(882,3690,'2023-05-18 10:49:02'),(883,3689,'2023-05-18 10:49:03'),(884,2748,'2023-05-18 10:49:03'),(884,3689,'2023-05-18 10:49:03'),(885,2749,'2023-05-18 10:49:03'),(885,3689,'2023-05-18 10:49:03'),(886,2750,'2023-05-18 10:49:03'),(887,1899,'2023-05-22 02:57:12'),(887,2081,'2023-05-22 02:57:12'),(887,2844,'2023-05-22 02:57:12'),(887,3504,'2023-05-22 02:57:12'),(887,3657,'2023-07-07 06:29:03'),(887,3658,'2023-07-07 06:29:03'),(887,3754,'2023-06-16 09:14:32'),(887,3871,'2023-07-28 07:33:38'),(888,3732,'2023-07-05 08:09:18'),(888,3735,'2023-07-05 08:07:35'),(890,3756,'2023-06-14 10:06:01'),(890,3760,'2023-06-14 10:06:01'),(890,3766,'2023-06-14 10:06:01'),(892,2739,'2023-06-14 10:06:01'),(892,2743,'2023-06-14 10:06:01'),(892,2744,'2023-06-14 10:06:01'),(892,3758,'2023-06-14 10:06:01'),(893,2741,'2023-06-14 10:06:01'),(893,4394,'2024-07-11 05:46:29'),(894,2740,'2023-06-14 10:06:02'),(894,4394,'2024-07-11 05:46:44'),(895,2742,'2023-06-14 10:06:02'),(896,2746,'2023-06-14 10:06:02'),(896,2747,'2023-06-14 10:06:02'),(896,3762,'2023-06-14 10:06:02'),(896,3769,'2023-06-14 10:06:02'),(896,3771,'2023-06-14 10:06:02'),(897,2748,'2023-06-14 10:06:02'),(897,2751,'2023-06-14 10:06:02'),(897,2752,'2023-06-14 10:06:02'),(898,2749,'2023-06-14 10:06:02'),(899,2750,'2023-06-14 10:06:02'),(900,3757,'2023-06-14 10:06:02'),(900,3764,'2023-06-14 10:06:02'),(901,3377,'2023-06-16 09:17:18'),(901,3380,'2023-06-16 09:17:18'),(901,3381,'2023-06-14 10:29:03'),(901,3382,'2023-06-16 09:17:18'),(901,3383,'2023-06-14 10:06:02'),(901,3384,'2023-06-16 09:17:18'),(902,3375,'2023-06-14 10:06:03'),(902,3378,'2023-06-14 10:06:03'),(902,3385,'2023-06-14 10:06:03'),(902,3386,'2023-06-14 10:06:03'),(903,3376,'2023-06-14 10:06:03'),(903,3378,'2023-06-14 10:06:03'),(903,3385,'2023-06-14 10:06:03'),(903,3386,'2023-06-14 10:06:03'),(904,3759,'2023-06-14 10:06:03'),(904,3770,'2023-06-14 10:06:03'),(905,3374,'2023-06-14 10:06:03'),(906,3364,'2023-06-14 10:29:03'),(906,3367,'2023-06-14 10:06:03'),(906,3368,'2023-06-14 10:06:03'),(906,3369,'2023-06-14 10:06:03'),(907,3362,'2023-06-14 10:06:04'),(907,3363,'2023-06-14 10:06:04'),(907,3768,'2023-06-14 10:06:04'),(907,3772,'2023-06-14 10:06:04'),(908,3365,'2023-06-14 10:06:04'),(908,3372,'2023-06-14 10:06:04'),(908,3373,'2023-06-14 10:06:04'),(909,3761,'2023-06-14 10:06:04'),(909,3765,'2023-06-14 10:06:04'),(910,3361,'2023-06-14 10:06:04'),(911,3355,'2023-06-14 10:29:03'),(911,3356,'2023-06-14 10:29:03'),(911,3357,'2023-06-14 10:29:03'),(911,3358,'2023-06-20 06:37:26'),(911,3359,'2023-06-14 10:29:03'),(911,3360,'2023-06-14 10:29:03'),(911,3364,'2023-06-14 10:29:03'),(912,3349,'2023-06-14 10:29:03'),(912,3350,'2023-06-14 10:29:03'),(912,3352,'2023-06-14 10:29:03'),(912,3353,'2023-06-14 10:29:03'),(912,3961,'2023-09-28 05:47:59'),(914,3756,'2023-06-16 09:16:28'),(914,3760,'2023-06-16 09:16:28'),(914,3766,'2023-06-16 09:16:28'),(917,3769,'2023-06-16 09:16:28'),(919,3756,'2023-06-16 09:16:28'),(940,3880,'2023-08-07 07:25:19'),(941,3898,'2023-08-07 07:26:12'),(941,3910,'2023-08-07 07:26:12'),(941,3914,'2023-08-07 07:26:12'),(942,3894,'2023-08-07 07:37:32'),(943,3892,'2023-08-07 07:38:32'),(943,3909,'2023-08-07 07:38:32'),(945,3915,'2023-08-07 07:41:41'),(945,3916,'2023-08-07 07:41:41'),(945,3917,'2023-08-07 07:41:41'),(945,3918,'2023-08-07 07:41:41'),(945,3919,'2023-08-07 07:41:41'),(945,3920,'2023-08-07 07:41:41'),(945,3921,'2023-08-07 07:41:41'),(945,3922,'2023-08-07 07:41:41'),(945,3924,'2023-08-07 07:41:41'),(945,3925,'2023-08-07 07:41:41'),(945,3926,'2023-08-07 07:41:41'),(946,3915,'2023-08-07 07:42:31'),(946,3920,'2023-08-07 07:42:31'),(947,3893,'2023-08-07 07:43:20'),(947,3900,'2023-08-07 07:43:20'),(948,3877,'2023-08-07 07:44:16'),(948,3885,'2023-08-07 07:44:16'),(948,3923,'2023-08-07 07:44:16'),(948,3926,'2023-08-07 07:44:16'),(948,4216,'2024-03-01 06:43:39'),(949,3890,'2023-08-07 07:47:13'),(949,3895,'2023-08-07 07:47:13'),(949,3896,'2023-08-07 07:47:13'),(949,3905,'2023-08-07 07:47:13'),(951,3931,'2023-08-28 05:57:06'),(951,3936,'2023-09-12 01:19:32'),(951,3957,'2023-09-18 06:34:22'),(954,3489,'2023-12-19 07:44:08'),(954,3491,'2024-02-23 02:16:40'),(954,3493,'2023-12-27 03:43:17'),(954,3942,'2024-02-23 02:15:46'),(954,4160,'2024-02-10 12:47:48'),(959,1544,'2023-09-27 10:02:57'),(961,4087,'2023-11-14 08:03:06'),(961,4088,'2023-11-15 02:41:34'),(961,4090,'2023-11-14 08:03:06'),(961,4095,'2023-11-15 02:41:34'),(961,4096,'2023-11-14 08:42:43'),(961,4098,'2023-11-15 02:41:34'),(961,4099,'2023-11-14 08:43:00'),(961,4101,'2023-11-15 02:41:34'),(961,4103,'2023-11-15 02:41:34'),(961,4106,'2023-11-15 02:41:34'),(963,2856,'2023-11-29 09:46:32'),(964,4193,'2024-02-23 01:17:12'),(964,4199,'2024-02-23 01:17:12'),(964,4205,'2024-02-23 01:17:12'),(965,2074,'2024-02-23 01:57:25'),(966,4232,'2024-04-01 06:51:48'),(966,4233,'2024-04-01 06:45:57'),(966,4234,'2024-04-01 06:51:48'),(966,4235,'2024-04-01 06:51:48'),(966,4236,'2024-04-01 06:42:09'),(966,4237,'2024-04-01 06:42:09'),(966,4238,'2024-04-01 06:44:13'),(966,4239,'2024-04-01 07:19:45'),(970,4314,'2024-05-30 03:25:29'),(970,4315,'2024-05-30 03:25:29'),(970,4316,'2024-05-30 03:25:29'),(970,4317,'2024-05-30 03:25:29'),(970,4319,'2024-05-30 03:25:29'),(970,4320,'2024-05-30 03:25:29'),(970,4321,'2024-05-30 03:25:29'),(970,4323,'2024-05-30 03:25:29'),(970,4325,'2024-05-30 03:25:29'),(970,4337,'2024-05-30 03:25:29'),(970,4338,'2024-05-30 03:25:29'),(970,4339,'2024-05-30 03:25:29'),(970,4340,'2024-05-30 03:25:29'),(970,4341,'2024-05-30 03:25:29'),(970,4345,'2024-05-30 03:25:29'),(970,4349,'2024-05-30 03:25:29'),(970,4352,'2024-06-04 06:21:29'),(970,4353,'2024-06-05 01:38:00'),(970,4372,'2024-07-03 08:08:25'),(970,4373,'2024-07-03 08:08:25'),(970,4379,'2024-07-03 08:08:25'),(971,4357,'2024-06-14 08:41:59'),(982,4385,'2024-07-05 01:25:34'),(982,4386,'2024-07-05 01:25:34'),(982,4387,'2024-07-05 01:25:34'),(989,2697,'2024-07-18 09:27:06'),(989,4381,'2024-07-18 09:27:06'),(989,4404,'2024-07-18 09:27:06'),(989,4405,'2024-07-18 09:27:06'),(989,4416,'2024-07-18 09:27:06'),(989,4417,'2024-07-18 09:27:06'),(989,4418,'2024-07-18 09:27:06'),(989,4419,'2024-07-18 09:27:06'),(989,4420,'2024-07-18 09:27:06'),(989,4421,'2024-07-18 09:27:06'),(989,4424,'2024-07-18 09:27:06'),(989,4427,'2024-07-18 09:27:06'),(989,4429,'2024-07-18 09:27:06'),(989,4430,'2024-07-18 09:27:06'),(989,4431,'2024-07-18 09:27:06'),(989,4433,'2024-07-18 09:27:06'),(989,4435,'2024-07-18 09:27:06'),(989,4436,'2024-07-18 09:27:06'),(989,4437,'2024-07-18 09:27:06'),(990,3248,'2024-07-18 09:27:07'),(990,4381,'2024-07-18 09:27:07'),(990,4407,'2024-07-18 09:27:07'),(990,4409,'2024-07-18 09:27:07'),(991,4406,'2024-07-18 09:27:08'),(991,4408,'2024-07-18 09:27:08'),(992,4396,'2024-07-18 09:27:08'),(992,4397,'2024-07-18 09:27:08'),(992,4398,'2024-07-18 09:27:08'),(992,4399,'2024-07-18 09:27:08'),(992,4400,'2024-07-18 09:27:08'),(992,4401,'2024-07-18 09:27:08'),(992,4402,'2024-07-18 09:27:08'),(992,4403,'2024-07-18 09:27:08'),(993,3942,'2024-07-18 09:31:14'),(993,3945,'2024-07-18 09:31:14'),(993,4132,'2024-07-18 09:31:14'),(993,4244,'2024-07-18 09:31:14'),(993,4413,'2024-07-18 09:31:14'),(993,4414,'2024-07-18 09:31:14'),(994,4269,'2024-07-18 09:31:15'),(996,4305,'2024-07-18 09:31:15'),(998,4411,'2024-07-18 09:31:15'),(999,3319,'2024-07-18 09:31:15'),(999,3322,'2024-07-18 09:31:15'),(999,3323,'2024-07-18 09:31:15'),(1000,2816,'2024-07-18 09:31:16'),(1000,3094,'2024-07-18 09:31:16'),(1000,3526,'2024-07-18 09:31:16'),(1000,3537,'2024-07-18 09:31:16'),(1000,3790,'2024-07-18 09:31:16'),(1000,3791,'2024-07-18 09:31:16'),(1000,3793,'2024-07-18 09:31:16'),(1000,3795,'2024-07-18 09:31:16'),(1000,3800,'2024-07-18 09:31:16'),(1000,3801,'2024-07-18 09:31:16'),(1000,3803,'2024-07-18 09:31:16'),(1000,3815,'2024-07-18 09:31:16'),(1000,3816,'2024-07-18 09:31:16'),(1000,4132,'2024-07-18 09:31:16'),(1000,4271,'2024-07-18 09:31:16'),(1000,4272,'2024-07-18 09:31:16'),(1001,3166,'2024-07-18 09:31:16'),(1001,4240,'2024-07-18 09:31:16'),(1001,4256,'2024-07-18 09:31:16'),(1001,4257,'2024-07-18 09:31:16'),(1001,4258,'2024-07-18 09:31:16'),(1002,3785,'2024-07-18 09:31:17'),(1002,3799,'2024-07-18 09:31:17'),(1002,4410,'2024-07-18 09:31:17'),(1002,4412,'2024-07-18 09:31:17'),(1003,608,'2024-07-18 09:31:17'),(1003,747,'2024-07-18 09:31:17'),(1003,3805,'2024-07-18 09:31:17'),(1003,3945,'2024-07-18 09:31:17'),(1003,4122,'2024-07-18 09:31:17'),(1003,4124,'2024-07-18 09:31:17'),(1003,4133,'2024-07-18 09:31:17'),(1003,4134,'2024-07-18 09:31:17'),(1003,4272,'2024-07-18 09:31:17'),(1003,4446,'2024-07-23 03:11:19'),(1003,4448,'2024-07-23 03:11:19'),(1004,4131,'2024-07-18 09:31:18'),(1006,3637,'2024-07-19 02:32:05'),(1006,3804,'2024-07-18 09:31:18'),(1006,3806,'2024-07-18 09:31:18'),(1006,3807,'2024-07-18 09:31:18'),(1006,3809,'2024-07-18 09:31:18'),(1006,3810,'2024-07-18 09:31:18'),(1006,3813,'2024-07-18 09:31:18'),(1007,4117,'2024-07-18 09:31:19'),(1007,4118,'2024-07-18 09:31:19'),(1007,4120,'2024-07-18 09:31:19'),(1007,4126,'2024-07-18 09:31:19'),(1007,4127,'2024-07-18 09:31:19'),(1007,4132,'2024-07-18 09:31:19'),(1007,4135,'2024-07-18 09:31:19'),(1007,4244,'2024-07-18 09:31:19'),(1007,4388,'2024-07-18 09:31:19'),(1007,4389,'2024-07-18 09:31:19'),(1007,4390,'2024-07-18 09:31:19'),(1007,4391,'2024-07-18 09:31:19'),(1007,4392,'2024-07-18 09:31:19'),(1007,4393,'2024-07-18 09:31:19'),(1007,4415,'2024-07-18 09:31:19'),(1008,4118,'2024-07-18 09:31:19'),(1009,4391,'2024-07-18 09:31:20'),(1010,608,'2024-07-18 09:31:20'),(1010,747,'2024-07-18 09:31:20'),(1010,3945,'2024-07-18 09:31:20'),(1010,4264,'2024-07-18 09:31:20'),(1010,4265,'2024-07-18 09:31:20'),(1010,4266,'2024-07-18 09:31:20'),(1010,4267,'2024-07-18 09:31:20'),(1010,4270,'2024-07-18 09:31:20'),(1011,4268,'2024-07-18 09:31:20'),(1011,4269,'2024-07-18 09:31:20'),(1011,4713,'2024-09-12 02:46:10'),(1011,4714,'2024-09-12 02:46:10'),(1011,4715,'2024-09-12 02:46:10'),(1011,4716,'2024-09-12 02:46:10'),(1011,4717,'2024-09-12 02:46:10'),(1011,4718,'2024-09-12 02:46:10'),(1011,4719,'2024-09-12 02:46:10'),(1011,4720,'2024-09-12 02:46:10'),(1011,4721,'2024-09-12 02:46:10'),(1011,4722,'2024-09-12 02:46:10'),(1011,4723,'2024-09-12 02:46:10'),(1011,4724,'2024-09-12 02:46:10'),(1011,4725,'2024-09-12 02:46:10'),(1011,4726,'2024-09-12 02:46:10'),(1013,3416,'2024-09-23 05:56:08'),(1013,3870,'2024-09-23 05:56:08'),(1013,4728,'2024-09-23 05:56:40'),(1014,3788,'2024-08-23 02:32:34'),(1014,3798,'2024-08-23 02:32:34'),(1014,4460,'2024-08-23 02:32:34'),(1014,4461,'2024-08-23 02:32:34'),(1014,4462,'2024-08-23 02:32:34'),(1014,4463,'2024-08-23 02:32:34'),(1014,4464,'2024-08-23 02:32:34'),(1014,4465,'2024-08-23 02:32:34'),(1014,4466,'2024-08-23 02:32:34'),(1014,4467,'2024-08-23 02:32:34'),(1014,4468,'2024-08-23 02:32:34'),(1014,4469,'2024-08-23 02:32:34'),(1014,4470,'2024-08-23 02:32:34'),(1014,4471,'2024-08-23 02:32:34'),(1014,4472,'2024-08-23 02:32:34'),(1014,4473,'2024-08-23 02:32:34'),(1014,4474,'2024-08-23 02:32:34'),(1014,4475,'2024-08-23 02:32:34'),(1014,4476,'2024-08-23 02:32:34'),(1014,4477,'2024-08-23 02:32:34'),(1014,4478,'2024-08-23 02:32:34'),(1014,4479,'2024-08-23 02:32:34'),(1015,4458,'2024-08-23 02:32:34'),(1022,1872,'2024-09-10 01:46:27'),(1022,4686,'2024-09-10 01:46:27'),(1022,4688,'2024-09-10 01:46:27'),(1022,4689,'2024-09-10 01:46:27'),(1022,4690,'2024-09-10 01:46:27'),(1022,4691,'2024-09-10 01:46:27'),(1022,4694,'2024-09-10 01:46:27'),(1022,4696,'2024-09-10 01:46:27'),(1022,4699,'2024-09-10 01:46:27'),(1022,4700,'2024-09-10 01:46:27'),(1022,4701,'2024-09-10 01:46:27'),(1022,4702,'2024-09-10 01:46:27'),(1022,4704,'2024-09-10 01:46:27'),(1022,4707,'2024-09-10 01:46:27'),(1022,4710,'2024-09-10 01:46:27'),(1022,4711,'2024-09-10 01:46:27'),(1024,4659,'2024-09-29 02:10:12'),(1025,4073,'2024-09-29 02:10:13'),(1026,4658,'2024-09-29 02:10:13'),(1026,4664,'2024-09-29 02:10:13'),(1026,4673,'2024-09-29 02:10:13'),(1026,4675,'2024-09-29 02:10:13'),(1027,4658,'2024-09-29 02:10:14'),(1027,4664,'2024-09-29 02:10:14'),(1027,4668,'2024-09-29 02:10:14'),(1027,4673,'2024-09-29 02:10:14'),(1027,4675,'2024-09-29 02:10:14'),(1027,4733,'2024-09-29 02:10:14'),(1028,4674,'2024-09-29 02:10:14'),(1029,4656,'2024-09-29 02:10:14'),(1030,4670,'2024-09-29 02:10:15'),(1031,4657,'2024-09-29 02:10:15'),(1031,4672,'2024-09-29 02:10:15'),(1033,4665,'2024-09-29 02:10:16'),(1033,4667,'2024-09-29 02:10:16'),(1033,4668,'2024-09-29 02:10:16'),(1033,4671,'2024-09-29 02:10:16'),(1033,4682,'2024-09-29 02:10:16'),(1034,4680,'2024-09-29 02:10:16'); /*!40000 ALTER TABLE `sys_action_api` ENABLE KEYS */; UNLOCK TABLES; @@ -72,7 +72,7 @@ UNLOCK TABLES; LOCK TABLES `sys_group_resource_mapping` WRITE; /*!40000 ALTER TABLE `sys_group_resource_mapping` DISABLE KEYS */; -INSERT INTO `sys_group_resource_mapping` VALUES (266605986624569345,100100100,393,'2022-07-25 16:37:00',1),(266605986624569346,100100101,688,'2022-07-25 16:37:00',1),(266605986624569347,100100101,393,'2022-07-25 16:37:00',1),(266605986624569348,200000000,609,'2022-07-25 16:37:00',1),(266605986624569349,200000000,681,'2022-07-25 16:37:00',1),(266605986624569350,200000000,199,'2022-07-25 16:37:00',1),(266605986624569351,200000000,327,'2022-07-25 16:37:00',1),(266605986624569352,200000000,78,'2022-07-25 16:37:00',1),(266605986624569353,200000000,679,'2022-07-25 16:37:00',1),(266605986624569354,200000000,81,'2022-07-25 16:37:00',1),(266605986624569355,200000000,521,'2022-07-25 16:37:00',1),(266605986624569357,200100100,58,'2022-07-25 16:37:00',1),(266605986624569358,200100100,29,'2022-07-25 16:37:00',1),(266605986624569359,200100100,24,'2022-07-25 16:37:00',1),(266605986624569360,200100100,25,'2022-07-25 16:37:00',1),(266605986624569361,200100100,55,'2022-07-25 16:37:00',1),(266605986624569362,200100101,284,'2022-07-25 16:37:00',1),(266605986624569363,200100101,58,'2022-07-25 16:37:00',1),(266605986624569364,200100101,93,'2022-07-25 16:37:00',1),(266605986624569365,200100101,29,'2022-07-25 16:37:00',1),(266605986624569366,200100101,57,'2022-07-25 16:37:00',1),(266605986624569367,200100101,24,'2022-07-25 16:37:00',1),(266605986624569368,200100101,25,'2022-07-25 16:37:00',1),(266605986624569369,200100101,189,'2022-07-25 16:37:00',1),(266605986624569370,200100101,55,'2022-07-25 16:37:00',1),(266605986624569371,200100101,54,'2022-07-25 16:37:00',1),(266605986624569372,200101100,79,'2022-07-25 16:37:00',1),(266605986624569373,200101100,37,'2022-07-25 16:37:00',1),(266605986624569374,200101100,24,'2022-07-25 16:37:00',1),(266605986624569375,200101100,27,'2022-07-25 16:37:00',1),(266605986624569376,200101100,78,'2022-07-25 16:37:00',1),(266605986624569377,200101101,285,'2022-07-25 16:37:00',1),(266605986624569378,200101101,79,'2022-07-25 16:37:00',1),(266605986624569379,200101101,37,'2022-07-25 16:37:00',1),(266605986624569380,200101101,53,'2022-07-25 16:37:00',1),(266605986624569381,200101101,24,'2022-07-25 16:37:00',1),(266605986624569382,200101101,27,'2022-07-25 16:37:00',1),(266605986624569383,200101101,184,'2022-07-25 16:37:00',1),(266605986624569384,200101101,78,'2022-07-25 16:37:00',1),(266605986624569385,200101101,51,'2022-07-25 16:37:00',1),(266605986624569386,200102100,681,'2022-07-25 16:37:00',1),(266605986624569387,200102100,24,'2022-07-25 16:37:00',1),(266605986624569388,200102100,674,'2022-07-25 16:37:00',1),(266605986624569389,200102100,680,'2022-07-25 16:37:00',1),(266605986624569390,200102101,677,'2022-07-25 16:37:00',1),(266605986624569391,200102101,676,'2022-07-25 16:37:00',1),(266605986624569392,200102101,678,'2022-07-25 16:37:00',1),(266605986624569393,200102101,681,'2022-07-25 16:37:00',1),(266605986624569394,200102101,24,'2022-07-25 16:37:00',1),(266605986624569395,200102101,674,'2022-07-25 16:37:00',1),(266605986624569396,200102101,679,'2022-07-25 16:37:00',1),(266605986624569397,200102101,680,'2022-07-25 16:37:00',1),(266605986624569398,200102101,675,'2022-07-25 16:37:00',1),(266605986624569403,200103101,521,'2022-07-25 16:37:00',1),(266605986624569404,200103101,358,'2022-07-25 16:37:00',1),(266605986624569405,200103102,670,'2022-07-25 16:37:00',1),(266605986624569406,200103102,358,'2022-07-25 16:37:00',1),(266605986624569407,200103103,608,'2022-07-25 16:37:00',1),(266605986624569408,200103103,358,'2022-07-25 16:37:00',1),(266605986624569409,200103104,455,'2022-07-25 16:37:00',1),(266605986624569410,200103104,358,'2022-07-25 16:37:00',1),(266605986624569411,200104100,217,'2022-07-25 16:37:00',1),(266605986624569412,200104100,80,'2022-07-25 16:37:00',1),(266605986624569413,200104100,90,'2022-07-25 16:37:00',1),(266605986624569414,200104100,102,'2022-07-25 16:37:00',1),(266605986624569415,200104100,358,'2022-07-25 16:37:00',1),(266605986624569416,200104101,359,'2022-07-25 16:37:00',1),(266605986624569417,200104101,585,'2022-07-25 16:37:00',1),(266605986624569418,200104101,358,'2022-07-25 16:37:00',1),(266605986624569419,200104101,584,'2022-07-25 16:37:00',1),(266605986624569421,200104102,358,'2022-07-25 16:37:00',1),(266605986624569422,200104103,586,'2022-07-25 16:37:00',1),(266605986624569423,200104103,358,'2022-07-25 16:37:00',1),(266605986624569424,200104103,584,'2022-07-25 16:37:00',1),(266605986624569425,200104104,589,'2022-07-25 16:37:00',1),(266605986624569426,200104104,588,'2022-07-25 16:37:00',1),(266605986624569427,200104104,358,'2022-07-25 16:37:00',1),(266605986624569428,200104104,587,'2022-07-25 16:37:00',1),(266605986624569429,200104105,590,'2022-07-25 16:37:00',1),(266605986624569430,200104105,588,'2022-07-25 16:37:00',1),(266605986624569431,200104105,358,'2022-07-25 16:37:00',1),(266605986624569432,200104105,587,'2022-07-25 16:37:00',1),(266605986624569433,200104106,592,'2022-07-25 16:37:00',1),(266605986624569434,200104106,358,'2022-07-25 16:37:00',1),(266605986624569435,200104106,587,'2022-07-25 16:37:00',1),(266605986624569436,200104106,591,'2022-07-25 16:37:00',1),(266605986624569437,200104107,594,'2022-07-25 16:37:00',1),(266605986624569438,200104107,358,'2022-07-25 16:37:00',1),(266605986624569439,200104107,587,'2022-07-25 16:37:00',1),(266605986624569440,200104107,593,'2022-07-25 16:37:00',1),(266605986624569441,200105100,599,'2022-07-25 16:37:00',1),(266605986624569442,200105100,595,'2022-07-25 16:37:00',1),(266605986624569443,200105100,598,'2022-07-25 16:37:00',1),(266605986624569444,200105100,358,'2022-07-25 16:37:00',1),(266605986624569446,200105101,595,'2022-07-25 16:37:00',1),(266605986624569448,200105101,358,'2022-07-25 16:37:00',1),(266605986624569449,200105102,699,'2022-07-25 16:37:00',1),(266605986624569450,200105102,595,'2022-07-25 16:37:00',1),(266605986624569451,200105102,598,'2022-07-25 16:37:00',1),(266605986624569452,200105102,358,'2022-07-25 16:37:00',1),(266605986624569453,200105103,604,'2022-07-25 16:37:00',1),(266605986624569454,200105103,595,'2022-07-25 16:37:00',1),(266605986624569455,200105103,603,'2022-07-25 16:37:00',1),(266605986624569456,200105103,358,'2022-07-25 16:37:00',1),(266605986624569457,200105104,597,'2022-07-25 16:37:00',1),(266605986624569458,200105104,595,'2022-07-25 16:37:00',1),(266605986624569459,200105104,596,'2022-07-25 16:37:00',1),(266605986624569460,200105104,358,'2022-07-25 16:37:00',1),(266605986624569461,200105105,652,'2022-07-25 16:37:00',1),(266605986624569462,200105105,358,'2022-07-25 16:37:00',1),(266605986624569463,200105106,654,'2022-07-25 16:37:00',1),(266605986624569464,200105106,595,'2022-07-25 16:37:00',1),(266605986624569465,200105106,653,'2022-07-25 16:37:00',1),(266605986624569466,200105106,358,'2022-07-25 16:37:00',1),(266605986624569467,200105107,673,'2022-07-25 16:37:00',1),(266605986624569468,200105107,595,'2022-07-25 16:37:00',1),(266605986624569469,200105107,672,'2022-07-25 16:37:00',1),(266605986624569470,200105107,358,'2022-07-25 16:37:00',1),(266605986624569471,200106100,606,'2022-07-25 16:37:00',1),(266605986624569472,200106100,358,'2022-07-25 16:37:00',1),(266605986624569473,200106100,605,'2022-07-25 16:37:00',1),(266605986624569474,200106101,607,'2022-07-25 16:37:00',1),(266605986624569475,200106101,358,'2022-07-25 16:37:00',1),(266605986624569476,200106101,605,'2022-07-25 16:37:00',1),(266605986624569477,200107100,582,'2022-07-25 16:37:00',1),(266605986628763648,200107100,583,'2022-07-25 16:37:00',1),(266605986628763649,200107100,358,'2022-07-25 16:37:00',1),(266605986628763650,200107100,581,'2022-07-25 16:37:00',1),(266605986628763651,200108100,358,'2022-07-25 16:37:00',1),(266605986628763652,200108100,685,'2022-07-25 16:37:00',1),(266605986628763653,200109100,306,'2022-07-25 16:37:00',1),(266605986628763654,200109100,192,'2022-07-25 16:37:00',1),(266605986628763655,200109100,288,'2022-07-25 16:37:00',1),(266605986628763656,200109100,382,'2022-07-25 16:37:00',1),(266605986628763657,200109100,302,'2022-07-25 16:37:00',1),(266605986628763658,200109100,303,'2022-07-25 16:37:00',1),(266605986628763659,200109100,305,'2022-07-25 16:37:00',1),(266605986628763660,200109100,301,'2022-07-25 16:37:00',1),(266605986628763661,200109100,307,'2022-07-25 16:37:00',1),(266605986628763662,200109100,289,'2022-07-25 16:37:00',1),(266605986628763663,200109100,651,'2022-07-25 16:37:00',1),(266605986628763664,200109100,191,'2022-07-25 16:37:00',1),(266605986628763665,200109100,232,'2022-07-25 16:37:00',1),(266605986628763666,200109100,308,'2022-07-25 16:37:00',1),(266605986628763667,200109100,180,'2022-07-25 16:37:00',1),(266605986628763668,200109100,309,'2022-07-25 16:37:00',1),(266605986628763669,200109100,387,'2022-07-25 16:37:00',1),(266605986628763670,200109100,62,'2022-07-25 16:37:00',1),(266605986628763671,200109100,174,'2022-07-25 16:37:00',1),(266605986628763672,200109100,63,'2022-07-25 16:37:00',1),(266605986628763673,200109100,304,'2022-07-25 16:37:00',1),(266605986628763674,200109100,381,'2022-07-25 16:37:00',1),(266605986628763675,200109100,236,'2022-07-25 16:37:00',1),(266605986628763676,200109100,65,'2022-07-25 16:37:00',1),(266605986628763677,200109101,306,'2022-07-25 16:37:00',1),(266605986628763678,200109101,192,'2022-07-25 16:37:00',1),(266605986628763679,200109101,382,'2022-07-25 16:37:00',1),(266605986628763680,200109101,301,'2022-07-25 16:37:00',1),(266605986628763681,200109101,307,'2022-07-25 16:37:00',1),(266605986628763682,200109101,289,'2022-07-25 16:37:00',1),(266605986628763683,200109101,651,'2022-07-25 16:37:00',1),(266605986628763684,200109101,191,'2022-07-25 16:37:00',1),(266605986628763685,200109101,308,'2022-07-25 16:37:00',1),(266605986628763686,200109101,180,'2022-07-25 16:37:00',1),(266605986628763687,200109101,62,'2022-07-25 16:37:00',1),(266605986628763688,200109101,63,'2022-07-25 16:37:00',1),(266605986628763689,200109101,381,'2022-07-25 16:37:00',1),(266605986628763690,200109101,236,'2022-07-25 16:37:00',1),(266605986628763691,200109101,65,'2022-07-25 16:37:00',1),(266605986628763692,200109102,517,'2022-07-25 16:37:00',1),(266605986628763693,200109102,518,'2022-07-25 16:37:00',1),(266605986628763694,200109102,519,'2022-07-25 16:37:00',1),(266605986628763695,200109102,62,'2022-07-25 16:37:00',1),(266605986628763696,200109102,65,'2022-07-25 16:37:00',1),(266605986628763697,200109103,520,'2022-07-25 16:37:00',1),(266605986628763698,200109103,515,'2022-07-25 16:37:00',1),(266605986628763699,200109103,516,'2022-07-25 16:37:00',1),(266605986628763700,200109103,517,'2022-07-25 16:37:00',1),(266605986628763701,200109103,514,'2022-07-25 16:37:00',1),(266605986628763702,200109103,518,'2022-07-25 16:37:00',1),(266605986628763703,200109103,519,'2022-07-25 16:37:00',1),(266605986628763704,200109103,62,'2022-07-25 16:37:00',1),(266605986628763705,200109103,65,'2022-07-25 16:37:00',1),(266605986628763706,200110100,217,'2022-07-25 16:37:00',1),(266605986628763707,200110100,259,'2022-07-25 16:37:00',1),(266605986628763708,200110100,197,'2022-07-25 16:37:00',1),(266605986628763709,200110100,199,'2022-07-25 16:37:00',1),(266605986628763710,200110100,198,'2022-07-25 16:37:00',1),(266605986628763711,200110100,216,'2022-07-25 16:37:00',1),(266605986628763712,200110100,327,'2022-07-25 16:37:00',1),(266605986628763713,200110100,114,'2022-07-25 16:37:00',1),(266605986628763714,200110100,222,'2022-07-25 16:37:00',1),(266605986628763715,200110100,224,'2022-07-25 16:37:00',1),(266605986628763716,200110100,115,'2022-07-25 16:37:00',1),(266605986628763717,200110100,80,'2022-07-25 16:37:00',1),(266605986628763718,200110100,258,'2022-07-25 16:37:00',1),(266605986628763719,200110100,81,'2022-07-25 16:37:00',1),(266605986628763720,200110100,100,'2022-07-25 16:37:00',1),(266605986628763721,200110100,96,'2022-07-25 16:37:00',1),(266605986628763722,200110100,664,'2022-07-25 16:37:00',1),(266605986628763723,200110100,90,'2022-07-25 16:37:00',1),(266605986628763724,200110100,106,'2022-07-25 16:37:00',1),(266605986628763725,200110100,105,'2022-07-25 16:37:00',1),(266605986628763726,200110100,102,'2022-07-25 16:37:00',1),(266605986628763728,200110101,213,'2022-07-25 16:37:00',1),(266605986628763729,200110101,87,'2022-07-25 16:37:00',1),(266605986628763730,200110101,89,'2022-07-25 16:37:00',1),(266605986628763731,200110101,214,'2022-07-25 16:37:00',1),(266605986628763732,200110101,197,'2022-07-25 16:37:00',1),(266605986628763733,200110101,199,'2022-07-25 16:37:00',1),(266605986628763734,200110101,198,'2022-07-25 16:37:00',1),(266605986628763735,200110101,216,'2022-07-25 16:37:00',1),(266605986628763736,200110101,80,'2022-07-25 16:37:00',1),(266605986628763737,200110101,81,'2022-07-25 16:37:00',1),(266605986628763738,200110101,95,'2022-07-25 16:37:00',1),(266605986628763739,200110101,97,'2022-07-25 16:37:00',1),(266605986628763740,200110101,100,'2022-07-25 16:37:00',1),(266605986628763741,200110101,96,'2022-07-25 16:37:00',1),(266605986628763742,200110102,217,'2022-07-25 16:37:00',1),(266605986628763743,200110102,259,'2022-07-25 16:37:00',1),(266605986628763744,200110102,327,'2022-07-25 16:37:00',1),(266605986628763745,200110102,221,'2022-07-25 16:37:00',1),(266605986628763746,200110102,116,'2022-07-25 16:37:00',1),(266605986628763747,200110102,220,'2022-07-25 16:37:00',1),(266605986628763748,200110102,114,'2022-07-25 16:37:00',1),(266605986628763749,200110102,222,'2022-07-25 16:37:00',1),(266605986628763750,200110102,225,'2022-07-25 16:37:00',1),(266605986628763751,200110102,227,'2022-07-25 16:37:00',1),(266605986628763752,200110102,224,'2022-07-25 16:37:00',1),(266605986628763753,200110102,115,'2022-07-25 16:37:00',1),(266605986628763754,200110102,119,'2022-07-25 16:37:00',1),(266605986628763755,200110102,80,'2022-07-25 16:37:00',1),(266605986628763756,200110102,258,'2022-07-25 16:37:00',1),(266605986628763757,200110102,664,'2022-07-25 16:37:00',1),(266605986628763758,200110102,90,'2022-07-25 16:37:00',1),(266605986628763759,200110102,104,'2022-07-25 16:37:00',1),(266605986628763760,200110102,103,'2022-07-25 16:37:00',1),(266605986628763761,200110102,106,'2022-07-25 16:37:00',1),(266605986628763762,200110102,105,'2022-07-25 16:37:00',1),(266605986628763763,200110102,102,'2022-07-25 16:37:00',1),(266605986628763764,200111100,325,'2022-07-25 16:37:00',1),(266605986628763765,200111100,317,'2022-07-25 16:37:00',1),(266605986628763766,200111100,323,'2022-07-25 16:37:00',1),(266605986628763767,200111100,314,'2022-07-25 16:37:00',1),(266605986628763768,200111100,316,'2022-07-25 16:37:00',1),(266605986628763769,200111100,311,'2022-07-25 16:37:00',1),(266605986628763770,200111100,312,'2022-07-25 16:37:00',1),(266605986628763771,200111100,322,'2022-07-25 16:37:00',1),(266605986628763772,200111100,319,'2022-07-25 16:37:00',1),(266605986628763773,200111100,321,'2022-07-25 16:37:00',1),(266605986628763774,200111100,320,'2022-07-25 16:37:00',1),(266605986628763775,200111100,80,'2022-07-25 16:37:00',1),(266605986628763776,200111100,310,'2022-07-25 16:37:00',1),(266605986628763777,200111100,324,'2022-07-25 16:37:00',1),(266605986628763778,200111100,315,'2022-07-25 16:37:00',1),(266605986628763779,200111100,318,'2022-07-25 16:37:00',1),(266605986628763780,200111100,326,'2022-07-25 16:37:00',1),(266605986628763781,200111100,313,'2022-07-25 16:37:00',1),(266605986628763782,200111101,314,'2022-07-25 16:37:00',1),(266605986628763783,200111101,311,'2022-07-25 16:37:00',1),(266605986628763784,200111101,312,'2022-07-25 16:37:00',1),(266605986628763785,200111101,322,'2022-07-25 16:37:00',1),(266605986628763786,200111101,320,'2022-07-25 16:37:00',1),(266605986628763787,200111101,80,'2022-07-25 16:37:00',1),(266605986628763788,200111101,310,'2022-07-25 16:37:00',1),(266605986628763789,200111101,318,'2022-07-25 16:37:00',1),(266605986628763790,200111101,326,'2022-07-25 16:37:00',1),(266605986628763791,200111101,313,'2022-07-25 16:37:00',1),(266605986628763792,200112100,80,'2022-07-25 16:37:00',1),(266605986628763793,200112100,682,'2022-07-25 16:37:00',1),(266605986628763794,200112101,80,'2022-07-25 16:37:00',1),(266605986628763795,200112101,682,'2022-07-25 16:37:00',1),(266605986628763796,200113100,332,'2022-07-25 16:37:00',1),(266605986628763797,200113100,337,'2022-07-25 16:37:00',1),(266605986628763798,200113100,342,'2022-07-25 16:37:00',1),(266605986628763799,200113100,329,'2022-07-25 16:37:00',1),(266605986628763800,200113100,409,'2022-07-25 16:37:00',1),(266605986628763801,200113100,339,'2022-07-25 16:37:00',1),(266605986628763802,200113100,340,'2022-07-25 16:37:00',1),(266605986628763803,200113100,246,'2022-07-25 16:37:00',1),(266605986628763804,200113100,386,'2022-07-25 16:37:00',1),(266605986628763805,200113100,341,'2022-07-25 16:37:00',1),(266605986628763806,200113100,334,'2022-07-25 16:37:00',1),(266605986628763807,200113100,508,'2022-07-25 16:37:00',1),(266605986628763808,200113100,385,'2022-07-25 16:37:00',1),(266605986628763809,200113100,504,'2022-07-25 16:37:00',1),(266605986628763810,200113100,501,'2022-07-25 16:37:00',1),(266605986628763811,200113100,502,'2022-07-25 16:37:00',1),(266605986628763812,200113100,503,'2022-07-25 16:37:00',1),(266605986628763813,200113100,343,'2022-07-25 16:37:00',1),(266605986628763814,200113100,384,'2022-07-25 16:37:00',1),(266605986628763815,200113100,457,'2022-07-25 16:37:00',1),(266605986628763816,200113100,243,'2022-07-25 16:37:00',1),(266605986628763817,200113100,333,'2022-07-25 16:37:00',1),(266605986628763818,200113100,336,'2022-07-25 16:37:00',1),(266605986628763819,200113100,328,'2022-07-25 16:37:00',1),(266605986628763820,200113100,335,'2022-07-25 16:37:00',1),(266605986628763821,200113100,383,'2022-07-25 16:37:00',1),(266605986628763822,200113100,338,'2022-07-25 16:37:00',1),(266605986628763823,200113100,124,'2022-07-25 16:37:00',1),(266605986628763824,200113100,239,'2022-07-25 16:37:00',1),(266605986628763825,200113100,238,'2022-07-25 16:37:00',1),(266605986628763826,200113100,240,'2022-07-25 16:37:00',1),(266605986628763827,200113100,500,'2022-07-25 16:37:00',1),(266605986628763828,200113100,499,'2022-07-25 16:37:00',1),(266605986628763829,200113100,331,'2022-07-25 16:37:00',1),(266605986628763830,200113100,458,'2022-07-25 16:37:00',1),(266605986628763831,200113100,125,'2022-07-25 16:37:00',1),(266605986628763832,200113101,332,'2022-07-25 16:37:00',1),(266605986628763833,200113101,337,'2022-07-25 16:37:00',1),(266605986628763834,200113101,246,'2022-07-25 16:37:00',1),(266605986628763835,200113101,386,'2022-07-25 16:37:00',1),(266605986628763836,200113101,341,'2022-07-25 16:37:00',1),(266605986628763837,200113101,334,'2022-07-25 16:37:00',1),(266605986628763838,200113101,508,'2022-07-25 16:37:00',1),(266605986628763839,200113101,502,'2022-07-25 16:37:00',1),(266605986628763840,200113101,503,'2022-07-25 16:37:00',1),(266605986628763841,200113101,343,'2022-07-25 16:37:00',1),(266605986628763842,200113101,457,'2022-07-25 16:37:00',1),(266605986628763843,200113101,336,'2022-07-25 16:37:00',1),(266605986628763844,200113101,335,'2022-07-25 16:37:00',1),(266605986628763845,200113101,124,'2022-07-25 16:37:00',1),(266605986628763846,200113101,238,'2022-07-25 16:37:00',1),(266605986628763847,200113101,499,'2022-07-25 16:37:00',1),(266605986628763848,200113101,331,'2022-07-25 16:37:00',1),(266605986628763849,200113101,458,'2022-07-25 16:37:00',1),(266605986628763850,200113101,125,'2022-07-25 16:37:00',1),(266605986628763851,200113102,562,'2022-07-25 16:37:00',1),(266605986628763852,200113102,124,'2022-07-25 16:37:00',1),(266605986628763853,200114100,472,'2022-07-25 16:37:00',1),(266605986628763854,200114100,561,'2022-07-25 16:37:00',1),(266605986628763855,200114100,491,'2022-07-25 16:37:00',1),(266605986628763856,200114100,469,'2022-07-25 16:37:00',1),(266605986628763857,200114100,490,'2022-07-25 16:37:00',1),(266605986628763858,200114100,492,'2022-07-25 16:37:00',1),(266605986628763859,200114100,470,'2022-07-25 16:37:00',1),(266605986628763860,200114100,483,'2022-07-25 16:37:00',1),(266605986628763861,200114100,487,'2022-07-25 16:37:00',1),(266605986628763862,200114100,478,'2022-07-25 16:37:00',1),(266605986628763863,200114100,498,'2022-07-25 16:37:00',1),(266605986628763864,200114100,497,'2022-07-25 16:37:00',1),(266605986628763865,200114100,493,'2022-07-25 16:37:00',1),(266605986628763866,200114100,495,'2022-07-25 16:37:00',1),(266605986628763867,200114100,494,'2022-07-25 16:37:00',1),(266605986628763868,200114100,485,'2022-07-25 16:37:00',1),(266605986628763869,200114100,496,'2022-07-25 16:37:00',1),(266605986628763870,200114100,467,'2022-07-25 16:37:00',1),(266605986628763871,200114100,655,'2022-07-25 16:37:00',1),(266605986628763872,200114100,468,'2022-07-25 16:37:00',1),(266605986628763873,200114100,488,'2022-07-25 16:37:00',1),(266605986628763874,200114100,477,'2022-07-25 16:37:00',1),(266605986628763875,200114100,476,'2022-07-25 16:37:00',1),(266605986628763876,200114100,480,'2022-07-25 16:37:00',1),(266605986628763877,200114100,475,'2022-07-25 16:37:00',1),(266605986628763878,200114100,473,'2022-07-25 16:37:00',1),(266605986628763879,200114100,463,'2022-07-25 16:37:00',1),(266605986628763880,200114100,489,'2022-07-25 16:37:00',1),(266605986628763881,200114100,486,'2022-07-25 16:37:00',1),(266605986628763882,200114100,482,'2022-07-25 16:37:00',1),(266605986628763883,200114100,484,'2022-07-25 16:37:00',1),(266605986628763884,200114100,464,'2022-07-25 16:37:00',1),(266605986628763885,200114100,471,'2022-07-25 16:37:00',1),(266605986628763886,200114100,479,'2022-07-25 16:37:00',1),(266605986628763887,200114100,481,'2022-07-25 16:37:00',1),(266605986628763888,200114100,474,'2022-07-25 16:37:00',1),(266605986628763889,200114101,700,'2022-07-25 16:37:00',1),(266605986628763890,200114101,561,'2022-07-25 16:37:00',1),(266605986628763891,200114101,487,'2022-07-25 16:37:00',1),(266605986628763892,200114101,485,'2022-07-25 16:37:00',1),(266605986628763893,200114101,467,'2022-07-25 16:37:00',1),(266605986628763894,200114101,655,'2022-07-25 16:37:00',1),(266605986628763895,200114101,468,'2022-07-25 16:37:00',1),(266605986628763896,200114101,480,'2022-07-25 16:37:00',1),(266605986628763897,200114101,475,'2022-07-25 16:37:00',1),(266605986628763898,200114101,463,'2022-07-25 16:37:00',1),(266605986628763899,200114101,486,'2022-07-25 16:37:00',1),(266605986628763900,200114101,484,'2022-07-25 16:37:00',1),(266605986628763901,200114101,464,'2022-07-25 16:37:00',1),(266605986628763902,200114101,479,'2022-07-25 16:37:00',1),(266605986628763903,200114101,474,'2022-07-25 16:37:00',1),(266605986628763904,200115100,719,'2022-07-25 16:37:00',1),(266605986628763905,200115100,170,'2022-07-25 16:37:00',1),(266605986628763906,200115100,722,'2022-07-25 16:37:00',1),(266605986628763907,200115100,718,'2022-07-25 16:37:00',1),(266605986628763908,200115100,721,'2022-07-25 16:37:00',1),(266605986628763909,200115101,719,'2022-07-25 16:37:00',1),(266605986628763910,200115101,170,'2022-07-25 16:37:00',1),(266605986628763911,200115101,723,'2022-07-25 16:37:00',1),(266605986628763912,200115101,718,'2022-07-25 16:37:00',1),(266605986628763913,200115102,720,'2022-07-25 16:37:00',1),(266605986628763914,200115102,719,'2022-07-25 16:37:00',1),(266605986628763915,200115102,170,'2022-07-25 16:37:00',1),(266605986628763916,200115102,718,'2022-07-25 16:37:00',1),(266605986628763917,200116100,379,'2022-07-25 16:37:00',1),(266605986628763918,200116100,375,'2022-07-25 16:37:00',1),(266605986628763919,200116100,377,'2022-07-25 16:37:00',1),(266605986628763920,200116100,373,'2022-07-25 16:37:00',1),(266605986628763921,200116100,369,'2022-07-25 16:37:00',1),(266605986628763922,200116100,371,'2022-07-25 16:37:00',1),(266605986628763923,200116100,368,'2022-07-25 16:37:00',1),(266605986628763924,200116100,366,'2022-07-25 16:37:00',1),(266605986628763925,200116100,378,'2022-07-25 16:37:00',1),(266605986628763926,200116100,374,'2022-07-25 16:37:00',1),(266605986628763927,200116100,370,'2022-07-25 16:37:00',1),(266605986628763928,200116100,376,'2022-07-25 16:37:00',1),(266605986628763929,200116100,372,'2022-07-25 16:37:00',1),(266605986628763930,200116100,367,'2022-07-25 16:37:00',1),(266605986628763931,200116101,379,'2022-07-25 16:37:00',1),(266605986628763932,200116101,375,'2022-07-25 16:37:00',1),(266605986628763933,200116101,377,'2022-07-25 16:37:00',1),(266605986628763934,200116101,373,'2022-07-25 16:37:00',1),(266605986628763935,200116101,366,'2022-07-25 16:37:00',1),(266605986628763936,200116101,378,'2022-07-25 16:37:00',1),(266605986628763937,200116101,374,'2022-07-25 16:37:00',1),(266605986628763938,200116101,376,'2022-07-25 16:37:00',1),(266605986628763939,200116101,372,'2022-07-25 16:37:00',1),(266605986628763940,200117100,568,'2022-07-25 16:37:00',1),(266605986628763941,200117100,566,'2022-07-25 16:37:00',1),(266605986628763942,200117100,567,'2022-07-25 16:37:00',1),(266605986628763943,200117100,563,'2022-07-25 16:37:00',1),(266605986628763944,200117100,564,'2022-07-25 16:37:00',1),(266605986628763945,200117100,565,'2022-07-25 16:37:00',1),(266605986628763946,200117101,571,'2022-07-25 16:37:00',1),(266605986628763947,200117101,576,'2022-07-25 16:37:00',1),(266605986628763948,200117101,575,'2022-07-25 16:37:00',1),(266605986628763949,200117101,573,'2022-07-25 16:37:00',1),(266605986628763950,200117101,577,'2022-07-25 16:37:00',1),(266605986628763951,200117101,580,'2022-07-25 16:37:00',1),(266605986628763952,200117101,579,'2022-07-25 16:37:00',1),(266605986628763953,200117101,563,'2022-07-25 16:37:00',1),(266605986628763954,200117101,569,'2022-07-25 16:37:00',1),(266605986628763955,200117101,570,'2022-07-25 16:37:00',1),(266605986628763956,200117101,574,'2022-07-25 16:37:00',1),(266605986628763957,200117101,572,'2022-07-25 16:37:00',1),(266605986628763958,200117101,578,'2022-07-25 16:37:00',1),(266605986632957952,200118100,650,'2022-07-25 16:37:00',1),(266605986632957953,200118100,647,'2022-07-25 16:37:00',1),(266605986632957954,200118100,648,'2022-07-25 16:37:00',1),(266605986632957955,200118100,645,'2022-07-25 16:37:00',1),(266605986632957956,200118100,649,'2022-07-25 16:37:00',1),(266605986632957957,200118100,646,'2022-07-25 16:37:00',1),(266605986632957958,200118100,644,'2022-07-25 16:37:00',1),(266605986632957959,200119100,697,'2022-07-25 16:37:00',1),(266605986632957960,300000000,611,'2022-07-25 16:37:00',1),(266605986632957961,401100100,625,'2022-07-25 16:37:00',1),(266605986632957962,401100100,620,'2022-07-25 16:37:00',1),(266605986632957963,401100100,639,'2022-07-25 16:37:00',1),(266605986632957964,401100100,629,'2022-07-25 16:37:00',1),(266605986632957965,401100100,616,'2022-07-25 16:37:00',1),(266605986632957966,401100100,619,'2022-07-25 16:37:00',1),(266605986632957967,401100100,623,'2022-07-25 16:37:00',1),(266605986632957968,401100100,634,'2022-07-25 16:37:00',1),(266605986632957969,401100100,633,'2022-07-25 16:37:00',1),(266605986632957970,401100100,618,'2022-07-25 16:37:00',1),(266605986632957971,401100100,617,'2022-07-25 16:37:00',1),(266605986632957972,401100100,626,'2022-07-25 16:37:00',1),(266605986632957973,401100100,615,'2022-07-25 16:37:00',1),(266605986632957974,401100100,632,'2022-07-25 16:37:00',1),(266605986632957975,401100100,628,'2022-07-25 16:37:00',1),(266605986632957976,401100100,637,'2022-07-25 16:37:00',1),(266605986632957977,401100100,622,'2022-07-25 16:37:00',1),(266605986632957978,401100100,635,'2022-07-25 16:37:00',1),(266605986632957979,401100100,630,'2022-07-25 16:37:00',1),(266605986632957980,401100100,621,'2022-07-25 16:37:00',1),(266605986632957981,401100100,624,'2022-07-25 16:37:00',1),(266605986632957982,401100100,638,'2022-07-25 16:37:00',1),(266605986632957983,401100100,631,'2022-07-25 16:37:00',1),(266605986632957984,401100100,613,'2022-07-25 16:37:00',1),(266605986632957985,401100100,614,'2022-07-25 16:37:00',1),(266605986632957986,401100100,627,'2022-07-25 16:37:00',1),(266605986632957987,401100100,636,'2022-07-25 16:37:00',1),(266605986632957988,402100100,609,'2022-07-25 16:37:00',1),(266605986632957989,402100100,667,'2022-07-25 16:37:00',1),(266605986632957993,404100100,671,'2022-07-25 16:37:00',1),(266605986632957994,405100100,669,'2022-07-25 16:37:00',1),(266605986632957995,405102100,708,'2022-07-25 16:37:00',1),(266605986632957996,405102100,706,'2022-07-25 16:37:00',1),(266605986632957997,405102100,707,'2022-07-25 16:37:00',1),(266605986632957998,405102101,706,'2022-07-25 16:37:00',1),(266605986632957999,405102101,707,'2022-07-25 16:37:00',1),(266605986632958000,405103100,710,'2022-07-25 16:37:00',1),(266605986632958001,405103100,711,'2022-07-25 16:37:00',1),(266605986632958002,405103100,706,'2022-07-25 16:37:00',1),(266605986632958003,405103100,709,'2022-07-25 16:37:00',1),(266605986632958004,405103101,706,'2022-07-25 16:37:00',1),(266605986632958005,405103101,709,'2022-07-25 16:37:00',1),(266605986632958006,405104100,713,'2022-07-25 16:37:00',1),(266605986632958007,405104100,714,'2022-07-25 16:37:00',1),(266605986632958008,405104100,706,'2022-07-25 16:37:00',1),(266605986632958009,405104100,712,'2022-07-25 16:37:00',1),(266605986632958010,405104101,706,'2022-07-25 16:37:00',1),(266605986632958011,405104101,712,'2022-07-25 16:37:00',1),(266605986632958012,406100100,663,'2022-07-25 16:37:00',1),(266605986632958013,406100100,662,'2022-07-25 16:37:00',1),(266605986632958014,407100100,696,'2022-07-25 16:37:00',1),(266605986632958015,408100100,701,'2022-07-25 16:37:00',1),(266605986632958016,411100100,726,'2022-07-25 16:37:00',1),(266605986632958017,411100100,692,'2022-07-25 16:37:00',1),(266605986632958018,411100100,691,'2022-07-25 16:37:00',1),(266605986632958019,411100100,693,'2022-07-25 16:37:00',1),(266605986632958020,411100100,695,'2022-07-25 16:37:00',1),(266605986632958021,411100100,694,'2022-07-25 16:37:00',1),(266605986632958022,411100100,689,'2022-07-25 16:37:00',1),(266605986632958023,411100100,690,'2022-07-25 16:37:00',1),(266605986632958024,412100100,728,'2022-07-25 16:37:00',1),(266605986632958026,600000000,610,'2022-07-25 16:37:00',1),(266605986632958027,600100100,391,'2022-07-25 16:37:00',1),(266605986632958028,600100100,434,'2022-07-25 16:37:00',1),(266605986632958029,600100100,429,'2022-07-25 16:37:00',1),(266605986632958030,600100100,433,'2022-07-25 16:37:00',1),(266605986632958031,600100100,432,'2022-07-25 16:37:00',1),(266605986632958032,600100100,392,'2022-07-25 16:37:00',1),(266605986632958033,600100100,431,'2022-07-25 16:37:00',1),(266605986632958034,600101100,687,'2022-07-25 16:37:00',1),(266605986632958035,600102100,641,'2022-07-25 16:37:00',1),(266605986632958036,600103100,452,'2022-07-25 16:37:00',1),(266605986632958037,600103100,506,'2022-07-25 16:37:00',1),(266605986632958038,600104100,559,'2022-07-25 16:37:00',1),(266605986632958039,600104100,560,'2022-07-25 16:37:00',1),(266605986632958040,600104100,552,'2022-07-25 16:37:00',1),(266605986632958041,600104100,557,'2022-07-25 16:37:00',1),(266605986632958042,600104100,555,'2022-07-25 16:37:00',1),(266605986632958043,600104100,553,'2022-07-25 16:37:00',1),(266605986632958044,600104100,535,'2022-07-25 16:37:00',1),(266605986632958045,600104100,528,'2022-07-25 16:37:00',1),(266605986632958046,600104100,532,'2022-07-25 16:37:00',1),(266605986632958047,600104100,526,'2022-07-25 16:37:00',1),(266605986632958048,600104100,533,'2022-07-25 16:37:00',1),(266605986632958049,600104100,529,'2022-07-25 16:37:00',1),(266605986632958050,600104100,530,'2022-07-25 16:37:00',1),(266605986632958051,600104100,545,'2022-07-25 16:37:00',1),(266605986632958052,600104100,540,'2022-07-25 16:37:00',1),(266605986632958053,600104100,549,'2022-07-25 16:37:00',1),(266605986632958054,600104100,542,'2022-07-25 16:37:00',1),(266605986632958055,600104100,547,'2022-07-25 16:37:00',1),(266605986632958056,600104100,539,'2022-07-25 16:37:00',1),(266605986632958057,600104100,543,'2022-07-25 16:37:00',1),(266605986632958058,600104100,541,'2022-07-25 16:37:00',1),(266605986632958059,600104100,550,'2022-07-25 16:37:00',1),(266605986632958060,600104100,558,'2022-07-25 16:37:00',1),(266605986632958061,600104100,556,'2022-07-25 16:37:00',1),(266605986632958062,600104100,554,'2022-07-25 16:37:00',1),(266605986632958063,600104100,551,'2022-07-25 16:37:00',1),(266605986632958064,600104100,659,'2022-07-25 16:37:00',1),(266605986632958065,600104100,658,'2022-07-25 16:37:00',1),(266605986632958066,600104100,524,'2022-07-25 16:37:00',1),(266605986632958067,600104100,534,'2022-07-25 16:37:00',1),(266605986632958068,600104100,527,'2022-07-25 16:37:00',1),(266605986632958069,600104100,531,'2022-07-25 16:37:00',1),(266605986632958070,600104100,525,'2022-07-25 16:37:00',1),(266605986632958071,600104100,536,'2022-07-25 16:37:00',1),(266605986632958072,600104100,538,'2022-07-25 16:37:00',1),(266605986632958073,600104100,544,'2022-07-25 16:37:00',1),(266605986632958074,600104100,548,'2022-07-25 16:37:00',1),(266605986632958075,600104100,546,'2022-07-25 16:37:00',1),(266605986632958076,600104100,537,'2022-07-25 16:37:00',1),(266605986632958077,600105100,414,'2022-07-25 16:37:00',1),(266605986632958078,600105100,413,'2022-07-25 16:37:00',1),(266605986632958079,600105100,412,'2022-07-25 16:37:00',1),(266605986632958080,600105100,411,'2022-07-25 16:37:00',1),(266605986632958081,600105100,402,'2022-07-25 16:37:00',1),(266605986632958082,600105100,702,'2022-07-25 16:37:00',1),(266605986632958083,600105100,705,'2022-07-25 16:37:00',1),(266605986632958084,600105100,703,'2022-07-25 16:37:00',1),(266605986632958085,600105100,704,'2022-07-25 16:37:00',1),(266605986632958086,600105100,401,'2022-07-25 16:37:00',1),(266605986632958087,600105100,403,'2022-07-25 16:37:00',1),(266605986632958088,600105100,400,'2022-07-25 16:37:00',1),(266605986632958089,600105100,397,'2022-07-25 16:37:00',1),(266605986632958090,600105100,453,'2022-07-25 16:37:00',1),(266605986632958091,600105100,399,'2022-07-25 16:37:00',1),(266605986632958092,600105100,398,'2022-07-25 16:37:00',1),(266605986632958093,600105100,395,'2022-07-25 16:37:00',1),(266605986632958094,600105100,396,'2022-07-25 16:37:00',1),(266605986632958095,600105100,404,'2022-07-25 16:37:00',1),(266605986632958098,600106100,509,'2022-07-25 16:37:00',1),(266605986632958099,600107100,698,'2022-07-25 16:37:00',1),(266605986632958100,600108100,715,'2022-07-25 16:37:00',1),(266605986632958101,600120100,727,'2022-07-25 16:37:00',1),(266975231761973248,200122100,689,'2022-07-26 17:04:15',1),(266975231761973249,200122100,690,'2022-07-26 17:04:15',1),(266975231761973250,200122100,691,'2022-07-26 17:04:15',1),(266975231761973251,200122100,692,'2022-07-26 17:04:15',1),(266975231761973252,200122100,693,'2022-07-26 17:04:15',1),(266975231761973253,200122100,694,'2022-07-26 17:04:15',1),(266975231761973254,200122100,695,'2022-07-26 17:04:15',1),(267343413223882752,412101100,730,'2022-07-27 17:27:16',1),(269433900512575488,410100100,717,'2022-08-02 11:54:07',1),(270264712199929856,200121100,731,'2022-08-04 18:55:28',1),(274103759049588736,600121100,732,'2022-08-15 09:10:28',1),(274128915549650944,200104102,686,'2022-08-15 10:50:26',1),(274128915549650945,200105108,595,'2022-08-15 10:50:26',1),(274128915549650946,200105108,358,'2022-08-15 10:50:26',1),(274128915549650947,600118100,716,'2022-08-15 10:50:26',1),(275575362413395968,413100100,733,'2022-08-19 10:38:06',1),(275575362413395969,414100100,734,'2022-08-19 10:38:06',1),(279568369068277760,600119100,754,'2022-08-30 11:04:53',1),(279568369068277761,600119100,759,'2022-08-30 11:04:53',1),(279568369068277762,600119100,757,'2022-08-30 11:04:53',1),(279568369068277763,600119100,756,'2022-08-30 11:04:53',1),(279568369068277764,600119100,739,'2022-08-30 11:04:53',1),(279568369068277765,600119100,742,'2022-08-30 11:04:53',1),(279568369068277766,600119100,737,'2022-08-30 11:04:53',1),(279568369068277767,600119100,746,'2022-08-30 11:04:53',1),(279568369068277768,600119100,747,'2022-08-30 11:04:53',1),(279568369068277769,600119100,748,'2022-08-30 11:04:53',1),(279568369068277770,600119100,745,'2022-08-30 11:04:53',1),(279568369068277771,600119100,752,'2022-08-30 11:04:53',1),(279568369068277772,600119100,760,'2022-08-30 11:04:53',1),(279568369068277773,600119100,755,'2022-08-30 11:04:53',1),(279568369068277774,600119100,758,'2022-08-30 11:04:53',1),(279568369068277775,600119100,753,'2022-08-30 11:04:53',1),(279568369068277776,600119100,751,'2022-08-30 11:04:53',1),(279568369068277777,600119100,761,'2022-08-30 11:04:53',1),(279568369068277778,600119100,762,'2022-08-30 11:04:53',1),(279568369068277779,600119100,735,'2022-08-30 11:04:53',1),(279568369068277780,600119100,738,'2022-08-30 11:04:53',1),(279568369068277781,600119100,740,'2022-08-30 11:04:53',1),(279568369068277782,600119100,741,'2022-08-30 11:04:53',1),(279568369068277783,600119100,736,'2022-08-30 11:04:53',1),(279568369068277784,600119100,743,'2022-08-30 11:04:53',1),(279568369068277785,600119100,749,'2022-08-30 11:04:53',1),(279568369068277786,600119100,750,'2022-08-30 11:04:53',1),(279568369068277787,600119100,744,'2022-08-30 11:04:53',1),(282183698030264320,200114000,463,'2022-09-06 16:17:16',188243415207510016),(282183698030264321,200114000,467,'2022-09-06 16:17:16',188243415207510016),(287191557050728448,200104000,358,'2022-09-20 11:56:42',188243415207510016),(287191557050728449,200104000,584,'2022-09-20 11:56:42',188243415207510016),(287191557050728450,200104000,585,'2022-09-20 11:56:42',188243415207510016),(287262407229702144,200123100,771,'2022-09-20 16:38:14',1),(287262407229702145,200123100,772,'2022-09-20 16:38:14',1),(287262407229702146,200123100,773,'2022-09-20 16:38:14',1),(287262407229702147,200123100,774,'2022-09-20 16:38:14',1),(287262407229702148,200123100,780,'2022-09-20 16:38:14',1),(287262407229702149,200123100,781,'2022-09-20 16:38:14',1),(287262407229702150,200123100,782,'2022-09-20 16:38:14',1),(287262407229702151,200123100,783,'2022-09-20 16:38:14',1),(287262407229702152,200123101,777,'2022-09-20 16:38:14',1),(287262407229702153,200123101,778,'2022-09-20 16:38:14',1),(287262407229702154,200123101,771,'2022-09-20 16:38:14',1),(287262407229702155,200123101,775,'2022-09-20 16:38:14',1),(287262407229702156,200123101,776,'2022-09-20 16:38:14',1),(287262407229702157,200123101,779,'2022-09-20 16:38:14',1),(287262407229702158,200124100,769,'2022-09-20 16:38:14',1),(287262407229702159,200124100,768,'2022-09-20 16:38:14',1),(287262407229702160,200124100,765,'2022-09-20 16:38:14',1),(287262407229702161,200124100,766,'2022-09-20 16:38:14',1),(287262407229702162,200124100,767,'2022-09-20 16:38:14',1),(287262407229702163,200124100,763,'2022-09-20 16:38:14',1),(287262407229702164,200124100,764,'2022-09-20 16:38:14',1),(287262407229702165,405100100,792,'2022-09-20 16:38:14',1),(287262407229702166,405101100,669,'2022-09-20 16:38:14',1),(287262407229702167,405101100,793,'2022-09-20 16:38:14',1),(287262407229702168,405102100,669,'2022-09-20 16:38:14',1),(287262407229702169,405102101,794,'2022-09-20 16:38:14',1),(287262407229702170,405102101,669,'2022-09-20 16:38:14',1),(287262407229702171,405103100,669,'2022-09-20 16:38:14',1),(287262407229702172,405103101,669,'2022-09-20 16:38:14',1),(287262407229702173,405103101,795,'2022-09-20 16:38:14',1),(287262407229702174,405104100,669,'2022-09-20 16:38:14',1),(287262407229702175,405104101,796,'2022-09-20 16:38:14',1),(287262407229702176,405104101,669,'2022-09-20 16:38:14',1),(287262407229702177,405105100,799,'2022-09-20 16:38:14',1),(287262407229702178,405105100,669,'2022-09-20 16:38:14',1),(287262407229702179,405105100,797,'2022-09-20 16:38:14',1),(287262407229702180,405105101,798,'2022-09-20 16:38:14',1),(287262407229702181,405105101,669,'2022-09-20 16:38:14',1),(287262407229702182,405105101,797,'2022-09-20 16:38:14',1),(287262407229702183,405107100,669,'2022-09-20 16:38:14',1),(287262407229702184,405107100,788,'2022-09-20 16:38:14',1),(287262407229702185,405107100,789,'2022-09-20 16:38:14',1),(287262407229702186,405107100,790,'2022-09-20 16:38:14',1),(287262407229702187,405107100,791,'2022-09-20 16:38:14',1),(287262407229702188,410104100,785,'2022-09-20 16:38:14',1),(287550391111909376,200105108,800,'2022-09-21 11:42:35',1),(287550391111909377,200105108,801,'2022-09-21 11:42:35',1),(287885790317379586,600122100,802,'2022-09-22 09:55:21',1),(295508547232727040,200114100,700,'2022-10-13 10:45:27',1),(295508547232727041,200114100,804,'2022-10-13 10:45:27',1),(295508547232727042,200114100,770,'2022-10-13 10:45:27',1),(295508547232727043,200114100,803,'2022-10-13 10:45:27',1),(295850094623981568,200103000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981569,200105000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981570,200106000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981571,200107000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981572,200108000,358,'2022-10-14 09:22:39',89730635001757696),(299966045483302912,200000000,358,'2022-10-25 17:57:58',1),(299966045487497216,600105100,806,'2022-10-25 17:57:58',1),(299966045487497217,600105100,805,'2022-10-25 17:57:58',1),(300647546641317888,200114000,486,'2022-10-27 15:06:00',188243415207510016),(300647546641317889,200114000,804,'2022-10-27 15:06:00',188243415207510016),(300664130889973760,600119100,813,'2022-10-27 16:11:54',1),(300664130889973761,600119100,812,'2022-10-27 16:11:54',1),(300664130889973762,600119100,811,'2022-10-27 16:11:54',1),(300664130889973763,600119100,820,'2022-10-27 16:11:54',1),(300664130889973764,600119100,825,'2022-10-27 16:11:54',1),(300664130889973765,600119100,822,'2022-10-27 16:11:54',1),(300664130889973766,600119100,823,'2022-10-27 16:11:54',1),(300664130889973767,600119100,818,'2022-10-27 16:11:54',1),(300664130889973768,600119100,824,'2022-10-27 16:11:54',1),(300664130889973769,600119100,819,'2022-10-27 16:11:54',1),(300664130889973770,600119100,815,'2022-10-27 16:11:54',1),(300664130889973771,600119100,814,'2022-10-27 16:11:54',1),(300664130889973772,600119100,816,'2022-10-27 16:11:54',1),(300664130889973773,600119100,821,'2022-10-27 16:11:54',1),(300664130889973774,600119100,817,'2022-10-27 16:11:54',1),(300664130889973775,600119100,809,'2022-10-27 16:11:54',1),(300664130889973776,600119100,810,'2022-10-27 16:11:54',1),(302094946035433472,200106000,605,'2022-10-31 14:57:27',1),(302094946035433473,200106000,607,'2022-10-31 14:57:27',1),(302095001555697664,200106000,606,'2022-10-31 14:57:41',1),(303212215039295488,200123000,775,'2022-11-03 16:57:05',188243415207510016),(305387547394834432,200104108,358,'2022-11-09 17:01:05',1),(305387547394834433,200104108,826,'2022-11-09 17:01:05',1),(313634871590912000,411101100,827,'2022-12-02 11:13:00',1),(337969868502990848,600105101,402,'2023-02-07 14:51:35',1),(337969868502990849,600105101,403,'2023-02-07 14:51:35',1),(337969868502990850,600105101,395,'2023-02-07 14:51:35',1),(337969868502990851,600105105,453,'2023-02-07 14:51:35',1),(337969868502990852,600105105,395,'2023-02-07 14:51:35',1),(337969868502990853,600105105,396,'2023-02-07 14:51:35',1),(337969868502990854,600105107,397,'2023-02-07 14:51:35',1),(337969868507185152,600105107,398,'2023-02-07 14:51:35',1),(337969868507185153,600105107,395,'2023-02-07 14:51:35',1),(337969868507185154,600105108,397,'2023-02-07 14:51:35',1),(337969868507185155,600105108,399,'2023-02-07 14:51:35',1),(337969868507185156,600105108,395,'2023-02-07 14:51:35',1),(337969868507185157,600105109,397,'2023-02-07 14:51:35',1),(337969868507185158,600105109,805,'2023-02-07 14:51:35',1),(337969868507185159,600105109,395,'2023-02-07 14:51:35',1),(337969868507185160,600105110,806,'2023-02-07 14:51:35',1),(337969868507185161,600105110,397,'2023-02-07 14:51:35',1),(337969868507185162,600105110,395,'2023-02-07 14:51:35',1),(337969868507185163,600105111,401,'2023-02-07 14:51:35',1),(337969868507185164,600105111,400,'2023-02-07 14:51:35',1),(337969868507185165,600105111,395,'2023-02-07 14:51:35',1),(337969868507185166,600105112,702,'2023-02-07 14:51:35',1),(337969868507185167,600105112,703,'2023-02-07 14:51:35',1),(337969868507185168,600105112,395,'2023-02-07 14:51:35',1),(337969868507185169,600105113,702,'2023-02-07 14:51:35',1),(337969868507185170,600105113,704,'2023-02-07 14:51:35',1),(337969868507185171,600105113,395,'2023-02-07 14:51:35',1),(337969868507185172,600105114,702,'2023-02-07 14:51:35',1),(337969868507185173,600105114,705,'2023-02-07 14:51:35',1),(337969868507185174,600105114,395,'2023-02-07 14:51:35',1),(337969868507185175,600105115,404,'2023-02-07 14:51:35',1),(337969868507185176,600119101,754,'2023-02-07 14:51:35',1),(337969868507185177,600119101,759,'2023-02-07 14:51:35',1),(337969868507185178,600119101,757,'2023-02-07 14:51:35',1),(337969868507185179,600119101,756,'2023-02-07 14:51:35',1),(337969868507185180,600119101,752,'2023-02-07 14:51:35',1),(337969868507185181,600119101,760,'2023-02-07 14:51:35',1),(337969868507185182,600119101,755,'2023-02-07 14:51:35',1),(337969868507185183,600119101,758,'2023-02-07 14:51:35',1),(337969868507185184,600119101,753,'2023-02-07 14:51:35',1),(337969868507185185,600119102,761,'2023-02-07 14:51:35',1),(337969868507185186,600119102,762,'2023-02-07 14:51:35',1),(337969868507185187,600119103,739,'2023-02-07 14:51:35',1),(337969868507185188,600119103,742,'2023-02-07 14:51:35',1),(337969868507185189,600119103,737,'2023-02-07 14:51:35',1),(337969868507185190,600119103,735,'2023-02-07 14:51:35',1),(337969868507185191,600119103,738,'2023-02-07 14:51:35',1),(337969868507185192,600119103,740,'2023-02-07 14:51:35',1),(337969868507185193,600119103,741,'2023-02-07 14:51:35',1),(337969868507185194,600119103,736,'2023-02-07 14:51:35',1),(337969868507185195,600119104,746,'2023-02-07 14:51:35',1),(337969868507185196,600119104,747,'2023-02-07 14:51:35',1),(337969868507185197,600119104,748,'2023-02-07 14:51:35',1),(337969868507185198,600119104,745,'2023-02-07 14:51:35',1),(337969868507185199,600119104,743,'2023-02-07 14:51:35',1),(337969868507185200,600119104,749,'2023-02-07 14:51:35',1),(337969868507185201,600119104,750,'2023-02-07 14:51:35',1),(337969868507185202,600119104,744,'2023-02-07 14:51:35',1),(337969868507185203,600119105,820,'2023-02-07 14:51:35',1),(337969868507185204,600119105,825,'2023-02-07 14:51:35',1),(337969868507185205,600119105,822,'2023-02-07 14:51:35',1),(337969868507185206,600119105,823,'2023-02-07 14:51:35',1),(337969868507185207,600119105,818,'2023-02-07 14:51:35',1),(337969868507185208,600119105,824,'2023-02-07 14:51:35',1),(337969868507185209,600119105,819,'2023-02-07 14:51:35',1),(337969868507185210,600119105,816,'2023-02-07 14:51:35',1),(337969868507185211,600119105,821,'2023-02-07 14:51:35',1),(337969868507185212,600119105,817,'2023-02-07 14:51:35',1),(337969868507185213,600119106,813,'2023-02-07 14:51:35',1),(337969868507185214,600119106,812,'2023-02-07 14:51:35',1),(337969868507185215,600119106,811,'2023-02-07 14:51:35',1),(337969868507185216,600119106,815,'2023-02-07 14:51:35',1),(337969868507185217,600119106,814,'2023-02-07 14:51:35',1),(337969868507185218,600119106,809,'2023-02-07 14:51:35',1),(337969868507185219,600119106,810,'2023-02-07 14:51:35',1),(337969868507185220,600119107,751,'2023-02-07 14:51:35',1),(338374274795962368,100100100,851,'2023-02-08 17:38:33',1),(338374274795962369,100100101,851,'2023-02-08 17:38:33',1),(338612062590074880,200105109,854,'2023-02-09 09:23:26',1),(338612062590074881,200105109,595,'2023-02-09 09:23:26',1),(338612062590074882,200105109,358,'2023-02-09 09:23:26',1),(338612062590074883,200105110,853,'2023-02-09 09:23:26',1),(338612062590074884,200105110,595,'2023-02-09 09:23:26',1),(338612062590074885,200105110,358,'2023-02-09 09:23:26',1),(338612062590074886,200125100,836,'2023-02-09 09:23:26',1),(338612062590074887,200125100,833,'2023-02-09 09:23:26',1),(338612062590074888,200125100,834,'2023-02-09 09:23:26',1),(338612062590074889,200125100,840,'2023-02-09 09:23:26',1),(338612062590074890,200125100,839,'2023-02-09 09:23:26',1),(338612062590074891,200125100,838,'2023-02-09 09:23:26',1),(338612062590074892,200125100,837,'2023-02-09 09:23:26',1),(338612062590074893,200125100,835,'2023-02-09 09:23:26',1),(338612062590074894,200125101,843,'2023-02-09 09:23:26',1),(338612062590074895,200125101,833,'2023-02-09 09:23:26',1),(338612062590074896,200125101,841,'2023-02-09 09:23:26',1),(338612062590074897,200125101,847,'2023-02-09 09:23:26',1),(338612062590074898,200125101,846,'2023-02-09 09:23:26',1),(338612062590074899,200125101,845,'2023-02-09 09:23:26',1),(338612062590074900,200125101,844,'2023-02-09 09:23:26',1),(338612062590074901,200125101,842,'2023-02-09 09:23:26',1),(338612062590074902,200125102,833,'2023-02-09 09:23:26',1),(338612062590074903,200125102,848,'2023-02-09 09:23:26',1),(338612062590074904,200125103,833,'2023-02-09 09:23:26',1),(338612062590074905,200125103,849,'2023-02-09 09:23:26',1),(340494685822255104,200112100,855,'2023-02-14 14:04:19',1),(340494685822255105,200112101,856,'2023-02-14 14:04:19',1),(348787386542194688,100100102,393,'2023-03-09 11:16:33',1),(348787386542194689,100100102,852,'2023-03-09 11:16:33',1),(356134791194607616,200113103,385,'2023-03-29 17:52:30',1),(356134791194607617,200113103,504,'2023-03-29 17:52:30',1),(356134791194607618,200113103,501,'2023-03-29 17:52:30',1),(356134791194607619,200113103,502,'2023-03-29 17:52:30',1),(356134791194607620,200113103,503,'2023-03-29 17:52:30',1),(356134791194607621,200113103,124,'2023-03-29 17:52:30',1),(356134791194607622,200113103,500,'2023-03-29 17:52:30',1),(356134791194607623,200113103,499,'2023-03-29 17:52:30',1),(356134791194607624,200113103,331,'2023-03-29 17:52:30',1),(356134791194607625,200113104,386,'2023-03-29 17:52:30',1),(356134791194607626,200113104,502,'2023-03-29 17:52:30',1),(356134791194607627,200113104,503,'2023-03-29 17:52:30',1),(356134791194607628,200113104,124,'2023-03-29 17:52:30',1),(356134791194607629,200113104,238,'2023-03-29 17:52:30',1),(356134791194607630,200113104,499,'2023-03-29 17:52:30',1),(356134791194607631,200113104,125,'2023-03-29 17:52:30',1),(356134791194607632,402100100,857,'2023-03-29 17:52:30',1),(361180945728929792,200120100,858,'2023-04-12 16:04:07',1),(361180945728929793,200120100,859,'2023-04-12 16:04:07',1),(361180945728929794,200120100,861,'2023-04-12 16:04:07',1),(361180945728929795,200120100,860,'2023-04-12 16:04:07',1),(361180945728929796,200120100,862,'2023-04-12 16:04:07',1),(361180945728929797,200120100,863,'2023-04-12 16:04:07',1),(361180945728929798,200120100,864,'2023-04-12 16:04:07',1),(365178690088599552,600123100,865,'2023-04-23 16:49:44',1),(369178909242687488,403100100,869,'2023-05-04 17:45:10',1),(369178909242687489,403100100,868,'2023-05-04 17:45:10',1),(369178909242687490,403100100,870,'2023-05-04 17:45:10',1),(369178909242687491,403100100,867,'2023-05-04 17:45:10',1),(369178909242687492,403100100,871,'2023-05-04 17:45:10',1),(369537842884771840,200120100,872,'2023-05-05 17:31:27',1),(374268808632598528,405107100,866,'2023-05-18 18:50:37',1),(374268808632598529,409100100,875,'2023-05-18 18:50:37',1),(374268808632598530,409100100,878,'2023-05-18 18:50:37',1),(374268808632598531,409100100,876,'2023-05-18 18:50:37',1),(374268808632598532,409100100,877,'2023-05-18 18:50:37',1),(374268808632598533,409100100,874,'2023-05-18 18:50:37',1),(374268808632598534,409100100,873,'2023-05-18 18:50:37',1),(374268808632598535,410101100,881,'2023-05-18 18:50:37',1),(374268808632598536,410105100,882,'2023-05-18 18:50:37',1),(374268808632598537,410105100,884,'2023-05-18 18:50:37',1),(374268808632598538,410105100,885,'2023-05-18 18:50:37',1),(374268808632598539,410105100,886,'2023-05-18 18:50:37',1),(374268808632598540,410105100,883,'2023-05-18 18:50:37',1),(374268808632598541,700100100,880,'2023-05-18 18:50:37',1),(374268808632598542,700100101,879,'2023-05-18 18:50:37',1),(375599976208531456,415100100,887,'2023-05-22 11:00:12',1),(375599976208531457,415100100,888,'2023-05-22 11:00:12',1),(375599976208531458,415100100,889,'2023-05-22 11:00:12',1),(384042253369737216,200132100,897,'2023-06-14 18:06:48',1),(384042253373931520,200132100,899,'2023-06-14 18:06:48',1),(384042253373931521,200132100,898,'2023-06-14 18:06:48',1),(384042253373931522,200132100,900,'2023-06-14 18:06:48',1),(384042253373931523,200132100,894,'2023-06-14 18:06:48',1),(384042253373931524,200132100,895,'2023-06-14 18:06:48',1),(384042253373931525,200132100,893,'2023-06-14 18:06:48',1),(384042253373931526,200132100,890,'2023-06-14 18:06:48',1),(384042253373931527,200132100,891,'2023-06-14 18:06:48',1),(384042253373931528,200132100,896,'2023-06-14 18:06:48',1),(384042253373931529,200132100,892,'2023-06-14 18:06:48',1),(384042253373931530,200132101,905,'2023-06-14 18:06:48',1),(384042253373931531,200132101,904,'2023-06-14 18:06:48',1),(384042253373931532,200132101,890,'2023-06-14 18:06:48',1),(384042253373931533,200132101,901,'2023-06-14 18:06:48',1),(384042253373931534,200132101,902,'2023-06-14 18:06:48',1),(384042253373931535,200132101,903,'2023-06-14 18:06:48',1),(384042253373931536,200132102,910,'2023-06-14 18:06:48',1),(384042253373931537,200132102,909,'2023-06-14 18:06:48',1),(384042253373931538,200132102,890,'2023-06-14 18:06:48',1),(384042253373931539,200132102,906,'2023-06-14 18:06:48',1),(384042253373931540,200132102,908,'2023-06-14 18:06:48',1),(384042253373931541,200132102,907,'2023-06-14 18:06:48',1),(384042253373931542,200132103,890,'2023-06-14 18:06:48',1),(384042253373931543,200132103,911,'2023-06-14 18:06:48',1),(384042253373931544,200132104,890,'2023-06-14 18:06:48',1),(384042253373931545,200132104,912,'2023-06-14 18:06:48',1),(384042253373931546,411100100,897,'2023-06-14 18:06:48',1),(384042253373931547,411100100,899,'2023-06-14 18:06:48',1),(384042253373931548,411100100,898,'2023-06-14 18:06:48',1),(384042253373931549,411100100,900,'2023-06-14 18:06:48',1),(384042253373931550,411100100,894,'2023-06-14 18:06:48',1),(384042253373931551,411100100,895,'2023-06-14 18:06:48',1),(384042253373931552,411100100,893,'2023-06-14 18:06:48',1),(384042253373931553,411100100,890,'2023-06-14 18:06:48',1),(384042253373931554,411100100,891,'2023-06-14 18:06:48',1),(384042253373931555,411100100,896,'2023-06-14 18:06:48',1),(384042253373931556,411100100,892,'2023-06-14 18:06:48',1),(384755202439380992,800100100,913,'2023-06-16 17:19:48',1),(384755202443575296,800100100,914,'2023-06-16 17:19:48',1),(384755202443575297,800100100,915,'2023-06-16 17:19:48',1),(384755202443575298,800100101,913,'2023-06-16 17:19:48',1),(384755202443575299,800100101,914,'2023-06-16 17:19:48',1),(384755202443575300,800100101,916,'2023-06-16 17:19:48',1),(384755202443575301,800100102,913,'2023-06-16 17:19:48',1),(384755202443575302,800100102,914,'2023-06-16 17:19:48',1),(384755202443575303,800100102,917,'2023-06-16 17:19:48',1),(384755202443575304,800101100,913,'2023-06-16 17:19:48',1),(384755202443575305,800101100,918,'2023-06-16 17:19:48',1),(384755202443575306,800102100,913,'2023-06-16 17:19:48',1),(384755202443575307,800102100,919,'2023-06-16 17:19:48',1),(384755202443575308,800102100,920,'2023-06-16 17:19:48',1),(384755202443575309,800102101,913,'2023-06-16 17:19:48',1),(384755202443575310,800102101,919,'2023-06-16 17:19:48',1),(384755202443575311,800102101,921,'2023-06-16 17:19:48',1),(406485326418804736,200114102,699,'2023-08-15 16:27:33',1),(406485326418804737,200114102,600,'2023-08-15 16:27:33',1),(406485326418804738,200114102,599,'2023-08-15 16:27:33',1),(406485326418804739,200114102,654,'2023-08-15 16:27:33',1),(406485326418804740,200114102,684,'2023-08-15 16:27:33',1),(406485326418804741,200114102,604,'2023-08-15 16:27:33',1),(406485326418804742,200114102,673,'2023-08-15 16:27:33',1),(406485326418804743,200114102,801,'2023-08-15 16:27:33',1),(406485326418804744,200114102,597,'2023-08-15 16:27:33',1),(406485326418804745,200114102,595,'2023-08-15 16:27:33',1),(406485326418804746,200114102,598,'2023-08-15 16:27:33',1),(406485326418804747,200114102,853,'2023-08-15 16:27:33',1),(406485326418804748,200114102,653,'2023-08-15 16:27:33',1),(406485326418804749,200114102,683,'2023-08-15 16:27:33',1),(406485326418804750,200114102,603,'2023-08-15 16:27:33',1),(406485326418804751,200114102,854,'2023-08-15 16:27:33',1),(406485326418804752,200114102,672,'2023-08-15 16:27:33',1),(406485326418804753,200114102,800,'2023-08-15 16:27:33',1),(406485326418804754,200114102,596,'2023-08-15 16:27:33',1),(406485326418804755,200114102,358,'2023-08-15 16:27:33',1),(411181185038286848,200105113,951,'2023-08-28 15:27:13',1),(411181185038286849,200105113,595,'2023-08-28 15:27:13',1),(411181185038286850,200105113,358,'2023-08-28 15:27:13',1),(416522721292451840,200105111,595,'2023-09-12 09:12:35',1),(416522721292451841,200105111,358,'2023-09-12 09:12:35',1),(416522721292451842,200105112,595,'2023-09-12 09:12:35',1),(416522721292451843,200105112,358,'2023-09-12 09:12:35',1),(416523890075369472,200105111,954,'2023-09-12 09:19:51',1),(416523890075369475,200105112,958,'2023-09-12 09:19:51',1),(416523890075369476,200105112,957,'2023-09-12 09:19:51',1),(416523890075369477,200105112,956,'2023-09-12 09:19:51',1),(416523890075369478,200105112,955,'2023-09-12 09:19:51',1),(416646101438038016,417000000,950,'2023-09-12 17:22:51',1),(416646101438038017,417100100,943,'2023-09-12 17:22:51',1),(416646101438038018,417100100,942,'2023-09-12 17:22:51',1),(416646101438038019,417100100,941,'2023-09-12 17:22:51',1),(416646101438038020,417100100,939,'2023-09-12 17:22:51',1),(416646101438038021,417100100,940,'2023-09-12 17:22:51',1),(416646101438038022,417101100,948,'2023-09-12 17:22:51',1),(416646101438038023,417101100,949,'2023-09-12 17:22:51',1),(416646101438038024,417101100,947,'2023-09-12 17:22:51',1),(416646101438038025,417102100,946,'2023-09-12 17:22:51',1),(416646101438038026,417102100,945,'2023-09-12 17:22:51',1),(422094075662565376,200116100,959,'2023-09-27 18:11:09',1),(426308163183181824,417100100,944,'2023-10-09 09:16:26',1),(439747375353036800,600124100,961,'2023-11-15 11:19:04',1),(444919681891303424,200104109,358,'2023-11-29 17:51:58',1),(444919681891303425,200104109,587,'2023-11-29 17:51:58',1),(444919681891303426,200104109,953,'2023-11-29 17:51:58',1),(444919681891303427,200104109,963,'2023-11-29 17:51:58',1),(444919681891303428,200104110,358,'2023-11-29 17:51:58',1),(444919681891303429,200104110,587,'2023-11-29 17:51:58',1),(444919681891303430,200104110,962,'2023-11-29 17:51:58',1),(457945391170715648,200104112,597,'2024-01-04 16:31:29',1),(457945391170715649,200104112,595,'2024-01-04 16:31:29',1),(457945391170715650,200104112,596,'2024-01-04 16:31:29',1),(457945391170715651,200104112,358,'2024-01-04 16:31:29',1),(475700810917609472,200103100,358,'2024-02-22 16:25:11',1),(475700810917609473,200104111,358,'2024-02-22 16:25:11',1),(475712813774143488,200104111,964,'2024-02-22 17:12:53',1),(475966310461472768,200105114,965,'2024-02-23 10:00:11',1),(489804388068229120,410106100,882,'2024-04-01 14:27:46',1),(489804388068229121,410106100,966,'2024-04-01 14:27:46',1),(510764923524087808,403100100,970,'2024-05-29 10:37:27',1),(516663651729670144,200105115,971,'2024-06-14 17:16:53',1),(516663651729670145,200105115,358,'2024-06-14 17:16:53',1),(516663651729670146,200105115,595,'2024-06-14 17:16:53',1),(518133085713203200,200103100,359,'2024-06-18 18:35:54',1),(518133085713203201,200103100,455,'2024-06-18 18:35:54',1),(518133085713203202,200103100,521,'2024-06-18 18:35:54',1),(518133085713203203,200103100,581,'2024-06-18 18:35:54',1),(518133085713203204,200103100,582,'2024-06-18 18:35:54',1),(518133085713203205,200103100,583,'2024-06-18 18:35:54',1),(518133085713203206,200103100,584,'2024-06-18 18:35:54',1),(518133085713203207,200103100,585,'2024-06-18 18:35:54',1),(518133085713203208,200103100,586,'2024-06-18 18:35:54',1),(518133085713203209,200103100,587,'2024-06-18 18:35:54',1),(518133085713203210,200103100,588,'2024-06-18 18:35:54',1),(518133085713203211,200103100,589,'2024-06-18 18:35:54',1),(518133085713203212,200103100,590,'2024-06-18 18:35:54',1),(518133085713203213,200103100,591,'2024-06-18 18:35:54',1),(518133085713203214,200103100,592,'2024-06-18 18:35:54',1),(518133085713203215,200103100,593,'2024-06-18 18:35:54',1),(518133085713203216,200103100,594,'2024-06-18 18:35:54',1),(518133085713203217,200103100,953,'2024-06-18 18:35:54',1),(518133085713203218,200103100,963,'2024-06-18 18:35:54',1),(518133085713203246,200103100,605,'2024-06-18 18:35:54',1),(518133085713203247,200103100,606,'2024-06-18 18:35:54',1),(518133085713203248,200103100,607,'2024-06-18 18:35:54',1),(518133085713203249,200103100,608,'2024-06-18 18:35:54',1),(518133085713203250,200103100,652,'2024-06-18 18:35:54',1),(518133085713203251,200103100,670,'2024-06-18 18:35:54',1),(518133085713203252,200103100,685,'2024-06-18 18:35:54',1),(518133085713203253,200103100,686,'2024-06-18 18:35:54',1),(518133085713203254,200103100,826,'2024-06-18 18:35:54',1),(518133085713203255,200103100,952,'2024-06-18 18:35:54',1),(518133085713203256,200103100,962,'2024-06-18 18:35:54',1),(518133085713203257,200103100,964,'2024-06-18 18:35:54',1),(519191367752089600,200105116,595,'2024-06-21 16:41:08',1),(519191367752089601,200105116,983,'2024-06-21 16:41:08',1),(519191367752089602,200105116,358,'2024-06-21 16:41:08',1),(519191367752089603,200105117,595,'2024-06-21 16:41:08',1),(519191367752089604,200105117,984,'2024-06-21 16:41:08',1),(519191367752089605,200105117,358,'2024-06-21 16:41:08',1),(519191367752089606,200105118,595,'2024-06-21 16:41:08',1),(519191367752089607,200105118,985,'2024-06-21 16:41:08',1),(519191367752089608,200105118,358,'2024-06-21 16:41:08',1),(519191367752089609,200105119,595,'2024-06-21 16:41:08',1),(519191367752089610,200105119,986,'2024-06-21 16:41:08',1),(519191367752089611,200105119,358,'2024-06-21 16:41:08',1),(524158028961153024,200105101,982,'2024-07-05 09:36:52',1),(528508099931668480,200102102,828,'2024-07-17 09:42:30',1),(528987684697669632,200134100,987,'2024-07-18 17:28:12',1),(528987684697669633,200134100,990,'2024-07-18 17:28:12',1),(528987684697669634,200134100,988,'2024-07-18 17:28:12',1),(528987684697669635,200134100,991,'2024-07-18 17:28:12',1),(528987684697669636,200134100,992,'2024-07-18 17:28:12',1),(528987684697669637,200134100,989,'2024-07-18 17:28:12',1),(528988507171323904,416100100,993,'2024-07-18 17:31:28',1),(528988507171323905,416100100,1011,'2024-07-18 17:31:28',1),(528988507171323906,416101100,993,'2024-07-18 17:31:28',1),(528988507171323907,416101100,1000,'2024-07-18 17:31:28',1),(528988507171323908,416101100,1003,'2024-07-18 17:31:28',1),(528988507171323909,416101101,993,'2024-07-18 17:31:28',1),(528988507171323910,416101101,1000,'2024-07-18 17:31:28',1),(528988507171323911,416101101,1004,'2024-07-18 17:31:28',1),(528988507171323912,416101102,993,'2024-07-18 17:31:28',1),(528988507171323913,416101102,1000,'2024-07-18 17:31:28',1),(528988507171323914,416101102,1001,'2024-07-18 17:31:28',1),(528988507171323915,416101103,993,'2024-07-18 17:31:28',1),(528988507171323916,416101103,1000,'2024-07-18 17:31:28',1),(528988507171323917,416101103,1002,'2024-07-18 17:31:28',1),(528988507171323918,416102100,993,'2024-07-18 17:31:28',1),(528988507171323919,416102100,1005,'2024-07-18 17:31:28',1),(528988507171323920,416102100,1007,'2024-07-18 17:31:28',1),(528988507171323921,416102100,1009,'2024-07-18 17:31:28',1),(528988507171323922,416102100,1008,'2024-07-18 17:31:28',1),(528988507171323923,416102101,993,'2024-07-18 17:31:28',1),(528988507171323924,416102101,1005,'2024-07-18 17:31:28',1),(528988507171323925,416102101,1006,'2024-07-18 17:31:28',1),(528988507171323926,416102102,993,'2024-07-18 17:31:28',1),(528988507171323927,416102102,1005,'2024-07-18 17:31:28',1),(528988507171323928,416102102,1010,'2024-07-18 17:31:28',1),(528988507171323929,416103100,996,'2024-07-18 17:31:28',1),(528988507171323930,416103100,993,'2024-07-18 17:31:28',1),(528988507171323931,416103100,995,'2024-07-18 17:31:28',1),(528988507171323932,416103101,993,'2024-07-18 17:31:28',1),(528988507171323933,416103101,997,'2024-07-18 17:31:28',1),(528988507171323934,416103101,995,'2024-07-18 17:31:28',1),(528988507171323935,416103102,998,'2024-07-18 17:31:28',1),(528988507171323936,416103102,993,'2024-07-18 17:31:28',1),(528988507171323937,416103102,995,'2024-07-18 17:31:28',1),(528988507171323938,416103103,999,'2024-07-18 17:31:28',1),(528988507171323939,416103103,993,'2024-07-18 17:31:28',1),(528988507171323940,416103103,995,'2024-07-18 17:31:28',1),(529005287712489473,416103104,993,'2024-07-18 18:38:09',1),(529223170178678784,416103104,994,'2024-07-19 09:03:56',1),(541562392172560384,200103100,1013,'2024-08-22 10:15:36',1),(541922985302163456,200113105,1012,'2024-08-23 10:08:28',1),(541922985302163457,200113105,124,'2024-08-23 10:08:28',1),(541922985302163458,200113105,125,'2024-08-23 10:08:28',1),(541933475491348480,409100100,511,'2024-08-23 10:50:09',1),(541933475491348481,409100100,1014,'2024-08-23 10:50:09',1),(541933475491348482,409100100,1015,'2024-08-23 10:50:09',1),(541933475491348483,409100100,1016,'2024-08-23 10:50:09',1),(543392073337667584,416102102,1017,'2024-08-27 11:26:06',89730635001757696),(543392073337667585,416102102,1018,'2024-08-27 11:26:06',89730635001757696),(543392073337667586,416102102,1019,'2024-08-27 11:26:06',89730635001757696),(543392073337667587,416102102,1020,'2024-08-27 11:26:06',89730635001757696),(543392073337667588,416102102,1021,'2024-08-27 11:26:06',89730635001757696),(548442269443424256,200117102,563,'2024-09-10 09:53:46',1),(548442269443424257,200117102,1022,'2024-09-10 09:53:46',1),(548442269443424258,200117102,1023,'2024-09-10 09:53:46',1),(560155362232893440,410100100,1029,'2024-10-12 17:37:25',1),(560155362232893441,410100100,1028,'2024-10-12 17:37:25',1),(560155362232893442,410100100,1033,'2024-10-12 17:37:25',1),(560155362232893443,410100100,1030,'2024-10-12 17:37:25',1),(560155362232893444,410100100,1026,'2024-10-12 17:37:25',1),(560155362232893445,410100100,1027,'2024-10-12 17:37:25',1),(560155362232893446,410100100,1031,'2024-10-12 17:37:25',1),(560155362232893447,410100100,1034,'2024-10-12 17:37:25',1),(560155362232893448,410100100,1024,'2024-10-12 17:37:25',1); +INSERT INTO `sys_group_resource_mapping` VALUES (266605986624569345,100100100,393,'2022-07-25 16:37:00',1),(266605986624569346,100100101,688,'2022-07-25 16:37:00',1),(266605986624569347,100100101,393,'2022-07-25 16:37:00',1),(266605986624569348,200000000,609,'2022-07-25 16:37:00',1),(266605986624569349,200000000,681,'2022-07-25 16:37:00',1),(266605986624569350,200000000,199,'2022-07-25 16:37:00',1),(266605986624569351,200000000,327,'2022-07-25 16:37:00',1),(266605986624569352,200000000,78,'2022-07-25 16:37:00',1),(266605986624569353,200000000,679,'2022-07-25 16:37:00',1),(266605986624569354,200000000,81,'2022-07-25 16:37:00',1),(266605986624569355,200000000,521,'2022-07-25 16:37:00',1),(266605986624569357,200100100,58,'2022-07-25 16:37:00',1),(266605986624569358,200100100,29,'2022-07-25 16:37:00',1),(266605986624569359,200100100,24,'2022-07-25 16:37:00',1),(266605986624569360,200100100,25,'2022-07-25 16:37:00',1),(266605986624569361,200100100,55,'2022-07-25 16:37:00',1),(266605986624569362,200100101,284,'2022-07-25 16:37:00',1),(266605986624569363,200100101,58,'2022-07-25 16:37:00',1),(266605986624569364,200100101,93,'2022-07-25 16:37:00',1),(266605986624569365,200100101,29,'2022-07-25 16:37:00',1),(266605986624569366,200100101,57,'2022-07-25 16:37:00',1),(266605986624569367,200100101,24,'2022-07-25 16:37:00',1),(266605986624569368,200100101,25,'2022-07-25 16:37:00',1),(266605986624569369,200100101,189,'2022-07-25 16:37:00',1),(266605986624569370,200100101,55,'2022-07-25 16:37:00',1),(266605986624569371,200100101,54,'2022-07-25 16:37:00',1),(266605986624569372,200101100,79,'2022-07-25 16:37:00',1),(266605986624569373,200101100,37,'2022-07-25 16:37:00',1),(266605986624569374,200101100,24,'2022-07-25 16:37:00',1),(266605986624569375,200101100,27,'2022-07-25 16:37:00',1),(266605986624569376,200101100,78,'2022-07-25 16:37:00',1),(266605986624569377,200101101,285,'2022-07-25 16:37:00',1),(266605986624569378,200101101,79,'2022-07-25 16:37:00',1),(266605986624569379,200101101,37,'2022-07-25 16:37:00',1),(266605986624569380,200101101,53,'2022-07-25 16:37:00',1),(266605986624569381,200101101,24,'2022-07-25 16:37:00',1),(266605986624569382,200101101,27,'2022-07-25 16:37:00',1),(266605986624569383,200101101,184,'2022-07-25 16:37:00',1),(266605986624569384,200101101,78,'2022-07-25 16:37:00',1),(266605986624569385,200101101,51,'2022-07-25 16:37:00',1),(266605986624569386,200102100,681,'2022-07-25 16:37:00',1),(266605986624569387,200102100,24,'2022-07-25 16:37:00',1),(266605986624569388,200102100,674,'2022-07-25 16:37:00',1),(266605986624569389,200102100,680,'2022-07-25 16:37:00',1),(266605986624569390,200102101,677,'2022-07-25 16:37:00',1),(266605986624569391,200102101,676,'2022-07-25 16:37:00',1),(266605986624569392,200102101,678,'2022-07-25 16:37:00',1),(266605986624569393,200102101,681,'2022-07-25 16:37:00',1),(266605986624569394,200102101,24,'2022-07-25 16:37:00',1),(266605986624569395,200102101,674,'2022-07-25 16:37:00',1),(266605986624569396,200102101,679,'2022-07-25 16:37:00',1),(266605986624569397,200102101,680,'2022-07-25 16:37:00',1),(266605986624569398,200102101,675,'2022-07-25 16:37:00',1),(266605986624569403,200103101,521,'2022-07-25 16:37:00',1),(266605986624569404,200103101,358,'2022-07-25 16:37:00',1),(266605986624569405,200103102,670,'2022-07-25 16:37:00',1),(266605986624569406,200103102,358,'2022-07-25 16:37:00',1),(266605986624569407,200103103,608,'2022-07-25 16:37:00',1),(266605986624569408,200103103,358,'2022-07-25 16:37:00',1),(266605986624569409,200103104,455,'2022-07-25 16:37:00',1),(266605986624569410,200103104,358,'2022-07-25 16:37:00',1),(266605986624569411,200104100,217,'2022-07-25 16:37:00',1),(266605986624569412,200104100,80,'2022-07-25 16:37:00',1),(266605986624569413,200104100,90,'2022-07-25 16:37:00',1),(266605986624569414,200104100,102,'2022-07-25 16:37:00',1),(266605986624569415,200104100,358,'2022-07-25 16:37:00',1),(266605986624569416,200104101,359,'2022-07-25 16:37:00',1),(266605986624569417,200104101,585,'2022-07-25 16:37:00',1),(266605986624569418,200104101,358,'2022-07-25 16:37:00',1),(266605986624569419,200104101,584,'2022-07-25 16:37:00',1),(266605986624569421,200104102,358,'2022-07-25 16:37:00',1),(266605986624569422,200104103,586,'2022-07-25 16:37:00',1),(266605986624569423,200104103,358,'2022-07-25 16:37:00',1),(266605986624569424,200104103,584,'2022-07-25 16:37:00',1),(266605986624569425,200104104,589,'2022-07-25 16:37:00',1),(266605986624569426,200104104,588,'2022-07-25 16:37:00',1),(266605986624569427,200104104,358,'2022-07-25 16:37:00',1),(266605986624569428,200104104,587,'2022-07-25 16:37:00',1),(266605986624569429,200104105,590,'2022-07-25 16:37:00',1),(266605986624569430,200104105,588,'2022-07-25 16:37:00',1),(266605986624569431,200104105,358,'2022-07-25 16:37:00',1),(266605986624569432,200104105,587,'2022-07-25 16:37:00',1),(266605986624569433,200104106,592,'2022-07-25 16:37:00',1),(266605986624569434,200104106,358,'2022-07-25 16:37:00',1),(266605986624569435,200104106,587,'2022-07-25 16:37:00',1),(266605986624569436,200104106,591,'2022-07-25 16:37:00',1),(266605986624569437,200104107,594,'2022-07-25 16:37:00',1),(266605986624569438,200104107,358,'2022-07-25 16:37:00',1),(266605986624569439,200104107,587,'2022-07-25 16:37:00',1),(266605986624569440,200104107,593,'2022-07-25 16:37:00',1),(266605986624569441,200105100,599,'2022-07-25 16:37:00',1),(266605986624569442,200105100,595,'2022-07-25 16:37:00',1),(266605986624569443,200105100,598,'2022-07-25 16:37:00',1),(266605986624569444,200105100,358,'2022-07-25 16:37:00',1),(266605986624569446,200105101,595,'2022-07-25 16:37:00',1),(266605986624569448,200105101,358,'2022-07-25 16:37:00',1),(266605986624569449,200105102,699,'2022-07-25 16:37:00',1),(266605986624569450,200105102,595,'2022-07-25 16:37:00',1),(266605986624569451,200105102,598,'2022-07-25 16:37:00',1),(266605986624569452,200105102,358,'2022-07-25 16:37:00',1),(266605986624569453,200105103,604,'2022-07-25 16:37:00',1),(266605986624569454,200105103,595,'2022-07-25 16:37:00',1),(266605986624569455,200105103,603,'2022-07-25 16:37:00',1),(266605986624569456,200105103,358,'2022-07-25 16:37:00',1),(266605986624569457,200105104,597,'2022-07-25 16:37:00',1),(266605986624569458,200105104,595,'2022-07-25 16:37:00',1),(266605986624569459,200105104,596,'2022-07-25 16:37:00',1),(266605986624569460,200105104,358,'2022-07-25 16:37:00',1),(266605986624569461,200105105,652,'2022-07-25 16:37:00',1),(266605986624569462,200105105,358,'2022-07-25 16:37:00',1),(266605986624569463,200105106,654,'2022-07-25 16:37:00',1),(266605986624569464,200105106,595,'2022-07-25 16:37:00',1),(266605986624569465,200105106,653,'2022-07-25 16:37:00',1),(266605986624569466,200105106,358,'2022-07-25 16:37:00',1),(266605986624569467,200105107,673,'2022-07-25 16:37:00',1),(266605986624569468,200105107,595,'2022-07-25 16:37:00',1),(266605986624569469,200105107,672,'2022-07-25 16:37:00',1),(266605986624569470,200105107,358,'2022-07-25 16:37:00',1),(266605986624569471,200106100,606,'2022-07-25 16:37:00',1),(266605986624569472,200106100,358,'2022-07-25 16:37:00',1),(266605986624569473,200106100,605,'2022-07-25 16:37:00',1),(266605986624569474,200106101,607,'2022-07-25 16:37:00',1),(266605986624569475,200106101,358,'2022-07-25 16:37:00',1),(266605986624569476,200106101,605,'2022-07-25 16:37:00',1),(266605986624569477,200107100,582,'2022-07-25 16:37:00',1),(266605986628763648,200107100,583,'2022-07-25 16:37:00',1),(266605986628763649,200107100,358,'2022-07-25 16:37:00',1),(266605986628763650,200107100,581,'2022-07-25 16:37:00',1),(266605986628763651,200108100,358,'2022-07-25 16:37:00',1),(266605986628763652,200108100,685,'2022-07-25 16:37:00',1),(266605986628763653,200109100,306,'2022-07-25 16:37:00',1),(266605986628763654,200109100,192,'2022-07-25 16:37:00',1),(266605986628763655,200109100,288,'2022-07-25 16:37:00',1),(266605986628763656,200109100,382,'2022-07-25 16:37:00',1),(266605986628763657,200109100,302,'2022-07-25 16:37:00',1),(266605986628763658,200109100,303,'2022-07-25 16:37:00',1),(266605986628763659,200109100,305,'2022-07-25 16:37:00',1),(266605986628763660,200109100,301,'2022-07-25 16:37:00',1),(266605986628763661,200109100,307,'2022-07-25 16:37:00',1),(266605986628763662,200109100,289,'2022-07-25 16:37:00',1),(266605986628763663,200109100,651,'2022-07-25 16:37:00',1),(266605986628763664,200109100,191,'2022-07-25 16:37:00',1),(266605986628763665,200109100,232,'2022-07-25 16:37:00',1),(266605986628763666,200109100,308,'2022-07-25 16:37:00',1),(266605986628763667,200109100,180,'2022-07-25 16:37:00',1),(266605986628763668,200109100,309,'2022-07-25 16:37:00',1),(266605986628763669,200109100,387,'2022-07-25 16:37:00',1),(266605986628763670,200109100,62,'2022-07-25 16:37:00',1),(266605986628763671,200109100,174,'2022-07-25 16:37:00',1),(266605986628763672,200109100,63,'2022-07-25 16:37:00',1),(266605986628763673,200109100,304,'2022-07-25 16:37:00',1),(266605986628763674,200109100,381,'2022-07-25 16:37:00',1),(266605986628763675,200109100,236,'2022-07-25 16:37:00',1),(266605986628763676,200109100,65,'2022-07-25 16:37:00',1),(266605986628763677,200109101,306,'2022-07-25 16:37:00',1),(266605986628763678,200109101,192,'2022-07-25 16:37:00',1),(266605986628763679,200109101,382,'2022-07-25 16:37:00',1),(266605986628763680,200109101,301,'2022-07-25 16:37:00',1),(266605986628763681,200109101,307,'2022-07-25 16:37:00',1),(266605986628763682,200109101,289,'2022-07-25 16:37:00',1),(266605986628763683,200109101,651,'2022-07-25 16:37:00',1),(266605986628763684,200109101,191,'2022-07-25 16:37:00',1),(266605986628763685,200109101,308,'2022-07-25 16:37:00',1),(266605986628763686,200109101,180,'2022-07-25 16:37:00',1),(266605986628763687,200109101,62,'2022-07-25 16:37:00',1),(266605986628763688,200109101,63,'2022-07-25 16:37:00',1),(266605986628763689,200109101,381,'2022-07-25 16:37:00',1),(266605986628763690,200109101,236,'2022-07-25 16:37:00',1),(266605986628763691,200109101,65,'2022-07-25 16:37:00',1),(266605986628763692,200109102,517,'2022-07-25 16:37:00',1),(266605986628763693,200109102,518,'2022-07-25 16:37:00',1),(266605986628763694,200109102,519,'2022-07-25 16:37:00',1),(266605986628763695,200109102,62,'2022-07-25 16:37:00',1),(266605986628763696,200109102,65,'2022-07-25 16:37:00',1),(266605986628763697,200109103,520,'2022-07-25 16:37:00',1),(266605986628763698,200109103,515,'2022-07-25 16:37:00',1),(266605986628763699,200109103,516,'2022-07-25 16:37:00',1),(266605986628763700,200109103,517,'2022-07-25 16:37:00',1),(266605986628763701,200109103,514,'2022-07-25 16:37:00',1),(266605986628763702,200109103,518,'2022-07-25 16:37:00',1),(266605986628763703,200109103,519,'2022-07-25 16:37:00',1),(266605986628763704,200109103,62,'2022-07-25 16:37:00',1),(266605986628763705,200109103,65,'2022-07-25 16:37:00',1),(266605986628763706,200110100,217,'2022-07-25 16:37:00',1),(266605986628763707,200110100,259,'2022-07-25 16:37:00',1),(266605986628763708,200110100,197,'2022-07-25 16:37:00',1),(266605986628763709,200110100,199,'2022-07-25 16:37:00',1),(266605986628763710,200110100,198,'2022-07-25 16:37:00',1),(266605986628763711,200110100,216,'2022-07-25 16:37:00',1),(266605986628763712,200110100,327,'2022-07-25 16:37:00',1),(266605986628763713,200110100,114,'2022-07-25 16:37:00',1),(266605986628763714,200110100,222,'2022-07-25 16:37:00',1),(266605986628763715,200110100,224,'2022-07-25 16:37:00',1),(266605986628763716,200110100,115,'2022-07-25 16:37:00',1),(266605986628763717,200110100,80,'2022-07-25 16:37:00',1),(266605986628763718,200110100,258,'2022-07-25 16:37:00',1),(266605986628763719,200110100,81,'2022-07-25 16:37:00',1),(266605986628763720,200110100,100,'2022-07-25 16:37:00',1),(266605986628763721,200110100,96,'2022-07-25 16:37:00',1),(266605986628763722,200110100,664,'2022-07-25 16:37:00',1),(266605986628763723,200110100,90,'2022-07-25 16:37:00',1),(266605986628763724,200110100,106,'2022-07-25 16:37:00',1),(266605986628763725,200110100,105,'2022-07-25 16:37:00',1),(266605986628763726,200110100,102,'2022-07-25 16:37:00',1),(266605986628763728,200110101,213,'2022-07-25 16:37:00',1),(266605986628763729,200110101,87,'2022-07-25 16:37:00',1),(266605986628763730,200110101,89,'2022-07-25 16:37:00',1),(266605986628763731,200110101,214,'2022-07-25 16:37:00',1),(266605986628763732,200110101,197,'2022-07-25 16:37:00',1),(266605986628763733,200110101,199,'2022-07-25 16:37:00',1),(266605986628763734,200110101,198,'2022-07-25 16:37:00',1),(266605986628763735,200110101,216,'2022-07-25 16:37:00',1),(266605986628763736,200110101,80,'2022-07-25 16:37:00',1),(266605986628763737,200110101,81,'2022-07-25 16:37:00',1),(266605986628763738,200110101,95,'2022-07-25 16:37:00',1),(266605986628763739,200110101,97,'2022-07-25 16:37:00',1),(266605986628763740,200110101,100,'2022-07-25 16:37:00',1),(266605986628763741,200110101,96,'2022-07-25 16:37:00',1),(266605986628763742,200110102,217,'2022-07-25 16:37:00',1),(266605986628763743,200110102,259,'2022-07-25 16:37:00',1),(266605986628763744,200110102,327,'2022-07-25 16:37:00',1),(266605986628763745,200110102,221,'2022-07-25 16:37:00',1),(266605986628763746,200110102,116,'2022-07-25 16:37:00',1),(266605986628763747,200110102,220,'2022-07-25 16:37:00',1),(266605986628763748,200110102,114,'2022-07-25 16:37:00',1),(266605986628763749,200110102,222,'2022-07-25 16:37:00',1),(266605986628763750,200110102,225,'2022-07-25 16:37:00',1),(266605986628763751,200110102,227,'2022-07-25 16:37:00',1),(266605986628763752,200110102,224,'2022-07-25 16:37:00',1),(266605986628763753,200110102,115,'2022-07-25 16:37:00',1),(266605986628763754,200110102,119,'2022-07-25 16:37:00',1),(266605986628763755,200110102,80,'2022-07-25 16:37:00',1),(266605986628763756,200110102,258,'2022-07-25 16:37:00',1),(266605986628763757,200110102,664,'2022-07-25 16:37:00',1),(266605986628763758,200110102,90,'2022-07-25 16:37:00',1),(266605986628763759,200110102,104,'2022-07-25 16:37:00',1),(266605986628763760,200110102,103,'2022-07-25 16:37:00',1),(266605986628763761,200110102,106,'2022-07-25 16:37:00',1),(266605986628763762,200110102,105,'2022-07-25 16:37:00',1),(266605986628763763,200110102,102,'2022-07-25 16:37:00',1),(266605986628763764,200111100,325,'2022-07-25 16:37:00',1),(266605986628763765,200111100,317,'2022-07-25 16:37:00',1),(266605986628763766,200111100,323,'2022-07-25 16:37:00',1),(266605986628763767,200111100,314,'2022-07-25 16:37:00',1),(266605986628763768,200111100,316,'2022-07-25 16:37:00',1),(266605986628763769,200111100,311,'2022-07-25 16:37:00',1),(266605986628763770,200111100,312,'2022-07-25 16:37:00',1),(266605986628763771,200111100,322,'2022-07-25 16:37:00',1),(266605986628763772,200111100,319,'2022-07-25 16:37:00',1),(266605986628763773,200111100,321,'2022-07-25 16:37:00',1),(266605986628763774,200111100,320,'2022-07-25 16:37:00',1),(266605986628763775,200111100,80,'2022-07-25 16:37:00',1),(266605986628763776,200111100,310,'2022-07-25 16:37:00',1),(266605986628763777,200111100,324,'2022-07-25 16:37:00',1),(266605986628763778,200111100,315,'2022-07-25 16:37:00',1),(266605986628763779,200111100,318,'2022-07-25 16:37:00',1),(266605986628763780,200111100,326,'2022-07-25 16:37:00',1),(266605986628763781,200111100,313,'2022-07-25 16:37:00',1),(266605986628763782,200111101,314,'2022-07-25 16:37:00',1),(266605986628763783,200111101,311,'2022-07-25 16:37:00',1),(266605986628763784,200111101,312,'2022-07-25 16:37:00',1),(266605986628763785,200111101,322,'2022-07-25 16:37:00',1),(266605986628763786,200111101,320,'2022-07-25 16:37:00',1),(266605986628763787,200111101,80,'2022-07-25 16:37:00',1),(266605986628763788,200111101,310,'2022-07-25 16:37:00',1),(266605986628763789,200111101,318,'2022-07-25 16:37:00',1),(266605986628763790,200111101,326,'2022-07-25 16:37:00',1),(266605986628763791,200111101,313,'2022-07-25 16:37:00',1),(266605986628763792,200112100,80,'2022-07-25 16:37:00',1),(266605986628763793,200112100,682,'2022-07-25 16:37:00',1),(266605986628763794,200112101,80,'2022-07-25 16:37:00',1),(266605986628763795,200112101,682,'2022-07-25 16:37:00',1),(266605986628763796,200113100,332,'2022-07-25 16:37:00',1),(266605986628763797,200113100,337,'2022-07-25 16:37:00',1),(266605986628763798,200113100,342,'2022-07-25 16:37:00',1),(266605986628763799,200113100,329,'2022-07-25 16:37:00',1),(266605986628763800,200113100,409,'2022-07-25 16:37:00',1),(266605986628763801,200113100,339,'2022-07-25 16:37:00',1),(266605986628763802,200113100,340,'2022-07-25 16:37:00',1),(266605986628763803,200113100,246,'2022-07-25 16:37:00',1),(266605986628763804,200113100,386,'2022-07-25 16:37:00',1),(266605986628763805,200113100,341,'2022-07-25 16:37:00',1),(266605986628763806,200113100,334,'2022-07-25 16:37:00',1),(266605986628763807,200113100,508,'2022-07-25 16:37:00',1),(266605986628763808,200113100,385,'2022-07-25 16:37:00',1),(266605986628763809,200113100,504,'2022-07-25 16:37:00',1),(266605986628763810,200113100,501,'2022-07-25 16:37:00',1),(266605986628763811,200113100,502,'2022-07-25 16:37:00',1),(266605986628763812,200113100,503,'2022-07-25 16:37:00',1),(266605986628763813,200113100,343,'2022-07-25 16:37:00',1),(266605986628763814,200113100,384,'2022-07-25 16:37:00',1),(266605986628763815,200113100,457,'2022-07-25 16:37:00',1),(266605986628763816,200113100,243,'2022-07-25 16:37:00',1),(266605986628763817,200113100,333,'2022-07-25 16:37:00',1),(266605986628763818,200113100,336,'2022-07-25 16:37:00',1),(266605986628763819,200113100,328,'2022-07-25 16:37:00',1),(266605986628763820,200113100,335,'2022-07-25 16:37:00',1),(266605986628763821,200113100,383,'2022-07-25 16:37:00',1),(266605986628763822,200113100,338,'2022-07-25 16:37:00',1),(266605986628763823,200113100,124,'2022-07-25 16:37:00',1),(266605986628763824,200113100,239,'2022-07-25 16:37:00',1),(266605986628763825,200113100,238,'2022-07-25 16:37:00',1),(266605986628763826,200113100,240,'2022-07-25 16:37:00',1),(266605986628763827,200113100,500,'2022-07-25 16:37:00',1),(266605986628763828,200113100,499,'2022-07-25 16:37:00',1),(266605986628763829,200113100,331,'2022-07-25 16:37:00',1),(266605986628763830,200113100,458,'2022-07-25 16:37:00',1),(266605986628763831,200113100,125,'2022-07-25 16:37:00',1),(266605986628763832,200113101,332,'2022-07-25 16:37:00',1),(266605986628763833,200113101,337,'2022-07-25 16:37:00',1),(266605986628763834,200113101,246,'2022-07-25 16:37:00',1),(266605986628763835,200113101,386,'2022-07-25 16:37:00',1),(266605986628763836,200113101,341,'2022-07-25 16:37:00',1),(266605986628763837,200113101,334,'2022-07-25 16:37:00',1),(266605986628763838,200113101,508,'2022-07-25 16:37:00',1),(266605986628763839,200113101,502,'2022-07-25 16:37:00',1),(266605986628763840,200113101,503,'2022-07-25 16:37:00',1),(266605986628763841,200113101,343,'2022-07-25 16:37:00',1),(266605986628763842,200113101,457,'2022-07-25 16:37:00',1),(266605986628763843,200113101,336,'2022-07-25 16:37:00',1),(266605986628763844,200113101,335,'2022-07-25 16:37:00',1),(266605986628763845,200113101,124,'2022-07-25 16:37:00',1),(266605986628763846,200113101,238,'2022-07-25 16:37:00',1),(266605986628763847,200113101,499,'2022-07-25 16:37:00',1),(266605986628763848,200113101,331,'2022-07-25 16:37:00',1),(266605986628763849,200113101,458,'2022-07-25 16:37:00',1),(266605986628763850,200113101,125,'2022-07-25 16:37:00',1),(266605986628763851,200113102,562,'2022-07-25 16:37:00',1),(266605986628763852,200113102,124,'2022-07-25 16:37:00',1),(266605986628763853,200114100,472,'2022-07-25 16:37:00',1),(266605986628763854,200114100,561,'2022-07-25 16:37:00',1),(266605986628763855,200114100,491,'2022-07-25 16:37:00',1),(266605986628763856,200114100,469,'2022-07-25 16:37:00',1),(266605986628763857,200114100,490,'2022-07-25 16:37:00',1),(266605986628763858,200114100,492,'2022-07-25 16:37:00',1),(266605986628763859,200114100,470,'2022-07-25 16:37:00',1),(266605986628763860,200114100,483,'2022-07-25 16:37:00',1),(266605986628763861,200114100,487,'2022-07-25 16:37:00',1),(266605986628763862,200114100,478,'2022-07-25 16:37:00',1),(266605986628763863,200114100,498,'2022-07-25 16:37:00',1),(266605986628763864,200114100,497,'2022-07-25 16:37:00',1),(266605986628763865,200114100,493,'2022-07-25 16:37:00',1),(266605986628763866,200114100,495,'2022-07-25 16:37:00',1),(266605986628763867,200114100,494,'2022-07-25 16:37:00',1),(266605986628763868,200114100,485,'2022-07-25 16:37:00',1),(266605986628763869,200114100,496,'2022-07-25 16:37:00',1),(266605986628763870,200114100,467,'2022-07-25 16:37:00',1),(266605986628763871,200114100,655,'2022-07-25 16:37:00',1),(266605986628763872,200114100,468,'2022-07-25 16:37:00',1),(266605986628763873,200114100,488,'2022-07-25 16:37:00',1),(266605986628763874,200114100,477,'2022-07-25 16:37:00',1),(266605986628763875,200114100,476,'2022-07-25 16:37:00',1),(266605986628763876,200114100,480,'2022-07-25 16:37:00',1),(266605986628763877,200114100,475,'2022-07-25 16:37:00',1),(266605986628763878,200114100,473,'2022-07-25 16:37:00',1),(266605986628763879,200114100,463,'2022-07-25 16:37:00',1),(266605986628763880,200114100,489,'2022-07-25 16:37:00',1),(266605986628763881,200114100,486,'2022-07-25 16:37:00',1),(266605986628763882,200114100,482,'2022-07-25 16:37:00',1),(266605986628763883,200114100,484,'2022-07-25 16:37:00',1),(266605986628763884,200114100,464,'2022-07-25 16:37:00',1),(266605986628763885,200114100,471,'2022-07-25 16:37:00',1),(266605986628763886,200114100,479,'2022-07-25 16:37:00',1),(266605986628763887,200114100,481,'2022-07-25 16:37:00',1),(266605986628763888,200114100,474,'2022-07-25 16:37:00',1),(266605986628763889,200114101,700,'2022-07-25 16:37:00',1),(266605986628763890,200114101,561,'2022-07-25 16:37:00',1),(266605986628763891,200114101,487,'2022-07-25 16:37:00',1),(266605986628763892,200114101,485,'2022-07-25 16:37:00',1),(266605986628763893,200114101,467,'2022-07-25 16:37:00',1),(266605986628763894,200114101,655,'2022-07-25 16:37:00',1),(266605986628763895,200114101,468,'2022-07-25 16:37:00',1),(266605986628763896,200114101,480,'2022-07-25 16:37:00',1),(266605986628763897,200114101,475,'2022-07-25 16:37:00',1),(266605986628763898,200114101,463,'2022-07-25 16:37:00',1),(266605986628763899,200114101,486,'2022-07-25 16:37:00',1),(266605986628763900,200114101,484,'2022-07-25 16:37:00',1),(266605986628763901,200114101,464,'2022-07-25 16:37:00',1),(266605986628763902,200114101,479,'2022-07-25 16:37:00',1),(266605986628763903,200114101,474,'2022-07-25 16:37:00',1),(266605986628763904,200115100,719,'2022-07-25 16:37:00',1),(266605986628763905,200115100,170,'2022-07-25 16:37:00',1),(266605986628763906,200115100,722,'2022-07-25 16:37:00',1),(266605986628763907,200115100,718,'2022-07-25 16:37:00',1),(266605986628763908,200115100,721,'2022-07-25 16:37:00',1),(266605986628763909,200115101,719,'2022-07-25 16:37:00',1),(266605986628763910,200115101,170,'2022-07-25 16:37:00',1),(266605986628763911,200115101,723,'2022-07-25 16:37:00',1),(266605986628763912,200115101,718,'2022-07-25 16:37:00',1),(266605986628763913,200115102,720,'2022-07-25 16:37:00',1),(266605986628763914,200115102,719,'2022-07-25 16:37:00',1),(266605986628763915,200115102,170,'2022-07-25 16:37:00',1),(266605986628763916,200115102,718,'2022-07-25 16:37:00',1),(266605986628763917,200116100,379,'2022-07-25 16:37:00',1),(266605986628763918,200116100,375,'2022-07-25 16:37:00',1),(266605986628763919,200116100,377,'2022-07-25 16:37:00',1),(266605986628763920,200116100,373,'2022-07-25 16:37:00',1),(266605986628763921,200116100,369,'2022-07-25 16:37:00',1),(266605986628763922,200116100,371,'2022-07-25 16:37:00',1),(266605986628763923,200116100,368,'2022-07-25 16:37:00',1),(266605986628763924,200116100,366,'2022-07-25 16:37:00',1),(266605986628763925,200116100,378,'2022-07-25 16:37:00',1),(266605986628763926,200116100,374,'2022-07-25 16:37:00',1),(266605986628763927,200116100,370,'2022-07-25 16:37:00',1),(266605986628763928,200116100,376,'2022-07-25 16:37:00',1),(266605986628763929,200116100,372,'2022-07-25 16:37:00',1),(266605986628763930,200116100,367,'2022-07-25 16:37:00',1),(266605986628763931,200116101,379,'2022-07-25 16:37:00',1),(266605986628763932,200116101,375,'2022-07-25 16:37:00',1),(266605986628763933,200116101,377,'2022-07-25 16:37:00',1),(266605986628763934,200116101,373,'2022-07-25 16:37:00',1),(266605986628763935,200116101,366,'2022-07-25 16:37:00',1),(266605986628763936,200116101,378,'2022-07-25 16:37:00',1),(266605986628763937,200116101,374,'2022-07-25 16:37:00',1),(266605986628763938,200116101,376,'2022-07-25 16:37:00',1),(266605986628763939,200116101,372,'2022-07-25 16:37:00',1),(266605986628763940,200117100,568,'2022-07-25 16:37:00',1),(266605986628763941,200117100,566,'2022-07-25 16:37:00',1),(266605986628763942,200117100,567,'2022-07-25 16:37:00',1),(266605986628763943,200117100,563,'2022-07-25 16:37:00',1),(266605986628763944,200117100,564,'2022-07-25 16:37:00',1),(266605986628763945,200117100,565,'2022-07-25 16:37:00',1),(266605986628763946,200117101,571,'2022-07-25 16:37:00',1),(266605986628763947,200117101,576,'2022-07-25 16:37:00',1),(266605986628763948,200117101,575,'2022-07-25 16:37:00',1),(266605986628763949,200117101,573,'2022-07-25 16:37:00',1),(266605986628763950,200117101,577,'2022-07-25 16:37:00',1),(266605986628763951,200117101,580,'2022-07-25 16:37:00',1),(266605986628763952,200117101,579,'2022-07-25 16:37:00',1),(266605986628763953,200117101,563,'2022-07-25 16:37:00',1),(266605986628763954,200117101,569,'2022-07-25 16:37:00',1),(266605986628763955,200117101,570,'2022-07-25 16:37:00',1),(266605986628763956,200117101,574,'2022-07-25 16:37:00',1),(266605986628763957,200117101,572,'2022-07-25 16:37:00',1),(266605986628763958,200117101,578,'2022-07-25 16:37:00',1),(266605986632957952,200118100,650,'2022-07-25 16:37:00',1),(266605986632957953,200118100,647,'2022-07-25 16:37:00',1),(266605986632957954,200118100,648,'2022-07-25 16:37:00',1),(266605986632957955,200118100,645,'2022-07-25 16:37:00',1),(266605986632957956,200118100,649,'2022-07-25 16:37:00',1),(266605986632957957,200118100,646,'2022-07-25 16:37:00',1),(266605986632957958,200118100,644,'2022-07-25 16:37:00',1),(266605986632957959,200119100,697,'2022-07-25 16:37:00',1),(266605986632957960,300000000,611,'2022-07-25 16:37:00',1),(266605986632957961,401100100,625,'2022-07-25 16:37:00',1),(266605986632957962,401100100,620,'2022-07-25 16:37:00',1),(266605986632957963,401100100,639,'2022-07-25 16:37:00',1),(266605986632957964,401100100,629,'2022-07-25 16:37:00',1),(266605986632957965,401100100,616,'2022-07-25 16:37:00',1),(266605986632957966,401100100,619,'2022-07-25 16:37:00',1),(266605986632957967,401100100,623,'2022-07-25 16:37:00',1),(266605986632957968,401100100,634,'2022-07-25 16:37:00',1),(266605986632957969,401100100,633,'2022-07-25 16:37:00',1),(266605986632957970,401100100,618,'2022-07-25 16:37:00',1),(266605986632957971,401100100,617,'2022-07-25 16:37:00',1),(266605986632957972,401100100,626,'2022-07-25 16:37:00',1),(266605986632957973,401100100,615,'2022-07-25 16:37:00',1),(266605986632957974,401100100,632,'2022-07-25 16:37:00',1),(266605986632957975,401100100,628,'2022-07-25 16:37:00',1),(266605986632957976,401100100,637,'2022-07-25 16:37:00',1),(266605986632957977,401100100,622,'2022-07-25 16:37:00',1),(266605986632957978,401100100,635,'2022-07-25 16:37:00',1),(266605986632957979,401100100,630,'2022-07-25 16:37:00',1),(266605986632957980,401100100,621,'2022-07-25 16:37:00',1),(266605986632957981,401100100,624,'2022-07-25 16:37:00',1),(266605986632957982,401100100,638,'2022-07-25 16:37:00',1),(266605986632957983,401100100,631,'2022-07-25 16:37:00',1),(266605986632957984,401100100,613,'2022-07-25 16:37:00',1),(266605986632957985,401100100,614,'2022-07-25 16:37:00',1),(266605986632957986,401100100,627,'2022-07-25 16:37:00',1),(266605986632957987,401100100,636,'2022-07-25 16:37:00',1),(266605986632957988,402100100,609,'2022-07-25 16:37:00',1),(266605986632957989,402100100,667,'2022-07-25 16:37:00',1),(266605986632957993,404100100,671,'2022-07-25 16:37:00',1),(266605986632957994,405100100,669,'2022-07-25 16:37:00',1),(266605986632957995,405102100,708,'2022-07-25 16:37:00',1),(266605986632957996,405102100,706,'2022-07-25 16:37:00',1),(266605986632957997,405102100,707,'2022-07-25 16:37:00',1),(266605986632957998,405102101,706,'2022-07-25 16:37:00',1),(266605986632957999,405102101,707,'2022-07-25 16:37:00',1),(266605986632958000,405103100,710,'2022-07-25 16:37:00',1),(266605986632958001,405103100,711,'2022-07-25 16:37:00',1),(266605986632958002,405103100,706,'2022-07-25 16:37:00',1),(266605986632958003,405103100,709,'2022-07-25 16:37:00',1),(266605986632958004,405103101,706,'2022-07-25 16:37:00',1),(266605986632958005,405103101,709,'2022-07-25 16:37:00',1),(266605986632958006,405104100,713,'2022-07-25 16:37:00',1),(266605986632958007,405104100,714,'2022-07-25 16:37:00',1),(266605986632958008,405104100,706,'2022-07-25 16:37:00',1),(266605986632958009,405104100,712,'2022-07-25 16:37:00',1),(266605986632958010,405104101,706,'2022-07-25 16:37:00',1),(266605986632958011,405104101,712,'2022-07-25 16:37:00',1),(266605986632958012,406100100,663,'2022-07-25 16:37:00',1),(266605986632958013,406100100,662,'2022-07-25 16:37:00',1),(266605986632958014,407100100,696,'2022-07-25 16:37:00',1),(266605986632958015,408100100,701,'2022-07-25 16:37:00',1),(266605986632958016,411100100,726,'2022-07-25 16:37:00',1),(266605986632958017,411100100,692,'2022-07-25 16:37:00',1),(266605986632958018,411100100,691,'2022-07-25 16:37:00',1),(266605986632958019,411100100,693,'2022-07-25 16:37:00',1),(266605986632958020,411100100,695,'2022-07-25 16:37:00',1),(266605986632958021,411100100,694,'2022-07-25 16:37:00',1),(266605986632958022,411100100,689,'2022-07-25 16:37:00',1),(266605986632958023,411100100,690,'2022-07-25 16:37:00',1),(266605986632958024,412100100,728,'2022-07-25 16:37:00',1),(266605986632958026,600000000,610,'2022-07-25 16:37:00',1),(266605986632958027,600100100,391,'2022-07-25 16:37:00',1),(266605986632958028,600100100,434,'2022-07-25 16:37:00',1),(266605986632958029,600100100,429,'2022-07-25 16:37:00',1),(266605986632958030,600100100,433,'2022-07-25 16:37:00',1),(266605986632958031,600100100,432,'2022-07-25 16:37:00',1),(266605986632958032,600100100,392,'2022-07-25 16:37:00',1),(266605986632958033,600100100,431,'2022-07-25 16:37:00',1),(266605986632958034,600101100,687,'2022-07-25 16:37:00',1),(266605986632958035,600102100,641,'2022-07-25 16:37:00',1),(266605986632958036,600103100,452,'2022-07-25 16:37:00',1),(266605986632958037,600103100,506,'2022-07-25 16:37:00',1),(266605986632958038,600104100,559,'2022-07-25 16:37:00',1),(266605986632958039,600104100,560,'2022-07-25 16:37:00',1),(266605986632958040,600104100,552,'2022-07-25 16:37:00',1),(266605986632958041,600104100,557,'2022-07-25 16:37:00',1),(266605986632958042,600104100,555,'2022-07-25 16:37:00',1),(266605986632958043,600104100,553,'2022-07-25 16:37:00',1),(266605986632958044,600104100,535,'2022-07-25 16:37:00',1),(266605986632958045,600104100,528,'2022-07-25 16:37:00',1),(266605986632958046,600104100,532,'2022-07-25 16:37:00',1),(266605986632958047,600104100,526,'2022-07-25 16:37:00',1),(266605986632958048,600104100,533,'2022-07-25 16:37:00',1),(266605986632958049,600104100,529,'2022-07-25 16:37:00',1),(266605986632958050,600104100,530,'2022-07-25 16:37:00',1),(266605986632958051,600104100,545,'2022-07-25 16:37:00',1),(266605986632958052,600104100,540,'2022-07-25 16:37:00',1),(266605986632958053,600104100,549,'2022-07-25 16:37:00',1),(266605986632958054,600104100,542,'2022-07-25 16:37:00',1),(266605986632958055,600104100,547,'2022-07-25 16:37:00',1),(266605986632958056,600104100,539,'2022-07-25 16:37:00',1),(266605986632958057,600104100,543,'2022-07-25 16:37:00',1),(266605986632958058,600104100,541,'2022-07-25 16:37:00',1),(266605986632958059,600104100,550,'2022-07-25 16:37:00',1),(266605986632958060,600104100,558,'2022-07-25 16:37:00',1),(266605986632958061,600104100,556,'2022-07-25 16:37:00',1),(266605986632958062,600104100,554,'2022-07-25 16:37:00',1),(266605986632958063,600104100,551,'2022-07-25 16:37:00',1),(266605986632958064,600104100,659,'2022-07-25 16:37:00',1),(266605986632958065,600104100,658,'2022-07-25 16:37:00',1),(266605986632958066,600104100,524,'2022-07-25 16:37:00',1),(266605986632958067,600104100,534,'2022-07-25 16:37:00',1),(266605986632958068,600104100,527,'2022-07-25 16:37:00',1),(266605986632958069,600104100,531,'2022-07-25 16:37:00',1),(266605986632958070,600104100,525,'2022-07-25 16:37:00',1),(266605986632958071,600104100,536,'2022-07-25 16:37:00',1),(266605986632958072,600104100,538,'2022-07-25 16:37:00',1),(266605986632958073,600104100,544,'2022-07-25 16:37:00',1),(266605986632958074,600104100,548,'2022-07-25 16:37:00',1),(266605986632958075,600104100,546,'2022-07-25 16:37:00',1),(266605986632958076,600104100,537,'2022-07-25 16:37:00',1),(266605986632958077,600105100,414,'2022-07-25 16:37:00',1),(266605986632958078,600105100,413,'2022-07-25 16:37:00',1),(266605986632958079,600105100,412,'2022-07-25 16:37:00',1),(266605986632958080,600105100,411,'2022-07-25 16:37:00',1),(266605986632958081,600105100,402,'2022-07-25 16:37:00',1),(266605986632958082,600105100,702,'2022-07-25 16:37:00',1),(266605986632958083,600105100,705,'2022-07-25 16:37:00',1),(266605986632958084,600105100,703,'2022-07-25 16:37:00',1),(266605986632958085,600105100,704,'2022-07-25 16:37:00',1),(266605986632958086,600105100,401,'2022-07-25 16:37:00',1),(266605986632958087,600105100,403,'2022-07-25 16:37:00',1),(266605986632958088,600105100,400,'2022-07-25 16:37:00',1),(266605986632958089,600105100,397,'2022-07-25 16:37:00',1),(266605986632958090,600105100,453,'2022-07-25 16:37:00',1),(266605986632958091,600105100,399,'2022-07-25 16:37:00',1),(266605986632958092,600105100,398,'2022-07-25 16:37:00',1),(266605986632958093,600105100,395,'2022-07-25 16:37:00',1),(266605986632958094,600105100,396,'2022-07-25 16:37:00',1),(266605986632958095,600105100,404,'2022-07-25 16:37:00',1),(266605986632958098,600106100,509,'2022-07-25 16:37:00',1),(266605986632958099,600107100,698,'2022-07-25 16:37:00',1),(266605986632958100,600108100,715,'2022-07-25 16:37:00',1),(266605986632958101,600120100,727,'2022-07-25 16:37:00',1),(266975231761973248,200122100,689,'2022-07-26 17:04:15',1),(266975231761973249,200122100,690,'2022-07-26 17:04:15',1),(266975231761973250,200122100,691,'2022-07-26 17:04:15',1),(266975231761973251,200122100,692,'2022-07-26 17:04:15',1),(266975231761973252,200122100,693,'2022-07-26 17:04:15',1),(266975231761973253,200122100,694,'2022-07-26 17:04:15',1),(266975231761973254,200122100,695,'2022-07-26 17:04:15',1),(267343413223882752,412101100,730,'2022-07-27 17:27:16',1),(269433900512575488,410100100,717,'2022-08-02 11:54:07',1),(270264712199929856,200121100,731,'2022-08-04 18:55:28',1),(274103759049588736,600121100,732,'2022-08-15 09:10:28',1),(274128915549650944,200104102,686,'2022-08-15 10:50:26',1),(274128915549650945,200105108,595,'2022-08-15 10:50:26',1),(274128915549650946,200105108,358,'2022-08-15 10:50:26',1),(274128915549650947,600118100,716,'2022-08-15 10:50:26',1),(275575362413395968,413100100,733,'2022-08-19 10:38:06',1),(275575362413395969,414100100,734,'2022-08-19 10:38:06',1),(279568369068277760,600119100,754,'2022-08-30 11:04:53',1),(279568369068277761,600119100,759,'2022-08-30 11:04:53',1),(279568369068277762,600119100,757,'2022-08-30 11:04:53',1),(279568369068277763,600119100,756,'2022-08-30 11:04:53',1),(279568369068277764,600119100,739,'2022-08-30 11:04:53',1),(279568369068277765,600119100,742,'2022-08-30 11:04:53',1),(279568369068277766,600119100,737,'2022-08-30 11:04:53',1),(279568369068277767,600119100,746,'2022-08-30 11:04:53',1),(279568369068277768,600119100,747,'2022-08-30 11:04:53',1),(279568369068277769,600119100,748,'2022-08-30 11:04:53',1),(279568369068277770,600119100,745,'2022-08-30 11:04:53',1),(279568369068277771,600119100,752,'2022-08-30 11:04:53',1),(279568369068277772,600119100,760,'2022-08-30 11:04:53',1),(279568369068277773,600119100,755,'2022-08-30 11:04:53',1),(279568369068277774,600119100,758,'2022-08-30 11:04:53',1),(279568369068277775,600119100,753,'2022-08-30 11:04:53',1),(279568369068277776,600119100,751,'2022-08-30 11:04:53',1),(279568369068277777,600119100,761,'2022-08-30 11:04:53',1),(279568369068277778,600119100,762,'2022-08-30 11:04:53',1),(279568369068277779,600119100,735,'2022-08-30 11:04:53',1),(279568369068277780,600119100,738,'2022-08-30 11:04:53',1),(279568369068277781,600119100,740,'2022-08-30 11:04:53',1),(279568369068277782,600119100,741,'2022-08-30 11:04:53',1),(279568369068277783,600119100,736,'2022-08-30 11:04:53',1),(279568369068277784,600119100,743,'2022-08-30 11:04:53',1),(279568369068277785,600119100,749,'2022-08-30 11:04:53',1),(279568369068277786,600119100,750,'2022-08-30 11:04:53',1),(279568369068277787,600119100,744,'2022-08-30 11:04:53',1),(282183698030264320,200114000,463,'2022-09-06 16:17:16',188243415207510016),(282183698030264321,200114000,467,'2022-09-06 16:17:16',188243415207510016),(287191557050728448,200104000,358,'2022-09-20 11:56:42',188243415207510016),(287191557050728449,200104000,584,'2022-09-20 11:56:42',188243415207510016),(287191557050728450,200104000,585,'2022-09-20 11:56:42',188243415207510016),(287262407229702144,200123100,771,'2022-09-20 16:38:14',1),(287262407229702145,200123100,772,'2022-09-20 16:38:14',1),(287262407229702146,200123100,773,'2022-09-20 16:38:14',1),(287262407229702147,200123100,774,'2022-09-20 16:38:14',1),(287262407229702148,200123100,780,'2022-09-20 16:38:14',1),(287262407229702149,200123100,781,'2022-09-20 16:38:14',1),(287262407229702150,200123100,782,'2022-09-20 16:38:14',1),(287262407229702151,200123100,783,'2022-09-20 16:38:14',1),(287262407229702152,200123101,777,'2022-09-20 16:38:14',1),(287262407229702153,200123101,778,'2022-09-20 16:38:14',1),(287262407229702154,200123101,771,'2022-09-20 16:38:14',1),(287262407229702155,200123101,775,'2022-09-20 16:38:14',1),(287262407229702156,200123101,776,'2022-09-20 16:38:14',1),(287262407229702157,200123101,779,'2022-09-20 16:38:14',1),(287262407229702158,200124100,769,'2022-09-20 16:38:14',1),(287262407229702159,200124100,768,'2022-09-20 16:38:14',1),(287262407229702160,200124100,765,'2022-09-20 16:38:14',1),(287262407229702161,200124100,766,'2022-09-20 16:38:14',1),(287262407229702162,200124100,767,'2022-09-20 16:38:14',1),(287262407229702163,200124100,763,'2022-09-20 16:38:14',1),(287262407229702164,200124100,764,'2022-09-20 16:38:14',1),(287262407229702165,405100100,792,'2022-09-20 16:38:14',1),(287262407229702166,405101100,669,'2022-09-20 16:38:14',1),(287262407229702167,405101100,793,'2022-09-20 16:38:14',1),(287262407229702168,405102100,669,'2022-09-20 16:38:14',1),(287262407229702169,405102101,794,'2022-09-20 16:38:14',1),(287262407229702170,405102101,669,'2022-09-20 16:38:14',1),(287262407229702171,405103100,669,'2022-09-20 16:38:14',1),(287262407229702172,405103101,669,'2022-09-20 16:38:14',1),(287262407229702173,405103101,795,'2022-09-20 16:38:14',1),(287262407229702174,405104100,669,'2022-09-20 16:38:14',1),(287262407229702175,405104101,796,'2022-09-20 16:38:14',1),(287262407229702176,405104101,669,'2022-09-20 16:38:14',1),(287262407229702177,405105100,799,'2022-09-20 16:38:14',1),(287262407229702178,405105100,669,'2022-09-20 16:38:14',1),(287262407229702179,405105100,797,'2022-09-20 16:38:14',1),(287262407229702180,405105101,798,'2022-09-20 16:38:14',1),(287262407229702181,405105101,669,'2022-09-20 16:38:14',1),(287262407229702182,405105101,797,'2022-09-20 16:38:14',1),(287262407229702183,405107100,669,'2022-09-20 16:38:14',1),(287262407229702184,405107100,788,'2022-09-20 16:38:14',1),(287262407229702185,405107100,789,'2022-09-20 16:38:14',1),(287262407229702186,405107100,790,'2022-09-20 16:38:14',1),(287262407229702187,405107100,791,'2022-09-20 16:38:14',1),(287262407229702188,410104100,785,'2022-09-20 16:38:14',1),(287550391111909376,200105108,800,'2022-09-21 11:42:35',1),(287550391111909377,200105108,801,'2022-09-21 11:42:35',1),(287885790317379586,600122100,802,'2022-09-22 09:55:21',1),(295508547232727040,200114100,700,'2022-10-13 10:45:27',1),(295508547232727041,200114100,804,'2022-10-13 10:45:27',1),(295508547232727042,200114100,770,'2022-10-13 10:45:27',1),(295508547232727043,200114100,803,'2022-10-13 10:45:27',1),(295850094623981568,200103000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981569,200105000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981570,200106000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981571,200107000,358,'2022-10-14 09:22:39',89730635001757696),(295850094623981572,200108000,358,'2022-10-14 09:22:39',89730635001757696),(299966045483302912,200000000,358,'2022-10-25 17:57:58',1),(299966045487497216,600105100,806,'2022-10-25 17:57:58',1),(299966045487497217,600105100,805,'2022-10-25 17:57:58',1),(300647546641317888,200114000,486,'2022-10-27 15:06:00',188243415207510016),(300647546641317889,200114000,804,'2022-10-27 15:06:00',188243415207510016),(300664130889973760,600119100,813,'2022-10-27 16:11:54',1),(300664130889973761,600119100,812,'2022-10-27 16:11:54',1),(300664130889973762,600119100,811,'2022-10-27 16:11:54',1),(300664130889973763,600119100,820,'2022-10-27 16:11:54',1),(300664130889973764,600119100,825,'2022-10-27 16:11:54',1),(300664130889973765,600119100,822,'2022-10-27 16:11:54',1),(300664130889973766,600119100,823,'2022-10-27 16:11:54',1),(300664130889973767,600119100,818,'2022-10-27 16:11:54',1),(300664130889973768,600119100,824,'2022-10-27 16:11:54',1),(300664130889973769,600119100,819,'2022-10-27 16:11:54',1),(300664130889973770,600119100,815,'2022-10-27 16:11:54',1),(300664130889973771,600119100,814,'2022-10-27 16:11:54',1),(300664130889973772,600119100,816,'2022-10-27 16:11:54',1),(300664130889973773,600119100,821,'2022-10-27 16:11:54',1),(300664130889973774,600119100,817,'2022-10-27 16:11:54',1),(300664130889973775,600119100,809,'2022-10-27 16:11:54',1),(300664130889973776,600119100,810,'2022-10-27 16:11:54',1),(302094946035433472,200106000,605,'2022-10-31 14:57:27',1),(302094946035433473,200106000,607,'2022-10-31 14:57:27',1),(302095001555697664,200106000,606,'2022-10-31 14:57:41',1),(303212215039295488,200123000,775,'2022-11-03 16:57:05',188243415207510016),(305387547394834432,200104108,358,'2022-11-09 17:01:05',1),(305387547394834433,200104108,826,'2022-11-09 17:01:05',1),(313634871590912000,411101100,827,'2022-12-02 11:13:00',1),(337969868502990848,600105101,402,'2023-02-07 14:51:35',1),(337969868502990849,600105101,403,'2023-02-07 14:51:35',1),(337969868502990850,600105101,395,'2023-02-07 14:51:35',1),(337969868502990851,600105105,453,'2023-02-07 14:51:35',1),(337969868502990852,600105105,395,'2023-02-07 14:51:35',1),(337969868502990853,600105105,396,'2023-02-07 14:51:35',1),(337969868502990854,600105107,397,'2023-02-07 14:51:35',1),(337969868507185152,600105107,398,'2023-02-07 14:51:35',1),(337969868507185153,600105107,395,'2023-02-07 14:51:35',1),(337969868507185154,600105108,397,'2023-02-07 14:51:35',1),(337969868507185155,600105108,399,'2023-02-07 14:51:35',1),(337969868507185156,600105108,395,'2023-02-07 14:51:35',1),(337969868507185157,600105109,397,'2023-02-07 14:51:35',1),(337969868507185158,600105109,805,'2023-02-07 14:51:35',1),(337969868507185159,600105109,395,'2023-02-07 14:51:35',1),(337969868507185160,600105110,806,'2023-02-07 14:51:35',1),(337969868507185161,600105110,397,'2023-02-07 14:51:35',1),(337969868507185162,600105110,395,'2023-02-07 14:51:35',1),(337969868507185163,600105111,401,'2023-02-07 14:51:35',1),(337969868507185164,600105111,400,'2023-02-07 14:51:35',1),(337969868507185165,600105111,395,'2023-02-07 14:51:35',1),(337969868507185166,600105112,702,'2023-02-07 14:51:35',1),(337969868507185167,600105112,703,'2023-02-07 14:51:35',1),(337969868507185168,600105112,395,'2023-02-07 14:51:35',1),(337969868507185169,600105113,702,'2023-02-07 14:51:35',1),(337969868507185170,600105113,704,'2023-02-07 14:51:35',1),(337969868507185171,600105113,395,'2023-02-07 14:51:35',1),(337969868507185172,600105114,702,'2023-02-07 14:51:35',1),(337969868507185173,600105114,705,'2023-02-07 14:51:35',1),(337969868507185174,600105114,395,'2023-02-07 14:51:35',1),(337969868507185175,600105115,404,'2023-02-07 14:51:35',1),(337969868507185176,600119101,754,'2023-02-07 14:51:35',1),(337969868507185177,600119101,759,'2023-02-07 14:51:35',1),(337969868507185178,600119101,757,'2023-02-07 14:51:35',1),(337969868507185179,600119101,756,'2023-02-07 14:51:35',1),(337969868507185180,600119101,752,'2023-02-07 14:51:35',1),(337969868507185181,600119101,760,'2023-02-07 14:51:35',1),(337969868507185182,600119101,755,'2023-02-07 14:51:35',1),(337969868507185183,600119101,758,'2023-02-07 14:51:35',1),(337969868507185184,600119101,753,'2023-02-07 14:51:35',1),(337969868507185185,600119102,761,'2023-02-07 14:51:35',1),(337969868507185186,600119102,762,'2023-02-07 14:51:35',1),(337969868507185187,600119103,739,'2023-02-07 14:51:35',1),(337969868507185188,600119103,742,'2023-02-07 14:51:35',1),(337969868507185189,600119103,737,'2023-02-07 14:51:35',1),(337969868507185190,600119103,735,'2023-02-07 14:51:35',1),(337969868507185191,600119103,738,'2023-02-07 14:51:35',1),(337969868507185192,600119103,740,'2023-02-07 14:51:35',1),(337969868507185193,600119103,741,'2023-02-07 14:51:35',1),(337969868507185194,600119103,736,'2023-02-07 14:51:35',1),(337969868507185195,600119104,746,'2023-02-07 14:51:35',1),(337969868507185196,600119104,747,'2023-02-07 14:51:35',1),(337969868507185197,600119104,748,'2023-02-07 14:51:35',1),(337969868507185198,600119104,745,'2023-02-07 14:51:35',1),(337969868507185199,600119104,743,'2023-02-07 14:51:35',1),(337969868507185200,600119104,749,'2023-02-07 14:51:35',1),(337969868507185201,600119104,750,'2023-02-07 14:51:35',1),(337969868507185202,600119104,744,'2023-02-07 14:51:35',1),(337969868507185203,600119105,820,'2023-02-07 14:51:35',1),(337969868507185204,600119105,825,'2023-02-07 14:51:35',1),(337969868507185205,600119105,822,'2023-02-07 14:51:35',1),(337969868507185206,600119105,823,'2023-02-07 14:51:35',1),(337969868507185207,600119105,818,'2023-02-07 14:51:35',1),(337969868507185208,600119105,824,'2023-02-07 14:51:35',1),(337969868507185209,600119105,819,'2023-02-07 14:51:35',1),(337969868507185210,600119105,816,'2023-02-07 14:51:35',1),(337969868507185211,600119105,821,'2023-02-07 14:51:35',1),(337969868507185212,600119105,817,'2023-02-07 14:51:35',1),(337969868507185213,600119106,813,'2023-02-07 14:51:35',1),(337969868507185214,600119106,812,'2023-02-07 14:51:35',1),(337969868507185215,600119106,811,'2023-02-07 14:51:35',1),(337969868507185216,600119106,815,'2023-02-07 14:51:35',1),(337969868507185217,600119106,814,'2023-02-07 14:51:35',1),(337969868507185218,600119106,809,'2023-02-07 14:51:35',1),(337969868507185219,600119106,810,'2023-02-07 14:51:35',1),(337969868507185220,600119107,751,'2023-02-07 14:51:35',1),(338374274795962368,100100100,851,'2023-02-08 17:38:33',1),(338374274795962369,100100101,851,'2023-02-08 17:38:33',1),(338612062590074880,200105109,854,'2023-02-09 09:23:26',1),(338612062590074881,200105109,595,'2023-02-09 09:23:26',1),(338612062590074882,200105109,358,'2023-02-09 09:23:26',1),(338612062590074883,200105110,853,'2023-02-09 09:23:26',1),(338612062590074884,200105110,595,'2023-02-09 09:23:26',1),(338612062590074885,200105110,358,'2023-02-09 09:23:26',1),(338612062590074886,200125100,836,'2023-02-09 09:23:26',1),(338612062590074887,200125100,833,'2023-02-09 09:23:26',1),(338612062590074888,200125100,834,'2023-02-09 09:23:26',1),(338612062590074889,200125100,840,'2023-02-09 09:23:26',1),(338612062590074890,200125100,839,'2023-02-09 09:23:26',1),(338612062590074891,200125100,838,'2023-02-09 09:23:26',1),(338612062590074892,200125100,837,'2023-02-09 09:23:26',1),(338612062590074893,200125100,835,'2023-02-09 09:23:26',1),(338612062590074894,200125101,843,'2023-02-09 09:23:26',1),(338612062590074895,200125101,833,'2023-02-09 09:23:26',1),(338612062590074896,200125101,841,'2023-02-09 09:23:26',1),(338612062590074897,200125101,847,'2023-02-09 09:23:26',1),(338612062590074898,200125101,846,'2023-02-09 09:23:26',1),(338612062590074899,200125101,845,'2023-02-09 09:23:26',1),(338612062590074900,200125101,844,'2023-02-09 09:23:26',1),(338612062590074901,200125101,842,'2023-02-09 09:23:26',1),(338612062590074902,200125102,833,'2023-02-09 09:23:26',1),(338612062590074903,200125102,848,'2023-02-09 09:23:26',1),(338612062590074904,200125103,833,'2023-02-09 09:23:26',1),(338612062590074905,200125103,849,'2023-02-09 09:23:26',1),(340494685822255104,200112100,855,'2023-02-14 14:04:19',1),(340494685822255105,200112101,856,'2023-02-14 14:04:19',1),(348787386542194688,100100102,393,'2023-03-09 11:16:33',1),(348787386542194689,100100102,852,'2023-03-09 11:16:33',1),(356134791194607616,200113103,385,'2023-03-29 17:52:30',1),(356134791194607617,200113103,504,'2023-03-29 17:52:30',1),(356134791194607618,200113103,501,'2023-03-29 17:52:30',1),(356134791194607619,200113103,502,'2023-03-29 17:52:30',1),(356134791194607620,200113103,503,'2023-03-29 17:52:30',1),(356134791194607621,200113103,124,'2023-03-29 17:52:30',1),(356134791194607622,200113103,500,'2023-03-29 17:52:30',1),(356134791194607623,200113103,499,'2023-03-29 17:52:30',1),(356134791194607624,200113103,331,'2023-03-29 17:52:30',1),(356134791194607625,200113104,386,'2023-03-29 17:52:30',1),(356134791194607626,200113104,502,'2023-03-29 17:52:30',1),(356134791194607627,200113104,503,'2023-03-29 17:52:30',1),(356134791194607628,200113104,124,'2023-03-29 17:52:30',1),(356134791194607629,200113104,238,'2023-03-29 17:52:30',1),(356134791194607630,200113104,499,'2023-03-29 17:52:30',1),(356134791194607631,200113104,125,'2023-03-29 17:52:30',1),(356134791194607632,402100100,857,'2023-03-29 17:52:30',1),(361180945728929792,200120100,858,'2023-04-12 16:04:07',1),(361180945728929793,200120100,859,'2023-04-12 16:04:07',1),(361180945728929794,200120100,861,'2023-04-12 16:04:07',1),(361180945728929795,200120100,860,'2023-04-12 16:04:07',1),(361180945728929796,200120100,862,'2023-04-12 16:04:07',1),(361180945728929797,200120100,863,'2023-04-12 16:04:07',1),(361180945728929798,200120100,864,'2023-04-12 16:04:07',1),(365178690088599552,600123100,865,'2023-04-23 16:49:44',1),(369178909242687488,403100100,869,'2023-05-04 17:45:10',1),(369178909242687489,403100100,868,'2023-05-04 17:45:10',1),(369178909242687490,403100100,870,'2023-05-04 17:45:10',1),(369178909242687491,403100100,867,'2023-05-04 17:45:10',1),(369178909242687492,403100100,871,'2023-05-04 17:45:10',1),(369537842884771840,200120100,872,'2023-05-05 17:31:27',1),(374268808632598528,405107100,866,'2023-05-18 18:50:37',1),(374268808632598529,409100100,875,'2023-05-18 18:50:37',1),(374268808632598530,409100100,878,'2023-05-18 18:50:37',1),(374268808632598531,409100100,876,'2023-05-18 18:50:37',1),(374268808632598532,409100100,877,'2023-05-18 18:50:37',1),(374268808632598533,409100100,874,'2023-05-18 18:50:37',1),(374268808632598534,409100100,873,'2023-05-18 18:50:37',1),(374268808632598535,410101100,881,'2023-05-18 18:50:37',1),(374268808632598536,410105100,882,'2023-05-18 18:50:37',1),(374268808632598537,410105100,884,'2023-05-18 18:50:37',1),(374268808632598538,410105100,885,'2023-05-18 18:50:37',1),(374268808632598539,410105100,886,'2023-05-18 18:50:37',1),(374268808632598540,410105100,883,'2023-05-18 18:50:37',1),(374268808632598541,700100100,880,'2023-05-18 18:50:37',1),(374268808632598542,700100101,879,'2023-05-18 18:50:37',1),(375599976208531456,415100100,887,'2023-05-22 11:00:12',1),(375599976208531457,415100100,888,'2023-05-22 11:00:12',1),(375599976208531458,415100100,889,'2023-05-22 11:00:12',1),(384042253369737216,200132100,897,'2023-06-14 18:06:48',1),(384042253373931520,200132100,899,'2023-06-14 18:06:48',1),(384042253373931521,200132100,898,'2023-06-14 18:06:48',1),(384042253373931522,200132100,900,'2023-06-14 18:06:48',1),(384042253373931523,200132100,894,'2023-06-14 18:06:48',1),(384042253373931524,200132100,895,'2023-06-14 18:06:48',1),(384042253373931525,200132100,893,'2023-06-14 18:06:48',1),(384042253373931526,200132100,890,'2023-06-14 18:06:48',1),(384042253373931527,200132100,891,'2023-06-14 18:06:48',1),(384042253373931528,200132100,896,'2023-06-14 18:06:48',1),(384042253373931529,200132100,892,'2023-06-14 18:06:48',1),(384042253373931530,200132101,905,'2023-06-14 18:06:48',1),(384042253373931531,200132101,904,'2023-06-14 18:06:48',1),(384042253373931532,200132101,890,'2023-06-14 18:06:48',1),(384042253373931533,200132101,901,'2023-06-14 18:06:48',1),(384042253373931534,200132101,902,'2023-06-14 18:06:48',1),(384042253373931535,200132101,903,'2023-06-14 18:06:48',1),(384042253373931536,200132102,910,'2023-06-14 18:06:48',1),(384042253373931537,200132102,909,'2023-06-14 18:06:48',1),(384042253373931538,200132102,890,'2023-06-14 18:06:48',1),(384042253373931539,200132102,906,'2023-06-14 18:06:48',1),(384042253373931540,200132102,908,'2023-06-14 18:06:48',1),(384042253373931541,200132102,907,'2023-06-14 18:06:48',1),(384042253373931542,200132103,890,'2023-06-14 18:06:48',1),(384042253373931543,200132103,911,'2023-06-14 18:06:48',1),(384042253373931544,200132104,890,'2023-06-14 18:06:48',1),(384042253373931545,200132104,912,'2023-06-14 18:06:48',1),(384042253373931546,411100100,897,'2023-06-14 18:06:48',1),(384042253373931547,411100100,899,'2023-06-14 18:06:48',1),(384042253373931548,411100100,898,'2023-06-14 18:06:48',1),(384042253373931549,411100100,900,'2023-06-14 18:06:48',1),(384042253373931550,411100100,894,'2023-06-14 18:06:48',1),(384042253373931551,411100100,895,'2023-06-14 18:06:48',1),(384042253373931552,411100100,893,'2023-06-14 18:06:48',1),(384042253373931553,411100100,890,'2023-06-14 18:06:48',1),(384042253373931554,411100100,891,'2023-06-14 18:06:48',1),(384042253373931555,411100100,896,'2023-06-14 18:06:48',1),(384042253373931556,411100100,892,'2023-06-14 18:06:48',1),(384755202439380992,800100100,913,'2023-06-16 17:19:48',1),(384755202443575296,800100100,914,'2023-06-16 17:19:48',1),(384755202443575297,800100100,915,'2023-06-16 17:19:48',1),(384755202443575298,800100101,913,'2023-06-16 17:19:48',1),(384755202443575299,800100101,914,'2023-06-16 17:19:48',1),(384755202443575300,800100101,916,'2023-06-16 17:19:48',1),(384755202443575301,800100102,913,'2023-06-16 17:19:48',1),(384755202443575302,800100102,914,'2023-06-16 17:19:48',1),(384755202443575303,800100102,917,'2023-06-16 17:19:48',1),(384755202443575304,800101100,913,'2023-06-16 17:19:48',1),(384755202443575305,800101100,918,'2023-06-16 17:19:48',1),(384755202443575306,800102100,913,'2023-06-16 17:19:48',1),(384755202443575307,800102100,919,'2023-06-16 17:19:48',1),(384755202443575308,800102100,920,'2023-06-16 17:19:48',1),(384755202443575309,800102101,913,'2023-06-16 17:19:48',1),(384755202443575310,800102101,919,'2023-06-16 17:19:48',1),(384755202443575311,800102101,921,'2023-06-16 17:19:48',1),(406485326418804736,200114102,699,'2023-08-15 16:27:33',1),(406485326418804737,200114102,600,'2023-08-15 16:27:33',1),(406485326418804738,200114102,599,'2023-08-15 16:27:33',1),(406485326418804739,200114102,654,'2023-08-15 16:27:33',1),(406485326418804740,200114102,684,'2023-08-15 16:27:33',1),(406485326418804741,200114102,604,'2023-08-15 16:27:33',1),(406485326418804742,200114102,673,'2023-08-15 16:27:33',1),(406485326418804743,200114102,801,'2023-08-15 16:27:33',1),(406485326418804744,200114102,597,'2023-08-15 16:27:33',1),(406485326418804745,200114102,595,'2023-08-15 16:27:33',1),(406485326418804746,200114102,598,'2023-08-15 16:27:33',1),(406485326418804747,200114102,853,'2023-08-15 16:27:33',1),(406485326418804748,200114102,653,'2023-08-15 16:27:33',1),(406485326418804749,200114102,683,'2023-08-15 16:27:33',1),(406485326418804750,200114102,603,'2023-08-15 16:27:33',1),(406485326418804751,200114102,854,'2023-08-15 16:27:33',1),(406485326418804752,200114102,672,'2023-08-15 16:27:33',1),(406485326418804753,200114102,800,'2023-08-15 16:27:33',1),(406485326418804754,200114102,596,'2023-08-15 16:27:33',1),(406485326418804755,200114102,358,'2023-08-15 16:27:33',1),(411181185038286848,200105113,951,'2023-08-28 15:27:13',1),(411181185038286849,200105113,595,'2023-08-28 15:27:13',1),(411181185038286850,200105113,358,'2023-08-28 15:27:13',1),(416522721292451840,200105111,595,'2023-09-12 09:12:35',1),(416522721292451841,200105111,358,'2023-09-12 09:12:35',1),(416522721292451842,200105112,595,'2023-09-12 09:12:35',1),(416522721292451843,200105112,358,'2023-09-12 09:12:35',1),(416523890075369472,200105111,954,'2023-09-12 09:19:51',1),(416523890075369475,200105112,958,'2023-09-12 09:19:51',1),(416523890075369476,200105112,957,'2023-09-12 09:19:51',1),(416523890075369477,200105112,956,'2023-09-12 09:19:51',1),(416523890075369478,200105112,955,'2023-09-12 09:19:51',1),(416646101438038016,417000000,950,'2023-09-12 17:22:51',1),(416646101438038017,417100100,943,'2023-09-12 17:22:51',1),(416646101438038018,417100100,942,'2023-09-12 17:22:51',1),(416646101438038019,417100100,941,'2023-09-12 17:22:51',1),(416646101438038020,417100100,939,'2023-09-12 17:22:51',1),(416646101438038021,417100100,940,'2023-09-12 17:22:51',1),(416646101438038022,417101100,948,'2023-09-12 17:22:51',1),(416646101438038023,417101100,949,'2023-09-12 17:22:51',1),(416646101438038024,417101100,947,'2023-09-12 17:22:51',1),(416646101438038025,417102100,946,'2023-09-12 17:22:51',1),(416646101438038026,417102100,945,'2023-09-12 17:22:51',1),(422094075662565376,200116100,959,'2023-09-27 18:11:09',1),(426308163183181824,417100100,944,'2023-10-09 09:16:26',1),(439747375353036800,600124100,961,'2023-11-15 11:19:04',1),(444919681891303424,200104109,358,'2023-11-29 17:51:58',1),(444919681891303425,200104109,587,'2023-11-29 17:51:58',1),(444919681891303426,200104109,953,'2023-11-29 17:51:58',1),(444919681891303427,200104109,963,'2023-11-29 17:51:58',1),(444919681891303428,200104110,358,'2023-11-29 17:51:58',1),(444919681891303429,200104110,587,'2023-11-29 17:51:58',1),(444919681891303430,200104110,962,'2023-11-29 17:51:58',1),(457945391170715648,200104112,597,'2024-01-04 16:31:29',1),(457945391170715649,200104112,595,'2024-01-04 16:31:29',1),(457945391170715650,200104112,596,'2024-01-04 16:31:29',1),(457945391170715651,200104112,358,'2024-01-04 16:31:29',1),(475700810917609472,200103100,358,'2024-02-22 16:25:11',1),(475700810917609473,200104111,358,'2024-02-22 16:25:11',1),(475712813774143488,200104111,964,'2024-02-22 17:12:53',1),(475966310461472768,200105114,965,'2024-02-23 10:00:11',1),(489804388068229120,410106100,882,'2024-04-01 14:27:46',1),(489804388068229121,410106100,966,'2024-04-01 14:27:46',1),(510764923524087808,403100100,970,'2024-05-29 10:37:27',1),(516663651729670144,200105115,971,'2024-06-14 17:16:53',1),(516663651729670145,200105115,358,'2024-06-14 17:16:53',1),(516663651729670146,200105115,595,'2024-06-14 17:16:53',1),(518133085713203200,200103100,359,'2024-06-18 18:35:54',1),(518133085713203201,200103100,455,'2024-06-18 18:35:54',1),(518133085713203202,200103100,521,'2024-06-18 18:35:54',1),(518133085713203203,200103100,581,'2024-06-18 18:35:54',1),(518133085713203204,200103100,582,'2024-06-18 18:35:54',1),(518133085713203205,200103100,583,'2024-06-18 18:35:54',1),(518133085713203206,200103100,584,'2024-06-18 18:35:54',1),(518133085713203207,200103100,585,'2024-06-18 18:35:54',1),(518133085713203208,200103100,586,'2024-06-18 18:35:54',1),(518133085713203209,200103100,587,'2024-06-18 18:35:54',1),(518133085713203210,200103100,588,'2024-06-18 18:35:54',1),(518133085713203211,200103100,589,'2024-06-18 18:35:54',1),(518133085713203212,200103100,590,'2024-06-18 18:35:54',1),(518133085713203213,200103100,591,'2024-06-18 18:35:54',1),(518133085713203214,200103100,592,'2024-06-18 18:35:54',1),(518133085713203215,200103100,593,'2024-06-18 18:35:54',1),(518133085713203216,200103100,594,'2024-06-18 18:35:54',1),(518133085713203217,200103100,953,'2024-06-18 18:35:54',1),(518133085713203218,200103100,963,'2024-06-18 18:35:54',1),(518133085713203246,200103100,605,'2024-06-18 18:35:54',1),(518133085713203247,200103100,606,'2024-06-18 18:35:54',1),(518133085713203248,200103100,607,'2024-06-18 18:35:54',1),(518133085713203249,200103100,608,'2024-06-18 18:35:54',1),(518133085713203250,200103100,652,'2024-06-18 18:35:54',1),(518133085713203251,200103100,670,'2024-06-18 18:35:54',1),(518133085713203252,200103100,685,'2024-06-18 18:35:54',1),(518133085713203253,200103100,686,'2024-06-18 18:35:54',1),(518133085713203254,200103100,826,'2024-06-18 18:35:54',1),(518133085713203255,200103100,952,'2024-06-18 18:35:54',1),(518133085713203256,200103100,962,'2024-06-18 18:35:54',1),(518133085713203257,200103100,964,'2024-06-18 18:35:54',1),(519191367752089600,200105116,595,'2024-06-21 16:41:08',1),(519191367752089601,200105116,983,'2024-06-21 16:41:08',1),(519191367752089602,200105116,358,'2024-06-21 16:41:08',1),(519191367752089603,200105117,595,'2024-06-21 16:41:08',1),(519191367752089604,200105117,984,'2024-06-21 16:41:08',1),(519191367752089605,200105117,358,'2024-06-21 16:41:08',1),(519191367752089606,200105118,595,'2024-06-21 16:41:08',1),(519191367752089607,200105118,985,'2024-06-21 16:41:08',1),(519191367752089608,200105118,358,'2024-06-21 16:41:08',1),(519191367752089609,200105119,595,'2024-06-21 16:41:08',1),(519191367752089610,200105119,986,'2024-06-21 16:41:08',1),(519191367752089611,200105119,358,'2024-06-21 16:41:08',1),(524158028961153024,200105101,982,'2024-07-05 09:36:52',1),(528508099931668480,200102102,828,'2024-07-17 09:42:30',1),(528987684697669632,200134100,987,'2024-07-18 17:28:12',1),(528987684697669633,200134100,990,'2024-07-18 17:28:12',1),(528987684697669634,200134100,988,'2024-07-18 17:28:12',1),(528987684697669635,200134100,991,'2024-07-18 17:28:12',1),(528987684697669636,200134100,992,'2024-07-18 17:28:12',1),(528987684697669637,200134100,989,'2024-07-18 17:28:12',1),(528988507171323904,416100100,993,'2024-07-18 17:31:28',1),(528988507171323905,416100100,1011,'2024-07-18 17:31:28',1),(528988507171323906,416101100,993,'2024-07-18 17:31:28',1),(528988507171323907,416101100,1000,'2024-07-18 17:31:28',1),(528988507171323908,416101100,1003,'2024-07-18 17:31:28',1),(528988507171323909,416101101,993,'2024-07-18 17:31:28',1),(528988507171323910,416101101,1000,'2024-07-18 17:31:28',1),(528988507171323911,416101101,1004,'2024-07-18 17:31:28',1),(528988507171323912,416101102,993,'2024-07-18 17:31:28',1),(528988507171323913,416101102,1000,'2024-07-18 17:31:28',1),(528988507171323914,416101102,1001,'2024-07-18 17:31:28',1),(528988507171323915,416101103,993,'2024-07-18 17:31:28',1),(528988507171323916,416101103,1000,'2024-07-18 17:31:28',1),(528988507171323917,416101103,1002,'2024-07-18 17:31:28',1),(528988507171323918,416102100,993,'2024-07-18 17:31:28',1),(528988507171323919,416102100,1005,'2024-07-18 17:31:28',1),(528988507171323920,416102100,1007,'2024-07-18 17:31:28',1),(528988507171323921,416102100,1009,'2024-07-18 17:31:28',1),(528988507171323922,416102100,1008,'2024-07-18 17:31:28',1),(528988507171323923,416102101,993,'2024-07-18 17:31:28',1),(528988507171323924,416102101,1005,'2024-07-18 17:31:28',1),(528988507171323925,416102101,1006,'2024-07-18 17:31:28',1),(528988507171323926,416102102,993,'2024-07-18 17:31:28',1),(528988507171323927,416102102,1005,'2024-07-18 17:31:28',1),(528988507171323928,416102102,1010,'2024-07-18 17:31:28',1),(528988507171323929,416103100,996,'2024-07-18 17:31:28',1),(528988507171323930,416103100,993,'2024-07-18 17:31:28',1),(528988507171323931,416103100,995,'2024-07-18 17:31:28',1),(528988507171323932,416103101,993,'2024-07-18 17:31:28',1),(528988507171323933,416103101,997,'2024-07-18 17:31:28',1),(528988507171323934,416103101,995,'2024-07-18 17:31:28',1),(528988507171323935,416103102,998,'2024-07-18 17:31:28',1),(528988507171323936,416103102,993,'2024-07-18 17:31:28',1),(528988507171323937,416103102,995,'2024-07-18 17:31:28',1),(528988507171323938,416103103,999,'2024-07-18 17:31:28',1),(528988507171323939,416103103,993,'2024-07-18 17:31:28',1),(528988507171323940,416103103,995,'2024-07-18 17:31:28',1),(529005287712489473,416103104,993,'2024-07-18 18:38:09',1),(529223170178678784,416103104,994,'2024-07-19 09:03:56',1),(541562392172560384,200103100,1013,'2024-08-22 10:15:36',1),(541922985302163456,200113105,1012,'2024-08-23 10:08:28',1),(541922985302163457,200113105,124,'2024-08-23 10:08:28',1),(541922985302163458,200113105,125,'2024-08-23 10:08:28',1),(541933475491348480,409100100,511,'2024-08-23 10:50:09',1),(541933475491348481,409100100,1014,'2024-08-23 10:50:09',1),(541933475491348482,409100100,1015,'2024-08-23 10:50:09',1),(541933475491348483,409100100,1016,'2024-08-23 10:50:09',1),(543392073337667584,416102102,1017,'2024-08-27 11:26:06',89730635001757696),(543392073337667585,416102102,1018,'2024-08-27 11:26:06',89730635001757696),(543392073337667586,416102102,1019,'2024-08-27 11:26:06',89730635001757696),(543392073337667587,416102102,1020,'2024-08-27 11:26:06',89730635001757696),(543392073337667588,416102102,1021,'2024-08-27 11:26:06',89730635001757696),(548442269443424256,200117102,563,'2024-09-10 09:53:46',1),(548442269443424257,200117102,1022,'2024-09-10 09:53:46',1),(548442269443424258,200117102,1023,'2024-09-10 09:53:46',1),(560155362232893440,410100100,1029,'2024-10-12 17:37:25',1),(560155362232893441,410100100,1028,'2024-10-12 17:37:25',1),(560155362232893442,410100100,1033,'2024-10-12 17:37:25',1),(560155362232893443,410100100,1030,'2024-10-12 17:37:25',1),(560155362232893444,410100100,1026,'2024-10-12 17:37:25',1),(560155362232893445,410100100,1027,'2024-10-12 17:37:25',1),(560155362232893446,410100100,1031,'2024-10-12 17:37:25',1),(560155362232893447,410100100,1034,'2024-10-12 17:37:25',1),(560155362232893448,410100100,1024,'2024-10-12 17:37:25',1),(571352556828229632,200104113,1035,'2024-11-12 15:11:04',1),(571352556828229633,200104113,358,'2024-11-12 15:11:04',1),(571352556828229634,200104113,587,'2024-11-12 15:11:04',1),(571352556828229635,200104113,588,'2024-11-12 15:11:04',1),(571352657759961088,200104114,1036,'2024-11-12 15:11:28',1),(571352657759961089,200104114,358,'2024-11-12 15:11:28',1),(571352657759961090,200104114,584,'2024-11-12 15:11:28',1); /*!40000 ALTER TABLE `sys_group_resource_mapping` ENABLE KEYS */; UNLOCK TABLES; @@ -82,7 +82,7 @@ UNLOCK TABLES; LOCK TABLES `sys_resource_group` WRITE; /*!40000 ALTER TABLE `sys_resource_group` DISABLE KEYS */; -INSERT INTO `sys_resource_group` VALUES (100000000,'sceen','{\"zh_TW\":\"通用版數據大屏\",\"en_US\":\"General version data screen\",\"zh_CN\":\"通用版数据大屏\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(100100000,'sceen_item','{\"zh_TW\":\"數據大屏\",\"en_US\":\"Large screen of data\",\"zh_CN\":\"数据大屏\"}',100000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(100100100,'sceen_item_view','{\"zh_TW\":\"基礎信息查看\",\"en_US\":\"Basic information view\",\"zh_CN\":\"基础信息查看\"}',100100000,NULL,_binary '\0',_binary '\0',_binary '',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(100100101,'sceen_item_statistic','{\"zh_TW\":\"平臺使用情況\",\"en_US\":\"Platform usage statistics\",\"zh_CN\":\"平台使用情况\"}',100100000,'100100100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200000000,'flight_service','{\"zh_TW\":\"飛行服務\",\"en_US\":\"flight service\",\"zh_CN\":\"飞行服务\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200100000,'flight_service_user','{\"zh_TW\":\"用戶管理\",\"en_US\":\"User management\",\"zh_CN\":\"用户管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200100100,'flight_service_user_view','{\"zh_TW\":\"用戶查看\",\"en_US\":\"User view\",\"zh_CN\":\"用户查看\"}',200100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200100101,'flight_service_user_manage','{\"zh_TW\":\"用戶變更\",\"en_US\":\"User change\",\"zh_CN\":\"用户变更\"}',200100000,'200100100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200101000,'flight_service_role','{\"zh_TW\":\"角色管理\",\"en_US\":\"Role management\",\"zh_CN\":\"角色管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200101100,'flight_service_role_view','{\"zh_TW\":\"角色查看\",\"en_US\":\"Role view\",\"zh_CN\":\"角色查看\"}',200101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200101101,'flight_service_role_manage','{\"zh_TW\":\"角色變更\",\"en_US\":\"Role change\",\"zh_CN\":\"角色变更\"}',200101000,'200101100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200102000,'flight_service_company','{\"zh_TW\":\"組織管理\",\"en_US\":\"Company Management\",\"zh_CN\":\"组织管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200102100,'flight_service_company_view','{\"zh_TW\":\"組織查看\",\"en_US\":\"Company view\",\"zh_CN\":\"组织查看\"}',200102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200102101,'flight_service_company_manage','{\"zh_TW\":\"組織變更\",\"en_US\":\"Company change\",\"zh_CN\":\"组织变更\"}',200102000,'200102100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200102102,'flight_service_company_map','{\"zh_TW\":\"地圖設置\",\"en_US\":\"Map Setting\",\"zh_CN\":\"地图设置\"}',200102000,'200102100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200103000,'flight_service_global_monitor','{\"zh_TW\":\"飛行監視-全局監視\",\"en_US\":\"Global Surveillance\",\"zh_CN\":\"飞行监视-全局监视\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200103100,'flight_service_global_monitor_view','{\"zh_TW\":\"全局監視查看\",\"en_US\":\"Global monitoring view\",\"zh_CN\":\"全局监视查看\"}',200103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200103101,'flight_service_global_monitor_dev_find','{\"zh_TW\":\"查找設備\",\"en_US\":\"Find a device\",\"zh_CN\":\"查找设备\"}',200103000,'200103100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200103102,'flight_service_global_monitor_takeoff','{\"zh_TW\":\"一鍵起飛\",\"en_US\":\"One key take off\",\"zh_CN\":\"一键起飞\"}',200103000,'200103100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200103103,'flight_service_global_monitor_control','{\"zh_TW\":\"多機控制\",\"en_US\":\"Multi-machine control\",\"zh_CN\":\"多机控制\"}',200103000,'200103104',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200103104,'flight_service_global_monitor_item','{\"zh_TW\":\"多機監視\",\"en_US\":\"Multi-machine monitoring\",\"zh_CN\":\"多机监视\"}',200103000,'200103100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104000,'flight_service_stand_alone_monitor','{\"zh_TW\":\"飛行監視-單機監視\",\"en_US\":\"Standalone Surveillance\",\"zh_CN\":\"飞行监视-单机监视\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104100,'flight_service_stand_alone_monitor_view','{\"zh_TW\":\"單機監視查看\",\"en_US\":\"Stand-alone monitoring and viewing\",\"zh_CN\":\"单机监视查看\"}',200104000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104101,'flight_service_stand_alone_monitor_stk','{\"zh_TW\":\"基礎控製\",\"en_US\":\"Basic control\",\"zh_CN\":\"基础控制\"}',200104000,'200104100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104102,'flight_service_stand_alone_monitor_sms','{\"zh_TW\":\"發送短信分享視頻\",\"en_US\":\"Send SMS to share video\",\"zh_CN\":\"发送短信分享视频\"}',200104000,'200104100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104103,'flight_service_stand_alone_monitor_bperm','{\"zh_TW\":\"搖桿控製\",\"en_US\":\"joystick control\",\"zh_CN\":\"摇杆控制\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104104,'flight_service_stand_alone_monitor_camera','{\"zh_TW\":\"攝像頭控製\",\"en_US\":\"camera control\",\"zh_CN\":\"摄像头控制\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104105,'flight_service_stand_alone_monitor_thermal','{\"zh_TW\":\"熱成像功能\",\"en_US\":\"Thermal imaging capabilities\",\"zh_CN\":\"热成像功能\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104106,'flight_service_stand_alone_monitor_megaphone','{\"zh_TW\":\"喊話器\",\"en_US\":\"megaphone\",\"zh_CN\":\"喊话器\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104107,'flight_service_stand_alone_monitor_agricultural','{\"zh_TW\":\"農業器具\",\"en_US\":\"agricultural equipment\",\"zh_CN\":\"农业器具\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104108,'flight_service_stand_alone_monitor_control_manage','{\"zh_TW\":\"控制权移交\",\"en_US\":\"Control Manage\",\"zh_CN\":\"控制权移交\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104109,'flight_service_stand_alone_monitor_gas','{\"zh_TW\":\"氣體檢測儀\",\"en_US\":\"Gas detector\",\"zh_CN\":\"气体检测仪\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104110,'flight_service_stand_alone_monitor_guide','{\"zh_TW\":\"單機監視新手引導\",\"en_US\":\"Guidance\",\"zh_CN\":\"单机监视新手引导\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104111,'flight_service_stand_alone_monitor_network_link','{\"zh_TW\":\"網絡連結\",\"en_US\":\"Network link\",\"zh_CN\":\"网络链路\"}',200104000,'200104100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200104112,'flight_service_stand_alone_monitor_video_spell','{\"zh_TW\":\"視頻快拼\",\"en_US\":\"Video Snap\",\"zh_CN\":\"视频快拼\"}',200104000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105000,'flight_service_assistance','{\"zh_TW\":\"AI\",\"en_US\":\"AI\",\"zh_CN\":\"AI\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105100,'flight_service_assistance_vehicle_statstic','{\"zh_TW\":\"車流量統計\",\"en_US\":\"Traffic Statistics\",\"zh_CN\":\"车流量统计\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105101,'flight_service_assistance_vehicle_trace','{\"zh_TW\":\"車輛跟踪\",\"en_US\":\"vehicle tracking\",\"zh_CN\":\"车辆跟踪\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105102,'flight_service_assistance_vehicle_identify','{\"zh_TW\":\"車牌查找\",\"en_US\":\"license plate lookup\",\"zh_CN\":\"车牌查找\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105103,'flight_service_assistance_human_statistic','{\"zh_TW\":\"人流量統計\",\"en_US\":\"People Statistics\",\"zh_CN\":\"人流量统计\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105105,'flight_service_assistance_send_sms','{\"zh_TW\":\"發送短信\",\"en_US\":\"Send SMS\",\"zh_CN\":\"发送短信\"}',200105000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105106,'flight_service_assistance_ai_fire','{\"zh_TW\":\"火情識別\",\"en_US\":\"Fire recognition\",\"zh_CN\":\"火情识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105107,'flight_service_assistance_ai_smog','{\"zh_TW\":\"煙霧識別\",\"en_US\":\"Smoke recognition\",\"zh_CN\":\"烟雾识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105108,'flight_service_assistance_ai_transmission','{\"zh_TW\":\"輸電識別\",\"en_US\":\"Transmission identification\",\"zh_CN\":\"输电识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105109,'flight_service_assistance_ai_helmet','{\"zh_TW\":\"安全帽識別\",\"en_US\":\"Helmet Identification\",\"zh_CN\":\"安全帽识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105110,'flight_service_assistance_ai_excavator','{\"zh_TW\":\"挖掘機識別\",\"en_US\":\"Excavator Identification\",\"zh_CN\":\"挖掘机识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105111,'flight_service_assistance_ai_crowd','{\"zh_TW\":\"人群密集检测\",\"en_US\":\"Crowd density\",\"zh_CN\":\"人群密集检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105112,'flight_service_assistance_ai_highway','{\"zh_TW\":\"高速路檢測\",\"en_US\":\"Highways\",\"zh_CN\":\"高速路检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105113,'flight_service_assistance_ai_yaw','{\"zh_TW\":\"偏航預警\",\"en_US\":\"Yaw warning\",\"zh_CN\":\"偏航预警\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105114,'flight_service_assistance_ai_peoveh','{\"zh_TW\":\"人車識別\",\"en_US\":\"People and vehicles recognition\",\"zh_CN\":\"人车识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105115,'flight_service_assistance_ai_perimeter_intrusion','{\"zh_TW\":\"周界入侵告警\",\"en_US\":\"Perimeter Intrusion Alarm\",\"zh_CN\":\"周界入侵告警\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105116,'flight_service_assistance_ai_drone_tracking','{\"zh_TW\":\"無人機跟蹤\",\"en_US\":\"Drone Tracking\",\"zh_CN\":\"无人机跟踪\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105117,'flight_service_assistance_ai_infrared_detection','{\"zh_TW\":\"紅外行人檢測\",\"en_US\":\"Infrared Pedestrian Detection\",\"zh_CN\":\"红外行人检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105118,'flight_service_assistance_ai_sea_rescue','{\"zh_TW\":\"海上人員救援\",\"en_US\":\"Rescue f People At Sea\",\"zh_CN\":\"海上人员救援\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200105119,'flight_service_assistance_ai_vessel_detection','{\"zh_TW\":\"船只檢測\",\"en_US\":\"Vessel Detection\",\"zh_CN\":\"船只检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200106000,'flight_service_monitor_hangar','{\"zh_TW\":\"飞行监视-機庫操作\",\"en_US\":\"hangar operation\",\"zh_CN\":\"飞行监视-机库操作\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200106100,'flight_service_monitor_hangar_control','{\"zh_TW\":\"機庫控製\",\"en_US\":\"hangar control\",\"zh_CN\":\"机库控制\"}',200106000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200106101,'flight_service_monitor_hangar_emergency_operation','{\"zh_TW\":\"機庫緊急操作\",\"en_US\":\"Hangar Emergency operation\",\"zh_CN\":\"机库紧急操作\"}',200106000,'200106100,200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200107000,'flight_service_fire','{\"zh_TW\":\"飞行监视-火情\",\"en_US\":\"飞行监视-fire\",\"zh_CN\":\"飞行监视-火情\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200107100,'flight_service_fire_manage','{\"zh_TW\":\"火情\",\"en_US\":\"fire\",\"zh_CN\":\"火情\"}',200107000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200109000,'flight_service_airspace','{\"zh_TW\":\"空域相關\",\"en_US\":\"Airspace related\",\"zh_CN\":\"空域相关\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200109100,'flight_service_airspace_manage','{\"zh_TW\":\"空域管理\",\"en_US\":\"airspace management\",\"zh_CN\":\"空域管理\"}',200109000,'200109101,200116100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200109101,'flight_service_airspace_view','{\"zh_TW\":\"空域查看\",\"en_US\":\"Airspace view\",\"zh_CN\":\"空域查看\"}',200109000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200109102,'flight_service_airspace_electronic_fence_view','{\"zh_TW\":\"電子圍欄查看\",\"en_US\":\"Electronic fence view\",\"zh_CN\":\"电子围栏查看\"}',200109000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200109103,'flight_service_airspace_electronic_fence_manage','{\"zh_TW\":\"電子圍欄管理\",\"en_US\":\"Electronic fence management\",\"zh_CN\":\"电子围栏管理\"}',200109000,'200109102',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200110000,'flight_service_plane_load','{\"zh_TW\":\"设备管理-無人機及載荷管理\",\"en_US\":\"UAV and payload manage\",\"zh_CN\":\"设备管理-无人机及载荷管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200110100,'flight_service_plane_load_view','{\"zh_TW\":\"無人機及載荷查看\",\"en_US\":\"UAV and payload view\",\"zh_CN\":\"无人机及载荷查看\"}',200110000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200110101,'flight_service_plane_load_load_manage','{\"zh_TW\":\"載荷管理\",\"en_US\":\"Payload management\",\"zh_CN\":\"载荷管理\"}',200110000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200110102,'flight_service_plane_load_plane_manage','{\"zh_TW\":\"無人機管理\",\"en_US\":\"UAV management\",\"zh_CN\":\"无人机管理\"}',200110000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200111000,'flight_service_hangar','{\"zh_TW\":\"设备管理-機庫管理\",\"en_US\":\"hangar manage\",\"zh_CN\":\"设备管理-机库管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200111100,'flight_service_hangar_manage','{\"zh_TW\":\"機庫管理\",\"en_US\":\"Hangar management\",\"zh_CN\":\"机库管理\"}',200111000,'200111101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200111101,'flight_service_hangar_view','{\"zh_TW\":\"機庫查看\",\"en_US\":\"Hangar View\",\"zh_CN\":\"机库查看\"}',200111000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200112000,'flight_service_house','{\"zh_TW\":\"設備管理-倉庫管理\",\"en_US\":\"Warehouse Management\",\"zh_CN\":\"设备管理-仓库管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200112100,'flight_service_house_manage','{\"zh_TW\":\"倉庫管理\",\"en_US\":\"Warehouse Management\",\"zh_CN\":\"仓库管理\"}',200112000,'200110102,200112101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200112101,'flight_service_house_view','{\"zh_TW\":\"倉庫查看\",\"en_US\":\"Warehouse view\",\"zh_CN\":\"仓库查看\"}',200112000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200113000,'flight_service_airline','{\"zh_TW\":\"航線管理\",\"en_US\":\"Flight route management\",\"zh_CN\":\"航线管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200113100,'flight_service_airline_manage','{\"zh_TW\":\"航線管理\",\"en_US\":\"Flight route management\",\"zh_CN\":\"航线管理\"}',200113000,'200113101,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200113101,'flight_service_airline_view','{\"zh_TW\":\"航線查看\",\"en_US\":\"Flight route view\",\"zh_CN\":\"航线查看\"}',200113000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200113102,'flight_service_airline_three_dimensional','{\"zh_TW\":\"三維功能\",\"en_US\":\"3D function\",\"zh_CN\":\"三维功能\"}',200113000,'200113101,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200113103,'flight_service_airline_kml_manage','{\"zh_TW\":\"KML航線管理\",\"en_US\":\"KML Flight route management\",\"zh_CN\":\"KML航线管理\"}',200113000,'200113104,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200113104,'flight_service_airline_kml_view','{\"zh_TW\":\"KML航線查看\",\"en_US\":\"KML Flight route view\",\"zh_CN\":\"KML航线查看\"}',200113000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200113105,'flight_service_airline_translation_rotation','{\"zh_TW\":\"航线平移旋转\",\"en_US\":\"Route translation and rotation\",\"zh_CN\":\"航线平移旋转\"}',200113000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200114000,'flight_service_mission','{\"zh_TW\":\"作業相關\",\"en_US\":\"Mission related\",\"zh_CN\":\"作业相关\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200114100,'flight_service_mission_manage','{\"zh_TW\":\"作業管理\",\"en_US\":\"Mission management\",\"zh_CN\":\"作业管理\"}',200114000,'200114101,200113101,200110100,200116100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200114101,'flight_service_mission_view','{\"zh_TW\":\"作業查看\",\"en_US\":\"Mission view\",\"zh_CN\":\"作业查看\"}',200114000,'200113101,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200115000,'flight_service_flyer','{\"zh_TW\":\"飛手管理\",\"en_US\":\"Pilot management\",\"zh_CN\":\"飞手管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200115100,'flight_service_flyer_manage','{\"zh_TW\":\"飛手管理\",\"en_US\":\"Pilot management\",\"zh_CN\":\"飞手管理\"}',200115000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200115101,'flight_service_flyer_view','{\"zh_TW\":\"飛手查询\",\"en_US\":\"Pilot search\",\"zh_CN\":\"飞手查询\"}',200115000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200115102,'flight_service_flyer_audit','{\"zh_TW\":\"飛手审核\",\"en_US\":\"Pilot audit\",\"zh_CN\":\"飞手审核\"}',200115000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200116000,'flight_service_approval','{\"zh_TW\":\"審批系統\",\"en_US\":\"Approval system\",\"zh_CN\":\"审批系统\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200116100,'flight_service_approval_manage','{\"zh_TW\":\"審批管理\",\"en_US\":\"Approval management\",\"zh_CN\":\"审批管理\"}',200116000,'200116101,200114101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200116101,'flight_service_approval_view','{\"zh_TW\":\"審批查看\",\"en_US\":\"Approval view\",\"zh_CN\":\"审批查看\"}',200116000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200117000,'flight_service_alarm','{\"zh_TW\":\"告警管理\",\"en_US\":\"Alarm management\",\"zh_CN\":\"告警管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200117100,'flight_service_alarm_statistic','{\"zh_TW\":\"告警統計\",\"en_US\":\"Alarm statistics\",\"zh_CN\":\"告警统计\"}',200117000,'200110100,200114101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200117101,'flight_service_alarm_config','{\"zh_TW\":\"告警配置\",\"en_US\":\"Alarm configuration\",\"zh_CN\":\"告警配置\"}',200117000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200117102,'flight_service_alarm_security','{\"zh_TW\":\"安全告警\",\"en_US\":\"Security Alerm\",\"zh_CN\":\"安全告警\"}',200117000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200118000,'flight_service_logger','{\"zh_TW\":\"日誌管理\",\"en_US\":\"Log manage\",\"zh_CN\":\"日志管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200118100,'flight_service_logger_manage','{\"zh_TW\":\"日誌管理\",\"en_US\":\"Log manage\",\"zh_CN\":\"日志管理\"}',200118000,'200110100,200114101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200119000,'flight_service_data_replay','{\"zh_TW\":\"数据回放\",\"en_US\":\"Data_replay\",\"zh_CN\":\"数据回放\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200119100,'flight_service_data_replay_item','{\"zh_TW\":\"数据回放\",\"en_US\":\"Data_replay\",\"zh_CN\":\"数据回放\"}',200119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200120000,'flight_service_flight_plan','{\"zh_TW\":\"飞行计划申请\",\"en_US\":\"flight plan application\",\"zh_CN\":\"飞行计划申请\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200120100,'flight_service_flight_plan_manage','{\"zh_TW\":\"飞行计划申请\",\"en_US\":\"flight plan application\",\"zh_CN\":\"飞行计划申请\"}',200120000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200121000,'flight_service_scene_simulation','{\"zh_TW\":\"場景模擬\",\"en_US\":\"scene Simulation\",\"zh_CN\":\"场景模拟\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200121100,'flight_service_scene_simulation_manage','{\"zh_TW\":\"場景模擬\",\"en_US\":\"scene Simulation\",\"zh_CN\":\"场景模拟\"}',200121000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200123000,'flight_service_mission_dispatch','{\"zh_TW\":\"任務派發管理\",\"en_US\":\"Mission dispatch management\",\"zh_CN\":\"任务派发管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200123100,'flight_service_mission_dispatch_task','{\"zh_TW\":\"任務管理\",\"en_US\":\"Task management\",\"zh_CN\":\"任务管理\"}',200123000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200123101,'flight_service_mission_dispatch_setting','{\"zh_TW\":\"配置管理\",\"en_US\":\"Configuration Management\",\"zh_CN\":\"配置管理\"}',200123000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200124000,'flight_flight_record','{\"zh_TW\":\"飛行記錄\",\"en_US\":\"Flight record\",\"zh_CN\":\"飞行记录\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200124100,'flight_flight_record_manage','{\"zh_TW\":\"飛行記錄\",\"en_US\":\"Flight record\",\"zh_CN\":\"飞行记录\"}',200124000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200132000,'flight_geo_data','{\"zh_TW\":\"地圖數據管理\",\"en_US\":\"Geographic Data Management\",\"zh_CN\":\"地图数据管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200132100,'flight_geo_data_poi','{\"zh_TW\":\"POI管理\",\"en_US\":\"POI Management\",\"zh_CN\":\"POI管理\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200132101,'flight_geo_data_2d_view','{\"zh_TW\":\"二維檢視\",\"en_US\":\"Two-dimensional view\",\"zh_CN\":\"二维视图\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200132102,'flight_geo_data_3d_view','{\"zh_TW\":\"三維檢視\",\"en_US\":\"3D view\",\"zh_CN\":\"三维视图\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200132103,'flight_geo_data_backhaul_images','{\"zh_TW\":\"回傳影像\",\"en_US\":\"Panorama photos\",\"zh_CN\":\"回传影像\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200132104,'flight_geo_panorama_photos','{\"zh_TW\":\"全景照片\",\"en_US\":\"Panoramic image\",\"zh_CN\":\"全景照片\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200134000,'flight_storage_space','{\"zh_TW\":\"存儲空間管理\",\"en_US\":\"Storage Space Manage\",\"zh_CN\":\"存储空间管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(200134100,'flight_storage_space_manage','{\"zh_TW\":\"存儲空間管理\",\"en_US\":\"Storage Space Manage\",\"zh_CN\":\"存储空间管理\"}',200134000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(300000000,'VAS','{\"zh_TW\":\"增值服務\",\"en_US\":\"Value Added Service\",\"zh_CN\":\"增值服务\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(300100000,'VAS_item','{\"zh_TW\":\"增值服務\",\"en_US\":\"Value Added Service\",\"zh_CN\":\"增值服务\"}',300000000,NULL,_binary '\0',_binary '\0',_binary '',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(300100100,'VAS_item_manage','{\"zh_TW\":\"增值服務\",\"en_US\":\"Value Added Service\",\"zh_CN\":\"增值服务\"}',300100000,NULL,_binary '\0',_binary '\0',_binary '',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(402000000,'green','{\"zh_TW\":\"智慧環保檢測系統\",\"en_US\":\"Smart environmental protection detection system\",\"zh_CN\":\"智慧环保检测系统\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(402100000,'green_detect','{\"zh_TW\":\"環保監控\",\"en_US\":\"Environmental monitoring\",\"zh_CN\":\"环保监控\"}',402000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(402100100,'green_detect_manage','{\"zh_TW\":\"環保監控\",\"en_US\":\"Environmental monitoring\",\"zh_CN\":\"环保监控\"}',402100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(403000000,'police','{\"zh_TW\":\"公安警務\",\"en_US\":\"Police\",\"zh_CN\":\"公安警务\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(403100000,'police_command_dispatch','{\"zh_TW\":\"公安可視化指揮調度平台\",\"en_US\":\"Public Security Visual Command and Dispatch Platform\",\"zh_CN\":\"公安可视化指挥调度平台\"}',403000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(403100100,'police_command_dispatch_manage','{\"zh_TW\":\"公安可視化指揮調度平台\",\"en_US\":\"Public Security Visual Command and Dispatch Platform\",\"zh_CN\":\"公安可视化指挥调度平台\"}',403100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405000000,'supervise','{\"zh_TW\":\"政府監管\",\"en_US\":\"Government Regulation\",\"zh_CN\":\"政府监管\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405100000,'supervise_screen','{\"zh_TW\":\"數據大屏\",\"en_US\":\"big data screen\",\"zh_CN\":\"数据大屏\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405100100,'supervise_screen_view','{\"zh_TW\":\"數據大屏\",\"en_US\":\"big data screen\",\"zh_CN\":\"数据大屏\"}',405100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405101000,'supervise_monitor_counter','{\"zh_TW\":\"監控反制\",\"en_US\":\"Monitoring countermeasures\",\"zh_CN\":\"监控反制\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405101100,'supervise_monitor_counter_manage','{\"zh_TW\":\"監控反制\",\"en_US\":\"Monitoring countermeasures\",\"zh_CN\":\"监控反制\"}',405101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405102000,'supervise_plan_approval','{\"zh_TW\":\"空域規劃-計劃審批\",\"en_US\":\"Airspace Planning - Plan Approval\",\"zh_CN\":\"空域规划-计划审批\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405102100,'supervise_plan_approval_approval','{\"zh_TW\":\"計劃審批\",\"en_US\":\"Plan Approval\",\"zh_CN\":\"计划审批\"}',405102000,'405103101,405104101,405105101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405102101,'supervise_plan_approval_view','{\"zh_TW\":\"計劃審批-查看\",\"en_US\":\"Program Approval - View\",\"zh_CN\":\"计划审批-查看\"}',405102000,'405103101,405104101,405105101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405103000,'supervise_airspace_request','{\"zh_TW\":\"空域規劃-空域申請\",\"en_US\":\"Airspace Planning - Airspace Application\",\"zh_CN\":\"空域规划-空域申请\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405103100,'supervise_airspace_request_manage','{\"zh_TW\":\"空域管理\",\"en_US\":\"airspace management\",\"zh_CN\":\"空域管理\"}',405103000,'405103101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405103101,'supervise_airspace_request_view','{\"zh_TW\":\"空域查詢\",\"en_US\":\"Airspace query\",\"zh_CN\":\"空域查询\"}',405103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405104000,'supervise_regional_plan','{\"zh_TW\":\"空域規劃-區域規劃\",\"en_US\":\"Airspace Planning - Regional Planning\",\"zh_CN\":\"空域规划-区域规划\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405104100,'supervise_regional_plan_manage','{\"zh_TW\":\"區域管理\",\"en_US\":\"Regional management\",\"zh_CN\":\"区域管理\"}',405104000,'405104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405104101,'supervise_regional_plan_view','{\"zh_TW\":\"區域查詢\",\"en_US\":\"Regional query\",\"zh_CN\":\"区域查询\"}',405104000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405105000,'supervise_customer','{\"zh_TW\":\"客戶管理\",\"en_US\":\"customer management\",\"zh_CN\":\"客户管理\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405105100,'supervise_customer_manage','{\"zh_TW\":\"客戶編輯\",\"en_US\":\"Client edit\",\"zh_CN\":\"客户编辑\"}',405105000,'405105101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405105101,'supervise_customer_view','{\"zh_TW\":\"客戶查詢\",\"en_US\":\"Customer inquiries\",\"zh_CN\":\"客户查询\"}',405105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405106000,'supervise_c_side','{\"zh_TW\":\"C端飛行計劃\",\"en_US\":\"C terminal flight plan\",\"zh_CN\":\"C端飞行计划\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405106100,'supervise_c_side_manage','{\"zh_TW\":\"申報飛行計劃\",\"en_US\":\"declare flight plan\",\"zh_CN\":\"申报飞行计划\"}',405106000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405107000,'supervise_supervision_flight','{\"zh_TW\":\"飛行安全監管\",\"en_US\":\"Flight safety supervision\",\"zh_CN\":\"飞行安全监管\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(405107100,'supervise_supervision_flight_manage','{\"zh_TW\":\"飛行安全監管\",\"en_US\":\"Flight safety supervision\",\"zh_CN\":\"飞行安全监管\"}',405107000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(406000000,'logistic','{\"zh_TW\":\"醫療物流\",\"en_US\":\"medical logistics\",\"zh_CN\":\"医疗物流\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(406100000,'logistic_logistic','{\"zh_TW\":\"醫療物流\",\"en_US\":\"medical logistics\",\"zh_CN\":\"医疗物流\"}',406000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(406100100,'logistic_logistic_manage','{\"zh_TW\":\"醫療物流\",\"en_US\":\"medical logistics\",\"zh_CN\":\"医疗物流\"}',406100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(407000000,'park','{\"zh_TW\":\"園區管理\",\"en_US\":\"Park Management\",\"zh_CN\":\"园区管理\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(407100000,'park_minitor','{\"zh_TW\":\"巡檢監控\",\"en_US\":\"Inspection monitoring\",\"zh_CN\":\"巡检监控\"}',407000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(407100100,'park_minitor_manage','{\"zh_TW\":\"巡檢監控\",\"en_US\":\"Inspection monitoring\",\"zh_CN\":\"巡检监控\"}',407100000,'200113100,200109101,200113101,200110100,200114100,200114101,200110101,200110102',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(408000000,'risk','{\"zh_TW\":\"應急指揮\",\"en_US\":\"Emergency Command\",\"zh_CN\":\"应急指挥\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(408100000,'risk_risk','{\"zh_TW\":\"應急指揮\",\"en_US\":\"Emergency Command\",\"zh_CN\":\"应急指挥\"}',408000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(408100100,'risk_risk_manage','{\"zh_TW\":\"應急指揮\",\"en_US\":\"Emergency Command\",\"zh_CN\":\"应急指挥\"}',408100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(409000000,'patrol','{\"zh_TW\":\"智慧交通\",\"en_US\":\"Smart transportation\",\"zh_CN\":\"智慧交通\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(409100000,'patrol_patrol','{\"zh_TW\":\"智慧交通\",\"en_US\":\"Smart transportation\",\"zh_CN\":\"智慧交通\"}',409000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(409100100,'patrol_patrol_manage','{\"zh_TW\":\"智慧交通\",\"en_US\":\"Smart transportation\",\"zh_CN\":\"智慧交通\"}',409100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410000000,'communication','{\"zh_TW\":\"應急通信\",\"en_US\":\"Emergency Communication\",\"zh_CN\":\"应急通信\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410100000,'communication_communication','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410100100,'communication_communication_manage','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',410100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410101000,'communication_risk_assessment','{\"zh_TW\":\"應急一張圖\",\"en_US\":\"A picture of emergency response\",\"zh_CN\":\"应急一张图\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410101100,'communication_risk_assessment_manage','{\"zh_TW\":\"應急一張圖\",\"en_US\":\"A picture of emergency response\",\"zh_CN\":\"应急一张图\"}',410101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410102000,'communication_monitoring_warning','{\"zh_TW\":\"监测预警\",\"en_US\":\"Monitoring and early warning\",\"zh_CN\":\"监测预警\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410102100,'communication_monitoring_warning_manage','{\"zh_TW\":\"监测预警\",\"en_US\":\"Monitoring and early warning\",\"zh_CN\":\"监测预警\"}',410102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410104000,'communication_name_list','{\"zh_TW\":\"名單管理\",\"en_US\":\"Name List\",\"zh_CN\":\"名单管理\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410104100,'communication_name_list_manage','{\"zh_TW\":\"名單管理\",\"en_US\":\"Name List\",\"zh_CN\":\"名单管理\"}',410104000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410105000,'communication_data','{\"zh_TW\":\"自然災害數據管理\",\"en_US\":\"Natural disaster data management\",\"zh_CN\":\"自然灾害数据管理\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410105100,'communication_data_manage','{\"zh_TW\":\"自然災害數據管理\",\"en_US\":\"Natural disaster data management\",\"zh_CN\":\"自然灾害数据管理\"}',410105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410106000,'communication_decision','{\"zh_TW\":\"通訊覆蓋參數配置\",\"en_US\":\"Command decisions\",\"zh_CN\":\"通信覆盖参数配置\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(410106100,'communication_decision_manage','{\"zh_TW\":\"通訊覆蓋參數配置\",\"en_US\":\"Command decisions\",\"zh_CN\":\"通信覆盖参数配置\"}',410106000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(411000000,'emergency','{\"zh_TW\":\"森林防火\",\"en_US\":\"Forest-Fire Monitor\",\"zh_CN\":\"森林防火\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(411100000,'emergency_emergency','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',411000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(411100100,'emergency_emergency_manage','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',411100000,'200113100,200109101,200113101,200110100,200114100,200114101,200110101,200110102',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(411101000,'emergency_resource_display','{\"zh_TW\":\"資源展示\",\"en_US\":\"Resource display\",\"zh_CN\":\"资源展示\"}',411000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(411101100,'emergency_resource_display_manage','{\"zh_TW\":\"資源展示\",\"en_US\":\"Resource display\",\"zh_CN\":\"资源展示\"}',411101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(412000000,'infrastructure','{\"zh_TW\":\"設施巡查\",\"en_US\":\"Infrastructure\",\"zh_CN\":\"设施巡查\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(412100000,'infrastructure_screen','{\"zh_TW\":\"数据大屏\",\"en_US\":\"screen\",\"zh_CN\":\"数据大屏\"}',412000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(412100100,'infrastructure_screen_manage','{\"zh_TW\":\"数据大屏\",\"en_US\":\"screen\",\"zh_CN\":\"数据大屏\"}',412100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(412101000,'infrastructure_book','{\"zh_TW\":\"設施臺賬\",\"en_US\":\"Standing book\",\"zh_CN\":\"设施台账\"}',412000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(412101100,'infrastructure_book_manage','{\"zh_TW\":\"設施臺賬\",\"en_US\":\"Standing book\",\"zh_CN\":\"设施台账\"}',412101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(413000000,'hubone','{\"zh_TW\":\"哈勃一号\",\"en_US\":\"Hub-one\",\"zh_CN\":\"哈勃一号\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(413100000,'hubone_hubone','{\"zh_TW\":\"哈勃一号\",\"en_US\":\"Hub-one\",\"zh_CN\":\"哈勃一号\"}',413000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(413100100,'hubone_hubone_manage','{\"zh_TW\":\"哈勃一号\",\"en_US\":\"Hub-one\",\"zh_CN\":\"哈勃一号\"}',413100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(414000000,'latn','{\"zh_TW\":\"天巡系统\",\"en_US\":\"天巡系统\",\"zh_CN\":\"天巡系统\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(414100000,'latn_latn','{\"zh_TW\":\"天巡系统\",\"en_US\":\"天巡系统\",\"zh_CN\":\"天巡系统\"}',414000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(414100100,'latn_latn_manage','{\"zh_TW\":\"天巡系统\",\"en_US\":\"天巡系统\",\"zh_CN\":\"天巡系统\"}',414100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(415000000,'fire_rescue','{\"zh_TW\":\"消防救援\",\"en_US\":\"Fire Rescue\",\"zh_CN\":\"消防救援\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(415100000,'fire_rescue_fire_rescue','{\"zh_TW\":\"消防救援\",\"en_US\":\"Fire Rescue\",\"zh_CN\":\"消防救援\"}',415000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(415100100,'fire_rescue_fire_rescue_manage','{\"zh_TW\":\"消防救援\",\"en_US\":\"Fire Rescue\",\"zh_CN\":\"消防救援\"}',415100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416000000,'army_people','{\"zh_TW\":\"5G-A通感一體化平臺\",\"en_US\":\"5G-A Synaesthesia Integrated Platform\",\"zh_CN\":\"5G-A通感一体化平台\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416100000,'army_people_screen','{\"zh_TW\":\"運行監視\",\"en_US\":\"Operation Monitoring\",\"zh_CN\":\"运行监视\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416100100,'army_people_screen_manage','{\"zh_TW\":\"運行監視\",\"en_US\":\"Operation Monitoring\",\"zh_CN\":\"运行监视\"}',416100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416101000,'army_people_detect','{\"zh_TW\":\"低空探測\",\"en_US\":\"Low Altitude Detection\",\"zh_CN\":\"低空探测\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416101100,'army_people_detect_front','{\"zh_TW\":\"首頁\",\"en_US\":\"Front Page\",\"zh_CN\":\"首页\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416101101,'army_people_detect_playback','{\"zh_TW\":\"數據回放\",\"en_US\":\"Data Playback\",\"zh_CN\":\"数据回放\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416101102,'army_people_detect_analysis','{\"zh_TW\":\"精度分析\",\"en_US\":\"Precision Analysis\",\"zh_CN\":\"精度分析\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416101103,'army_people_detect_alarm','{\"zh_TW\":\"告警記錄\",\"en_US\":\"Alarm Record\",\"zh_CN\":\"告警记录\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416102000,'army_people_configuration','{\"zh_TW\":\"配置管理\",\"en_US\":\"Configuration Management\",\"zh_CN\":\"配置管理\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416102100,'army_people_configuration_device','{\"zh_TW\":\"設備管理\",\"en_US\":\"Device Management\",\"zh_CN\":\"设备管理\"}',416102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416102101,'army_people_configuration_area','{\"zh_TW\":\"區域規劃\",\"en_US\":\"Regional Planning\",\"zh_CN\":\"区域规划\"}',416102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416102102,'army_people_configuration_story','{\"zh_TW\":\"故事管理\",\"en_US\":\"Story Management\",\"zh_CN\":\"故事管理\"}',416102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416103000,'army_people_functional','{\"zh_TW\":\"功能權限\",\"en_US\":\"Functional Permission\",\"zh_CN\":\"功能权限\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416103100,'army_people_functional_download','{\"zh_TW\":\"數據下載\",\"en_US\":\"Data Download\",\"zh_CN\":\"数据下载\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416103101,'army_people_functional_bts','{\"zh_TW\":\"基站統計\",\"en_US\":\"Base Station Statistics\",\"zh_CN\":\"基站统计\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416103102,'army_people_functional_linkage','{\"zh_TW\":\"雷視聯動\",\"en_US\":\"Radar And Vision Linkage\",\"zh_CN\":\"雷视联动\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416103103,'army_people_functional_precipitation','{\"zh_TW\":\"降水量\",\"en_US\":\"Precipitation\",\"zh_CN\":\"降水量\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(416103104,'army_people_functional_service','{\"zh_TW\":\"飞行服务\",\"en_US\":\"Flight Service\",\"zh_CN\":\"飞行服务\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(417000000,'iron_tower','{\"zh_TW\":\"鐵塔巡檢\",\"en_US\":\"Tower inspection\",\"zh_CN\":\"铁塔巡检\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(417100000,'iron_tower_basestation','{\"zh_TW\":\"基站信息維護\",\"en_US\":\"Base station information maintenance\",\"zh_CN\":\"基站信息维护\"}',417000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(417100100,'iron_tower_basestation_manage','{\"zh_TW\":\"基站信息維護\",\"en_US\":\"Base station information maintenance\",\"zh_CN\":\"基站信息维护\"}',417100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(417101000,'iron_tower_qualitycontrol','{\"zh_TW\":\"質檢任務管理\",\"en_US\":\"Quality inspection task management\",\"zh_CN\":\"质检任务管理\"}',417000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(417101100,'iron_tower_qualitycontrol_manage','{\"zh_TW\":\"質檢任務管理\",\"en_US\":\"Quality inspection task management\",\"zh_CN\":\"质检任务管理\"}',417101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(417102000,'iron_tower_personnelinfo','{\"zh_TW\":\"人員資訊管理\",\"en_US\":\"Personnel information management\",\"zh_CN\":\"人员信息管理\"}',417000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(417102100,'iron_tower_personnelinfo_manage','{\"zh_TW\":\"人員資訊管理\",\"en_US\":\"Personnel information management\",\"zh_CN\":\"人员信息管理\"}',417102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600000000,'data','{\"zh_TW\":\"數據應用\",\"en_US\":\"Data application\",\"zh_CN\":\"数据应用\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600100000,'data_material','{\"zh_TW\":\"素材倉庫\",\"en_US\":\"Material\",\"zh_CN\":\"素材仓库\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600100100,'data_material_manage','{\"zh_TW\":\"素材倉庫\",\"en_US\":\"Material\",\"zh_CN\":\"素材仓库\"}',600100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600101000,'data_tlcp','{\"zh_TW\":\"低空圖像AI處理\",\"en_US\":\"Low-altitude image AI processing\",\"zh_CN\":\"低空图像AI处理\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600101100,'data_tlcp_manage','{\"zh_TW\":\"低空圖像AI處理\",\"en_US\":\"Low-altitude image AI processing\",\"zh_CN\":\"低空图像AI处理\"}',600101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600102000,'data_lowdetection','{\"zh_TW\":\"低空探測\",\"en_US\":\"Low altitude detection\",\"zh_CN\":\"低空探测\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600102100,'data_lowdetection_manage','{\"zh_TW\":\"低空探測\",\"en_US\":\"Low altitude detection\",\"zh_CN\":\"低空探测\"}',600102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600103000,'data_simulation','{\"zh_TW\":\"仿真規劃\",\"en_US\":\"Simulation\",\"zh_CN\":\"仿真规划\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600103100,'data_simulation_manage','{\"zh_TW\":\"仿真規劃\",\"en_US\":\"Simulation\",\"zh_CN\":\"仿真规划\"}',600103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600104000,'data_modelv2','{\"zh_TW\":\"二位建圖與三維建模\",\"en_US\":\"2D drafting and 3D modelling\",\"zh_CN\":\"二维建图与三维建模\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600104100,'data_modelv2_manage','{\"zh_TW\":\"二位建圖與三維建模\",\"en_US\":\"2D drafting and 3D modelling\",\"zh_CN\":\"二维建图与三维建模\"}',600104000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105000,'data_ai','{\"zh_TW\":\"AI大腦\",\"en_US\":\"AI\",\"zh_CN\":\"AI大脑\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105100,'data_ai_manage','{\"zh_TW\":\"AI大腦\",\"en_US\":\"AI\",\"zh_CN\":\"AI大脑\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105101,'data_ai_image_density','{\"zh_TW\":\"人體分析-人流量統計\",\"en_US\":\"Human Analysis - People Statistics\",\"zh_CN\":\"人体分析-人流量统计\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105105,'data_ai_image_licenseplate','{\"zh_TW\":\"車輛分析-車牌識別\",\"en_US\":\"Vehicle analysis - license plate recognition\",\"zh_CN\":\"车辆分析-车牌识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105107,'data_ai_image_safetyhat','{\"zh_TW\":\"圖像處理-安全帽識別\",\"en_US\":\"Image processing - hard hat recognition\",\"zh_CN\":\"图像处理-安全帽识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105108,'data_ai_image_roadseg','{\"zh_TW\":\"圖像處理-道路分割\",\"en_US\":\"Image Processing - Road Segmentation\",\"zh_CN\":\"图像处理-道路分割\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105109,'data_ai_image_posture','{\"zh_TW\":\"圖像處理-人體姿態行為檢測\",\"en_US\":\"Image processing - human posture behavior detection\",\"zh_CN\":\"图像处理-人体姿态行为检测\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105110,'data_ai_image_common','{\"zh_TW\":\"圖像處理-通用能力識別\",\"en_US\":\"Image processing - universal capability recognition\",\"zh_CN\":\"图像处理-通用能力识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105111,'data_ai_image_dehazing','{\"zh_TW\":\"圖像增強-圖像去霧\",\"en_US\":\"Image Enhancement - Image dehazing\",\"zh_CN\":\"图像增强-图像去雾\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105112,'data_ai_image_debris_flow_detail','{\"zh_TW\":\"橋樑分析-邊坡缺陷檢測\",\"en_US\":\"Bridge analysis - slope defect detection\",\"zh_CN\":\"桥梁分析-边坡缺陷检测\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105113,'data_ai_bridge_violation','{\"zh_TW\":\"橋樑分析-橋下空間違章識別\",\"en_US\":\"Bridge analysis - identification of violations\",\"zh_CN\":\"桥梁分析-桥下空间违章识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105114,'data_ai_expansion_joint','{\"zh_TW\":\"橋樑分析-伸縮縫缺陷檢測\",\"en_US\":\"Bridge analysis - expansion joint defect detection\",\"zh_CN\":\"桥梁分析-伸缩缝缺陷检测\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600105115,'data_ai_video_technology','{\"zh_TW\":\"視頻技術\",\"en_US\":\"Video Technology\",\"zh_CN\":\"视频技术\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600106000,'data_infrared','{\"zh_TW\":\"紅外遙感\",\"en_US\":\"Infrared\",\"zh_CN\":\"红外遥感\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600106100,'data_infrared_manage','{\"zh_TW\":\"紅外遙感\",\"en_US\":\"Infrared\",\"zh_CN\":\"红外遥感\"}',600106000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600107000,'data_tdoa','{\"zh_TW\":\"無人機探測與反制\",\"en_US\":\"UAV detection and countermeasures\",\"zh_CN\":\"无人机探测与反制\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600107100,'data_tdoa_manage','{\"zh_TW\":\"無人機探測與反制\",\"en_US\":\"UAV detection and countermeasures\",\"zh_CN\":\"无人机探测与反制\"}',600107000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600108000,'data_linxot','{\"zh_TW\":\"5G界樁平台\",\"en_US\":\"5G boundary pile platform\",\"zh_CN\":\"5G界桩平台\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600108100,'data_linxot_manage','{\"zh_TW\":\"5G界樁平台\",\"en_US\":\"5G boundary pile platform\",\"zh_CN\":\"5G界桩平台\"}',600108000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600118000,'data_tudou_sensing','{\"zh_TW\":\"在線智能遙感\",\"en_US\":\"Online intelligent remote sens\",\"zh_CN\":\"在线智能遥感\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600118100,'data_tudou_sensing_manage','{\"zh_TW\":\"在線智能遙感\",\"en_US\":\"Online intelligent remote sens\",\"zh_CN\":\"在线智能遥感\"}',600118000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119000,'data_media','{\"zh_TW\":\"视频流媒体\",\"en_US\":\"video streaming\",\"zh_CN\":\"视频流媒体\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119100,'data_media_manage','{\"zh_TW\":\"视频流媒体\",\"en_US\":\"video streaming\",\"zh_CN\":\"视频流媒体\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119101,'data_media_video_device','{\"zh_TW\":\"視頻設備管理\",\"en_US\":\"Video device manage\",\"zh_CN\":\"视频设备管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119102,'data_media_video_playback','{\"zh_TW\":\"視頻回放\",\"en_US\":\"Video play back\",\"zh_CN\":\"视频回放\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119103,'data_media_process_choreographer','{\"zh_TW\":\"流程編排\",\"en_US\":\"Process choreographer\",\"zh_CN\":\"流程编排\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119104,'data_media_process_manage','{\"zh_TW\":\"流程任務管理\",\"en_US\":\"Process task management\",\"zh_CN\":\"流程任务管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119105,'data_media_live_manage','{\"zh_TW\":\"直播管理\",\"en_US\":\"Live broadcast management\",\"zh_CN\":\"直播管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119106,'data_media_system_manage','{\"zh_TW\":\"系統管理\",\"en_US\":\"System Manage\",\"zh_CN\":\"系统管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600119107,'data_media_open_interface','{\"zh_TW\":\"開放接口\",\"en_US\":\"MENU_VIDEO_OPEN_INTERFACE\",\"zh_CN\":\"开放接口\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600120000,'data_fire_emergency','{\"zh_TW\":\"防火應急指揮\",\"en_US\":\"Fire Emergency \",\"zh_CN\":\"防火应急指挥\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600120100,'data_fire_emergency_manage','{\"zh_TW\":\"防火應急指揮\",\"en_US\":\"Fire Emergency \",\"zh_CN\":\"防火应急指挥\"}',600120000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600121000,'data_nematode','{\"zh_TW\":\"線蟲病疫情\",\"en_US\":\"Nematode disease outbreak\",\"zh_CN\":\"线虫病疫情\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600121100,'data_nematode_manage','{\"zh_TW\":\"線蟲病疫情\",\"en_US\":\"Nematode disease outbreak\",\"zh_CN\":\"线虫病疫情\"}',600121000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600122000,'data_tudou_3d','{\"zh_TW\":\"在線實景三維\",\"en_US\":\"Online reality 3D\",\"zh_CN\":\"在线实景三维\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600122100,'data_tudou_3d_manage','{\"zh_TW\":\"在線實景三維\",\"en_US\":\"Online reality 3D\",\"zh_CN\":\"在线实景三维\"}',600122000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600123000,'data_runtoint','{\"zh_TW\":\"潤圖智能\",\"en_US\":\"Runtu Intelligence\",\"zh_CN\":\"润图智能\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600123100,'data_runtoint_manage','{\"zh_TW\":\"潤圖智能\",\"en_US\":\"Runtu Intelligence\",\"zh_CN\":\"润图智能\"}',600123000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600124000,'data_3dSimulation','{\"zh_TW\":\"三維仿真\",\"en_US\":\"ThreeD Simulation\",\"zh_CN\":\"三维仿真\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(600124100,'data_3dSimulation_manage','{\"zh_TW\":\"三維仿真\",\"en_US\":\"ThreeD Simulation\",\"zh_CN\":\"三维仿真\"}',600124000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(700000000,'app','{\"zh_TW\":\"App应用\",\"en_US\":\"Application\",\"zh_CN\":\"APP应用\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(700100000,'app_pilot','{\"zh_TW\":\"飛行家APP\",\"en_US\":\"Pilot APP\",\"zh_CN\":\"飞行家APP\"}',700000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(700100100,'app_pilot_basic','{\"zh_TW\":\"基礎飛行\",\"en_US\":\"Fly Basic\",\"zh_CN\":\"基础飞行\"}',700100000,'200110100,200113000,200113100,200113101,200113102,200113103,200113104,200000000,200110000',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(700100101,'app_pilot_scouting','{\"zh_TW\":\"飛手偵察\",\"en_US\":\"Pilot Scouting\",\"zh_CN\":\"飞手侦察\"}',700100000,'403000000,403100000,403100100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800000000,'tools','{\"zh_TW\":\"通用模塊工具\",\"en_US\":\"commonTool\",\"zh_CN\":\"通用模块工具\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800100000,'tools_geo_layer','{\"zh_TW\":\"圖層\",\"en_US\":\"GeoLayer\",\"zh_CN\":\"图层\"}',800000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800100100,'tools_geo_layer_2d','{\"zh_TW\":\"二維圖層\",\"en_US\":\"geoLayer2d\",\"zh_CN\":\"二维图层\"}',800100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800100101,'tools_geo_layer_3d','{\"zh_TW\":\"三維圖層\",\"en_US\":\"GeoLayer3d\",\"zh_CN\":\"三维图层\"}',800100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800100102,'tools_geo_layer_poi','{\"zh_TW\":\"POI管理\",\"en_US\":\"geoLayerPoi\",\"zh_CN\":\"POI管理\"}',800100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800101000,'tools_airspace','{\"zh_TW\":\"空域管理工具\",\"en_US\":\"airspaceTools\",\"zh_CN\":\"空域管理工具\"}',800000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800101100,'tools_airspace_tools','{\"zh_TW\":\"空域管理工具\",\"en_US\":\"airspaceTools\",\"zh_CN\":\"空域管理工具\"}',800101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800102000,'tools_compare','{\"zh_TW\":\"對比\",\"en_US\":\"compare\",\"zh_CN\":\"对比\"}',800000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800102100,'tools_compare_roll','{\"zh_TW\":\"卷簾對比\",\"en_US\":\"comareRoll\",\"zh_CN\":\"卷帘对比\"}',800102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'),(800102101,'tools_compare_split','{\"zh_TW\":\"分屏對比\",\"en_US\":\"compareSplit\",\"zh_CN\":\"分屏对比\"}',800102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-10-12 17:37:25',1,'2024-10-12 17:37:25',NULL,_binary '\0'); +INSERT INTO `sys_resource_group` VALUES (100000000,'sceen','{\"zh_TW\":\"通用版數據大屏\",\"en_US\":\"General version data screen\",\"zh_CN\":\"通用版数据大屏\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(100100000,'sceen_item','{\"zh_TW\":\"數據大屏\",\"en_US\":\"Large screen of data\",\"zh_CN\":\"数据大屏\"}',100000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(100100100,'sceen_item_view','{\"zh_TW\":\"基礎信息查看\",\"en_US\":\"Basic information view\",\"zh_CN\":\"基础信息查看\"}',100100000,NULL,_binary '\0',_binary '\0',_binary '',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(100100101,'sceen_item_statistic','{\"zh_TW\":\"平臺使用情況\",\"en_US\":\"Platform usage statistics\",\"zh_CN\":\"平台使用情况\"}',100100000,'100100100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200000000,'flight_service','{\"zh_TW\":\"飛行服務\",\"en_US\":\"flight service\",\"zh_CN\":\"飞行服务\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200100000,'flight_service_user','{\"zh_TW\":\"用戶管理\",\"en_US\":\"User management\",\"zh_CN\":\"用户管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200100100,'flight_service_user_view','{\"zh_TW\":\"用戶查看\",\"en_US\":\"User view\",\"zh_CN\":\"用户查看\"}',200100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200100101,'flight_service_user_manage','{\"zh_TW\":\"用戶變更\",\"en_US\":\"User change\",\"zh_CN\":\"用户变更\"}',200100000,'200100100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200101000,'flight_service_role','{\"zh_TW\":\"角色管理\",\"en_US\":\"Role management\",\"zh_CN\":\"角色管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200101100,'flight_service_role_view','{\"zh_TW\":\"角色查看\",\"en_US\":\"Role view\",\"zh_CN\":\"角色查看\"}',200101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200101101,'flight_service_role_manage','{\"zh_TW\":\"角色變更\",\"en_US\":\"Role change\",\"zh_CN\":\"角色变更\"}',200101000,'200101100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200102000,'flight_service_company','{\"zh_TW\":\"組織管理\",\"en_US\":\"Company Management\",\"zh_CN\":\"组织管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200102100,'flight_service_company_view','{\"zh_TW\":\"組織查看\",\"en_US\":\"Company view\",\"zh_CN\":\"组织查看\"}',200102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200102101,'flight_service_company_manage','{\"zh_TW\":\"組織變更\",\"en_US\":\"Company change\",\"zh_CN\":\"组织变更\"}',200102000,'200102100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200102102,'flight_service_company_map','{\"zh_TW\":\"地圖設置\",\"en_US\":\"Map Setting\",\"zh_CN\":\"地图设置\"}',200102000,'200102100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200103000,'flight_service_global_monitor','{\"zh_TW\":\"飛行監視-全局監視\",\"en_US\":\"Global Surveillance\",\"zh_CN\":\"飞行监视-全局监视\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200103100,'flight_service_global_monitor_view','{\"zh_TW\":\"全局監視查看\",\"en_US\":\"Global monitoring view\",\"zh_CN\":\"全局监视查看\"}',200103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200103101,'flight_service_global_monitor_dev_find','{\"zh_TW\":\"查找設備\",\"en_US\":\"Find a device\",\"zh_CN\":\"查找设备\"}',200103000,'200103100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200103102,'flight_service_global_monitor_takeoff','{\"zh_TW\":\"一鍵起飛\",\"en_US\":\"One key take off\",\"zh_CN\":\"一键起飞\"}',200103000,'200103100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200103103,'flight_service_global_monitor_control','{\"zh_TW\":\"多機控制\",\"en_US\":\"Multi-machine control\",\"zh_CN\":\"多机控制\"}',200103000,'200103104',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200103104,'flight_service_global_monitor_item','{\"zh_TW\":\"多機監視\",\"en_US\":\"Multi-machine monitoring\",\"zh_CN\":\"多机监视\"}',200103000,'200103100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104000,'flight_service_stand_alone_monitor','{\"zh_TW\":\"飛行監視-單機監視\",\"en_US\":\"Standalone Surveillance\",\"zh_CN\":\"飞行监视-单机监视\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104100,'flight_service_stand_alone_monitor_view','{\"zh_TW\":\"單機監視查看\",\"en_US\":\"Stand-alone monitoring and viewing\",\"zh_CN\":\"单机监视查看\"}',200104000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104101,'flight_service_stand_alone_monitor_stk','{\"zh_TW\":\"基礎控製\",\"en_US\":\"Basic control\",\"zh_CN\":\"基础控制\"}',200104000,'200104100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104102,'flight_service_stand_alone_monitor_sms','{\"zh_TW\":\"發送短信分享視頻\",\"en_US\":\"Send SMS to share video\",\"zh_CN\":\"发送短信分享视频\"}',200104000,'200104100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104103,'flight_service_stand_alone_monitor_bperm','{\"zh_TW\":\"搖桿控製\",\"en_US\":\"joystick control\",\"zh_CN\":\"摇杆控制\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104104,'flight_service_stand_alone_monitor_camera','{\"zh_TW\":\"攝像頭控製\",\"en_US\":\"camera control\",\"zh_CN\":\"摄像头控制\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104105,'flight_service_stand_alone_monitor_thermal','{\"zh_TW\":\"熱成像功能\",\"en_US\":\"Thermal imaging capabilities\",\"zh_CN\":\"热成像功能\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104106,'flight_service_stand_alone_monitor_megaphone','{\"zh_TW\":\"喊話器\",\"en_US\":\"megaphone\",\"zh_CN\":\"喊话器\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104107,'flight_service_stand_alone_monitor_agricultural','{\"zh_TW\":\"農業器具\",\"en_US\":\"agricultural equipment\",\"zh_CN\":\"农业器具\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104108,'flight_service_stand_alone_monitor_control_manage','{\"zh_TW\":\"控制权移交\",\"en_US\":\"Control Manage\",\"zh_CN\":\"控制权移交\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104109,'flight_service_stand_alone_monitor_gas','{\"zh_TW\":\"氣體檢測儀\",\"en_US\":\"Gas detector\",\"zh_CN\":\"气体检测仪\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104110,'flight_service_stand_alone_monitor_guide','{\"zh_TW\":\"單機監視新手引導\",\"en_US\":\"Guidance\",\"zh_CN\":\"单机监视新手引导\"}',200104000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104111,'flight_service_stand_alone_monitor_network_link','{\"zh_TW\":\"網絡連結\",\"en_US\":\"Network link\",\"zh_CN\":\"网络链路\"}',200104000,'200104100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104112,'flight_service_stand_alone_monitor_video_spell','{\"zh_TW\":\"視頻快拼\",\"en_US\":\"Video Snap\",\"zh_CN\":\"视频快拼\"}',200104000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104113,'flight_service_stand_alone_monitor_temperature_display','{\"zh_TW\":\"温度显示\",\"en_US\":\"Temperature Display\",\"zh_CN\":\"温度显示\"}',200104000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200104114,'flight_service_stand_alone_monitor_switch_network','{\"zh_TW\":\"切换蜂窝网\",\"en_US\":\"Switch Network\",\"zh_CN\":\"切换蜂窝网\"}',200104000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105000,'flight_service_assistance','{\"zh_TW\":\"AI\",\"en_US\":\"AI\",\"zh_CN\":\"AI\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105100,'flight_service_assistance_vehicle_statstic','{\"zh_TW\":\"車流量統計\",\"en_US\":\"Traffic Statistics\",\"zh_CN\":\"车流量统计\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105101,'flight_service_assistance_vehicle_trace','{\"zh_TW\":\"車輛跟踪\",\"en_US\":\"vehicle tracking\",\"zh_CN\":\"车辆跟踪\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105102,'flight_service_assistance_vehicle_identify','{\"zh_TW\":\"車牌查找\",\"en_US\":\"license plate lookup\",\"zh_CN\":\"车牌查找\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105103,'flight_service_assistance_human_statistic','{\"zh_TW\":\"人流量統計\",\"en_US\":\"People Statistics\",\"zh_CN\":\"人流量统计\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105105,'flight_service_assistance_send_sms','{\"zh_TW\":\"發送短信\",\"en_US\":\"Send SMS\",\"zh_CN\":\"发送短信\"}',200105000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105106,'flight_service_assistance_ai_fire','{\"zh_TW\":\"火情識別\",\"en_US\":\"Fire recognition\",\"zh_CN\":\"火情识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105107,'flight_service_assistance_ai_smog','{\"zh_TW\":\"煙霧識別\",\"en_US\":\"Smoke recognition\",\"zh_CN\":\"烟雾识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105108,'flight_service_assistance_ai_transmission','{\"zh_TW\":\"輸電識別\",\"en_US\":\"Transmission identification\",\"zh_CN\":\"输电识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105109,'flight_service_assistance_ai_helmet','{\"zh_TW\":\"安全帽識別\",\"en_US\":\"Helmet Identification\",\"zh_CN\":\"安全帽识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105110,'flight_service_assistance_ai_excavator','{\"zh_TW\":\"挖掘機識別\",\"en_US\":\"Excavator Identification\",\"zh_CN\":\"挖掘机识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105111,'flight_service_assistance_ai_crowd','{\"zh_TW\":\"人群密集检测\",\"en_US\":\"Crowd density\",\"zh_CN\":\"人群密集检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105112,'flight_service_assistance_ai_highway','{\"zh_TW\":\"高速路檢測\",\"en_US\":\"Highways\",\"zh_CN\":\"高速路检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105113,'flight_service_assistance_ai_yaw','{\"zh_TW\":\"偏航預警\",\"en_US\":\"Yaw warning\",\"zh_CN\":\"偏航预警\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105114,'flight_service_assistance_ai_peoveh','{\"zh_TW\":\"人車識別\",\"en_US\":\"People and vehicles recognition\",\"zh_CN\":\"人车识别\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105115,'flight_service_assistance_ai_perimeter_intrusion','{\"zh_TW\":\"周界入侵告警\",\"en_US\":\"Perimeter Intrusion Alarm\",\"zh_CN\":\"周界入侵告警\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105116,'flight_service_assistance_ai_drone_tracking','{\"zh_TW\":\"無人機跟蹤\",\"en_US\":\"Drone Tracking\",\"zh_CN\":\"无人机跟踪\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105117,'flight_service_assistance_ai_infrared_detection','{\"zh_TW\":\"紅外行人檢測\",\"en_US\":\"Infrared Pedestrian Detection\",\"zh_CN\":\"红外行人检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105118,'flight_service_assistance_ai_sea_rescue','{\"zh_TW\":\"海上人員救援\",\"en_US\":\"Rescue f People At Sea\",\"zh_CN\":\"海上人员救援\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200105119,'flight_service_assistance_ai_vessel_detection','{\"zh_TW\":\"船只檢測\",\"en_US\":\"Vessel Detection\",\"zh_CN\":\"船只检测\"}',200105000,'200104101,200114100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200106000,'flight_service_monitor_hangar','{\"zh_TW\":\"飞行监视-機庫操作\",\"en_US\":\"hangar operation\",\"zh_CN\":\"飞行监视-机库操作\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200106100,'flight_service_monitor_hangar_control','{\"zh_TW\":\"機庫控製\",\"en_US\":\"hangar control\",\"zh_CN\":\"机库控制\"}',200106000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200106101,'flight_service_monitor_hangar_emergency_operation','{\"zh_TW\":\"機庫緊急操作\",\"en_US\":\"Hangar Emergency operation\",\"zh_CN\":\"机库紧急操作\"}',200106000,'200106100,200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200107000,'flight_service_fire','{\"zh_TW\":\"飞行监视-火情\",\"en_US\":\"飞行监视-fire\",\"zh_CN\":\"飞行监视-火情\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200107100,'flight_service_fire_manage','{\"zh_TW\":\"火情\",\"en_US\":\"fire\",\"zh_CN\":\"火情\"}',200107000,'200104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200109000,'flight_service_airspace','{\"zh_TW\":\"空域相關\",\"en_US\":\"Airspace related\",\"zh_CN\":\"空域相关\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200109100,'flight_service_airspace_manage','{\"zh_TW\":\"空域管理\",\"en_US\":\"airspace management\",\"zh_CN\":\"空域管理\"}',200109000,'200109101,200116100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200109101,'flight_service_airspace_view','{\"zh_TW\":\"空域查看\",\"en_US\":\"Airspace view\",\"zh_CN\":\"空域查看\"}',200109000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200109102,'flight_service_airspace_electronic_fence_view','{\"zh_TW\":\"電子圍欄查看\",\"en_US\":\"Electronic fence view\",\"zh_CN\":\"电子围栏查看\"}',200109000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200109103,'flight_service_airspace_electronic_fence_manage','{\"zh_TW\":\"電子圍欄管理\",\"en_US\":\"Electronic fence management\",\"zh_CN\":\"电子围栏管理\"}',200109000,'200109102',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200110000,'flight_service_plane_load','{\"zh_TW\":\"设备管理-無人機及載荷管理\",\"en_US\":\"UAV and payload manage\",\"zh_CN\":\"设备管理-无人机及载荷管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200110100,'flight_service_plane_load_view','{\"zh_TW\":\"無人機及載荷查看\",\"en_US\":\"UAV and payload view\",\"zh_CN\":\"无人机及载荷查看\"}',200110000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200110101,'flight_service_plane_load_load_manage','{\"zh_TW\":\"載荷管理\",\"en_US\":\"Payload management\",\"zh_CN\":\"载荷管理\"}',200110000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200110102,'flight_service_plane_load_plane_manage','{\"zh_TW\":\"無人機管理\",\"en_US\":\"UAV management\",\"zh_CN\":\"无人机管理\"}',200110000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200111000,'flight_service_hangar','{\"zh_TW\":\"设备管理-機庫管理\",\"en_US\":\"hangar manage\",\"zh_CN\":\"设备管理-机库管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200111100,'flight_service_hangar_manage','{\"zh_TW\":\"機庫管理\",\"en_US\":\"Hangar management\",\"zh_CN\":\"机库管理\"}',200111000,'200111101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200111101,'flight_service_hangar_view','{\"zh_TW\":\"機庫查看\",\"en_US\":\"Hangar View\",\"zh_CN\":\"机库查看\"}',200111000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200112000,'flight_service_house','{\"zh_TW\":\"設備管理-倉庫管理\",\"en_US\":\"Warehouse Management\",\"zh_CN\":\"设备管理-仓库管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200112100,'flight_service_house_manage','{\"zh_TW\":\"倉庫管理\",\"en_US\":\"Warehouse Management\",\"zh_CN\":\"仓库管理\"}',200112000,'200110102,200112101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200112101,'flight_service_house_view','{\"zh_TW\":\"倉庫查看\",\"en_US\":\"Warehouse view\",\"zh_CN\":\"仓库查看\"}',200112000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200113000,'flight_service_airline','{\"zh_TW\":\"航線管理\",\"en_US\":\"Flight route management\",\"zh_CN\":\"航线管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200113100,'flight_service_airline_manage','{\"zh_TW\":\"航線管理\",\"en_US\":\"Flight route management\",\"zh_CN\":\"航线管理\"}',200113000,'200113101,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200113101,'flight_service_airline_view','{\"zh_TW\":\"航線查看\",\"en_US\":\"Flight route view\",\"zh_CN\":\"航线查看\"}',200113000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200113102,'flight_service_airline_three_dimensional','{\"zh_TW\":\"三維功能\",\"en_US\":\"3D function\",\"zh_CN\":\"三维功能\"}',200113000,'200113101,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200113103,'flight_service_airline_kml_manage','{\"zh_TW\":\"KML航線管理\",\"en_US\":\"KML Flight route management\",\"zh_CN\":\"KML航线管理\"}',200113000,'200113104,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200113104,'flight_service_airline_kml_view','{\"zh_TW\":\"KML航線查看\",\"en_US\":\"KML Flight route view\",\"zh_CN\":\"KML航线查看\"}',200113000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200113105,'flight_service_airline_translation_rotation','{\"zh_TW\":\"航线平移旋转\",\"en_US\":\"Route translation and rotation\",\"zh_CN\":\"航线平移旋转\"}',200113000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200114000,'flight_service_mission','{\"zh_TW\":\"作業相關\",\"en_US\":\"Mission related\",\"zh_CN\":\"作业相关\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200114100,'flight_service_mission_manage','{\"zh_TW\":\"作業管理\",\"en_US\":\"Mission management\",\"zh_CN\":\"作业管理\"}',200114000,'200114101,200113101,200110100,200116100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200114101,'flight_service_mission_view','{\"zh_TW\":\"作業查看\",\"en_US\":\"Mission view\",\"zh_CN\":\"作业查看\"}',200114000,'200113101,200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200115000,'flight_service_flyer','{\"zh_TW\":\"飛手管理\",\"en_US\":\"Pilot management\",\"zh_CN\":\"飞手管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200115100,'flight_service_flyer_manage','{\"zh_TW\":\"飛手管理\",\"en_US\":\"Pilot management\",\"zh_CN\":\"飞手管理\"}',200115000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200115101,'flight_service_flyer_view','{\"zh_TW\":\"飛手查询\",\"en_US\":\"Pilot search\",\"zh_CN\":\"飞手查询\"}',200115000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200115102,'flight_service_flyer_audit','{\"zh_TW\":\"飛手审核\",\"en_US\":\"Pilot audit\",\"zh_CN\":\"飞手审核\"}',200115000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200116000,'flight_service_approval','{\"zh_TW\":\"審批系統\",\"en_US\":\"Approval system\",\"zh_CN\":\"审批系统\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200116100,'flight_service_approval_manage','{\"zh_TW\":\"審批管理\",\"en_US\":\"Approval management\",\"zh_CN\":\"审批管理\"}',200116000,'200116101,200114101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200116101,'flight_service_approval_view','{\"zh_TW\":\"審批查看\",\"en_US\":\"Approval view\",\"zh_CN\":\"审批查看\"}',200116000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200117000,'flight_service_alarm','{\"zh_TW\":\"告警管理\",\"en_US\":\"Alarm management\",\"zh_CN\":\"告警管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200117100,'flight_service_alarm_statistic','{\"zh_TW\":\"告警統計\",\"en_US\":\"Alarm statistics\",\"zh_CN\":\"告警统计\"}',200117000,'200110100,200114101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200117101,'flight_service_alarm_config','{\"zh_TW\":\"告警配置\",\"en_US\":\"Alarm configuration\",\"zh_CN\":\"告警配置\"}',200117000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200117102,'flight_service_alarm_security','{\"zh_TW\":\"安全告警\",\"en_US\":\"Security Alerm\",\"zh_CN\":\"安全告警\"}',200117000,'200110100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200118000,'flight_service_logger','{\"zh_TW\":\"日誌管理\",\"en_US\":\"Log manage\",\"zh_CN\":\"日志管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200118100,'flight_service_logger_manage','{\"zh_TW\":\"日誌管理\",\"en_US\":\"Log manage\",\"zh_CN\":\"日志管理\"}',200118000,'200110100,200114101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200119000,'flight_service_data_replay','{\"zh_TW\":\"数据回放\",\"en_US\":\"Data_replay\",\"zh_CN\":\"数据回放\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200119100,'flight_service_data_replay_item','{\"zh_TW\":\"数据回放\",\"en_US\":\"Data_replay\",\"zh_CN\":\"数据回放\"}',200119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200120000,'flight_service_flight_plan','{\"zh_TW\":\"飞行计划申请\",\"en_US\":\"flight plan application\",\"zh_CN\":\"飞行计划申请\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200120100,'flight_service_flight_plan_manage','{\"zh_TW\":\"飞行计划申请\",\"en_US\":\"flight plan application\",\"zh_CN\":\"飞行计划申请\"}',200120000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200121000,'flight_service_scene_simulation','{\"zh_TW\":\"場景模擬\",\"en_US\":\"scene Simulation\",\"zh_CN\":\"场景模拟\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200121100,'flight_service_scene_simulation_manage','{\"zh_TW\":\"場景模擬\",\"en_US\":\"scene Simulation\",\"zh_CN\":\"场景模拟\"}',200121000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200123000,'flight_service_mission_dispatch','{\"zh_TW\":\"任務派發管理\",\"en_US\":\"Mission dispatch management\",\"zh_CN\":\"任务派发管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200123100,'flight_service_mission_dispatch_task','{\"zh_TW\":\"任務管理\",\"en_US\":\"Task management\",\"zh_CN\":\"任务管理\"}',200123000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200123101,'flight_service_mission_dispatch_setting','{\"zh_TW\":\"配置管理\",\"en_US\":\"Configuration Management\",\"zh_CN\":\"配置管理\"}',200123000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200124000,'flight_flight_record','{\"zh_TW\":\"飛行記錄\",\"en_US\":\"Flight record\",\"zh_CN\":\"飞行记录\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200124100,'flight_flight_record_manage','{\"zh_TW\":\"飛行記錄\",\"en_US\":\"Flight record\",\"zh_CN\":\"飞行记录\"}',200124000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200132000,'flight_geo_data','{\"zh_TW\":\"地圖數據管理\",\"en_US\":\"Geographic Data Management\",\"zh_CN\":\"地图数据管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200132100,'flight_geo_data_poi','{\"zh_TW\":\"POI管理\",\"en_US\":\"POI Management\",\"zh_CN\":\"POI管理\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200132101,'flight_geo_data_2d_view','{\"zh_TW\":\"二維檢視\",\"en_US\":\"Two-dimensional view\",\"zh_CN\":\"二维视图\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200132102,'flight_geo_data_3d_view','{\"zh_TW\":\"三維檢視\",\"en_US\":\"3D view\",\"zh_CN\":\"三维视图\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200132103,'flight_geo_data_backhaul_images','{\"zh_TW\":\"回傳影像\",\"en_US\":\"Panorama photos\",\"zh_CN\":\"回传影像\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200132104,'flight_geo_panorama_photos','{\"zh_TW\":\"全景照片\",\"en_US\":\"Panoramic image\",\"zh_CN\":\"全景照片\"}',200132000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200134000,'flight_storage_space','{\"zh_TW\":\"存儲空間管理\",\"en_US\":\"Storage Space Manage\",\"zh_CN\":\"存储空间管理\"}',200000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(200134100,'flight_storage_space_manage','{\"zh_TW\":\"存儲空間管理\",\"en_US\":\"Storage Space Manage\",\"zh_CN\":\"存储空间管理\"}',200134000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(300000000,'VAS','{\"zh_TW\":\"增值服務\",\"en_US\":\"Value Added Service\",\"zh_CN\":\"增值服务\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(300100000,'VAS_item','{\"zh_TW\":\"增值服務\",\"en_US\":\"Value Added Service\",\"zh_CN\":\"增值服务\"}',300000000,NULL,_binary '\0',_binary '\0',_binary '',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(300100100,'VAS_item_manage','{\"zh_TW\":\"增值服務\",\"en_US\":\"Value Added Service\",\"zh_CN\":\"增值服务\"}',300100000,NULL,_binary '\0',_binary '\0',_binary '',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(402000000,'green','{\"zh_TW\":\"智慧環保檢測系統\",\"en_US\":\"Smart environmental protection detection system\",\"zh_CN\":\"智慧环保检测系统\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(402100000,'green_detect','{\"zh_TW\":\"環保監控\",\"en_US\":\"Environmental monitoring\",\"zh_CN\":\"环保监控\"}',402000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(402100100,'green_detect_manage','{\"zh_TW\":\"環保監控\",\"en_US\":\"Environmental monitoring\",\"zh_CN\":\"环保监控\"}',402100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(403000000,'police','{\"zh_TW\":\"公安警務\",\"en_US\":\"Police\",\"zh_CN\":\"公安警务\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(403100000,'police_command_dispatch','{\"zh_TW\":\"公安可視化指揮調度平台\",\"en_US\":\"Public Security Visual Command and Dispatch Platform\",\"zh_CN\":\"公安可视化指挥调度平台\"}',403000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(403100100,'police_command_dispatch_manage','{\"zh_TW\":\"公安可視化指揮調度平台\",\"en_US\":\"Public Security Visual Command and Dispatch Platform\",\"zh_CN\":\"公安可视化指挥调度平台\"}',403100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405000000,'supervise','{\"zh_TW\":\"政府監管\",\"en_US\":\"Government Regulation\",\"zh_CN\":\"政府监管\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405100000,'supervise_screen','{\"zh_TW\":\"數據大屏\",\"en_US\":\"big data screen\",\"zh_CN\":\"数据大屏\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405100100,'supervise_screen_view','{\"zh_TW\":\"數據大屏\",\"en_US\":\"big data screen\",\"zh_CN\":\"数据大屏\"}',405100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405101000,'supervise_monitor_counter','{\"zh_TW\":\"監控反制\",\"en_US\":\"Monitoring countermeasures\",\"zh_CN\":\"监控反制\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405101100,'supervise_monitor_counter_manage','{\"zh_TW\":\"監控反制\",\"en_US\":\"Monitoring countermeasures\",\"zh_CN\":\"监控反制\"}',405101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405102000,'supervise_plan_approval','{\"zh_TW\":\"空域規劃-計劃審批\",\"en_US\":\"Airspace Planning - Plan Approval\",\"zh_CN\":\"空域规划-计划审批\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405102100,'supervise_plan_approval_approval','{\"zh_TW\":\"計劃審批\",\"en_US\":\"Plan Approval\",\"zh_CN\":\"计划审批\"}',405102000,'405103101,405104101,405105101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405102101,'supervise_plan_approval_view','{\"zh_TW\":\"計劃審批-查看\",\"en_US\":\"Program Approval - View\",\"zh_CN\":\"计划审批-查看\"}',405102000,'405103101,405104101,405105101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405103000,'supervise_airspace_request','{\"zh_TW\":\"空域規劃-空域申請\",\"en_US\":\"Airspace Planning - Airspace Application\",\"zh_CN\":\"空域规划-空域申请\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405103100,'supervise_airspace_request_manage','{\"zh_TW\":\"空域管理\",\"en_US\":\"airspace management\",\"zh_CN\":\"空域管理\"}',405103000,'405103101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405103101,'supervise_airspace_request_view','{\"zh_TW\":\"空域查詢\",\"en_US\":\"Airspace query\",\"zh_CN\":\"空域查询\"}',405103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405104000,'supervise_regional_plan','{\"zh_TW\":\"空域規劃-區域規劃\",\"en_US\":\"Airspace Planning - Regional Planning\",\"zh_CN\":\"空域规划-区域规划\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:09',1,'2024-11-12 15:10:09',NULL,_binary '\0'),(405104100,'supervise_regional_plan_manage','{\"zh_TW\":\"區域管理\",\"en_US\":\"Regional management\",\"zh_CN\":\"区域管理\"}',405104000,'405104101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405104101,'supervise_regional_plan_view','{\"zh_TW\":\"區域查詢\",\"en_US\":\"Regional query\",\"zh_CN\":\"区域查询\"}',405104000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405105000,'supervise_customer','{\"zh_TW\":\"客戶管理\",\"en_US\":\"customer management\",\"zh_CN\":\"客户管理\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405105100,'supervise_customer_manage','{\"zh_TW\":\"客戶編輯\",\"en_US\":\"Client edit\",\"zh_CN\":\"客户编辑\"}',405105000,'405105101',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405105101,'supervise_customer_view','{\"zh_TW\":\"客戶查詢\",\"en_US\":\"Customer inquiries\",\"zh_CN\":\"客户查询\"}',405105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405106000,'supervise_c_side','{\"zh_TW\":\"C端飛行計劃\",\"en_US\":\"C terminal flight plan\",\"zh_CN\":\"C端飞行计划\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405106100,'supervise_c_side_manage','{\"zh_TW\":\"申報飛行計劃\",\"en_US\":\"declare flight plan\",\"zh_CN\":\"申报飞行计划\"}',405106000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405107000,'supervise_supervision_flight','{\"zh_TW\":\"飛行安全監管\",\"en_US\":\"Flight safety supervision\",\"zh_CN\":\"飞行安全监管\"}',405000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(405107100,'supervise_supervision_flight_manage','{\"zh_TW\":\"飛行安全監管\",\"en_US\":\"Flight safety supervision\",\"zh_CN\":\"飞行安全监管\"}',405107000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(406000000,'logistic','{\"zh_TW\":\"醫療物流\",\"en_US\":\"medical logistics\",\"zh_CN\":\"医疗物流\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(406100000,'logistic_logistic','{\"zh_TW\":\"醫療物流\",\"en_US\":\"medical logistics\",\"zh_CN\":\"医疗物流\"}',406000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(406100100,'logistic_logistic_manage','{\"zh_TW\":\"醫療物流\",\"en_US\":\"medical logistics\",\"zh_CN\":\"医疗物流\"}',406100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(407000000,'park','{\"zh_TW\":\"園區管理\",\"en_US\":\"Park Management\",\"zh_CN\":\"园区管理\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(407100000,'park_minitor','{\"zh_TW\":\"巡檢監控\",\"en_US\":\"Inspection monitoring\",\"zh_CN\":\"巡检监控\"}',407000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(407100100,'park_minitor_manage','{\"zh_TW\":\"巡檢監控\",\"en_US\":\"Inspection monitoring\",\"zh_CN\":\"巡检监控\"}',407100000,'200113100,200109101,200113101,200110100,200114100,200114101,200110101,200110102',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(408000000,'risk','{\"zh_TW\":\"應急指揮\",\"en_US\":\"Emergency Command\",\"zh_CN\":\"应急指挥\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(408100000,'risk_risk','{\"zh_TW\":\"應急指揮\",\"en_US\":\"Emergency Command\",\"zh_CN\":\"应急指挥\"}',408000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(408100100,'risk_risk_manage','{\"zh_TW\":\"應急指揮\",\"en_US\":\"Emergency Command\",\"zh_CN\":\"应急指挥\"}',408100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(409000000,'patrol','{\"zh_TW\":\"智慧交通\",\"en_US\":\"Smart transportation\",\"zh_CN\":\"智慧交通\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(409100000,'patrol_patrol','{\"zh_TW\":\"智慧交通\",\"en_US\":\"Smart transportation\",\"zh_CN\":\"智慧交通\"}',409000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(409100100,'patrol_patrol_manage','{\"zh_TW\":\"智慧交通\",\"en_US\":\"Smart transportation\",\"zh_CN\":\"智慧交通\"}',409100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410000000,'communication','{\"zh_TW\":\"應急通信\",\"en_US\":\"Emergency Communication\",\"zh_CN\":\"应急通信\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410100000,'communication_communication','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410100100,'communication_communication_manage','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',410100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410101000,'communication_risk_assessment','{\"zh_TW\":\"應急一張圖\",\"en_US\":\"A picture of emergency response\",\"zh_CN\":\"应急一张图\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410101100,'communication_risk_assessment_manage','{\"zh_TW\":\"應急一張圖\",\"en_US\":\"A picture of emergency response\",\"zh_CN\":\"应急一张图\"}',410101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410102000,'communication_monitoring_warning','{\"zh_TW\":\"监测预警\",\"en_US\":\"Monitoring and early warning\",\"zh_CN\":\"监测预警\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410102100,'communication_monitoring_warning_manage','{\"zh_TW\":\"监测预警\",\"en_US\":\"Monitoring and early warning\",\"zh_CN\":\"监测预警\"}',410102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410104000,'communication_name_list','{\"zh_TW\":\"名單管理\",\"en_US\":\"Name List\",\"zh_CN\":\"名单管理\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410104100,'communication_name_list_manage','{\"zh_TW\":\"名單管理\",\"en_US\":\"Name List\",\"zh_CN\":\"名单管理\"}',410104000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410105000,'communication_data','{\"zh_TW\":\"自然災害數據管理\",\"en_US\":\"Natural disaster data management\",\"zh_CN\":\"自然灾害数据管理\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410105100,'communication_data_manage','{\"zh_TW\":\"自然災害數據管理\",\"en_US\":\"Natural disaster data management\",\"zh_CN\":\"自然灾害数据管理\"}',410105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410106000,'communication_decision','{\"zh_TW\":\"通訊覆蓋參數配置\",\"en_US\":\"Command decisions\",\"zh_CN\":\"通信覆盖参数配置\"}',410000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(410106100,'communication_decision_manage','{\"zh_TW\":\"通訊覆蓋參數配置\",\"en_US\":\"Command decisions\",\"zh_CN\":\"通信覆盖参数配置\"}',410106000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(411000000,'emergency','{\"zh_TW\":\"森林防火\",\"en_US\":\"Forest-Fire Monitor\",\"zh_CN\":\"森林防火\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(411100000,'emergency_emergency','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',411000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(411100100,'emergency_emergency_manage','{\"zh_TW\":\"監控大屏\",\"en_US\":\"Monitoring screen\",\"zh_CN\":\"监控大屏\"}',411100000,'200113100,200109101,200113101,200110100,200114100,200114101,200110101,200110102',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(411101000,'emergency_resource_display','{\"zh_TW\":\"資源展示\",\"en_US\":\"Resource display\",\"zh_CN\":\"资源展示\"}',411000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(411101100,'emergency_resource_display_manage','{\"zh_TW\":\"資源展示\",\"en_US\":\"Resource display\",\"zh_CN\":\"资源展示\"}',411101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(412000000,'infrastructure','{\"zh_TW\":\"設施巡查\",\"en_US\":\"Infrastructure\",\"zh_CN\":\"设施巡查\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(412100000,'infrastructure_screen','{\"zh_TW\":\"数据大屏\",\"en_US\":\"screen\",\"zh_CN\":\"数据大屏\"}',412000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(412100100,'infrastructure_screen_manage','{\"zh_TW\":\"数据大屏\",\"en_US\":\"screen\",\"zh_CN\":\"数据大屏\"}',412100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(412101000,'infrastructure_book','{\"zh_TW\":\"設施臺賬\",\"en_US\":\"Standing book\",\"zh_CN\":\"设施台账\"}',412000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(412101100,'infrastructure_book_manage','{\"zh_TW\":\"設施臺賬\",\"en_US\":\"Standing book\",\"zh_CN\":\"设施台账\"}',412101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(413000000,'hubone','{\"zh_TW\":\"哈勃一号\",\"en_US\":\"Hub-one\",\"zh_CN\":\"哈勃一号\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(413100000,'hubone_hubone','{\"zh_TW\":\"哈勃一号\",\"en_US\":\"Hub-one\",\"zh_CN\":\"哈勃一号\"}',413000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(413100100,'hubone_hubone_manage','{\"zh_TW\":\"哈勃一号\",\"en_US\":\"Hub-one\",\"zh_CN\":\"哈勃一号\"}',413100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(414000000,'latn','{\"zh_TW\":\"天巡系统\",\"en_US\":\"天巡系统\",\"zh_CN\":\"天巡系统\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(414100000,'latn_latn','{\"zh_TW\":\"天巡系统\",\"en_US\":\"天巡系统\",\"zh_CN\":\"天巡系统\"}',414000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(414100100,'latn_latn_manage','{\"zh_TW\":\"天巡系统\",\"en_US\":\"天巡系统\",\"zh_CN\":\"天巡系统\"}',414100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(415000000,'fire_rescue','{\"zh_TW\":\"消防救援\",\"en_US\":\"Fire Rescue\",\"zh_CN\":\"消防救援\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(415100000,'fire_rescue_fire_rescue','{\"zh_TW\":\"消防救援\",\"en_US\":\"Fire Rescue\",\"zh_CN\":\"消防救援\"}',415000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(415100100,'fire_rescue_fire_rescue_manage','{\"zh_TW\":\"消防救援\",\"en_US\":\"Fire Rescue\",\"zh_CN\":\"消防救援\"}',415100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416000000,'army_people','{\"zh_TW\":\"5G-A通感一體化平臺\",\"en_US\":\"5G-A Synaesthesia Integrated Platform\",\"zh_CN\":\"5G-A通感一体化平台\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416100000,'army_people_screen','{\"zh_TW\":\"運行監視\",\"en_US\":\"Operation Monitoring\",\"zh_CN\":\"运行监视\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416100100,'army_people_screen_manage','{\"zh_TW\":\"運行監視\",\"en_US\":\"Operation Monitoring\",\"zh_CN\":\"运行监视\"}',416100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416101000,'army_people_detect','{\"zh_TW\":\"低空探測\",\"en_US\":\"Low Altitude Detection\",\"zh_CN\":\"低空探测\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416101100,'army_people_detect_front','{\"zh_TW\":\"首頁\",\"en_US\":\"Front Page\",\"zh_CN\":\"首页\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416101101,'army_people_detect_playback','{\"zh_TW\":\"數據回放\",\"en_US\":\"Data Playback\",\"zh_CN\":\"数据回放\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416101102,'army_people_detect_analysis','{\"zh_TW\":\"精度分析\",\"en_US\":\"Precision Analysis\",\"zh_CN\":\"精度分析\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416101103,'army_people_detect_alarm','{\"zh_TW\":\"告警記錄\",\"en_US\":\"Alarm Record\",\"zh_CN\":\"告警记录\"}',416101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416102000,'army_people_configuration','{\"zh_TW\":\"配置管理\",\"en_US\":\"Configuration Management\",\"zh_CN\":\"配置管理\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416102100,'army_people_configuration_device','{\"zh_TW\":\"設備管理\",\"en_US\":\"Device Management\",\"zh_CN\":\"设备管理\"}',416102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416102101,'army_people_configuration_area','{\"zh_TW\":\"區域規劃\",\"en_US\":\"Regional Planning\",\"zh_CN\":\"区域规划\"}',416102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416102102,'army_people_configuration_story','{\"zh_TW\":\"故事管理\",\"en_US\":\"Story Management\",\"zh_CN\":\"故事管理\"}',416102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416103000,'army_people_functional','{\"zh_TW\":\"功能權限\",\"en_US\":\"Functional Permission\",\"zh_CN\":\"功能权限\"}',416000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416103100,'army_people_functional_download','{\"zh_TW\":\"數據下載\",\"en_US\":\"Data Download\",\"zh_CN\":\"数据下载\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416103101,'army_people_functional_bts','{\"zh_TW\":\"基站統計\",\"en_US\":\"Base Station Statistics\",\"zh_CN\":\"基站统计\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416103102,'army_people_functional_linkage','{\"zh_TW\":\"雷視聯動\",\"en_US\":\"Radar And Vision Linkage\",\"zh_CN\":\"雷视联动\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416103103,'army_people_functional_precipitation','{\"zh_TW\":\"降水量\",\"en_US\":\"Precipitation\",\"zh_CN\":\"降水量\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(416103104,'army_people_functional_service','{\"zh_TW\":\"飞行服务\",\"en_US\":\"Flight Service\",\"zh_CN\":\"飞行服务\"}',416103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(417000000,'iron_tower','{\"zh_TW\":\"鐵塔巡檢\",\"en_US\":\"Tower inspection\",\"zh_CN\":\"铁塔巡检\"}',NULL,NULL,_binary '\0',_binary '',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(417100000,'iron_tower_basestation','{\"zh_TW\":\"基站信息維護\",\"en_US\":\"Base station information maintenance\",\"zh_CN\":\"基站信息维护\"}',417000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(417100100,'iron_tower_basestation_manage','{\"zh_TW\":\"基站信息維護\",\"en_US\":\"Base station information maintenance\",\"zh_CN\":\"基站信息维护\"}',417100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(417101000,'iron_tower_qualitycontrol','{\"zh_TW\":\"質檢任務管理\",\"en_US\":\"Quality inspection task management\",\"zh_CN\":\"质检任务管理\"}',417000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(417101100,'iron_tower_qualitycontrol_manage','{\"zh_TW\":\"質檢任務管理\",\"en_US\":\"Quality inspection task management\",\"zh_CN\":\"质检任务管理\"}',417101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(417102000,'iron_tower_personnelinfo','{\"zh_TW\":\"人員資訊管理\",\"en_US\":\"Personnel information management\",\"zh_CN\":\"人员信息管理\"}',417000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(417102100,'iron_tower_personnelinfo_manage','{\"zh_TW\":\"人員資訊管理\",\"en_US\":\"Personnel information management\",\"zh_CN\":\"人员信息管理\"}',417102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600000000,'data','{\"zh_TW\":\"數據應用\",\"en_US\":\"Data application\",\"zh_CN\":\"数据应用\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600100000,'data_material','{\"zh_TW\":\"素材倉庫\",\"en_US\":\"Material\",\"zh_CN\":\"素材仓库\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600100100,'data_material_manage','{\"zh_TW\":\"素材倉庫\",\"en_US\":\"Material\",\"zh_CN\":\"素材仓库\"}',600100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600101000,'data_tlcp','{\"zh_TW\":\"低空圖像AI處理\",\"en_US\":\"Low-altitude image AI processing\",\"zh_CN\":\"低空图像AI处理\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600101100,'data_tlcp_manage','{\"zh_TW\":\"低空圖像AI處理\",\"en_US\":\"Low-altitude image AI processing\",\"zh_CN\":\"低空图像AI处理\"}',600101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600102000,'data_lowdetection','{\"zh_TW\":\"低空探測\",\"en_US\":\"Low altitude detection\",\"zh_CN\":\"低空探测\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600102100,'data_lowdetection_manage','{\"zh_TW\":\"低空探測\",\"en_US\":\"Low altitude detection\",\"zh_CN\":\"低空探测\"}',600102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600103000,'data_simulation','{\"zh_TW\":\"仿真規劃\",\"en_US\":\"Simulation\",\"zh_CN\":\"仿真规划\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600103100,'data_simulation_manage','{\"zh_TW\":\"仿真規劃\",\"en_US\":\"Simulation\",\"zh_CN\":\"仿真规划\"}',600103000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600104000,'data_modelv2','{\"zh_TW\":\"二位建圖與三維建模\",\"en_US\":\"2D drafting and 3D modelling\",\"zh_CN\":\"二维建图与三维建模\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600104100,'data_modelv2_manage','{\"zh_TW\":\"二位建圖與三維建模\",\"en_US\":\"2D drafting and 3D modelling\",\"zh_CN\":\"二维建图与三维建模\"}',600104000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105000,'data_ai','{\"zh_TW\":\"AI大腦\",\"en_US\":\"AI\",\"zh_CN\":\"AI大脑\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105100,'data_ai_manage','{\"zh_TW\":\"AI大腦\",\"en_US\":\"AI\",\"zh_CN\":\"AI大脑\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105101,'data_ai_image_density','{\"zh_TW\":\"人體分析-人流量統計\",\"en_US\":\"Human Analysis - People Statistics\",\"zh_CN\":\"人体分析-人流量统计\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105105,'data_ai_image_licenseplate','{\"zh_TW\":\"車輛分析-車牌識別\",\"en_US\":\"Vehicle analysis - license plate recognition\",\"zh_CN\":\"车辆分析-车牌识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105107,'data_ai_image_safetyhat','{\"zh_TW\":\"圖像處理-安全帽識別\",\"en_US\":\"Image processing - hard hat recognition\",\"zh_CN\":\"图像处理-安全帽识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105108,'data_ai_image_roadseg','{\"zh_TW\":\"圖像處理-道路分割\",\"en_US\":\"Image Processing - Road Segmentation\",\"zh_CN\":\"图像处理-道路分割\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105109,'data_ai_image_posture','{\"zh_TW\":\"圖像處理-人體姿態行為檢測\",\"en_US\":\"Image processing - human posture behavior detection\",\"zh_CN\":\"图像处理-人体姿态行为检测\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105110,'data_ai_image_common','{\"zh_TW\":\"圖像處理-通用能力識別\",\"en_US\":\"Image processing - universal capability recognition\",\"zh_CN\":\"图像处理-通用能力识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105111,'data_ai_image_dehazing','{\"zh_TW\":\"圖像增強-圖像去霧\",\"en_US\":\"Image Enhancement - Image dehazing\",\"zh_CN\":\"图像增强-图像去雾\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105112,'data_ai_image_debris_flow_detail','{\"zh_TW\":\"橋樑分析-邊坡缺陷檢測\",\"en_US\":\"Bridge analysis - slope defect detection\",\"zh_CN\":\"桥梁分析-边坡缺陷检测\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105113,'data_ai_bridge_violation','{\"zh_TW\":\"橋樑分析-橋下空間違章識別\",\"en_US\":\"Bridge analysis - identification of violations\",\"zh_CN\":\"桥梁分析-桥下空间违章识别\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105114,'data_ai_expansion_joint','{\"zh_TW\":\"橋樑分析-伸縮縫缺陷檢測\",\"en_US\":\"Bridge analysis - expansion joint defect detection\",\"zh_CN\":\"桥梁分析-伸缩缝缺陷检测\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600105115,'data_ai_video_technology','{\"zh_TW\":\"視頻技術\",\"en_US\":\"Video Technology\",\"zh_CN\":\"视频技术\"}',600105000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600106000,'data_infrared','{\"zh_TW\":\"紅外遙感\",\"en_US\":\"Infrared\",\"zh_CN\":\"红外遥感\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600106100,'data_infrared_manage','{\"zh_TW\":\"紅外遙感\",\"en_US\":\"Infrared\",\"zh_CN\":\"红外遥感\"}',600106000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600107000,'data_tdoa','{\"zh_TW\":\"無人機探測與反制\",\"en_US\":\"UAV detection and countermeasures\",\"zh_CN\":\"无人机探测与反制\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600107100,'data_tdoa_manage','{\"zh_TW\":\"無人機探測與反制\",\"en_US\":\"UAV detection and countermeasures\",\"zh_CN\":\"无人机探测与反制\"}',600107000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600108000,'data_linxot','{\"zh_TW\":\"5G界樁平台\",\"en_US\":\"5G boundary pile platform\",\"zh_CN\":\"5G界桩平台\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600108100,'data_linxot_manage','{\"zh_TW\":\"5G界樁平台\",\"en_US\":\"5G boundary pile platform\",\"zh_CN\":\"5G界桩平台\"}',600108000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600118000,'data_tudou_sensing','{\"zh_TW\":\"在線智能遙感\",\"en_US\":\"Online intelligent remote sens\",\"zh_CN\":\"在线智能遥感\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600118100,'data_tudou_sensing_manage','{\"zh_TW\":\"在線智能遙感\",\"en_US\":\"Online intelligent remote sens\",\"zh_CN\":\"在线智能遥感\"}',600118000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119000,'data_media','{\"zh_TW\":\"视频流媒体\",\"en_US\":\"video streaming\",\"zh_CN\":\"视频流媒体\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119100,'data_media_manage','{\"zh_TW\":\"视频流媒体\",\"en_US\":\"video streaming\",\"zh_CN\":\"视频流媒体\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119101,'data_media_video_device','{\"zh_TW\":\"視頻設備管理\",\"en_US\":\"Video device manage\",\"zh_CN\":\"视频设备管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119102,'data_media_video_playback','{\"zh_TW\":\"視頻回放\",\"en_US\":\"Video play back\",\"zh_CN\":\"视频回放\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119103,'data_media_process_choreographer','{\"zh_TW\":\"流程編排\",\"en_US\":\"Process choreographer\",\"zh_CN\":\"流程编排\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119104,'data_media_process_manage','{\"zh_TW\":\"流程任務管理\",\"en_US\":\"Process task management\",\"zh_CN\":\"流程任务管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119105,'data_media_live_manage','{\"zh_TW\":\"直播管理\",\"en_US\":\"Live broadcast management\",\"zh_CN\":\"直播管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119106,'data_media_system_manage','{\"zh_TW\":\"系統管理\",\"en_US\":\"System Manage\",\"zh_CN\":\"系统管理\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600119107,'data_media_open_interface','{\"zh_TW\":\"開放接口\",\"en_US\":\"MENU_VIDEO_OPEN_INTERFACE\",\"zh_CN\":\"开放接口\"}',600119000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600120000,'data_fire_emergency','{\"zh_TW\":\"防火應急指揮\",\"en_US\":\"Fire Emergency \",\"zh_CN\":\"防火应急指挥\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600120100,'data_fire_emergency_manage','{\"zh_TW\":\"防火應急指揮\",\"en_US\":\"Fire Emergency \",\"zh_CN\":\"防火应急指挥\"}',600120000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600121000,'data_nematode','{\"zh_TW\":\"線蟲病疫情\",\"en_US\":\"Nematode disease outbreak\",\"zh_CN\":\"线虫病疫情\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600121100,'data_nematode_manage','{\"zh_TW\":\"線蟲病疫情\",\"en_US\":\"Nematode disease outbreak\",\"zh_CN\":\"线虫病疫情\"}',600121000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600122000,'data_tudou_3d','{\"zh_TW\":\"在線實景三維\",\"en_US\":\"Online reality 3D\",\"zh_CN\":\"在线实景三维\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600122100,'data_tudou_3d_manage','{\"zh_TW\":\"在線實景三維\",\"en_US\":\"Online reality 3D\",\"zh_CN\":\"在线实景三维\"}',600122000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600123000,'data_runtoint','{\"zh_TW\":\"潤圖智能\",\"en_US\":\"Runtu Intelligence\",\"zh_CN\":\"润图智能\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600123100,'data_runtoint_manage','{\"zh_TW\":\"潤圖智能\",\"en_US\":\"Runtu Intelligence\",\"zh_CN\":\"润图智能\"}',600123000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600124000,'data_3dSimulation','{\"zh_TW\":\"三維仿真\",\"en_US\":\"ThreeD Simulation\",\"zh_CN\":\"三维仿真\"}',600000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(600124100,'data_3dSimulation_manage','{\"zh_TW\":\"三維仿真\",\"en_US\":\"ThreeD Simulation\",\"zh_CN\":\"三维仿真\"}',600124000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(700000000,'app','{\"zh_TW\":\"App应用\",\"en_US\":\"Application\",\"zh_CN\":\"APP应用\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(700100000,'app_pilot','{\"zh_TW\":\"飛行家APP\",\"en_US\":\"Pilot APP\",\"zh_CN\":\"飞行家APP\"}',700000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(700100100,'app_pilot_basic','{\"zh_TW\":\"基礎飛行\",\"en_US\":\"Fly Basic\",\"zh_CN\":\"基础飞行\"}',700100000,'200110100,200113000,200113100,200113101,200113102,200113103,200113104,200000000,200110000',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(700100101,'app_pilot_scouting','{\"zh_TW\":\"飛手偵察\",\"en_US\":\"Pilot Scouting\",\"zh_CN\":\"飞手侦察\"}',700100000,'403000000,403100000,403100100',_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800000000,'tools','{\"zh_TW\":\"通用模塊工具\",\"en_US\":\"commonTool\",\"zh_CN\":\"通用模块工具\"}',NULL,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800100000,'tools_geo_layer','{\"zh_TW\":\"圖層\",\"en_US\":\"GeoLayer\",\"zh_CN\":\"图层\"}',800000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800100100,'tools_geo_layer_2d','{\"zh_TW\":\"二維圖層\",\"en_US\":\"geoLayer2d\",\"zh_CN\":\"二维图层\"}',800100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800100101,'tools_geo_layer_3d','{\"zh_TW\":\"三維圖層\",\"en_US\":\"GeoLayer3d\",\"zh_CN\":\"三维图层\"}',800100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800100102,'tools_geo_layer_poi','{\"zh_TW\":\"POI管理\",\"en_US\":\"geoLayerPoi\",\"zh_CN\":\"POI管理\"}',800100000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800101000,'tools_airspace','{\"zh_TW\":\"空域管理工具\",\"en_US\":\"airspaceTools\",\"zh_CN\":\"空域管理工具\"}',800000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800101100,'tools_airspace_tools','{\"zh_TW\":\"空域管理工具\",\"en_US\":\"airspaceTools\",\"zh_CN\":\"空域管理工具\"}',800101000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800102000,'tools_compare','{\"zh_TW\":\"對比\",\"en_US\":\"compare\",\"zh_CN\":\"对比\"}',800000000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800102100,'tools_compare_roll','{\"zh_TW\":\"卷簾對比\",\"en_US\":\"comareRoll\",\"zh_CN\":\"卷帘对比\"}',800102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'),(800102101,'tools_compare_split','{\"zh_TW\":\"分屏對比\",\"en_US\":\"compareSplit\",\"zh_CN\":\"分屏对比\"}',800102000,NULL,_binary '\0',_binary '\0',_binary '\0',_binary '','2024-11-12 15:10:10',1,'2024-11-12 15:10:10',NULL,_binary '\0'); /*!40000 ALTER TABLE `sys_resource_group` ENABLE KEYS */; UNLOCK TABLES; @@ -105,4 +105,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-10-15 10:54:30 +-- Dump completed on 2024-11-14 11:14:04 diff --git a/999-数据库脚本/6.0.0/z.process_data.sql b/999-数据库脚本/6.0.0/z_process.sql similarity index 100% rename from 999-数据库脚本/6.0.0/z.process_data.sql rename to 999-数据库脚本/6.0.0/z_process.sql diff --git a/999-数据库脚本/6.0.0/z.uav_process_flowable_data.sql b/999-数据库脚本/6.0.0/z_uav_process_flowable_data.sql similarity index 100% rename from 999-数据库脚本/6.0.0/z.uav_process_flowable_data.sql rename to 999-数据库脚本/6.0.0/z_uav_process_flowable_data.sql diff --git a/999-数据库脚本/6.0.0/z.user_base_data.sql b/999-数据库脚本/6.0.0/z_user_base.sql similarity index 100% rename from 999-数据库脚本/6.0.0/z.user_base_data.sql rename to 999-数据库脚本/6.0.0/z_user_base.sql diff --git a/999-数据库脚本/数据库同步脚本.sh b/999-数据库脚本/数据库同步脚本.sh index 98b4745..5b0f4fc 100644 --- a/999-数据库脚本/数据库同步脚本.sh +++ b/999-数据库脚本/数据库同步脚本.sh @@ -9,6 +9,7 @@ SQL_DUMP_FILE=/root/all_tables_4.1.0.sql SQL_FULL_BACK_UP_FILE=/home/mmc/all_tables_4.0.2_230914_fullback.sql /root/wdd/mysql/bin/mysql -uroot -pQzfXQhd3bQ -h127.0.0.1 -P33306 -e 'show databases;' | grep -Ev 'Database|information_schema|mysql|sys|performance_schema' | xargs /root/wdd/mysql/bin/mysqldump -uroot -pQzfXQhd3bQ -h127.0.0.1 -P33306 --single-transaction --source-data=2 --hex-blob --triggers --routines --events --set-gtid-purged=OFF --databases > "${SQL_FULL_BACK_UP_FILE}" + # 被封了nacos_config /root/wdd/mysql/bin/mysqldump -uroot -pQzfXQhd3bQ -h10.250.0.200 -P33306 -t --set-gtid-purged=OFF cmii_nacos_config config_info his_config_info roles users > 17.cmii_nacos_config.sql sed -i '1s/^/use cmii_nacos_config;\n/' 17.cmii_nacos_config.sql